{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"provenance": []
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "IjWr9DfO02Wh"
},
"source": [
"# Naive Bayes for Sentiment Classification\n",
"\n",
"In this notebook, we will implement Naive Bayes algorithm for text classification. We will use sentiment classification data in the notebook.\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "5vZG1cCp11Zu"
},
"source": [
"## Data\n",
"\n",
"We will use the sentiment analysis corpus in [polarity dataset v1.0](http://www.cs.cornell.edu/people/pabo/movie-review-data/rt-polaritydata.README.1.0.txt) from [Moview Review Data](http://www.cs.cornell.edu/people/pabo/movie-review-data/) created by Bo Pang and Lillian Lee. The task is to classify reviews into positive or negative polarity.\n",
"\n",
"Dataset contains 10662 reviews of movies in which 50% of reviews have positive sentiment and 50% of reviews have negative sentiment. Data is stored in the file `sentiment.txt` in which each line is a review with labels (+1 or -1) at the beginning. All reviews are tokenized. For instance.\n",
"\n",
"```\n",
"+1 if you sometimes like to go to the movies to have fun , wasabi is a good place to start .\n",
"-1 enigma is well-made , but it's just too dry and too placid .\n",
"```\n",
"\n",
"We need to download data first."
]
},
{
"cell_type": "code",
"metadata": {
"id": "rX_GszN717oY",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "5243f657-793d-4453-aba5-8298fcb27790"
},
"source": [
"!rm -f sentiment.txt\n",
"!wget https://raw.githubusercontent.com/minhpqn/nlp_100_drill_exercises/master/data/sentiment.txt"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"--2021-12-04 02:54:36-- https://raw.githubusercontent.com/minhpqn/nlp_100_drill_exercises/master/data/sentiment.txt\n",
"Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.108.133, 185.199.109.133, ...\n",
"Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 1270444 (1.2M) [text/plain]\n",
"Saving to: ‘sentiment.txt’\n",
"\n",
"sentiment.txt 100%[===================>] 1.21M --.-KB/s in 0.07s \n",
"\n",
"2021-12-04 02:54:37 (17.6 MB/s) - ‘sentiment.txt’ saved [1270444/1270444]\n",
"\n"
]
}
]
},
{
"cell_type": "code",
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "WizFG0Q4Xivg",
"outputId": "a30363b6-c8bf-4b4c-8a33-0f1fb999d49e"
},
"source": [
"!head sentiment.txt"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"+1 the rock is destined to be the 21st century's new \" conan \" and that he's going to make a splash even greater than arnold schwarzenegger , jean-claud van damme or steven segal . \n",
"+1 the gorgeously elaborate continuation of \" the lord of the rings \" trilogy is so huge that a column of words cannot adequately describe co-writer/director peter jackson's expanded vision of j . r . r . tolkien's middle-earth . \n",
"+1 effective but too-tepid biopic\n",
"+1 if you sometimes like to go to the movies to have fun , wasabi is a good place to start . \n",
"+1 emerges as something rare , an issue movie that's so honest and keenly observed that it doesn't feel like one . \n",
"+1 the film provides some great insight into the neurotic mindset of all comics -- even those who have reached the absolute top of the game . \n",
"+1 offers that rare combination of entertainment and education . \n",
"+1 perhaps no picture ever made has more literally showed that the road to hell is paved with good intentions . \n",
"+1 steers turns in a snappy screenplay that curls at the edges ; it's so clever you want to hate it . but he somehow pulls it off . \n",
"+1 take care of my cat offers a refreshingly different slice of asian cinema . \n"
]
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "Be2CTHwT2Jbw"
},
"source": [
"### Loading data\n",
"\n",
"We will load data into a list of sentences with their labels."
]
},
{
"cell_type": "code",
"metadata": {
"id": "rwdwWvPd2pMS"
},
"source": [
"import re\n",
"\n",
"\n",
"def load_data(file_path):\n",
" data = []\n",
" # Regular expression to get the label and the text\n",
" regx = re.compile(r'^(\\+1|-1)\\s+(.+)$')\n",
" with open(file_path, 'r', encoding='utf-8', errors='ignore') as f:\n",
" for line in f:\n",
" line = line.strip()\n",
" if line == '':\n",
" continue\n",
" match = regx.match(line)\n",
" if match:\n",
" lb = match.group(1)\n",
" text = match.group(2)\n",
" data.append((text, lb))\n",
" return data"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "vptJtf1v2sHh"
},
"source": [
"data = load_data('./sentiment.txt')"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "hCbUKdR12t-6",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "155d7922-a298-439a-9233-c486f6b27e03"
},
"source": [
"print(data[0])\n",
"print(data[-1])"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"('the rock is destined to be the 21st century\\'s new \" conan \" and that he\\'s going to make a splash even greater than arnold schwarzenegger , jean-claud van damme or steven segal .', '+1')\n",
"(\"enigma is well-made , but it's just too dry and too placid .\", '-1')\n"
]
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "OB0yKYTl2vru"
},
"source": [
"## Train/test split\n",
"\n",
"We will split the data into train/test so that the label distributions on two data files are similar. We will split data with the ratio 80/20.\n",
"\n",
"We use [scikit-learn](https://scikit-learn.org) library to do train/test split."
]
},
{
"cell_type": "code",
"metadata": {
"id": "0Q-QiN9r3FEh"
},
"source": [
"from sklearn.model_selection import train_test_split\n",
"\n",
"texts, labels = zip(*data)\n",
"train_texts, test_texts, train_labels, test_labels = train_test_split(texts, labels, test_size=0.2, random_state=42)"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "92NRLuke3Kbq"
},
"source": [
"Let's check labels on the training data and test data.\n"
]
},
{
"cell_type": "code",
"metadata": {
"id": "N24IkVWJ3MRL",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "c906073c-17bd-40c9-f040-04fa06683a3b"
},
"source": [
"from collections import Counter\n",
"\n",
"print(Counter(train_labels))\n",
"print(Counter(test_labels))"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Counter({'+1': 4269, '-1': 4260})\n",
"Counter({'-1': 1071, '+1': 1062})\n"
]
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "sIYGlcXh3Pfo"
},
"source": [
"## Multinomial Naive Bayes Model\n",
"\n",
"In this section, we will implement the Multinomial Naive Bayes (MNB) model. The implementation follows the pseudo code if Figure 4.2, chapter 4 \"Naive Bayes and Sentiment Analysis\" (SLP Book)."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "Of8Bbz_M3kkk"
},
"source": [
"### Training Multinomial Naive Bayes Model"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "6a9p_OtYmjbb"
},
"source": [
"We first extract a vocabulary from a training dataset which is a list of sentences. For the sake of simplicity, we extract all words except punctuations."
]
},
{
"cell_type": "code",
"metadata": {
"id": "SaGgn68nnAkz"
},
"source": [
"import string\n",
"\n",
"def build_vocab(texts):\n",
" \"\"\"Build vocabulary from dataset\n",
"\n",
" Args:\n",
" texts (list): list of tokenized sentences\n",
"\n",
" Returns:\n",
" vocab (dict): map from word to index\n",
" \"\"\"\n",
" vocab = {}\n",
" for s in texts:\n",
" for word in s.split():\n",
" # Check if word is a punctuation\n",
" if word in string.punctuation:\n",
" continue\n",
" if word not in vocab:\n",
" idx = len(vocab)\n",
" vocab[word] = idx\n",
" return vocab"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "iawkqBKtp5eI"
},
"source": [
"Let's check how the function `build_vocab` works."
]
},
{
"cell_type": "code",
"metadata": {
"id": "AHCvelebqE6k"
},
"source": [
"vocab = build_vocab(train_texts)"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "cHJDZGcEqHoJ",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "d4c41003-e1fd-4a3b-f751-531537db9c8d"
},
"source": [
"print(vocab)"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"{'don': 0, 'michael': 1, 'paul': 2, 'uses': 3, 'quick-cuts': 4, 'very': 5, 'large': 6, 'shadows': 7, 'and': 8, 'wide-angle': 9, 'shots': 10, 'taken': 11, 'from': 12, 'a': 13, 'distance': 14, 'to': 15, 'hide': 16, 'the': 17, 'liberal': 18, 'use': 19, 'of': 20, 'body': 21, 'double': 22, 'for': 23, 'seagal': 24, 'such': 25, 'premise': 26, 'is': 27, 'ripe': 28, 'all': 29, 'manner': 30, 'lunacy': 31, 'but': 32, 'kaufman': 33, 'gondry': 34, 'rarely': 35, 'seem': 36, 'sure': 37, 'where': 38, 'it': 39, 'should': 40, 'go': 41, 'just': 42, 'an': 43, 'average': 44, 'comedic': 45, 'dateflick': 46, 'not': 47, 'waste': 48, 'time': 49, 'those': 50, 'indulgent': 51, 'slightly': 52, 'sunbaked': 53, 'summery': 54, 'mind': 55, 'sex': 56, 'lucia': 57, 'may': 58, 'well': 59, 'prove': 60, 'diverting': 61, 'enough': 62, 'has': 63, 'unmistakable': 64, 'easy': 65, 'joie': 66, 'de': 67, 'vivre': 68, \"nicholson's\": 69, 'understated': 70, 'performance': 71, 'wonderful': 72, 'as': 73, 'warren': 74, 'he': 75, 'stumbles': 76, 'in': 77, 'search': 78, 'emotions': 79, 'life': 80, 'experiences': 81, \"he's\": 82, 'neglected': 83, 'over': 84, 'years': 85, 'clich�d': 86, 'shallow': 87, 'cautionary': 88, 'tale': 89, 'about': 90, 'hard-partying': 91, 'lives': 92, 'gay': 93, 'men': 94, 'lathan': 95, 'diggs': 96, 'carry': 97, 'film': 98, 'with': 99, 'their': 100, 'charisma': 101, 'both': 102, 'exhibit': 103, 'sharp': 104, 'comic': 105, 'timing': 106, 'that': 107, 'makes': 108, 'more': 109, 'hackneyed': 110, 'elements': 111, 'easier': 112, 'digest': 113, 'boomers': 114, 'kids': 115, 'will': 116, 'have': 117, 'barrie': 118, 'good': 119, 'only': 120, 'thing': 121, 'give': 122, 'movie': 123, 'points': 124, 'bravado': 125, '--': 126, 'take': 127, 'entirely': 128, 'stale': 129, 'concept': 130, 'push': 131, 'through': 132, \"audience's\": 133, 'meat': 134, 'grinder': 135, 'one': 136, 'birthday': 137, 'girl': 138, \"actor's\": 139, 'first': 140, 'foremost': 141, 'behind': 142, 'scenes': 143, 'look': 144, 'at': 145, 'training': 146, 'dedication': 147, 'goes': 148, 'into': 149, 'becoming': 150, 'world-class': 151, 'fencer': 152, 'champion': 153, \"that's\": 154, 'made': 155, 'difference': 156, 'nyc': 157, 'inner-city': 158, 'youth': 159, 'yeah': 160, 'these': 161, 'flicks': 162, 'are': 163, 'damn': 164, \"isn't\": 165, 'great': 166, 'there': 167, 'always': 168, 'been': 169, 'something': 170, 'likable': 171, 'marquis': 172, 'sade': 173, 'this': 174, 'rush': 175, 'profits': 176, 'created': 177, 'predictably': 178, 'efficient': 179, 'piece': 180, 'business': 181, 'notable': 182, 'largely': 183, 'its': 184, 'overwhelming': 185, 'creepiness': 186, 'eagerness': 187, 'create': 188, 'images': 189, 'you': 190, 'wish': 191, \"hadn't\": 192, 'seen': 193, 'which': 194, 'day': 195, 'age': 196, 'course': 197, 'point': 198, 'plays': 199, 'hollow': 200, 'catharsis': 201, 'lots': 202, 'tears': 203, 'little': 204, 'way': 205, 'insights': 206, 'guys': 207, 'knock': 208, 'back': 209, 'beer': 210, \"they're\": 211, 'simply': 212, 'funny': 213, 'performers': 214, 'most': 215, 'brilliant': 216, 'brutal': 217, 'uk': 218, 'crime': 219, 'since': 220, 'jack': 221, 'carter': 222, 'went': 223, 'newcastle': 224, 'half': 225, 'gangster': 226, 'no': 227, '1': 228, 'drips': 229, 'style': 230, 'times': 231, 'blood': 232, 'piano': 233, 'teacher': 234, 'like': 235, 'title': 236, 'character': 237, 'repellantly': 238, 'out': 239, 'control': 240, 'on': 241, 'right': 242, 'track': 243, 'creepy': 244, 'effective': 245, \"it's\": 246, 'going': 247, 'than': 248, 'man': 249, 'bullwinkle': 250, 'costume': 251, 'get': 252, 'what': 253, 'starts': 254, 'off': 255, 'possible': 256, 'argentine': 257, 'american': 258, 'beauty': 259, 'reeks': 260, 'room': 261, 'stacked': 262, 'pungent': 263, 'flowers': 264, 'due': 265, 'stodgy': 266, 'soap': 267, 'opera-ish': 268, 'dialogue': 269, 'rest': 270, 'cast': 271, 'comes': 272, 'across': 273, 'stick': 274, 'figures': 275, 'reading': 276, 'lines': 277, 'teleprompter': 278, 'competent': 279, 'unpretentious': 280, 'entertainment': 281, 'destined': 282, 'fill': 283, 'after-school': 284, 'slot': 285, 'shopping': 286, 'mall': 287, 'theaters': 288, 'country': 289, 'surprisingly': 290, 'charming': 291, 'even': 292, 'witty': 293, 'match': 294, 'best': 295, \"hollywood's\": 296, 'comic-book': 297, 'adaptations': 298, 'every': 299, 'potential': 300, 'twist': 301, 'telegraphed': 302, 'advance': 303, 'respectably': 304, 'muted': 305, 'itself': 306, 'seems': 307, 'under': 308, 'influence': 309, 'rohypnol': 310, 'never': 311, 'sign': 312, 'when': 313, \"film's\": 314, 'star': 315, 'spends': 316, 'entirety': 317, 'coma': 318, 'worse': 319, 'begin': 320, 'envy': 321, 'her': 322, 'condition': 323, 'see': 324, 'debate': 325, 'remember': 326, 'oliveira': 327, 'creates': 328, 'emotionally': 329, 'rich': 330, 'poetically': 331, 'plump': 332, 'visually': 333, 'fulsome': 334, 'showy': 335, 'whose': 336, 'bittersweet': 337, 'themes': 338, 'reinforced': 339, 'brilliantly': 340, 'personified': 341, 'by': 342, 'michel': 343, 'piccoli': 344, 'hinges': 345, 'casting': 346, 'glover': 347, 'really': 348, \"doesn't\": 349, 'fit': 350, 'part': 351, 'heedless': 352, 'impetuousness': 353, 'full': 354, 'irritating': 355, 'display': 356, '[this]': 357, 'meandering': 358, 'pointless': 359, 'french': 360, 'coming-of-age': 361, 'import': 362, 'writer-director': 363, 'anne-sophie': 364, 'birot': 365, 'high': 366, 'crimes': 367, 'cinematic': 368, 'misdemeanor': 369, 'routine': 370, 'thriller': 371, 'remarkable': 372, 'lack': 373, 'logic': 374, 'misuse': 375, 'two': 376, 'fine': 377, 'actors': 378, 'morgan': 379, 'freeman': 380, 'ashley': 381, 'judd': 382, 'warm': 383, 'water': 384, 'red': 385, 'bridge': 386, 'quirky': 387, 'poignant': 388, 'japanese': 389, 'explores': 390, 'fascinating': 391, 'connections': 392, 'between': 393, 'women': 394, 'nature': 395, 'sexuality': 396, 'small': 397, 'fortune': 398, 'salaries': 399, 'stunt': 400, 'cars': 401, 'might': 402, 'saved': 403, 'if': 404, 'director': 405, 'tom': 406, 'dey': 407, 'had': 408, 'spliced': 409, 'together': 410, 'bits': 411, 'pieces': 412, 'midnight': 413, 'run': 414, '48': 415, 'hours': 416, 'matter': 417, 'shrek': 418, 'ok': 419, 'be': 420, 'sitcom': 421, 'apparatus': 422, 'work': 423, 'humor': 424, 'humanly': 425, 'engaged': 426, '[barry]': 427, 'gives': 428, 'assassin': 429, 'disquieting': 430, 'authority': 431, 'comedy': 432, 'subversive': 433, 'unrelenting': 434, 'bleak': 435, 'insistence': 436, 'opting': 437, 'any': 438, 'opportunity': 439, 'finding': 440, 'meaning': 441, 'relationships': 442, 'or': 443, 'becomes': 444, 'sad': 445, 'complete': 446, 'shambles': 447, 'so': 448, 'sloppy': 449, 'uneven': 450, 'unpleasant': 451, 'i': 452, \"can't\": 453, 'believe': 454, 'viewer': 455, 'young': 456, 'old': 457, 'would': 458, 'here': 459, \"you're\": 460, 'happy': 461, 'listening': 462, 'movies': 463, 'watching': 464, 'them': 465, 'slow': 466, 'parade': 467, 'human': 468, 'frailty': 469, 'fascinates': 470, 'then': 471, 'serious': 472, 'sense': 473, 'purpose': 474, '[it]': 475, 'finds': 476, 'lay': 477, 'bare': 478, 'tragedies': 479, 'setting': 480, 'deal': 481, 'warmth': 482, 'umpteenth': 483, 'summer': 484, 'skinny': 485, 'dip': 486, 'jerry': 487, \"bruckheimer's\": 488, 'putrid': 489, 'pond': 490, 'retread': 491, 'action': 492, 'twaddle': 493, 'philip': 494, 'k': 495, 'dick': 496, 'must': 497, 'turning': 498, 'his': 499, 'grave': 500, 'along': 501, 'my': 502, 'stomach': 503, 'almost': 504, 'unbearable': 505, 'portrait': 506, 'sadness': 507, 'grief': 508, 'transcends': 509, 'specific': 510, 'story': 511, 'speak': 512, 'ways': 513, 'need': 514, 'history': 515, 'presumption': 516, 'tangle': 517, 'sometimes': 518, 'destroy': 519, 'ties': 520, 'fairy-tale': 521, 'formula': 522, 'serves': 523, 'paper': 524, 'skeleton': 525, 'some': 526, 'acting': 527, 'direction': 528, 'especially': 529, 'charm': 530, 'new': 531, 'guy': 532, 'bull': 533, 'gets': 534, 'recycled': 535, 'complexity': 536, 'realistic': 537, 'behavior': 538, 'episode': 539, 'general': 540, 'hospital': 541, 'intelligent': 542, 'moving': 543, 'invigorating': 544, 'ingredients': 545, 'unwillingness': 546, 'explore': 547, 'beyond': 548, 'surfaces': 549, 'characters': 550, 'prevents': 551, \"nettelbeck's\": 552, 'coming': 553, 'lillard': 554, 'cardellini': 555, 'earn': 556, 'scooby': 557, 'snacks': 558, 'anyone': 559, 'else': 560, 'culture-clash': 561, 'addition': 562, 'being': 563, 'captures': 564, 'discomfort': 565, 'embarrassment': 566, 'bumbling': 567, 'europe': 568, 'close-to-solid': 569, 'espionage': 570, 'misfortune': 571, 'released': 572, 'few': 573, 'decades': 574, 'too': 575, 'late': 576, 'wait': 577, 'hit': 578, 'cable': 579, 'challenging': 580, 'intermittently': 581, 'engrossing': 582, 'unflaggingly': 583, 'creative': 584, 'long': 585, 'convoluted': 586, 'ends': 587, 'muddle': 588, 'ofrece': 589, 'una': 590, 'buena': 591, 'oportunidad': 592, 'cultura': 593, 'aunque': 594, 'sea': 595, 'condensada': 596, 'que': 597, 'bien': 598, 'vale': 599, 'la': 600, 'pena': 601, 'aprovechar': 602, 'simplistic': 603, 'silly': 604, 'tedious': 605, 'broomfield': 606, 'energized': 607, 'volletta': 608, \"wallace's\": 609, 'maternal': 610, 'fury': 611, 'fearlessness': 612, 'because': 613, 'crackles': 614, 'fessenden': 615, 'continues': 616, 'do': 617, 'interesting': 618, 'nice': 619, 'could': 620, 'make': 621, 'decent': 622, 'budget': 623, 'problem': 624, 'wendigo': 625, 'moments': 626, 'resources': 627, 'latest': 628, 'adam': 629, 'sandler': 630, 'assault': 631, 'possibly': 632, 'worst': 633, 'year': 634, 'another': 635, 'rent': 636, 'installment': 637, 'ian': 638, 'fleming': 639, 'estate': 640, 'sort': 641, 'me': 642, 'miss': 643, 'hitchcock': 644, 'also': 645, 'feel': 646, 'optimistic': 647, \"there's\": 648, 'hope': 649, 'popular': 650, 'cinema': 651, 'yet': 652, 'ambitious': 653, \"shiner's\": 654, 'organizing': 655, 'big': 656, 'fight': 657, 'pulls': 658, 'effects': 659, 'up': 660, 'ones': 661, \"don't\": 662, 'come': 663, 'expand': 664, 'tv': 665, 'show': 666, 'length': 667, 'however': 668, 'pleasant': 669, 'ecological': 670, 'pro-wildlife': 671, 'sentiments': 672, 'certainly': 673, 'welcome': 674, 'care': 675, 'nicely': 676, 'performed': 677, 'quintet': 678, 'actresses': 679, 'nonetheless': 680, 'drags': 681, 'during': 682, '112-minute': 683, 'reason': 684, 'interview': 685, 'aspirations': 686, 'social': 687, 'inform': 688, 'version': 689, 'shameless': 690, 'sham': 691, 'calculated': 692, 'cash': 693, 'popularity': 694, 'stars': 695, 'overall': 696, 'fabric': 697, 'hypnotic': 698, 'mr': 699, 'mattei': 700, 'fosters': 701, 'spontaneous': 702, 'intimacy': 703, \"wasn't\": 704, 'preachy': 705, 'was': 706, 'feminism': 707, 'book': 708, \"ravel's\": 709, 'bolero': 710, 'builds': 711, 'crescendo': 712, 'encompasses': 713, 'many': 714, 'paths': 715, 'we': 716, 'started': 717, 'windtalkers': 718, 'faith': 719, 'dramatic': 720, 'true': 721, 'better': 722, 'fiction': 723, 'concocted': 724, 'still': 725, 'war': 726, 'proves': 727, 'mainly': 728, 'south': 729, 'korean': 730, 'filmmakers': 731, 'can': 732, 'undemanding': 733, 'alacrity': 734, 'hollywood': 735, 'counterparts': 736, \"allen's\": 737, 'underestimated': 738, 'delivers': 739, 'goodies': 740, 'lumps': 741, 'coal': 742, 'unabashedly': 743, 'schmaltzy': 744, 'thoroughly': 745, 'enjoyable': 746, 'flags': 747, 'secondary': 748, 'keep': 749, 'things': 750, 'brisk': 751, 'amusing': 752, 'pace': 753, 'unfolds': 754, 'politically': 755, 'audacious': 756, 'films': 757, 'recent': 758, 'france': 759, 'grab': 760, 'your': 761, 'children': 762, 'imagination': 763, 'amaze': 764, 'amuse': 765, 'fans': 766, \"so-bad-they're-good\": 767, 'find': 768, 'fun': 769, 'jumbled': 770, 'mess': 771, 'ultimately': 772, 'feels': 773, 'empty': 774, 'unsatisfying': 775, 'swallowing': 776, 'communion': 777, 'wafer': 778, 'without': 779, 'wine': 780, 'releasing': 781, 'word': 782, \"'dog'\": 783, 'january': 784, 'lends': 785, 'jokes': 786, 'insults': 787, 'snow': 788, 'dogs': 789, 'deserves': 790, 'single': 791, 'script': 792, 'adults': 793, 'often': 794, 'creatively': 795, 'constructed': 796, 'figure': 797, 'backstory': 798, 'play': 799, 'equally': 800, 'standard': 801, 'giant': 802, 'screens': 803, 'attal': 804, 'mixes': 805, 'exploration': 806, 'ego': 807, 'jealousy': 808, 'within': 809, 'seemingly': 810, 'serene': 811, 'marriage': 812, 'strike': 813, 'against': 814, \"yang's\": 815, 'similarly': 816, 'themed': 817, 'yi': 818, 'found': 819, 'engaging': 820, 'emotional': 821, 'level': 822, 'funnier': 823, 'whole': 824, 'less': 825, 'detached': 826, \"hoffman's\": 827, 'powerful': 828, 'clinic': 829, 'rare': 830, 'drama': 831, 'offers': 832, 'thoughtful': 833, 'rewarding': 834, 'glimpse': 835, 'heartache': 836, 'everyone': 837, 'felt': 838, 'someday': 839, 'humbling': 840, 'fueled': 841, 'light': 842, 'zhao': 843, 'benshan': 844, 'delicate': 845, 'dong': 846, 'jie': 847, 'moviegoers': 848, 'who': 849, 'complain': 850, \"'they\": 851, 'they': 852, 'used': 853, 'anymore': 854, 'turns': 855, 'cut': 856, 'above': 857, 'norm': 858, 'thanks': 859, 'clever': 860, 'writing': 861, 'sprightly': 862, 'denis': 863, 'co-writer': 864, 'michele': 865, \"petin's\": 866, 'impeccable': 867, 'screenplay': 868, 'penetrates': 869, 'rawness': 870, 'unflinching': 871, 'tantalizing': 872, 'lead': 873, 'provocatuers': 874, 'testud': 875, 'parmentier': 876, 'superlative': 877, 'performances': 878, 'cold': 879, 'dreary': 880, 'weather': 881, 'perfect': 882, 'metaphor': 883, 'contains': 884, 'laughs': 885, 'much': 886, 'sitcomishly': 887, 'predictable': 888, 'cloying': 889, 'attempts': 890, 'filmmaker': 891, 'ascends': 892, 'literally': 893, 'olympus': 894, 'art': 895, 'world': 896, 'done': 897, 'end': 898, 'flawed': 899, 'dazzling': 900, 'series': 901, 'raising': 902, 'other': 903, 'own': 904, 'cremaster': 905, 'nowhere': 906, 'near': 907, 'gripping': 908, 'oops': 909, \"she's\": 910, 'chirpy': 911, 'songbird': 912, 'britney': 913, 'spears': 914, 'popped': 915, 'mindless': 916, 'drivel': 917, 'ingenious': 918, 'john': 919, 'malkovich': 920, 'firmly': 921, 'video': 922, 'game': 923, 'soon': 924, 'resident': 925, 'evil': 926, 'last': 927, 'saw': 928, 'theater': 929, 'people': 930, 'constantly': 931, 'checking': 932, 'watches': 933, 'sats': 934, '[its]': 935, 'far': 936, 'centre': 937, 'precisely': 938, 'layered': 939, 'actor': 940, 'mid-seventies': 941, \"'santa\": 942, 'clause': 943, \"2'\": 944, 'wondrously': 945, 'amazing': 946, 'convincing': 947, \"movies'\": 948, \"you'll\": 949, 'swear': 950, 'wet': 951, 'places': 952, 'sand': 953, 'creeping': 954, 'others': 955, 'sly': 956, 'cat': 957, 'mouse': 958, 'intense': 959, 'thrilling': 960, 'occasionally': 961, 'stretches': 962, 'believability': 963, 'limits': 964, 'relies': 965, 'plot': 966, 'contrivances': 967, 'unfamiliar': 968, 'pentacostal': 969, 'practices': 970, 'theatrical': 971, 'phenomenon': 972, 'hell': 973, 'houses': 974, 'particular': 975, 'eye-opener': 976, 'love': 977, 'mean': 978, 'nicest': 979, 'orders': 980, 'touch': 981, 'heart': 982, 'earned': 983, '50-year': 984, 'friendship': 985, 'alienation': 986, 'succeed': 987, 'alienating': 988, 'viewers': 989, 'although': 990, 'disney': 991, 'follows': 992, 'animated': 993, 'adventure': 994, 'forced': 995, 'usual': 996, 'splendid': 997, 'entertainments': 998, 'emerge': 999, 'industry': 1000, 'watch': 1001, 'except': 1002, 'annoying': 1003, 'demeanour': 1004, 'tries': 1005, 'major': 1006, 'league': 1007, 'having': 1008, 'generally': 1009, 'speaking': 1010, 'adored': 1011, 'movie-going': 1012, 'public': 1013, 'khouri': 1014, 'terrific': 1015, 'despite': 1016, 'blue-chip': 1017, 'provocative': 1018, 'peter': 1019, \"mattei's\": 1020, 'feature': 1021, 'microwaves': 1022, 'dull': 1023, 'leftover': 1024, 'romantic': 1025, 'motifs': 1026, 'basted': 1027, 'faux-contemporary': 1028, 'gravy': 1029, 'power': 1030, 'members': 1031, 'audience': 1032, 'leave': 1033, 'believing': 1034, 'determined': 1035, 'ennui-hobbled': 1036, 'slog': 1037, 'say': 1038, 'news': 1039, 'flash': 1040, 'loneliness': 1041, 'act': 1042, 'weird': 1043, 'cheap': 1044, 'scam': 1045, 'put': 1046, 'cynical': 1047, 'creeps': 1048, 'revolution': 1049, 'studios': 1050, 'imagine': 1051, 'suckers': 1052, 'surrender': 1053, '$9': 1054, '93': 1055, 'minutes': 1056, 'unrecoverable': 1057, 'money': 1058, 'delivered': 1059, 'magnificent': 1060, 'worth': 1061, 'tracking': 1062, 'down': 1063, 'mostly': 1064, 'told': 1065, 'on-camera': 1066, 'interviews': 1067, 'several': 1068, 'survivors': 1069, 'riveting': 1070, 'memories': 1071, 'rendered': 1072, 'clarity': 1073, 'happened': 1074, 'yesterday': 1075, \"viewer's\": 1076, 'patience': 1077, 'pacing': 1078, 'main': 1079, 'defies': 1080, 'sympathy': 1081, 'satisfies': 1082, 'completely': 1083, 'awful': 1084, 'iranian': 1085, 'grouchy': 1086, 'ayatollah': 1087, 'mosque': 1088, 'visual': 1089, 'spectacle': 1090, 'stunning': 1091, 'thank': 1092, 'god': 1093, 'friday': 1094, 'truth': 1095, 'glad': 1096, 'xxx': 1097, 'diesel': 1098, 'creature': 1099, 'hero': 1100, 'table': 1101, 'manners': 1102, 'elegance': 1103, 'tattoo': 1104, 'deep': 1105, 'resembles': 1106, 'soft': 1107, 'porn': 1108, 'brian': 1109, 'palma': 1110, 'pastiche': 1111, \"what's\": 1112, 'missing': 1113, 'call': 1114, \"'wow'\": 1115, 'factor': 1116, 'ii--': 1117, 'attack': 1118, 'clones': 1119, 'technological': 1120, 'exercise': 1121, 'lacks': 1122, 'juice': 1123, 'delight': 1124, 'norton': 1125, 'holds': 1126, 'dogtown': 1127, 'z-boys': 1128, 'lapses': 1129, \"insider's\": 1130, 'lingo': 1131, 'mindset': 1132, 'uninitiated': 1133, 'hard': 1134, 'follow': 1135, \"'chick\": 1136, \"flicks'\": 1137, 'pretty': 1138, 'miserable': 1139, 'resorting': 1140, 'string-pulling': 1141, 'rather': 1142, 'legitimate': 1143, 'development': 1144, 'plotting': 1145, 'targeted': 1146, 'cheer': 1147, 'otherwise': 1148, 'maybe': 1149, 'sparks': 1150, 'collinwood': 1151, 'catches': 1152, 'fire': 1153, 'master': 1154, 'disaster': 1155, 'dreck': 1156, 'disguised': 1157, 'well-crafted': 1158, 'achieves': 1159, 'revelation': 1160, 'restraint': 1161, 'ambiguity': 1162, 'equivalent': 1163, 'page-turner': 1164, 'nonsense': 1165, 'claws': 1166, 'dig': 1167, 'nothing': 1168, 'relentlessly': 1169, 'depressing': 1170, 'situation': 1171, 'after': 1172, 'entire': 1173, 'running': 1174, 'easily': 1175, 'dealing': 1176, 'now': 1177, '90': 1178, 'playing': 1179, 'opposite': 1180, 'each': 1181, 'bullock': 1182, 'grant': 1183, 'ill': 1184, 'ease': 1185, 'sharing': 1186, 'same': 1187, 'scene': 1188, 'painless': 1189, 'time-killer': 1190, 'instead': 1191, 'grating': 1192, 'endurance': 1193, 'test': 1194, \"marriage's\": 1195, 'stiffness': 1196, 'unlikely': 1197, 'demonstrate': 1198, 'clout': 1199, 'sweep': 1200, 'u': 1201, 's': 1202, 'feet': 1203, \"lilia's\": 1204, 'transformation': 1205, 'strict': 1206, 'mother': 1207, 'sensual': 1208, 'siren': 1209, 'superficially': 1210, 'preposterous': 1211, 'abbas': 1212, 'infuses': 1213, 'role': 1214, 'unimpeachable': 1215, 'core': 1216, 'spy': 1217, 'heartwarming': 1218, 'stooping': 1219, 'gooeyness': 1220, 'boy': 1221, 'oh': 1222, 'howler': 1223, \"leigh's\": 1224, 'daring': 1225, 'once': 1226, 'denying': 1227, 'hardscrabble': 1228, 'economic': 1229, 'fringes': 1230, 'margaret': 1231, \"thatcher's\": 1232, 'ruinous': 1233, 'legacy': 1234, 'insists': 1235, 'importance': 1236, 'connect': 1237, 'express': 1238, 'recycles': 1239, 'clich�': 1240, 'gays': 1241, 'essentially': 1242, 'extended': 1243, 'opera': 1244, 'slasher': 1245, 'flick': 1246, 'subject': 1247, 'suggest': 1248, 'showing': 1249, 'patient': 1250, 'predator': 1251, 'foolish': 1252, 'prey': 1253, 'form': 1254, 'examine': 1255, 'labyrinthine': 1256, \"people's\": 1257, 'cross': 1258, 'change': 1259, 'buffeted': 1260, 'events': 1261, 'intriguing': 1262, 'stuff': 1263, 'moore': 1264, 'perfected': 1265, 'highly': 1266, 'entertaining': 1267, 'self-aggrandizing': 1268, 'motivated': 1269, 'documentary-making': 1270, 'got': 1271, 'potent': 1272, 'topic': 1273, 'ever': 1274, 'lazy': 1275, 'redeemed': 1276, 'lazier': 1277, 'beautiful': 1278, 'aching': 1279, 'cox': 1280, 'needed': 1281, 'decide': 1282, 'stories': 1283, 'thin': 1284, 'scattered': 1285, 'works': 1286, 'involved': 1287, 'ideas': 1288, 'remain': 1289, 'abstract': 1290, 'delightful': 1291, 'surprise': 1292, 'backstage': 1293, 'tells': 1294, 'looks': 1295, 'professional': 1296, 'audrey': 1297, 'tatou': 1298, 'knack': 1299, 'picking': 1300, 'roles': 1301, 'magnify': 1302, 'outrageous': 1303, 'literate': 1304, 'morning-glory': 1305, 'exuberant': 1306, 'she': 1307, 'am�lie': 1308, 'construction': 1309, 'adapted': 1310, 'david': 1311, 'hare': 1312, \"cunningham's\": 1313, 'novel': 1314, 'flows': 1315, 'forwards': 1316, 'weaving': 1317, 'among': 1318, 'three': 1319, 'strands': 1320, 'allow': 1321, 'us': 1322, 'view': 1323, 'prism': 1324, 'liked': 1325, 'endlessly': 1326, 'grotesquely': 1327, 'inventive': 1328, \"we'll\": 1329, 'awkward': 1330, 'indigestible': 1331, 'mediocre': 1332, 'spirals': 1333, 'downward': 1334, 'thuds': 1335, 'bottom': 1336, 'pool': 1337, 'utterly': 1338, 'incompetent': 1339, 'conclusion': 1340, 'genial': 1341, 'job': 1342, 'though': 1343, 'formulaic': 1344, 'attention': 1345, 'nuances': 1346, 'sweet': 1347, 'home': 1348, 'alabama': 1349, 'dumb': 1350, 'stupidity': 1351, 'harmless': 1352, 'wins': 1353, 'deserve': 1354, 'pokemon': 1355, '4ever': 1356, 'innocence': 1357, 'holiday': 1358, \"ain't\": 1359, 'difficult': 1360, 'central': 1361, 'flaw': 1362, '[director]': 1363, 'byler': 1364, 'him': 1365, 'charlotte': 1366, \"i'm\": 1367, 'teenage': 1368, 'somewhere': 1369, \"who's\": 1370, 'dying': 1371, 'kind': 1372, 'painfully': 1373, 'cliche-ridden': 1374, 'filled': 1375, 'holes': 1376, 'clyde': 1377, \"barrow's\": 1378, 'car': 1379, 'simple': 1380, 'working': 1381, 'arbitrary': 1382, 'cyber': 1383, 'hymn': 1384, 'cruel': 1385, 'culture': 1386, 'ice': 1387, 'cube': 1388, 'boasting': 1389, 'poorly': 1390, 'staged': 1391, 'lit': 1392, 'memory': 1393, 'impostor': 1394, 'close': 1395, 'imitation': 1396, 'enjoyably': 1397, 'hilarious': 1398, \"you've\": 1399, 'taste': 1400, 'steal': 1401, 'movie-goers': 1402, 'embarking': 1403, 'upon': 1404, 'journey': 1405, 'road': 1406, 'perdition': 1407, 'leads': 1408, 'satisfying': 1409, 'destination': 1410, 'isolated': 1411, 'insanity': 1412, 'finally': 1413, 'lost': 1414, 'soup': 1415, 'canned': 1416, 'photographic': 1417, 'marvel': 1418, 'sorts': 1419, 'invaluable': 1420, 'record': 1421, 'special': 1422, 'fishy': 1423, 'community': 1424, 'whiplash': 1425, 'ride': 1426, 'taking': 1427, 'bummer': 1428, 'wrong': 1429, 'turn': 1430, 'read': 1431, 'subtitles': 1432, 'sung': 1433, 'italian': 1434, \"'masterpiece\": 1435, \"theatre'\": 1436, 'type': 1437, 'costumes': 1438, 'enjoy': 1439, 'catch': 1440, 'badly': 1441, 'slowly': 1442, 'leaks': 1443, '13': 1444, 'conversations': 1445, 'examines': 1446, 'different': 1447, 'happiness': 1448, 'guilt': 1449, 'bit': 1450, 'storytelling': 1451, \"shoot-'em-up\": 1452, 'ballistic': 1453, 'oddly': 1454, 'lifeless': 1455, 'uncompromising': 1456, 'nonjudgmental': 1457, 'clear': 1458, 'prostitute': 1459, 'lonely': 1460, 'needy': 1461, 'clients': 1462, 'basic': 1463, 'trajectory': 1464, 'nearly': 1465, 'schwarzenegger': 1466, 'someone': 1467, 'crosses': 1468, 'arnie': 1469, 'blows': 1470, 'low': 1471, 'energy': 1472, 'eager': 1473, 'old-fashioned': 1474, 'handy': 1475, 'instance': 1476, 'dog': 1477, 'learning': 1478, 'inventing': 1479, 'trick': 1480, '10th': 1481, 'tired': 1482, '[grant]': 1483, 'fluttering': 1484, 'stammering': 1485, 'soul': 1486, 'pain': 1487, 'gradually': 1488, 'recognize': 1489, '[i]f': 1490, 'indie': 1491, 'chances': 1492, 'already': 1493, 'saccharine': 1494, 'likely': 1495, 'cause': 1496, 'massive': 1497, 'cardiac': 1498, 'arrest': 1499, 'doses': 1500, \"benigni's\": 1501, 'pinocchio': 1502, 'extremely': 1503, 'straight': 1504, 'mind-numbingly': 1505, 'stilted': 1506, 'episodic': 1507, 'keeping': 1508, 'developing': 1509, 'flow': 1510, 'drug-related': 1511, 'pictures': 1512, 'manages': 1513, 'punches': 1514, \"'dragonfly'\": 1515, 'dwells': 1516, 'crossing-over': 1517, 'mumbo': 1518, 'jumbo': 1519, 'manipulative': 1520, 'sentimentality': 1521, 'sappy': 1522, 'longing': 1523, 'anguish': 1524, 'ache': 1525, 'confusing': 1526, 'sexual': 1527, 'messages': 1528, 'elusive': 1529, 'adult': 1530, 'bigger': 1531, 'downer': 1532, 'end-of-year': 1533, '401': 1534, 'statement': 1535, 'distinctive': 1536, \"'blundering'\": 1537, 'help': 1538, 'case': 1539, 'sum': 1540, 'underventilated': 1541, 'p�re-fils': 1542, 'confrontations': 1543, 'horrible': 1544, 'sprung': 1545, \"year's\": 1546, 'again': 1547, 'jackson': 1548, 'strikes': 1549, 'balance': 1550, 'emotion': 1551, 'scale': 1552, 'action/effects': 1553, 'spectacular': 1554, 'insistently': 1555, 'humanizing': 1556, 'melds': 1557, 'derivative': 1558, 'quite': 1559, 'exciting': 1560, 'behold': 1561, 'motions': 1562, 'zip': 1563, 'gone': 1564, 'bad': 1565, 'maggio': 1566, \"couldn't\": 1567, 'enters': 1568, 'realm': 1569, 'non-porn': 1570, 'venture': 1571, 'darkly': 1572, 'energetic': 1573, 'gentle': 1574, 'long-range': 1575, 'appeal': 1576, 'minority': 1577, 'report': 1578, 'transcend': 1579, 'awards': 1580, 'bags': 1581, 'ages': 1582, 'chateau': 1583, 'risky': 1584, 'expect': 1585, 'surprises': 1586, 'unexpected': 1587, '102-minute': 1588, 'aaliyah': 1589, '20': 1590, 'screen': 1591, 'queen': 1592, 'damned': 1593, 'kinnear': 1594, 'tremendous': 1595, 'deep-sixed': 1596, 'compulsion': 1597, 'catalog': 1598, 'bodily': 1599, 'fluids': 1600, 'gag': 1601, 'mary': 1602, 'devise': 1603, 'parallel': 1604, 'clone-gag': 1605, 'triumph': 1606, 'narratively': 1607, 'complex': 1608, 'filmmaking': 1609, 'universal': 1610, 'viewed': 1611, 'terms': 1612, 'treasure': 1613, 'planet': 1614, 'better-than-average': 1615, 'family': 1616, \"stevenson's\": 1617, 'prefer': 1618, \"disney's\": 1619, 'faithful': 1620, '1950': 1621, 'live-action': 1622, 'swashbuckling': 1623, 'classic': 1624, 'drugs': 1625, 'show-tunes': 1626, 'richer': 1627, 'obvious': 1628, 'try': 1629, 'guess': 1630, 'order': 1631, 'house': 1632, 'gored': 1633, 'seeing': 1634, 'seinfeld': 1635, 'appearance': 1636, 'letterman': 1637, 'clinical': 1638, 'eye': 1639, 'reminds': 1640, 'key': 1641, 'stand-up': 1642, 'reality': 1643, 'anything': 1644, 'while': 1645, 'making': 1646, 'melodrama': 1647, 'cuts': 1648, 'natural': 1649, 'grain': 1650, 'producing': 1651, 'interested': 1652, 'asking': 1653, 'questions': 1654, 'answering': 1655, 'artist': 1656, 'medium': 1657, 'message': 1658, 'improvise': 1659, 'jazzman': 1660, 'high-end': 1661, 'hughes': 1662, 'elder': 1663, \"bueller's\": 1664, 'kept': 1665, 'wishing': 1666, 'documentary': 1667, 'wartime': 1668, 'navajos': 1669, 'accomplished': 1670, 'specious': 1671, 'hoo-ha': 1672, \"you'd\": 1673, 'think': 1674, 'america': 1675, 'plucky': 1676, 'british': 1677, 'eccentrics': 1678, 'hearts': 1679, 'gold': 1680, 'hitting': 1681, 'head': 1682, 'moral': 1683, 'schrader': 1684, 'subtle': 1685, 'ironies': 1686, 'devices': 1687, 'convey': 1688, 'trying': 1689, 'self-referential': 1690, 'normal': 1691, \"ol'\": 1692, 'seemed': 1693, 'endeavor': 1694, 'result': 1695, 'fully': 1696, 'satisfy': 1697, 'either': 1698, 'die-hard': 1699, 'jason': 1700, 'joke': 1701, 'deepa': 1702, 'mehta': 1703, 'provides': 1704, 'accessible': 1705, 'introduction': 1706, 'observations': 1707, 'success': 1708, 'bollywood': 1709, 'western': 1710, 'extreme': 1711, 'boring': 1712, 'stretching': 1713, 'padding': 1714, 'material': 1715, 'blur': 1716, 'dead': 1717, 'distracting': 1718, 'camera': 1719, 'release': 1720, 'paradiso': 1721, 'turned': 1722, 'final': 1723, 'absolutely': 1724, 'worked': 1725, 'portray': 1726, 'convincingly': 1727, 'background': 1728, 'involving': 1729, 'individuals': 1730, 'types': 1731, 'quiet': 1732, 'george': 1733, 'hickenlooper': 1734, 'snap': 1735, 'wiseacre': 1736, 'crackle': 1737, 'hard-bitten': 1738, 'cynicism': 1739, 'grown': 1740, 'before': 1741, 'trek': 1742, 'wraps': 1743, 'around': 1744, 'elegant': 1745, 'symmetry': 1746, 'today': 1747, 'warned': 1748, 'probably': 1749, 'please': 1750, 'fascinated': 1751, 'behan': 1752, 'yawning': 1753, 'admiration': 1754, 'calling': 1755, 'brainless': 1756, 'paying': 1757, 'compliment': 1758, 'trolls': 1759, \"nakata's\": 1760, 'technique': 1761, 'imply': 1762, 'terror': 1763, 'suggestion': 1764, 'overuse': 1765, 'hailed': 1766, 'neo-hitchcockianism': 1767, 'picture': 1768, 'accurately': 1769, 'chabrolian': 1770, 'hastily': 1771, 'amateurishly': 1772, 'drawn': 1773, 'animation': 1774, 'cannot': 1775, 'engage': 1776, \"sinise's\": 1777, 'brain': 1778, 'ordeal': 1779, 'five': 1780, 'introduce': 1781, 'obstacles': 1782, 'stumble': 1783, 'runs': 1784, 'mere': 1785, '84': 1786, 'glance': 1787, 'head-turner': 1788, 'thoughtfully': 1789, 'written': 1790, 'beautifully': 1791, 'deeply': 1792, 'witless': 1793, 'tasteless': 1794, 'idiotic': 1795, 'kill-by-numbers': 1796, 'blade-thin': 1797, 'terrible': 1798, 'pun-laden': 1799, '[screenwriter]': 1800, 'pimental': 1801, 'took': 1802, 'farrelly': 1803, 'brothers': 1804, 'feminized': 1805, 'poor': 1806, 'quaid': 1807, 'anchors': 1808, 'effortless': 1809, 'trademark': 1810, 'grin': 1811, 'ballplayer': 1812, 'raimi': 1813, 'team': 1814, 'bringing': 1815, 'spider-man': 1816, 'mood': 1817, 'focus': 1818, 'unfulfilling': 1819, 'maintains': 1820, 'interest': 1821, 'until': 1822, 'leaves': 1823, 'lingering': 1824, 'thoughts': 1825, 'supernatural': 1826, 'snore-fest': 1827, 'frights': 1828, 'were': 1829, 'sleep': 1830, 'nightmare': 1831, 'elysian': 1832, 'fields': 1833, 'bliss-less': 1834, 'groans': 1835, 'thinking': 1836, 'important': 1837, 'comment': 1838, 'how': 1839, 'throws': 1840, 'beguiling': 1841, 'curves': 1842, 'overlong': 1843, 'visit': 1844, 'group': 1845, 'relatives': 1846, 'swap': 1847, 'mundane': 1848, 'wonder': 1849, 'depart': 1850, 'chuckling': 1851, 'supposed': 1852, 'collective': 1853, 'knows': 1854, 'mistakes': 1855, 'nobility': 1856, 'mothman': 1857, 'prophecies': 1858, 'illustrating': 1859, 'demons': 1860, 'bedevilling': 1861, 'modern': 1862, 'masculine': 1863, 'qualities': 1864, 'wise': 1865, 'race': 1866, 'forcefully': 1867, 'superb': 1868, 'throughout': 1869, 'credible': 1870, 'english-language': 1871, 'does': 1872, 'honor': 1873, \"miyazaki's\": 1874, 'teeming': 1875, 'unsettling': 1876, 'landscape': 1877, 'conflicted': 1878, 'entertains': 1879, 'providing': 1880, 'lively': 1881, 'company': 1882, 'suffers': 1883, 'severe': 1884, 'oversimplification': 1885, 'superficiality': 1886, 'silliness': 1887, 'escapades': 1888, 'demonstrating': 1889, 'adage': 1890, 'goose': 1891, 'gander': 1892, 'amuses': 1893, 'none': 1894, 'amounts': 1895, 'capture': 1896, 'chaos': 1897, \"1790's\": 1898, 'imagines': 1899, 'sequences': 1900, 'perfectly': 1901, 'childhood': 1902, 'creating': 1903, 'angst': 1904, 'barely': 1905, 'ground': 1906, 'fact': 1907, 'rookie': 1908, 'experience': 1909, 'all-ages': 1910, 'besides': 1911, 'miracle': 1912, 'akin': 1913, 'portrays': 1914, 'omnibus': 1915, 'round-robin': 1916, 'execution': 1917, '`hey': 1918, 'arnold': 1919, 'wit': 1920, 'elsewhere': 1921, 'unknowable': 1922, 'exhilarating': 1923, 'interpretation': 1924, 'morvern': 1925, 'callar': 1926, 'affectionately': 1927, 'goofy': 1928, 'satire': 1929, 'unafraid': 1930, 'throw': 1931, 'elbows': 1932, 'necessary': 1933, 'drawing': 1934, 'irresistible': 1935, 'languid': 1936, 'romanticism': 1937, 'reveals': 1938, 'sultry': 1939, 'evening': 1940, 'beer-fueled': 1941, 'afternoon': 1942, 'sun': 1943, 'inspire': 1944, 'retiring': 1945, 'forth': 1946, 'suspect': 1947, '21st': 1948, 'century': 1949, 'morality': 1950, 'latino': 1951, 'hip': 1952, 'hop': 1953, 'beat': 1954, 'second': 1955, 'downhill': 1956, 'surface': 1957, 'attractions': 1958, 'conrad': 1959, 'l': 1960, \"hall's\": 1961, 'cinematography': 1962, 'nominated': 1963, 'oscar': 1964, 'next': 1965, 'impressive': 1966, 'lacking': 1967, 'everything': 1968, 'outcome': 1969, 'globetrotters-generals': 1970, 'juwanna': 1971, 'mann': 1972, 'ludicrous': 1973, 'guy-in-a-dress': 1974, 'genre': 1975, 'personal': 1976, 'overbearing': 1977, 'over-the-top': 1978, 'depicts': 1979, 'deadpan': 1980, 'davis': 1981, 'appealing': 1982, 'fresh': 1983, 'faces': 1984, 'anyway': 1985, 'crush': 1986, 'dire': 1987, 'partway': 1988, 'stupid': 1989, 'maudlin': 1990, 'lovely': 1991, 'total': 1992, 'loss': 1993, 'pianist': 1994, 'roman': 1995, 'polanski': 1996, 'born': 1997, 'sight': 1998, 'gags': 1999, 'big-budget': 2000, 'bust': 2001, 'ensemble': 2002, 'operas': 2003, 'depend': 2004, 'empathy': 2005, 'pretentious': 2006, 'eye-rolling': 2007, \"didn't\": 2008, '[sports]': 2009, 'admirable': 2010, 'full-bodied': 2011, 'characterizations': 2012, 'narrative': 2013, 'urgency': 2014, 'players': 2015, 'brings': 2016, 'fore': 2017, 'gifted': 2018, 'no-nonsense': 2019, 'beings': 2020, 'still-inestimable': 2021, 'contribution': 2022, 'our': 2023, 'shared': 2024, 'nonbelievers': 2025, 'rethink': 2026, 'attitudes': 2027, 'joy': 2028, 'creed': 2029, 'skeptics': 2030, \"aren't\": 2031, 'enter': 2032, 'peculiar': 2033, 'misfire': 2034, 'tunney': 2035, 'save': 2036, 'gaunt': 2037, 'silver-haired': 2038, 'leonine': 2039, '[harris]': 2040, 'tragic': 2041, 'dimension': 2042, 'savage': 2043, 'cunning': 2044, 'aging': 2045, 'sandeman': 2046, 'howard': 2047, 'co-stars': 2048, 'committed': 2049, 'undone': 2050, \"howard's\": 2051, 'self-conscious': 2052, \"'literary'\": 2053, 'curiosity': 2054, \"wouldn't\": 2055, 'want': 2056, 'live': 2057, 'waydowntown': 2058, 'place': 2059, 'reaction': 2060, 'demonstrated': 2061, 'mixing': 2062, 'idiosyncratic': 2063, '2000': 2064, 'debut': 2065, 'shanghai': 2066, 'noon': 2067, \"showtime's\": 2068, 'uninspired': 2069, 'send-up': 2070, 'cop': 2071, 'cliches': 2072, 'shooting': 2073, 'blanks': 2074, 'carefully': 2075, 'structured': 2076, 'scream': 2077, 'consciousness': 2078, 'tortured': 2079, 'unsettling--but': 2080, 'unquestionably': 2081, 'alive': 2082, 'dangerous': 2083, 'altar': 2084, \"boys'\": 2085, 'adolescence': 2086, 'words': 2087, 'sentence': 2088, 'erotic': 2089, 'cannibal': 2090, 'big-budget/all-star': 2091, 'unblinkingly': 2092, 'pure': 2093, 'distinct': 2094, 'rarity': 2095, 'event': 2096, 'uno': 2097, 'los': 2098, 'policiales': 2099, 'm�s': 2100, 'interesantes': 2101, '�ltimos': 2102, 'tiempos': 2103, 'visceral': 2104, 'succumbs': 2105, 'trap': 2106, 'tearful': 2107, 'offering': 2108, 'gaze': 2109, 'measure': 2110, 'future': 2111, 'watchable': 2112, 'common': 2113, 'flies': 2114, 'window': 2115, 'hail': 2116, 'bullets': 2117, 'sascha': 2118, 'richly': 2119, 'imagined': 2120, 'admirably': 2121, 'mature': 2122, 'definitely': 2123, 'killed': 2124, 'father': 2125, 'iceberg': 2126, 'melt': 2127, 'melts': 2128, 'crowdpleaser': 2129, 'uniformly': 2130, 'excellent': 2131, 'merely': 2132, 'mildly': 2133, '[howard]': 2134, 'leon': 2135, 'barlow': 2136, 'hardly': 2137, 'dizzying': 2138, 'dizzy': 2139, 'jaunt': 2140, 'practically': 2141, 'begins': 2142, 'wild': 2143, 'surreal': 2144, 'sits': 2145, 'lets': 2146, 'relation': 2147, 'boasts': 2148, 'labute': 2149, 'torturing': 2150, 'psychologically': 2151, 'talking': 2152, 'genitals': 2153, 'break': 2154, 'rely': 2155, 'anatomical': 2156, 'primarily': 2157, 'tell': 2158, '[l]ame': 2159, 'unnecessary': 2160, 'winning': 2161, 'wildly': 2162, 'maryam': 2163, 'rewards': 2164, 'salaciously': 2165, 'warnings': 2166, 'resist': 2167, 'temptation': 2168, 'blunt': 2169, 'offer': 2170, 'staying': 2171, 'clean': 2172, 'glazed': 2173, 'tawdry': 2174, 'b-movie': 2175, 'scum': 2176, '2': 2177, 'island': 2178, 'dreams': 2179, 'robert': 2180, 'rodriguez': 2181, 'adorns': 2182, 'family-film': 2183, 'maturity': 2184, 'contemporary': 2185, 'efteriades': 2186, 'neighborhood': 2187, 'scenery': 2188, 'vibe': 2189, 'tender': 2190, 'hug': 2191, \"lee's\": 2192, 'achievement': 2193, 'extends': 2194, 'supple': 2195, 'understanding': 2196, 'brown': 2197, 'played': 2198, 'athlete': 2199, 'image': 2200, 'black': 2201, 'indomitability': 2202, 'sensibility': 2203, 'familiar': 2204, 'exudes': 2205, 'nostalgic': 2206, 'spy-movie': 2207, 'free': 2208, 'happening': 2209, 'solondz': 2210, 'alike': 2211, 'popcorn': 2212, 'undeserving': 2213, 'victim': 2214, 'critical': 2215, 'overkill': 2216, 'town': 2217, 'twists': 2218, 'transparency': 2219, 'returning': 2220, 'aggressively': 2221, 'dimwitted': 2222, 'dimmer': 2223, 'executive': 2224, 'produces': 2225, 'previous': 2226, 'vehicles': 2227, 'smart': 2228, 'sassy': 2229, 'for-fans': 2230, 'artifact': 2231, 'whether': 2232, 'enlightened': 2233, \"derrida's\": 2234, 'lectures': 2235, 'self': 2236, 'derrida': 2237, 'undeniably': 2238, 'playful': 2239, 'fellow': 2240, \"ole'\": 2241, 'admire': 2242, 'closing': 2243, 'ask': 2244, 'civilization': 2245, 'cure': 2246, \"vincent's\": 2247, 'complaint': 2248, 'four': 2249, 'bring': 2250, 'melodramatic': 2251, 'cult': 2252, 'item': 2253, \"children's\": 2254, 'superhero': 2255, 'comics': 2256, 'appear': 2257, 'naked': 2258, 'deeper': 2259, 'fundamental': 2260, 'choices': 2261, 'include': 2262, 'catholic': 2263, 'doctrine': 2264, 'fierce': 2265, 'glaring': 2266, 'unforgettable': 2267, 'muddy': 2268, 'psychological': 2269, 'rife': 2270, 'miscalculations': 2271, 'abandon': 2272, 'ye': 2273, 'collapses': 2274, '30': 2275, 'slap-happy': 2276, 'adolescent': 2277, 'violence': 2278, 'artful': 2279, 'stays': 2280, 'confines': 2281, 'well-established': 2282, 'blessed': 2283, 'gift': 2284, 'geeks': 2285, 'historians': 2286, \"'70's\": 2287, 'idea': 2288, 'broad': 2289, 'cartoonish': 2290, 'accuracy': 2291, 'observation': 2292, 'frank': 2293, 'novak': 2294, 'keeps': 2295, 'grounded': 2296, 'undeniable': 2297, 'realism': 2298, 'sun-drenched': 2299, 'masterpiece': 2300, 'parlor': 2301, 'study': 2302, 'droll': 2303, 'villeneuve': 2304, 'wallowing': 2305, \"bibi's\": 2306, 'generic': 2307, 'lot': 2308, 'gazing': 2309, 'windows': 2310, \"movie's\": 2311, 'lies': 2312, 'utter': 2313, 'cuteness': 2314, 'stuart': 2315, 'margolo': 2316, 'computer-animated': 2317, 'expressive': 2318, 'noyce': 2319, 'shocking': 2320, 'lesson': 2321, 'stuffy': 2322, 'give-me-an-oscar': 2323, 'exposes': 2324, 'roots': 2325, 'skateboarding': 2326, 'boom': 2327, 'become': 2328, 'punk': 2329, \"kids'\": 2330, 'stealing': 2331, 'harvard': 2332, 'cleverness': 2333, 'soderbergh': 2334, 'kubrick': 2335, \"planet's\": 2336, 'skin': 2337, 'understands': 2338, 'workings': 2339, 'spirit': 2340, 'celebrates': 2341, 'packs': 2342, 'wallop': 2343, 'developments': 2344, 'challenges': 2345, 'facing': 2346, 'santa': 2347, 'weigh': 2348, 'heavily': 2349, 'drain': 2350, 'needlessly': 2351, 'strain': 2352, 'credibility': 2353, 'bouquet': 2354, 'masterly': 2355, 'influential': 2356, \"'korean\": 2357, \"wave'\": 2358, 'crafted': 2359, 'brutally': 2360, 'honest': 2361, 'promises': 2362, 'complexities': 2363, 'middle': 2364, 'east': 2365, 'struggle': 2366, 'humanity': 2367, '[a]': 2368, 'settle': 2369, 'ending': 2370, 'odds': 2371, 'wordy': 2372, 'wisp': 2373, 'chris': 2374, \"columbus'\": 2375, 'sequel': 2376, 'faster': 2377, 'livelier': 2378, 'original': 2379, 'elevates': 2380, 'pat': 2381, 'inspirational': 2382, 'status': 2383, 'sturdiness': 2384, 'solidity': 2385, \"we've\": 2386, 'associated': 2387, 'washington': 2388, 'worthy': 2389, 'gong': 2390, 'peppered': 2391, 'seduced': 2392, \"[witherspoon's]\": 2393, 'run-of-the-mill': 2394, 'vehicle': 2395, 'drive': 2396, 'max': 2397, 'subsequently': 2398, 'leblanc': 2399, 'thought': 2400, 'hey': 2401, 'baseball-playing': 2402, 'monkey': 2403, 'roger': 2404, 'michell': 2405, 'cuss': 2406, 'severely': 2407, 'bungling': 2408, 'audacious-impossible': 2409, 'compelling': 2410, 'infectious': 2411, 'exuberance': 2412, 'passing': 2413, 'skate/surf': 2414, 'beach': 2415, 'imaginative': 2416, 'illegal': 2417, 'playground': 2418, 'refuse': 2419, 'appeared': 2420, 'orange': 2421, 'prison': 2422, 'jumpsuit': 2423, 'wanted': 2424, 'stand': 2425, 'shout': 2426, \"'hey\": 2427, 'kool-aid': 2428, 'hoot': 2429, 'trailer': 2430, 'riot': 2431, 'dud': 2432, 'foster': 2433, 'why': 2434, 'fed': 2435, 'win': 2436, 'wide': 2437, 'word-of-mouth': 2438, 'reviews': 2439, 'line': 2440, \"studio's\": 2441, 'classics': 2442, 'ring': 2443, 'left': 2444, 'seattle': 2445, 'drizzle': 2446, 'rainwear': 2447, 'fantasy-adventure': 2448, 'showmanship': 2449, \"clones'\": 2450, '45': 2451, 'enjoyed': 2452, 'superficial': 2453, 'mesmerizing': 2454, 'eye-opening': 2455, 'tour': 2456, 'beijing': 2457, 'rebellion': 2458, 'retreat': 2459, 'oblivion': 2460, 'return': 2461, 'rooting': 2462, 'hurry': 2463, \"subjects'\": 2464, 'deaths': 2465, 'indicative': 2466, 'uncompelling': 2467, 'unless': 2468, 'happens': 2469, 'cover': 2470, 'area': 2471, 'achival': 2472, 'served': 2473, 'jews': 2474, 'escaped': 2475, 'holocaust': 2476, 'tackles': 2477, 'relatively': 2478, 'open': 2479, 'considerable': 2480, 'blame': 2481, '[the': 2482, \"warden's\": 2483, 'daughter]': 2484, 'sentiment': 2485, 'misfires': 2486, 'biggest': 2487, 'downside': 2488, 'paucity': 2489, 'laughter': 2490, 'ms': 2491, 'fulford-wierzbicki': 2492, 'spooky': 2493, 'sulky': 2494, 'calculating': 2495, 'lolita': 2496, 'unindicted': 2497, 'moved': 2498, 'couple': 2499, 'veins': 2500, 'resurrection': 2501, 'dubious': 2502, 'distinction': 2503, 'blair': 2504, 'witch': 2505, 'project': 2506, 'powers': 2507, 'fashioned': 2508, 'question': 2509, 'mold': 2510, 'chills': 2511, 'sitting': 2512, 'campfire': 2513, 'telling': 2514, 'willies': 2515, \"won't\": 2516, 'exit': 2517, 'undoubtedly': 2518, 'scariest': 2519, 'tattoos': 2520, 'sinks': 2521, 'mire': 2522, 'acidic': 2523, 'brit': 2524, 'ought': 2525, 'hilarity': 2526, 'immersing': 2527, 'fiercely': 2528, 'competitive': 2529, 'hip-hop': 2530, 'djs': 2531, 'sensational': 2532, 'revelatory': 2533, 'scratching': 2534, 'itch': 2535, 'rifkin': 2536, 'situates': 2537, 'musty': 2538, 'golden': 2539, \"eagle's\": 2540, 'carpets': 2541, 'anachronistic': 2542, 'quick': 2543, 'edits': 2544, 'occasional': 2545, 'jarring': 2546, 'glimpses': 2547, 'unfold': 2548, 'reassuring': 2549, 'carol': 2550, 'retail': 2551, 'clerk': 2552, 'wanting': 2553, 'spins': 2554, 'wheels': 2555, 'situations': 2556, 'repetitive': 2557, 'anemic': 2558, 'chronicle': 2559, 'grubbing': 2560, 'yorkers': 2561, 'serial': 2562, 'loveless': 2563, 'hook': 2564, 'ups': 2565, 'devastatingly': 2566, 'astonishingly': 2567, 'vivid': 2568, 'unimaginative': 2569, 'variation': 2570, 'already-shallow': 2571, 'heat': 2572, 'moment': 2573, 'prevails': 2574, 'cooks': 2575, 'conduct': 2576, 'smoky': 2577, 'inviting': 2578, 'sizzle': 2579, \"'cq\": 2580, 'fondly': 2581, 'remembered': 2582, \"coppola's\": 2583, 'brief': 2584, 'period': 2585, 'actually': 2586, 'caring': 2587, 'cheeky': 2588, 'vintage': 2589, 'schmaltz': 2590, 'fat': 2591, 'liar': 2592, 'alone': 2593, 'raised': 2594, 'self-deprecating': 2595, 'strong': 2596, 'confident': 2597, '89': 2598, 'horrendously': 2599, 'sluggishly': 2600, 'directed': 2601, 'veteran': 2602, 'joe': 2603, 'zwick': 2604, 'snap-crackle': 2605, 'arrogant': 2606, 'richard': 2607, 'pryor': 2608, \"wannabe's\": 2609, 'offensive': 2610, 'puerile': 2611, 'unimaginatively': 2612, 'foul-mouthed': 2613, 'least': 2614, 'rocket': 2615, 'scientist': 2616, 'mormon': 2617, 'terminal': 2618, 'cutes': 2619, 'neither': 2620, 'nor': 2621, 'thinks': 2622, 'princess': 2623, 'sorvino': 2624, 'glides': 2625, 'gracefully': 2626, 'male': 2627, 'persona': 2628, 'female': 2629, 'ben': 2630, 'kingsley': 2631, 'truly': 2632, 'ghandi': 2633, 'bon': 2634, 'app�tit': 2635, 'meal': 2636, 'dragon': 2637, '�': 2638, 'recipe': 2639, 'inspiring': 2640, 'certified': 2641, 'cuisine': 2642, 'palatable': 2643, 'presentation': 2644, 'undisputed': 2645, 'boxing': 2646, 'loser': 2647, 'chilly': 2648, 'anonymity': 2649, 'environments': 2650, 'spend': 2651, 'unusual': 2652, 'sci-fi': 2653, 'chase': 2654, 'detracts': 2655, \"spielberg's\": 2656, 'realization': 2657, 'near-future': 2658, 'masterful': 2659, 'viewing': 2660, 'reinforces': 2661, 'talents': 2662, 'screenwriter': 2663, 'charlie': 2664, 'creator': 2665, 'adaptation': 2666, 'rewarded': 2667, 'assumes': 2668, 'bright': 2669, 'sparring': 2670, 'succession': 2671, 'dumped': 2672, 'guei': 2673, 'wears': 2674, \"story's\": 2675, 'cerebral': 2676, 'hideous': 2677, 'nail': 2678, 'coffin': 2679, 'rice': 2680, 'opening': 2681, 'contrived': 2682, 'banter': 2683, 'loose': 2684, 'harry': 2685, 'potter': 2686, 'martial': 2687, 'arts': 2688, 'lobotomized': 2689, 'woody': 2690, 'allen': 2691, 'fate': 2692, 'store': 2693, 'lured': 2694, 'mediocrity': 2695, 'kung': 2696, 'pow': 2697, 'fist': 2698, 'somewhat': 2699, 'clumsy': 2700, 'drifts': 2701, 'inexorably': 2702, 'artists': 2703, 'consuming': 2704, 'impossible': 2705, 'disappointed': 2706, 'overwrought': 2707, 'sequence': 2708, 'plods': 2709, 'potentially': 2710, 'terribly': 2711, 'wasted': 2712, 'benign': 2713, 'forgettable': 2714, 'diversion': 2715, 'x': 2716, \"thing's\": 2717, 'scary': 2718, 'awkwardly': 2719, 'magic': 2720, 'sit': 2721, 'so-called': 2722, \"'comedy'\": 2723, 'laugh': 2724, 'did': 2725, 'educate': 2726, 'yes': 2727, 'move': 2728, '1915': 2729, 'armenia': 2730, 'ararat': 2731, 'astray': 2732, 'fast-moving': 2733, 'hard-hitting': 2734, 'improvised': 2735, 'scripted': 2736, 'pretensions': 2737, 'disposable': 2738, 'sink': 2739, 'hour': 2740, 'joyful': 2741, 'solo': 2742, 'nicks': 2743, 'steinberg': 2744, 'creations': 2745, 'venality': 2746, 'giving': 2747, 'college': 2748, 'rude': 2749, 'profane': 2750, 'stinging': 2751, 'boils': 2752, 'transparently': 2753, 'hypocritical': 2754, 'set': 2755, \"women's\": 2756, 'liberation': 2757, 'movement': 2758, 'results': 2759, 'memorable': 2760, 'appears': 2761, 'landmark': 2762, 'dramatically': 2763, 'shaky': 2764, 'contest': 2765, 'wills': 2766, 'reiterates': 2767, 'madonna': 2768, 'properly': 2769, 'called': 2770, 'gesturing': 2771, 'wilde': 2772, \"scott's\": 2773, 'portrayal': 2774, 'cad': 2775, 'oomph': 2776, 'madness': 2777, 'schoolgirl': 2778, 'obsession': 2779, 'hugely': 2780, 'uplifting': 2781, \"series'\": 2782, 'choice': 2783, 'face': 2784, 'tempting': 2785, 'alternatives': 2786, 'remains': 2787, 'prominent': 2788, \"girls'\": 2789, 'personalities': 2790, 'trapped': 2791, 'perpetual': 2792, 'frat': 2793, 'party': 2794, 'gross': 2795, 'well-acted': 2796, 'well-intentioned': 2797, 'perilously': 2798, 'pessimistic': 2799, 'particularly': 2800, 'balk': 2801, 'given': 2802, \"man's\": 2803, 'occupational': 2804, 'subsequent': 2805, 'reinvention': 2806, 'terrifying': 2807, 'bourgeois': 2808, 'desperation': 2809, 'claude': 2810, 'chabrol': 2811, 'acceptable': 2812, 'pass': 2813, '8-10': 2814, \"mcdonald's\": 2815, 'let': 2816, 'savvy': 2817, 'street': 2818, 'activism': 2819, 'asks': 2820, 'hamming': 2821, 'dogma': 2822, 'produce': 2823, 'sleep-inducing': 2824, \"neighbor's\": 2825, 'videos': 2826, 'electrocute': 2827, 'dismember': 2828, 'victims': 2829, 'avert': 2830, 'eyes': 2831, 'pie': 2832, 'valium': 2833, 'controversial': 2834, 'eponymous': 2835, 'atheistic': 2836, 'parts': 2837, 'bizarre': 2838, 'york': 2839, 'thought-provoking': 2840, 'tuck': 2841, 'everlasting': 2842, 'laconic': 2843, 'traditional': 2844, 'pulse': 2845, 'solaris': 2846, 'sterility': 2847, 'outer': 2848, 'space': 2849, \"soderbergh's\": 2850, 'swing': 2851, 'fence': 2852, 'yields': 2853, 'whiff': 2854, 'dance': 2855, 'seduction': 2856, 'backstabbing': 2857, 'betrayals': 2858, 'celebrated': 2859, 'currency': 2860, 'killers': 2861, 'waking': 2862, 'reno': 2863, 'inspired': 2864, 'inhabitants': 2865, 'markers': 2866, \"seldahl's\": 2867, 'barbara': 2868, 'precise': 2869, 'upside': 2870, 'passion': 2871, 'illness': 2872, 'scored': 2873, 'perversely': 2874, 'cheerful': 2875, 'marcus': 2876, 'miller': 2877, 'accordion/harmonica/banjo': 2878, 'abomination': 2879, 'monument': 2880, 'florid': 2881, 'variety': 2882, 'goldmember': 2883, 'justify': 2884, 'barf': 2885, 'bag': 2886, 'moviehouse': 2887, 'kissing': 2888, 'jessica': 2889, 'stein': 2890, \"amy's\": 2891, 'orgasm': 2892, 'strength': 2893, 'willingness': 2894, 'principal': 2895, 'honesty': 2896, 'insight': 2897, 'predecessors': 2898, 'proud': 2899, 'deliver': 2900, 'price': 2901, 'admission': 2902, 'farcical': 2903, 'sour': 2904, 'weight': 2905, 'kills': 2906, 'cancer': 2907, 'apt': 2908, 'unencouraging': 2909, 'threefold': 2910, 'expansion': 2911, 'former': 2912, 'mtv': 2913, 'accompanying': 2914, 'stunt-hungry': 2915, 'dimwits': 2916, 'random': 2917, 'collected': 2918, 'pranks': 2919, 'pratfalls': 2920, 'dares': 2921, 'injuries': 2922, 'etc': 2923, 'early': 2924, 'career': 2925, 'barry': 2926, 'sonnenfeld': 2927, 'homage': 2928, 'himself': 2929, 'lousy': 2930, 'first-time': 2931, 'serry': 2932, 'shows': 2933, 'jump': 2934, 'fast': 2935, 'editing': 2936, 'pyrotechnics': 2937, 'yu': 2938, 'clearly': 2939, 'hopes': 2940, 'camouflage': 2941, 'fails': 2942, \"[it's]\": 2943, 'blandness': 2944, 'chai': 2945, 'refreshingly': 2946, 'naive': 2947, 'journalistically': 2948, 'inept': 2949, 'lethally': 2950, 'wallace': 2951, 'burning': 2952, 'itching': 2953, 'somehow': 2954, 'tack': 2955, 'corny': 2956, 'mix': 2957, 'flat-out': 2958, 'farce': 2959, 'super': 2960, 'troopers': 2961, 'academy': 2962, 'standards': 2963, 'writers': 2964, 'schooling': 2965, 'lie': 2966, 'real': 2967, 'charmer': 2968, 'spark': 2969, 'inspiration': 2970, 'noticeably': 2971, 'bore': 2972, 'tends': 2973, 'hammer': 2974, '[lawrence': 2975, 'bounces]': 2976, 'stage': 2977, 'dancing': 2978, 'sweating': 2979, 'mopping': 2980, 'displaying': 2981, 'wacky': 2982, 'talent': 2983, 'brought': 2984, 'fame': 2985, 'touchy-feely': 2986, 'promotes': 2987, 'apted': 2988, 'enigma': 2989, 'nicholas': 2990, 'kazan': 2991, 'reversal': 2992, 'cliche': 2993, 'pileup': 2994, 'sheds': 2995, 'music': 2996, 'heard': 2997, 'slapstick': 2998, 'well-put-together': 2999, 'urban': 3000, 'fitfully': 3001, 'takes': 3002, \"anspaugh's\": 3003, 'asylum': 3004, 'jia': 3005, 'cattaneo': 3006, 'reworks': 3007, 'monty': 3008, 'smashing': 3009, 'neglects': 3010, 'add': 3011, 'suck': 3012, 'flaws': 3013, 'heaven': 3014, 'beast': 3015, \"[breheny's]\": 3016, 'lensing': 3017, 'zealand': 3018, 'cook': 3019, 'locations': 3020, 'land': 3021, 'thurman': 3022, 'lewis': 3023, 'insanely': 3024, 'giddy': 3025, 'past': 3026, 'naipaul': 3027, 'acquainted': 3028, \"author's\": 3029, 'hand': 3030, 'fall': 3031, 'asleep': 3032, 'clockstoppers': 3033, 'fulfill': 3034, 'wildest': 3035, 'fantasies': 3036, 'traveler': 3037, 'happily': 3038, 'killing': 3039, '94': 3040, 'short': 3041, 'slight�': 3042, 'tadpole': 3043, 'consequences': 3044, 'actions': 3045, 'revelations': 3046, 'fifty': 3047, 'inadvertently': 3048, 'sidesplitting': 3049, 'ridicule': 3050, 'funk': 3051, 'insufferably': 3052, 'danny': 3053, \"verete's\": 3054, 'tales': 3055, 'comprise': 3056, 'reasonably': 3057, 'fulfilling': 3058, 'gestalt': 3059, 'incredibly': 3060, 'narrow': 3061, 'in-joke': 3062, 'tiniest': 3063, 'segment': 3064, 'obscure': 3065, 'demographic': 3066, 'crisp': 3067, '[and]': 3068, 'twilight': 3069, 'zone': 3070, 'production': 3071, 'values': 3072, 'christian': 3073, \"bale's\": 3074, 'standing': 3075, 'motown': 3076, 'depleted': 3077, 'brand-new': 3078, 'tomorrow': 3079, 'halloween': 3080, 'franchise': 3081, 'promisingly': 3082, 'disintegrates': 3083, 'humorless': 3084, 'hoffman': 3085, 'waits': 3086, 'tone': 3087, 'retains': 3088, 'genteel': 3089, 'prep-school': 3090, 'quality': 3091, 'dusty': 3092, 'leatherbound': 3093, 'incredible': 3094, 'number': 3095, 'generated': 3096, 'angle': 3097, 'exhausted': 3098, 'documentarians': 3099, 'emerges': 3100, 'shockingly': 3101, 'little-known': 3102, 'perspective': 3103, 'based-on-truth': 3104, 'persuades': 3105, 'step': 3106, 'gary': 3107, 'fleder': 3108, 'good-naturedly': 3109, 'cornball': 3110, 'conventional': 3111, 'heads': 3112, 'justice': 3113, 'forget': 3114, 'nomination': 3115, 'julianne': 3116, 'pleasures': 3117, \"i'll\": 3118, 'tune': 3119, 'ace': 3120, 'japanimator': 3121, 'hayao': 3122, 'spirited': 3123, 'away': 3124, 'survives': 3125, 'intact': 3126, \"bv's\": 3127, 're-voiced': 3128, 'certain': 3129, 'cues': 3130, 'jeong-hyang': 3131, 'blacken': 3132, 'organ': 3133, 'vengefulness': 3134, 'discoveries': 3135, 'stylish': 3136, 'square': 3137, 'conviction': 3138, 'touching': 3139, 'cute': 3140, 'modest': 3141, 'chuckles': 3142, 'exactly': 3143, 'kiddie-friendly�': 3144, 'alas': 3145, 'ho-hum': 3146, 'ho-ho-ho': 3147, 'snowman': 3148, 'flute': 3149, 'meltdown': 3150, 'presents': 3151, 'dangerously': 3152, 'machines': 3153, 'curtains': 3154, 'gorgeous': 3155, 'high-spirited': 3156, 'musical': 3157, 'india': 3158, 'exquisitely': 3159, 'blends': 3160, 'song': 3161, 'hostages': 3162, 'hostage': 3163, 'swaggering': 3164, 'affectation': 3165, 'seriousness': 3166, 'sobering': 3167, 'drives': 3168, 'conciliatory': 3169, 'seasons': 3170, 'achieved': 3171, 'loses': 3172, 'rhetorical': 3173, 'excess': 3174, 'blatant': 3175, 'aficionados': 3176, 'notice': 3177, 'parallels': 3178, '1971': 3179, 'bedknobs': 3180, 'broomsticks': 3181, 'dealt': 3182, 'rediscovering': 3183, 'fantasy': 3184, 'louiso': 3185, 'dawdle': 3186, 'disaffected-indie-film': 3187, 'mode': 3188, 'brother': 3189, 'late-inning': 3190, 'bella': 3191, 'health': 3192, 'boundless': 3193, 'days': 3194, 'dies': 3195, 'ridiculous': 3196, 'insult': 3197, 'suffered': 3198, 'pains': 3199, 'death': 3200, \"cho's\": 3201, 'entertained': 3202, 'fair': 3203, 'disclosure': 3204, 'basis': 3205, 'verse': 3206, 'coulda': 3207, 'intricately': 3208, 'strange': 3209, 'nails': 3210, \"orlean's\": 3211, 'hermetic': 3212, 'stop': 3213, 'dvd': 3214, 'player': 3215, 'technical': 3216, 'logistical': 3217, 'feat': 3218, 'russian': 3219, 'ark': 3220, 'marks': 3221, 'milestone': 3222, 'festival': 3223, 'experiencing': 3224, 'sampling': 3225, 'believes': 3226, 'revealing': 3227, 'truths': 3228, 'churning': 3229, 'passed': 3230, 'fertile': 3231, 'ill-conceived': 3232, 'modern-day': 3233, 'falls': 3234, 'flat': 3235, 'punch': 3236, 'comprehension': 3237, \"weren't\": 3238, 'hat': 3239, 'talented': 3240, \"clooney's\": 3241, 'local': 3242, 'columnist': 3243, 'rant': 3244, 'architecture': 3245, 'small-town': 3246, 'steadfastly': 3247, 'uncinematic': 3248, 'powerfully': 3249, 'two-thirds': 3250, 'sparklingly': 3251, 'furious': 3252, 'comprehensible': 3253, 'dummies': 3254, 'guide': 3255, 'non-techies': 3256, \"[jaglom's]\": 3257, 'effort': 3258, 'sparkling': 3259, 'repartee': 3260, 'hearing': 3261, 'truncated': 3262, 'feeling': 3263, 'available': 3264, 'lovable': 3265, 'makmalbaf': 3266, 'resolutely': 3267, 'path': 3268, 'harsh': 3269, 'existence': 3270, 'kurdish': 3271, 'refugees': 3272, \"iran's\": 3273, 'borderlands': 3274, 'elegantly': 3275, 'puzzle': 3276, 'intricate': 3277, 'indeed': 3278, 'recite': 3279, 'laughable': 3280, 'clooney': 3281, 'collaborators': 3282, 'entitled': 3283, 'bow': 3284, 'fashioning': 3285, 'sure-fire': 3286, 'prescription': 3287, 'commercial': 3288, '10-inch': 3289, 'television': 3290, 'multiplex': 3291, 'edge-of-your-seat': 3292, 'educational': 3293, 'antics': 3294, 'steve': 3295, 'irwin': 3296, 'priceless': 3297, 'israel': 3298, 'ferment': 3299, 'immediate': 3300, 'footage': 3301, 'gaza': 3302, 'heightened': 3303, 'well-shaped': 3304, 'dramas': 3305, 'twice': 3306, 'vacuous': 3307, 'embody': 3308, 'excesses': 3309, 'nouvelle': 3310, 'vague': 3311, 'gossip': 3312, 'entertainingly': 3313, 'distinctly': 3314, 'odour': 3315, 'expiry': 3316, 'date': 3317, 'bears': 3318, 'trailers': 3319, 'sincere': 3320, 'rising': 3321, 'justifies': 3322, 'avoids': 3323, 'potholes': 3324, 'befall': 3325, 'brethren': 3326, 'martin': 3327, 'angry': 3328, 'sven': 3329, 'wollter': 3330, 'viveka': 3331, 'seldahl': 3332, 'frustrations': 3333, 'first-rate': 3334, 'evoke': 3335, 'surprising': 3336, 'poignance': 3337, 'shafer': 3338, 'gregory': 3339, 'hinton': 3340, 'strong-minded': 3341, 'viewpoint': 3342, 'daft': 3343, 'supremely': 3344, 'natured': 3345, 'reminder': 3346, 'garbage': 3347, 'solid': 3348, 'conscientious': 3349, 'stirring': 3350, 'o': 3351, '�timo': 3352, 'esfor�o': 3353, 'diretor': 3354, 'acaba': 3355, 'sendo': 3356, 'frustrado': 3357, 'pelo': 3358, 'roteiro': 3359, 'depois': 3360, 'levar': 3361, 'um': 3362, 'bom': 3363, 'tempo': 3364, 'para': 3365, 'colocar': 3366, 'trama': 3367, 'em': 3368, 'andamento': 3369, 'perde-se': 3370, 'vez': 3371, 'partir': 3372, 'instante': 3373, 'os': 3374, 'estranhos': 3375, 'acontecimentos': 3376, 's�o': 3377, 'explicados': 3378, 'capitalizes': 3379, 'opts': 3380, 'breezy': 3381, 'amateurish': 3382, 'school': 3383, 'tolerance': 3384, 'edgy--merely': 3385, 'crassly': 3386, 'flamboyant': 3387, 'comedically': 3388, 'labored': 3389, 'co': 3390, 'value': 3391, 'respect': 3392, 'term': 3393, 'epic': 3394, \"cat's\": 3395, 'meow': 3396, 'bogdanovich': 3397, 'frissons': 3398, 'discovery': 3399, 'chaplin': 3400, 'kidman': 3401, 'wound': 3402, 'clock': 3403, 'ticking': 3404, 'humming': 3405, 'eventual': 3406, 'understatement': 3407, 'woe': 3408, 'horror': 3409, 'fan': 3410, 'overlook': 3411, 'goofily': 3412, 'endearing': 3413, 'well-lensed': 3414, 'gorefest': 3415, 'screenwriters': 3416, 'eventually': 3417, 'shoot': 3418, 'themselves': 3419, 'oily': 3420, 'arms': 3421, 'dealer': 3422, 'squad': 3423, 'pile-ups': 3424, 'requisite': 3425, 'screaming': 3426, 'captain': 3427, 'parker': 3428, 'updates': 3429, 'attempt': 3430, 'relevant': 3431, 'whatever': 3432, 'complaints': 3433, \"i'd\": 3434, 'earnest': 3435, 'errors': 3436, 'hard-won': 3437, 'bombastic': 3438, 'self-glorification': 3439, 'feel-good': 3440, 'fiascos': 3441, 'antwone': 3442, 'fisher': 3443, \"emperor's\": 3444, 'club': 3445, 'saying': 3446, 'cry': 3447, 'laziest': 3448, 'imaginable': 3449, 'vintage-tv': 3450, 'spinoffs': 3451, 'capable': 3452, 'engendering': 3453, 'response': 3454, 'stultifying': 3455, 'effortlessly': 3456, 'resonant': 3457, 'indicates': 3458, 'sulking': 3459, 'moody': 3460, 'hustler': 3461, '[franco]': 3462, \"dean's\": 3463, 'mannerisms': 3464, 'self-indulgence': 3465, 'sweetness': 3466, 'vulnerability': 3467, 'clunker': 3468, 'well-made': 3469, 'relentless': 3470, 'vim': 3471, 'winsome': 3472, 'facial': 3473, 'witherspoon': 3474, 'dialed-up': 3475, \"america's\": 3476, 'sweetheart': 3477, 'earns': 3478, 'stock': 3479, 'redneck': 3480, \"'types'\": 3481, 'elizabethan': 3482, 'prose': 3483, '2002': 3484, 'check': 3485, 'secret': 3486, 'agent': 3487, 'decoder': 3488, 'door': 3489, 'depends': 3490, 'rock': 3491, 'lady': 3492, 'duke': 3493, 'depict': 3494, \"aristocrats'\": 3495, 'explosion': 3496, 'ruined': 3497, 'overpowered': 3498, 'challenge': 3499, 'verdict': 3500, 'bodies': 3501, 'enamored': 3502, 'creation': 3503, 'insufferable': 3504, 'spice': 3505, \"here's\": 3506, 'sounds': 3507, 'lurid': 3508, \"paul's\": 3509, 'raw': 3510, 'blown-out': 3511, 'vein': 3512, 'narc': 3513, 'walking-dead': 3514, 'cop-flick': 3515, 'subgenre': 3516, 'beats': 3517, '1960s': 3518, 'stephen': 3519, \"herek's\": 3520, 'polished': 3521, 'pour': 3522, 'delightfully': 3523, 'piquant': 3524, 'aged': 3525, 'bottles': 3526, 'odd': 3527, 'lingerie': 3528, 'models': 3529, 'bar': 3530, 'dancers': 3531, 'midwest': 3532, 'held': 3533, 'allegedly': 3534, 'tangled': 3535, 'chokes': 3536, 'seeks': 3537, 'frighten': 3538, 'snipes': 3539, 'snore': 3540, 'tripe': 3541, 'singer/composer': 3542, 'bryan': 3543, 'adams': 3544, 'contributes': 3545, 'slew': 3546, 'songs': 3547, 'hits': 3548, 'intrusive': 3549, 'package': 3550, 'intended': 3551, 'er': 3552, 'marshall': 3553, 'puts': 3554, 'suspenseful': 3555, 'spin': 3556, 'no-brainer': 3557, 'smartly': 3558, 'grown-up': 3559, 'twentysomething': 3560, 'hotsies': 3561, 'hard-driving': 3562, 'narcissism': 3563, \"we'd\": 3564, \"argento's\": 3565, 'nerve': 3566, 'verbinski': 3567, 'substitutes': 3568, 'atmosphere': 3569, 'tedium': 3570, 'thrills': 3571, 'gosling': 3572, 'dwarfs': 3573, 'guaranteed': 3574, 'shook': 3575, 'rattled': 3576, 'rolled': 3577, 'wretched': 3578, 'conceivable': 3579, 'assuming': 3580, 'expectations': 3581, \"hasn't\": 3582, 'sixth-grade': 3583, 'height': 3584, 'maddening': 3585, 'conveys': 3586, 'willfully': 3587, 'onto': 3588, 'novella': 3589, 'heartfelt': 3590, 'discovering': 3591, 'acknowledging': 3592, 'whence': 3593, 'came': 3594, 'grip': 3595, 'rap': 3596, 'society': 3597, 'unnerving': 3598, '10': 3599, 'white-knuckled': 3600, 'unable': 3601, 'knowing': 3602, 'spiked': 3603, 'inoffensive': 3604, 'built': 3605, 'unending': 3606, 'soundtrack': 3607, 'pop': 3608, 'numbers': 3609, 'aside': 3610, 'camerawork': 3611, 'awesome': 3612, 'sunburn': 3613, 'exposing': 3614, 'fool': 3615, 'ourselves': 3616, \"photo's\": 3617, \"'easier'\": 3618, \"shouldn't\": 3619, 'connoisseurs': 3620, 'enjoying': 3621, 'big-screen': 3622, 'splash': 3623, 'mild': 3624, 'disturbance': 3625, 'pleasure': 3626, 'stay': 3627, 'reminding': 3628, 'yourself': 3629, 'helluva': 3630, 'schticky': 3631, 'stolid': 3632, 'anthony': 3633, 'hopkins': 3634, 'contrast': 3635, 'fizzle': 3636, 'drek': 3637, 'deceivingly': 3638, 'grows': 3639, 'retrospect': 3640, 'depicted': 3641, 'stands': 3642, 'buffs': 3643, 'acted': 3644, 'deliciously': 3645, 'mean-spirited': 3646, 'wryly': 3647, 'observant': 3648, 'moves': 3649, 'seven': 3650, 'timeframe': 3651, 'increasingly': 3652, 'laws': 3653, 'political': 3654, 'correctness': 3655, 'decency': 3656, 'displays': 3657, 'crazy': 3658, 'flounders': 3659, 'allodi': 3660, 'nolden': 3661, 'sunk': 3662, 'primitive': 3663, 'approach': 3664, 'mechanics': 3665, 'looking': 3666, 'leonard': 3667, 'kinda': 3668, 'neutral': 3669, 'hoping': 3670, 'stiff': 3671, 'wind': 3672, 'blow': 3673, 'uphill': 3674, 'recommend': 3675, 'overstays': 3676, 'pastel': 3677, 'colors': 3678, 'prankish': 3679, 'caffeinated': 3680, 'logical': 3681, 'loopholes': 3682, 'fly': 3683, 'heavy-handed': 3684, 'shorn': 3685, 'intellectual': 3686, 'pretension': 3687, 'flair': 3688, 'bouncing': 3689, 'characterizes': 3690, 'clips': 3691, 'content': 3692, 'recycle': 3693, 'ago': 3694, 'establish': 3695, 'rounded': 3696, 'checklist': 3697, 'rob': 3698, 'reiner': 3699, 'sending': 3700, 'unintentionally': 3701, 'drumbeat': 3702, 'authenticity': 3703, 'pornographic': 3704, 'revels': 3705, 'swank': 3706, 'apartments': 3707, 'clothes': 3708, 'parties': 3709, 'living': 3710, 'concerned': 3711, 'elderly': 3712, 'mentally': 3713, 'handicapped': 3714, 'member': 3715, 'demented': 3716, 'nap': 3717, 'distinguished': 3718, 'marked': 3719, 'acute': 3720, 'host': 3721, 'frankly': 3722, 'insulting': 3723, 'q': 3724, 'archibald': 3725, 'pedestal': 3726, 'lifting': 3727, 'higher': 3728, '[w]hile': 3729, 'amiable': 3730, 'monkeys': 3731, 'environmentalism': 3732, 'jane': 3733, \"goodall's\": 3734, 'chimpanzees': 3735, 'oversize': 3736, 'demands': 3737, 'edited': 3738, 'shot': 3739, 'syncopated': 3740, 'mimicking': 3741, 'subjects': 3742, 'pray': 3743, 'rousing': 3744, 'puffery': 3745, 'substance': 3746, 'twinkie': 3747, 'swallow': 3748, 'scarcely': 3749, 'nourishing': 3750, 'third': 3751, 'limited': 3752, 'uncomfortable': 3753, 'brave': 3754, 'stopped': 3755, 'doing': 3756, 'reacting': 3757, 'grand': 3758, 'urgently': 3759, 'protagonists': 3760, 'struggled': 3761, 'mercy': 3762, 'inventiveness': 3763, 'gasping': 3764, 'delights': 3765, 'nohe': 3766, \"'intro'\": 3767, 'spectator': 3768, 'participant': 3769, 'wonderfully': 3770, 'smooth': 3771, 'kindness': 3772, 'hopefulness': 3773, 'kid-pleasing': 3774, 'tolerable-to-adults': 3775, 'lark': 3776, 'comfort': 3777, 'food': 3778, 'dark': 3779, 'hallelujah': 3780, 'favors': 3781, 'protagonist': 3782, 'fail': 3783, 'sayles': 3784, 'developers': 3785, 'chamber': 3786, 'commerce': 3787, 'tourism': 3788, 'historical': 3789, 'pageants': 3790, 'commercialism': 3791, 'neglecting': 3792, 'minute': 3793, 'ritchie': 3794, 'reduces': 3795, \"wertmuller's\": 3796, 'mores': 3797, 'politics': 3798, 'tiresome': 3799, 'jargon': 3800, 'amused': 3801, 'unfolding': 3802, \"bielinsky's\": 3803, 'cleverly': 3804, 'scenario': 3805, 'greatly': 3806, 'impressed': 3807, 'skill': 3808, 'enterprise': 3809, 'exceptionally': 3810, 'diane': 3811, 'lane': 3812, 'gere': 3813, 'b': 3814, 'sexy': 3815, 'chimps': 3816, 'goodall': 3817, 'minded': 3818, 'affection': 3819, 'one-trick': 3820, 'pony': 3821, 't&a': 3822, 'unoriginal': 3823, 'unfunny': 3824, 'unrecommendable': 3825, 'vat': 3826, 'failed': 3827, 'twitchy': 3828, 'boorishness': 3829, 'misogynistic': 3830, 'filth': 3831, 'levels': 3832, '[newton]wanders': 3833, 'unaware': 3834, 'needs': 3835, 'presence': 3836, 'greatest': 3837, 'dash': 3838, 'slightest': 3839, 'aptitude': 3840, 'credited': 3841, 'abdul': 3842, 'malik': 3843, 'abbott': 3844, 'ernest': 3845, \"'tron'\": 3846, 'anderson': 3847, 'gasp': 3848, 'appalled': 3849, 'outraged': 3850, 'promising': 3851, 'lad': 3852, 'treading': 3853, 'desperately': 3854, 'nasty': 3855, 'shed': 3856, 'errant': 3857, 'tear': 3858, 'bulk': 3859, 'centers': 3860, 'depth': 3861, '50': 3862, 'benigni': 3863, 'block': 3864, 'wood': 3865, 'favor': 3866, 'surprised': 3867, 'quickly': 3868, 'faded': 3869, 'lise': 3870, 'captured': 3871, 'obviously': 3872, 'belongs': 3873, 'lighter': 3874, 'sunnier': 3875, 'rohmer': 3876, 'example': 3877, 'seductive': 3878, 'boldly': 3879, 'channels': 3880, 'shagster': 3881, 'casey': 3882, 'kasem-furnished': 3883, 'voice': 3884, 'cultural': 3885, 'fable': 3886, 'tasty': 3887, 'frenetic': 3888, 'asian': 3889, 'neo-realist': 3890, 'remote': 3891, 'distant': 3892, 'tagline': 3893, \"'in\": 3894, 'hear': 3895, 'possesses': 3896, 'languorous': 3897, 'inside': 3898, 'root': 3899, 'convicted': 3900, 'violent': 3901, 'felons': 3902, 'assigned': 3903, 'protect': 3904, 'cons': 3905, 'muster': 3906, 'ted': 3907, \"bundy's\": 3908, 'justification': 3909, \"director's\": 3910, 'unexplored': 3911, 'fascination': 3912, 'frustrated': 3913, 'maniac': 3914, 'larger': 3915, 'context': 3916, 'passable': 3917, 'passes': 3918, 'processor': 3919, 'ironic': 3920, 'speculation': 3921, 'democracy': 3922, 'unaccustomed': 3923, 'sterling': 3924, 'boys': 3925, 'deliverance': 3926, 'ode': 3927, 'billy': 3928, 'matthew': 3929, 'shepard': 3930, 'finely': 3931, 'tuned': 3932, 'compensate': 3933, 'failings': 3934, 'cartoons': 3935, 'refreshing': 3936, 'cartoon': 3937, \"form's\": 3938, \"spirit's\": 3939, 'allows': 3940, 'accept': 3941, 'tribute': 3942, 'humanitarian': 3943, 'vibrant': 3944, \"'co-stars\": 3945, 'improvement': 3946, 'blade': 3947, 'deadly': 3948, 'seriously': 3949, 'contemplative': 3950, 'sublimely': 3951, 'spoof': 3952, \"'70s\": 3953, 'fu': 3954, 'three-minute': 3955, 'sketch': 3956, 'dabbles': 3957, 'gaining': 3958, 'momentum': 3959, 'sick': 3960, 'intent': 3961, 'milieu': 3962, 'wholly': 3963, 'unconvincing': 3964, 'histrionics': 3965, 'reach': 3966, 'pitch': 3967, 'smug': 3968, 'disappointments': 3969, \"'[hopkins]doesn't\": 3970, 'phone': 3971, 'fax': 3972, 'secretary': 3973, 'person': 3974, 'deftly': 3975, 'wise-beyond-her-years': 3976, 'teen': 3977, 'benevolent': 3978, 'deception': 3979, 'rival': 3980, \"filmmaker's\": 3981, 'sports': 3982, 'peek': 3983, '1970s': 3984, 'skateboard': 3985, 'anthropology': 3986, 'enthusiasm': 3987, \"we're\": 3988, 'touched': 3989, 'centered': 3990, 'sport': 3991, 'muddled': 3992, 'paranormal': 3993, 'romance': 3994, 'all-time': 3995, 'kevin': 3996, 'costner': 3997, 'reggio': 3998, 'glass': 3999, 'rhapsodize': 4000, 'repetition': 4001, 'slo-mo': 4002, \"glass's\": 4003, 'dirgelike': 4004, 'score': 4005, 'fang-baring': 4006, 'lullaby': 4007, 'fairly': 4008, 'ensuing': 4009, 'complications': 4010, 'resolutions': 4011, 'convenient': 4012, 'observe': 4013, 'exotic': 4014, 'runner': 4015, 'rivals': 4016, 'shakespeare': 4017, 'intrigue': 4018, 'treachery': 4019, 'murder': 4020, 'wife': 4021, 'chalk': 4022, 'hubristic': 4023, 'folly': 4024, 'nickleby': 4025, 'christmas': 4026, 'hunnam': 4027, 'twinkling': 4028, 'repressed': 4029, 'smile': 4030, 'dickensian': 4031, 'box': 4032, 'consolation': 4033, 'candy': 4034, 'benjamins': 4035, 'miami': 4036, 'casually': 4037, 'absurd': 4038, 'clich�-laden': 4039, 'watered': 4040, 'glossy': 4041, 'coat': 4042, 'remaining': 4043, 'heartless': 4044, 'all-in-all': 4045, 'necessarily': 4046, 'film]': 4047, 'tongue-in-cheek': 4048, 'attitude': 4049, \"'de\": 4050, 'niro': 4051, 'veritable': 4052, 'source': 4053, 'contrivance': 4054, 'orbits': 4055, 'know': 4056, 'character-driven': 4057, 'deposits': 4058, 'blue': 4059, 'prolonged': 4060, 'barn-burningly': 4061, 'promised': 4062, 'sends': 4063, 'spent': 4064, 'stevens': 4065, 'operates': 4066, 'element': 4067, 'volatile': 4068, 'dynamics': 4069, 'unhurried': 4070, 'low-key': 4071, 'off-hollywood': 4072, 'positively': 4073, 'rhythms': 4074, 'resonance': 4075, 'weissman': 4076, 'bill': 4077, 'weber': 4078, 'benefit': 4079, 'enormously': 4080, \"cockettes'\": 4081, 'craziness': 4082, 'huge': 4083, 'box-office': 4084, 'korea': 4085, 'shiri': 4086, '2-d': 4087, 'thornberrys': 4088, '49-year-old': 4089, 'roberto': 4090, 'wooden': 4091, 'cowrote': 4092, 'starred': 4093, 'borders': 4094, 'grotesque': 4095, 'nalin': 4096, 'pan': 4097, 'arguments': 4098, 'ayurveda': 4099, 'uncommonly': 4100, 'generate': 4101, 'suspense': 4102, 'searching': 4103, 'even-handedness': 4104, 'rigged': 4105, 'sluggish': 4106, 'money-oriented': 4107, 'testament': 4108, 'integrity': 4109, 'vision': 4110, 'band': 4111, 'string': 4112, 'dope': 4113, 'bite': 4114, 'cassavetes': 4115, 'reduce': 4116, 'touches': 4117, 'shrill': 4118, 'didactic': 4119, 'strains': 4120, 'white': 4121, \"band's\": 4122, 'pick': 4123, 'ranging': 4124, 'shattering': 4125, 'featuring': 4126, 'velocity': 4127, 'gathers': 4128, 'plenty': 4129, 'cool': 4130, 'reducing': 4131, 'stake': 4132, \"intacto's\": 4133, 'seductively': 4134, 'sickly': 4135, 'gender': 4136, 'normative': 4137, 'acrid': 4138, \"gourmet's\": 4139, 'mouth': 4140, 'monsters': 4141, 'trouble': 4142, 'maintain': 4143, 'initial': 4144, 'sporadically': 4145, 'reaching': 4146, 'heights': 4147, 'desired': 4148, 'forceful': 4149, 'alienated': 4150, 're-invents': 4151, \"everything's\": 4152, 'poetic': 4153, 'sadly': 4154, 'frightening': 4155, 'projects': 4156, 'affability': 4157, 'nominal': 4158, 'arquette': 4159, 'obnoxious': 4160, 'added': 4161, 'doc': 4162, \"canada's\": 4163, 'arctic': 4164, 'shines': 4165, 'frozen': 4166, 'tundra': 4167, 'breathes': 4168, 'extraordinary': 4169, 'private': 4170, 'inuit': 4171, 'sweetest': 4172, 'stymied': 4173, 'accents': 4174, 'thick': 4175, 'mud': 4176, 'combination': 4177, 'ethnography': 4178, 'betrayal': 4179, 'deceit': 4180, 'shakespearean': 4181, 'tragedy': 4182, 'juicy': 4183, 'somber': 4184, 'fireworks': 4185, 'green': 4186, 'medicine': 4187, 'unentertaining': 4188, 'middle-age': 4189, 'older': 4190, 'drink': 4191, 'piss': 4192, 'trees': 4193, 'drag': 4194, 'lingual': 4195, 'differences�': 4196, 'ch�teau': 4197, 'wiggling': 4198, 'kitten': 4199, 'anti-darwinian': 4200, 'nine': 4201, 'sequels': 4202, '400': 4203, 'later': 4204, 'teens': 4205, 'wiser': 4206, 'auto-pilot': 4207, 'grim': 4208, 'upsetting': 4209, 'million': 4210, 'palestinians': 4211, 'crowded': 4212, 'cities': 4213, 'refugee': 4214, 'camps': 4215, 'fangoria': 4216, 'subscriber': 4217, 'excited': 4218, 'pose': 4219, 'trinity': 4220, 'assembly': 4221, 'approaches': 4222, 'irony': 4223, \"ratliff's\": 4224, 'reflects': 4225, 'earnestness': 4226, 'agenda': 4227, 'awe-inspiring': 4228, 'sublime': 4229, 'visuals': 4230, 'subculture': 4231, 'athletes': 4232, 'derring-do': 4233, 'games': 4234, 'frequent': 4235, 'allusions': 4236, 'gurus': 4237, 'doshas': 4238, 'westerners': 4239, 'verging': 4240, 'mumbo-jumbo': 4241, 'streaks': 4242, 'jose': 4243, 'campanella': 4244, 'loosely': 4245, 'autobiographical': 4246, 'brushed': 4247, 'brimming': 4248, 'pathos': 4249, 'lyric': 4250, 'linger': 4251, 'snapshots': 4252, 'strictly': 4253, 'estela': 4254, \"bravo's\": 4255, 'cloyingly': 4256, 'hagiographic': 4257, 'cuban': 4258, 'leader': 4259, 'fidel': 4260, 'castro': 4261, 'guilty': 4262, 'opportunities': 4263, 'punch-drunk': 4264, \"maker's\": 4265, 'minimalist': 4266, 'writer/director': 4267, 'renner': 4268, 'chillingly': 4269, 'unemotive': 4270, 'communicates': 4271, \"[fincher's]\": 4272, 'assured': 4273, 'above-average': 4274, 'way-cool': 4275, 'compassion': 4276, 'ramsay': 4277, 'ratcatcher': 4278, 'acid': 4279, 'teasing': 4280, 'poetry': 4281, 'settings': 4282, 'drab': 4283, 'sordid': 4284, 'nair': 4285, 'treat': 4286, 'issues': 4287, 'lightly': 4288, 'confront': 4289, 'problems': 4290, 'openly': 4291, 'honestly': 4292, 'competently': 4293, 'terminally': 4294, 'well-mounted': 4295, 'etoiles': 4296, 'dour': 4297, 'william': 4298, 'shatner': 4299, 'pompous': 4300, 'professor': 4301, 'sole': 4302, 'spot': 4303, 'outward': 4304, 'flakiness': 4305, 'replaced': 4306, 'funniness': 4307, 'dullest': 4308, 'kiddie': 4309, 'doubt': 4310, 'action-thriller/dark': 4311, 'repellent': 4312, 'littered': 4313, 'celluloid': 4314, 'abundantly': 4315, 'exist': 4316, 'precedent': 4317, 'yiddish': 4318, 'jolly': 4319, \"fun-for-fun's-sake\": 4320, 'communal': 4321, 'essence': 4322, 'broadway': 4323, 'dismally': 4324, 'advice': 4325, 'makers': 4326, 'singles': 4327, 'ward': 4328, 'celebrity': 4329, 'cameos': 4330, 'automatically': 4331, 'equal': 4332, \"'inside'\": 4333, 'taut': 4334, 'two-hour': 4335, 'getting': 4336, 'double-pistoled': 4337, 'ballistic-pyrotechnic': 4338, 'hong': 4339, 'kong': 4340, 'aesthetic': 4341, 'anarchic': 4342, 'actress': 4343, 'elizabeth': 4344, \"berkley's\": 4345, 'flopping': 4346, 'dolphin-gasm': 4347, 'momentary': 4348, 'joys': 4349, 'weightless': 4350, 'combines': 4351, 'monster': 4352, 'atmospherics': 4353, 'genuine': 4354, 'kicking': 4355, 'undead': 4356, 'regret': 4357, 'redemption': 4358, 'directorial': 4359, 'traffic': 4360, 'scribe': 4361, 'gaghan': 4362, 'magnolia': 4363, 'primavera': 4364, 'pta': 4365, \"muccino's\": 4366, 'puccini': 4367, 'daytime': 4368, 'unpaid': 4369, 'intern': 4370, 'typed': 4371, \"'chris\": 4372, \"'anthony\": 4373, \"hopkins'\": 4374, \"'terrorists'\": 4375, 'univac-like': 4376, 'machine': 4377, 'bourne': 4378, 'identity': 4379, 'packed': 4380, 'intelligence': 4381, 'wildlife': 4382, 'warthog': 4383, 'apply': 4384, 'belgian': 4385, 'waffle': 4386, \"vera's\": 4387, 'moll�': 4388, 'gil': 4389, 'bardem': 4390, 'excel': 4391, 'insightful': 4392, 'empathetic': 4393, 'substantial': 4394, 'karmen': 4395, 'rhythm': 4396, 'lips': 4397, 'chanting': 4398, 'braided': 4399, 'hair': 4400, 'wipe': 4401, 'jeweled': 4402, 'beads': 4403, 'sweat': 4404, \"haven't\": 4405, 'lately': 4406, 'tones': 4407, 'startling': 4408, 'surrealistic': 4409, 'enthusiastically': 4410, 'invokes': 4411, 'percussion': 4412, 'brass': 4413, 'competition': 4414, 'helps': 4415, 'marching': 4416, 'bands': 4417, 'football': 4418, \"'charly'\": 4419, 'divide': 4420, 'separate': 4421, 'groups': 4422, 'tissues': 4423, 'begging': 4424, 'injected': 4425, 'self-consciousness': 4426, 'proceedings': 4427, 'loud': 4428, 'concern': 4429, 'north': 4430, \"korea's\": 4431, 'adds': 4432, 'floating': 4433, 'sliding': 4434, 'doors': 4435, 'failing': 4436, 'exploit': 4437, 'signs': 4438, 'm': 4439, 'night': 4440, \"shyamalan's\": 4441, 'sucked': 4442, 'mystic': 4443, 'genres': 4444, 'unbreakable': 4445, 'spirits': 4446, 'shoddy': 4447, 'guns': 4448, 'expensive': 4449, 'rocawear': 4450, 'clothing': 4451, 'deja': 4452, 'vu': 4453, 'good-deed/bad-deed': 4454, 'reversals': 4455, 'sinner': 4456, 'symmetrical': 4457, 'cross-shaped': 4458, 'violates': 4459, 'letter': 4460, \"behan's\": 4461, 'ribald': 4462, 'full-throated': 4463, 'casual': 4464, 'moviegoer': 4465, 'julia': 4466, 'roberts': 4467, 'pathetic': 4468, 'exploitation': 4469, 'anti-semitism': 4470, 'neo-fascism': 4471, 'eerily': 4472, 'accurate': 4473, 'depiction': 4474, 'depression': 4475, \"'this\": 4476, 'sucks': 4477, 'messy': 4478, 'uncouth': 4479, 'incomprehensible': 4480, 'vicious': 4481, 'stone': 4482, 'wrapping': 4483, 'blanket': 4484, 'nervy': 4485, 'ghostbusters': 4486, \"manhattan's\": 4487, 'gloriously': 4488, 'hinged': 4489, 'belief': 4490, 'knees': 4491, 'crotch': 4492, 'spit': 4493, 'inherently': 4494, 'spreads': 4495, 'leaving': 4496, 'commune': 4497, 'profound': 4498, 'headed': 4499, 'toilet': 4500, 'ferocity': 4501, 'burrito': 4502, 'all-night': 4503, 'tequila': 4504, 'bender': 4505, \"i've\": 4506, \"'jackass\": 4507, 'offense': 4508, 'tension': 4509, 'deuces': 4510, 'treads': 4511, 'romeo': 4512, 'juliet/west': 4513, 'side': 4514, 'territory': 4515, 'plainly': 4516, 'fumbles': 4517, 'accumulated': 4518, 'enjoyment': 4519, 'crucial': 4520, 'miscalculation': 4521, 'characterizing': 4522, 'diverse': 4523, 'cultures': 4524, 'share': 4525, 'spiritual': 4526, 'co-wrote': 4527, 'persuasive': 4528, 'defeated': 4529, 'defiant': 4530, 'nation': 4531, 'flux': 4532, 'flower-power': 4533, 'paid': 4534, 'pierce': 4535, 'brosnan': 4536, 'james': 4537, 'bond': 4538, '[jackson': 4539, 'bledel]': 4540, 'picked': 4541, 'chops': 4542, 'pre-teen': 4543, 'crowd': 4544, 'address': 4545, 'ii': 4546, 'signature': 4547, 'laugh-out-loud': 4548, 'frequently': 4549, 'road-trip': 4550, 'exclamation': 4551, 'glee': 4552, 'intimate': 4553, 'drops': 4554, 'ball': 4555, 'pauses': 4556, 'exposition': 4557, 'metaphysical': 4558, 'jackie': 4559, 'chan': 4560, 'hyped': 4561, 'curious': 4562, 'menace': 4563, 'informs': 4564, 'tame': 4565, 'expects': 4566, 'pay': 4567, 'atonal': 4568, 'estrogen': 4569, 'demonizes': 4570, 'gifting': 4571, 'sympathetic': 4572, 'vomit': 4573, 'bath': 4574, 'wedding': 4575, 'uncomfortably': 4576, 'language': 4577, 'bearing': 4578, 'stamp': 4579, 'understand': 4580, 'earth': 4581, 'stimulate': 4582, 'post': 4583, 'discussion': 4584, 'reminded': 4585, 'whom': 4586, 'jaglomized': 4587, 'cannes': 4588, 'annual': 4589, 'riviera': 4590, 'spree': 4591, 'flesh': 4592, 'buzz': 4593, 'blab': 4594, 'behaving': 4595, 'idiot': 4596, 'sensitive': 4597, 'delves': 4598, 'passive-aggressive': 4599, 'psychology': 4600, 'co-dependence': 4601, 'self-esteem': 4602, 'rollerball': 4603, 'sanitised': 4604, 'stagey': 4605, 'function': 4606, 'according': 4607, 'believable': 4608, 'impulses': 4609, 'artistic': 4610, 'license': 4611, 'avary': 4612, 'employs': 4613, 'sticks': 4614, 'rigidly': 4615, 'paradigm': 4616, 'permitting': 4617, 'dimensions': 4618, 'repeatedly': 4619, 'placing': 4620, 'well-worn': 4621, 'crashing': 4622, 'banging': 4623, 'salesmanship': 4624, 'similar': 4625, 'catherine': 4626, \"breillat's\": 4627, 'rain': 4628, 'superior': 4629, \"[toback's]\": 4630, 'fondness': 4631, 'fancy': 4632, 'split-screen': 4633, 'stuttering': 4634, 'references': 4635, 'wittgenstein': 4636, 'kirkegaard': 4637, 'uneasily': 4638, 'titillating': 4639, 'shake': 4640, 'crossroads': 4641, 'hour-and-a-half-long': 4642, \"britney's\": 4643, 'album': 4644, 'nosedive': 4645, 'alfred': 4646, \"hitchcock's\": 4647, 'flight': 4648, 'self-important': 4649, 'fluff': 4650, '99-minute': 4651, 'stink': 4652, 'bomb': 4653, 'hyper-time': 4654, 'depicting': 4655, 'child': 4656, 'abuse': 4657, 'el': 4658, 'bola': 4659, 'steeped': 4660, 'conflicts': 4661, 'symbolic': 4662, 'concert': 4663, 'gel': 4664, 'harris': 4665, 'commands': 4666, 'using': 4667, 'ravages': 4668, 'corruption': 4669, 'ruthlessness': 4670, 'pledge': 4671, 'allegiance': 4672, 'cagney': 4673, 'lacey': 4674, 'cutting': 4675, 'floor': 4676, 'trenchant': 4677, 'frustrating': 4678, 'fairy': 4679, 'wonders': 4680, 'worries': 4681, 'approached': 4682, 'peace': 4683, 'muckraking': 4684, 'legal': 4685, 'indictment': 4686, 'charged': 4687, 'tapestry': 4688, 'chinese': 4689, 'evidence': 4690, 'matters': 4691, 'resonate': 4692, 'museum': 4693, 'walls': 4694, 'marginal': 4695, \"recoing's\": 4696, 'bizzarre': 4697, 'unemployment': 4698, 'glum': 4699, 'milked': 4700, 'set-up': 4701, 'lengthy': 4702, 'punchline': 4703, 'distasteful': 4704, 'kidnapping': 4705, 'doomsday': 4706, 'thrillers': 4707, 'putting': 4708, 'seat': 4709, \"queen's\": 4710, 'tv-style': 4711, 'snazzy-looking': 4712, 'digital': 4713, 'disguise': 4714, 'shapelessly': 4715, 'gratifying': 4716, 'invites': 4717, 'apart': 4718, 'faults': 4719, 'admit': 4720, 'demonstrates': 4721, 'setpieces': 4722, 'judge': 4723, 'ringu': 4724, 'remake': 4725, 'dampened': 4726, 'familiarity': 4727, '[yet]': 4728, 'worthwhile': 4729, 'raymond': 4730, 'j': 4731, \"'assassin'\": 4732, 'enhances': 4733, 'neil': 4734, \"burger's\": 4735, 'fake': 4736, \"'sacre\": 4737, 'bleu': 4738, \"'magnifique'\": 4739, \"'synthetic'\": 4740, 'description': 4741, 'well-meaning': 4742, 'produced': 4743, 'sacrifices': 4744, 'promise': 4745, 'high-powered': 4746, 'pedigree': 4747, 'australian': 4748, 'actor/director': 4749, 'polson': 4750, 'award-winning': 4751, 'english': 4752, 'cinematographer': 4753, 'giles': 4754, 'nuttgens': 4755, 'disguising': 4756, 'innovation': 4757, 'smarter': 4758, '[sinks]': 4759, 'well-constructed': 4760, 'biography': 4761, 'worship': 4762, 'bland': 4763, 'hotels': 4764, 'highways': 4765, 'parking': 4766, 'discreet': 4767, 'moan': 4768, 'despair': 4769, 'entrapment': 4770, 'maze': 4771, 'sustain': 4772, 'buoyant': 4773, 'city': 4774, 'beginnings': 4775, 'below': 4776, 'gloss': 4777, \"villeneuve's\": 4778, 'beating': 4779, 'halfway': 4780, 'dark-as-pitch': 4781, 'veers': 4782, 'improve': 4783, 'therapeutic': 4784, 'zap': 4785, 'shock': 4786, 'treatment': 4787, \"arnold's\": 4788, 'frowns': 4789, 'letting': 4790, 'imagery': 4791, 'forces': 4792, 'ponder': 4793, 'anew': 4794, 'basically': 4795, 'crypt': 4796, \"dicaprio's\": 4797, 'agape': 4798, 'punched': 4799, 'inconsistent': 4800, 'dry': 4801, 'striking': 4802, 'slickly': 4803, 'grey': 4804, 'antiseptic': 4805, 'desiccated': 4806, 'disturbing': 4807, \"'great\": 4808, \"hope'\": 4809, 'undertone': 4810, 'subtly': 4811, 'undermines': 4812, 'caper-comedy': 4813, 'laugh-filled': 4814, 'gem': 4815, 'ultimate': 4816, 'bellini': 4817, 'kaputschnik': 4818, 'discerned': 4819, 'non-firsthand': 4820, 'specifically': 4821, \"cinema's\": 4822, 'capability': 4823, 'recording': 4824, 'ecologically': 4825, 'friendly': 4826, 'teaches': 4827, 'ethics': 4828, 'unconventionally': 4829, 'loving': 4830, 'individually': 4831, 'collectively': 4832, 'escapist': 4833, 'recreates': 4834, 'happen': 4835, 'crowd-pleasing': 4836, 'perverse': 4837, 'libertine': 4838, 'agitator': 4839, 'aristocrat': 4840, 'tattered': 4841, 'finery': 4842, 'deflated': 4843, 'reminiscent': 4844, \"1992's\": 4845, 'unforgiven': 4846, 'utilized': 4847, 'scintillating': 4848, 'force': 4849, 'draw': 4850, 'sparse': 4851, 'shrug': 4852, 'annoyance': 4853, 'chatty': 4854, 'fish': 4855, 'tweedy': 4856, 'talks': 4857, 'canning': 4858, 'stockbroker': 4859, 'repairing': 4860, 'yearn': 4861, 'airborne': 4862, 'sets': 4863, 'nude': 4864, 'groupies': 4865, 'nod': 4866, 'liven': 4867, '[fiji': 4868, 'diver': 4869, 'rusi': 4870, 'vulakoro': 4871, 'married': 4872, 'michelle': 4873, 'hall]': 4874, 'fatale': 4875, 'outside': 4876, 'stripped-down': 4877, 'constructs': 4878, 'austere': 4879, 'evocative': 4880, 'bites': 4881, 'straight-up': 4882, 'old-school': 4883, '15': 4884, 'smell': 4885, 'turkey': 4886, 'rotting': 4887, 'miles': 4888, 'presses': 4889, 'herzog': 4890, 'tropes': 4891, 'service': 4892, 'limpid': 4893, 'demand': 4894, 'mesmerised': 4895, 'audiences': 4896, 'edge': 4897, 'seats': 4898, 'rumination': 4899, 'nuanced': 4900, \"woman's\": 4901, 'breakdown': 4902, 'nevertheless': 4903, 'scares': 4904, 'tormented': 4905, 'heritage': 4906, 'ability': 4907, 'faceless': 4908, \"polanski's\": 4909, \"serry's\": 4910, 'contained': 4911, 'conflict': 4912, 'examination': 4913, 'woman': 4914, 'wally': 4915, 'wolodarsky': 4916, 'start': 4917, 'coeducational': 4918, 'fraternity': 4919, 'kappa': 4920, 'rho': 4921, 'alpha': 4922, 'phi': 4923, 'slick': 4924, 'cgi': 4925, 'sufficiently': 4926, 'unreligious': 4927, 'parents': 4928, 'escort': 4929, 'megaplex': 4930, 'screenings': 4931, 'unthinkable': 4932, 'weighed': 4933, 'supporting': 4934, 'goodly': 4935, 'downright': 4936, 'comically': 4937, 'skids': 4938, 'juxtaposition': 4939, 'existentialism': 4940, 'stomach-churning': 4941, 'gore': 4942, 'forever': 4943, 'verge': 4944, 'cracking': 4945, 'throwing': 4946, 'thousands': 4947, 'americans': 4948, 'die': 4949, 'hideously': 4950, 'cares': 4951, 'ryan': 4952, 'meets': 4953, 'cia': 4954, \"'pocas\": 4955, 'veces': 4956, 'es': 4957, 'posible': 4958, 'ver': 4959, 'un': 4960, 'elenco': 4961, 'tan': 4962, 'compenetrado': 4963, 'con': 4964, 'historia': 4965, 'donde': 4966, 'todos': 4967, 'y': 4968, 'cada': 4969, 'actores': 4970, 'ofrecen': 4971, 'actuaciones': 4972, 'verdaderamente': 4973, 'memorables': 4974, \"davis'\": 4975, 'candid': 4976, 'archly': 4977, 'authentic': 4978, 'fruition': 4979, 'sophomore': 4980, 'normally': 4981, 'expected': 4982, 'storyline': 4983, '[drumline]': 4984, 'affleck': 4985, 'outline': 4986, 'grow': 4987, 'ford': 4988, 'analyze': 4989, 'hinge': 4990, 'improbable': 4991, 'feelings': 4992, 'remorse': 4993, 'flashback': 4994, 'rape': 4995, 'highest': 4996, 'degree': 4997, 'quentin': 4998, 'tarantino': 4999, 'minor': 5000, 'unfaithful': 5001, 'misguided': 5002, 'unconventional': 5003, 'gutsy': 5004, 'executed': 5005, 'breath': 5006, 'cameo-packed': 5007, 'i-2-spoofing': 5008, 'funniest': 5009, '5': 5010, 'mike': 5011, 'myers': 5012, 'ruins': 5013, 'veneer': 5014, 'trials': 5015, 'henry': 5016, 'kissinger': 5017, 'portraiture': 5018, 'argue': 5019, 'joins': 5020, 'timely': 5021, 'questionable': 5022, 'inexcusable': 5023, 'tight': 5024, 'focused': 5025, 'illuminated': 5026, 'shards': 5027, 'neverland': 5028, 'straddle': 5029, 'market': 5030, 'insular': 5031, 'clich�s': 5032, 'showcases': 5033, 'dedicated': 5034, 'heavy': 5035, 'eastwood': 5036, 'icon': 5037, 'moviemaking': 5038, 'directors': 5039, 'producers': 5040, 'responsible': 5041, 'everybody': 5042, 'manufactured': 5043, 'artificial': 5044, 'instructs': 5045, 'younger': 5046, 'zen': 5047, 'laid': 5048, 'prickly': 5049, 'misanthropy': 5050, 'top-heavy': 5051, 'blazing': 5052, 'cheatfully': 5053, 'filmed': 5054, 'disintegrating': 5055, 'bloodsucker': 5056, 'computer': 5057, 'jagged': 5058, 'serve': 5059, 'highbrow': 5060, 'self-appointed': 5061, 'guardians': 5062, 'loved': 5063, 'follow-up': 5064, 'gangs': 5065, 'daniel': 5066, 'day-lewis': 5067, 'bewitched': 5068, 'spring': 5069, 'savour': 5070, \"binoche's\": 5071, 'low-budget': 5072, 'affair': 5073, 'smeary': 5074, 'blurry': 5075, 'distraction': 5076, 'noticed': 5077, 'forgive': 5078, 'studio': 5079, '79-minute': 5080, \"[there's]\": 5081, 'mermaid': 5082, 'aladdin': 5083, 'conversion': 5084, 'genuinely': 5085, 'concentrates': 5086, 'interplay': 5087, 'chemistry': 5088, 'hewitt': 5089, 'jolted': 5090, 'gourd': 5091, 'drop': 5092, 'ichi': 5093, 'producer': 5094, 'inherent': 5095, 'mixture': 5096, 'bubble': 5097, 'hugh': 5098, 'goo': 5099, 'fallen': 5100, 'straightforward': 5101, 'haunting': 5102, 'poem': 5103, 'punitively': 5104, 'affirmational': 5105, 'parable': 5106, 'down-home': 5107, 'flavor': 5108, 'decides': 5109, 'wants': 5110, 'salma': 5111, 'hayek': 5112, 'stages': 5113, 'arithmetic': 5114, 'learn': 5115, 'aloof': 5116, 'fatal': 5117, 'nicole': 5118, 'attending': 5119, 'fresnadillo': 5120, 'extravagant': 5121, 'chance': 5122, 'distort': 5123, 'twisted': 5124, 'macabre': 5125, 'well-directed': 5126, 'brett': 5127, 'ratner': 5128, 'problematic': 5129, 'leaden': 5130, \"rymer's\": 5131, 'bloodless': 5132, 'stuck': 5133, 'pit': 5134, 'amount': 5135, 'vampire': 5136, 'cadavers': 5137, 'digs': 5138, 'portrayals': 5139, 'seeds': 5140, 'reveal': 5141, 'ambivalent': 5142, 'motivations': 5143, 'by-the-numbers': 5144, 'boats': 5145, 'meat-and-potatoes': 5146, 'leaping': 5147, 'shaped': 5148, 'kosminsky': 5149, 'slivers': 5150, 'impressions': 5151, 'detail': 5152, 'condensed': 5153, 'traits': 5154, 'busts': 5155, 'comfy': 5156, 'cell': 5157, 'happily-ever': 5158, '-after': 5159, 'spangle': 5160, 'monsoon': 5161, 'dover': 5162, \"kosashvili's\": 5163, 'outstanding': 5164, 'tolerate': 5165, 'insipid': 5166, 'clueless': 5167, 'dose': 5168, 'painkillers': 5169, 'raucously': 5170, 'nolan': 5171, 'swords': 5172, 'helm': 5173, 'traditionally': 5174, 'plotted': 5175, 'surrendering': 5176, 'rigor': 5177, 'composure': 5178, 'spectators': 5179, 'open-mouthed': 5180, 'solace': 5181, 'savored': 5182, 'lightweight': 5183, 'holland': 5184, 'midway': 5185, 'notably': 5186, 'crass': 5187, 'efforts': 5188, 'burgeoning': 5189, 'professionals': 5190, 'austin': 5191, 'blaxploitation': 5192, 'downplays': 5193, 'raunch': 5194, 'opposed': 5195, 'extent': 5196, 'outrageousness': 5197, 'weighs': 5198, 'champagne': 5199, 'heavyweights': 5200, 'joel': 5201, 'silver': 5202, 'zemeckis': 5203, 'agreed': 5204, 'assume': 5205, 'cavorting': 5206, \"ladies'\": 5207, 'underwear': 5208, 'lowering': 5209, 'lower': 5210, 'substitute': 5211, 'on-screen': 5212, 'friel': 5213, 'strings': 5214, 'williams': 5215, 'melancholia': 5216, 'gut': 5217, 'serving': 5218, 'sara': 5219, 'eviction': 5220, 'painful': 5221, 'willing': 5222, '110': 5223, 'includes': 5224, 'segments': 5225, '12': 5226, 'reunion': 5227, 'disappointing': 5228, 'big-name': 5229, 'hokey': 5230, 'colorful': 5231, 'semimusical': 5232, 'rendition': 5233, 'jeffrey': 5234, \"tambor's\": 5235, 'jazz-playing': 5236, 'exterminator': 5237, 'oscar-worthy': 5238, 'lump': 5239, 'play-doh': 5240, 'harder': 5241, 'liman': 5242, 'squeeze': 5243, 'details': 5244, 'slip': 5245, 'fingers': 5246, 'auto': 5247, 'biopic': 5248, 'document': 5249, 'swingers': 5250, 'playboy': 5251, 'era': 5252, 'compelled': 5253, 'ungainly': 5254, 'ill-fitting': 5255, 'sticking': 5256, 'swimfan': 5257, 'attraction': 5258, 'overboard': 5259, 'loony': 5260, 'denouement': 5261, 'swimming': 5262, 'bathtub': 5263, 'jfk': 5264, 'conspiracy': 5265, 'nuts': 5266, \"barry's\": 5267, 'cold-fish': 5268, '�its': 5269, 'solemn': 5270, 'awe': 5271, 'opaque': 5272, 'intro': 5273, 'doe-eyed': 5274, 'crudup': 5275, 'pre-9/11': 5276, 'cross-country': 5277, 'trip': 5278, 'homeric': 5279, 'longer': 5280, 'possess': 5281, 'lack-of-attention': 5282, 'span': 5283, 'seventeen': 5284, 'inhuman': 5285, 'daringly': 5286, 'perceptive': 5287, 'piercing': 5288, 'feisty': 5289, 'biggie': 5290, 'tupac': 5291, 'bold': 5292, 'chew': 5293, 'linking': 5294, 'massacre': 5295, 'armenians': 5296, 'present': 5297, 'cliffsnotes': 5298, 'pages': 5299, 'surely': 5300, 'belly': 5301, 'selection': 5302, 'outtakes': 5303, 'tacked': 5304, 'credits': 5305, 'opens': 5306, 'funeral': 5307, \"protagonist's\": 5308, 'bed': 5309, 'multitude': 5310, 'simple-minded': 5311, 'yahoo-ing': 5312, 'borrows': 5313, 'silence': 5314, 'lambs': 5315, 'sophisticated': 5316, 'human-scale': 5317, 'unfortunately': 5318, 'stereotyped': 5319, \"woo's\": 5320, 'instincts': 5321, 'undermine': 5322, 'dilemma': 5323, 'reverent': 5324, 'rules': 5325, 'regarding': 5326, 'governance': 5327, 'hierarchy': 5328, 'taps': 5329, 'befuddlement': 5330, 'scathing': 5331, 'diaz': 5332, 'charmless': 5333, 'choose': 5334, 'interpret': 5335, 'hopeful': 5336, 'payne': 5337, 'darker': 5338, 'finish': 5339, 'haphazard': 5340, 'inconsequential': 5341, 'instantly': 5342, 'snow-and-stuntwork': 5343, 'extravaganza': 5344, 'upstaged': 5345, 'avalanche': 5346, 'holiday-season': 5347, 'product': 5348, 'myself': 5349, 'liking': 5350, 'rot': 5351, 'hack': 5352, \"carpenter's\": 5353, 'ghosts': 5354, 'mars': 5355, 'eliminating': 5356, 'beheadings': 5357, 'met': 5358, 'annoyingly': 5359, 'self-involved': 5360, 'glib': 5361, 'sentences': 5362, 'pen': 5363, 'dubbed': 5364, 'nicholson': 5365, 'craft': 5366, 'legend': 5367, 'sustained': 5368, 'fest': 5369, 'self-congratulation': 5370, 'scant': 5371, 'joyous': 5372, 'celebration': 5373, 'woven': 5374, 'singing': 5375, 'plain': 5376, 'near-hypnotic': 5377, 'physical': 5378, 'horrifying': 5379, 'heart-breakingly': 5380, 'extensive': 5381, 'annals': 5382, 'white-on-black': 5383, 'racism': 5384, 'comparison': 5385, 'earlier': 5386, 'disappointingly': 5387, 'slice': 5388, 'lower-class': 5389, 'london': 5390, 'positive': 5391, 'said': 5392, 'schneider': 5393, 'animal': 5394, 'passionately': 5395, 'inquisitive': 5396, 'uncover': 5397, 'hopefully': 5398, 'trivial': 5399, 'cash-in': 5400, 'features': 5401, 'nickelodeon': 5402, \"script's\": 5403, 'judgment': 5404, 'drug': 5405, 'infidelity': 5406, 'usually': 5407, 'fare': 5408, \"turpin's\": 5409, 'chuckle': 5410, 'everlyn': 5411, 'sampi': 5412, 'courageous': 5413, 'molly': 5414, 'craig': 5415, 'radiates': 5416, 'star-power': 5417, \"reyes'\": 5418, 'individual': 5419, 'beliefs': 5420, 'prejudices': 5421, 'swept': 5422, 'thirty-three': 5423, 'self-satisfied': 5424, 'walked': 5425, 'e': 5426, 't': 5427, 'hoped': 5428, 'moist': 5429, 'seaside': 5430, 'splendor': 5431, 'photographed': 5432, 'colour': 5433, 'insistent': 5434, 'sincerity': 5435, 'appreciation': 5436, 'daily': 5437, 'grind': 5438, 'hardhearted': 5439, 'scrooge': 5440, 'respond': 5441, \"'possession\": 5442, 'based': 5443, 'byatt': 5444, 'head-on': 5445, 'trading': 5446, 'reverence': 5447, 'civil': 5448, 'disobedience': 5449, 'anti-war': 5450, 'movements': 5451, 'voices': 5452, \"shafer's\": 5453, 'low-heat': 5454, 'interrupted': 5455, 'middling': 5456, \"wilder's\": 5457, 'hot': 5458, 'rises': 5459, 'oedekerk': 5460, 'mugs': 5461, 'mercilessly': 5462, 'cocky': 5463, 'pseudo-intellectual': 5464, 'kid': 5465, 'intentionally': 5466, 'appalling': 5467, 'stepmother': 5468, 'austerity': 5469, 'painting': 5470, 'dynamic': 5471, 'tried': 5472, 'essay': 5473, 'specter': 5474, 'suicide': 5475, \"schindler's\": 5476, 'list': 5477, 'grandiloquent': 5478, 'grisly': 5479, 'elicits': 5480, 'jar': 5481, 'binks': 5482, 'scrappy': 5483, 'doo': 5484, 'wrapped': 5485, '[swimfan]': 5486, 'insultingly': 5487, 'unbelievable': 5488, 'villainess': 5489, 'fortunately': 5490, 'elling': 5491, \"actors'\": 5492, 'falsehoods': 5493, 'pile': 5494, 'undermining': 5495, 'stifling': 5496, \"creator's\": 5497, 'emptiness': 5498, 'underlay': 5499, 'gaiety': 5500, \"1920's\": 5501, 'flip-flop': 5502, 'courtship': 5503, 'reel': 5504, 'trivializes': 5505, 'crisis': 5506, 'guarded': 5507, 'resentful': 5508, 'betty': 5509, 'margot': 5510, 'front': 5511, 'center': 5512, \"'ace\": 5513, \"ventura'\": 5514, 'rip-off': 5515, 'pollak': 5516, 'wrestler': 5517, 'chyna': 5518, 'dolly': 5519, 'parton': 5520, \"'credit'\": 5521, 'resumes': 5522, \"that'll\": 5523, 'crap': 5524, 'offered': 5525, 'slapdash': 5526, 'extraterrestrial': 5527, 'comedies': 5528, '3-d': 5529, 'vistas': 5530, 'orbit': 5531, 'station': 5532, 'suspended': 5533, 'chimes': 5534, 'globe': 5535, 'stanzas': 5536, 'breathtaking': 5537, 'jazzes': 5538, 'adroitly': 5539, 'invincible': 5540, 'werner': 5541, 'doug': 5542, \"pray's\": 5543, 'scratch': 5544, \"'god\": 5545, 'capra': 5546, 'cooper': 5547, 'rolling': 5548, 'graves': 5549, 'typical': 5550, 'ryder': 5551, 'puzzling': 5552, 'randy': 5553, 'pushed': 5554, 'pulled': 5555, 'figuratively': 5556, 'desire': 5557, '[sex': 5558, 'luc�a]': 5559, 'arousing': 5560, 'effectively': 5561, 'creepy-scary': 5562, 'fixating': 5563, 'corner': 5564, 'nerves': 5565, 'hats': 5566, 'mistake': 5567, 'averse': 5568, 'am': 5569, 'follow-your-dream': 5570, 'celebrate': 5571, 'victories': 5572, 'exceptions': 5573, 'stoops': 5574, 'manipulation': 5575, 'conventions': 5576, 'biting': 5577, 'delicious': 5578, 'plum': 5579, 'rotten': 5580, 'pulp': 5581, 'worms': 5582, 'west': 5583, 'exceptional': 5584, 'sorority': 5585, 'spill': 5586, \"projector's\": 5587, 'lens': 5588, 'brent': 5589, 'hanley': 5590, 'paxton': 5591, 'measured': 5592, 'overly': 5593, 'foul': 5594, \"shum's\": 5595, 'intentions': 5596, 'minds': 5597, 'principals': 5598, 'broadly': 5599, 'lowbrow': 5600, 'farm': 5601, 'animals': 5602, 'injured': 5603, 'grand-scale': 5604, 'larger-than-life': 5605, 'awarded': 5606, 'mythic': 5607, 'pause': 5608, 'considering': 5609, 'pretends': 5610, 'learned': 5611, 'nobody': 5612, 'eccentric': 5613, 'beside': 5614, 'pointed': 5615, 'incisive': 5616, 'unabashed': 5617, 'bracing': 5618, 'baffling': 5619, 'occasion': 5620, 'ignored': 5621, 'prone': 5622, 'indignation': 5623, 'susceptible': 5624, 'inescapable': 5625, 'absurdities': 5626, 'tantamount': 5627, 'sept': 5628, '11': 5629, 'showtime': 5630, 'closer': 5631, 'slowtime': 5632, 'showcase': 5633, \"hart's\": 5634, 'top-billed': 5635, 'willis': 5636, 'enlightenment': 5637, 'ray': 5638, 'terry': 5639, 'ugly': 5640, 'hence': 5641, 'bumping': 5642, 'closet': 5643, 'modestly': 5644, 'heady': 5645, 'jumble': 5646, 'insane': 5647, 'undertaking': 5648, 'coheres': 5649, 'sane': 5650, 'breathtakingly': 5651, 'mugging': 5652, \"'uhhh\": 5653, 'pedestrian': 5654, 'catsup--': 5655, \"robinson's\": 5656, 'web': 5657, 'matches': 5658, 'page-turning': 5659, 'frenzy': 5660, 'clancy': 5661, 'lyrical': 5662, 'remarkably': 5663, 'establishing': 5664, \"character's\": 5665, 'curtain': 5666, 'separates': 5667, 'laughing': 5668, 'infantile': 5669, 'redundant': 5670, 'yep': 5671, 'implicit': 5672, 'tonga': 5673, 'inferior': 5674, 'jennifer': 5675, 'lopez': 5676, 'shown': 5677, 'planning': 5678, 'marry': 5679, 'till': 5680, 'maid': 5681, 'manhattan': 5682, 'near-miss': 5683, 'shunji': 5684, \"iwai's\": 5685, 'lily': 5686, 'chou': 5687, 'growing': 5688, 'japan': 5689, 'k-19': 5690, 'hold': 5691, 'submarine': 5692, 'elegiacally': 5693, 'soggy': 5694, 'saving': 5695, 'ryanovich': 5696, 'lackadaisical': 5697, 'evokes': 5698, 'tier': 5699, \"huppert's\": 5700, 'channeling': 5701, 'kathy': 5702, \"baker's\": 5703, 'boston': 5704, '8': 5705, 'augustine': 5706, 'delicately': 5707, 'observed': 5708, 'masterfully': 5709, 'stylized': 5710, 'maverick': 5711, 'says': 5712, 'clobbering': 5713, 'kline': 5714, 'microscope': 5715, 'bother': 5716, 'springer': 5717, 'condescending': 5718, 'leafing': 5719, 'photos': 5720, 'accompanied': 5721, 'sketchiest': 5722, 'captions': 5723, 'carlos': 5724, 'carrera': 5725, 'expertly': 5726, 'weaves': 5727, 'novelistic': 5728, 'entangled': 5729, 'interrelationships': 5730, \"jolie's\": 5731, 'caricature': 5732, 'radioactive': 5733, \"madonna's\": 5734, 'lagoon': 5735, '9/11': 5736, 'philosophical': 5737, 'freedom': 5738, 'steadily': 5739, 'building': 5740, 'climactic': 5741, 'burst': 5742, 'minimal': 5743, 'restage': 5744, 'compassionate': 5745, 'healing': 5746, 'arch': 5747, 'cold-blooded': 5748, 'bruin': 5749, 'thou': 5750, '-style': 5751, 'sporadic': 5752, 'bursts': 5753, 'liveliness': 5754, 'so-so': 5755, 'ear-pleasing': 5756, 'stinks': 5757, 'burlap': 5758, 'sack': 5759, 'gloom': 5760, 'solidly': 5761, 'comedy/drama': 5762, 'bolster': 5763, 'juan': 5764, 'jos�': 5765, \"campanella's\": 5766, 'reputation': 5767, 'united': 5768, 'states': 5769, 'mushes': 5770, 'college-friends': 5771, 'chill': 5772, 'dashing': 5773, 'absorbing': 5774, 'outing': 5775, \"france's\": 5776, 'seasonal': 5777, 'derives': 5778, 'gravity': 5779, 'gifts': 5780, 'grownups': 5781, \"morrison's\": 5782, 'decasia': 5783, 'unbearably': 5784, 'fear-inducing': 5785, 'fear-reducing': 5786, 'hideo': 5787, 'nakata': 5788, 'superstitious': 5789, 'curse': 5790, 'chain': 5791, 'letters': 5792, 'applies': 5793, 'ozpetek': 5794, 'aids': 5795, 'subtext': 5796, 'skims': 5797, 'realities': 5798, 'all-inclusive': 5799, 'uptight': 5800, 'class': 5801, 'bores': 5802, 'antonia': 5803, 'namely': 5804, 'archetypal': 5805, 'trash': 5806, 'yuks': 5807, 'appetizer': 5808, 'cantet': 5809, 'illuminates': 5810, 'means': 5811, 'helpfully': 5812, 'succinct': 5813, 'review': 5814, 'anywhere': 5815, 'beers': 5816, 'paint': 5817, 'wall': 5818, '[but]': 5819, 'junctures': 5820, 'tunes': 5821, 'tackling': 5822, 'done-to-death': 5823, 'plot-lines': 5824, 'fleshed-out': 5825, 'build': 5826, 'hoopla': 5827, 'structure': 5828, 'season': 5829, 'assign': 5830, 'shining': 5831, 'guarantee': 5832, 'following': 5833, 'careful': 5834, 'purely': 5835, 'bride': 5836, 'last-place': 5837, 'basketball': 5838, 'teams': 5839, 'overblown': 5840, 'howling': 5841, 'lovingly': 5842, 'coffee': 5843, 'unpredictable': 5844, 'baffled': 5845, 'folks': 5846, 'marketing': 5847, 'department': 5848, 'torpedo': 5849, \"clancy's\": 5850, 'scripters': 5851, 'oscars': 5852, 'nerve-raked': 5853, 'stagings': 5854, 'hardware': 5855, 'robust': 5856, 'gently': 5857, 'humorous': 5858, 'kapur': 5859, 'landscapes': 5860, 'overpraised': 5861, 'virtues': 5862, 'whiny': 5863, 'corruscating': 5864, 'commentary': 5865, 'inexplicable': 5866, 'enchanting': 5867, 'anxious': 5868, 'hogwarts': 5869, 'toward': 5870, 'mischief': 5871, 'indecent': 5872, 'proposal': 5873, '9': 5874, 'weeks': 5875, 'flatly': 5876, 'kendall': 5877, 'ed': 5878, 'decter': 5879, 'mystery': 5880, 'expands': 5881, 'meditation': 5882, 'deceptions': 5883, 'clunky': 5884, 'fidget': 5885, 'ten': 5886, 'pseudo-serious': 5887, 'waiting': 5888, 'deleted': 5889, 'montage': 5890, 'sunshine': 5891, 'state': 5892, 'limbo': 5893, 'bordering': 5894, 'emphasizes': 5895, 'tradition': 5896, 'stoned': 5897, 'students': 5898, 'quietly': 5899, 'iranian-american': 5900, '1979': 5901, 'majidi': 5902, 'amateur': 5903, 'looked': 5904, 'expecting': 5905, \"paxton's\": 5906, 'directing': 5907, 'gothic': 5908, 'rural': 5909, 'americana': 5910, 'wickedly': 5911, 'consume': 5912, 'self-congratulatory': 5913, \"kid's]\": 5914, 'bratty': 5915, 'finale': 5916, 'changes': 5917, 'coarse': 5918, 'cliched': 5919, 'trifling': 5920, 'opposites': 5921, 'attract': 5922, 'squanders': 5923, 'charms': 5924, 'sandra': 5925, 'bleakly': 5926, 'refusing': 5927, 'pity': 5928, 'memorialize': 5929, 'writer/': 5930, 'pull': 5931, 'profundity': 5932, 'compels': 5933, 'demme': 5934, 'experiments': 5935, 'harvests': 5936, 'gems': 5937, 'field': 5938, 'roughage': 5939, 'dominates': 5940, 'appreciates': 5941, 'klein': 5942, 'dead-on': 5943, 'election': 5944, 'saddest': 5945, 'witnessed': 5946, 'bibbidy-bobbidi-bland': 5947, 'carmen': 5948, 'plotline': 5949, 'cinderella': 5950, 'sleeve': 5951, 'manage': 5952, 'spell': 5953, 'twist-and-turn': 5954, 'hurt': 5955, \"gaghan's\": 5956, 'resume': 5957, 'baseball': 5958, 'combined': 5959, 'indoctrinated': 5960, 'prejudice': 5961, 'trained': 5962, \"parents'\": 5963, 'pro-serb': 5964, 'propaganda': 5965, 'literary': 5966, 'purists': 5967, 'pleased': 5968, 'mainstream': 5969, 'matinee-style': 5970, 'bang-up': 5971, 'pleasing': 5972, 'crowds': 5973, 'enriched': 5974, 'exaggerated': 5975, 'parody': 5976, 'gross-out': 5977, 'indulges': 5978, 'dense': 5979, 'enigmatic': 5980, 'stagy': 5981, 'meant': 5982, 'wars': 5983, 'repeats': 5984, 'stunts': 5985, 'sameness': 5986, 'singer': 5987, 'ill-constructed': 5988, 'fatally': 5989, 'consistent': 5990, 'degenerating': 5991, 'pious': 5992, 'sentimental': 5993, 'sisters': 5994, 'prevent': 5995, 'half-a-dozen': 5996, 'frida': 5997, 'involve': 5998, 'herself': 5999, 'loves': 6000, 'stuffed': 6001, 'warning': 6002, 'friends': 6003, 'battle': 6004, 'waters': 6005, 'kinds': 6006, 'missteps': 6007, 'send': 6008, 'suspension': 6009, 'disbelief': 6010, 'screenwriting': 6011, 'latter': 6012, 'wes': 6013, \"craven's\": 6014, 'craven': 6015, \"'a\": 6016, 'elm': 6017, \"street'\": 6018, \"'the\": 6019, 'hills': 6020, 'schlock': 6021, 'merchant': 6022, \"'deadly\": 6023, 'friend': 6024, 'artfully': 6025, 'mortality': 6026, \"ou've\": 6027, 'pic': 6028, 'cleavage': 6029, 'heroine': 6030, 'principled': 6031, 'stitch': 6032, 'mannered': 6033, 'destructive': 6034, 'here�': 6035, 'loveable': 6036, 'importantly': 6037, 'mild-mannered': 6038, 'been-there': 6039, 'postmodern': 6040, 'winds': 6041, 'hybrid': 6042, 'scarface': 6043, \"carlito's\": 6044, '1972': 6045, 'stew': 6046, 'steven': 6047, '1993': 6048, 'rough': 6049, 'trade': 6050, 'punch-and-judy': 6051, \"'face\": 6052, \"value'\": 6053, 'gooding': 6054, 'ingratiating': 6055, 'wow': 6056, 'knew': 6057, 'charles': 6058, 'dickens': 6059, 'light-hearted': 6060, 'admittedly': 6061, 'commitment': 6062, 'weaver': 6063, 'lapaglia': 6064, 'folk': 6065, 'definite': 6066, 'weaknesses': 6067, \"'60s\": 6068, 'caper': 6069, 'knockaround': 6070, 'lame': 6071, 'aspiration': 6072, 'grasping': 6073, 'coolness': 6074, 'vibes': 6075, 'flippant': 6076, '78': 6077, 'zings': 6078, 'vibrance': 6079, 'respective': 6080, 'worn': 6081, 'threadbare': 6082, 'dismiss': 6083, 'flashes': 6084, 'mordant': 6085, 'adrien': 6086, 'brody': 6087, 'realizes': 6088, 'permutations': 6089, 'layers': 6090, 'soap-opera': 6091, 'entity': 6092, 'strangling': 6093, 'goals': 6094, 'sustains': 6095, 'build-up': 6096, 'expository': 6097, '90-plus': 6098, \"majidi's\": 6099, 'ravishing': 6100, 'consciousness-raiser': 6101, 'draggy': 6102, 'slump': 6103, 'sam': 6104, 'mendes': 6105, 'segues': 6106, 'winner': 6107, 'oscar-winning': 6108, 'sleight': 6109, 'goodwill': 6110, 'flavorful': 6111, 'martha': 6112, 'groove': 6113, 'low-wattage': 6114, 'indistinct': 6115, 'enveloping': 6116, 'breathe': 6117, 'frame': 6118, 'potion': 6119, 'named': 6120, 'blossom': 6121, 'bubbles': 6122, 'buttercup': 6123, 'laser-beam': 6124, 'enable': 6125, 'discern': 6126, 'flimsy': 6127, 'screenplays': 6128, 'heartbreaking': 6129, 'artless': 6130, 'sytle': 6131, 'tremendously': 6132, 'jay': 6133, 'russell': 6134, 'capricious': 6135, 'splendid-looking': 6136, '[sci-fi]': 6137, 'rehash': 6138, 'vera': 6139, 'self-hatred': 6140, 'instilled': 6141, 'rigid': 6142, 'critics': 6143, '[reaches]': 6144, 'heart-wrenching': 6145, 'depths': 6146, 'alan': 6147, 'lift': 6148, 'playwriting': 6149, '101': 6150, 'devoid': 6151, 'sensuality': 6152, 'hedonistic': 6153, \"'angels\": 6154, 'dirty': 6155, \"faces'\": 6156, '1938': 6157, 'unintentional': 6158, 'sophomoric': 6159, 'revolting': 6160, 'void': 6161, 'thrill': 6162, 'quasi-improvised': 6163, 'drunk': 6164, 'sober': 6165, 'transparent': 6166, 'moralizing': 6167, 'timewaster': 6168, 'helped': 6169, 'jean': 6170, \"moviegoer's\": 6171, 'appetite': 6172, 'soaringly': 6173, 'freaks': 6174, 'matinee': 6175, \"hitchens'\": 6176, 'flower': 6177, \"child's\": 6178, 'purge': 6179, 'tooth': 6180, 'claw': 6181, 'weak': 6182, 'buy': 6183, 'accorsi': 6184, 'roach': 6185, 'taxicab': 6186, 'graceful': 6187, 'draws': 6188, 'intertwined': 6189, 'millions': 6190, 'dollars': 6191, 'heaped': 6192, 'vast': 6193, 'proportions': 6194, 'reap': 6195, 'spiffy': 6196, 'bluescreen': 6197, 'weaponry': 6198, 'percolating': 6199, \"'some\": 6200, \"body'\": 6201, 'worry': 6202, 'oliver': 6203, 'intends': 6204, 'mangle': 6205, 'muttering': 6206, 'dissing': 6207, 'ticket': 6208, 'cost': 6209, 'zero': 6210, 'drowns': 6211, 'sap': 6212, 'awareness': 6213, 'issue': 6214, 'overlooked': 6215, '42': 6216, 'innuendo': 6217, 'shambling': 6218, 'cheerfully': 6219, 'origin': 6220, 'disappoint': 6221, 'books': 6222, \"version's\": 6223, 'predecessor': 6224, 'plentiful': 6225, 'drowned': 6226, 'boredom': 6227, '[crystal': 6228, 'niro]': 6229, 'sing': 6230, 'sugary': 6231, 'withholds': 6232, 'delivery': 6233, 'pell-mell': 6234, 'punchy': 6235, 'aimlessly': 6236, 'lodging': 6237, 'cracks': 6238, 'ever-growing': 6239, 'category': 6240, 'unembarrassing': 6241, 'unmemorable': 6242, 'timeless': 6243, 'heated': 6244, 'passions': 6245, 'forgiveness': 6246, 'noble': 6247, 'failure': 6248, 'walsh': 6249, 'negotiate': 6250, 'inconsistencies': 6251, \"janice's\": 6252, 'sheer': 6253, 'whole-heartedly': 6254, 'movie--': 6255, 'significance': 6256, 'simultaneously': 6257, 'heartbreakingly': 6258, 'oddity': 6259, 'remembering': 6260, 'revulsion': 6261, 'hrs': 6262, 'eddie': 6263, 'murphy': 6264, 'showboating': 6265, 'wise-cracker': 6266, 'partly': 6267, 'soulless': 6268, 'personality': 6269, 'rabbit-proof': 6270, 'tailored': 6271, 'lean': 6272, 'economical': 6273, 'paced': 6274, 'argentinian': 6275, 'shadow': 6276, 'tonight': 6277, 'poignancy': 6278, 'gut-bustingly': 6279, 'crushingly': 6280, 'impressionistic': 6281, 'point-of-view': 6282, 'fewer': 6283, 'slow-motion': 6284, \"'grandeur'\": 6285, 'quick-cut': 6286, 'detract': 6287, 'athleticism': 6288, 'dan': 6289, 'shawn': 6290, 'levy': 6291, 'volume': 6292, 'primary': 6293, \"'difficult'\": 6294, 'understandable': 6295, 'exploring': 6296, 'motivation': 6297, \"dickens'\": 6298, '800-page': 6299, \"mcgrath's\": 6300, 'benoit': 6301, 'jacquot': 6302, 'opera-to-film': 6303, 'translation': 6304, 'tosca': 6305, 'heaving': 6306, \"puccini's\": 6307, 'famous': 6308, 'love-jealousy-': 6309, 'murder-suicide': 6310, 'fandango': 6311, 'achronological': 6312, 'vignettes': 6313, 'cumulative': 6314, 'effect': 6315, 'chilling': 6316, 'widget': 6317, 'cranked': 6318, 'kick': 6319, 'brits': 6320, 'performing': 6321, 'ages-old': 6322, 'tricks': 6323, 'pulling': 6324, 'pin': 6325, 'grenade': 6326, 'teeth': 6327, 'ransacked': 6328, 'proposes': 6329, 'plight': 6330, 'callow': 6331, '22-year-old': 6332, 'girlfriend': 6333, '18-year-old': 6334, 'mistress': 6335, 'attentive': 6336, 'goodfellas': 6337, 'hispanic': 6338, 'unlimited': 6339, 'phony': 6340, \"brosnan's\": 6341, 'evelyn': 6342, 'misdirected': 6343, 'perhaps': 6344, 'reserve': 6345, 'gunplay': 6346, 'excitement': 6347, 'dawn': 6348, 'crossed': 6349, 'zombies': 6350, 'ghoulish': 6351, 'trains': 6352, 'ambition': 6353, 'pigeonhole-resisting': 6354, 'romp': 6355, 'evocation': 6356, 'evergreen': 6357, 'openness': 6358, 'expresses': 6359, 'charge': 6360, 'lip-reading': 6361, 'aaa': 6362, 'blast': 6363, 'adrenalin': 6364, 'rated': 6365, 'eee': 6366, 'vin': 6367, 'hyperbole': 6368, 'same-sex': 6369, 'triangle': 6370, 'difficult-to-swallow': 6371, 'affectation-free': 6372, 'originally': 6373, 'tenderness': 6374, 'grew': 6375, 'stalker': 6376, \"1980's\": 6377, 'appease': 6378, \"kinnear's\": 6379, 'career-defining': 6380, 'mystifying': 6381, 'initiation': 6382, 'rite': 6383, 'angelique': 6384, '[opening]': 6385, 'guarantees': 6386, \"karmen's\": 6387, 'enthronement': 6388, 'low-brow': 6389, 'gratuitous': 6390, 'disregard': 6391, 'transporter': 6392, 'unapologetically': 6393, 'phillip': 6394, 'christopher': 6395, 'doyle': 6396, 'forcefulness': 6397, \"greene's\": 6398, \"aren't-kids-cute\": 6399, 'faked': 6400, 'stately': 6401, 'composition': 6402, 'doa': 6403, 'including': 6404, 'assumption': 6405, 'innocent': 6406, 'childlike': 6407, 'narcotizing': 6408, 'sinister': 6409, 'biennial': 6410, 'machinations': 6411, 'accomplishes': 6412, 'goal': 6413, 'emphasizing': 6414, 'tosses': 6415, 'toys': 6416, 'half-hearted': 6417, 'paeans': 6418, 'empowerment': 6419, 'undercut': 6420, 'brutality': 6421, 'expense': 6422, 'patchwork': 6423, 'environment': 6424, 'pushing': 6425, 'urbane': 6426, 'bitterly': 6427, 'forsaken': 6428, 'worshipful': 6429, 'bio-doc': 6430, 'amalgam': 6431, 'fugitive': 6432, 'recall': 6433, 'fubar': 6434, 'oblivious': 6435, 'threatened': 6436, 'terrorist': 6437, 'son': 6438, 'half-hour': 6439, 'replete': 6440, 'flattering': 6441, 'quietness': 6442, '[clara': 6443, 'paul]': 6444, 'lacerating': 6445, 'courage': 6446, 'official': 6447, 'repression': 6448, 'hippies': 6449, 'included': 6450, 'artsy': 6451, 'flourishes': 6452, 'gritty': 6453, 'extremities': 6454, 'south-of-the-border': 6455, 'melrose': 6456, 'rail': 6457, 'ongoing': 6458, 'unprecedented': 6459, 'physically': 6460, 'caught': 6461, 'process': 6462, 'realized': 6463, 'fantastic': 6464, 'reign': 6465, 'rails': 6466, 'larry': 6467, \"fessenden's\": 6468, 'newfangled': 6469, 'derived': 6470, \"'wouldn't\": 6471, 'bra': 6472, 'mark': 6473, \"pellington's\": 6474, 'kooky': 6475, 'overeager': 6476, 'myth': 6477, '[for': 6478, 'arliss': 6479, 'staring': 6480, 'blank': 6481, 'comedy-drama': 6482, 'rooted': 6483, 'undergoing': 6484, 'midlife': 6485, 'collateral': 6486, 'damage': 6487, 'extra': 6488, 'useless': 6489, 'recycling': 6490, \"mid-'70s\": 6491, 'knock-offs': 6492, 'last-minute': 6493, 'plausible': 6494, '[denis]': 6495, 'claustrophic': 6496, 'suffocating': 6497, 'attics': 6498, 'inevitably': 6499, 'consigned': 6500, 'miniscule': 6501, 'bleep': 6502, 'radar': 6503, 'shell': 6504, 'laid-back': 6505, 'endings': 6506, 'raw-nerved': 6507, '[director': 6508, 'peter]': 6509, 'crew': 6510, 'majesty': 6511, \"tolkien's\": 6512, \"[jeff's]\": 6513, 'fluid': 6514, 'compositions': 6515, 'underlined': 6516, 'finn': 6517, 'edmund': 6518, \"mcwilliams's\": 6519, 'melancholy': 6520, 'self-indulgent': 6521, 'highlighted': 6522, \"kwan's\": 6523, 'unique': 6524, 'limps': 6525, 'squirm-inducing': 6526, 'fish-out-of-water': 6527, 'hanson': 6528, 'syrup': 6529, 'fizz': 6530, \"auteil's\": 6531, 'charismatic': 6532, 'seduce': 6533, 'conquer': 6534, 'devilishly': 6535, 'heather': 6536, 'mcgowan': 6537, 'niels': 6538, 'mueller': 6539, 'distances': 6540, 'herrings': 6541, 'false': 6542, 'register': 6543, 'arty': 6544, 'theorizing': 6545, \"'german-expressionist\": 6546, 'press': 6547, 'notes': 6548, 'render': 6549, 'troubled': 6550, \"1998's\": 6551, 'actual': 6552, 'vietnam': 6553, 'combat': 6554, 'vietnamese': 6555, 'kudos': 6556, 'veering': 6557, \"redford's\": 6558, 'lab': 6559, 'lend': 6560, 'imprimatur': 6561, 'independent': 6562, 'irrevocable': 6563, 'bind': 6564, 'freaky': 6565, 'topics': 6566, 'relegated': 6567, 'forward': 6568, 'sally': 6569, 'jesse': 6570, 'raphael': 6571, 'philadelphia': 6572, 'twohy': 6573, 'sub': 6574, 'preserving': 6575, 'mediterranean': 6576, 'sparkles': 6577, \"'swept\": 6578, \"away'\": 6579, 'tuxedo': 6580, \"embarrassing--i'm\": 6581, 'prepared': 6582, 'waterlogged': 6583, \"'fatal\": 6584, \"attraction'\": 6585, 'teeny-bopper': 6586, 'potboiler': 6587, 'wastes': 6588, 'attractive': 6589, 'misses': 6590, 'foibles': 6591, 'life-size': 6592, 'reenactment': 6593, 'chick': 6594, 'tracts': 6595, 'ended': 6596, 'hippie': 6597, 'tossed': 6598, 'lake': 6599, 'shyamalan': 6600, 'mom': 6601, 'possibilities': 6602, 'prom': 6603, 'dates': 6604, 'mid-to-low': 6605, 'betrayed': 6606, 'makeup': 6607, 'iris': 6608, 'lucky': 6609, 'aiming': 6610, 'soon-to-be-forgettable': 6611, 'section': 6612, 'petty': 6613, 'thievery': 6614, 'bars': 6615, 'walk': 6616, 'succeeds': 6617, 'followed': 6618, 'killer': 6619, 'weakest': 6620, '[woody': 6621, 'allen]': 6622, 'twenty': 6623, 'holy': 6624, 'mad': 6625, 'mask': 6626, 'splat-man': 6627, 'slash-and-hack': 6628, 'european': 6629, 'amassed': 6630, 'literature': 6631, 'like-themed': 6632, 'oscar-sweeping': 6633, 'rates': 6634, 'chases': 6635, 'earthshaking': 6636, 'fluctuating': 6637, 'spare': 6638, 'iii': 6639, 'drumline': 6640, 'jo�o': 6641, 'pedro': 6642, \"rodrigues'\": 6643, 'define': 6644, \"hero's\": 6645, 'nicolas': 6646, 'cage': 6647, 'ruffle': 6648, 'erratic': 6649, 'ex-marine': 6650, 'walter': 6651, 'kennedy': 6652, 'valid': 6653, 'depersonalization': 6654, 'tend': 6655, 'explored': 6656, 'nick': 6657, 'hornby': 6658, 'pleasurable': 6659, 'featherweight': 6660, 'nonexistent': 6661, 'aimlessness': 6662, 'videotape': 6663, 'indecipherable': 6664, \"ferrara's\": 6665, 'strongest': 6666, 'unwatchable': 6667, 'shekhar': 6668, 'schiffer': 6669, 'hossein': 6670, 'amini': 6671, 'modernize': 6672, 'reconceptualize': 6673, 'barriers': 6674, \"kaufman's\": 6675, 'sooooo': 6676, 'pair': 6677, 'evolved': 6678, 'superstar': 6679, 'quirkily': 6680, 'suavity': 6681, 'classical': 6682, 'comical': 6683, 'all-too-familiar': 6684, 'saga': 6685, 'esther': 6686, 'kahn': 6687, 'storylines': 6688, 'skilfully': 6689, 'swooping': 6690, 'aerial': 6691, 'dawson': 6692, 'leery': 6693, 'summertime': 6694, 'look-see': 6695, 'curiously': 6696, 'quasi-shakespearean': 6697, 'misogynist': 6698, 'sneaky': 6699, 'dupe': 6700, 'plodding': 6701, 'sensitivity': 6702, 'analysis': 6703, 'todd': 6704, 'zhuangzhuang': 6705, 'text': 6706, 'discordant': 6707, 'topple': 6708, 'indigenous': 6709, 'exists': 6710, 'eke': 6711, 'tug': 6712, 'jewish': 6713, 'ww': 6714, 'out-shock': 6715, 'out-outrage': 6716, 'out-depress': 6717, 'finest': 6718, 'humane': 6719, 'entry': 6720, 'lucid': 6721, 'flowed': 6722, 'provided': 6723, 'comedian': 6724, 'hides': 6725, 'routines': 6726, \"elliott's\": 6727, 'memoir': 6728, 'fashions': 6729, 'articulate': 6730, 'character-': 6731, 'and-': 6732, 'relationship': 6733, 'favored': 6734, 'damning': 6735, 'virtually': 6736, 'joyless': 6737, 'virtuosity': 6738, 'crapulence': 6739, \"[d]oesn't\": 6740, 'evangelical': 6741, 'posits': 6742, 'heretofore': 6743, 'unfathomable': 6744, 'computer-generated': 6745, 'construct': 6746, 'theory': 6747, 'sleight-of-hand': 6748, 'ill-wrought': 6749, 'hypothesis': 6750, 'bodice-ripper': 6751, 'junk': 6752, 'endless': 6753, 'zealously': 6754, 'spreading': 6755, 'puritanical': 6756, 'brand': 6757, 'christianity': 6758, 'seas': 6759, 'islanders': 6760, 'believer': 6761, 'relish': 6762, \"'blue\": 6763, \"crush'\": 6764, 'swims': 6765, 'sleeper': 6766, 'award': 6767, 'imposter': 6768, 'sides': 6769, 'sees': 6770, 'mock': 6771, 'power-lunchers': 6772, 'thrown-together': 6773, 'summer-camp': 6774, 'underrehearsed': 6775, 'arbitrarily': 6776, 'crude': 6777, 'vulgar': 6778, \"joan's\": 6779, 'prefeminist': 6780, 'nudity': 6781, 'girls': 6782, 'swim': 6783, 'passages': 6784, 'secondhand': 6785, 'lagaan': 6786, 'quintessential': 6787, 'focus-grouped': 6788, \"yu's\": 6789, 'alchemy': 6790, 'ignore': 6791, 'razzle-dazzle': 6792, 'histrionic': 6793, 'muse': 6794, 'eludes': 6795, 'enticing': 6796, 'heart-rending': 6797, 'unaffected': 6798, 'impression': 6799, 'creators': 6800, 'laughed': 6801, 'scherfig': 6802, 'successful': 6803, 'handle': 6804, 'thousand': 6805, \"belushi's\": 6806, 'easy-going': 6807, 'likableness': 6808, \"attal's\": 6809, 'hang-ups': 6810, 'surrounding': 6811, 'dare': 6812, 'outdated': 6813, 'fresher': 6814, 'accident': 6815, 'adventures': 6816, 'perils': 6817, 'again-courage': 6818, 'self-sacrifice': 6819, 'pressure': 6820, 'regurgitated': 6821, 'no-holds-barred': 6822, 'laying': 6823, 'encounter': 6824, \"'si\": 6825, 'logra': 6826, 'desarrollarse': 6827, 'como': 6828, 'gran': 6829, 'tampoco': 6830, 'muchas': 6831, 'cintas': 6832, 'pecan': 6833, 'pretenciosas': 6834, 'resultan': 6835, 'totalmente': 6836, 'banales': 6837, 'revenge': 6838, 'nerds': 6839, 'revisited': 6840, \"cq's\": 6841, 'reflection': 6842, 'cinema-and-self': 6843, 'suggests': 6844, 'considered': 6845, 'successor': 6846, 'hiding': 6847, 'advantages': 6848, 'able': 6849, '15-year': 6850, '100': 6851, 'insightfully': 6852, 'chicago': 6853, 'brash': 6854, 'sardonic': 6855, 'socio-histo-political': 6856, 'treatise': 6857, 'strides': 6858, 'illusion': 6859, 'deconstructed': 6860, 'zoning': 6861, 'ordinances': 6862, 'science': 6863, 'infomercial': 6864, \"month's\": 6865, 'tepid': 6866, 'mixed': 6867, 'disapproval': 6868, 'justine': 6869, 'tinge': 6870, 'vegetables': 6871, 'batch': 6872, 'catcher': 6873, 'rye': 6874, 'dyslexia': 6875, 'saturday': 6876, 'per': 6877, 'dollar': 6878, \"demme's\": 6879, '[evans': 6880, 'is]': 6881, 'facetious': 6882, 'smirk': 6883, 'scorsese': 6884, 'brassy': 6885, \"katz's\": 6886, 'panache': 6887, 'prurient': 6888, 'whodunit': 6889, 'escape': 6890, 'shackles': 6891, 'handful': 6892, 'virtuosic': 6893, 'trashy': 6894, 'kinky': 6895, 'template': 6896, \"massoud's\": 6897, 'tenacious': 6898, 'fighter': 6899, 'prisoner': 6900, 'georgian': 6901, 'tel': 6902, 'aviv': 6903, 'best-selling': 6904, 'writer': 6905, 'self-help': 6906, 'neuroses': 6907, 'sticky': 6908, 'rosily': 6909, 'myopic': 6910, 'wwii-era': 6911, 'mississippi': 6912, 'delta': 6913, 'dragons': 6914, 'upper': 6915, 'smaller': 6916, 'numbered': 6917, 'kidlets': 6918, 'laced': 6919, 'fanciful': 6920, 'yielded': 6921, 'buffoonery': 6922, 'tickle': 6923, \"preschooler's\": 6924, 'costs': 6925, '$40': 6926, 'led': 6927, \"griffin's\": 6928, 'uncommercial': 6929, 'dahmer': 6930, 'jonze': 6931, 'risks': 6932, 'notion': 6933, 'ashamed': 6934, 'admitting': 6935, 'dish': 6936, 'hate': 6937, 'ah': 6938, 'assembled': 6939, 'frankenstein-like': 6940, 'marginally': 6941, 'shoot-em-ups': 6942, 'fell': 6943, 'cold-hearted': 6944, 'curmudgeon': 6945, 'peak': 6946, 'copy': 6947, 'crawls': 6948, \"snail's\": 6949, 'current': 6950, 'functions': 6951, 'walt': 6952, \"becker's\": 6953, 'pushes': 6954, 'demographically': 6955, 'appropriate': 6956, 'buttons': 6957, 'mistaking': 6958, 'tall': 6959, 'grass': 6960, 'futile': 6961, 'concoction': 6962, 'developed': 6963, 'moviemakers': 6964, 'keg': 6965, 'glued': 6966, 'mile': 6967, 'longest': 6968, 'yard': 6969, 'alternately': 6970, \"wife's\": 6971, 'suffocated': 6972, 'fussy': 6973, 'packaged': 6974, 'sold': 6975, 'soars': 6976, 'panoramic': 6977, 'large-screen': 6978, 'format': 6979, 'locales': 6980, 'scooping': 6981, 'belinsky': 6982, 'guessing': 6983, 'scrape': 6984, 'cracker': 6985, 'barrel': 6986, 'retro': 6987, 'uplifter': 6988, 'merit': 6989, 'hands': 6990, 'prophet': 6991, 'mail': 6992, 'disjointed': 6993, 'shocked': 6994, 'discover': 6995, \"seinfeld's\": 6996, 'greenlight': 6997, 'seesawing': 6998, \"general's\": 6999, 'competing': 7000, 'lawyers': 7001, 'stomach-knotting': 7002, 'testimony': 7003, 'witnesses': 7004, 'scenic': 7005, 'cesspool': 7006, 'suffering': 7007, 'prospect': 7008, 'sights': 7009, 'wondrous': 7010, 'amazement': 7011, 'participate': 7012, 'ill-advised': 7013, 'nausea': 7014, 'rug': 7015, 'eye-boggling': 7016, 'blend': 7017, 'psychedelic': 7018, 'backgrounds': 7019, \"'spy\": 7020, 'nervous': 7021, 'headache': 7022, 'exhilarate': 7023, \"russos'\": 7024, 'yorker': 7025, 'supposedly': 7026, 'sickening': 7027, 'thud': 7028, 'melted': 7029, 'mesmerize': 7030, 'astonish': 7031, 'entertain': 7032, 'half-an-hour': 7033, 'furious--': 7034, 'ninety': 7035, 'studies': 7036, 'cross-section': 7037, 'fictionalize': 7038, 'believed': 7039, 'fluffy': 7040, 'disposible': 7041, 'unspeakable': 7042, 'describe': 7043, 'effects]': 7044, \"gilliam's\": 7045, 'rudimentary': 7046, 'python': 7047, 'drawings': 7048, 'photographs': 7049, 'paste': 7050, 'edward': 7051, 'magnetic': 7052, \"birot's\": 7053, 'extraordinarily': 7054, 'talk': 7055, 'notorious': 7056, 'c': 7057, 'h': 7058, 'oodles': 7059, 'highlights': 7060, 'eh': 7061, 'pseudo': 7062, 'm�stico': 7063, 'corresponde': 7064, 'al': 7065, 'tono': 7066, 'del': 7067, 'filme': 7068, 'sensaci�n': 7069, 'inconformidad': 7070, 'hace': 7071, 'pensar': 7072, 'si': 7073, 'ir': 7074, 'taquilla': 7075, 'reclamar': 7076, 'precio': 7077, 'boleto': 7078, 'spanish-american': 7079, 'ballpoint': 7080, 'invisible': 7081, 'ink': 7082, 'jostling': 7083, 'elbowed': 7084, 'one-liners': 7085, 'incorporates': 7086, 'rotoscope': 7087, 'apparent': 7088, 'neat': 7089, 'unimpressive': 7090, 'despairingly': 7091, 'busy': 7092, 'reference': 7093, 'sound': 7094, 'watched': 7095, 'nuance': 7096, 'speaks': 7097, 'volumes': 7098, 'simone': 7099, 'real�she': 7100, 'provide': 7101, 'patois': 7102, 'tossing': 7103, 'expressions': 7104, 'mullinski': 7105, 'compact': 7106, '86': 7107, 'breezes': 7108, 'eric': 7109, 'horton': 7110, \"o'fallon\": 7111, 'wayne': 7112, 'rogue': 7113, 'assassins': 7114, \"cooper's\": 7115, 'agency': 7116, 'boss': 7117, 'resourceful': 7118, 'amnesiac': 7119, 'damon/bourne': 7120, 'predicament': 7121, 'unwieldy': 7122, '3d': 7123, 'enhance': 7124, 'otherworldly': 7125, 'combo': 7126, 'you-are-there': 7127, 'closeness': 7128, 'disorienting': 7129, 'unreality': 7130, 'broken-down': 7131, 'fourth': 7132, \"bennett's\": 7133, 'naturalistic': 7134, \"'reality'\": 7135, 'anybody': 7136, 'contemplating': 7137, 'drastic': 7138, 'jones': 7139, 'became': 7140, 'wilco': 7141, 'dropped': 7142, 'label': 7143, 'proving': 7144, 'ruin': 7145, \"another's\": 7146, 'shades': 7147, 'gray': 7148, 'maneuvers': 7149, 'almodovar': 7150, 'gleefully': 7151, 'grungy': 7152, 'hilariously': 7153, 'wicked': 7154, 'tailor-made': 7155, 'cliff-notes': 7156, 'full-length': 7157, \"jackson's\": 7158, 'enthusiastic': 7159, 'literal': 7160, 'bound': 7161, 'appreciate': 7162, 'fast-paced': 7163, 'glitzy': 7164, 'retold': 7165, 'races': 7166, 'rackets': 7167, 'impact': 7168, 'spike': 7169, 'waters-like': 7170, 'dances': 7171, 'tastelessness': 7172, 'falling': 7173, 'hole': 7174, 'dennis': 7175, 'athletic': 7176, 'one-note': 7177, '1960': 7178, 'smoother': 7179, 'greater': 7180, 'knowledge': 7181, 'facts': 7182, \"they'll\": 7183, 'treated': 7184, 'mysterious': 7185, 'worrying': 7186, 'ineffectual': 7187, 'changing': 7188, \"writer's\": 7189, 'diapers': 7190, \"'what's\": 7191, 'dragged': 7192, 'universe': 7193, 'avarice': 7194, 'damaged': 7195, 'pent': 7196, 'anger': 7197, 'bart': 7198, \"freundlich's\": 7199, 'dysfunctional': 7200, 'parent-child': 7201, 'soulful': 7202, \"crudup's\": 7203, 'anchoring': 7204, 'objectivity': 7205, 'carries': 7206, 'strengths': 7207, 'preciseness': 7208, 'tully': 7209, 'calm': 7210, 'self-assured': 7211, 'duty': 7212, 'appeals': 7213, 'filmgoing': 7214, 'frankenstein-monster': 7215, 'holm': 7216, 'conquers': 7217, 'earthy': 7218, 'napoleon': 7219, 'one-sided': 7220, 'theme': 7221, \"lawrence's\": 7222, 'over-indulgent': 7223, 'tirade': 7224, 'postcard': 7225, 'self-glorified': 7226, 'lawrence': 7227, 'lovefest': 7228, 'swinging': 7229, 'unleashes': 7230, 'misogyny': 7231, 'volcano': 7232, 'overflowing': 7233, 'septic': 7234, 'tank': 7235, 'takashi': 7236, 'miike': 7237, 'envelope': 7238, 'parodies': 7239, \"'nature'\": 7240, 'classroom': 7241, 'vividly': 7242, 'balanced': 7243, 'explains': 7244, 'zeitgeist': 7245, 'unrealized': 7246, 'sean': 7247, 'penn': 7248, 'owe': 7249, 'apology': 7250, 'aspects': 7251, \"'jason\": 7252, \"x'\": 7253, 'tanks': 7254, 'astounds': 7255, 'complicity': 7256, 'auschwitz': 7257, 'harrowing': 7258, 'tiny': 7259, 'nary': 7260, 'ethnic': 7261, 'blockbusters': 7262, 'pollute': 7263, 'escapes': 7264, 'perfervid': 7265, 'gang': 7266, 'warfare': 7267, 'ces': 7268, 'triteness': 7269, 'simplicity': 7270, 'real-life': 7271, 'seeking': 7272, 'definitive': 7273, 'account': 7274, \"eisenstein's\": 7275, 'skip': 7276, 'shelf': 7277, 'television-': 7278, 'caliber': 7279, 'rips': 7280, 'whoop': 7281, 'flashbacks': 7282, 'choppy': 7283, 'classified': 7284, \"'alternate\": 7285, \"reality'\": 7286, 'fine-looking': 7287, 'bouncy': 7288, 'clutch': 7289, 'deft': 7290, 'punctuation': 7291, 'yarn': 7292, 'sneeze': 7293, 'switch': 7294, 'teenagers': 7295, '1980s': 7296, 'sounding': 7297, 'physique': 7298, '[ahola]': 7299, 'encounters': 7300, 'arc': 7301, '#9': 7302, 'interestingly': 7303, 'top-notch': 7304, 'bergmanesque': 7305, 'intensity': 7306, 'bisset': 7307, 'radiant': 7308, 'wrecks': 7309, 'absurdist': 7310, 'separation': 7311, 'niche': 7312, 'self-critical': 7313, 'behind-the-scenes': 7314, 'navel-gazing': 7315, 'carved': 7316, \"orleans'\": 7317, 'infinite': 7318, 'insecurity': 7319, 'originality': 7320, 'translate': 7321, 'tap': 7322, 'heartbeat': 7323, 'salute': 7324, 'zippy': 7325, 'squarely': 7326, 'expounded': 7327, 'via': 7328, 'jonah': 7329, 'whale': 7330, 'musicals': 7331, 'backdrop': 7332, 'trivializing': 7333, 'chouraqui': 7334, 'affirm': 7335, \"love's\": 7336, 'endure': 7337, 'unimaginable': 7338, 'donovan': 7339, 'managed': 7340, 'canon': 7341, \"chan's\": 7342, 'scope': 7343, 'breadth': 7344, 'pitfalls': 7345, 'monumental': 7346, 'facet': 7347, 'atrocious': 7348, 'dodger': 7349, 'permeates': 7350, 'primer': 7351, 'know-how': 7352, 'give-a-damn': 7353, 'garcia': 7354, 'wobbly': 7355, '[on': 7356, 'show]': 7357, 'leavened': 7358, 'conspicuously': 7359, 'blowout': 7360, 'briefly': 7361, 'enliven': 7362, 'wheezing': 7363, 'subplot': 7364, 'stamina': 7365, '100-minute': 7366, \"protagonists'\": 7367, 'bohemian': 7368, 'buried': 7369, 'supply': 7370, 'calls': 7371, 'double-crosses': 7372, 'riddled': 7373, 'unanswered': 7374, 'requires': 7375, 'gargantuan': 7376, 'leaps': 7377, 'plod': 7378, 'banal': 7379, 'breezily': 7380, 'apolitical': 7381, 'campaign': 7382, 'trail': 7383, 'abandoned': 7384, 'consoled': 7385, 'revealed': 7386, 'survival': 7387, \"'[the\": 7388, 'cockettes]': 7389, 'hell-bent': 7390, 'expressing': 7391, 'pearls': 7392, 'clicking': 7393, 'luster': 7394, 'plastered': 7395, 'precocious': 7396, 'sensation': 7397, 'lasting': 7398, 'traces': 7399, \"charlotte's\": 7400, 'nonchalantly': 7401, 'represents': 7402, 'movie-making': 7403, 'distracted': 7404, 'rake': 7405, 'dough': 7406, 'baby': 7407, 'boomer': 7408, 'families': 7409, 'half-bad': 7410, \"sorcerer's\": 7411, 'singular': 7412, 'counts': 7413, 'bloody': 7414, 'sunday': 7415, 'connects': 7416, 'susan': 7417, 'sontag': 7418, 'stern': 7419, 'apallingly': 7420, 'thereof': 7421, 'newton': 7422, 'wahlberg': 7423, 'imax': 7424, 'portable': 7425, '�ltimo': 7426, 'suspeito': 7427, 'ganha': 7428, 'for�a': 7429, 'ao': 7430, 'tamb�m': 7431, 'funcionar': 7432, 'uma': 7433, 'esfera': 7434, 'adicional': 7435, 'compare': 7436, 'gotten': 7437, 'good-looking': 7438, 'noisy': 7439, 'schneidermeister': 7440, \"makin'\": 7441, \"losin'\": 7442, 'base': 7443, 'celebratory': 7444, 'isolation': 7445, 'bastions': 7446, 'individuality': 7447, 'ikea': 7448, 'squaddie': 7449, 'shocks': 7450, 'resoundingly': 7451, 're-release': 7452, 'ron': 7453, 'apollo': 7454, 'enormous': 7455, 'packages': 7456, 'smoochy': 7457, 'rancorous': 7458, 'wisdom': 7459, 'black-and-white': 7460, 'unrealistic': 7461, 'countless': 7462, 'italian-': 7463, 'chinese-': 7464, 'irish-': 7465, 'latin-': 7466, 'indian-': 7467, 'russian-': 7468, 'hyphenate': 7469, 'struggling': 7470, 'conflicting': 7471, 'political-action': 7472, 'epics': 7473, 'progress': 7474, 'refusal': 7475, 'seek': 7476, 'sympathies': 7477, 'squandered': 7478, 'prop': 7479, 'warmed-over': 7480, 'choreographed': 7481, 'mayhem': 7482, 'woo': 7483, 'barney': 7484, 'fanatics': 7485, 'detailed': 7486, 'pawns': 7487, 'bishops': 7488, 'kings': 7489, 'wagers': 7490, 'dingy': 7491, 'backrooms': 7492, 'pristine': 7493, 'forests': 7494, 'uneasy': 7495, 'alliance': 7496, 'balkans': 7497, 'obstacle': 7498, 'excuse': 7499, 'cal': 7500, 'unpleasantly': 7501, 'immature': 7502, 'claustrophobic': 7503, 'education': 7504, 'hammy': 7505, 'non-believer': 7506, 'werewolf': 7507, 'tyco': 7508, 'ad': 7509, 'position': 7510, 'undeterminable': 7511, 'experiment': 7512, 'gory': 7513, 'quotient': 7514, 'friday-night': 7515, 'milla': 7516, 'boozy': 7517, 'air': 7518, 'board': 7519, 'composed': 7520, 'crudely': 7521, 'shatters': 7522, 'waves': 7523, 'grandstanding': 7524, 'rocky-like': 7525, 'opinion': 7526, 'respectable': 7527, 'techno': 7528, 'tux': 7529, 'design': 7530, 'knockoff': 7531, 'rental': 7532, 'relocation': 7533, 'grooved': 7534, 'international': 7535, 'terrorism': 7536, 'paints': 7537, 'absurdly': 7538, 'homeboy': 7539, \"it'd\": 7540, 'dogma-like': 7541, 'spots': 7542, 'truthful': 7543, 'putters': 7544, 'astute': 7545, 'uncharismatically': 7546, 'r�sum�': 7547, 'loaded': 7548, '#3': 7549, 'simmering': 7550, 'sudden': 7551, 'buildup': 7552, 'preceded': 7553, 'squandering': 7554, 'burns': 7555, 'thoroughfare': 7556, 'unassuming': 7557, 'sneaks': 7558, 'theatre': 7559, 'uninteresting': 7560, 'uniqueness': 7561, 'squander': 7562, 'ham': 7563, \"boyd's\": 7564, 'consequence': 7565, \"'no\": 7566, 'mejor': 7567, 'cinta': 7568, 'serie': 7569, 'ni': 7570, 'cabeza': 7571, 'pero': 7572, 'entretiene': 7573, 'duda': 7574, 'cabe': 7575, \"friedman's\": 7576, 'updated': 7577, '1970': 7578, 'convinced': 7579, \"auteuil's\": 7580, 'listless': 7581, 'amble': 7582, 'thematic': 7583, 'ambling': 7584, 'biz': 7585, 'kwan': 7586, 'quietude': 7587, 'noise': 7588, 'lan': 7589, 'disarmingly': 7590, 'lived-in': 7591, 'too-spectacular': 7592, 'coastal': 7593, 'distracts': 7594, 'aimless': 7595, 'option': 7596, 'bewilderingly': 7597, 'underrated': 7598, 'campbell': 7599, 'scott': 7600, 'tightly': 7601, 'sent': 7602, 'copyof': 7603, 'wind-in-the-hair': 7604, 'tarted': 7605, 'latin': 7606, 'flava': 7607, 'playas': 7608, 'glorious': 7609, 'd': 7610, 'w': 7611, 'griffith': 7612, 'silent': 7613, 'renowned': 7614, 'indian': 7615, 'revel': 7616, 'phantom': 7617, 'color': 7618, 'count': 7619, 'calibrated': 7620, 'legendary': 7621, 'shlockmeister': 7622, 'alarming': 7623, 'anne': 7624, \"rice's\": 7625, 'chronicles': 7626, 'bang': 7627, 'fizzles': 7628, 'dynamite': 7629, 'steamy': 7630, \"week's\": 7631, 'pork': 7632, 'dumplings': 7633, 'irrigates': 7634, 'souls': 7635, 'winger': 7636, 'missed': 7637, \"1995's\": 7638, 'paris': 7639, 'skipping': 7640, 'excruciating': 7641, 'demonstration': 7642, 'unsalvageability': 7643, 'saddled': 7644, 'brothers-style': 7645, 'down-and-dirty': 7646, 'laugher': 7647, 'director/co-writer': 7648, 'jacques': 7649, 'audiard': 7650, 'known': 7651, 'top': 7652, 'rank': 7653, 'myths': 7654, 'spun': 7655, 'afresh': 7656, 'superbly': 7657, 'funny/gritty': 7658, 'unseen': 7659, 'county': 7660, \"'unfaithful'\": 7661, 'cheats': 7662, 'retreats': 7663, 'comfortable': 7664, 'contemplates': 7665, 'heartland': 7666, 'overwhelmed': 7667, 'reports': 7668, 'afterlife': 7669, 'mind-blowing': 7670, 'breath-taking': 7671, 'pregnant': 7672, 'thirsty': 7673, '40': 7674, 'consider': 7675, 'pap': 7676, 'invested': 7677, 'undergraduate': 7678, 'doubling': 7679, 'subtexts': 7680, 'stabs': 7681, 'wizard': 7682, 'fifth': 7683, 'spirit-crushing': 7684, 'ennui': 7685, 'denuded': 7686, 'jagger': 7687, 'halfwit': 7688, 'standup': 7689, 'wilson': 7690, '71': 7691, \"reno's\": 7692, 'immense': 7693, 'travel': 7694, 'unforgettably': 7695, 'uncertain': 7696, 'covers': 7697, 'neatly': 7698, 'whereas': 7699, 'exemplary': 7700, 'revitalize': 7701, 'offbeat': 7702, 'overcome': 7703, 'resistance': 7704, 'whenever': 7705, 'threatens': 7706, 'bogged': 7707, 'dramaturgy': 7708, 'surge': 7709, 'swirling': 7710, 'rapids': 7711, 'leap': 7712, 'pinnacle': 7713, 'rouses': 7714, 'horses': 7715, \"they'd\": 7716, 'freddy': 7717, 'fingered': 7718, 'spunky': 7719, 'rollicking': 7720, 'mateys': 7721, 'regardless': 7722, 'compassionately': 7723, 'irreconcilable': 7724, 'conservative': 7725, 'estranged': 7726, 'lesbian': 7727, 'obscured': 7728, 'booming': 7729, 'bass-heavy': 7730, 'conversation': 7731, 'linguistic': 7732, 'fumbling': 7733, 'macy': 7734, \"gray's\": 7735, 'whispers': 7736, 'bean': 7737, 'trumpet': 7738, 'mexican': 7739, \"a-bornin'\": 7740, 'addicted': 7741, 'forms': 7742, 'angelina': 7743, 'mcconaughey': 7744, 'irony-free': 7745, 'bale': 7746, 'reduced': 7747, 'batting': 7748, 'eyelids': 7749, 'adultery': 7750, 'soupy': 7751, 'le': 7752, 'carr�': 7753, 'burnt-out': 7754, 'cylinders': 7755, 'fragile': 7756, 'framework': 7757, 'hang': 7758, 'conjured': 7759, 'prior': 7760, 'filming': 7761, 'derivativeness': 7762, 'lackluster': 7763, 'troubling': 7764, \"ohlinger's\": 7765, 'delusional': 7766, 'croaks': 7767, 'prescribed': 7768, 'recommended': 7769, \"dentist's\": 7770, 'soothing': 7771, 'muzak': 7772, 'cushion': 7773, 'rappers': 7774, 'suge': 7775, 'knight': 7776, 'jolting': 7777, 'abundance': 7778, 'satanic': 7779, 'severed': 7780, 'limb': 7781, 'complicated': 7782, 'inhabit': 7783, 'annex': 7784, 'behave': 7785, 'screams': 7786, 'lungs': 7787, 'idiocy': 7788, 'brawn': 7789, 'brains': 7790, 'zany': 7791, 'exuberantly': 7792, 'irreverent': 7793, 'futuristic': 7794, 'thriller-noir': 7795, 'technology': 7796, 'delivering': 7797, 'intensifying': 7798, 'over-familiarity': 7799, 'hit-hungry': 7800, 'strip-mined': 7801, '1997': 7802, 'generically': 7803, 'forgettably': 7804, 'plan': 7805, 'rationale': 7806, \"swimfan's\": 7807, 'forages': 7808, 'temperamental': 7809, 'decrepit': 7810, 'reprieve': 7811, 'incessant': 7812, 'whining': 7813, '�the': 7814, 'far-flung': 7815, 'illogical': 7816, 'skewed': 7817, 'wondering': 7818, 'strutting': 7819, 'posturing': 7820, 'chapter': 7821, 'magical': 7822, 'eats': 7823, 'meddles': 7824, 'argues': 7825, 'kibbitzes': 7826, 'fights': 7827, 'deviously': 7828, 'adopts': 7829, 'guise': 7830, 'motion': 7831, 'affecting': 7832, 'uniquely': 7833, 'almod�var': 7834, 'deepest': 7835, 'notions': 7836, 'star/producer': 7837, 'julie': 7838, 'taymor': 7839, 'infused': 7840, 'titular': 7841, 'paintings': 7842, 'non-stop': 7843, 'existential': 7844, 'overtones': 7845, 'kieslowski': 7846, 'maelstr�m': 7847, 'winter': 7848, 'sleepers': 7849, \"gai's\": 7850, 'avoid': 7851, 'befallen': 7852, 'safe': 7853, 'laissez': 7854, 'passer': 7855, 'subtitled': 7856, '170': 7857, 'metropolis': 7858, 'confirms': 7859, \"tezuka's\": 7860, 'anim�': 7861, 'defining': 7862, 'conscience': 7863, 'impersonal': 7864, 'relentlessness': 7865, 'videogame': 7866, 'presented': 7867, 'guiltless': 7868, 'upper-crust': 7869, 'decorum': 7870, 'purr': 7871, 'testimonials': 7872, 'surviving': 7873, 'burstein': 7874, 'archives': 7875, 'stills': 7876, \"rowling's\": 7877, 'phenomenal': 7878, 'sellers': 7879, 'go-round': 7880, 'headlong': 7881, 'thrust': 7882, 'likably': 7883, 'delinquent': 7884, 'imaginary': 7885, 'barrels': 7886, 'mired': 7887, 'eight': 7888, 'legged': 7889, 'monte': 7890, 'cristo': 7891, 'transform': 7892, 'caviezel': 7893, 'centuries': 7894, 'half-lit': 7895, 'dorm': 7896, 'rooms': 7897, 'subtlety': 7898, 'coda': 7899, 'leading': 7900, 'realistically': 7901, 'vengeance': 7902, 'satisfyingly': 7903, 'national': 7904, 'psyche': 7905, \"'girls\": 7906, \"wild'\": 7907, 'boho': 7908, 'art-house': 7909, 'counter-cultural': 7910, 'removed': 7911, 'capturing': 7912, 'idealism': 7913, 'barbershop': 7914, 'fix--this': 7915, 'feature-length': 7916, 'stereotypical': 7917, 'familial': 7918, 'quandaries': 7919, 'unbridled': 7920, 'unfurls': 7921, '1937': 7922, 'breakthrough': 7923, 'sorriest': 7924, \"bartlett's\": 7925, 'quotations': 7926, 'jingles': 7927, 'pocket': 7928, 'lite': 7929, 'r-rated': 7930, \"mama's\": 7931, 'delia': 7932, 'greta': 7933, 'paula': 7934, 'multilayered': 7935, 'searches': 7936, 'unblinking': 7937, 'doomed': 7938, 'smallness': 7939, 'elevated': 7940, 'it--the': 7941, 'sought': 7942, 'inextricably': 7943, 'unavailable': 7944, 'rut': 7945, 'christophe': 7946, 'honor�': 7947, \"ritchie's\": 7948, 'majorly': 7949, 'ham-fisted': 7950, 'manifestos': 7951, 'thrown': 7952, 'amber': 7953, 'self-interest': 7954, 'paranoia': 7955, 'shape': 7956, 'representations': 7957, 'docu-drama': 7958, 'multi-character': 7959, 'flourish': 7960, 'suit': 7961, '$99': 7962, 'bargain-basement': 7963, 'paper-thin': 7964, 'activities': 7965, 'carl': 7966, 'franklin': 7967, 'bogs': 7968, \"burns's\": 7969, 'mcmullen': 7970, 'noir': 7971, 'spielberg': 7972, 'goodness': 7973, 'signpost': 7974, 'realize': 7975, 'cheesy': 7976, 'connection': 7977, 'compromised': 7978, 'sugar': 7979, 'aspires': 7980, 'clone': 7981, 'frazzled': 7982, 'wackiness': 7983, 'frayed': 7984, 'direct-to-video': 7985, 'remained': 7986, \"needn't\": 7987, \"'50s\": 7988, 'sociology': 7989, 'lore': 7990, \"haynes'\": 7991, 'apes': 7992, 'decade': 7993, 'enthralling': 7994, 'frustrates': 7995, \"'truth'\": 7996, 'deconstructing': 7997, 'doubtless': 7998, 'blessing': 7999, 'documentaries': 8000, 'juvenile': 8001, 'smack': 8002, 'undergrad': 8003, 'college-spawned': 8004, 'colgate': 8005, 'broken': 8006, 'lizard': 8007, 'cheech': 8008, 'chong': 8009, 'chips': 8010, 'sociological': 8011, 'high-octane': 8012, 'unlikable': 8013, 'tried-and-true': 8014, 'shenanigans': 8015, 'distinguish': 8016, \"wilde's\": 8017, '19th': 8018, 'withstand': 8019, 'productions': 8020, \"parker's\": 8021, 'charitable': 8022, 'castrated': 8023, 'highlander': 8024, 'awakening': 8025, 'glory': 8026, 'weekend': 8027, 'cognizant': 8028, 'dragonfly': 8029, 'flailing': 8030, 'buggy': 8031, 'druggy': 8032, 'trance-noir': 8033, 'trumped-up': 8034, 'pacino': 8035, 'loathing': 8036, 'robin': 8037, 'large-format': 8038, 'suited': 8039, 'musicians': 8040, 'regalia': 8041, 'system': 8042, 'toes': 8043, 'gob': 8044, 'consumers': 8045, \"moore's\": 8046, 'pasteurized': 8047, 'ditties': 8048, 'retch': 8049, 'rancid': 8050, 'cr�me': 8051, 'br�l�e': 8052, 'versi�n': 8053, 'preciosista': 8054, 'sin': 8055, 'ning�n': 8056, 'contenido': 8057, 'greek': 8058, 'stereotypes': 8059, 'dished': 8060, 'credit': 8061, \"tuxedo's\": 8062, \"'chan\": 8063, \"moment'\": 8064, \"franchise's\": 8065, 'extemporaneously': 8066, 'shouted': 8067, \"'thank\": 8068, 'leguizamo': 8069, 'plugged': 8070, 'breakdowns': 8071, 'unconditional': 8072, 'garnered': 8073, 'privy': 8074, 'misconstrued': 8075, 'weakness': 8076, 'bonanza': 8077, 'outlandish': 8078, 'schemes': 8079, 'puns': 8080, 'appreciated': 8081, 'tashlin': 8082, 'recapitulation': 8083, \"artist's\": 8084, 'compellingly': 8085, \"sandler's\": 8086, 'nights': 8087, 'rash': 8088, 'photo': 8089, 'snapshot': 8090, 'delusions': 8091, 'pilot': 8092, 'buyer': 8093, 'tube': 8094, 'telemarketers': 8095, 'purposefully': 8096, 'eroticized': 8097, 'psychopathic': 8098, 'bitter': 8099, 'fuzzy': 8100, 'chin': 8101, 'unhappily': 8102, 'marketplace': 8103, 'wrote': 8104, 'morton': 8105, 'military': 8106, 'courtroom': 8107, 'christian-themed': 8108, 'advantage': 8109, 'invest': 8110, 'animatronic': 8111, 'bear': 8112, 'humans': 8113, 'puppets': 8114, 'wry': 8115, 'v': 8116, \"naipaul's\": 8117, 'newcomers': 8118, 'yawn': 8119, 'weirdly': 8120, 'bloodbath': 8121, 'laughably': 8122, 'downbeat': 8123, 'melancholic': 8124, 'strangely': 8125, 'exhilaration': 8126, 'easygoing': 8127, 'dumbest': 8128, 'aspiring': 8129, 'lacked': 8130, 'answer': 8131, 'greasiest': 8132, 'fancies': 8133, 'hubert': 8134, 'selby': 8135, 'jr': 8136, 'ounce': 8137, 'unrelentingly': 8138, 'exploitative': 8139, 'high-adrenaline': 8140, 'self-aware': 8141, 'dumbness': 8142, 'gosh': 8143, 'reasons': 8144, 'off-putting': 8145, 'smoothly': 8146, 'impersonation': 8147, 'immensely': 8148, 'grainy': 8149, 'dependent': 8150, \"'naturalistic'\": 8151, 'exhausting': 8152, 'stocked': 8153, 'ponderous': 8154, 'awfulness': 8155, 'stark': 8156, 'motherhood': 8157, 'deferred': 8158, \"leys'\": 8159, 'climb': 8160, 'ladder': 8161, 'crossing': 8162, 'nuclear': 8163, 'abiding': 8164, 'hallucinogenic': 8165, 'acres': 8166, 'haute': 8167, 'couture': 8168, 'conceal': 8169, 'resembling': 8170, 'spine': 8171, 'essential': 8172, 'unusually': 8173, 'likeable': 8174, 'eighth': 8175, 'grade': 8176, 'doze': 8177, 'salt': 8178, 'wounds': 8179, 'sting': 8180, 'troupe': 8181, \"lizard's\": 8182, 'meanwhile': 8183, 'reads': 8184, 'driving': 8185, 'daisy': 8186, 'snaps': 8187, 'reassure': 8188, 'pleasantly': 8189, 'canadian': 8190, \"burns'\": 8191, 'mordantly': 8192, 'soullessness': 8193, 'interaction': 8194, 'unconcerned': 8195, 'plausibility': 8196, 'bombards': 8197, 'explosions': 8198, 'kicks': 8199, 'eternally': 8200, 'devoted': 8201, 'onscreen': 8202, \"[haynes']\": 8203, 'undercover': 8204, 'changed': 8205, 'academic': 8206, 'upsets': 8207, \"novel's\": 8208, 'exquisite': 8209, 'shreds': 8210, 'sweetly': 8211, 'coping': 8212, \"life's\": 8213, 'endgame': 8214, 'lejos': 8215, 'para�so': 8216, 'mismo': 8217, 'tiempo': 8218, 'fiesta': 8219, 'ojos': 8220, 'o�dos': 8221, 'movilizador': 8222, 'cuadro': 8223, 'personajes': 8224, 'enfrentados': 8225, 'sus': 8226, 'propios': 8227, 'deseos': 8228, 'miedos': 8229, 'prejuicios': 8230, 'turd': 8231, 'squashed': 8232, 'truck': 8233, 'preferably': 8234, 'semi': 8235, 'favorite': 8236, 'pet': 8237, '3': 8238, 'winners': 8239, 'girl-buddy': 8240, 'rock-n-rolling': 8241, 'limp': 8242, 'schnitzler': 8243, 'stylist': 8244, 'johnson': 8245, 'wanker': 8246, 'goths': 8247, 'immaculate': 8248, 'roussillon': 8249, 'relief': 8250, 'underlying': 8251, 'sexism': 8252, 'monday': 8253, 'morning': 8254, 'undercuts': 8255, 'chomp': 8256, 'ants': 8257, 'arrow': 8258, 'unscathed': 8259, 'raging': 8260, 'tiresomely': 8261, 'hammily': 8262, 'dolorous': 8263, 'trim': 8264, 'notwithstanding': 8265, \"writers'\": 8266, 'dips': 8267, 'freudianism': 8268, 'amidst': 8269, 'forbidden': 8270, 'sympathizing': 8271, 'presenting': 8272, 'brooding': 8273, 'impossibly': 8274, 'totally': 8275, 'documentary-like': 8276, 'horrors': 8277, 'barbarism': 8278, \"'ethnic\": 8279, 'cleansing': 8280, 'appealingly': 8281, 'trifle': 8282, 'smiles': 8283, 'handled': 8284, 'darkness': 8285, 'etched': 8286, 'unsentimental': 8287, 'tots': 8288, 'seams': 8289, 'pellington': 8290, 'irresistibly': 8291, 'uncanny': 8292, 'ambience': 8293, 'jerking': 8294, 'byzantine': 8295, 'incarnations': 8296, 'pleasuring': 8297, \"carvey's\": 8298, 'live-honed': 8299, 'mimicry': 8300, \"rohmer's\": 8301, 'talky': 8302, 'fascinate': 8303, 'richness': 8304, 'characterization': 8305, 'kurys': 8306, 'intimidated': 8307, 'trappings': 8308, 'march': 8309, 'drum': 8310, 'wondered': 8311, 'alternative': 8312, 'housing': 8313, 'options': 8314, 'patric': 8315, 'liotta': 8316, 'splendidly': 8317, 'maguire': 8318, 'dismissed': 8319, 'website': 8320, 'recognizably': 8321, 'plympton': 8322, 'bothered': 8323, 'alert': 8324, 'thirteen': 8325, 'mimetic': 8326, 'approximation': 8327, 'contempt': 8328, '1/2': 8329, 'adolescents': 8330, 'adequately': 8331, 'lascivious-minded': 8332, 'relative': 8333, 'modesty': 8334, \"'topless\": 8335, 'tutorial': 8336, \"kalesniko's\": 8337, 'kill': 8338, 'slight': 8339, 'unendurable': 8340, 'adrift': 8341, 'bentley': 8342, 'hudson': 8343, 'stare': 8344, 'sniffle': 8345, 'respectively': 8346, 'ledger': 8347, 'vain': 8348, 'movie-star': 8349, 'fustily': 8350, 'tasteful': 8351, 'low-rent': 8352, 'danish': 8353, 'mankind': 8354, 'hitler': 8355, 'mundo': 8356, 'sua': 8357, 'tela': 8358, 'seu': 8359, 'pincel': 8360, 'retrata': 8361, 'este': 8362, 'fato': 8363, 'com': 8364, 'elegante': 8365, 'abandono': 8366, 'numa': 8367, 'triste': 8368, 'constata��o': 8369, 'da': 8370, 'realidade': 8371, 'hist�rica': 8372, 'african': 8373, 'empire': 8374, 'phones': 8375, 'internal': 8376, 'combustion': 8377, 'engine': 8378, 'thump': 8379, 'further': 8380, 'futility': 8381, 'time-vaulting': 8382, 'generous': 8383, 'grace': 8384, 'rapidly': 8385, 'develops': 8386, 'gut-wrenching': 8387, 'differences': 8388, 'collide': 8389, 'goofball': 8390, 'vastly': 8391, 'kiss': 8392, 'hi': 8393, 'lover': 8394, 'wake': 8395, 'bucks': 8396, 'expend': 8397, 'cadness': 8398, 'perfection': 8399, 'range': 8400, 'forte': 8401, 'generates': 8402, 'scatological': 8403, 'proctologist': 8404, 'deconstruct': 8405, 'daydreaming': 8406, \"lohman's\": 8407, 'heartbreak': 8408, 'continually': 8409, 'accommodate': 8410, 'gain': 8411, 'generation': 8412, 'arena': 8413, 'spiderman': 8414, 'rocks': 8415, 'wasabi': 8416, \"hubert's\": 8417, 'explanations': 8418, 'stylistically': 8419, 'chocolate': 8420, 'milk': 8421, 'moustache': 8422, 'chiller': 8423, 'fleetingly': 8424, 'diversity': 8425, 'kibosh': 8426, 'sumptuous': 8427, 'soporific': 8428, 'repeated': 8429, 'six': 8430, 'simpleminded': 8431, 'thrives': 8432, 'conflagration': 8433, 'shaken': 8434, \"nesbitt's\": 8435, 'flying': 8436, '[taylor]': 8437, 'consistently': 8438, 'skills': 8439, 'calculus': 8440, 'required': 8441, 'equations': 8442, 'long-winded': 8443, 'heist': 8444, 'cletis': 8445, 'tout': 8446, 'r': 8447, 'rating': 8448, 'corpse': 8449, 'aloft': 8450, 'tim': 8451, 'vote': 8452, 'enemy': 8453, \"cinema'\": 8454, 'retooled': 8455, 'gun': 8456, 'amiably': 8457, 'institution--acted': 8458, 'moron': 8459, 'relate': 8460, 'china': 8461, 'gestures': 8462, 'adorable': 8463, 'arcane': 8464, 'exposure': 8465, '100%': 8466, 'elemental': 8467, 'literacy': 8468, 'inkling': 8469, 'affirmation': 8470, 'glow': 8471, 'shoot-outs': 8472, 'fistfights': 8473, 'phlegmatic': 8474, 'vs': 8475, 'fears': 8476, 'starring': 8477, 'hitchcockian': 8478, 'devos': 8479, 'budding': 8480, 'wallflower': 8481, 'regard': 8482, 'guard': 8483, 'kim': 8484, 'ki-deok': 8485, 'demanding': 8486, 'regular': 8487, 'bouts': 8488, 'defensible': 8489, 'cycle': 8490, 'engagingly': 8491, 'contribute': 8492, \"irwins'\": 8493, 'death-defying': 8494, 'graze': 8495, 'bone': 8496, 'altogether': 8497, 'consciously': 8498, 'dumbed-down': 8499, 'achingly': 8500, 'hindered': 8501, 'adequate': 8502, 'trite': 8503, 'designed': 8504, 'confused': 8505, 'suspecting': 8506, 'wrap': 8507, 'incompet�ncia': 8508, 'roteirista': 8509, 's�': 8510, 'superada': 8511, 'por': 8512, 'p�ssima': 8513, 'dire��o': 8514, 'nijinsky': 8515, '1980': 8516, 'mysteries': 8517, 'lingered': 8518, 'schaeffer': 8519, 'qualify': 8520, 'revolutionary': 8521, 'defiantly': 8522, 'directions': 8523, 'rise-and-fall': 8524, 'glamour': 8525, 'moralistic': 8526, 'ears': 8527, 'tenor': 8528, 'nemesis': 8529, 'ash': 8530, 'wednesday': 8531, 'jaglom': 8532, 'put[s]': 8533, 'privileged': 8534, 'eavesdropping': 8535, 'versus': 8536, 'passably': 8537, 'skillful': 8538, 'historically': 8539, 'significant': 8540, 'unlike': 8541, 'casts': 8542, 'introduces': 8543, 'tendencies': 8544, 'reflect': 8545, \"harris's\": 8546, 'probe': 8547, \"lear's\": 8548, 'soul-stripping': 8549, 'purported': 8550, 'pathologically': 8551, 'avenges': 8552, 'hatred': 8553, 'embraces': 8554, 'surfing': 8555, 'photography': 8556, 'lifts': 8557, \"summer's\": 8558, 'medical': 8559, 'aid': 8560, 'workers': 8561, \"walter's\": 8562, 'painters': 8563, 'confounded': 8564, 'dealers': 8565, 'miscellaneous': 8566, 'bohos': 8567, 'expound': 8568, \"subject's\": 8569, 'explaining': 8570, 'abyss': 8571, 'bone-chilling': 8572, 'negligible': 8573, \"'aunque\": 8574, 'recurre': 8575, 'ciertos': 8576, 'g�nero': 8577, 'poderosa': 8578, 'actuaci�n': 8579, 'perdona': 8580, 'las': 8581, 'fallas': 8582, 'gui�n': 8583, 'vitality': 8584, 'strafings': 8585, 'precious': 8586, 'diamond': 8587, 'tough': 8588, 'sometime': 8589, 'directly': 8590, 'exalts': 8591, 'marxian': 8592, 'dream': 8593, 'labor': 8594, 'harmoniously': 8595, 'joined': 8596, 'thesis': 8597, 'masses': 8598, 'fleeing': 8599, 'ingenuity': 8600, 'freshening': 8601, 'rampant': 8602, 'devaluation': 8603, 'gussied': 8604, 'rote': 8605, 'egg': 8606, 'timer': 8607, 'whimsy': 8608, 'combine': 8609, 'cherish': 8610, 'jae-eun': 8611, \"jeong's\": 8612, 'freshness': 8613, 'flowering': 8614, 'coasting': 8615, 'bicycle': 8616, 'thief': 8617, 'ragged': 8618, 'agnostic': 8619, 'carnivore': 8620, 'gratefully': 8621, 'pronounced': 8622, 'pythonesque': 8623, 'divisions': 8624, 'nonfiction': 8625, 'staggeringly': 8626, 'hint': 8627, 'artifice': 8628, 'amari': 8629, 'dressed': 8630, 'fighting': 8631, 'urge': 8632, 'sensationalize': 8633, 'vincent': 8634, 'nebrida': 8635, 'cram': 8636, 'pot': 8637, 'tok': 8638, 'andy': 8639, 'lau': 8640, 'sleek': 8641, 'sociopath': 8642, 'sorimachi': 8643, 'hitmen': 8644, 'scattershot': 8645, 'maik': 8646, 'firebrand': 8647, 'envious': 8648, 'hijacks': 8649, 'sales': 8650, 'tool': 8651, 'facile': 8652, 'oscar-size': 8653, 'fearless': 8654, 'husband': 8655, 'underplays': 8656, 'long-suffering': 8657, 'unflappable': 8658, 'dignity': 8659, 'wyman': 8660, 'june': 8661, 'cleaver': 8662, 'unintended': 8663, 'afraid': 8664, 'infuriating': 8665, 'self-absorbed': 8666, \"o's\": 8667, 'forgiven': 8668, 'realizing': 8669, 'unmistakably': 8670, '21/2': 8671, 'wallet': 8672, 'swipe': 8673, 'recompense': 8674, 'repetitious': 8675, 'blood-curdling': 8676, 'girls-behaving-badly': 8677, 'powerpuff': 8678, 'arrive': 8679, 'super-powers': 8680, 'super-simple': 8681, 'super-dooper-adorability': 8682, 'russo': 8683, \"lookin'\": 8684, 'mamet': 8685, 'sturges': 8686, 'engages': 8687, 'inner': 8688, 'hastier': 8689, 'thematically': 8690, 'bowel': 8691, 'long-on-the-shelf': 8692, 'point-and-shoot': 8693, 'gimmicky': 8694, 'painted': 8695, 'backdrops': 8696, 'inquiry': 8697, 'wince': 8698, 'dolman': 8699, 'shtick': 8700, 'bald': 8701, 'dreadful': 8702, 'irish': 8703, 'passionate': 8704, 'resonances': 8705, 'purity': 8706, 'aims': 8707, 'scores': 8708, 'direct': 8709, '163': 8710, 'bursting': 8711, 'incident': 8712, 'fictional': 8713, 'alexander': 8714, 'jim': 8715, 'taylor': 8716, 'employ': 8717, 'fork': 8718, 'ghetto': 8719, 'potty-mouthed': 8720, 'pg-13': 8721, 'raunchy': 8722, 'park': 8723, 'schizo': 8724, 'late-night': 8725, 'sexploitation': 8726, 'masquerading': 8727, 'ruthless': 8728, 'governs': 8729, 'cliques': 8730, 'ushers': 8731, 'cup': 8732, 'marathon': 8733, 'constant': 8734, 'influx': 8735, 'liquid': 8736, 'proceeds': 8737, 'flop': 8738, 'steam': 8739, 'bard': 8740, 'perry': 8741, 'fists': 8742, 'strongly': 8743, 'dug': 8744, 'whimsical': 8745, \"barney's\": 8746, 'clad': 8747, 'knock-off': 8748, 'forewarned': 8749, 'depressed': 8750, 'drown': 8751, 'afterwards': 8752, 'historic': 8753, 'ireland': 8754, 'raise': 8755, 'peevish': 8756, \"[hawn's\": 8757, 'character]is': 8758, 'bluntly': 8759, 'trace': 8760, 'blisteringly': 8761, 'defined': 8762, 'underwritten': 8763, 'soapy': 8764, 'moderately': 8765, 'irrelevant': 8766, 'flickering': 8767, 'perfunctory': 8768, 'moods': 8769, 'stillborn': 8770, 'conceptual': 8771, 'aimed': 8772, 'groan-to-guffaw': 8773, 'ratio': 8774, 'freewheeling': 8775, 'trash-cinema': 8776, 'deeds': 8777, 'averting': 8778, 'unacceptable': 8779, 'unmentionable': 8780, 'interminably': 8781, 'guts': 8782, 'outrageously': 8783, '[b]ut': 8784, 'parachutes': 8785, 'unstoppable': 8786, 'superman': 8787, 'chosen': 8788, 'arthur': 8789, \"dong's\": 8790, 'fundamentals': 8791, 'absorb': 8792, \"jia's\": 8793, 'bad-boy': 8794, 'robustness': 8795, 'bloodletting': 8796, 'eyebrows': 8797, 'low-cal': 8798, 'uninspiring': 8799, 'immersed': 8800, 'lust': 8801, 'candles': 8802, 'cake': 8803, 'fret': 8804, 'calories': 8805, 'ordinary': 8806, 'fashion': 8807, '[binoche': 8808, 'magimel]': 8809, 'angst-ridden': 8810, 'judges': 8811, 'overcook': 8812, 'hysteria': 8813, 'integral': 8814, 'observer': 8815, 'defensive': 8816, 'life-altering': 8817, 'en': 8818, 'rey': 8819, 'le�n': 8820, 'espect�culo': 8821, 'digno': 8822, 'contemplarse': 8823, 'cine': 8824, 'su': 8825, 'soberbio': 8826, 'montaje': 8827, 'teatral': 8828, 'hacerlo': 8829, 'pantalla': 8830, 'experiencia': 8831, 'colosal': 8832, 'unspeakably': 8833, 'reams': 8834, 'dim-witted': 8835, 'transition': 8836, '[n]o': 8837, 'folds': 8838, 'thinness': 8839, 'deny': 8840, 'too-long': 8841, 'spoofy': 8842, 'update': 8843, \"shakespeare's\": 8844, 'macbeth': 8845, 'invention': 8846, \"'a'\": 8847, 'creativity': 8848, 'tarantula': 8849, 'low-': 8850, '1950s': 8851, 'hellish': 8852, 'conditions': 8853, 'outcast': 8854, 'guffaw': 8855, 'diabolical': 8856, 'destruction': 8857, 'flame-like': 8858, 'roiling': 8859, 'inspires': 8860, 'trembling': 8861, 'gratitude': 8862, 'poised': 8863, 'embark': 8864, '51': 8865, 'involves': 8866, 'resemblance': 8867, 'shares': 8868, 'action-fantasy': 8869, 'extravaganzas': 8870, 'overpower': 8871, 'cogent': 8872, 'story-telling': 8873, \"broder's\": 8874, 'pitifully': 8875, 'singers': 8876, 'youthful': 8877, 'diva': 8878, 'handsome': 8879, 'distortions': 8880, 'alternating': 8881, 'smart-aleck': 8882, 'android': 8883, 'overinflated': 8884, 'mythology': 8885, 'recognizes': 8886, 'plots': 8887, 'recessive': 8888, 'mary-louise': 8889, 'spousal': 8890, 'domestic': 8891, 'returns': 8892, 'pulpy': 8893, \"'80s\": 8894, 'decadent': 8895, 'urbanity': 8896, 'everett': 8897, 'wildean': 8898, 'relaxed': 8899, 'firth': 8900, 'quirks': 8901, 'penchant': 8902, 'tearing': 8903, 'cue': 8904, 'leigh': 8905, 'gawky': 8906, 'spall': 8907, 'impressively': 8908, 'coltish': 8909, 'neurotic': 8910, 'racial': 8911, 'profiling': 8912, 'style--casting': 8913, 'ages--a': 8914, 'trend': 8915, 'overdue': 8916, 'egoyan': 8917, 'object': 8918, 'rah-rah': 8919, 'patriotic': 8920, 'soldiers': 8921, 'strategic': 8922, 'objective': 8923, 'dramatizing': 8924, 'morbid': 8925, 'humour': 8926, 'reinforcement': 8927, 'fills': 8928, 'unapologetic': 8929, 'blowing': 8930, 'dreamlike': 8931, 'impress': 8932, 'euro-film': 8933, '[d]espite': 8934, 'unseemly': 8935, 'tumult': 8936, \"let's\": 8937, 'moratorium': 8938, 'immediately': 8939, 'treacly': 8940, 'professors': 8941, 'heartwarmingly': 8942, 'motivate': 8943, 'captive': 8944, 'bacon': 8945, 'medium-grade': 8946, 'network': 8947, 'sitcom--mostly': 8948, 'draft': 8949, 'auditorium': 8950, 'figured': 8951, 'loop': 8952, 'freshly': 8953, 'considers': 8954, \"bard's\": 8955, 'immortal': 8956, 'somebody': 8957, 'fiftysomething': 8958, 'ladies': 8959, 'loudly': 8960, 'ineffective': 8961, 'ghost': 8962, \"'blade\": 8963, \"ii'\": 8964, 'suggestive': 8965, '65th': 8966, 'mixer': 8967, 'circumstances': 8968, 'wallow': 8969, 'name': 8970, 'marketable': 8971, 'blind': 8972, 'teach': 8973, 'three-hour': 8974, 'recognizable': 8975, 'allowing': 8976, 'paradoxically': 8977, 'foreign': 8978, 'route': 8979, 'pixilated': 8980, 'pluto': 8981, 'nash': 8982, '300': 8983, 'compressed': 8984, 'evanescent': 8985, 'seamless': 8986, 'stream': 8987, 'bump': 8988, '1982': 8989, 'high-energy': 8990, 'stylings': 8991, 'stupor': 8992, 'untrained': 8993, 'breaks': 8994, 'co-opted': 8995, 'montias': 8996, \"album's\": 8997, 'evolve': 8998, 'maddeningly': 8999, 'losing': 9000, 'lethal': 9001, 'weapon-derived': 9002, 'buddy-cop': 9003, 'knowingness': 9004, 'handiwork': 9005, 'tatters': 9006, 'weary': 9007, 'super-sized': 9008, 'cable-sports': 9009, 'channel': 9010, 'april': 9011, 'instalment': 9012, 'independence': 9013, 'loads': 9014, 'bushels': 9015, 'overwhelmingly': 9016, \"brown's\": 9017, 'shame': 9018, 'dad': 9019, 'author': 9020, 'venice': 9021, 'valuable': 9022, 'regimen': 9023, 'eating': 9024, 'sleeping': 9025, 'stress-reducing': 9026, 'contemplation': 9027, '179-minute': 9028, 'stirred': 9029, 'naughty': 9030, 'just-above-average': 9031, 'off-': 9032, 'wrench': 9033, 'toss': 9034, 'oatmeal': 9035, 'granted': 9036, 'mishandled': 9037, 'sair': 9038, 'eu': 9039, 'estava': 9040, 'feliz': 9041, 'saudades': 9042, 'mim': 9043, 'exist�ncia': 9044, 'papai': 9045, 'noel': 9046, 'inquestion�vel': 9047, 'dylan': 9048, 'thomas': 9049, 'witness': 9050, 'ethan': 9051, \"hawke's\": 9052, 'strained': 9053, 'chelsea': 9054, 'tempted': 9055, \"'do\": 9056, 'pushiness': 9057, 'decibel': 9058, 'revision': 9059, 'enhancing': 9060, 'morals': 9061, 'toughest': 9062, 'valley-girl': 9063, 'dench': 9064, 'steals': 9065, 'unsuccessful': 9066, 'lee': 9067, 'captivated': 9068, 'darn': 9069, 'smarty-pants': 9070, 'aura': 9071, 'digested': 9072, 'floppy': 9073, 'stammers': 9074, 'dampens': 9075, 'townsend': 9076, 'egyptian': 9077, 'demigod': 9078, 'processed': 9079, 'overproduced': 9080, 'tolerable': 9081, 'suffices': 9082, 'spy-vs': 9083, '-spy': 9084, 'antonio': 9085, 'banderas': 9086, 'lucy': 9087, 'liu': 9088, 'captivating': 9089, 'week': 9090, 'spinning': 9091, 'overstating': 9092, 'goods': 9093, 'praises': 9094, 'destiny': 9095, 'storyteller': 9096, 'acknowledges': 9097, 'workaday': 9098, 'inertia': 9099, 'stops': 9100, 'indulging': 9101, \"characters'\": 9102, 'striving': 9103, 'solipsism': 9104, 'lion': 9105, 'king': 9106, 'redone': 9107, 'deliberate': 9108, 'inadvertent': 9109, 'stunningly': 9110, \"world's\": 9111, 'coral': 9112, 'reef': 9113, 'heavyweight': 9114, 'behalf': 9115, 'endangered': 9116, 'reefs': 9117, 'punching': 9118, 'possession': 9119, 'barrett': 9120, 'browning': 9121, 'nancy': 9122, 'drew': 9123, 'hmm': 9124, 'overstuffed': 9125, 'compendium': 9126, 'teen-catholic-movie': 9127, 'nettelbeck': 9128, 'organic': 9129, 'encourages': 9130, 'sy': 9131, 'open-faced': 9132, 'smiling': 9133, 'madmen': 9134, 'insomnia': 9135, 'difficulty': 9136, 'accepting': 9137, '[t]he': 9138, 'duplicate': 9139, 'bela': 9140, \"lugosi's\": 9141, 'now-cliched': 9142, 'accent': 9143, 'laissez-passer': 9144, 'earmarks': 9145, 'portraying': 9146, 'farther': 9147, 'meanders': 9148, 'chord': 9149, '25': 9150, 'iq': 9151, \"driver's\": 9152, 'shall': 9153, \"'true\": 9154, \"story'\": 9155, 'enacted': 9156, 'cobbled': 9157, 'gorgeously': 9158, 'les': 9159, 'destinees': 9160, 'bracingly': 9161, 'antidote': 9162, 'slather': 9163, 'clearasil': 9164, 'blemishes': 9165, 'combustible': 9166, 'chafing': 9167, 'desperate': 9168, 'grandiosity': 9169, 'characterize': 9170, 'puberty': 9171, 'rara': 9172, 'avis': 9173, 'fused': 9174, 'eerie': 9175, 'giggles': 9176, 'pulchritude': 9177, \"boy's\": 9178, 'static': 9179, 'musker': 9180, 'clements': 9181, 'retina': 9182, 'vacuum': 9183, 'fuelled': 9184, \"devito's\": 9185, \"wang's\": 9186, 'police': 9187, 'washed': 9188, \"project's\": 9189, 'prime': 9190, 'symbolically': 9191, 'feminine': 9192, 'heal': 9193, 'dana': 9194, 'carvey': 9195, 'acts': 9196, 'slap': 9197, 'devotees': 9198, 'wrath': 9199, 'khan': 9200, 'nagging': 9201, 'grandeur': 9202, 'episodes': 9203, 'compulsively': 9204, 'escapism': 9205, 'purest': 9206, 'naturalness': 9207, 'self-consciously': 9208, \"[nelson's]\": 9209, 'nanook': 9210, 'talk-heavy': 9211, \"altman's\": 9212, 'lesser': 9213, 'ultra-cheesy': 9214, 'highlight': 9215, 'radical': 9216, 'humanistic': 9217, \"sayles'\": 9218, 'wordplay': 9219, 'overshadowed': 9220, '22': 9221, 'condescension': 9222, 'working-class': 9223, 'lofty': 9224, 'perch': 9225, 'strangers': 9226, 'metropolitan': 9227, 'jarecki': 9228, 'gibney': 9229, \"kissinger's\": 9230, 'explain': 9231, \"diplomat's\": 9232, 'tweaked': 9233, 'statecraft': 9234, 't�tulo': 9235, 'enga�a': 9236, 'pel�cula': 9237, 'narra': 9238, 'mujer': 9239, 'enfrentar�': 9240, 'cierta': 9241, 'realidad': 9242, 'sexo': 9243, 'exceedingly': 9244, 'onion': 9245, 'proven': 9246, 'sources': 9247, 'fleeting': 9248, 'grasp': 9249, 'develop': 9250, 'sodden': 9251, 'stripped': 9252, 'tools': 9253, 'profanity': 9254, 'quest': 9255, 'placed': 9256, 'pantheon': 9257, 'swashbucklers': 9258, 'auteuil': 9259, 'captivates': 9260, 'impart': 9261, 'bludgeoning': 9262, 'smarter-than-thou': 9263, 'wayward': 9264, 'struggles': 9265, 'rebel': 9266, 'oppressive': 9267, 'right-wing': 9268, 'propriety-obsessed': 9269, 'often-hilarious': 9270, 'sacrificing': 9271, 'high-minded': 9272, 'threads': 9273, 'morose': 9274, 'pregnancy': 9275, 'suspected': 9276, \"where's\": 9277, 'armenian': 9278, 'genocide': 9279, 'anton': 9280, \"chekhov's\": 9281, 'cherry': 9282, 'orchard': 9283, \"'ick'\": 9284, \"'classic\": 9285, 'chaotic': 9286, 'unfocused': 9287, 'salton': 9288, 'caruso': 9289, 'atypically': 9290, 'fast-edit': 9291, 'hopped-up': 9292, 'be-bop': 9293, 'nighttime': 9294, 'loquacious': 9295, 'videologue': 9296, 'lengths': 9297, \"he'll\": 9298, 'weave': 9299, 'protective': 9300, 'cocoon': 9301, 'selling': 9302, 'candor': 9303, 'wink': 9304, \"'bold'\": 9305, 'wilt': 9306, \"anderson's\": 9307, \"lynch's\": 9308, 'mulholland': 9309, 'dr': 9310, 'confronting': 9311, 'preoccupations': 9312, 'obsessions': 9313, 'subtler': 9314, '[total': 9315, 'runner]': 9316, 'fun-seeking': 9317, \"australia's\": 9318, 'hallmark': 9319, 'card': 9320, 'gallagher': 9321, 'crafty': 9322, 'fourteen-year': 9323, 'ferris': 9324, 'bueller': 9325, 'brendan': 9326, 'borstal': 9327, 'transferral': 9328, 'blueprint': 9329, 'hundreds': 9330, 'sell': 9331, 'bidder': 9332, 'enthrall': 9333, \"chabrol's\": 9334, 'subtlest': 9335, 'idealistic': 9336, 'latent': 9337, '15-year-old': 9338, 'intensely': 9339, 'racial-issues': 9340, 'respectful': 9341, 'praise': 9342, 'postapocalyptic': 9343, 'disadvantage': 9344, 'wwii': 9345, \"kong's\": 9346, 'deemed': 9347, 'hired': 9348, 'slimed': 9349, 'eat': 9350, 'ahead': 9351, '1984': 9352, 'uncut': 9353, 'sergio': 9354, \"leone's\": 9355, 'staggering': 9356, 'complicate': 9357, 'unflinchingly': 9358, 'levant': 9359, 'strays': 9360, 'skates': 9361, 'blithely': 9362, 'implausible': 9363, 'pausing': 9364, 'tie': 9365, 'bows': 9366, 'poodle': 9367, 'moronic': 9368, 'tucker': 9369, 'sketchy': 9370, 'preliminary': 9371, 'science-fiction': 9372, 'fragmentary': 9373, 'piecing': 9374, 'jacqueline': 9375, 'plimpton': 9376, 'angles': 9377, 'payoff': 9378, 'feral': 9379, 'boldface': 9380, 'shrapnel': 9381, 'mental': 9382, 'shellshock': 9383, 'chou-chou': 9384, 'plaintiveness': 9385, 'weep': 9386, \"'easily\": 9387, 'sedate': 9388, '45-minute': 9389, 'shy': 9390, 'veggies': 9391, '9-11': 9392, 'attacks': 9393, 'cafeteria': 9394, 'goulash': 9395, 'fart': 9396, 'masturbation': 9397, 'racist': 9398, 'adventurous': 9399, 'crossover': 9400, 'nonethnic': 9401, 'markets': 9402, 'body-switching': 9403, 'abundant': 9404, 'spews': 9405, 'unchecked': 9406, 'absolute': 9407, 'buoyed': 9408, 'stylistic': 9409, 'juggling': 9410, 'portrayed': 9411, 'obsolete': 9412, \"hornby's\": 9413, 'drop-dead': 9414, 'confessional': 9415, 'fidelity': 9416, 'bless': 9417, 'aversion': 9418, 'cashing': 9419, 'gorgeousness': 9420, 'jaunty': 9421, 'celeb-strewn': 9422, 'reeboir': 9423, 'varies': 9424, 'bark': 9425, 'wear': 9426, 'pupils': 9427, 'affect': 9428, 'kurds': 9429, 'wore': 9430, 'woefully': 9431, 'kalvert': 9432, 'turf': 9433, '1958': 9434, 'brooklyn': 9435, 'machismo': 9436, 'onstage': 9437, \"esther's\": 9438, 'rarest': 9439, 'family-oriented': 9440, 'non-disney': 9441, 'belt': 9442, 'repeating': 9443, 'alternate': 9444, 'require': 9445, 'maintenance': 9446, 'celibacy': 9447, '[creates]': 9448, 'mythologizing': 9449, 'heroism': 9450, 'abject': 9451, 'coldest': 9452, 'crumb': 9453, '10-course': 9454, 'banquet': 9455, 'meaningful': 9456, 'frosting': 9457, 'bowl': 9458, 'grinds': 9459, 'incoherent': 9460, 'amid': 9461, 'foreshadowing': 9462, 'routinely': 9463, 'dynamited': 9464, 'blethyn': 9465, 'puppies': 9466, 'legs': 9467, 'butterflies': 9468, 'queens': 9469, 'ranks': 9470, \"herzog's\": 9471, 'astoundingly': 9472, 'blithe': 9473, 'insouciance': 9474, 'embedded': 9475, 'demise': 9476, 'dean': 9477, 'twister': 9478, 'movie-movie': 9479, 'bankruptcy': 9480, 'trial': 9481, 'afterschool': 9482, 'gianni': 9483, 'versace': 9484, 'downplaying': 9485, \"ain't-\": 9486, 'she-cute': 9487, 'baggage': 9488, 'homicide': 9489, \"'inspirational'\": 9490, \"'uplifting'\": 9491, \"movie's]\": 9492, 'long-lived': 9493, 'friendships': 9494, 'lose': 9495, 'fred': 9496, \"schepisi's\": 9497, 'speed': 9498, 'deathly': 9499, 'a-list': 9500, 'copious': 9501, 'hints': 9502, 'myriad': 9503, 'beneath': 9504, 'harvesting': 9505, 'purposes': 9506, 'ardent': 9507, 'alongside': 9508, 'hannibal': 9509, \"'it's\": 9510, \"dinner'\": 9511, 'potatoes': 9512, 'size': 9513, 'aptly': 9514, 'shimmering': 9515, 'costumed': 9516, 'quitting': 9517, 'spikes': 9518, 'hindsight': 9519, 'mull': 9520, 'x-files': 9521, 'nachtwey': 9522, 'clears': 9523, 'righteousness': 9524, 'doting': 9525, 'shun': 9526, 'fatigues': 9527, 'g': 9528, 'lynch': 9529, 'twin': 9530, 'peaks': 9531, 'wannabes': 9532, 'demeo': 9533, 'addessi': 9534, \"1983's\": 9535, 'koyaanisqatsi': 9536, \"1988's\": 9537, 'powaqqatsi': 9538, 'collage': 9539, 'naqoyqatsi': 9540, 'ong': 9541, 'chooses': 9542, \"na's\": 9543, 'blank-faced': 9544, 'optimism': 9545, 'plunges': 9546, 'sentimentalizing': 9547, 'transforms': 9548, \"solondz's\": 9549, 'detective': 9550, 'spiced': 9551, 'skullduggery': 9552, 'geeked': 9553, 'catching': 9554, \"griffiths'\": 9555, 'lauded': 9556, 'considerably': 9557, 'kubrick-meets-spielberg': 9558, 'inmates': 9559, 'clash': 9560, 'delayed': 9561, \"scorcese's\": 9562, 'vital': 9563, 'careless': 9564, 'amongst': 9565, 'hit-and-miss': 9566, 'day-to-day': 9567, 'nelson': 9568, 'devastating': 9569, 'dodgy': 9570, 'cutesy': 9571, 'pinochet': 9572, 'splits': 9573, 'minute-by-minute': 9574, \"court's\": 9575, 'extradition': 9576, 'chess': 9577, \"regime's\": 9578, 'talking-head': 9579, '[madonna]': 9580, 'regain': 9581, 'penetrating': 9582, 'sanctimony': 9583, 'self-awareness': 9584, 'self-determination': 9585, 'jackasses': 9586, 'hamfisted': 9587, 'hapless': 9588, 'facilitator': 9589, 'mason-dixon': 9590, 'accidental': 9591, 'well-drawn': 9592, 'set-piece': 9593, 'shadowy': 9594, 'devils': 9595, 'reluctant': 9596, 'captors': 9597, 'befuddled': 9598, 'captives': 9599, 'stretched': 9600, 'evaporation': 9601, 'filler': 9602, 'boasted': 9603, 'clearer': 9604, '90-minute': 9605, 'vies': 9606, 'implausibility': 9607, 'maelstrom': 9608, 'burr': 9609, 'steers': 9610, 'much-anticipated': 9611, 'geniality': 9612, 'fanatical': 9613, 'adherents': 9614, 'distractions': 9615, 'subjective': 9616, 'accuse': 9617, 'misfiring': 9618, 'atrociously': 9619, 'indescribably': 9620, 'target': 9621, 'youngsters': 9622, 'stimulating': 9623, 'ear': 9624, 'sepia-tinted': 9625, 'metal': 9626, 'surround': 9627, 'moaning': 9628, 'bunch': 9629, 'thesps': 9630, 'slumming': 9631, 'remakes': 9632, 'eclipse': 9633, 'disgrace': 9634, 'tentative': 9635, 'sweet-natured': 9636, 'reconsideration': 9637, 'san': 9638, \"francisco's\": 9639, 'widely': 9640, 'recognized': 9641, 'fountainheads': 9642, 'flog': 9643, 'horse': 9644, 'obligation': 9645, 'appropriately': 9646, 'ignites': 9647, 'girl-meets-girl': 9648, 'steinis': 9649, 'genre-busting': 9650, 'twenty-some': 9651, 'carrey': 9652, 'non-starter': 9653, 'grandkids': 9654, 'grandparents': 9655, 'bored': 9656, 'office': 9657, \"'bartleby'\": 9658, 'tidal': 9659, 'wave': 9660, 'arrives': 9661, 'moonlight': 9662, 'shut': 9663, 'gushy': 9664, 'mcgrath': 9665, 'crafts': 9666, 'offerings': 9667, 'tamer': 9668, 'advertised': 9669, 'weddings': 9670, '95': 9671, 'gulps': 9672, 'huggy': 9673, 'lanes': 9674, 'heck': 9675, 'samuel': 9676, 'plethora': 9677, 'diatribes': 9678, \"'home\": 9679, 'various': 9680, 'households': 9681, 'warped': 9682, 'kurt': 9683, 'wimmer': 9684, 'marries': 9685, 'amateurishness': 9686, 'illogic': 9687, '7': 9688, 'contenders': 9689, 'criminal': 9690, 'dishonest': 9691, 'bonding': 9692, 'warrior': 9693, 'owes': 9694, 'debts': 9695, 'aliens': 9696, 'claim': 9697, 'awry': 9698, 'family-friendly': 9699, 'proof': 9700, 'kenneth': 9701, 'branagh': 9702, '91-minute': 9703, 'coherent': 9704, 'stagecrafts': 9705, 'therefore': 9706, 'bolder': 9707, 'defines': 9708, 'overwhelms': 9709, 'lilo': 9710, 'spades': 9711, 'odyssey': 9712, 'visits': 9713, 'footnote': 9714, 'seldom': 9715, 'mushy': 9716, 'movie-of-the-week': 9717, 'tearjerker': 9718, 'urgent': 9719, 'french-produced': 9720, 'resolve': 9721, 'amy': 9722, 'spite': 9723, \"twohy's\": 9724, 'yarn-spinner': 9725, '[plays]': 9726, 'pandering': 9727, 'buddy-comedy': 9728, 'travel-agency': 9729, 'bikes': 9730, 'topless': 9731, 'roll': 9732, 'independent-community': 9733, 'guiding': 9734, 'lights': 9735, 'unpleasantness': 9736, 'upload': 9737, 'feardotcom': 9738, 'log': 9739, 'titles': 9740, 'support': 9741, 'fling': 9742, 'closes': 9743, 'flagging': 9744, 'investigator': 9745, 'presson': 9746, 'frighteningly': 9747, 'heart-affecting': 9748, '1975': 9749, 'aground': 9750, 'snared': 9751, 'eye-popping': 9752, 'thankfully': 9753, 'skirts': 9754, 'deteriorating': 9755, 'croc': 9756, 'hunter': 9757, 'tribulations': 9758, 'metaphorical': 9759, 'readings': 9760, 'compared': 9761, 'fantasized': 9762, 'afford': 9763, '$20': 9764, \"'children's'\": 9765, \"'my\": 9766, \"stepdad's\": 9767, \"adjusting'\": 9768, 'bedroom': 9769, 'surfeit': 9770, 'subplots': 9771, 'uncluttered': 9772, 'relays': 9773, 'scotland': 9774, 'pa': 9775, 'leisurely': 9776, 'scottish': 9777, 'gimmick': 9778, 'reject': 9779, \"python's\": 9780, 'hears': 9781, 'shearer': 9782, 'ice-t': 9783, 'clare': 9784, \"peploe's\": 9785, 'airless': 9786, 'pie-like': 9787, 'irreverence': 9788, 'threat': 9789, 'implied': 9790, 'pok�mon': 9791, 'locusts': 9792, 'horde': 9793, 'hijinks': 9794, \"dawson's\": 9795, 'creek': 9796, 'andrew': 9797, 'niccol': 9798, 'healthy': 9799, 'fairness': 9800, 'varying': 9801, 'coughed': 9802, 'fidgeted': 9803, 'romped': 9804, 'aisles': 9805, 'bathroom': 9806, 'critically': 9807, 'godard': 9808, 'food-spittingly': 9809, 'dooby': 9810, 'shaggy': 9811, 'daphne': 9812, 'buff': 9813, 'velma': 9814, 'focuses': 9815, 'hormones': 9816, 'sledgehammers': 9817, 'spanish': 9818, 'inquisitions': 9819, '123': 9820, 'torture': 9821, 'device': 9822, 'teen-targeted': 9823, '72-minute': 9824, 'tad': 9825, 'pleas': 9826, 'environs': 9827, 'boosted': 9828, 'downtown': 9829, 'hotel': 9830, 'hill': 9831, 'giler': 9832, 'jonathan': 9833, 'bartleby': 9834, 'be-all-end-all': 9835, 'modern-office': 9836, 'anomie': 9837, 'thumbs': 9838, 'devastation': 9839, 'disease': 9840, 'glacial': 9841, 'acquire': 9842, 'records': 9843, 'referencing': 9844, 'arcana': 9845, 'alienate': 9846, 'savviest': 9847, 'anime': 9848, 'introverted': 9849, 'fetishes': 9850, 'hopelessly': 9851, 'characteristic': 9852, 'lovable-loser': 9853, 'immersive': 9854, 'hyper-realistic': 9855, 'outer-space': 9856, 'nonsensical': 9857, 'ineptly': 9858, 'fire-breathing': 9859, 'one-dimensional': 9860, 'wazoo': 9861, 'described': 9862, \"son's\": 9863, 'grader': 9864, 'b-minus': 9865, 'merits': 9866, 'markedly': 9867, 'inactive': 9868, 'conversational': 9869, 'deliriously': 9870, 'manipulate': 9871, 'illustrates': 9872, 'adversity': 9873, 'bitchy': 9874, 'frolic': 9875, 'pokes': 9876, 'lone': 9877, 'favourite': 9878, 'sundance': 9879, 'white-trash': 9880, 'unlucky': 9881, 'owned': 9882, 'cassette': 9883, 'def': 9884, \"leppard's\": 9885, 'pyromania': 9886, 'morphs': 9887, 'nicky': 9888, 'graphic': 9889, 'carnage': 9890, 're-creation': 9891, 'war-torn': 9892, 'croatia': 9893, 'sickeningly': 9894, \"one's\": 9895, 'prissy': 9896, 'isabelle': 9897, 'huppert': 9898, 'excels': 9899, 'mika': 9900, 'anna': 9901, 'mouglalis': 9902, 'pussy-ass': 9903, 'killer-thrillers': 9904, 'revolve': 9905, 'therapy': 9906, 'sessions': 9907, 'restrained': 9908, 'ribisi': 9909, 'convinces': 9910, 'jags': 9911, 'pump': 9912, 'stellar': 9913, 'diminishing': 9914, 'stature': 9915, 'lowly': 9916, 'transgressive': 9917, 'ensure': 9918, \"rodrigues's\": 9919, 'beast-within': 9920, 'ambiguous': 9921, 'years/': 9922, 'warp': 9923, 'speeds/': 9924, 'dilithium': 9925, 'crystals': 9926, 'pitiful': 9927, 'insurrection': 9928, '[kim]': 9929, 'overplay': 9930, 'tactics': 9931, 'bait-and-tackle': 9932, 'metaphors': 9933, 'provoke': 9934, 'specialty': 9935, 'venues': 9936, 'surpassed': 9937, 'empress': 9938, \"leoni's\": 9939, 'ellie': 9940, 'oafish': 9941, 'impersonating': 9942, 'ravaging': 9943, 'recreated': 9944, 'native': 9945, 'ballroom': 9946, '3000': 9947, 'waltzed': 9948, 'emerged': 9949, 'mel': 9950, 'brooks': 9951, 'heyday': 9952, 'teary-eyed': 9953, 'double-cross': 9954, \"mamet's\": 9955, \"fall's\": 9956, '[jackie]': 9957, 'starting': 9958, 'lick': 9959, 'potency': 9960, \"miller's\": 9961, 'brew': 9962, 'perseverance': 9963, 'hopeless': 9964, 'closure': 9965, 'vardalos': 9966, 'corbett': 9967, 'refuses': 9968, 'aiello': 9969, 'mumbles': 9970, 'provide[s]': 9971, 'nail-biting': 9972, 'relying': 9973, 'technology-of-the-moment': 9974, 'additional': 9975, 'beginning': 9976, 'explode': 9977, 'manic': 9978, 'oh-those-wacky-brits': 9979, 'ushered': 9980, 'straining': 9981, 'smash': 9982, 'tensions': 9983, 'rekindled': 9984, 'kathleen': 9985, 'soliah': 9986, 'upcoming': 9987, 'sla': 9988, 'emily': 9989, 'mention': 9990, \"fire's\": 9991, 'bling-bling': 9992, 'incongruous': 9993, 'chemically': 9994, 'teaming': 9995, 'crystal': 9996, 'something-borrowed': 9997, 'integrated': 9998, 'wan': 9999, 'thinly': 10000, 'sketched': 10001, 'tsai': 10002, 'well-deserved': 10003, 'stylists': 10004, 'desert': 10005, 'suspend': 10006, 'christina': 10007, 'ricci': 10008, 'hypocrisy': 10009, 'hartley': 10010, 'ardently': 10011, 'feathers': 10012, 'tennessee': 10013, \"oprah's\": 10014, 'rate': 10015, 'annie': 10016, 'echoes': 10017, 'jordan': 10018, 'weirdo': 10019, 'crispin': 10020, 'screwing': 10021, 'fiendishly': 10022, 'jaded': 10023, 'disorientated': 10024, 'refreshed': 10025, 'invite': 10026, 'gawk': 10027, 'applaud': 10028, 'wallpaper': 10029, \"frida's\": 10030, 'brilliance': 10031, 'turturro': 10032, 'fabulously': 10033, \"'very\": 10034, \"sneaky'\": 10035, 'butler': 10036, 'disappearing/reappearing': 10037, 'utmost': 10038, 'perception': 10039, 'economy': 10040, 'forum': 10041, \"'chops'\": 10042, 'yvan': 10043, 'writes': 10044, 'masala': 10045, 'pasolini': 10046, 'numb': 10047, 'fantasma': 10048, 'pink': 10049, 'agendas': 10050, 'replacing': 10051, 'degraded': 10052, 'handheld': 10053, 'video-cam': 10054, \"halloween's\": 10055, 'unappealing': 10056, 'malcolm': 10057, 'pubescent': 10058, 'frankie': 10059, 'muniz': 10060, 'vastness': 10061, 'fluff-ball': 10062, \"opera's\": 10063, 'intermissions': 10064, 'novice': 10065, 'exhilarated': 10066, \"tufano's\": 10067, 'widescreen': 10068, \"grabowsky's\": 10069, 'parochial': 10070, 'research': 10071, 'non-shakespeare': 10072, 'grounds': 10073, 'softest': 10074, 'revolt': 10075, 'funnybone': 10076, 'rachel': 10077, 'griffiths': 10078, 'straight-ahead': 10079, 'renaissance': 10080, 'spain': 10081, 'blockbuster': 10082, 'unadulterated': 10083, 'relating': 10084, 'filling': 10085, 'pride': 10086, 'better-focused': 10087, 'goth-vampire': 10088, 'woe-is-me': 10089, 'lifestyle': 10090, 'bangs': 10091, \"crowd-pleaser's\": 10092, 'good-natured': 10093, 'spunk': 10094, 'jettisoned': 10095, 'allegory': 10096, \"germany's\": 10097, 'democratic': 10098, 'weimar': 10099, 'republic': 10100, 'candle': 10101, 'imaxy': 10102, 'tapped': 10103, 'commercials': 10104, 'nostalgia': 10105, \"costner's\": 10106, 'warm-milk': 10107, \"shadyac's\": 10108, 'overtly': 10109, 'laurence': 10110, 'olivier': 10111, 'tweak': 10112, 'tangy': 10113, 'chaiken': 10114, 'ably': 10115, 'balances': 10116, 'real-time': 10117, 'propulsive': 10118, '[roman': 10119, 'coppola]': 10120, 'staggers': 10121, 'measurements': 10122, 'no-frills': 10123, 'docu-dogma': 10124, 'plainness': 10125, 'lingers': 10126, 'psychic': 10127, 'digressions': 10128, 'boxes': 10129, 'vagina': 10130, \"film's]\": 10131, 'weaned': 10132, 'impacts': 10133, 'hurley': 10134, 'illicit': 10135, 'crash': 10136, 'herd': 10137, 'blown': 10138, 'oddest': 10139, \"jaglom's\": 10140, 'profession': 10141, 'coherence': 10142, '[deniro]': 10143, 'underscores': 10144, 'polishing': 10145, \"'life\": 10146, \"problems'\": 10147, 'solved': 10148, 'kvetch': 10149, 'secrets': 10150, 'marvelous': 10151, 'instructive': 10152, 'roller-coaster': 10153, 'kiddie-flick': 10154, 'magician': 10155, 'seconds': 10156, 'valley': 10157, 'dolls': 10158, 'psychodramatics': 10159, 'woods': 10160, 'repugnant': 10161, 'roland': 10162, 'joff�': 10163, 'demi': 10164, 'scarlet': 10165, \"title's\": 10166, 'clunk-on-the-head': 10167, 'overtime': 10168, 'irritatingly': 10169, 'train': 10170, 'wreck': 10171, \"nelson's\": 10172, 'horribly': 10173, 'smith': 10174, 'profiles': 10175, 'homes': 10176, 'owners': 10177, 'aware': 10178, 'abuses': 10179, 'eccentricities': 10180, 'pinch': 10181, 'tartness': 10182, 'dizzily': 10183, 'companion': 10184, \"wong's\": 10185, 'mainland': 10186, 'goliath': 10187, 'terrifically': 10188, 'cliff': 10189, 'edition': 10190, 'cheat': 10191, 'marred': 10192, 'blunder': 10193, 'tony': 10194, 'hawk': 10195, 'skating': 10196, 'interspliced': 10197, 'jersey': 10198, 'shore': 10199, 'bagatelle': 10200, 'loosely-connected': 10201, 'acting-workshop': 10202, 'exercises': 10203, 'spiral': 10204, 'junkie': 10205, 'l�stima': 10206, 'hora': 10207, 'deje': 10208, 'estafeta': 10209, 'nuevas': 10210, 'generaciones': 10211, 'ample': 10212, 'large-scale': 10213, 'supplies': 10214, 'anti-human': 10215, 'graceland': 10216, 'masochism': 10217, 'theatres': 10218, 'mechanical': 10219, 'grease': 10220, 'monosyllabic': 10221, '19th-century': 10222, 'figuring': 10223, 'energizing': 10224, 'intoxicating': 10225, 'charting': 10226, 'rise': 10227, 'turntablism': 10228, 'fear': 10229, 'bewildered': 10230, \"assassin's\": 10231, 'remind': 10232, 'enlivens': 10233, 'cardoso': 10234, 'note': 10235, 'defiance': 10236, 'dictates': 10237, 'zeus': 10238, 'snatch': 10239, 'creatures': 10240, \"'spectacular\": 10241, 'redneck-versus-blueblood': 10242, 'trades': 10243, 'jeff': 10244, \"foxworthy's\": 10245, 'scare': 10246, 'pants': 10247, 'risk': 10248, 'ilk': 10249, 'intelligently': 10250, 'haneke': 10251, 'explorations': 10252, 'magimel': 10253, 'obviousness': 10254, 'plotless': 10255, 'shapeless': 10256, 'admitted': 10257, 'achieve': 10258, 'shock-you-into-laughter': 10259, 'dadaist': 10260, 'danilo': 10261, \"donati's\": 10262, 'designs': 10263, 'dante': 10264, \"spinotti's\": 10265, 'luscious': 10266, 'insisted': 10267, \"stand-up's\": 10268, 'rugrats': 10269, 'emphasis': 10270, 'respecting': 10271, 'mounted': 10272, 'capitalize': 10273, 'inclination': 10274, 'lecter': 10275, '[green': 10276, 'saddam': 10277, 'hussein': 10278, 'ready': 10279, 'n': 10280, 'permission': 10281, 'preemptive': 10282, 'addict': 10283, 'bet': 10284, 'none-too-original': 10285, '51st': 10286, 'underestimate': 10287, 'romanek': 10288, 'reflecting': 10289, 'instability': 10290, 'heartbeat-like': 10291, 'near-xenophobic': 10292, 'pedagogy': 10293, 'pine': 10294, 'rigors': 10295, 'soccer': 10296, \"judd's\": 10297, 'durable': 10298, 'seller': 10299, 'underscoring': 10300, 'slathered': 10301, 'well-meaningness': 10302, 'erase': 10303, '12-step': 10304, 'program': 10305, 'nazi': 10306, 'succeeded': 10307, 'groggy': 10308, 'unjustified': 10309, 'spout': 10310, 'dialog': 10311, 'consists': 10312, 'platitudes': 10313, \"tsai's\": 10314, 'am-radio': 10315, 'tierney': 10316, 'inimitable': 10317, 'walken': 10318, 'choking': 10319, 'conceit': 10320, 'litmus': 10321, 'gap': 10322, 'repulse': 10323, 'forgot': 10324, 'rejigger': 10325, 'exception': 10326, 'scooter': 10327, 'ostensibly': 10328, 'middle-aged': 10329, 'action-oriented': 10330, 'ferzan': 10331, 'apartment': 10332, 'work-in-progress': 10333, 'inexplicably': 10334, 'rushed': 10335, 'megaplexes': 10336, 'schlocky': 10337, 'cerebral--and': 10338, 'pumpkin': 10339, 'dime': 10340, 'tries-so-hard-to-be-cool': 10341, 'applauded': 10342, 'proverbial': 10343, 'consumerist': 10344, 'studiously': 10345, 'involvement': 10346, 'stomach-turning': 10347, 'hallmarks': 10348, 'largest-ever': 10349, 'canvas': 10350, 'astoria': 10351, 'inflammatory': 10352, 'religion': 10353, 'ancient': 10354, 'resolution': 10355, 'jazzy': 10356, 'silences': 10357, 'propelled': 10358, 'caricatures': 10359, 'glorifying': 10360, 'software': 10361, 'anarchy': 10362, 'endured': 10363, 'workout': 10364, 'racing': 10365, \"'n'\": 10366, 'sandal': 10367, \"gondry's\": 10368, 'in-your-face': 10369, 'blues': 10370, 'in-depth': 10371, 'university': 10372, 'departments': 10373, 'atmospheric': 10374, 'herrmann': 10375, 'suggesting': 10376, \"hearst's\": 10377, 'avuncular': 10378, 'chortles': 10379, 'jungle': 10380, 'needing': 10381, 'survive': 10382, \"[herzog's]\": 10383, 'policy': 10384, 'fluke': 10385, 'drudgery': 10386, 'wealth': 10387, 'archival': 10388, 'foot-age': 10389, 'less-than-objective': 10390, 'stance': 10391, 'american-style': 10392, 'documents': 10393, 'spook-a-rama': 10394, 'caso': 10395, 'voc�': 10396, 'sinta': 10397, 'necessidade': 10398, 'sala': 10399, 'antes': 10400, 't�rmino': 10401, 'proje��o': 10402, 'n�o': 10403, 'se': 10404, 'preocupe': 10405, 'ningu�m': 10406, 'lhe': 10407, 'enviar�': 10408, 'penas': 10409, 'simbolizando': 10410, 'covardia': 10411, 'accomplish': 10412, 'equals': 10413, 'betters': 10414, 'soothe': 10415, 'stroke': 10416, '19': 10417, 'afloat': 10418, 'drama/action': 10419, 'falseness': 10420, 'began': 10421, 'heart-tugging': 10422, 'trifecta': 10423, 'badness': 10424, 'jumps': 10425, 'continuity': 10426, 'bytes': 10427, 'information': 10428, 'anciently': 10429, 'm�tier': 10430, 'ballesta': 10431, 'galan': 10432, 'achero': 10433, \"manas's\": 10434, 'schematic': 10435, 'janice': 10436, 'beard': 10437, 'falters': 10438, 'sags': 10439, 'courageousness': 10440, 'employment': 10441, 'hudlin': 10442, 'adjective': 10443, \"'gentle'\": 10444, 'describes': 10445, 'pauline': 10446, 'paulette': 10447, 'sugarcoated': 10448, 'far-fetched': 10449, 'redemptive': 10450, '[davis]': 10451, 'chipper': 10452, 'managing': 10453, 'wish-fulfilling': 10454, 'cringing': 10455, 'amazingly': 10456, 'overcomes': 10457, 'envelops': 10458, 'frustration': 10459, 'divine': 10460, 'ya-ya': 10461, 'sisterhood': 10462, 'nurturing': 10463, 'gauzy': 10464, 'dithering': 10465, '[majidi]': 10466, 'immigrants': 10467, 'open-minded': 10468, 'comforted': 10469, 'deals': 10470, 'unlock': 10471, 'laggard': 10472, 'wending': 10473, 'epiphany': 10474, 'asset': 10475, 'connect-the-dots': 10476, 'spy-on-the-run': 10477, \"'barbershop'\": 10478, 'villains': 10479, 'wannabe': 10480, 'elmore': 10481, 'ignite': 10482, 'sexually': 10483, 'explicit': 10484, 'probing': 10485, 'libido': 10486, 'arrived': 10487, 'portugal': 10488, 'bid': 10489, 'monotonous': 10490, 'joan': 10491, \"philip's\": 10492, 'giggling': 10493, 'pre-wwii': 10494, 'claims': 10495, 'new-agey': 10496, 'oleander': 10497, 'gibson': 10498, 'stepping': 10499, 'bruce': 10500, 'blasphemous': 10501, 'suburban': 10502, 'comic/thriller': 10503, \"moretti's\": 10504, 'anatomy': 10505, 'adapting': 10506, 'skins': 10507, 'desolate': 10508, 'eyre': 10509, 'infuse': 10510, 'rocky': 10511, 'sibling': 10512, 'reconciliation': 10513, 'majority': 10514, 'unsympathetic': 10515, 'shorter': 10516, 'cutoffs': 10517, 'miraculous': 10518, 'overflows': 10519, 'confuses': 10520, 'contorting': 10521, 'expectation': 10522, 'skit-com': 10523, 'fervently': 10524, 'deposited': 10525, 'playstation': 10526, 'cocktail': 10527, 'undistinguished': 10528, \"giants'\": 10529, 'tuneless': 10530, 'melange': 10531, 'styles': 10532, 'turgid': 10533, 'honors': 10534, 'caution': 10535, 'invitation': 10536, 'hedonist': 10537, 'amped-up': 10538, 'hawk-style': 10539, 'thrashing': 10540, 'rap-metal': 10541, \"'who\": 10542, \"it'\": 10543, 'lived': 10544, 'confessions': 10545, 'bio': 10546, \"barris'\": 10547, 'architect': 10548, 'trilogy': 10549, 'proved': 10550, \"schneider's\": 10551, 'cross-dressing': 10552, 'spookiness': 10553, 'camp': 10554, 'chao': 10555, 'chen': 10556, \"kaige's\": 10557, 'assistant': 10558, 'learnt': 10559, 'minimum': 10560, 'whit': 10561, 'frontman': 10562, 'rubber-face': 10563, 'goldberg': 10564, 'asiaphiles': 10565, 'fuss': 10566, 'aristocratic': 10567, 'luminous': 10568, 'careworn': 10569, \"hamilton's\": 10570, 'rampling': 10571, 'improved': 10572, 'two-fifths': 10573, 'hyperbolic': 10574, 'beat-charged': 10575, 'sociologically': 10576, 'socrates': 10577, 'hemlock': 10578, 'unexpectedly': 10579, 'toro': 10580, 'leather': 10581, 'augmented': 10582, 'boobs': 10583, 'hawn': 10584, 'resuscitate': 10585, 'fun-loving': 10586, 'handbag-clutching': 10587, 'sarandon': 10588, 'sucker': 10589, 'cluelessness': 10590, 'misplaced': 10591, 'decidedly': 10592, 'flimsier': 10593, 'out-sized': 10594, 'logically': 10595, 'porous': 10596, 'harmed': 10597, 'insulted': 10598, 'alice': 10599, 'made-for-cable': 10600, 'ze': 10601, 'struck': 10602, 'hectic': 10603, 'homiletic': 10604, 'battered': 10605, 'freak-outs': 10606, 'mass-market': 10607, 'competence': 10608, 'classy': 10609, \"'60s-homage\": 10610, 'pokepie': 10611, 'morphed': 10612, 'filmic': 10613, 'and--especially--to': 10614, 'listen': 10615, 'self-mutilation': 10616, 'pitted': 10617, 'ethereal': 10618, 'brazenly': 10619, 'sheridan': 10620, 'terrified': 10621, \"book's\": 10622, 'scotches': 10623, '�lan': 10624, 'bile': 10625, 'impresses': 10626, 'skillfully': 10627, \"'manhunter'\": 10628, 'unedited': 10629, 'journal': 10630, 'moon': 10631, 'fuel': 10632, 'achievements': 10633, 'stranded': 10634, 'appetites': 10635, 'menu': 10636, 'spider': 10637, 'invasion': 10638, 'peppering': 10639, 'norwegian': 10640, 'folktales': 10641, 'specificity': 10642, 'stainton': 10643, 'tongue': 10644, 'cheek': 10645, 'glimmer': 10646, 'spiritually': 10647, 'answers': 10648, 'van': 10649, 'wilder': 10650, 'built-in': 10651, 'drying': 10652, 'ingest': 10653, 'innuendoes': 10654, 'abound': 10655, \"japan's\": 10656, 'carrying': 10657, 'batman': 10658, '[stephen]': 10659, \"earnhart's\": 10660, 'currently': 10661, 'heels': 10662, 'honey': 10663, 'parent': 10664, 'first-class': 10665, 'specimen': 10666, 'dread': 10667, 'encountering': 10668, 'fanboy': 10669, 'anthropomorphic': 10670, 'italian-language': 10671, 'september': 10672, '11th': 10673, 'dared': 10674, 'hundred': 10675, 'boogaloo': 10676, 'mind-numbing': 10677, 'indifference': 10678, 'streets': 10679, 'bravery': 10680, 'partisans': 10681, 'sabotage': 10682, 'viva': 10683, 'yellow': 10684, 'asphalt': 10685, 'shave': 10686, 'topping': 10687, 'cone': 10688, 'innocuous': 10689, 'flavorless': 10690, 'devolves': 10691, \"shainberg's\": 10692, \"gaitskill's\": 10693, 'impenetrable': 10694, 'pseudo-philosophic': 10695, 'mine': 10696, 'goldie': 10697, 'improves': 10698, 'graphics': 10699, 'vaunted': 10700, 'brawny': 10701, 'fits': 10702, 'deserving': 10703, 'back-stabbing': 10704, 'inter-racial': 10705, \"williams'\": 10706, \"jacquot's\": 10707, 'strategy': 10708, 'reside': 10709, 'veiled': 10710, \"murphy's\": 10711, 'well-honed': 10712, 'prima': 10713, 'donna': 10714, 'harangues': 10715, 'ferrera': 10716, 'ontiveros': 10717, 'off-kilter': 10718, 'vaguely': 10719, 'cockettes': 10720, 'gaudy': 10721, 'bearded': 10722, 'lactating': 10723, 'swings': 10724, 'madcap': 10725, 'treebeard': 10726, \"gollum's\": 10727, 'expanded': 10728, \"'performance'\": 10729, 'triple': 10730, 'dude': 10731, 'equation': 10732, \"'em-up\": 10733, 'substituting': 10734, 'unrepentant': 10735, 'excursion': 10736, 'epicenter': 10737, 'forgotten': 10738, 'trotting': 10739, 'slash-fest': 10740, 'wishy-washy': 10741, 'abruptly': 10742, 'crosscuts': 10743, '[bobby]': 10744, 'mosaic': 10745, \"he'd\": 10746, 'hallucinatory': 10747, 'armenian-canadian': 10748, 'atom': 10749, 'broached': 10750, 'croze': 10751, 'bibi': 10752, 'mawkish': 10753, 'platonic': 10754, \"chaplin's\": 10755, 'dispassionate': 10756, 'pizazz': 10757, 'tian': 10758, 'confining': 10759, \"liyan's\": 10760, 'backyard': 10761, 'huskies': 10762, 'border': 10763, 'collie': 10764, 'ethos': 10765, \"secret's\": 10766, 'spasms': 10767, 'fault': 10768, \"everyman's\": 10769, 'incoherence': 10770, 'reigns': 10771, 'smackdown': 10772, 'unclassifiably': 10773, 'self-': 10774, 'audience-abuse': 10775, 'purports': 10776, '[siegel]': 10777, 'co-writers': 10778, 'lisa': 10779, 'bazadona': 10780, 'woodard': 10781, 'relied': 10782, 'convention': 10783, \"photographer's\": 10784, \"show-don't-tell\": 10785, 'chilled': 10786, 'oral': 10787, 'dated': 10788, 'depending': 10789, 'ignorant': 10790, 'fairies': 10791, 'physics': 10792, \"anyone's\": 10793, 'darned': 10794, 'riveted': 10795, 'frightful': 10796, 'vanity': 10797, 'pays': 10798, 'debt': 10799, 'miramax': 10800, 'owed': 10801, 'imitating': 10802, 'unhappy': 10803, 'plummer': 10804, \"nicholas'\": 10805, 'wounded': 10806, 'wounding': 10807, 'uncle': 10808, 'ralph': 10809, 'afghan': 10810, 'shamelessly': 10811, 'well-done': 10812, 'everywhere': 10813, 'resentment': 10814, 'pretence': 10815, 'arthouse': 10816, 'middle-brow': 10817, \"broomfield's\": 10818, 'findings': 10819, 'acquires': 10820, 'pale': 10821, 'moviegoing': 10822, 'dinner': 10823, \"hostess's\": 10824, \"baby's\": 10825, 'birth': 10826, \"jagger's\": 10827, 'bone-dry': 10828, 'mournfully': 10829, 'brittle': 10830, 'amusingly': 10831, 'coincidences': 10832, 'israeli-occupied': 10833, 'palestinian': 10834, 'territories': 10835, 'confluence': 10836, 'zhang': 10837, 'nonprofessional': 10838, 'slippery': 10839, 'footing': 10840, 'kiddies': 10841, 'emphasized': 10842, \"crane's\": 10843, 'decline': 10844, 'responsibility': 10845, 'hairpiece': 10846, \"lai's\": 10847, 'villainous': 10848, 'old-form': 10849, 'delectable': 10850, 'misfits': 10851, 'traced': 10852, 'abc': 10853, 'kiarostami': 10854, 'africa': 10855, 'procession': 10856, 'castles': 10857, 'pressed': 10858, 'succumb': 10859, 'verges': 10860, 'interdependence': 10861, 'accomodates': 10862, 'practical': 10863, 'unstinting': 10864, 'collaboration': 10865, 'qual': 10866, 'quarter': 10867, 'elephant': 10868, 'feces': 10869, \"hill's\": 10870, '1940s': 10871, 'warner': 10872, 'bros': 10873, 'mohawk': 10874, 'sheet': 10875, 'fire-red': 10876, 'flame': 10877, 'covering': 10878, 'shoulder': 10879, 'kilmer': 10880, 'posing': 10881, 'humble': 10882, 'fragmented': 10883, 'hard-hearted': 10884, 'bullseye': 10885, 'confection': 10886, 'deceptively': 10887, 'interfaith': 10888, 'displayed': 10889, '33-year-old': 10890, 'astonishing': 10891, 'inexperience': 10892, 'materials': 10893, 'dresses': 10894, 'southern': 10895, 'california': 10896, 'screen-eating': 10897, 'dominatrixes': 10898, 'hokum': 10899, \"everyone's\": 10900, 'dishonor': 10901, 'exude': 10902, 'intriguingly': 10903, 'christians': 10904, 'reductionist': 10905, 'lord': 10906, 'luv-spreading': 10907, 'feelgood': 10908, 'omnipotent': 10909, 'slacker': 10910, 'affronted': 10911, 'secularists': 10912, 'instant': 10913, 'savor': 10914, 'lamer': 10915, 'saddle': 10916, 'stultifyingly': 10917, 'sleepy': 10918, 'immediacy': 10919, 'instinct': 10920, 'duck': 10921, 'blissfully': 10922, 'banderas-lucy': 10923, 'faceoff': 10924, 'aesop': 10925, 'ski': 10926, 'robbery': 10927, 'ourside': 10928, 'intolerable': 10929, 'spending': 10930, 'too-extreme-for-tv': 10931, 'steaming': 10932, 'heaps': 10933, 'illuminate': 10934, 'glibly': 10935, 'sorrow': 10936, 'laugther': 10937, 'cascade': 10938, 'soul-stirring': 10939, 'israeli/palestinian': 10940, 'alarms': 10941, \"duvall's\": 10942, 'throbbing': 10943, 'propensity': 10944, 'patting': 10945, 'westfeldt': 10946, 'juergensen': 10947, 'saucy': 10948, 'sadistic': 10949, 'bike': 10950, 'vittorio': 10951, 'sica': 10952, \"deniro's\": 10953, 'boardwalk': 10954, 'roy': 10955, '1973': 10956, 'convince': 10957, 'brats': 10958, 'losers': 10959, 'preparation': 10960, 'igloo': 10961, 'armed': 10962, 'pitch-perfect': 10963, 'forster': 10964, 'meara': 10965, 'shoots': 10966, 'namesake': 10967, 'mystery/thriller': 10968, 'frothy': 10969, 'rests': 10970, 'sullivan': 10971, 'stones': 10972, 'shameful': 10973, 'avant': 10974, 'garde': 10975, \"broadway's\": 10976, 'titus': 10977, 'dirk': 10978, 'greg': 10979, 'reaches': 10980, 'attributable': 10981, 'drained': 10982, 'whistles': 10983, 'bells': 10984, 'legends': 10985, 'huston': 10986, 'trifles': 10987, 'yimou': 10988, \"smith's\": 10989, 'tease': 10990, 'expressed': 10991, 'excruciatingly': 10992, 'unromantic': 10993, 'uncool': 10994, 'gadzooks': 10995, 'toss-up': 10996, 'presiding': 10997, 'derive': 10998, 'resides': 10999, 'tornatore': 11000, \"drowning's\": 11001, \"today's\": 11002, 'hottest': 11003, 'hippest': 11004, 'swagger': 11005, '�70s': 11006, 'shuck-and-jive': 11007, 'louts': 11008, 'climbing': 11009, 'steps': 11010, 'stadium-seat': 11011, 'allegorical': 11012, 'reconstruction': 11013, 'entr�e': 11014, 'tuba-playing': 11015, 'dwarf': 11016, 'librarian': 11017, 'whacking': 11018, 'answered': 11019, 'culmination': 11020, '[in': 11021, 'abbreviated': 11022, \"whitaker's\": 11023, 'misfit': 11024, 'pill': 11025, 'self-expression': 11026, 'predisposed': 11027, 'transporting': 11028, 'lavishly': 11029, 'exhilaratingly': 11030, 'worthless': 11031, 'successes': 11032, 'tempered': 11033, 'antithesis': 11034, 'pithy': 11035, 'illuminating': 11036, 'underachieves': 11037, 'hmmm�might': 11038, 'stuffing': 11039, 'electric': 11040, 'pencil': 11041, 'sharpener': 11042, 'benchmark': 11043, 'lameness': 11044, 'thirty': 11045, 'groundbreaking': 11046, 'vinnie': 11047, 'spitting': 11048, 'sarah': 11049, 'gellar': 11050, 'spade': 11051, 'citizen': 11052, 'kane': 11053, 'disreputable': 11054, 'syndrome': 11055, 'summary': 11056, 'vile': 11057, 'tiger': 11058, 'longs': 11059, 'frisk': 11060, 'alleys': 11061, 'snoozy': 11062, 'plato': 11063, \"'i\": 11064, 'swedish': 11065, 'fillm': 11066, 'religious': 11067, 'civic': 11068, 'imperious': 11069, \"katzenberg's\": 11070, 'prince': 11071, 'egypt': 11072, '1998': 11073, 'combining': 11074, 'blaring': 11075, 'beck': 11076, 'not-great': 11077, 'locked': 11078, 'cat-and-cat': 11079, 'homosexual': 11080, 'undertones': 11081, 'pops': 11082, 'nathan': 11083, 'ill-timed': 11084, 'antitrust': 11085, 'fraction': 11086, 'flatter': 11087, 'tootsie': 11088, 'pootie': 11089, 'tang': 11090, 'punchlines': 11091, 'addresses': 11092, 'cassel': 11093, 'vocalized': 11094, 'palpable': 11095, 'clown': 11096, 'wincing': 11097, 'repugnance': 11098, 'tv-to-movie': 11099, 'small-screen': 11100, 'progenitor': 11101, 'unremarkable': 11102, 'collegiate': 11103, 'restoring': 11104, 'lampoon': 11105, 'irrelevancy': 11106, 'insubstantial': 11107, 'predictability': 11108, 'single-minded': 11109, 'koury': 11110, \"teenager's\": 11111, 'self-inflicted': 11112, 'retaliation': 11113, 'payback': 11114, 'pyro-correctly': 11115, 'bailiwick': 11116, 'blended': 11117, 'lipstick': 11118, 'components': 11119, 'compensated': 11120, 'off-the-wall': 11121, 'playfulness': 11122, 'outlandishness': 11123, 'well-meant': 11124, 'army': 11125, 'warpath': 11126, 'devilish': 11127, 'adobo': 11128, 'ethnicity': 11129, 'concerns': 11130, 'hobby': 11131, 'attracts': 11132, 'reality-snubbing': 11133, 'hodgepodge': 11134, 'sorry': 11135, 'brunt': 11136, 'cliche-riddled': 11137, 'self-serious': 11138, \"'science\": 11139, \"fiction'\": 11140, 'disservice': 11141, \"byler's\": 11142, 'incarnates': 11143, 'prophetic': 11144, 'exacting': 11145, 'proficiency': 11146, 'bladerunner': 11147, 'high-concept': 11148, 'sci': 11149, 'fi': 11150, 'attempted': 11151, 'action-and-popcorn': 11152, 'obsessed': 11153, 'embrace': 11154, 'psychodrama': 11155, 'travels': 11156, 'euphoria': 11157, 'disillusionment': 11158, 'boat': 11159, 'small-scale': 11160, 'bigelow': 11161, 'flashy': 11162, 'fortify': 11163, 'two-way': 11164, 'time-switching': 11165, 'stalls': 11166, 'gear': 11167, 'bobby': 11168, \"green's\": 11169, 'wedge': 11170, 'saldanha': 11171, 'verbal': 11172, 'adherence': 11173, 'philosophy': 11174, 'trimmed': 11175, 'sprawling': 11176, 'cowering': 11177, 'poverty': 11178, 'lightest': 11179, 'recharged': 11180, 'bille': 11181, 'august': 11182, 'sportsmanship': 11183, 'gang-infested': 11184, 'east-vs': 11185, '-west': 11186, 'coast': 11187, 'mob': 11188, \"macy's\": 11189, 'thanksgiving': 11190, 'balloon': 11191, 'heavy-duty': 11192, 'ropes': 11193, \"hanna-barbera's\": 11194, 'frontal': 11195, 'murkiest': 11196, 'hanukkah': 11197, 'fried': 11198, \"'signs'\": 11199, 'occur': 11200, 'telegraphing': 11201, 'directs': 11202, 'wintry': 11203, 'absorbs': 11204, 'spycraft': 11205, \"damon's\": 11206, 'ripping': 11207, 'gentility': 11208, \"malle's\": 11209, 'messing': 11210, 'slob': 11211, 'reductions': 11212, 'damon': 11213, 'runyon': 11214, 'crooks': 11215, 'elaborate': 11216, 'full-blooded': 11217, 'eventful': 11218, 'guru': 11219, 'launch': 11220, 'recalls': 11221, 'cary': 11222, 'houseboat': 11223, 'affectionate': 11224, 'irresponsible': 11225, 'latches': 11226, 'pickup': 11227, 'skidding': 11228, 'patch': 11229, 'bravely': 11230, 'delve': 11231, 'ambivalence': 11232, 'unmoved': 11233, 'immaculately': 11234, 'greedy': 11235, 'bastards': 11236, 'shaking': 11237, 'backward': 11238, 'casualties': 11239, 'often-deadly': 11240, 'pack': 11241, 'controversy': 11242, 'explosive': 11243, 'stalk-and-slash': 11244, 'coordinated': 11245, 'dv': 11246, 'teamwork': 11247, 'sampler': 11248, 'swaying': 11249, 'cradles': 11250, 'veiling': 11251, 'indispensable': 11252, 'agony': 11253, 'access': 11254, 'massoud': 11255, 'cultivation': 11256, 'devotion': 11257, 'readily': 11258, 'slogged': 11259, 'exterior': 11260, 'stable-full': 11261, 'blandly': 11262, 'continuing': 11263, \"'picture\": 11264, 'edgy': 11265, \"ryan's\": 11266, 'do-over': 11267, 'robinson': 11268, 'ranges': 11269, 'wonder-what-': 11270, 'time-it-is': 11271, 'mid-range': 11272, 'jet': 11273, 'li': 11274, 'rollerblades': 11275, 'through-line': 11276, 'apparently': 11277, 'nose': 11278, 'pumps': 11279, 'surrounds': 11280, 'blasting': 11281, 'stabbing': 11282, 'incomplete': 11283, 'malleable': 11284, 'filmgoers': 11285, 'peekaboo': 11286, 'cruelly': 11287, 'non-actors': 11288, 'no-budget': 11289, 'mama': 11290, 'knockout': 11291, 'sexualization': 11292, 'mind--namely': 11293, 'implications': 11294, 'craving': 11295, 'stimulation': 11296, 'underlies': 11297, 'lulls': 11298, '129-minute': 11299, '60': 11300, 'shudder': 11301, 'tremble': 11302, \"haneke's\": 11303, 'punishment': 11304, 'modernizes': 11305, \"mason's\": 11306, 'sensibilities': 11307, 'decision': 11308, 'plucks': 11309, 'intrinsically': 11310, 'sir': 11311, \"'get\": 11312, 'bitch': 11313, 'bruckheimer': 11314, 'scoob': 11315, 'shag': 11316, \"'e'\": 11317, \"'b'\": 11318, 'ops': 11319, 'argentinean': 11320, \"'dramedy'\": 11321, 'shoulders': 11322, 'dialogue-heavy': 11323, 'racy': 11324, 'dwindles': 11325, 'lighthearted': 11326, 'elevate': 11327, 'duvall': 11328, \"girl's\": 11329, 'surfacing': 11330, 'fusion': 11331, 'jaw-dropping': 11332, 'palette': 11333, 'astounding': 11334, 'boffo': 11335, 'slackers': 11336, 'patronising': 11337, 'technically': 11338, 'insurance': 11339, 'inspirations': 11340, \"[chaiken's]\": 11341, 'altman': 11342, 'coen': 11343, 'collection': 11344, 'unified': 11345, 'brow': 11346, \"[sen's]\": 11347, 'shadyac': 11348, 'rejection': 11349, 'slowest': 11350, 'inane': 11351, \"[shakespeare's]\": 11352, 'relic': 11353, 'bygone': 11354, 'convolutions': 11355, 'sketchbook': 11356, 'adroit': 11357, 'shifts': 11358, 'wearisome': 11359, 'indifferent': 11360, 'craftsmanship': 11361, 'speedy': 11362, 'wham-bam': 11363, 'beginners': 11364, \"m�nch's\": 11365, 'overindulgence': 11366, 'forgivable': 11367, 'macdowell': 11368, 'anguished': 11369, 'eclipses': 11370, 'hobbled': 11371, 'half-baked': 11372, 'setups': 11373, 'learns': 11374, 'softens': 11375, 'overheated': 11376, 'student': 11377, 'leveling': 11378, \"bull's-eye\": 11379, 'noteworthy': 11380, 'unbroken': 11381, '87-minute': 11382, 'slips': 11383, 'maker': 11384, 'fuddled': 11385, 'motives': 11386, 'drains': 11387, 'boots': 11388, 'action-packed': 11389, 'sinuously': 11390, 'off-puttingly': 11391, 'cheated': 11392, 'pandered': 11393, 'third-act': 11394, 'crescendos': 11395, \"fincher's\": 11396, 'characteristically': 11397, 'affords': 11398, 'gleaned': 11399, 'lifetime': 11400, 'ram': 11401, 'dass': 11402, 'organize': 11403, 'introducing': 11404, 'alluring': 11405, 'boatload': 11406, 'leaky': 11407, 'freighter': 11408, 'underwood': 11409, '$100': 11410, '[cho]': 11411, 'riffs': 11412, 'diciness': 11413, 'colonics': 11414, 'ads': 11415, 'periods': 11416, 'outr�': 11417, 'practice': 11418, 'boyd': 11419, 'gracious': 11420, 'eloquent': 11421, 'ultra-provincial': 11422, '26-year-old': 11423, 'reese': 11424, 'inject': 11425, 'melanie': 11426, 'carmichael': 11427, 'infusion': 11428, 'senseless': 11429, 'thankless': 11430, 'ricochets': 11431, 'ryoko': 11432, 'hirosue': 11433, 'orgy': 11434, 'arresting': 11435, 'randomness': 11436, 'wishful': 11437, 'cumbersome': 11438, 'simpering': 11439, 'meyjes': 11440, 'homework': 11441, 'soaked': 11442, 'revisionist': 11443, 'theories': 11444, 'origins': 11445, 'aesthetics': 11446, 'creep': 11447, 'slapped': 11448, 'shortcomings': 11449, 'holmes': 11450, 'major-league': 11451, 'underachiever': 11452, 'climax': 11453, 'koshashvili': 11454, 'textural': 11455, 'sex-as-war': 11456, 'practiced': 11457, 'crack': 11458, 'newfoundland': 11459, 'prevalent': 11460, 'breeziness': 11461, 'unbelievably': 11462, 'critique': 11463, 'pervasive': 11464, 'aspect': 11465, \"ah-nuld's\": 11466, 'customarily': 11467, 'jovial': 11468, 'deficit': 11469, 'flim-flam': 11470, 'hashiguchi': 11471, 'bustling': 11472, 'atop': 11473, 'undercurrent': 11474, 'war-ravaged': 11475, 'harrison': 11476, 'unruly': 11477, 'yearning': 11478, 'hyper-cliched': 11479, 'uninventive': 11480, 'exalted': 11481, 'referred': 11482, 'aspire': 11483, 'lo-fi': 11484, 'indulge': 11485, 'lucas': 11486, \"'opening\": 11487, \"up'\": 11488, 'closed': 11489, 'wreaked': 11490, 'jock': 11491, 'piffle': 11492, 'beaten': 11493, \"kapur's\": 11494, 'contradictory': 11495, \"nohe's\": 11496, 'gullible': 11497, 'co-operative': 11498, 'withering': 11499, 'monarch': 11500, 'crowd-pleaser': 11501, 'stirs': 11502, 'daughter': 11503, 'danang': 11504, 'flinch': 11505, 'prognosis': 11506, 'engulfing': 11507, 'allying': 11508, 'afterthought': 11509, 'orchestrating': 11510, 'conveying': 11511, 'wincingly': 11512, 'nauseatingly': 11513, 'correct': 11514, '4': 11515, 'chekhov': 11516, 'cacoyannis': 11517, 'vexing': 11518, 'handicap': 11519, 'graffiti': 11520, 'treasures': 11521, 'marvels': 11522, 'clashing': 11523, 'delhi': 11524, \"[cho's\": 11525, 'instrument': 11526, 'scrapbook': 11527, 'mug': 11528, 'hu': 11529, 'matter-of-fact': 11530, 'glint': 11531, 'crappola': 11532, 'gamesmanship': 11533, 'off-beat': 11534, 'amiss': 11535, 'lo': 11536, 'comeback': 11537, 'curlers': 11538, 'brooms': 11539, 'canadians': 11540, 'tone-deaf': 11541, 'appearing': 11542, 'charade': 11543, 'video-shot': 11544, 'coupling': 11545, 'disgracefully': 11546, 'circuit': 11547, \"morvern's\": 11548, 'valedictory': 11549, 'bargain': 11550, 'fathers': 11551, 'sons': 11552, 'bonds': 11553, 'received': 11554, \"dad's\": 11555, 'shrewd': 11556, 'abroad': 11557, 'avengers': 11558, 'easter-egg-colored': 11559, 'rejected': 11560, \"cox's\": 11561, 'unorthodox': 11562, 'visualizing': 11563, \"nijinsky's\": 11564, 'diaries': 11565, 'kramer': 11566, 'guest': 11567, '[je-gyu': 11568, 'lyricism': 11569, 'limerick': 11570, 'scrawled': 11571, 'restroom': 11572, 'smitten': 11573, 'troubadour': 11574, 'acolytes': 11575, 'cinematically': 11576, 'live-style': 11577, 'dishes': 11578, 'ton': 11579, 'coppola': 11580, 'cq': 11581, 'mana': 11582, \"hors-d'oeuvre\": 11583, 'feast': 11584, 'thumbing': 11585, 'densest': 11586, 'distillation': 11587, \"roberts'\": 11588, 'verve': 11589, 'soar': 11590, 'couch': 11591, 'freud': 11592, '88': 11593, 'preteen': 11594, 'unforgivingly': 11595, 'everyday': 11596, 'arduous': 11597, 'domineering': 11598, \"mother's\": 11599, 'slides': 11600, 'macho': 11601, 'assert': 11602, 'completed': 11603, 'crummy': 11604, 'wannabe-hip': 11605, 'refers': 11606, 'incessantly': 11607, 'dudsville': 11608, 'journalistic': 11609, 'expedience': 11610, 'weighty': 11611, 'childish': 11612, 'prowess': 11613, 'smoothes': 11614, 'uncovers': 11615, 'windup': 11616, 'dislike': 11617, 'influences': 11618, 'provoking': 11619, 'begun': 11620, 'bronze': 11621, 'definitions': 11622, \"'time\": 11623, \"waster'\": 11624, 'sweet-and-sour': 11625, 'insider': 11626, 'gelati': 11627, 'schmidt': 11628, 'lear': 11629, 'graceless': 11630, 'plate': 11631, 'placement': 11632, 'caved': 11633, 'inflection': 11634, 'timid': 11635, 'twentieth': 11636, 'bones': 11637, 'underground': 11638, 'species': 11639, '20-year-old': 11640, 'freeway': 11641, 'likes': 11642, 'distinguishes': 11643, 'randall': 11644, 'distinguishing': 11645, 'unforced': 11646, 'natural-seeming': 11647, 'shakes': 11648, 'morally': 11649, 'good-for-you': 11650, 'accompanies': 11651, 'nascent': 11652, 'industrialized': 11653, 'specifics': 11654, 'expressly': 11655, 'idiots': 11656, 'sewage': 11657, 'shovel': 11658, 'gullets': 11659, 'simulate': 11660, 'sustenance': 11661, 'imaginatively': 11662, 'antic': 11663, 'complexly': 11664, 'well-written': 11665, 'questioning': 11666, 'ensnaring': 11667, 'invented': 11668, 'improbabilities': 11669, 'rose-colored': 11670, 'temper': 11671, \"could've\": 11672, 'impacting': 11673, 'unravels': 11674, \"[woo's]\": 11675, 'seeping': 11676, 'kazmierski': 11677, 'methamphetamines': 11678, 'lighted': 11679, 'inquiries': 11680, 'redeemable': 11681, 'topical': 11682, 'flawless': 11683, 'setup': 11684, 'flattening': 11685, 'swamped': 11686, 'invited': 11687, 'soiree': 11688, 'morsels': 11689, 'reviewing': 11690, 'obscurities': 11691, 'slam-bam': 11692, 'critic': 11693, 'smacks': 11694, 'solemnity': 11695, 'overworked': 11696, \"eastwood's\": 11697, \"lampoon's\": 11698, 'aim': 11699, 'closely': 11700, 'tomcats': 11701, \"moviemaker's\": 11702, 'half-naked': 11703, 'lumbering': 11704, 'load': 11705, 'ja': 11706, 'rule': 11707, 'kurupt': 11708, 'benefitted': 11709, '[soderbergh]': 11710, 'italics': 11711, 'trust': 11712, 'brusqueness': 11713, 'sabotages': 11714, 'juncture': 11715, 'numbingly': 11716, 'unease': 11717, 'ball-and-chain': 11718, 'pode': 11719, 'at�': 11720, 'ser': 11721, 'divertido': 11722, 'cativante': 11723, 'mas': 11724, 'representando': 11725, 'passo': 11726, 'vai': 11727, 'na': 11728, 'contr�ria': 11729, 'evolu��o': 11730, 'dos': 11731, 'musicais': 11732, 'time-travel': 11733, 'willful': 11734, 'single-mindedness': 11735, 'efficiently': 11736, 'buddy': 11737, 'par': 11738, 'video-viewing': 11739, 'actioner': 11740, 'panther': 11741, 'and/or': 11742, 'sailor': 11743, 'consummate': 11744, 'cuaron': 11745, 'mournful': 11746, 'good-time': 11747, 'leaning': 11748, 'badly-rendered': 11749, 'pan-american': 11750, 'swipes': 11751, 'bambi': 11752, \"lucy's\": 11753, 'seizing': 11754, \"george's\": 11755, 'haplessness': 11756, 'tics': 11757, \"[sam's]\": 11758, 'self-flagellation': 11759, 'seeming': 11760, 'reassuringly': 11761, \"michell's\": 11762, 'tick-tock': 11763, 'yelling': 11764, 'mastering': 11765, 'formidable': 11766, 'cameras': 11767, 'articulates': 11768, 'flood': 11769, 'formed': 11770, '[attal': 11771, \"gainsbourg's]\": 11772, 'personas': 11773, 'quaint': 11774, 'typically': 11775, 'concocts': 11776, \"draggin'\": 11777, 'voyage': 11778, 'under-12': 11779, 'lovably': 11780, 'flaky': 11781, 'bizarrely': 11782, 'oddballs': 11783, 'quizzical': 11784, 'mais': 11785, 'momento': 11786, 'inspirado': 11787, 'fincher': 11788, 'trimming': 11789, 'grumbling': 11790, 'grub': 11791, 'satirical': 11792, 'two-dimensional': 11793, 'somnambulant': 11794, 'outbursts': 11795, 'senegalese': 11796, 'updating': 11797, 'djeinaba': 11798, 'diop': 11799, 'gai': 11800, 'montied': 11801, 'bernard': 11802, 'rose': 11803, 'funky': 11804, 'artificiality': 11805, 'solipsistic': 11806, \"evans'\": 11807, 'actorly': 11808, 'boundary-hopping': 11809, 'formal': 11810, 'innovations': 11811, \"'cultural\": 11812, 'well-shot': 11813, 'zinger-filled': 11814, 'elvis': 11815, 'chewing': 11816, 'blubber': 11817, 'acquired': 11818, 'anchor': 11819, 'meekly': 11820, 'wince-inducing': 11821, 'thrift-shop': 11822, 'prosthetic': 11823, 'putty': 11824, 'kmart': 11825, 'blue-light-special': 11826, 'conspire': 11827, 'trekkie': 11828, 'loyalty': 11829, '1954': 11830, 'shelved': 11831, 'repackaged': 11832, \"plympton's\": 11833, 'legion': 11834, '80': 11835, \"'baran\": 11836, 'unclear': 11837, 'undertaken': 11838, 'nonjudgmentally': 11839, \"wiseman's\": 11840, 'schools': 11841, 'hospitals': 11842, 'courts': 11843, 'welfare': 11844, 'beware': 11845, 'brit-com': 11846, 'tediously': 11847, 'murderous': 11848, 'maids': 11849, 're-do': 11850, 'ironically': 11851, 'railing': 11852, 'seventy-minute': 11853, 'jon': 11854, \"purdy's\": 11855, 'sledgehammer': 11856, 'cuddly': 11857, '1999': 11858, 'pre-shooting': 11859, 'guidelines': 11860, 'cleverer': 11861, 'finished': 11862, 'retard': 11863, '2-day': 11864, 'coke': 11865, 'bmw': 11866, '�an': 11867, 'adorably': 11868, 'twinkle': 11869, 'entrance': 11870, 'exam': 11871, 'caton-jones': 11872, 'cookie-cutter': 11873, 'cut-and-paste': 11874, 'ploughing': 11875, 'furrow': 11876, 'auspicious': 11877, 'majority-oriented': 11878, 'liable': 11879, 'unnerve': 11880, 'mixed-up': 11881, 'presuppose': 11882, 'bigotry': 11883, 'zealous': 11884, 'nuttiness': 11885, 'antagonists': 11886, 'impartiality': 11887, 'skippable': 11888, 'hayseeds-vs': 11889, '-greaseballs': 11890, 'action-comedy': 11891, 'funny--not': 11892, 'ha': 11893, 'circus': 11894, 'performer': 11895, 'ideal': 11896, 'intolerant': 11897, 'adorned': 11898, 'governmental': 11899, 'benefited': 11900, 'portuguese': 11901, 'lieutenant': 11902, 'vampires': 11903, 'clumsily': 11904, 'overshadows': 11905, 'filipino-americans': 11906, 'frantic': 11907, '[ferrera]': 11908, \"reggio's\": 11909, 'dislocation': 11910, 'imamura': 11911, 'enduring': 11912, 'environmental': 11913, 'pollution': 11914, 'surf': 11915, 'thrillingly': 11916, \"'stoked\": 11917, 'windbags': 11918, 'drone': 11919, 'inanely': 11920, 'cacophony': 11921, 'meaningless': 11922, 'prattle': 11923, \"morrissette's\": 11924, 'signify': 11925, 'libretto': 11926, 'ideally': 11927, 'pleasurably': 11928, 'jacked-up': 11929, 'brainy': 11930, 'suffocation': 11931, 'indulgence': 11932, \"bullock's\": 11933, 'thrill-kill': 11934, 'cat-and-mouser': 11935, 'paint-by-numbers': 11936, 'brat': 11937, 'cho': 11938, 'brio': 11939, \"godard's\": 11940, 'wonderment': 11941, 'rambling': 11942, 'manifesto': 11943, 'vagueness': 11944, 'exasperating': 11945, 'spied': 11946, 'notch': 11947, 'renegade-cop': 11948, 'underdog': 11949, 'christmas-tree': 11950, 'flocking': 11951, 'spray': 11952, 'dot': 11953, 'modem': 11954, 'disconnects': 11955, 'harnesses': 11956, 'suddenly': 11957, 'burkinabe': 11958, 'dani': 11959, \"kouyate's\": 11960, 'reworking': 11961, '7th-century': 11962, 'traditions': 11963, 'cat-and-mouse': 11964, 'three-dimensional': 11965, 'jeffs': 11966, 'expressiveness': 11967, 'bio-pic': 11968, 'downfall': 11969, 'mill': 11970, 'hype': 11971, 'swamp': 11972, 'thing-type': 11973, 'doubled': 11974, 'deafening': 11975, 'panic': 11976, 'sucking': 11977, 'in�and': 11978, 'lumpish': 11979, 'cipher': 11980, 'kjell': 11981, 'bjarne': 11982, \"na�f's\": 11983, 'wewannour': 11984, 'duel': 11985, 'mistaken-identity': 11986, 'film-culture': 11987, 'referential': 11988, 'jacobi': 11989, 'fluent': 11990, 'writings': 11991, 'perform': 11992, 'erotically': 11993, 'dullingly': 11994, 'pooper-scoopers': 11995, '20th': 11996, 'cameo': 11997, 'roundelay': 11998, 'partners': 11999, 'partnerships': 12000, 'gator-bashing': 12001, 'contando': 12002, 'premissa': 12003, 'curiosa': 12004, 'mergulha': 12005, 'espectador': 12006, 'clima': 12007, 'culminando': 12008, 'desfecho': 12009, 'certamente': 12010, 'fica': 12011, 'mem�ria': 12012, 'fifteen-minute': 12013, 'vapid': 12014, 'crock': 12015, 'sheen': 12016, 'grueling': 12017, 'time-consuming': 12018, 'overused': 12019, 'rustic': 12020, 'hidden': 12021, \"koury's\": 12022, 'passive': 12023, 'yield': 12024, 'fudged': 12025, 'gigantic': 12026, 'lunar': 12027, 'mission': 12028, 'heathers': 12029, 'moldy': 12030, 'forest': 12031, 'chuck': 12032, 'norris': 12033, 'occurs': 12034, 'indication': 12035, 'serious-minded': 12036, 'score�': 12037, 'bond-inspired': 12038, 'jesus': 12039, \"[washington's]\": 12040, 'keen': 12041, 'reflected': 12042, 'fly-on-the-wall': 12043, 'method': 12044, 'departure': 12045, 'docu-makers': 12046, 'visible': 12047, 'iditarod': 12048, 'lasts': 12049, 'threw': 12050, 'equipment': 12051, \"aisle's\": 12052, 'walker': 12053, 'anchored': 12054, 'abbass': 12055, 'satin': 12056, 'rouge': 12057, 'self-actualization': 12058, 'continental': 12059, 'divides': 12060, 'high-profile': 12061, 'unprepared': 12062, 'underdeveloped': 12063, 'conveyor': 12064, 'drowsy': 12065, 'infatuated': 12066, 'self-examination': 12067, 'spurts': 12068, 'clicks': 12069, 'four-hour': 12070, 'cricket': 12071, 'rerun': 12072, 'lock': 12073, 'ugliest': 12074, 'wesley': 12075, 'suppose': 12076, 'picture-perfect': 12077, 'gave': 12078, 'gender-bending': 12079, 'mazel': 12080, 'tov': 12081, \"family's\": 12082, 'sleep-inducingly': 12083, 'slow-paced': 12084, 'phoney-feeling': 12085, 'overly-familiar': 12086, 'disparate': 12087, 'four-legged': 12088, 'herbivore': 12089, 'rings': 12090, 'fees': 12091, 'artistry': 12092, 'errs': 12093, 'skeletons': 12094, 'memory-as-identity': 12095, 'obviation': 12096, 'intermittent': 12097, 'reaffirming': 12098, 'long-held': 12099, 'illusions': 12100, 'erasing': 12101, 'recasts': 12102, 'comprehensive': 12103, 'boundaries': 12104, \"rubbo's\": 12105, 'humorously': 12106, 'tendentious': 12107, 'intervention': 12108, 'who-wrote-shakespeare': 12109, 'narcissists': 12110, 'compete': 12111, \"others'\": 12112, 'affections': 12113, 'non-reactionary': 12114, 'decided': 12115, \"jesus'\": 12116, 'circularity': 12117, 'indicated': 12118, 'never-ending': 12119, 'confusion': 12120, 'grossly': 12121, 'statham': 12122, 'crime-land': 12123, 'cheap-shot': 12124, 'servicable': 12125, 'perspectives': 12126, 'ideological': 12127, 'returned': 12128, 'warn': 12129, 'arguably': 12130, 'silliest': 12131, 'meager': 12132, 'boost': 12133, 'humourless': 12134, 'lux': 12135, 'eighties': 12136, 'narrator': 12137, 'grandmother': 12138, 'gilliam-esque': 12139, 'ecclesiastes': 12140, 'challenge-hungry': 12141, 'schnieder': 12142, 'bounces': 12143, 'wrists': 12144, 'wearing': 12145, 'tummy': 12146, 'tops': 12147, 'huggers': 12148, 'twirling': 12149, 'finger': 12150, 'pander': 12151, 'basest': 12152, 'desires': 12153, 'deliberately': 12154, 'devotedly': 12155, 'pin-like': 12156, 'recreation': 12157, 'whirls': 12158, 'twirls': 12159, 'fog': 12160, 'ashes': 12161, 'compiled': 12162, 'minus': 12163, \"programs'\": 12164, 'slickness': 12165, 'sophistication': 12166, \"holofcener's\": 12167, 'chick-flicks': 12168, 'treating': 12169, 'follies': 12170, 'mocking': 12171, 'staple': 12172, 'programming': 12173, 'pointlessness': 12174, 'monsterous': 12175, 'walking': 12176, 'satisfied': 12177, 'humiliated': 12178, 'spies': 12179, 'ecks': 12180, 'sever': 12181, 'deer': 12182, 'overrides': 12183, 'vicarious': 12184, 'densely': 12185, 'skimpy': 12186, 'b-grade': 12187, \"tv's\": 12188, 'defunct': 12189, 'cleopatra': 12190, '2525': 12191, 'mar': 12192, 'dog-tag': 12193, 'm-16': 12194, 'dog-paddle': 12195, 'tv-movie': 12196, 'detailing': 12197, 'playwright': 12198, 'poet': 12199, 'drinker': 12200, \"bow's\": 12201, 'court': 12202, 'heartstring': 12203, 'untugged': 12204, 'unplundered': 12205, 'enjoys': 12206, 'personally': 12207, 'implies': 12208, 'unbalanced': 12209, 'interludes': 12210, 'presumes': 12211, 'premises': 12212, 'backs': 12213, 'commodity': 12214, 'bigger-than-life': 12215, 'two-bit': 12216, 'remembers': 12217, '1934': 12218, 'victor': 12219, 'blush': 12220, 'fresh-squeezed': 12221, 'blighter': 12222, 'dysfunction': 12223, 'comforting': 12224, 'marmite': 12225, 'crackers': 12226, 'bleakness': 12227, 'birds': 12228, 'carried': 12229, 'reactionary': 12230, 'greengrass': 12231, \"mullan's\": 12232, 'forgoes': 12233, 'socio-political': 12234, 'northern': 12235, 'favour': 12236, 'pulsating': 12237, \"carlen's\": 12238, 'rat': 12239, 'burger': 12240, \"rock's\": 12241, 'makings': 12242, 'internet': 12243, 'energies': 12244, 'shocker': 12245, 'straight-faced': 12246, 'lighten': 12247, 'balzac': 12248, 'seamstress': 12249, \"[moore's]\": 12250, 'fingering': 12251, 'solutions': 12252, 'scratches': 12253, \"neorealism's\": 12254, 'aggrieved': 12255, 'unturned': 12256, 'goggles': 12257, 'conception': 12258, 'munchausen-by-proxy': 12259, 'mum': 12260, 'punish': 12261, 'adore': 12262, 'kilted': 12263, 'out-of-kilter': 12264, 'rambles': 12265, 'genre-curling': 12266, 'revives': 12267, 'free-wheeling': 12268, 'berlin': 12269, 'anarchists': 12270, 'futures': 12271, 'children--and': 12272, 'mothers': 12273, 'interests': 12274, 'melding': 12275, 'timelessness': 12276, 'mulan': 12277, 'tarzan': 12278, 'watercolor': 12279, 'dumbo': 12280, 'patriot': 12281, 'morgen': 12282, 'nanette': 12283, 'biographical': 12284, 'fantasia': 12285, \"'ejemplo\": 12286, 'importa': 12287, 'talento': 12288, 'reparto': 12289, 'interesante': 12290, 'pudo': 12291, 'haber': 12292, 'resultado': 12293, 'premisa': 12294, 'pues': 12295, 'francamente': 12296, 'aburrido': 12297, 'momentos': 12298, 'deplorable': 12299, 'bastard': 12300, 'well-executed': 12301, 'spy-thriller': 12302, 'established': 12303, 'died': 12304, 'no-bull': 12305, 'throwback': 12306, 'zips': 12307, 'adding': 12308, 'go-for-broke': 12309, 'heralds': 12310, 'laborious': 12311, 'whine': 12312, 'bellyaching': 12313, 'paranoid': 12314, 'under-inspired': 12315, 'zigzag': 12316, 'granddad': 12317, 'jean-luc': 12318, 'baffle': 12319, 'hide-and-seek': 12320, 'dulled': 12321, 'senses': 12322, 'recreational': 12323, 'guzm�n': 12324, 'frustratingly': 12325, \"pinochet's\": 12326, 'orchestrates': 12327, 'glows': 12328, 'conniving': 12329, 'duration': 12330, 'schedule': 12331, 'input': 12332, 'executives': 12333, 'welles': 12334, 'splitting': 12335, \"great-grandson's\": 12336, 'determine': 12337, 'assess': 12338, 'engineering': 12339, \"obsessive-compulsive's\": 12340, \"white's\": 12341, \"lanie's\": 12342, 'driven': 12343, 'richest': 12344, 'mick': 12345, 'visionary': 12346, 'boast': 12347, 'sexist': 12348, 'snuck': 12349, 'shmear': 12350, 'releases': 12351, 'doltish': 12352, 'uneventful': 12353, 'skunk': 12354, 'odor': 12355, 'ambitions': 12356, 'unclean': 12357, 'booty': 12358, 'binoche': 12359, 'chief': 12360, '[dong]': 12361, 'valiant': 12362, 'riled': 12363, \"'compleja\": 12364, 'intelectualmente': 12365, 'retadora': 12366, 'ladr�n': 12367, 'orqu�deas': 12368, 'esos': 12369, 'filmes': 12370, 'precisamente': 12371, 'originalidad': 12372, 'guilt-suffused': 12373, 'crippled': 12374, 'aftertaste': 12375, 'operational': 12376, 'lip-synching': 12377, 'sings': 12378, \"'should\": 12379, 'intimately': 12380, '[shyamalan]': 12381, 'goose-pimple': 12382, 'bruised': 12383, 'wang': 12384, 'xiaoshuai': 12385, 'well-realized': 12386, 'embroils': 12387, 'descends': 12388, 'sub-tarantino': 12389, 'spanning': 12390, 'camaraderie': 12391, 'holly': 12392, 'marina': 12393, 'tick': 12394, 'continue': 12395, 'imperfect': 12396, 'love-hate': 12397, 'pleases': 12398, 'delicacy': 12399, 'financial': 12400, 'extortion': 12401, 'beau': 12402, 'travil': 12403, 'nenette': 12404, 'et': 12405, 'boni': 12406, 'prepare': 12407, 'perverted': 12408, 'sex-soaked': 12409, 'riff': 12410, 'receive': 12411, 'inability': 12412, \"'interesante\": 12413, 'disfrutable': 12414, 'trabajo': 12415, 'gracias': 12416, 'prescinde': 12417, 'cl�sico': 12418, 'elemento': 12419, 'estadounidense': 12420, 'patriotero': 12421, 'manipulador': 12422, 'resemble': 12423, 'soft-core': 12424, \"'red\": 12425, 'shoe': 12426, 'intentioned': 12427, 'snoozer': 12428, 'slack': 12429, 'complacency': 12430, \"[godard's]\": 12431, 'tinny': 12432, 'self-righteousness': 12433, 'nadia': 12434, 'mail-order': 12435, 'kittenish': 12436, 'accumulates': 12437, 'else-': 12438, \"humor�it's\": 12439, 'hairy': 12440, 'too-tepid': 12441, 'front-loaded': 12442, 'shapely': 12443, '1990': 12444, 'flee': 12445, 'avenues': 12446, 'discourse': 12447, 'insignificant': 12448, 'lessons': 12449, 't-shirt': 12450, 'shower': 12451, 'fleshed': 12452, 'fill-in-': 12453, 'the-blanks': 12454, 'cornpone': 12455, 'cosa': 12456, 'nostra': 12457, 'well-timed': 12458, 'numbing': 12459, 'fudges': 12460, 'confidence': 12461, 'purer': 12462, 'conditioning': 12463, 'gamut': 12464, 'shiver': 12465, 'bowling': 12466, 'columbine': 12467, 'tense': 12468, 'soppy': 12469, 'perpetrators': 12470, 'torn': 12471, 'dingoes': 12472, 'dentist': 12473, 'drill': 12474, 'consideration': 12475, 'fatherhood': 12476, \"seagal's\": 12477, 'uwe': 12478, 'boll': 12479, 'slapping': 12480, 'highs': 12481, 'sorrowful': 12482, 'lows': 12483, 'impulsive': 12484, 'niches': 12485, 'humbuggery': 12486, 'marvelously': 12487, 'shapes': 12488, 'satan': 12489, 'firing': 12490, 'r&d': 12491, '24/7': 12492, 'surefire': 12493, 'beloved': 12494, 'cheery': 12495, 'pollyana': 12496, 'norma': 12497, 'rae': 12498, 'b�ttner': 12499, 'intractable': 12500, 'irreversible': 12501, 'pender': 12502, 'folksy': 12503, 'binary': 12504, 'oppositions': 12505, 'demeaning': 12506, 'weiss': 12507, 'speck': 12508, 'relevance': 12509, '20th-century': 12510, 'footnotes': 12511, 'snake-down-the-throat': 12512, 'inevitable': 12513, 'outrunning': 12514, 'fireball': 12515, 'entranced': 12516, 'sporting': 12517, 'spontaneity': 12518, 'hippopotamus': 12519, 'ballerina': 12520, \"mctiernan's\": 12521, 'botched': 12522, 'norman': 12523, \"jewison's\": 12524, 'ultraviolent': 12525, 'corporate-sports': 12526, 'stupider': 12527, \"passe'\": 12528, 'chopsocky': 12529, 'rainy': 12530, 'disintegration': 12531, 'must-see': 12532, 'dodges': 12533, 'screenful': 12534, 'steadfast': 12535, 'hoity-toity': 12536, 'convictions': 12537, 'medal': 12538, 'third-person': 12539, 'madame': 12540, 'refer': 12541, \"'jackie'\": 12542, \"'special\": 12543, \"effects'\": 12544, 'objects': 12545, 'besotted': 12546, 'misbegotten': 12547, 'naturally': 12548, 'passivity': 12549, 'jokester': 12550, 'dead-eyed': 12551, 'pascale': 12552, \"bailly's\": 12553, 'rom-com': 12554, \"am�lie's\": 12555, 'tautou': 12556, 'fabuleux': 12557, 'destin': 12558, 'tu': 12559, 'mam�': 12560, 'tambi�n': 12561, 'buen': 12562, 'poco': 12563, 'convencional': 12564, 'narrativa': 12565, 'quiz�': 12566, 'proyecto': 12567, 'arriesgado': 12568, 'alfonso': 12569, 'cuar�n': 12570, 'p': 12571, 'mounts': 12572, 'skateboards': 12573, 'motorcycles': 12574, 'splashed': 12575, 'weirded-': 12576, 'community-therapy': 12577, 'gutterball': 12578, 'significantly': 12579, '97': 12580, '[p]artnering': 12581, 'tv-cops': 12582, 'confounding': 12583, 'solemnly': 12584, 'advances': 12585, 'barris': 12586, 'cope': 12587, 'pesky': 12588, 'niftiest': 12589, 'perpetrated': 12590, 'alchemical': 12591, 'transmogrification': 12592, 'austen--and': 12593, 'hollywood-ized': 12594, 'austen': 12595, 'rubbo': 12596, 'startle': 12597, 'stifled': 12598, 'prevalence': 12599, 'fast-forward': 12600, 'stringently': 12601, 'task': 12602, 'entered': 12603, '50-something': 12604, 'lovebirds': 12605, 'philibert': 12606, 'observes': 12607, 'one-room': 12608, 'schoolhouse': 12609, 'barbed': 12610, 'poo-poo': 12611, \"'edgy\": 12612, 'mind-bender': 12613, 'moat': 12614, 'reached': 12615, 'expiration': 12616, 'venezuelans': 12617, 'muy': 12618, 'loco': 12619, '1953': 12620, 'geriatric': 12621, 'baird': 12622, 'editor': 12623, 'excessively': 12624, 'underconfident': 12625, \"'old\": 12626, \"neighborhood'\": 12627, 'romanced': 12628, 'cyndi': 12629, 'lauper': 12630, 'opportunists': 12631, 'shapable': 12632, 'pseudo-rock-video': 12633, 'frames': 12634, 'roads': 12635, 'prepubescent': 12636, \"spears'\": 12637, 'movie-starring': 12638, 'impatiently': 12639, 'squinting': 12640, \"nalin's\": 12641, 'practitioners': 12642, 'jealous': 12643, 'net': 12644, 'girl-on-girl': 12645, 'one-of-a-kind': 12646, 'near-masterpiece': 12647, 'literarily': 12648, 'billing': 12649, 'burke': 12650, 'horns': 12651, 'offend': 12652, 'possessed': 12653, 'gas': 12654, 'mischievous': 12655, 'irreparable': 12656, 'costly': 12657, 'fix': 12658, '-�': 12659, 'frisky': 12660, 'exporing': 12661, 'walks': 12662, 'gait': 12663, 'subdues': 12664, 'tartly': 12665, 'doctorate': 12666, '�it': 12667, 'film�it': 12668, 'amoses': 12669, 'andys': 12670, 'howlingly': 12671, 'campy': 12672, \"brooks'\": 12673, 'borscht': 12674, 'schtick': 12675, 'middles': 12676, 'wide-ranging': 12677, 'media': 12678, 'reporting': 12679, 'hatfield': 12680, 'hicks': 12681, 'rendering': 12682, 'stab': 12683, 'fishing': 12684, 'lovers': 12685, 'sandrine': 12686, 'goats': 12687, 'sunset': 12688, \"2002's\": 12689, 'sweeping': 12690, 'reinvigorated': 12691, 'well-trod': 12692, 'usher': 12693, 'cria': 12694, 'espet�culo': 12695, 'possui': 12696, 'alma': 12697, 'esteticamente': 12698, 'belo': 12699, 'emocionalmente': 12700, 'frio': 12701, 'unpersuasive': 12702, 'evolving': 12703, 'abysmal': 12704, 'by-the-books': 12705, 'sprinklings': 12706, 'intentional': 12707, 'intelligible': 12708, 'treatises': 12709, 'orchestrate': 12710, 'cohesive': 12711, 'brush': 12712, 'undernourished': 12713, 'indicate': 12714, 'luck': 12715, 'misunderstanding': 12716, \"marivaux's\": 12717, 'mira': 12718, \"sorvino's\": 12719, 'limitations': 12720, \"spain's\": 12721, 'wattage': 12722, 'relevancy': 12723, \"[scorsese's\": 12724, 'streets]': 12725, 'multiple': 12726, 'well-paced': 12727, 'movie-esque': 12728, 'affected': 12729, 'pub': 12730, 'unguarded': 12731, 'pre-credit': 12732, \"'back\": 12733, 'shticks': 12734, 'misery': 12735, 'voyeuristic': 12736, 'consumed': 12737, '75-minute': 12738, 'sample': 12739, 'rubbish': 12740, 'bias': 12741, 'temptingly': 12742, 'penance': 12743, 'paymer': 12744, \"bartleby's\": 12745, \"'are\": 12746, 'searing': 12747, 'faulty': 12748, 'takeoff': 12749, 'crimen': 12750, 'padre': 12751, 'amaro': 12752, 'rally': 12753, 'anti-catholic': 12754, 'protestors': 12755, 'greased': 12756, 'dwell': 12757, 'burdened': 12758, 'accessibility': 12759, '12-year-old': 12760, 'roughshod': 12761, 'workable': 12762, \"region's\": 12763, '10th-grade': 12764, \"berry's\": 12765, 'movie--visually': 12766, 'unattractive': 12767, 'nutty': 12768, 'sarc�stica': 12769, 'divertida': 12770, 'demencial': 12771, 'predecesora': 12772, 'ejemplo': 12773, 'entretenimiento': 12774, 'puro': 12775, 'complejos': 12776, 'padded': 12777, 'jelly': 12778, 'full-frontal': 12779, 'jir�': 12780, \"hubac's\": 12781, 'silberstein': 12782, 'attached': 12783, \"espn's\": 12784, 'teenybopper': 12785, 'scandalous': 12786, 'high-strung': 12787, 'flaccid': 12788, 'tighter': 12789, 'editorial': 12790, 'firmer': 12791, 'idling': 12792, \"michele's\": 12793, 'quests': 12794, 'backed': 12795, 'showgirls>': 12796, 'symbols': 12797, 'float': 12798, 'styx': 12799, 'bees': 12800, 'chop': 12801, 'suey': 12802, 'digital-video': 12803, 'comedians': 12804, 'pairing': 12805, 'clayburgh': 12806, 'tambor': 12807, 'clownish': 12808, 'x-men': 12809, \"mccann's\": 12810, 'strikingly': 12811, 'devious': 12812, 'depressingly': 12813, 'exhaustingly': 12814, 'masochistic': 12815, 'slave': 12816, 'placid': 12817, '[as': 12818, 'monty]': 12819, 'steak': 12820, 'incarnation': 12821, 'raffish': 12822, 'intellect': 12823, 'theological': 12824, 'tongues': 12825, 'fundamentally': 12826, 'implosion': 12827, 'hit-or-miss': 12828, 'spotlights': 12829, 'caste': 12830, 'digit': 12831, 'havoc': 12832, 'cheese': 12833, \"zhang's\": 12834, 'taboo': 12835, 'reliance': 12836, 'lessen': 12837, 'inequities': 12838, 'penalty': 12839, 'immorality': 12840, 'administration': 12841, 'misperception': 12842, \"'tobey\": 12843, 'poster': 12844, 'geek': 12845, 'tailor': 12846, 'amusements': 12847, 'russos': 12848, 'ephemeral': 12849, 'inescapably': 12850, 'skyscraper-trapeze': 12851, 'examples': 12852, 'anytime': 12853, 'edges': 12854, 'tenth': 12855, '6-year-old': 12856, 'nephew': 12857, 'uncles': 12858, 'congrats': 12859, 'reawaken': 12860, 'assassination': 12861, 'remembrance': 12862, 'arteta': 12863, 'dehumanizing': 12864, 'ego-destroying': 12865, 'kosashvili': 12866, 'kindred': 12867, '146': 12868, 'modeled': 12869, 'revenge-of-the-nerds': 12870, 'dredge': 12871, 'scrap': 12872, 'darkest': 12873, 'underneath': 12874, 'plunging': 12875, 'preciously': 12876, 'interwoven�': 12877, 'intermingling': 12878, 'positions': 12879, 'watstein': 12880, 'handily': 12881, \"screenplay's\": 12882, 'sappier': 12883, \"hook's\": 12884, 'assuredness': 12885, 'first-timer': 12886, 'under-rehearsed': 12887, 'ghastly': 12888, 'stylishness': 12889, 'griping': 12890, 'buddies': 12891, 'garry': 12892, 'shandling': 12893, 'colin': 12894, 'quinn': 12895, \"palma's\": 12896, 'notting': 12897, 'affirms': 12898, 'companionship': 12899, 'rapport': 12900, 'h�l�ne': 12901, 'angel': 12902, 'furry': 12903, 'lapdance': 12904, 'amuse-bouche': 12905, 'whetted': 12906, 'portent-heavy': 12907, 'spellbinding': 12908, 'rootlessness': 12909, 'experienced': 12910, 'vicente': 12911, 'aranda': 12912, 'obsessive': 12913, 'melodic/': 12914, 'musketeers': 12915, 'genius': 12916, 'dreamscape': 12917, 'flirts': 12918, 'kitsch': 12919, 'concentration': 12920, \"tarkovsky's\": 12921, 'patriarchal': 12922, 'debating': 12923, 'societies': 12924, 'stormy': 12925, 'maladjusted': 12926, 'narcotized': 12927, 'josh': 12928, 'lying': 12929, 'cheating': 12930, 'betray': 12931, 'albeit': 12932, 'sheets': 12933, 'concepts': 12934, 'dreaming': 12935, 'dicey': 12936, 'gloomy': 12937, 'gusto': 12938, 'commended': 12939, 'determination': 12940, 'adopt': 12941, 'dulls': 12942, 'cuba': 12943, 'valiantly': 12944, 'boisterous': 12945, 'overexposed': 12946, \"1950's\": 12947, 'doris': 12948, \"'til\": 12949, 'fades': 12950, 'colorfully': 12951, 'kitschy': 12952, 'lightness': 12953, 'strictness': 12954, 'sidekicks': 12955, 'much-needed': 12956, 'levity': 12957, 'wispy': 12958, 'stepmom': 12959, 'pep-talk': 12960, 'charity': 12961, 'clink': 12962, 'stroked': 12963, 'luridly': 12964, 'coloured': 12965, 'uni-dimensional': 12966, 'strokes': 12967, 'eyeballs': 12968, 'evaporates': 12969, 'mist': 12970, \"frodo's\": 12971, 'unfulfilled': 12972, 'hardy': 12973, 'zealanders': 12974, 'mettle': 12975, 'savory': 12976, 'sillier': 12977, 'cuter': 12978, 'torpor': 12979, 'cathartic': 12980, 'embellishment': 12981, 'stubbornly': 12982, 'refused': 12983, 'fuse': 12984, \"'woods'\": 12985, 'bolly-holly': 12986, 'parlance': 12987, \"shreve's\": 12988, \"'lick\": 12989, 'springboard': 12990, '[reno]': 12991, 'flag': 12992, 'potshots': 12993, 'bush': 12994, 'laugh-free': 12995, 'lecture': 12996, 'vertical': 12997, 'limit': 12998, 'downtime': 12999, 'wifty': 13000, 'affairs': 13001, 'refined': 13002, 'imbued': 13003, 'ballsy': 13004, 'settles': 13005, 'portentous': 13006, 'titled': 13007, 'heavy-handedness': 13008, \"cusack's\": 13009, 'bridget': 13010, \"jones'\": 13011, 'diary': 13012, 'kumble': 13013, 'counter': 13014, 'crudity': 13015, 'holding': 13016, \"'laugh\": 13017, \"therapy'\": 13018, \"'analyze\": 13019, 'ebb': 13020, 'cigarette': 13021, 'smoke': 13022, 'wreak': 13023, 'miscast': 13024, 'softly': 13025, \"so-bad-it's-good\": 13026, 'verdu': 13027, 'mourns': 13028, \"'laughing\": 13029, \"at'\": 13030, 'iraqi': 13031, 'contacts': 13032, \"'hosts'\": 13033, \"'guests\": 13034, 'directionless': 13035, 'techno-saturation': 13036, 'serviceable': 13037, 'euro-trash': 13038, 'handguns': 13039, 'bmws': 13040, 'chateaus': 13041, 'sleekly': 13042, 'professionalism': 13043, 'letdown': 13044, \"yesterday's\": 13045, 'sacrifice': 13046, 'epilogue': 13047, 'post-soviet': 13048, 'russia': 13049, 'induces': 13050, 'headaches': 13051, 'cultivated': 13052, 'reconciled': 13053, 'candidly': 13054, '[jones]': 13055, 'staging': 13056, 'slow-moving': 13057, 'police-procedural': 13058, 'lukewarm': 13059, 'boris': 13060, 'von': 13061, 'sychowski': 13062, 'conjures': 13063, 'surrealist': 13064, 'stepped': 13065, 'bu�uel': 13066, 'retrospective': 13067, 'demonic': 13068, 'doings': 13069, 'bus': 13070, 'oozes': 13071, \"it'll\": 13072, 'awake': 13073, 'researchers': 13074, 'sympathize': 13075, 'wells': 13076, \"kin's\": 13077, 'reworked': 13078, \"'it\": 13079, 'sonny': 13080, 'capacity': 13081, 'apex': 13082, 'misunderstood': 13083, 'hypertime': 13084, 'reverse': 13085, 'sanctimonious': 13086, 'towards': 13087, 'enthusiasms': 13088, 'fetishistic': 13089, 'refreshes': 13090, 'zest': 13091, 'trusting': 13092, 'audacity': 13093, 'monstrous': 13094, 'contact': 13095, 'villain': 13096, 'lint': 13097, 'borg': 13098, \"krige's\": 13099, 'cape': 13100, 'finishes': 13101, 'parsec': 13102, 'generations': 13103, 'punctuated': 13104, 'bloodshed': 13105, \"'alice's\": 13106, \"zombie-land'\": 13107, 'miyazaki': 13108, 'aggrandizing': 13109, 'sacred': 13110, 'gut-buster': 13111, 'evans': 13112, 'self-promotion': 13113, 'dismay': 13114, \"noyce's\": 13115, \"memory's\": 13116, 'compromise': 13117, 'midst': 13118, 'well-nigh': 13119, 'prosaic': 13120, 'sushi': 13121, '1899': 13122, \"city's\": 13123, 'old-world': 13124, 'ahola': 13125, 'spencer': 13126, 'tracy': 13127, 'insecure': 13128, 'excite': 13129, 'churns': 13130, 'flagrantly': 13131, 'thunderstorms': 13132, 'underscore': 13133, 'travesty': 13134, 'transvestite': 13135, 'begs': 13136, 'parodied': 13137, 'aristocrats': 13138, 'conscious': 13139, 'miscasts': 13140, 'affluent': 13141, 'damsel': 13142, 'distress': 13143, 'bully': 13144, 'overdone': 13145, 'treasured': 13146, 'variations': 13147, 'aan': 13148, 'smoking': 13149, 'weighted': 13150, 'uninvolving': 13151, 'crammed': 13152, 'amalgamating': 13153, 'not-so-stock': 13154, 'occasions': 13155, 'yammering': 13156, 'unsure': 13157, 'wreckage': 13158, 'battlefield': 13159, 'showgirls': 13160, 'embarrassing': 13161, 'glitter': 13162, 'ruthlessly': 13163, 'pained': 13164, 'depraved': 13165, 'constrictive': 13166, 'eisenhower': 13167, 'tranquil': 13168, 'titans': 13169, 'snappy': 13170, 'theron': 13171, 'deteriorates': 13172, 'protracted': 13173, 'borderline': 13174, 'iota': 13175, 'hunk': 13176, 'petri': 13177, 'well-characterized': 13178, 'telephone': 13179, 'challenged': 13180, 'keening': 13181, 'self-mutilating': 13182, 'sideshow': 13183, 'dispatching': 13184, 'guessed': 13185, 'fuddy-duddy': 13186, 'president': 13187, 'single-handedly': 13188, 'plane': 13189, 'journalists': 13190, \"campaign's\": 13191, 'publicity': 13192, 'impulse': 13193, 'lushly': 13194, 'recorded': 13195, 'self-control': 13196, 'redundancy': 13197, 'brazen': 13198, 'stinker': 13199, \"'action\": 13200, \"film'\": 13201, 'stasis': 13202, 'bombing': 13203, 'buildings': 13204, 'unexamined': 13205, 'startlingly': 13206, \"stallone's\": 13207, 'baran': 13208, 'majid': 13209, 'shoe-loving': 13210, 'spoofing': 13211, \"'50's\": 13212, 'cheesiness': 13213, 'raison': 13214, \"d'etre\": 13215, 'fresh-faced': 13216, 'young-guns': 13217, 'mini-mod-madness': 13218, '[t]oo': 13219, 'dismissive': 13220, 'upscale': 13221, '1989': 13222, 'dishonesty': 13223, 'mechanisms': 13224, 'gorefests': 13225, 'connoisseur': 13226, 'neurosis': 13227, 'negativity': 13228, 'danger': 13229, 'enables': 13230, 'navigate': 13231, 'spaces': 13232, 'aplomb': 13233, 'suspenser': 13234, 'wrought': 13235, 'versatile': 13236, 'stanley': 13237, 'bettany': 13238, 'strut': 13239, 'piscopo': 13240, 'chaykin': 13241, 'headly': 13242, \"'estupendamente\": 13243, 'actuada': 13244, 'sumamente': 13245, 'emotiva': 13246, 'profundamente': 13247, 'humana': 13248, 'f�lmica': 13249, 'imposible': 13250, \"olvidar'\": 13251, '[time': 13252, 'resources]': 13253, 'workplace': 13254, 'flotsam': 13255, 'causing': 13256, 'harm': 13257, 'smelly': 13258, 'despising': 13259, 'sensitively': 13260, 'raises': 13261, 'dawdles': 13262, 'virtue': 13263, 'generational': 13264, 'tapping': 13265, 'coughs': 13266, 'sputters': 13267, 'dafoe': 13268, 'careers': 13269, 'criticism': 13270, 'code': 13271, 'ripper': 13272, 'naomi': 13273, 'watts': 13274, 'petite': 13275, 'vulnerable': 13276, 'emphasising': 13277, 'oh-so-important': 13278, 'mind-bending': 13279, \"'qatsi'\": 13280, 'godfrey': 13281, 'featured': 13282, 'tucked': 13283, 'non-exploitive': 13284, 'establishes': 13285, 'meditative': 13286, '[anderson]': 13287, 'food-for-thought': 13288, \"[ricci's]\": 13289, 'girl-woman': 13290, 'sincerely': 13291, 'thwart': 13292, 'shiner': 13293, 'championship': 13294, 'date-night': 13295, '72-year-old': 13296, 'slowed': 13297, \"cartoon's\": 13298, 'snazziness': 13299, 'conspicuous': 13300, 'awfully': 13301, 'tourist': 13302, 'existed': 13303, \"scriptwriter's\": 13304, 'hearst': 13305, 'davies': 13306, 'immigrant': 13307, 'brink': 13308, 'unrepentantly': 13309, 'tarde': 13310, 'pr�prio': 13311, 'abandone': 13312, 'par�dia': 13313, 'passe': 13314, 'utilizar': 13315, 'mesmos': 13316, 'havia': 13317, 'satirizado': 13318, 'depalma': 13319, 'drinking': 13320, 'twelve': 13321, 'fuller': 13322, 'gathering': 13323, 'dust': 13324, \"mgm's\": 13325, 'beatrice': 13326, 'watchful': 13327, 'feeble': 13328, 'poke-mania': 13329, 'supercharged': 13330, 'royals': 13331, 'scandals': 13332, 'princesses': 13333, 'coarseness': 13334, 'banality': 13335, 'village': 13336, '007': 13337, 'pelosi': 13338, '3/4th': 13339, 'spry': 13340, '2001': 13341, 'sequel-for-the-sake-': 13342, 'of-a-sequel': 13343, '[monsoon': 13344, 'wedding]': 13345, 'lament': 13346, 'clung-to': 13347, 'ten-year-old': 13348, 'dualistic': 13349, 'denzel': 13350, \"washington's\": 13351, \"willams'\": 13352, 'mib': 13353, 'rapid-fire': 13354, \"ziyi's\": 13355, 'stakes': 13356, 'shedding': 13357, 'unnoticed': 13358, 'underappreciated': 13359, 'debatable': 13360, 'steady': 13361, 'increasing': 13362, 'decrepitude': 13363, 'luckiest': 13364, 'gee': 13365, 'moot': 13366, 'yacht': 13367, 'freeing': 13368, 'artefact': 13369, 'drably': 13370, 'alleged': 13371, 'provocation': 13372, 'post-9/11': 13373, 'antique': 13374, 'obliviousness': 13375, 'dridi': 13376, 'gallo': 13377, 's&m': 13378, 'maggie': 13379, 'gyllenhaal': 13380, 'tolstoy': 13381, 'agents': 13382, 'shifty': 13383, 'anxieties': 13384, 'sidesteps': 13385, 'saturation': 13386, \"glass'\": 13387, 'divining': 13388, 'swill': 13389, 'strenuously': 13390, '82': 13391, 'bend': 13392, 'architectural': 13393, 'glories': 13394, 'commanding': 13395, \"grant's\": 13396, 'acidity': 13397, 'succumbing': 13398, 'bathos': 13399, 'burnt': 13400, 'marathons': 13401, 'flatulence': 13402, 'unsophisticated': 13403, 'clive': 13404, 'barker': 13405, 'badder': 13406, 'forges': 13407, 'class-': 13408, 'rage': 13409, 'sisterly': 13410, 'razor-sided': 13411, 'tuning': 13412, 'discord': 13413, 'on-board': 13414, 'quarters': 13415, 'integrating': 13416, 'foreground': 13417, 'gained': 13418, 'greatness': 13419, 'laziness': 13420, 'arrogance': 13421, 'won': 13422, '[teen': 13423, 'comedy]': 13424, 'pissed': 13425, \"[gayton's\": 13426, 'script]': 13427, 'telegraphs': 13428, 'convenience': 13429, 'cloaks': 13430, 'anti-feminist': 13431, 'romantic-comedy': 13432, 'duds': 13433, 'partially': 13434, 'minty': 13435, 'confession': 13436, 'alien': 13437, 'elves': 13438, 'pimps': 13439, \"ho's\": 13440, 'big-hearted': 13441, 'concession': 13442, 'hanging': 13443, 'straight-to-video': 13444, 'bigger-name': 13445, 'super-wealthy': 13446, 'megalomaniac': 13447, 'bent': 13448, 'domination': 13449, 'lika': 13450, 'baio': 13451, 'unremittingly': 13452, 'sturdiest': 13453, 'cheapened': 13454, 'unofficially': 13455, 'officially': 13456, 'bestial': 13457, 'mined': 13458, 'chest': 13459, \"fool's\": 13460, 'mcculloch': 13461, 'war/adventure': 13462, 'dissolves': 13463, \"soldier's\": 13464, 'disconnection': 13465, 'unrelieved': 13466, 'wistful': 13467, 'orwell': 13468, 'bradbury': 13469, 'kafka': 13470, 'wachowski': 13471, 'blender': 13472, 'constricted': 13473, 'unsubtle': 13474, 'adrenalized': 13475, 'shockers': 13476, 'director-chef': 13477, 'gabriele': 13478, 'muccino': 13479, \"comin'\": 13480, 'ya': 13481, 'fearing': 13482, 'molto': 13483, 'superficiale': 13484, 'ink-and-paint': 13485, 'push-the-limits': 13486, 'extensively': 13487, 'treats': 13488, \"ana's\": 13489, 'tragically': 13490, 'jolts': 13491, \"morton's\": 13492, 'ever-watchful': 13493, 'glizty': 13494, \"cagney's\": 13495, \"'top\": 13496, \"world'\": 13497, 'inexperienced': 13498, 'questing': 13499, 'racked': 13500, 'self-loathing': 13501, 'too-hot-for-tv': 13502, 'direct-to-video/dvd': 13503, 'one-star': 13504, 'enthusiast': 13505, \"2's\": 13506, 'co-written': 13507, 'mattel': 13508, 'lobbyists': 13509, 'tinsel': 13510, 'nauseating': 13511, 'underutilized': 13512, 'poetics': 13513, 'ethical': 13514, 'intersect': 13515, 'alias': 13516, 'storytellers': 13517, \"niro's\": 13518, 'meet': 13519, 'sums': 13520, 'ins': 13521, 'outs': 13522, 'crudities': 13523, 'rough-around-the-edges': 13524, 'constraints': 13525, 'explanation': 13526, 'preferring': 13527, 'humiliation': 13528, 'defecates': 13529, 'urinates': 13530, 'plants': 13531, 'faced': 13532, 'possibility': 13533, 'schumacher': 13534, 'hopkins/rock': 13535, 'collision': 13536, 'injects': 13537, 'scripts': 13538, 'sleepless': 13539, 'methodical': 13540, 'ballot': 13541, 'reductive': 13542, 'proficient': 13543, 'pop-up': 13544, 'comments': 13545, 'progression': 13546, 'phrase': 13547, 'error': 13548, 'debases': 13549, 'grinding': 13550, 'green-guts': 13551, 'beaut': 13552, 'reincarnation': 13553, 'recruitment': 13554, 'sellouts': 13555, 'underdramatized': 13556, 'overstated': 13557, 'transcript': 13558, 'session': 13559, 'humdrum': 13560, 'freudian': 13561, 'puppet': 13562, '[of': 13563, 'romance]': 13564, 'outnumber': 13565, 'three-to-one': 13566, 'clue': 13567, \"'what\": 13568, 'embraced': 13569, 'benefits': 13570, \"jie's\": 13571, 'encouraging': 13572, 'mccrudden': 13573, 'crushed': 13574, 'fumes': 13575, 'rembrandt': 13576, 'character-based': 13577, 'disagree': 13578, 'rorschach': 13579, 'acumen': 13580, 'horrific': 13581, 'unemotional': 13582, 'remove': 13583, 'herring': 13584, 'surroundings': 13585, 'bawdy': 13586, 'holden': 13587, 'caulfield': 13588, 'galinsky': 13589, 'hawley': 13590, 'planned': 13591, 'documentarian': 13592, 'rope': 13593, 'humping': 13594, 'revived': 13595, \"dumas's\": 13596, 'tykwer': 13597, 'anti-kieslowski': 13598, 'pun': 13599, 'suffice': 13600, 'divertingly': 13601, 'headbangingly': 13602, \"miramax's\": 13603, 'shelves': 13604, 'aborted': 13605, 'pretend': 13606, 'avoiding': 13607, 'crux': 13608, 'technicality': 13609, 'credulity': 13610, 'haunted': 13611, 'grinning': 13612, \"o'\": 13613, 'lantern': 13614, 'lobotomy': 13615, 'scooped': 13616, 'discarded': 13617, 'humidity': 13618, 'dazzlingly': 13619, 'columbus': 13620, 'hat-in-hand': 13621, 'rowling': 13622, 'stifles': 13623, 'venturesome': 13624, 'strainingly': 13625, 'orphan': 13626, 'wandered': 13627, \"rosemary's\": 13628, 'well-conceived': 13629, \"'memento'\": 13630, \"'requiem\": 13631, 'kafkaesque': 13632, 'overnight': 13633, 'robbed': 13634, 'persecuted': 13635, 'selfish': 13636, 'wound-licking': 13637, 'bar-scrapping': 13638, 'doggedness': 13639, \"leon's\": 13640, 'transmute': 13641, 'patchy': 13642, 'overreaches': 13643, 'hovers': 13644, 'locals': 13645, 'spotting': 13646, 'cleveland': 13647, 'sites': 13648, 'comedy/thriller': 13649, 'horror-comedy': 13650, 'cheap-looking': 13651, \"elvira's\": 13652, 'hooters': 13653, 'grocery': 13654, 'lists': 13655, \"screenwriter's\": 13656, 'nonstop': 13657, 'timeout': 13658, 'waltz': 13659, '[subjects]': 13660, 'stationary': 13661, 'mistaken': 13662, 'oration': 13663, 'contributing': 13664, 'definition': 13665, \"[seagal's]\": 13666, 'copycat': 13667, 'siege': 13668, 'plutonium': 13669, 'purgatory': 13670, 'contentious': 13671, 'configurations': 13672, 'g-rated': 13673, 'grown-ups': 13674, 'squirming': 13675, 'unfortunate': 13676, \"gibson's\": 13677, 'braveheart': 13678, 'pearl': 13679, 'harbor': 13680, 'irrepressible': 13681, 'multifaceted': 13682, \"'if\": 13683, 'weepy': 13684, 'worm': 13685, 'kidnapper': 13686, 'paunchy': 13687, 'midsection': 13688, 'undramatic': 13689, 'misanthropic': 13690, 'surrealism': 13691, 'strung-together': 13692, \"tommy's\": 13693, 'peep': 13694, 'booths': 13695, 'snags': 13696, 'stumblings': 13697, 'sterile': 13698, 'indieflick': 13699, 'trims': 13700, 'high-wattage': 13701, 'brainpower': 13702, 'coupled': 13703, 'unfakable': 13704, 'porno': 13705, 'schwartzman': 13706, 'foot': 13707, 'seated': 13708, 'pinheads': 13709, 'flck': 13710, 'remotely': 13711, 'spans': 13712, 'espoused': 13713, \"company's\": 13714, 'schwentke': 13715, 'quota': 13716, 'anticipated': 13717, 'shaping': 13718, 'uninhibited': 13719, 'reputedly': 13720, 'unfilmable': 13721, 'novels': 13722, 'bucked': 13723, \"assayas'\": 13724, \"chardonne's\": 13725, 'epps': 13726, 'laurel': 13727, \"'n\": 13728, 'hood': 13729, 'nihilistic': 13730, 'summons': 13731, 'quadrangle': 13732, 'debilitating': 13733, 'aftermath': 13734, 'techno-sex': 13735, 'weirder': 13736, 'charly': 13737, 'imitative': 13738, 'innumerable': 13739, 'derisions': 13740, 'molony': 13741, 'simon': 13742, \"napoleon's\": 13743, 'parisian': 13744, 'rebirth': 13745, 'invitingly': 13746, 'upbeat': 13747, 'overture': 13748, 'pathos-filled': 13749, 'life-affirming': 13750, 'conducted': 13751, 'overemphatic': 13752, 'would-be': 13753, 'spoil': 13754, \"'enigma'\": 13755, \"'we\": 13756, 'amusedly': 13757, 'contradicts': 13758, 'nowadays': 13759, 'handling': 13760, 'handles': 13761, 'engorged': 13762, \"[clooney's]\": 13763, 'accused': 13764, 'undisciplined': 13765, 'influenced': 13766, 'eckstraordinarily': 13767, 'sufficient': 13768, \"leroy's\": 13769, 'road-and-buddy': 13770, 'fantastical': 13771, 'b-flick': 13772, 'wrestle': 13773, 'chloroform-soaked': 13774, 'handkerchief': 13775, 'streamlined': 13776, '85-minute': 13777, 'screwball': 13778, 'tub': 13779, 'butter': 13780, 'atrocities': 13781, 'angela': 13782, 'gheorghiu': 13783, 'ruggero': 13784, 'raimondi': 13785, 'alagna': 13786, 'godawful': 13787, 'slug': 13788, 'dutiful': 13789, 'disciplined': 13790, 'grade-grubbers': 13791, 'glorified': 13792, 'ga�': 13793, 'limbs': 13794, 'conspiratorial': 13795, 'towering': 13796, 'imponderably': 13797, 'carlin': 13798, 'whir': 13799, '[javier': 13800, 'gerardo': 13801, 'drenched': 13802, 'swoony': 13803, 'fever-pitched': 13804, 'floria': 13805, 'mario': 13806, 'cavaradossi': 13807, 'lecherous': 13808, 'scarpia': 13809, 'precarious': 13810, 'exiled': 13811, 'aristocracy': 13812, 'victorious': 13813, 'revolutionaries': 13814, 'dives': 13815, 'englishmen': 13816, 'views': 13817, 'affluence': 13818, 'revisionism': 13819, 'make-believe': 13820, 'prim': 13821, \"source's\": 13822, 'clamor': 13823, 'lifelong': 13824, 'formalist': 13825, 'experimentation': 13826, 'isle': 13827, 'conceive': 13828, '[macdowell]': 13829, 'ventures': 13830, 'abilities': 13831, 'hormonal': 13832, \"she'll\": 13833, 'satisfactory': 13834, 'overview': 13835, 'daredevils': 13836, 'decisive': 13837, 'elite': 13838, 'proceed': 13839, 'implodes': 13840, 'scorcher': 13841, 'hack-and-slash': 13842, 'otar': 13843, \"iosseliani's\": 13844, 'factory': 13845, 'worker': 13846, 'respite': 13847, 'refresh': 13848, 'judging': 13849, \"'scratch'\": 13850, 'rumor': 13851, 'angels': 13852, 'sudsy': 13853, \"redgrave's\": 13854, 'noblest': 13855, 'redeem': 13856, 'ominous': 13857, 'swiftly': 13858, 'maintained': 13859, 'survived': 13860, 'fond': 13861, 'molested': 13862, 'freddie': 13863, 'jules': 13864, 'millennium': 13865, 'grumpy': 13866, 'flatman': 13867, 'huge-screen': 13868, 'educates': 13869, 'sopranos': 13870, 'fishes': 13871, 'toxic': 13872, 'bonbon': 13873, 'jaundiced': 13874, 'write': 13875, 'teen-speak': 13876, 'gibberish': 13877, 'textbook': 13878, 'stortelling': 13879, \"solondz'\": 13880, 'oftentimes': 13881, 'cowardly': 13882, 'autocritique': 13883, 'porridge': 13884, 'chewy': 13885, 'juliette': 13886, 'vivacious': 13887, 'powerhouse': 13888, \"chelsea's\": 13889, 'denizens': 13890, \"burdette's\": 13891, 'collage-form': 13892, 'over-romanticize': 13893, 'desolation': 13894, 'artiste': 13895, 'bluto': 13896, 'blutarsky': 13897, 'writer-producer-director': 13898, 'finishing': 13899, 'gantz': 13900, 'couples': 13901, 'femme': 13902, 'nikita': 13903, \"besson's\": 13904, 'rehearsals': 13905, 'fulfills': 13906, \"[allen's]\": 13907, 'airhead': 13908, 'pitched': 13909, 'someplace': 13910, 'self-absorption': 13911, 'otherness': 13912, 'mantra': 13913, 'distorts': 13914, 'riddles': 13915, 'generating': 13916, 'inspector': 13917, \"'get'\": 13918, 'reserved': 13919, 'suitable': 13920, 'charlize': 13921, 'courtney': 13922, 'gunfire': 13923, 'ringing': 13924, \"lieutenant's\": 13925, 'counterpart': 13926, \"amari's\": 13927, \"parris'\": 13928, 'hefty': 13929, 'anti-establishment': 13930, 'whip-crack': 13931, 'whimper': 13932, 'whistle': 13933, \"feardotcom's\": 13934, 'immerse': 13935, 'ready-made': 13936, 'eurotrash': 13937, 'reinvented': 13938, 'low-grade': 13939, '--with': 13940, 'murky': 13941, 'mikes': 13942, 'tardier': 13943, 'exploiting': 13944, 'novelty': 13945, 'webcast': 13946, 'cracked': 13947, 'buckaroo': 13948, 'banzai': 13949, 'fairlane': 13950, 'rights': 13951, 'plastic': 13952, 'knickknacks': 13953, 'garage': 13954, 'sale': 13955, 'ill-informed': 13956, \"marina's\": 13957, 'hothouse': 13958, 'teendom': 13959, 'longevity': 13960, 'chiefly': 13961, 'oversized': 13962, 'bedtime': 13963, 'pretention': 13964, 'motorized': 13965, 'dewy-eyed': 13966, 'kid-movie': 13967, 'round': 13968, \"debrauwer's\": 13969, 'plot-wise': 13970, 'e-mailing': 13971, 'thrusts': 13972, 'inchoate': 13973, 'eldritch': 13974, 'circles': 13975, 'miserably': 13976, 'suffer': 13977, 'dreadfulness': 13978, \"'carente\": 13979, 'imaginaci�n': 13980, 'mal': 13981, 'dirigida': 13982, 'peor': 13983, '�pice': 13984, 'verdadera': 13985, 'p�rdida': 13986, \"dinero'\": 13987, 'puzzles': 13988, 'otto-sallies': 13989, \"david's\": 13990, 'expos�': 13991, 'one-sidedness': 13992, 'loitering': 13993, 'conceits': 13994, 'flesh-and-blood': 13995, 'wanes': 13996, 'less-than-thrilling': 13997, 'outgag': 13998, 'whippersnappers': 13999, 'ming-liang': 14000, 'crystalline': 14001, 'apprehension': 14002, '1991': 14003, 'rover': 14004, 'dangerfield': 14005, 'bluster': 14006, \"affirming'\": 14007, \"'schmaltzy\": 14008, 'affirming': 14009, 'tackled': 14010, 'meaty': 14011, 'zingers': 14012, 'sprinkled': 14013, 'remarks': 14014, 'geared': 14015, 'probation': 14016, 'officer': 14017, 'loopiness': 14018, 'congenital': 14019, 'emerging': 14020, 'cutesy-pie': 14021, 'post-production': 14022, 'code-talk': 14023, 'self-righteous': 14024, 'alternates': 14025, 'introspection': 14026, 'lothario': 14027, 'well-produced': 14028, 'joylessly': 14029, 'whooshing': 14030, 'emptily': 14031, 'martinez': 14032, 'welt': 14033, 'johnny': 14034, \"knoxville's\": 14035, 'riot-control': 14036, 'projectile': 14037, 'purposeless': 14038, 'argento': 14039, '26': 14040, 'out-to-change-the-world': 14041, 'aggressiveness': 14042, 'bled': 14043, 'solid--not': 14044, 'grenoble': 14045, 'geneva': 14046, 'mounting': 14047, 'expert': 14048, 'septuagenarian': 14049, 'nonagenarian': 14050, 'clear-eyed': 14051, 'boldness': 14052, 'stacy': 14053, 'peralta': 14054, 'jell': 14055, \"penn's\": 14056, 'monotone': 14057, 'narration': 14058, 'respects': 14059, 'allowed': 14060, 'ivans': 14061, 'xtc': 14062, 'distributors': 14063, 'jean-claude': 14064, 'damme': 14065, 'unmentioned': 14066, 'glamorous': 14067, 'verisimilitude': 14068, 'topkapi': 14069, 'bod': 14070, 'household': 14071, 'weirdness': 14072, 'jaw-droppingly': 14073, 'carousel': 14074, 'prettiest': 14075, 'admired': 14076, 'sparking': 14077, 'savagely': 14078, 'swift': 14079, 'gamble': 14080, 'taiwanese': 14081, 'soaper': 14082, 'gambles': 14083, 'publishing': 14084, 'ramifications': 14085, \"'dumb\": 14086, \"dumber'\": 14087, 'vulgarity': 14088, 'guillen': 14089, 'laramie': 14090, 'dollop': 14091, 'mutates': 14092, 'ever-ruminating': 14093, 'bills': 14094, 'addressing': 14095, 'patronizing': 14096, 'untalented': 14097, 'artistes': 14098, 'startled': 14099, 'dozing': 14100, 'rez': 14101, 'picnic': 14102, 'scarily': 14103, 'sorrowfully': 14104, 'surveys': 14105, 'kieran': 14106, 'culkin': 14107, 'triumphant': 14108, 'publicists': 14109, 'stallion': 14110, 'cimarron': 14111, 'cedar': 14112, 'slyly': 14113, 'anti-adult': 14114, 'foundering': 14115, \"[madonna's]\": 14116, 'denied': 14117, 'lighting': 14118, 'sag': 14119, 'youngster': 14120, 'hamlet': 14121, 'iv': 14122, 'rudy': 14123, 'lodge': 14124, 'clarify': 14125, 'trickster': 14126, 'pathetically': 14127, 'arriving': 14128, 'shores': 14129, 'wary': 14130, 'natives': 14131, 'abhorrent': 14132, 'expose': 14133, 'hustlers': 14134, 'exploitive': 14135, \"'fully\": 14136, \"experienced'\": 14137, 'caesar': 14138, 'ladles': 14139, 'flavour': 14140, 'pizza': 14141, 'spiffing': 14142, 'leftovers': 14143, 'not-so-divine': 14144, 'helping': 14145, 're-fried': 14146, 'tomatoes': 14147, 'successfully': 14148, 'kitchen': 14149, 'ballet': 14150, 'warmed': 14151, 'delete': 14152, 'embarrassed': 14153, 'gabbiest': 14154, 'giant-screen': 14155, 'bogging': 14156, 'barrage': 14157, \"'guy's\": 14158, 'expression': 14159, 'offal': 14160, 'brotherly': 14161, 'painstaking': 14162, 'imparting': 14163, 'tchaikovsky': 14164, 'neurasthenic': 14165, 'unsurprising': 14166, 'greatest-hits': 14167, 'subscription': 14168, 'espn': 14169, 'magazine': 14170, 'wafer-thin': 14171, 'smack-dab': 14172, \"dubya's\": 14173, 'axis': 14174, 'agreeable': 14175, 'time-wasting': 14176, \"pal's\": 14177, 'low-tech': 14178, 'epochs': 14179, 'authentically': 14180, 'pandemonium': 14181, 'reparations': 14182, 'collect': 14183, 'participatory': 14184, 'malnourished': 14185, 'intellectuals': 14186, 'gulp': 14187, 'scary-funny': 14188, 'tremors': 14189, 'demented-funny': 14190, 'starship': 14191, \"ming-liang's\": 14192, 'not-being': 14193, 'overwritten': 14194, 'rung': 14195, 'entries': 14196, 'inert': 14197, '$50-million': 14198, 'discloses': 14199, 'merchandised-to-the-max': 14200, 'recruiting': 14201, 'playlist': 14202, 'costuming': 14203, 'siegel': 14204, 'unhibited': 14205, 'evident': 14206, 'hardship': 14207, 'banter-filled': 14208, 'airy': 14209, 'bons': 14210, 'extension': 14211, 'accomplishments': 14212, 'contriving': 14213, 'sitcom-worthy': 14214, 'stevenson': 14215, 'blanchett': 14216, 'berg': 14217, 'ackerman': 14218, 'looney': 14219, 'bleed': 14220, 'manga-like': 14221, 'abusers': 14222, 'mishmash': 14223, \"cannon's\": 14224, 'drumming': 14225, 'graces': 14226, 'gravitas': 14227, 'placeholder': 14228, 'ergo': 14229, 'vessel': 14230, 'unpicked': 14231, 'vine': 14232, 'andr�': 14233, 'turpin': 14234, 'quando': 14235, 'tiros': 14236, 'acerta': 14237, 'alvo': 14238, 'perd�o': 14239, 'trocadilho': 14240, 'h�': 14241, 'negar': 14242, 'brilhantismo': 14243, 'argumenta��o': 14244, 'preaches': 14245, 'choirs': 14246, 'accomplishment': 14247, 'interminable': 14248, 'cannier': 14249, 'doppelganger': 14250, \"diesel's\": 14251, 'flex-a-thon': 14252, 'new/old': 14253, 'exigencies': 14254, 'counting': 14255, 'bolt': 14256, 'clotted': 14257, 'symbolism': 14258, 'dime-store': 14259, '105': 14260, 'sense-spinning': 14261, 'lola': 14262, 'softheaded': 14263, 'claptrap': 14264, \"sch�tte's\": 14265, 'brecht': 14266, '[watts]': 14267, 'converts': 14268, '127': 14269, 'despairing': 14270, 'establishment': 14271, 'salle': 14272, 'stimulus': 14273, 'optic': 14274, 'totalitarian': 14275, 'servants': 14276, '1933': 14277, 'manoel': 14278, 'oliviera': 14279, 'juliet': 14280, \"stevenon's\": 14281, 'cohesion': 14282, \"pamela's\": 14283, 'roller': 14284, 'coaster': 14285, 'offended': 14286, 'stronger': 14287, 'regimented': 14288, 'goddammit': 14289, 'of�emotional': 14290, 'recovery': 14291, 'copout': 14292, 'bug-eye': 14293, 'dead-eye': 14294, '[gulpilil]': 14295, 'humanism': 14296, 'compass': 14297, 'kev': 14298, 'signing': 14299, 'dotted': 14300, \"should've\": 14301, 'wrestling': 14302, 'cliffhanger': 14303, 'exoticism': 14304, 'pax': 14305, 'lulled': 14306, 'annoyed': 14307, 'bludgeon': 14308, 'unconscious': 14309, 'bait-and-switch': 14310, 'visions': 14311, 'fade': 14312, 'sturdy': 14313, 'caine': 14314, 'fraser': 14315, 'compulsive': 14316, '[eddie]': 14317, 'genial-rogue': 14318, 'jaw': 14319, 'old-fashioned-movie': 14320, 'unburdened': 14321, 'shallower': 14322, 'egregiously': 14323, 'crikey': 14324, 'cursing': 14325, 'strategically': 14326, 'qualifies': 14327, 'artistically': 14328, 'shriek': 14329, 'plucking': 14330, 'sob-story': 14331, 'refracting': 14332, 'serviceability': 14333, 'extensions': 14334, 'charmers': 14335, 'stoppard': 14336, 'rehashes': 14337, 'capped': 14338, 'extremes': 14339, 'kangaroo': 14340, 'puportedly': 14341, 'convolution': 14342, 'stress': 14343, 'aniston': 14344, 'decisively': 14345, 'satiric': 14346, 'turmoil': 14347, 'frankness': 14348, \"filmmakers'\": 14349, 'deem': 14350, 'interpersonal': 14351, 'awakens': 14352, 'larceny': 14353, 'theft': 14354, 'conclusive': 14355, 'slummy': 14356, 'half-asleep': 14357, 'bread': 14358, 'dipped': 14359, 'trumpets': 14360, 'exploits': 14361, '[headbanger]': 14362, 'factors': 14363, 'flowery': 14364, 'scruffy': 14365, 'giannini': 14366, 'abel': 14367, 'ferrara': 14368, 'speculative': 14369, 'made-for-tv': 14370, 'baroque': 14371, 'rehashed': 14372, 'plummets': 14373, 'graveyard': 14374, 'rescue': 14375, 'book-on-tape': 14376, 'abridged': 14377, 'categorize': 14378, 'smutty': 14379, 'snobbery': 14380, 'middle-america': 14381, 'diversions': 14382, 'sadism': 14383, 'evaded': 14384, 'kickass': 14385, 'monster-in-the-': 14386, 'vanishes': 14387, 'tastes': 14388, 'foreboding': 14389, 'jammies': 14390, 'tricky': 14391, 'tightrope': 14392, 'face-to-face': 14393, 'idemoto': 14394, 'brim': 14395, 'lunch': 14396, 'proper': 14397, '[jason': 14398, 'bourne]': 14399, 'dimming': 14400, 'neorealism': 14401, 'besson': 14402, 'asia': 14403, 'shu': 14404, 'institution': 14405, 'insufficiently': 14406, '[leigh]': 14407, 'lays': 14408, 'murk': 14409, 'haunts': 14410, 'sorely': 14411, 'smuggling': 14412, 'cows': 14413, 'alter': 14414, 'sank': 14415, 'jerky': 14416, 'underdogs': 14417, 'triumphs': 14418, \"westbrook's\": 14419, 'foundation': 14420, \"dalrymple's\": 14421, 'uplift': 14422, 'hotter': 14423, 'georgia': 14424, 'sure�if': 14425, 'romero': 14426, 'zombie': 14427, 'eugene': 14428, 'reginald': 14429, 'veljohnson': 14430, 'cheesiest': 14431, 'induce': 14432, 'fright': 14433, 'switches': 14434, 'link': 14435, 'tenuous': 14436, 'purport': 14437, '125-year': 14438, 'maud': 14439, \"roland's\": 14440, 'neater': 14441, 'saves': 14442, \"egoyan's\": 14443, 'heresy': 14444, 'intellectually': 14445, 'self-knowledge': 14446, '[crane]': 14447, 'rehashing': 14448, 'one-joke': 14449, 'bolstered': 14450, 'excepting': 14451, 'encountered': 14452, \"pete's\": 14453, 'lumpy': 14454, 'two-day': 14455, 'paws': 14456, 'un-bear-able': 14457, 'tied': 14458, \"'zany'\": 14459, \"'funny\": 14460, '[but': 14461, \"it's]\": 14462, 'recommending': 14463, 'disturbingly': 14464, 'narcissistic': 14465, 'achieving': 14466, 'candy-coat': 14467, 'community-college': 14468, 'advertisement': 14469, 'guitar': 14470, 'amp': 14471, 'ragbag': 14472, 'facade': 14473, 'movie-biz': 14474, 'uncreative': 14475, 'theatrically': 14476, 'bonus': 14477, 'hardass': 14478, 'unhidden': 14479, 'thinner': 14480, 'cardboard': 14481, 'aircraft': 14482, 'carrier': 14483, 'sentimentalized': 14484, 'journalism': 14485, 'avid': 14486, 'impatient': 14487, 'winged': 14488, 'assailants': 14489, '[meditation]': 14490, 'gaping': 14491, \"'sub'-standard\": 14492, 'buoys': 14493, 'exotic-looking': 14494, 'hinted': 14495, 'oscar-caliber': 14496, '[an]': 14497, 'imitations': 14498, 'subsided': 14499, 'slender': 14500, '80-minute': 14501, 'nymphette': 14502, 'salt-of-the-earth': 14503, 'mommy': 14504, 'minnie': 14505, 'slim': 14506, 'incognito': 14507, 'wig': 14508, 'shop': 14509, 'hush': 14510, 'reward': 14511, 'rolls': 14512, 'campaign-trail': 14513, 'candidate': 14514, 'concentrating': 14515, 'hostile': 14516, 'recklessness': 14517, 'bluer': 14518, 'atlantic': 14519, 'biologically': 14520, 'autopsy': 14521, 'narrated': 14522, 'landau': 14523, 'janklowicz-mann': 14524, 'gears': 14525, 'airtime': 14526, 'what-if': 14527, 'helmer': 14528, 'devito': 14529, 'payola': 14530, 'vice': 14531, 'bespeaks': 14532, 'england': 14533, 'wander': 14534, 'clouds': 14535, 'denial': 14536, 'chords': 14537, 'buying': 14538, 'freundlich': 14539, 'israeli': 14540, 'song-and-dance-man': 14541, \"pasach'ke\": 14542, 'crisply': 14543, 'semi-surrealist': 14544, 'merchant-ivory': 14545, 'systematically': 14546, 'dear': 14547, 'split': 14548, 'petroni': 14549, 'akasha': 14550, 'dreadfully': 14551, 'inversion': 14552, 'concubine': 14553, 'eschews': 14554, 'panorama': 14555, 'bug-eyed': 14556, 'gay-niche': 14557, \"renner's\": 14558, 'often-cute': 14559, 'judicious': 14560, 'debated': 14561, 'thoughtfulness': 14562, 'half-dimensional': 14563, 'irrational': 14564, 'unexplainable': 14565, 'filter': 14566, 'deploys': 14567, 'guises': 14568, 'broader': 14569, 'open-ended': 14570, 'concrete': 14571, 'bratt': 14572, 'stardom': 14573, 'mapquest': 14574, 'emailed': 14575, 'point-to-point': 14576, 'self-amused': 14577, \"gerbosi's\": 14578, 'economically': 14579, 'patter': 14580, 'pseudo-sophisticated': 14581, 'remainder': 14582, '93-minute': 14583, 'condensation': 14584, '26-episode': 14585, 'inflate': 14586, 'scarifying': 14587, 'mileage': 14588, 'stray': 14589, 'phonograph': 14590, 'dry-eyed': 14591, 'analytical': 14592, 'maximum': 14593, 'moisture': 14594, 'bartlett': 14595, 'indifferently': 14596, 'programmer': 14597, 'moral-condundrum': 14598, 'laudable': 14599, 'simulation': 14600, 'ii-birkenau': 14601, 'lurking': 14602, 'regimes': 14603, 'contradictions': 14604, 'cussing': 14605, 'serenity': 14606, 'discipline': 14607, 'liberating': 14608, 'rapes': 14609, 'pillages': 14610, 'incinerates': 14611, \"capra's\": 14612, 'drawers': 14613, 'over-reliance': 14614, 'crushes': 14615, 'good-hearted': 14616, 'embracing': 14617, 'accepts': 14618, 'quirkiness': 14619, 'eccentricity': 14620, \"individuals'\": 14621, 'tendency': 14622, 'thorough': 14623, 'fireballs': 14624, 'reopens': 14625, 'sensationalism': 14626, 'misty': 14627, 'overtake': 14628, 'priggish': 14629, 'lethargically': 14630, 'renewal': 14631, 'old-hat': 14632, 'festooning': 14633, 'magically': 14634, \"'significant'\": 14635, 'playfully': 14636, 'crazier': 14637, 'skyscraper': 14638, 'nursery': 14639, 'surrounded': 14640, 'hot-button': 14641, 'disgusting': 14642, 'jeopardy': 14643, 'oscura': 14644, 'precisa': 14645, 'grandiosa': 14646, 'casi': 14647, 'siempre': 14648, 'conmovedora': 14649, \"'under\": 14650, \"alcatraz'\": 14651, 'springs': 14652, 'creepiest': 14653, 'rivaling': 14654, 'hanks': 14655, 'fisk': 14656, 're-enactments': 14657, \"frei's\": 14658, 'loosens': 14659, 'proportion': 14660, 'self-analysis': 14661, 'hateful': 14662, 'bottomlessly': 14663, 'banger': 14664, 'back-story': 14665, 'contrasting': 14666, 'sleekness': 14667, 'vh1': 14668, '65': 14669, 'unfinished': 14670, 'hjejle': 14671, 'transplanted': 14672, \"production's\": 14673, 'stewart': 14674, 'full-on': 14675, 'astronomically': 14676, 'nurse': 14677, 'boulevard': 14678, 'soapdish': 14679, 'illustrated': 14680, 'allied': 14681, 'german': 14682, 'ethnicities': 14683, 'deathbed': 14684, 'airport': 14685, 'security': 14686, 'collaborative': 14687, 'profile': 14688, 'corporate': 14689, 'climate': 14690, 'mergers': 14691, 'downsizing': 14692, 'spread': 14693, \"kurys'\": 14694, '[is]': 14695, \"war's\": 14696, 'sling': 14697, \"bob's\": 14698, 'ellen': 14699, 'pompeo': 14700, \"wilco's\": 14701, 'philippe': 14702, \"mora's\": 14703, 'hitler-study': 14704, 'snide': 14705, 'populist': 14706, 'hard-pressed': 14707, 'fatter': 14708, 'high-tech': 14709, 'migraine-inducing': 14710, 'spoon': 14711, 'feeding': 14712, 'deficiency': 14713, 'presume': 14714, 'trot': 14715, 'centering': 14716, 'polemical': 14717, 'self-defeatingly': 14718, 'decorous': 14719, \"toback's\": 14720, 'detractors': 14721, 'deserved': 14722, \"munch's\": 14723, 'tenderly': 14724, 'embellished': 14725, '[goldbacher]': 14726, 'idiotically': 14727, 'improperly': 14728, 'rea': 14729, 'disdain': 14730, 'hallways': 14731, 'voice-over': 14732, 'mystification': 14733, 'boarders': 14734, 'co-winner': 14735, \"o'neill's\": 14736, 'last-second': 14737, 'borrowed': 14738, 'woman-': 14739, 'finding-herself': 14740, 'even-flowing': 14741, 'hampered': 14742, 'undeveloped': 14743, '96': 14744, 'hoary': 14745, 'fluxing': 14746, 'silly-looking': 14747, 'morlocks': 14748, 'sub-par': 14749, 'shivers': 14750, 'flatbush': 14751, 'rapturous': 14752, 'der': 14753, 'groen': 14754, \"'belgium's\": 14755, '77': 14756, 'celebi': 14757, 'laser-projected': 14758, 'spell-casting': 14759, 'dreyfus': 14760, 'exposed': 14761, 'corners': 14762, 'temporal': 14763, 'burden': 14764, 'star-splashed': 14765, 'reduction': 14766, 'labour': 14767, 'rein': 14768, 'mini': 14769, 'car-wreck': 14770, 'hutchins': 14771, \"zelda's\": 14772, 'heart-breaking': 14773, 'incendiary': 14774, 'peculiarly': 14775, 'venomous': 14776, 'bigotries': 14777, 'theocracy': 14778, 'ran': 14779, \"'small'\": 14780, 'sprecher': 14781, 'charleston': 14782, 'vent': 14783, 'hoods': 14784, 'seth': 14785, 'pepper': 14786, 'stayed': 14787, \"'bad'\": 14788, 'aurelie': 14789, 'christelle': 14790, 'nightmarish': 14791, 'fairytale': 14792, 'unsung': 14793, 'heroes': 14794, 'busby': 14795, 'berkeley': 14796, 'existing': 14797, 'zucker': 14798, 'brothers/abrahams': 14799, 'post-modern': 14800, 'contemporaries': 14801, 'nightclub': 14802, 'two-wrongs-make-a-right': 14803, 'jolie': 14804, 'conformity': 14805, 'tabloid': 14806, 'cops': 14807, 'copmovieland': 14808, 'routes': 14809, 'strident': 14810, 'inelegant': 14811, \"'message-movie'\": 14812, \"runner'\": 14813, \"would've\": 14814, 'uhf': 14815, 'self-reflection': 14816, 'yakusho': 14817, 'shimizu': 14818, \"imamura's\": 14819, 'claustrophobia': 14820, 'sooner': 14821, 'biased': 14822, 'ignoring': 14823, 'prompting': 14824, 'squabbling': 14825, 'spouses': 14826, 'parsing': 14827, 'barn-side': 14828, 'breach': 14829, 'gaps': 14830, \"nair's\": 14831, 'career-best': 14832, 'miraculously': 14833, \"'they'\": 14834, 'stunned': 14835, 'elmo': 14836, 'touts': 14837, 'nimble': 14838, 'dreamed': 14839, 'preposterously': 14840, 'paean': 14841, 'gang-member': 14842, 'circa': 14843, 'award-worthy': 14844, 'minefield': 14845, 'sailors': 14846, 'babak': 14847, \"payami's\": 14848, 'evoking': 14849, 'ditty': 14850, 'eastern': 14851, 'aggressive': 14852, 'transfigures': 14853, 'unchanged': 14854, 'dullard': 14855, 'fuhgeddaboutit': 14856, 'sequins': 14857, 'flashbulbs': 14858, 'babes': 14859, 'infiltrated': 14860, \"schmidt's\": 14861, \"sade's\": 14862, '[quills]': 14863, 'somnolent': 14864, 'mummified': 14865, 'conclusions': 14866, 'truffle': 14867, 'dainty': 14868, 'creamy': 14869, 'psychopathy': 14870, 'unslick': 14871, '[aniston]': 14872, 'infrequently': 14873, 'criticizes': 14874, 'watered-down': 14875, 'barbs': 14876, 'desecrations': 14877, 'contributed': 14878, 'writer/director/producer': 14879, 'spy-action': 14880, 'affable': 14881, \"lopez's\": 14882, 'storm': 14883, 'shrewdly': 14884, 'sat': 14885, '120': 14886, 'warriors': 14887, 'resents': 14888, 'inhale': 14889, 'gutter': 14890, \"romancer's\": 14891, 'contain': 14892, 'balto': 14893, 'toy': 14894, 'exasperatingly': 14895, 'continuation': 14896, \"taylor's\": 14897, 'doorstep': 14898, 'sweaty-palmed': 14899, 'roses': 14900, 'trailer-trash': 14901, 'greed': 14902, 'sickness': 14903, 'post-colonialist': 14904, 'trove': 14905, 'exceeds': 14906, 'malaise': 14907, 'renders': 14908, 'ritual': 14909, 'substandard': 14910, 'forefront': 14911, \"china's\": 14912, 'sixth': 14913, 'parapsychological': 14914, 'phenomena': 14915, 'grieving': 14916, 'farts': 14917, 'nine-year-old': 14918, 'losses': 14919, 'ours': 14920, 'retitle': 14921, 'middle-fingered': 14922, 'outta': 14923, 'well-contructed': 14924, 'obligatory': 14925, 'so-five-minutes-ago': 14926, 'overwhelm': 14927, 'dopey': 14928, 'hanna-barbera': 14929, 'recommendation': 14930, 'squeamish': 14931, 'idolized': 14932, 'superfluous': 14933, 'sieve': 14934, 'heart-rate-raising': 14935, 'graham': 14936, 'nine-tenths': 14937, 'congeals': 14938, 'tingle': 14939, 'freak-out': 14940, 'exaggeration': 14941, 'hermocrates': 14942, 'leontine': 14943, 'amours': 14944, 'weightlessness': 14945, \"horner's\": 14946, 'audio': 14947, 'robots': 14948, 'haul': 14949, \"'em\": 14950, 'throwaway': 14951, 'rainbows': 14952, 'plant': 14953, 'smile-button': 14954, 'populace': 14955, 'renting': 14956, 'discretion': 14957, 'geddes': 14958, 'grisham': 14959, 'kincaid': 14960, 'cooking': 14961, 'deutchland': 14962, 'hungry': 14963, 'tourists': 14964, 'true-blue': 14965, 'tres': 14966, 'nia': 14967, 'worldly-wise': 14968, 'hallucinations': 14969, 'out-of-field': 14970, 'detriment': 14971, 'tract': 14972, 'kirsten': 14973, \"dunst's\": 14974, 'generosity': 14975, 'diplomacy': 14976, 'implicitly': 14977, 'chicanery': 14978, 'self-delusion': 14979, 'businesses': 14980, 'doldrums': 14981, 'not-quite-urban': 14982, 'not-quite-suburban': 14983, 'recoiling': 14984, 'blip': 14985, 'milder': 14986, 'humility': 14987, 'immune': 14988, 'anniversary': 14989, 'retrospectively': 14990, 'showers': 14991, 'wane': 14992, 'initially': 14993, 'heartening': 14994, 'merry': 14995, 'hit-': 14996, 'and-miss': 14997, 'mechanism': 14998, 'avoided': 14999, \"[gosling's]\": 15000, 'petter': 15001, \"n�ss'\": 15002, 'axel': 15003, 'hellstenius': 15004, 'true-to-life': 15005, 'unadorned': 15006, 'hilary': 15007, 'birmingham': 15008, 'owen': 15009, 'partnership': 15010, 'fiennes': 15011, 'quieter': 15012, \"aragorn's\": 15013, 'arwen': 15014, 'fellowship': 15015, 'best-sustained': 15016, 'polemic': 15017, 'loathe': 15018, 'cutting-edge': 15019, 'ballast': 15020, 'cousin': 15021, 'bottom-feeder': 15022, 'talked': 15023, 'samira': 15024, \"makhmalbaf's\": 15025, 'blackboards': 15026, 'reflections': 15027, 'torpid': 15028, 'contagious': 15029, 're-assess': 15030, 'evaluate': 15031, 'activity': 15032, 'pressure-cooker': 15033, 'snowballs': 15034, 'focusing': 15035, 'reeked': 15036, 'done-that': 15037, 'bought': 15038, 'fuels': 15039, 'self-destructiveness': 15040, 'unstable': 15041, 'teen-driven': 15042, 'toilet-humor': 15043, 'codswallop': 15044, 'disappointment': 15045, 'calibre': 15046, 'jam-packed': 15047, 'bruising': 15048, 'clocked': 15049, 'wisely': 15050, 'crocodile': 15051, 'oh-so-hollywood': 15052, 'rejiggering': 15053, 'curve': 15054, 'sloppily': 15055, 'bogdanich': 15056, 'unashamedly': 15057, 'pro-serbian': 15058, 'rome': 15059, \"hawn's\": 15060, 'breasts': 15061, 'threaten': 15062, 'upstage': 15063, 'accounting': 15064, 'texas': 15065, 'chainsaw': 15066, \"who'd\": 15067, 'universally': 15068, 'grandfather': 15069, 'woozy': 15070, 'roisterous': 15071, 'ill-starred': 15072, 'conceptions': 15073, 'rip': 15074, 'action/thriller': 15075, 'jackal': 15076, 'colonialism': 15077, \"caine's\": 15078, 'journalist': 15079, 'halle': 15080, 'berry': 15081, 'ahhhh': 15082, 'statements': 15083, 'ruminations': 15084, 'sermon': 15085, 'joshua': 15086, 'luis': 15087, \"latter's\": 15088, 'attendant': 15089, \"'plain'\": 15090, 'waif': 15091, 'applying': 15092, 'smear': 15093, 'lip-gloss': 15094, 'lohman': 15095, 'adapts': 15096, 'erects': 15097, 'verbally': 15098, 'flatfooted': 15099, 'tonal': 15100, 'stretch': 15101, \"show's\": 15102, 'approaching': 15103, \"jimmy's\": 15104, 'strongman': 15105, 'ana': 15106, 'teen-sleaze': 15107, 'attuned': 15108, 'anarchist': 15109, 'maxim': 15110, \"urge'\": 15111, 'iconoclastic': 15112, 'excites': 15113, 'tickles': 15114, 'silent-movie': 15115, 'dishonorable': 15116, 'quickie': 15117, 'teen-pop': 15118, 'synthetic': 15119, 'scooby-doo': 15120, 'retro-refitting': 15121, 'nickelodeon-esque': 15122, 'nowheresville': 15123, 'irk': 15124, \"'terrible\": 15125, \"filmmaking'\": 15126, \"true'\": 15127, 'cross-promotion': 15128, 'turntable': 15129, 'outselling': 15130, 'characterisation': 15131, 'sacrificed': 15132, 'sake': 15133, 'sarcastic': 15134, 'shield': 15135, 'misleading': 15136, 'unexplained': 15137, 'baboon': 15138, 'wholesome': 15139, 'interfering': 15140, 'homosexuality': 15141, 'enlightening': 15142, \"jones's\": 15143, 'lump-in-the-throat': 15144, 'unqualified': 15145, 're-imagining': 15146, '1930s': 15147, 'strangeness': 15148, \"'hungry-man\": 15149, 'portions': 15150, \"bad'\": 15151, 'deliberative': 15152, 'characterized': 15153, 'surface-obsession': 15154, 'typifies': 15155, 'delirium': 15156, 'pre': 15157, 'extant': 15158, 'prisoners': 15159, 'valentine': 15160, 'sealed': 15161, '[f]rom': 15162, 'blazingly': 15163, 'vibrantly': 15164, 'colored': 15165, 'supportive': 15166, 'mating': 15167, 'bogus': 15168, 'profundities': 15169, 'controlled': 15170, '1955': 15171, 'franz': 15172, 'apenas': 15173, 'longo': 15174, 'epis�dio': 15175, 'programa': 15176, '�nica': 15177, 'diferen�a': 15178, 'desta': 15179, 'paramount': 15180, 'teve': 15181, 'mau': 15182, 'gosto': 15183, 'exibi-lo': 15184, 'nos': 15185, 'cinemas': 15186, \"river's\": 15187, 'awards--with': 15188, 'camouflaging': 15189, 'guilt-trip': 15190, 'indoor': 15191, 'bravo': 15192, 'selecting': 15193, 'predominantly': 15194, 'cross-cultural': 15195, 'aussie': 15196, 'not-quite-dead': 15197, 'spits': 15198, 'sharper': 15199, 'cleaner': 15200, \"romanek's\": 15201, 'crusty': 15202, 'dystopian': 15203, 'retooling': 15204, 'fahrenheit': 15205, '451': 15206, 'matrix': 15207, \"'urban\": 15208, \"comedy'\": 15209, 'disarming': 15210, 'self-discovery': 15211, 'pics': 15212, 'lighter-than-air': 15213, 'perpetrating': 15214, 'trots': 15215, 'overacted': 15216, 'pronounce': 15217, 'kok': 15218, 'thus': 15219, 'beavis': 15220, 'butthead': 15221, 'elicit': 15222, \"'moore\": 15223, 'progressive': 15224, 'provocateur': 15225, 'special-interest': 15226, 'slaps': 15227, 'liberalism': 15228, 'unceasing': 15229, 'graphically': 15230, 'excessive': 15231, 'fleet-footed': 15232, 'pleasingly': 15233, 'radcliffe': 15234, 'assertive': 15235, 'amish': 15236, 'daddy': 15237, 'gilmore': 15238, 'waterboy': 15239, 'bilingual': 15240, 'seriocomic': 15241, 'georgian-israeli': 15242, 'brims': 15243, 'accident-prone': 15244, 'enrapturing': 15245, 'tempt': 15246, 'inscrutable': 15247, 'closest': 15248, '15th': 15249, 'spectrum': 15250, 'nit-picky': 15251, 'hypocrisies': 15252, 'unsuccessfully': 15253, 'wiseman': 15254, 'organized': 15255, 'efficiency': 15256, 'numerous': 15257, 'involvingly': 15258, 'bio-drama': 15259, 'recovers': 15260, 'too-frosty': 15261, 'paltrow': 15262, 'authenticate': 15263, 'liability': 15264, 'zeal': 15265, 'minac': 15266, 'necessity': 15267, \"fellowship's\": 15268, 'towers': 15269, 'outdoes': 15270, 'dual': 15271, 'lower-wit': 15272, \"brothers'\": 15273, 'oeuvre': 15274, 'reflective': 15275, 'airs': 15276, 'two-hour-and-fifteen-minute': 15277, 'derailed': 15278, 'males': 15279, 'throes': 15280, 'flush': 15281, 'testosterone': 15282, \"'refreshing\": 15283, \"'drumline'\": 15284, 'manhood': 15285, 'dilutes': 15286, 'stalked': 15287, 'creepy-crawly': 15288, 'bug': 15289, 'minor-league': 15290, 'disingenuous': 15291, 'yosuke': 15292, 'saeko': 15293, 'jump-in-your-seat': 15294, 'backseat': 15295, 'recovering': 15296, 'ridiculousness': 15297, \"porky's\": 15298, 'expressively': 15299, 'crystallize': 15300, 'minutely': 15301, 'ecstasy': 15302, 'all-too-human': 15303, 'breed': 15304, 'jacobson': 15305, 'jeremy': 15306, \"monster's\": 15307, 'pathology': 15308, \"time's\": 15309, '-of-the-week': 15310, 'mouthpieces': 15311, 'dissection': 15312, 'inanities': 15313, 'difficulties': 15314, 'self-exploitation': 15315, 'merge': 15316, 'soft-porn': 15317, \"'empowerment\": 15318, 'churlish': 15319, 'begrudge': 15320, 'receiving': 15321, 'mariah': 15322, 'carey': 15323, 'wisegirls': 15324, 'psychoanalytical': 15325, 'provocatively': 15326, 'clams': 15327, 'broiling': 15328, 'surrenders': 15329, 'permits': 15330, \"pacino's\": 15331, 'floundering': 15332, 'igby': 15333, 'stage-trained': 15334, 'jez': 15335, 'butterworth': 15336, 'mojo': 15337, 'post-full': 15338, 'underplayed': 15339, 'harks': 15340, 'yasujiro': 15341, 'ozu': 15342, \"'best\": 15343, \"part'\": 15344, '60-second': 15345, 'bode': 15346, 'anecdote': 15347, 'seizures': 15348, 'agitprop': 15349, 'botches': 15350, \"ross's\": 15351, 'ken': 15352, 'slam-bang': 15353, 'superheroics': 15354, 'kinetic': 15355, 'engross': 15356, 'antsy': 15357, 'dramatization': 15358, \"couple's\": 15359, 'ascension': 15360, \"lasker's\": 15361, 'canny': 15362, 'byron': 15363, 'luther': 15364, 'satisfaction': 15365, 'atreve': 15366, 'atacar': 15367, 'atacarse': 15368, 'sonrisa': 15369, 'risa': 15370, 'larga': 15371, 'duraci�n': 15372, \"o'clock\": 15373, 'skips': 15374, 'hyper-artificiality': 15375, 'haynes': 15376, 'homophobia': 15377, 'creeped': 15378, 'self-infatuated': 15379, 'circumstantial': 15380, 'sandbox': 15381, 'lifted': 15382, 'subconscious': 15383, \"kafka's\": 15384, \"bu�uel's\": 15385, 'casings': 15386, 'flip': 15387, 'oscar-nominated': 15388, 'ever-escalating': 15389, 'parental': 15390, 'fanatically': 15391, 'fetishized': 15392, 'old-movie': 15393, 'idiosyncrasy': 15394, 'monastic': 15395, 'insatiable': 15396, '3-year-olds': 15397, 'outrage': 15398, \"'like\": 15399, \"[skins']\": 15400, 'fizzability': 15401, 'unerring': 15402, 'pee-related': 15403, 'grimace': 15404, \"myer's\": 15405, 'prevail': 15406, 'penis': 15407, 'breast': 15408, 'profit': 15409, 'frankenstein': 15410, 'careens': 15411, 'performs': 15412, 'redgrave': 15413, 'sendak': 15414, 'hated': 15415, 'mornings': 15416, 'tonto': 15417, 'hollowness': 15418, 'wonton': 15419, 'floats': 15420, 'stiflingly': 15421, '[stevens': 15422, 'stoked': 15423, 'happenstance': 15424, 'overladen': 15425, 'digits': 15426, 'age-wise': 15427, 'police-oriented': 15428, 'participation': 15429, 'tnt': 15430, 'ilya': 15431, 'conceived': 15432, 'collections': 15433, 'descent': 15434, 'post-breakup': 15435, \"cube's\": 15436, 'corniness': 15437, 'shading': 15438, \"scorsese's\": 15439, '168-minute': 15440, 'palate': 15441, 'ditsy': 15442, 'boilerplate': 15443, \"they've\": 15444, 'exact': 15445, 'beckett': 15446, 'applied': 15447, 'voting': 15448, 'glacially': 15449, 'overload': 15450, 'irreparably': 15451, 'so-inept-': 15452, \"it's-surreal\": 15453, 'dubbing': 15454, 'glenn': 15455, 'regis': 15456, 'philbin': 15457, 'breckin': 15458, 'meyer': 15459, 'godzilla': 15460, 'converted': 15461, 'eclair': 15462, 'twisty': 15463, 'well-defined': 15464, 'torments': 15465, 'operatic': 15466, 'tango': 15467, 'fillers': 15468, 'cresting': 15469, 'dirty-joke': 15470, 'post-tarantino': 15471, 'pop-culture': 15472, 'map': 15473, 'populated': 15474, 'starving': 15475, 'patiently': 15476, 'ouzo': 15477, 'whirlwind': 15478, 'cringe': 15479, 'property': 15480, 'can’': 15481, 'val': 15482, 'kilmer’': 15483, \"plot's\": 15484, 'occupation': 15485, 'selves': 15486, 'handed': 15487, 'waxes': 15488, 'regurgitates': 15489, \"wen's\": 15490, 'transitions': 15491, \"peralta's\": 15492, 'mythmaking': 15493, 'informed': 15494, 'supplied': 15495, 'hole-ridden': 15496, 'mckay': 15497, 'ill-equipped': 15498, 'interior': 15499, 'incorporate': 15500, \"characters']\": 15501, 'congratulate': 15502, 'exhibitionism': 15503, 'icy': 15504, \"'just\": 15505, 'mountain': 15506, 'magnet': 15507, 'co-star': 15508, 'taught': 15509, 'pearce': 15510, 'semi-stable': 15511, 'craftsmen': 15512, 'hitman': 15513, 'shorty': 15514, 'caustic': 15515, 'inexpressible': 15516, 'unfussily': 15517, 'crudeness': 15518, 'concludes': 15519, 'printed': 15520, 'page': 15521, \"iles'\": 15522, 'kuras': 15523, \"macdowell's\": 15524, 'retrieve': 15525, 'trumps': 15526, 'peopled': 15527, 'ringside': 15528, 'tough-man': 15529, '[frei]': 15530, 'gallery': 15531, 'confuse': 15532, 'yawn-provoking': 15533, 'stench': 15534, \"'been\": 15535, \"that'\": 15536, 'warmly': 15537, 'extend': 15538, 'yell': 15539, \"'safe\": 15540, 'skipped': 15541, 'jangle': 15542, 'contender': 15543, 'burly': 15544, 'coincidence': 15545, 'pummels': 15546, 'drunken': 15547, 'roundhouse': 15548, 'investing': 15549, 'emi': 15550, '1992': 15551, 'malfitano-domingo': 15552, 'martyr': 15553, 'royally': 15554, 'screwed': 15555, 'murderer': 15556, \"pandora's\": 15557, 'cheesier': 15558, 'underwhelming': 15559, 'coburn': 15560, 'inconceivable': 15561, 'calvin': 15562, \"'s\": 15563, 'beacon': 15564, \"chicago's\": 15565, '37-minute': 15566, 'lethargic': 15567, \"ch�teau's\": 15568, 'whimsicality': 15569, 'improvisation': 15570, 'battles': 15571, 'sketches': 15572, 'identification': 15573, 'b-film': 15574, 'thuggery': 15575, 'innate': 15576, 'theatrics': 15577, 'flattened': 15578, 'over-25s': 15579, 'csokas': 15580, 'unconnected': 15581, 'contemptible': 15582, 'imitator': 15583, 'snl': 15584, 'has-been': 15585, '8-year-old': 15586, 'testing': 15587, 'surest': 15588, 'all-around': 15589, 'threshold': 15590, 'offset': 15591, 'ugliness': 15592, 'thumpingly': 15593, 'baloney': 15594, 'standardized': 15595, 'exceed': 15596, 'larson': 15597, 'broder': 15598, 'co-director': 15599, 'abrams': 15600, 'fullness': 15601, 'endearingly': 15602, 'meet-cute': 15603, 'hit-man': 15604, 'bedouins': 15605, 'romanticized': 15606, 'undogmatic': 15607, 'resurrect': 15608, 'a-knocking': 15609, 'twisting': 15610, 'not-so-big': 15611, 'not-so-hot': 15612, 'tunisian': 15613, 'catastrophic': 15614, 'gall': 15615, 'clamoring': 15616, 'esoteric': 15617, 'musings': 15618, 'quills': 15619, \"'divertida\": 15620, 'enternecedora': 15621, 'sincera': 15622, 'mejores': 15623, 'comedias': 15624, 'rom�nticas': 15625, 'mucho': 15626, 'delicia': 15627, 'ploddingly': 15628, 'dogged': 15629, \"'vain'\": 15630, 'defoliation': 15631, 'dreaminess': 15632, 'lull': 15633, '[hell': 15634, 'over-blown': 15635, 'scar': 15636, \"completist's\": 15637, \"cultist's\": 15638, 're-creations': 15639, 'garc�a': 15640, 'bernal': 15641, 'talanc�n': 15642, 'whipping': 15643, 'setpiece': 15644, 'continuum': 15645, 'scripting': 15646, 'israelis': 15647, 'evenhanded': 15648, 'bared': 15649, 'confronted': 15650, 'hundert': 15651, 'agreement': 15652, 'irwins': 15653, 'criminally': 15654, 'mrs': 15655, 'founders': 15656, 'preciousness': 15657, 'half-wit': 15658, 'venerable': 15659, 'dominate': 15660, 'shine': 15661, \"meyjes's\": 15662, \"rothman's\": 15663, 'oppressively': 15664, 'persistently': 15665, 'resuscitation': 15666, 'one-hour': 15667, 'olives': 15668, '1962': 15669, 'garnish': 15670, 'pessimists': 15671, 'marvin': 15672, 'gaye': 15673, 'supremes': 15674, 'anti-erotic': 15675, 'war-movie': 15676, 'sausage': 15677, 'preaching': 15678, \"yvan's\": 15679, 'rambunctious': 15680, 'sister': 15681, 'non-jew': 15682, 'layer': 15683, \"cinephile's\": 15684, 'interpretations': 15685, \"carnahan's\": 15686, 'grimy': 15687, 'manual': 15688, 'precinct': 15689, 'odorous': 15690, '[than': 15691, 'leon]': 15692, \"arm's\": 15693, 'guided': 15694, 'flattens': 15695, 'sharpens': 15696, \"'all\": 15697, 'shifting': 15698, 'chair': 15699, 'mein': 15700, \"tso's\": 15701, 'chicken': 15702, 'attach': 15703, 'cartons': 15704, 'improvisations': 15705, 'cedric': 15706, 'entertainer': 15707, \"perry's\": 15708, 'redeeming': 15709, 'salvos': 15710, 'discernible': 15711, 'lottery': 15712, 'hour-and-a-half': 15713, 'buoy': 15714, 'veered': 15715, 'exxon': 15716, 'overrun': 15717, 'dominated': 15718, 'revigorates': 15719, 'sway': 15720, 'ensues': 15721, 'blood-splattering': 15722, 'mass': 15723, 'drug-induced': 15724, 'evacuations': 15725, 'none-too-funny': 15726, 'distinctions': 15727, 'patronized': 15728, 'freshman': 15729, '[cattaneo]': 15730, 'tougher': 15731, 'prologue': 15732, 'actioners': 15733, 'schmucks': 15734, \"bears'\": 15735, 'hibernation': 15736, 'expeditious': 15737, \"brady's\": 15738, 'spectacularly': 15739, 'virtuoso': 15740, 'throat-singing': 15741, 'waited': 15742, 'breathless': 15743, 'anticipation': 15744, 'hal': 15745, 'pore': 15746, 'eileen': 15747, 'wide-eyed': 15748, 'glinting': 15749, 'pop-influenced': 15750, 'prank': 15751, 'francophiles': 15752, 'snicker': 15753, 'knowingly': 15754, 'chick-flick': 15755, 'pummel': 15756, 'knots': 15757, 'mock-tarantino': 15758, 'scuzbag': 15759, 'depictions': 15760, 'breaking': 15761, 'sappiness': 15762, 'resorts': 15763, 'blooper': 15764, 'thirst': 15765, \"serpent's\": 15766, 'economics': 15767, 'fabulousness': 15768, \"trio's\": 15769, 'charmingly': 15770, \"cryin'\": 15771, 'despondent': 15772, 'commander-in-chief': 15773, 'propels': 15774, 'echelons': 15775, 'frightfest': 15776, 'italicizes': 15777, 'absurdity': 15778, 'inquisitiveness': 15779, 'truffaut': 15780, 'old-time': 15781, 'riddle': 15782, 'well-rounded': 15783, 'rock-solid': 15784, 'bank': 15785, 'robberies': 15786, 'plus': 15787, 'father-and-son': 15788, 'mind--maybe': 15789, \"hickenlooper's\": 15790, 'decomposition': 15791, 'cloak': 15792, 'romanticization': 15793, \"'lovely\": 15794, \"'hypertime'\": 15795, 'grosses': 15796, 'robotic': 15797, 'cozy': 15798, 'deconstructionist': 15799, 'philosopher': 15800, 'brush-up': 15801, 'showed': 15802, 'paved': 15803, \"schnitzler's\": 15804, 'reigen': 15805, 'ingredient': 15806, 'intoxication': 15807, 'swooning': 15808, 'bilked': 15809, 'unsuspecting': 15810, 'screwy': 15811, \"ong's\": 15812, 'well-told': 15813, \"immigrant's\": 15814, 'hackery': 15815, 'hardwood': 15816, 'ugly-looking': 15817, 'swaggers': 15818, 'guillermo': 15819, \"toro's\": 15820, '117': 15821, 'mind-destroying': 15822, 'accumulate': 15823, 'navel': 15824, 'well-formed': 15825, 'action-adventure': 15826, 'space-based': 15827, 'louis': 15828, 'fires': 15829, 'plasma': 15830, 'conduits': 15831, 'occupied': 15832, 'year-end': 15833, 'good-humored': 15834, 'spoiler': 15835, 'four-year-old': 15836, 'recount': 15837, 'embers': 15838, 'dormant': 15839, 'calcified': 15840, 'chronic': 15841, '1978': 15842, 'unearthed': 15843, 'weaker': 15844, 'erotics': 15845, 'unfree': 15846, 'remade': 15847, '1987': 15848, 'scarier': 15849, \"children's-movie\": 15850, 'daydreams': 15851, 'vacant': 15852, \"stiller's\": 15853, 'zoolander': 15854, 'purportedly': 15855, 'slanted': 15856, 's/m': 15857, 'enervating': 15858, 'deadeningly': 15859, 'drawn-out': 15860, 'pursuers': 15861, 'workmanlike': 15862, 're-hash': 15863, 'pretty-boy': 15864, 'laurels': 15865, 'regrettably': 15866, 'nanosecond': 15867, 'scrubbing': 15868, 'emptying': 15869, 'traps': 15870, 'taxes': 15871, 'ex-wife': 15872, 'elicited': 15873, \"period's\": 15874, 'musset': 15875, \"'stock\": 15876, \"marshall's\": 15877, 'freight': 15878, \"s1m0ne's\": 15879, 'didacticism': 15880, 'mystical': 15881, 'entering': 15882, 'church': 15883, 'synagogue': 15884, 'temple': 15885, 'future-world': 15886, 'holographic': 15887, 'orlando': 15888, 'docile': 15889, 'wordless': 15890, 'ethnographic': 15891, 'extras': 15892, 'digital-effects-heavy': 15893, \"'tap\": 15894, 'hardened': 15895, 'voyeur': 15896, 'distressingly': 15897, 'dots': 15898, 'spelled': 15899, 'want': 15900, 'pastry': 15901, 'viterelli': 15902, 'right-hand': 15903, 'goombah': 15904, 'surgical': 15905, 'backhanded': 15906, 'victimized': 15907, 'side-splittingly': 15908, 'legally': 15909, 'blonde': 15910, 'piper': 15911, 'perabo': 15912, 'ensnared': 15913, \"there'll\": 15914, 'outage': 15915, 'screening': 15916, 'seaworthy': 15917, 'thornier': 15918, 'nature/nurture': 15919, 'argument': 15920, 'regards': 15921, 'aidan': 15922, 'bates': 15923, \"desmond's\": 15924, 'eagles': 15925, 'quartet': 15926, 'lolling': 15927, \"'tis\": 15928, 'detox': 15929, 'consumer-advice': 15930, 'ihops': 15931, 'covered': 15932, 'griffin': 15933, \"'butterfingered'\": 15934, 'big-fisted': 15935, 'smallest': 15936, 'sensitivities': 15937, 'clamorous': 15938, 'violated': 15939, 'targets': 15940, 'rowdy': 15941, 'raunch-fests': 15942, 'unmentionables': 15943, 'tested': 15944, 'immaturity': 15945, 'doofus-on-': 15946, 'the-loose': 15947, 'after-hours': 15948, 'participants': 15949, 'lax': 15950, 'meander': 15951, 'worn-out': 15952, 'unwittingly': 15953, 'hard-to-believe': 15954, 'swirl': 15955, \"[grant's]\": 15956, 'belonged': 15957, 'beta': 15958, \"famuyiwa's\": 15959, 'forcing': 15960, 'clich�-riddled': 15961, 'milking': 15962, 'played-out': 15963, 'dress': 15964, 'melodramas': 15965, 'awkwardness': 15966, 'adhering': 15967, 'messiness': 15968, 'inflated': 15969, \"longley's\": 15970, 'matchmaking': 15971, 'mandel': 15972, \"holland's\": 15973, 'phifer': 15974, 'hiv/aids': 15975, 'luminary': 15976, 'u-boat': 15977, 'verite': 15978, 'f': 15979, 'techniques': 15980, 'opulent': 15981, 'lushness': 15982, 'pegged': 15983, 'dating': 15984, \"'issues'\": 15985, 'simplify': 15986, 'infecting': 15987, 'costumer': 15988, 'jived': 15989, 'errol': 15990, 'flynn': 15991, 'bette': 15992, 'extracting': 15993, \"byatt's\": 15994, 'virulently': 15995, 'pyschological': 15996, 'knocks': 15997, 'tryingly': 15998, 'founding': 15999, 'partner': 16000, 'yong': 16001, 'kang': 16002, 'kozmo': 16003, 'growth': 16004, 'snooze': 16005, \"'amateur'\": 16006, '[e]ventually': 16007, 'flushed': 16008, 'latrine': 16009, 'moldering': 16010, 'shift': 16011, 'cleaving': 16012, 'lil': 16013, \"snipes'\": 16014, 'iconic': 16015, 'dozens': 16016, 'reliable': 16017, 'reassures': 16018, 'keenly': 16019, 'promenade': 16020, 'myrtle': 16021, 'adrenaline': 16022, 'jolt': 16023, 'diner': 16024, 'snoots': 16025, 'standbys': 16026, \"'masterpiece'\": 16027, \"'triumph'\": 16028, 'malarkey': 16029, \"viewers'\": 16030, 'gobbler': 16031, 'trippy': 16032, 'nike': 16033, 'satellite': 16034, 'wife/colleague': 16035, 'terri': 16036, 'dearth': 16037, 'epiphanies': 16038, 'snazzy': 16039, 'ensures': 16040, 'investment': 16041, 'rainbow': 16042, '11-year-old': 16043, \"lil'\": 16044, 'mighty': 16045, 'strips': 16046, 'bible': 16047, 'stores': 16048, 'sanctimoniousness': 16049, 'church-wary': 16050, 'newcomer': 16051, 'hamstrung': 16052, 'wearer': 16053, \"'life'\": 16054, 'paint-by-number': 16055, 'jake': 16056, 'dustin': 16057, 'astringent': 16058, 'untidy': 16059, 'quasi-original': 16060, 'pillage': 16061, 'shirley': 16062, 'matheson': 16063, 'puke': 16064, \"abagnale's\": 16065, 'splatterfests': 16066, 'advised': 16067, 'user-friendly': 16068, \"'film\": 16069, 'aggravating': 16070, 'masterpeice': 16071, 'bai': 16072, 'opened': 16073, 'obligada': 16074, 'impotentes': 16075, 'daneses': 16076, 'camareras': 16077, 'italianas': 16078, 'profesores': 16079, 'idiomas': 16080, 'todo': 16081, 'aquel': 16082, 'desee': 16083, 'lengua': 16084, 'expresar': 16085, 'amor': 16086, 'debuter': 16087, \"gayton's\": 16088, 'narcotics': 16089, 'fluidity': 16090, 'uh': 16091, 'zaidan': 16092, 'zeroes': 16093, 'paycheck': 16094, '[taymor]': 16095, 'utilizes': 16096, \"kahlo's\": 16097, 'breathing': 16098, 'catapulting': 16099, 'doubles': 16100, 'two-drink-minimum': 16101, \"'comedian'\": 16102, 'sc2': 16103, 'autopilot': 16104, 'masters': 16105, 'infantilized': 16106, 'freshened': 16107, 'dunce': 16108, 'provokes': 16109, 'howlers': 16110, 'yawns': 16111, 'encyclopedia': 16112, 'shoplifts': 16113, 'farewell-to-innocence': 16114, 'wanderers': 16115, 'bronx': 16116, 'cribbing': 16117, 'dumbfoundingly': 16118, \"rose's\": 16119, 'chicago-based': 16120, 'wireless': 16121, \"charles'\": 16122, \"adams'\": 16123, \"teacher's\": 16124, 'slide': 16125, 'slope': 16126, 'multi-layered': 16127, 'profoundly': 16128, 'humanist': 16129, 'affects': 16130, 'geographical': 16131, 'displacement': 16132, 'pipeline': 16133, 'hitch': 16134, 'b-12': 16135, 'shimmers': 16136, 'bore-athon': 16137, 'raving': 16138, 'labels': 16139, 'dungeons': 16140, \"ventura's\": 16141, 'xfl': 16142, \"[eyre's]\": 16143, 'courting': 16144, 'jokers': 16145, 'kidnappings': 16146, 'alex': 16147, 'travelogue': 16148, 'nc-17': 16149, 'settled': 16150, 'lugubrious': 16151, 'bedeviled': 16152, 'undo': 16153, 'objectionable': 16154, '65-year-old': 16155, '12th': 16156, 'choosing': 16157, 'precision': 16158, 'actuary': 16159, 'ramble': 16160, 'idoosyncratic': 16161, 'terrain': 16162, 'morris': 16163, 'sixties-style': 16164, 'lifelike': 16165, 'tara': 16166, 'reid': 16167, 'comparable': 16168, 'cutout': 16169, 'reverie': 16170, 'spoken': 16171, 'patricio': 16172, \"guzman's\": 16173, 'installation': 16174, 'undoubted': 16175, 'tour-de-force': 16176, 'representing': 16177, \"tavernier's\": 16178, 'bounds': 16179, 'rat-a-tat': 16180, 'maintaining': 16181, 'pig': 16182, 'flails': 16183, 'limply': 16184, 'pallid': 16185, 'well-oiled': 16186, 'upholstered': 16187, 'rhetoric': 16188, \"rifkin's\": 16189, 'fisticuffs': 16190, 'stop-go': 16191, 'rumbles': 16192, 'streamed': 16193, '28k': 16194, 'made-up': 16195, \"'real'\": 16196, 'spader': 16197, 'shainberg': 16198, 'girl-': 16199, 'bristles': 16200, 'freaking': 16201, 'ayala': 16202, 'staid': 16203, 'skirmishes': 16204, 'waged': 16205, 'predators': 16206, 'porthole': 16207, 'adulthood': 16208, 'fraught': 16209, 'bray': 16210, 'framing': 16211, 'wholesale': 16212, 'ineptitude': 16213, 'highfalutin': 16214, 'corkscrew': 16215, 'characters]': 16216, 'mount': 16217, 'picpus': 16218, 'vary': 16219, 'balancing': 16220, 'telegrams': 16221, 'grittily': 16222, 'subzero': 16223, 'inc': 16224, 'texture': 16225, 'blood-soaked': 16226, 'nixon': 16227, 'pivotal': 16228, 'whet': 16229, 'glacier-paced': 16230, 'aberration': 16231, 'blob': 16232, 'infectiously': 16233, \"jason's\": 16234, '2455': 16235, 'messenger': 16236, 'lds': 16237, 'armchair': 16238, 'represented': 16239, 'bottomless': 16240, 'surgeon': 16241, 'mends': 16242, 'meticulously': 16243, 'sedentary': 16244, 'elizabethans': 16245, 'ado': 16246, 'amicable': 16247, 'well-wrought': 16248, 'omits': 16249, 'needless': 16250, 'swordfights': 16251, 'spiritless': 16252, 'ultra-loud': 16253, 'arising': 16254, 'likability': 16255, 'dispossessed': 16256, \"humanity's\": 16257, \"god's\": 16258, 'punishable': 16259, 'proclaim': 16260, 'love-struck': 16261, 'somebodies': 16262, \"heidi's\": 16263, 'talk-show': 16264, 'decrying': 16265, 'fruitful': 16266, \"love'\": 16267, 'epitaph': 16268, 'digitally': 16269, 'in-jokes': 16270, 'lags': 16271, 'lurches': 16272, 'not-very-funny': 16273, 'dramatics': 16274, 'palaver': 16275, 'bundling': 16276, 'perversity': 16277, 'stickiness': 16278, 'sock-you-in-the-eye': 16279, 'locale': 16280, '`martin': 16281, \"live'\": 16282, 'self-pitying': 16283, 'heft': 16284, 'rape-payback': 16285, \"subgenre's\": 16286, 'enabling': 16287, 'ebullient': 16288, 'industrial-model': 16289, 'freezers': 16290, 'eisenstein': 16291, 'giants': 16292, 'hooey': 16293, 'scene-by-scene': 16294, 'poses': 16295, \"'why\": 16296, 'roughly': 16297, 'denver': 16298, 'vanessa': 16299, 'gluing': 16300, 'splendour': 16301, 'metaphoric': 16302, 'scan': 16303, 'trusts': 16304, 'assures': 16305, 'keel': 16306, 'confirming': 16307, 'tongue-tied': 16308, 'deviant': 16309, 'kitchen-sink': 16310, 'field-sized': 16311, 'oriental': 16312, 'girardot': 16313, 'fearlessly': 16314, 'douglas': 16315, \"'nicholas\": 16316, \"nickleby'\": 16317, 'fascist': 16318, 'keener': 16319, 'contrary': 16320, 'charges': 16321, 'ostensible': 16322, 'comienza': 16323, 'intentando': 16324, 'r�pidamente': 16325, 'transforma': 16326, 'comedia': 16327, 'termina': 16328, 'parodia': 16329, 'absolutamente': 16330, 'predecible': 16331, 'reassembled': 16332, 'cutting-room': 16333, 'rymer': 16334, 'conjure': 16335, 'followers': 16336, 'dead-undead': 16337, 'shrieky': 16338, 'fallible': 16339, 'delineate': 16340, 'urges': 16341, 'self-preservation': 16342, \"niccol's\": 16343, 'anti-hollywood': 16344, 'enchantment': 16345, 'backlash': 16346, 'sentimentalist': 16347, 'applegate': 16348, 'posey': 16349, 'suitably': 16350, 'strip': 16351, 'operative': 16352, 'wading': 16353, 'heroic': 16354, 'condone': 16355, 'recently': 16356, 'tortuous': 16357, \"picture's\": 16358, 'schizophrenia': 16359, 'signals': 16360, 'spirituality': 16361, 'show-stoppingly': 16362, 'scathingly': 16363, '94-minute': 16364, 'unparalleled': 16365, \"wit's\": 16366, 'catalyst': 16367, 'restrictive': 16368, 'spotlight': 16369, 'kingdom': 16370, \"weaver's\": 16371, 'discontented': 16372, 'biblical': 16373, \"kline's\": 16374, 'pondering': 16375, 'unnatural': 16376, 'blasts': 16377, 'serials': 16378, \"'30s\": 16379, \"'40s\": 16380, 'dazzles': 16381, 'fully-written': 16382, 'relates': 16383, \"dankworth's\": 16384, 'lavinia': 16385, \"[denis']\": 16386, 'assuredly': 16387, 'cleverest': 16388, 'jazz': 16389, \"zellweger's\": 16390, 'pouty-lipped': 16391, 'poof': 16392, 'spindly': 16393, 'ingenue': 16394, 'knot': 16395, 'head-banging': 16396, 'merci': 16397, 'mcklusky': 16398, 'clanging': 16399, 'honorably': 16400, 'kahlories': 16401, \"benjamins'\": 16402, 'patched': 16403, 'travails': 16404, \"hartley's\": 16405, 'screed': 16406, \"'how\": 16407, 'voyages': 16408, 'limping': 16409, 'dearly-loved': 16410, \"'seeking\": 16411, 'sewing': 16412, 'head-trip': 16413, 'ballhaus': 16414, 'disrespected': 16415, 'classify': 16416, 'stanford': 16417, 'bebe': 16418, 'neuwirth': 16419, 'seduces': 16420, 'intelligentsia': 16421, 'ratchets': 16422, 'doggie': 16423, 'winks': 16424, 'gratingly': 16425, 'groaner': 16426, 'zero-dimensional': 16427, 'butt': 16428, 'pursue': 16429, 'representation': 16430, 'blustery': 16431, 'saigon': 16432, '1952': 16433, 'knitting': 16434, 'needles': 16435, 'disturbed': 16436, 'post-adolescent': 16437, 'electra': 16438, 'iben': 16439, 'hjelje': 16440, 'popping': 16441, 'farrell': 16442, 'outshine': 16443, 'foil': 16444, \"willis's\": 16445, 'world-weary': 16446, 'colonel': 16447, 'over-dramatic': 16448, 'romances': 16449, 'horizons': 16450, 'collapse': 16451, 'dullness': 16452, \"heroine's\": 16453, 'gender-war': 16454, 'squirm': 16455, 'recognition': 16456, 'names': 16457, 'viciously': 16458, \"tian's\": 16459, 'meticulous': 16460, 'withered': 16461, 'enforced': 16462, 'hiatus': 16463, 'indelible': 16464, \"evelyn's\": 16465, 'surehanded': 16466, 'hogs': 16467, 'reasonable': 16468, 'endeavors': 16469, 'adhere': 16470, 'redundancies': 16471, 'inexpressive': 16472, 'contraption': 16473, 'aroused': 16474, 'mideast': 16475, 'perceptively': 16476, 'marking': 16477, 'tracks': 16478, 'glide': 16479, 'voluptuous': 16480, 'rebecca': 16481, 'romijn-stamos': 16482, 'outright': 16483, 'ditched': 16484, 'revelled': 16485, 'shallows': 16486, 'all-powerful': 16487, 'pop-cyber': 16488, 'feeds': 16489, 'bjorkness': 16490, 'wimps': 16491, 'off-screen': 16492, 'perplexing': 16493, 'austrian': 16494, 'suppression': 16495, 'treacle': 16496, 'talkiness': 16497, \"weil's\": 16498, 'co-writer/director': 16499, 'brazil-like': 16500, 'hyper-real': 16501, 'jiri': 16502, \"menzel's\": 16503, 'danis': 16504, \"tanovic's\": 16505, 'emblematic': 16506, 'ageism': 16507, 'afflicting': 16508, 'russians': 16509, 'closed-off': 16510, 'nationalist': 16511, 'scene-chewing': 16512, 'teeth-gnashing': 16513, 'actorliness': 16514, 'puff': 16515, 'intolerance': 16516, 'deform': 16517, 'pantomimesque': 16518, 'sterotypes': 16519, 'loopy': 16520, 'belated': 16521, 'all-stars': 16522, 'informative': 16523, \"makers'\": 16524, 'ba': 16525, 'murdock': 16526, 'a-team': 16527, 'slugs': 16528, 'yankee': 16529, 'planos': 16530, 'fijos': 16531, 'tomas': 16532, 'largas': 16533, 'ritmo': 16534, 'pausado': 16535, 'sutil': 16536, 'observaci�n': 16537, 'estridencias': 16538, 'grandes': 16539, 'revelaciones': 16540, 'post-september': 16541, 'tacky': 16542, 'reprehensible': 16543, 'manipulating': 16544, 'bestowing': 16545, 'unequivocally': 16546, 'musketeer': 16547, 'dumas': 16548, 'witch-': 16549, '52': 16550, 'versions': 16551, \"williams's\": 16552, 'agile': 16553, 'rodan': 16554, \"friggin'\": 16555, \"chai's\": 16556, 'disconcertingly': 16557, 'stereotype': 16558, 'omitted': 16559, 'unsaid': 16560, 'quench': 16561, \"'alabama'\": 16562, 'slowness': 16563, 'perkiness': 16564, 'cynics': 16565, 'steering': 16566, 'knee-jerk': 16567, 'reactions': 16568, 'karen': 16569, 'self-reflexive': 16570, 'bloated': 16571, 'river': 16572, 'plaguing': 16573, 'globalizing': 16574, 'cyber-horror': 16575, 'defeats': 16576, \"'eh\": 16577, \"fresnadillo's\": 16578, 'plying': 16579, 'lusty': 16580, 'savvier': 16581, 'spoofs': 16582, 'lush': 16583, 'liana': 16584, 'dognini': 16585, 'dramatized': 16586, 'irvine': 16587, \"welsh's\": 16588, 'trainspotting': 16589, \"'ah\": 16590, 'belgium': 16591, 'absent': 16592, 'crass-a-thons': 16593, \"'suits'\": 16594, 'all-too': 16595, '-inevitable': 16596, 'scherick': 16597, 'ronn': 16598, 'rambo-': 16599, 'meets-john': 16600, 'shrugging': 16601, 'persnickety': 16602, 'hire': 16603, 'neeson': 16604, 'capably': 16605, 'resnick': 16606, 'cabin': 16607, 'pound': 16608, 'corniest': 16609, \"asquith's\": 16610, 'acclaimed': 16611, \"[raimi's]\": 16612, 'matured': 16613, 'toast': 16614, \"harrison's\": 16615, 'middle-class': 16616, 'damaged-goods': 16617, 'bottom-of-the-bill': 16618, '[t]his': 16619, 'slop': 16620, \"alzheimer's\": 16621, \"piccoli's\": 16622, 'broke': 16623, 'choreography': 16624, 'snapping': 16625, 'conspiracies': 16626, 'apartheid': 16627, 'tissue-thin': 16628, 'aquatic': 16629, 'baja': 16630, 'peninsula': 16631, 'mexico': 16632, \"[assayas']\": 16633, 'gallic': 16634, \"'tradition\": 16635, 'fusty': 16636, 'squareness': 16637, 'asinine': 16638, \"'twist'\": 16639, 'full-fledged': 16640, 'o2-tank': 16641, 'deportment': 16642, 'pertinent': 16643, '[city]': 16644, 'lucratively': 16645, 'self-caricature': 16646, \"this'\": 16647, 'kraft': 16648, 'macaroni': 16649, 'brightly': 16650, 'duo': 16651, 'marquee': 16652, 'intention': 16653, 'saps': 16654, 'inarticulate': 16655, 'action-filled': 16656, 'thrilled': 16657, 'grandness': 16658, 'equalizer': 16659, 'ills': 16660, 'favorites': 16661, 'interlocked': 16662, 'matt': 16663, 'residuals': 16664, 'completes': 16665, 'hunting': 16666, 'addams': 16667, 'examined': 16668, 'germany': 16669, 'undermined': 16670, \"ahola's\": 16671, 'inadequate': 16672, 'declines': 16673, 'winningly': 16674, \"'frailty\": 16675, 'transformed': 16676, 'thinnest': 16677, 'margins': 16678, 'skolnick': 16679, 'playbook': 16680, 'helpings': 16681, 'dawns': 16682, 'crises': 16683, 'ceremonies': 16684, 'cotswolds': 16685, 'star-making': 16686, 'machinery': 16687, 'tinseltown': 16688, 'slopped': 16689, '�em': 16690, 'resolute': 16691, 'nakedness': 16692, \"rogers's\": 16693, 'sexes': 16694, \"culture's\": 16695, 'millennial': 16696, 'undying': 16697, 'politesse': 16698, 'stoner': 16699, 'deconstruction': 16700, 'sanguine': 16701, '[at': 16702, 'least]': 16703, 'ganesh': 16704, 'midlevel': 16705, 'metaphorically': 16706, 'detachment': 16707, 'custom-made': 16708, 'elie': 16709, 'subjugate': 16710, 'tear-jerking': 16711, 'frenzied': 16712, 'click': 16713, 'sub-music': 16714, 'self-possessed': 16715, 'frat-boy': 16716, 'bowser': 16717, 'ascertain': 16718, 'oversexed': 16719, 'forty': 16720, 'degenerates': 16721, 'hogwash': 16722, 'describing': 16723, 'elliptical': 16724, 'methodically': 16725, 'communicating': 16726, 'temerity': 16727, 'winding': 16728, 'wisecracking': 16729, 'universos': 16730, 'complementares': 16731, 'igualmente': 16732, 'fascinantes': 16733, 'peaked': 16734, 'assesses': 16735, 'cloudy': 16736, 'becalmed': 16737, 'thoughtlessly': 16738, 'delibrately': 16739, 'obtuse': 16740, 'unapproachable': 16741, 'super-': 16742, 'super-serious': 16743, 'super-stupid': 16744, 'dull-witted': 16745, 'disquietingly': 16746, 'encomia': 16747, 'stuffs': 16748, 'henna': 16749, 'ornamentation': 16750, 'privates': 16751, 'non-bondish': 16752, 'ruzowitzky': 16753, 'mothball-y': 16754, 'grumble': 16755, 'miniseries': 16756, 'ninth': 16757, 'principles': 16758, 'pointedly': 16759, 'peril': 16760, 'sleep-deprived': 16761, 'dormer': 16762, 'weariness': 16763, 'misconceived': 16764, 'cinephile': 16765, 'andrei': 16766, 'distill': 16767, 'handsomely': 16768, 'capsule': 16769, 'appropriated': 16770, 'teen-exploitation': 16771, 'tug-of-war': 16772, 'open-endedness': 16773, 'darling': 16774, 'kids-and-family-oriented': 16775, 'boyz': 16776, 'strives': 16777, 'categorisation': 16778, 'horrifies': 16779, 'startles': 16780, 'bearable': 16781, 'skittish': 16782, 'middle-agers': 16783, 'furiously': 16784, 'combatants': 16785, \"cam'ron\": 16786, 'seal': 16787, \"ice-t's\": 16788, \"cool-j's\": 16789, 'shootings': 16790, 'truckzilla': 16791, \"something's\": 16792, 'self-image': 16793, 'drooling': 16794, 'disease-of-': 16795, 'the-week': 16796, 'infinitely': 16797, 'wrenching': 16798, 'sub-formulaic': 16799, \"oedekerk's\": 16800, 'impish': 16801, 'augmentation': 16802, 'blobby': 16803, 'superlarge': 16804, 'choppiness': 16805, 'wwf': 16806, 'related': 16807, 'butchered': 16808, \"tartakovsky's\": 16809, 'freakish': 16810, 'smothered': 16811, 'chasing': 16812, 'outweighs': 16813, 'nifty': 16814, 'execrable': 16815, 'pg-rated': 16816, 'nonthreatening': 16817, 'short-story': 16818, 'touchingly': 16819, 'mending': 16820, 'communication': 16821, 'eudora': 16822, 'welty': 16823, 'irritates': 16824, 'saddens': 16825, 'obnoxiously': 16826, '500': 16827, 'bubba': 16828, \"ho-tep's\": 16829, 'languishing': 16830, \"suffer'\": 16831, 'insensitive': 16832, 'hurting': 16833, 'columns': 16834, \"begley's\": 16835, 'admirers': 16836, 'relieved': 16837, 'xmas': 16838, 'creaky': 16839, 'staircase': 16840, 'contents': 16841, 'samurai': 16842, 'sword': 16843, 'jiang': 16844, 'joseph': 16845, 'heller': 16846, 'vonnegut': 16847, 'classification': 16848, 'smartest': 16849, \"kaufmann's\": 16850, 'unsettlingly': 16851, 'memento': 16852, 'longley': 16853, 'horrifically': 16854, 'turbulent': 16855, 'glitz': 16856, 'quelle': 16857, 'pencil-thin': 16858, \"'swimfan'\": 16859, 'contentedly': 16860, 'campus': 16861, 'defend': 16862, 'frothing': 16863, 'ex-girlfriend': 16864, \"domino's\": 16865, 'bonehead': 16866, 'rudd': 16867, 'therapy-dependent': 16868, 'flakeball': 16869, 'spouting': 16870, 'malapropisms': 16871, 'blushing': 16872, 'gushing---imamura': 16873, 'squirts': 16874, '�warm': 16875, \"bridge'\": 16876, 'discerning': 16877, 'tea': 16878, 'stuffiest': 16879, 'goers': 16880, 'biscuit': 16881, 'surface-effect': 16882, 'zishe': 16883, 'fiery': 16884, 'hanussen': 16885, \"1994's\": 16886, \"sarah's\": 16887, 'psychotic': 16888, 'marveled': 16889, 'flames': 16890, 'hand-drawn': 16891, 'disney-style': 16892, 'wing': 16893, 'prayer': 16894, 'hunky': 16895, 'pursuing': 16896, 'castle': 16897, 'sky': 16898, \"ya-ya's\": 16899, 'translating': 16900, 'divorce': 16901, 'earthly': 16902, 'stoop': 16903, 'punitive': 16904, 'eardrum-dicing': 16905, 'screeching-metal': 16906, 'smashups': 16907, 'odd-couple': 16908, 'sniping': 16909, 'column': 16910, 'jacket': 16911, 'intergalactic': 16912, 'unifying': 16913, 'freak': 16914, 'mercenary': 16915, 'categorization': 16916, 'scoring': 16917, 'authors': 16918, 'battista': 16919, 'directress': 16920, 'judith': 16921, \"zaza's\": 16922, 'self-revealing': 16923, 'hysterics': 16924, 'nadir': 16925, 'thriller/horror': 16926, \"keep-'em-guessing\": 16927, 'screwed-up': 16928, 'cared': 16929, 'grayish': 16930, 'coma-like': 16931, 'apesar': 16932, 'seus': 16933, 'problemas': 16934, 'consegue': 16935, 'entreter': 16936, \"ali's\": 16937, 'graduation': 16938, 'over-amorous': 16939, 'terrier': 16940, 'dazed': 16941, 'enervated': 16942, 'drenched-in-the-': 16943, 'numbness': 16944, 'taxing': 16945, 'bowel-curdling': 16946, 'heart-stopping': 16947, 'arguing': 16948, 'greene': 16949, 'matched': 16950, 'schweig': 16951, 'badge': 16952, 'squalor': 16953, 'fetishism': 16954, 'abderrahmane': 16955, \"sissako's\": 16956, 'heremakono': 16957, 'elegiac': 16958, 'transit': 16959, 'cleanflicks': 16960, \"'love\": 16961, 'ali': 16962, \"macgraw's\": 16963, 'profanities': 16964, 'romance-novel': 16965, 'restate': 16966, 'secretly': 16967, 'unhinged': 16968, 'instilling': 16969, \"'there\": 16970, 'wretchedly': 16971, 'sl2': 16972, 'texan': 16973, 'ratliff': 16974, 'meetings': 16975, 'channel-style': 16976, 'anthology': 16977, 'enron': 16978, 'woodman': 16979, 'subtleties': 16980, \"ramsay's\": 16981, 'newly': 16982, 'automated': 16983, 'yourselves': 16984, 'conned': 16985, 'merrily': 16986, 'trickery': 16987, 'middle-earth': 16988, 'disappear': 16989, 'boiling': 16990, 'thinly-conceived': 16991, \"helms'\": 16992, 'anti-': 16993, 'eternal': 16994, 'pique': 16995, 'disgust': 16996, 'scorchingly': 16997, 'headlines': 16998, '1995': 16999, 'capturou': 17000, 'pomo': 17001, 'ouro': 17002, \"shearer's\": 17003, 'radio': 17004, 'simpson': 17005, 'voice-overs': 17006, 'comprehend': 17007, 'chasm': 17008, 'shabby': 17009, 'piles': 17010, 'amorality': 17011, 'surfacey': 17012, 'kid-vid': 17013, 'lashing': 17014, 'oft-described': 17015, 'pie-type': 17016, 'bundle': 17017, 'diffuses': 17018, \"mid-'90s\": 17019, 'holidays': 17020, 'silberling': 17021, 'ill-considered': 17022, \"hitler's\": 17023, 'least--annoying': 17024, 'shapiro': 17025, 'goldman': 17026, 'bolado': 17027, 'pawn': 17028, 'disabilities': 17029, 'instigator': 17030, 'modus': 17031, 'operandi': 17032, 'crucifixion': 17033, 'honorable': 17034, 'even-toned': 17035, 'pro-fat': 17036, 'preprogrammed': 17037, 'witch-style': 17038, 'mockumentary': 17039, 'gut-clutching': 17040, 'advocacy': 17041, 'torrent': 17042, 'solely': 17043, 'minimally': 17044, 'ankle-deep': 17045, \"'epic\": 17046, 'best-foreign-film': 17047, 'nonchallenging': 17048, 'puzzlement': 17049, 'symbolizes': 17050, 'ministers': 17051, 'bible-study': 17052, 'discuss': 17053, \"nothing's\": 17054, 'away--still': 17055, 'soliloquies': 17056, 'framed': 17057, 'goldbacher': 17058, 'coriat': 17059, 'coinage': 17060, 'pipe': 17061, 'sleaziness': 17062, 'traveled': 17063, 'devastated': 17064, 'famine': 17065, 'documented': 17066, 'cruelty': 17067, 'insignificance': 17068, 'whiffle-ball': 17069, 'appreciative': 17070, 'hurried': 17071, '1959': 17072, 'commenting': 17073, 'boosterism': 17074, 'pop-induced': 17075, '[has]': 17076, 'wall-to-wall': 17077, 'toe-tapping': 17078, 'wim': 17079, 'wenders': 17080, 'auteil': 17081, 'emilie': 17082, 'besco': 17083, '1957': 17084, 'ruh-roh': 17085, \"romething's\": 17086, 'ricture': 17087, 'papin': 17088, 'josef': 17089, 'bierbichler': 17090, 'monica': 17091, 'bleibtreu': 17092, 'helene': 17093, 'weigel': 17094, 'turntablists': 17095, 'jugglers': 17096, 'schoolers': 17097, 'innovators': 17098, 'documenting': 17099, 'blips': 17100, 'mcdowell': 17101, 'scorn': 17102, \"jacobson's\": 17103, 'bona-fide': 17104, 'plumbed': 17105, '75': 17106, 'columbia': 17107, \"pictures'\": 17108, 'payoffs': 17109, 'wildcard': 17110, 'provoked': 17111, \"picture'\": 17112, 'bloodwork': 17113, 'unrewarding': 17114, 'collar': 17115, 'tit-for-tat': 17116, 'retaliatory': 17117, 'responses': 17118, 'plug': 17119, 'conspirators': 17120, 'american-russian': 17121, 'armageddon': 17122, 'spooks': 17123, 'flatula': 17124, 'advises': 17125, 'denlopp': 17126, 'bubbly': 17127, 'exchange': 17128, 'deckhand': 17129, 'updatings': 17130, \"silver's\": 17131, 'parrot': 17132, 'morph': 17133, 'mimics': 17134, 'philandering': 17135, 'diminishes': 17136, 'enthusiasts': 17137, 'costumey': 17138, 'prevention': 17139, 'cries': 17140, 'subservient': 17141, \"bond's\": 17142, 'gadgets': 17143, 'brandishing': 17144, 'seductiveness': 17145, 'viability': 17146, 'special-effects': 17147, 'prequel': 17148, 'slovenly': 17149, 'stoic': 17150, 'get-out': 17151, 'intimidate': 17152, 'guilty-pleasure': 17153, \"so-bad-it's-funny\": 17154, 'horror/thriller': 17155, 'well-known': 17156, 'preconceived': 17157, 'connecting': 17158, 'giggle': 17159, 'lowered': 17160, 'christ': 17161, 'holistic': 17162, 'crackerjack': 17163, 'artsploitation': 17164, 'decent-enough': 17165, 'nail-biter': 17166, 'slickest': 17167, \"'praise\": 17168, \"chances'\": 17169, 'sabotaged': 17170, 'pomposity': 17171, 'usurp': 17172, 'gutless': 17173, 'laurice': 17174, 'tons': 17175, 'dwellers': 17176, 'heart-pounding': 17177, \"thriller'\": 17178, 'flopped': 17179, 'souffl�': 17180, 'fitting': 17181, 'memorial': 17182, 'thereafter': 17183, \"critics'\": 17184, 'ga-zillionth': 17185, 'measures': 17186, 'cineasts': 17187, 'harvey': 17188, \"weinstein's\": 17189, 'bluff': 17190, \"denmark's\": 17191, 'heart-felt': 17192, 'disassociation': 17193, 'disoriented': 17194, 'wonderland': 17195, 'hews': 17196, 'raindrop': 17197, 'seigner': 17198, 'serrault': 17199, 'naturalism': 17200, 'monologues': 17201, 'dosage': 17202, 'jackass': 17203, 'entree': 17204, 'aboriginal': 17205, 'graced': 17206, 'papa': 17207, 'suspending': 17208, \"sommers's\": 17209, 'title-bout': 17210, 'pseudo-bio': 17211, 'doles': 17212, 'mismatched': 17213, 'percentages': 17214, 'bang-bang': 17215, 'shoot-em-up': 17216, 'wide-awake': 17217, 'curling': 17218, 'grossest': 17219, 'single-mindedly': 17220, 'plagued': 17221, \"'let's\": 17222, \"with'\": 17223, 'appointed': 17224, 'viewings': 17225, 'studio-produced': 17226, 'bothers': 17227, 'suitcase': 17228, 'departs': 17229, '4w': 17230, 'quixotic': 17231, 'comfortably': 17232, 'e-graveyard': 17233, \"chin's\": 17234, 'heinous': 17235, 'subjected': 17236, 'poo': 17237, 'pee': 17238, 'every-joke-has-': 17239, 'been-told-a-': 17240, 'thousand-times-': 17241, \"`matrix'-style\": 17242, 'massacres': 17243, 'erupt': 17244, 'kafka-inspired': 17245, 'portal': 17246, 'prescient': 17247, 'sociopaths': 17248, \"anymore'\": 17249, 'afforded': 17250, 'clint': 17251, \"springsteen's\": 17252, 'gone-to-pot': 17253, 'asbury': 17254, 'sad-sack': 17255, 'dynamism': 17256, \"'solid'\": 17257, 'ridley': 17258, 'monkeyfun': 17259, \"finch's\": 17260, 'triple-espresso': 17261, 'naivet�': 17262, 'prints': 17263, 'defuses': 17264, 'submerging': 17265, 'techno-horror': 17266, 'clambake': 17267, 'newsreels': 17268, 'psychedelia': 17269, 'snagged': 17270, 'correctly': 17271, 'overcooked': 17272, 'baked': 17273, 'mcdormand': 17274, 'movie�if': 17275, 'not-at-all-good': 17276, 'unfairly': 17277, 'fabricated': 17278, \"schaefer's\": 17279, 'awed': 17280, 'sportsmen': 17281, \"lapaglia's\": 17282, 'two-actor': 17283, 't�m': 17284, 'in�cio': 17285, 'sa�mos': 17286, 'come�amos': 17287, 'sobre': 17288, 'acabamos': 17289, 'ent�o': 17290, 'sinais': 17291, 'realmente': 17292, 'desaponta': 17293, 'expulsion': 17294, \"'james\": 17295, \"generation'\": 17296, 'utilizing': 17297, 'concentrate': 17298, \"sea's\": 17299, '1/2-hour': 17300, 'dissipated': 17301, 'creature-feature': 17302, 'chemicals': 17303, 'comparatively': 17304, 'seedy': 17305, 'strangest': 17306, \"cacoyannis'\": 17307, 'interpreting': 17308, 'phantasms': 17309, 'pasts': 17310, \"[i]t's\": 17311, 'professes': 17312, 'giddily': 17313, 'circular': 17314, 'jams': 17315, 'prefabricated': 17316, 'mistakenly': 17317, 'reporters': 17318, 'willingly': 17319, 'posterity': 17320, 'gourmet': 17321, 'drive-thru': 17322, 'faulted': 17323, 'character-oriented': 17324, 'eternity': 17325, 'upset': 17326, 'peeved': 17327, 'abrupt': 17328, 'discouraging': 17329, \"writer-director's\": 17330, \"mehta's\": 17331, 'ya-yas': 17332, 'suspects': 17333, 'endorses': 17334, 'overdose': 17335, 'troll': 17336, \"'solaris'\": 17337, \"idol's\": 17338, 'faultlessly': 17339, 'tides': 17340, 'stitched': 17341, 'lector': 17342, \"auteur's\": 17343, 'ho-tep': 17344, 'bravura': 17345, 'sleazy': 17346, 'diluted': 17347, 'spawned': 17348, 'audience-pleaser': 17349, \"doctor's\": 17350, 'emergency': 17351, 'arkansas': 17352, 'truck-loving': 17353, 'peroxide': 17354, 'blond': 17355, 'honeys': 17356, 'worldly': 17357, 'reruns': 17358, 'supermarket': 17359, 'tabloids': 17360, 'pro': 17361, 'portraits': 17362, 'indians': 17363, 'mush': 17364, 'conceited': 17365, 'spin-off': 17366, 'opportunism': 17367, 'unforgivably': 17368, 'fortified': 17369, 'commonplace': 17370, 'seamy': 17371, 'underbelly': 17372, 'lina': 17373, 'eroti-comedy': 17374, 'husband-and-wife': 17375, 'bo': 17376, 'derek': 17377, 'picaresque': 17378, 'little-remembered': 17379, 'cranky': 17380, '[lee]': 17381, 'credulous': 17382, 'subordinate': 17383, 'expectant': 17384, 'adoring': 17385, 'wide-smiling': 17386, 'reception': 17387, 'gyro': 17388, \"vardalos'\": 17389, 'disappoints': 17390, \"admission's\": 17391, 'brine': 17392, 'sogginess': 17393, 'fringe': 17394, 'feminist': 17395, 'theorist': 17396, 'ravaged': 17397, 'garden': 17398, \"fuhrman's\": 17399, 'grace-in-rebellion': 17400, 'transports': 17401, 'dilbert': 17402, 'right-on': 17403, 'minkoff': 17404, 'rubin': 17405, 'lent': 17406, 'decay': 17407, 'self-parody': 17408, 'pop-music': 17409, 'flabby': 17410, 'toback': 17411, 'skilled': 17412, \"housekeeping's\": 17413, 'unsavory': 17414, 'mentality': 17415, 'unimpressively': 17416, 'water-camera': 17417, 'operating': 17418, \"stone's\": 17419, 'star-studded': 17420, 'underpinnings': 17421, 'videodrome': 17422, 'infuriatingly': 17423, 'arouse': 17424, 'unknowing': 17425, \"eyre's\": 17426, 'dramatist': 17427, 'convict': 17428, 'movie--dumb': 17429, \"thing'\": 17430, \"'scream\": 17431, 'derails': 17432, 'doofus': 17433, '50-year-old': 17434, 'opposing': 17435, 'viewpoints': 17436, 'toasts': 17437, 'testimonial': 17438, 'art-conscious': 17439, 'woodland': 17440, 'pseudo-educational': 17441, 'trauma': 17442, 'reportedly': 17443, 'rewritten': 17444, 'dozen': 17445, 'simpsons': 17446, \"abc's\": 17447, 'whopping': 17448, 'shootouts': 17449, \"lyne's\": 17450, 'eroded': 17451, 'skateboarder': 17452, 'bmx': 17453, 'rider': 17454, 'mat': 17455, 'turks': 17456, 'angling': 17457, 'pancakes': 17458, 'all-star': 17459, 'reunions': 17460, 'gosford': 17461, 'tart': 17462, 'tact': 17463, \"harmon's\": 17464, 'daunting': 17465, 'terrorizing': 17466, \"klein's\": 17467, 'evolves': 17468, 'cruelties': 17469, 'blacks': 17470, 'distilled': 17471, 'caucasian': 17472, 'dilettante': 17473, 'claire': 17474, 'noticeable': 17475, 'dead-end': 17476, 'worried': 17477, 'gimmicks': 17478, 'adamant': 17479, 'streak': 17480, 'warm-blooded': 17481, 'denizens--especially': 17482, 'conditioned': 17483, 'saucer-eyed': 17484, 'downy-cheeked': 17485, 'moppets': 17486, 'caretakers': 17487, 'sugar-free': 17488, 'pegs': 17489, 'bergman': 17490, 'fatalism': 17491, \"larson's\": 17492, 'contend': 17493, 'inexorable': 17494, 'passage': 17495, 'sainthood': 17496, 'sticky-sweet': 17497, 'restless': 17498, 'leniency': 17499, 'shadings': 17500, 'coloring': 17501, \"'garth'\": 17502, 'progressed': 17503, \"'wayne\": 17504, 'groupie/scholar': 17505, 'broadside': 17506, 'randolph': 17507, \"'silence\": 17508, \"lambs'\": 17509, \"'hannibal'\": 17510, 'judaism': 17511, 'sub-aquatic': 17512, 'freebie': 17513, 'third-best': 17514, 'runner-up': 17515, \"meyer's\": 17516, 'vi': 17517, 'undiscovered': 17518, 'ambitiously': 17519, 'abused': 17520, 'autistic': 17521, 'burlesque': 17522, 'infamy': 17523, 'kid-empowerment': 17524, 'peso': 17525, 'l�quido': 17526, 'incoloro': 17527, 'vida': 17528, 'muerte': 17529, 'beer-soaked': 17530, 'ownership': 17531, 'redefinition': 17532, 'unit': 17533, 'smokey': 17534, \"kerrigan's\": 17535, 'platinum-blonde': 17536, 'stoke': 17537, '24-and-unders': 17538, 'caddyshack': 17539, 'ryosuke': 17540, 'languidly': 17541, 'moldy-oldie': 17542, 'not-nearly': 17543, '-as-nasty': 17544, '-as-it-': 17545, 'thinks-it-is': 17546, 'laundry': 17547, 'lapping': 17548, 'corn': 17549, 'thekids': 17550, 'kaleidoscope': 17551, 'naptime': 17552, \"wells'\": 17553, 'great-grandson': 17554, 'orson': 17555, \"welles'\": 17556, 'embodies': 17557, 'regal': 17558, 'hooliganism': 17559, 'double-barreled': 17560, \"tarantino's\": 17561, 'shootout': 17562, 'loaf': 17563, 'explodes': 17564, 'stranger': 17565, 'manically': 17566, 'vaudeville': 17567, 'hidden-agenda': 17568, 'shouts': 17569, 'emigre': 17570, 'elude': 17571, 'nationally': 17572, 'assaults': 17573, 'upheaval': 17574, 'costars': 17575, 'feed': 17576, 'spates': 17577, 'spaghetti': 17578, 'hipness': 17579, 'horror/action': 17580, 'temptations': 17581, 'unleashed': 17582, 'crazed': 17583, 'one-night': 17584, 'ocean': 17585, 'concealment': 17586, \"tykwer's\": 17587, \"kieslowski's\": 17588, 'pessimism': 17589, 'aspired': 17590, 'traffics': 17591, 'encumbers': 17592, 'eloquently': 17593, 'symbiotic': 17594, 'crave': 17595, 'connected': 17596, 'clique': 17597, 'rueful': 17598, 'indian-american': 17599, \"branagh's\": 17600, 'curmudgeonly': 17601, 'dramedy': 17602, 'improbably': 17603, 'forbearing': 17604, 'child-rearing': 17605, 'angeles': 17606, 'stomping': 17607, 'untuned': 17608, 'instruments': 17609, 'lewd': 17610, 'useful': 17611, 'quintessentially': 17612, 'drama/character': 17613, 'newness': 17614, 'mentioned': 17615, \"c'mon\": 17616, 'inflict': 17617, 'reputations': 17618, 'siberian': 17619, 'sheep': 17620, 'hosts': 17621, 'parka-wrapped': 17622, 'wash': 17623, 'side-by-side': 17624, 'platter': 17625, 'hard-to-swallow': 17626, 'adept': 17627, 'perplexed': 17628, 'edifying': 17629, 'nada': 17630, 'addictive': 17631, \"scarlet's\": 17632, 'intermediary': 17633, 'rag-tag': 17634, \"can't-miss\": 17635, 'lampoons': 17636, 'skin-deep': 17637, 'lucks': 17638, 'anteing': 17639, 'fetching': 17640, \"mcconaughey's\": 17641, 'okay': 17642, 'slain': 17643, 'taunt': 17644, '-a': 17645, 'recovered': 17646, 'wavers': 17647, 'cellular': 17648, 'weeping': 17649, 'st': 17650, 'rams': 17651, 'halftime': 17652, 'harps': 17653, 'media-constructed': 17654, 'self�': 17655, \"[won't\": 17656, 'an]': 17657, 'straight-shooting': 17658, 'servitude': 17659, 'well-developed': 17660, 'interacting': 17661, 'eyeball-to-eyeball': 17662, 'toe-to-toe': 17663, \"dragon'\": 17664, 'noses': 17665, 'elfriede': 17666, \"jelinek's\": 17667, 'unmotivated': 17668, 'inconclusive': 17669, 'salvation': 17670, \"tyson's\": 17671, 'embarrassingly': 17672, 'reek': 17673, 'rewrite': 17674, 'garner': 17675, 'cooler': 17676, 'knucklehead': 17677, 'replace': 17678, 'procedural': 17679, 'wanders': 17680, 'distanced': 17681, 'decommissioned': 17682, 'clocks': 17683, 'infirmity': 17684, 'heart-string': 17685, 'mods': 17686, 'rockers': 17687, 'once-over': 17688, 'antagonism': 17689, 'jerusalem': 17690, 'join': 17691, 'monster/science': 17692, 'amir': 17693, '70s': 17694, 'irrevocably': 17695, 'handsome-looking': 17696, 'reimagine': 17697, \"soul's-eye\": 17698, 'masked': 17699, 'injustice': 17700, 'greenfingers': 17701, 'familia': 17702, 'lealtad': 17703, 'traici�n': 17704, 'seguramente': 17705, 'convertir�': 17706, 'nuevo': 17707, 'life-embracing': 17708, '[haneke]': 17709, 'disagreeable': 17710, \"bride's\": 17711, 'cherished': 17712, 'three-ring': 17713, 'aplenty': 17714, 'wasp': 17715, 'matron': 17716, 'harshness': 17717, 'throat': 17718, 'snake': 17719, 'petrovich': 17720, 'comeuppance': 17721, 'bots': 17722, 'fontaine': 17723, 'male-ridden': 17724, 'blockage': 17725, 'self-mocking': 17726, 'estrogen-free': 17727, 'gonna': 17728, 'big-time': 17729, 'get-go': 17730, 'invulnerable': 17731, 'playoff': 17732, 'degrades': 17733, 'responsive': 17734, 'koreans': 17735, 'attacking': 17736, 'delighted': 17737, 'self-dramatizing': 17738, 'choke': 17739, 'canter': 17740, 'fictions': 17741, 'peddled': 17742, \"'have-yourself-a-happy-little-holocaust'\": 17743, 'jakob': 17744, 'unsuspenseful': 17745, 'inauspicious': 17746, 'mopes': 17747, 'meanderings': 17748, 'model': 17749, \"'quit\": 17750, 'iteration': 17751, 'developmentally': 17752, 'disabled': 17753, 'light-years': 17754, 'samantha': 17755, 'apocalypse': 17756, \"mcfarlane's\": 17757, 'outlet': 17758, 'flick-knife': 17759, 'diction': 17760, 'swanson': 17761, \"don'\": 17762, 'orc': 17763, 'uruk-hai': 17764, 'photographer': 17765, 'hates': 17766, 'empathizes': 17767, 'gnat': 17768, 'racehorse': 17769, 'toothless': 17770, 'well-behaved': 17771, 'ticks': 17772, 'milestones': 17773, 'tax': 17774, 'accountant': 17775, 'piercingly': 17776, 'reheated': 17777, 'delirious': 17778, 'komediant': 17779, 'wimp': 17780, 'cried': 17781, 'respons�vel': 17782, 'direto': 17783, 'fracasso': 17784, \"'art�stico'\": 17785, 'doce': 17786, 'lar': 17787, 'sequer': 17788, 'aproveitar': 17789, 'pouqu�ssimos': 17790, 'escapa': 17791, 'mediocridade': 17792, 'battery': 17793, 'attachment': 17794, 'depress': 17795, 'mysticism': 17796, 'non-god': 17797, 'spiritual-uplift': 17798, 'motocross': 17799, 'riders': 17800, 'balletic': 17801, 'hotdogging': 17802, 'bone-crushing': 17803, 'screwups': 17804, \"'yes\": 17805, 'forrest': 17806, 'gump': 17807, \"boat's\": 17808, 'malediction': 17809, 'coy': 17810, 'ving': 17811, 'rhames': 17812, 'long-faced': 17813, 'schultz': 17814, 'repetitions': 17815, 'predict': 17816, 'self-destructive': 17817, 'exploratory': 17818, 'procedure': 17819, 'naval': 17820, 'personnel': 17821, 'diego': 17822, 'welled': 17823, 'near-fatal': 17824, \"'too\": 17825, 'bailly': 17826, 'inanity': 17827, 'datedness': 17828, 'off-the-cuff': 17829, 'hermitage': 17830, 'elaborateness': 17831, 'elan': 17832, 'praised': 17833, 'equate': 17834, 'obscurity': 17835, '[frames]': 17836, 'quibbles': 17837, 'mccracken': 17838, 'disease-of-the-week': 17839, 'katherine': 17840, 'twinkly-eyed': 17841, 'close-ups': 17842, 'altered': 17843, 'monitor': 17844, 'noodle': 17845, 'whirl': 17846, 'age-inspired': 17847, 'gone-to-seed': 17848, 'evenings': 17849, 'disconnected': 17850, 'high-buffed': 17851, 'scenarios': 17852, 'triumphantly': 17853, 'sermonize': 17854, 'debris': 17855, 'four-star': 17856, 'unwary': 17857, 'melville': 17858, 'tuna': 17859, 'vivi': 17860, 'welsh': 17861, 'lagging': 17862, 'unholy': 17863, \"meyjes'\": 17864, 'haphazardness': 17865, 'sucker-punch': 17866, 'beause': 17867, 'non-threatening': 17868, 'justifying': 17869, 'auto-critique': 17870, 'clumsiness': 17871, 'censure': 17872, \"'rare\": 17873, \"birds'\": 17874, 'shoestring': 17875, 'unevenly': 17876, 'lynch-like': 17877, 'ally': 17878, 'mcbeal-style': 17879, 'peerlessly': 17880, 'hard-to-predict': 17881, 'down-to-earth': 17882, 'nonchalant': 17883, 'meshes': 17884, 'tail': 17885, 'pay-off': 17886, \"breen's\": 17887, 'actorish': 17888, 'notations': 17889, 'margin': 17890, \"�direct-to-video'\": 17891, 'slice-of-depression': 17892, 'half-assed': 17893, 'extrusion': 17894, 'row': 17895, 'dogme': 17896, 'gambol': 17897, 'fluidly': 17898, 'dim': 17899, 'echo': 17900, 'fifteen': 17901, 'semi-humorous': 17902, 'control-alt-delete': 17903, 'persuasion': 17904, 'bob': 17905, 'crane': 17906, 'cynic': 17907, 'overripe': 17908, 'interact': 17909, 'willie': 17910, 'unnamed': 17911, 'substitutable': 17912, 'hushed': 17913, \"avary's\": 17914, \"ellis'\": 17915, 'occurrences': 17916, 'blondes': 17917, '[diggs]': 17918, 'complaining': 17919, 'specialized': 17920, 'pug': 17921, 'trimmings�arrive': 17922, 'minute�with': 17923, 'impudent': 17924, 'snickers': 17925, \"humankind's\": 17926, 'liberties': 17927, 'goofiest': 17928, 'arthritic': 17929, 'callie': 17930, 'unwrapped': 17931, 'meatballs': 17932, 'bare-midriff': 17933, 'frei': 17934, 'assembles': 17935, 'communicate': 17936, 'hem': 17937, 'hems': 17938, 'fastidiousness': 17939, 'ellefsen': 17940, 'frailties': 17941, 'magnified': 17942, 'vex': 17943, 'mellow': 17944, 'peace-and-love': 17945, 'counterculture': 17946, 'simmer': 17947, 'halos': 17948, 'serendipity': 17949, 'simpler': 17950, 'leaner': 17951, 'preferable': 17952, 'mongrel': 17953, 'pep': 17954, 'thunderous': 17955, 'cadences': 17956, 'finesse': 17957, 'shortage': 17958, 'agonizing': 17959, 'gazes': 17960, 'equilibrium': 17961, 'mood-altering': 17962, 'envisioned': 17963, 'chemists': 17964, '1949': 17965, 'trey': 17966, 'molestation': 17967, 'joint': 17968, 'promotion': 17969, 'association': 17970, 'teenaged': 17971, 'poster-boy': 17972, 'arrested': 17973, 'standard-issue': 17974, 'spat': 17975, 'creaking': 17976, 'rusty': 17977, 'ship': 17978, \"ghosts'\": 17979, 'leavitt': 17980, 'too-facile': 17981, 'noxious': 17982, 'plumbs': 17983, 'uncharted': 17984, 'sub-sophomoric': 17985, 'dictate': 17986, 'dutifully': 17987, 'heartstrings': 17988, 'deblois': 17989, 'sanders': 17990, 'resent': 17991, 'bicentennial': 17992, 'characterisations': 17993, \"hour's\": 17994, \"adaptation's\": 17995, 'demeanor': 17996, 'stupidly': 17997, 'repulsive': 17998, 'avalanches': 17999, 'fuzziness': 18000, 'everytime': 18001, 'novelist': 18002, 'reserving': 18003, 'italy': 18004, 'beckons': 18005, 'swung': 18006, 'despicable': 18007, 'garbled': 18008, 'let-down': 18009, 'imminently': 18010, \"[besson's]\": 18011, 'loyal': 18012, 'suits': 18013, 'wherein': 18014, 'decisions': 18015, 'clunkiness': 18016, 'imprint': 18017, 'tactfully': 18018, 'pretended': 18019, \"'date\": 18020, \"movie'\": 18021, 'bankrupt': 18022, 'unintelligible': 18023, 'brain-slappingly': 18024, 'undoing': 18025, 'xerox': 18026, 'granger': 18027, 'gauge': 18028, 'punny': 18029, '6': 18030, 'grade-school': 18031, 'preview': 18032, 'cheering': 18033, 'tickets': 18034, 'groan': 18035, 'hiss': 18036, 'rumblings': 18037, 'innovative': 18038, 'earnestly': 18039, 'crime-busting': 18040, 'andersson': 18041, 'stallone': 18042, 'half-sleep': 18043, 'transpose': 18044, 'wal-mart': 18045, 'checkout': 18046, 'harland': 18047, 'rosenbaum': 18048, 'watson': 18049, 'harmlessly': 18050, 'na�ve': 18051, 'b-ball': 18052, \"nba's\": 18053, 'off-season': 18054, \"'truth\": 18055, 'interchangeable': 18056, 'imbecilic': 18057, 'mafia': 18058, 'toolbags': 18059, 'botching': 18060, 'assignment': 18061, 'backwater': 18062, 'degrading': 18063, 'pasty': 18064, 'lumpen': 18065, 'impair': 18066, 'highway': 18067, 'patrolman': 18068, \"'we're\": 18069, '-doing-it-for': 18070, \"-the-cash'\": 18071, 'half-formed': 18072, 'bumper': 18073, 'sticker': 18074, 'daughters': 18075, 'rapid': 18076, 'omniscient': 18077, 'modicum': 18078, \"sy's\": 18079, 'queasy': 18080, 'infatuation': 18081, 'n�s': 18082, 'gosta': 18083, 'muito': 18084, 'duas': 18085, 'torres': 18086, 'resurrecting': 18087, 'togetherness': 18088, 'inter-family': 18089, 'rivalry': 18090, 'ambition
': 18091, 'sourness': 18092, 'fateful': 18093, 'evolution': 18094, 'deepen': 18095, \"'worse\": 18096, 'self-styled': 18097, 'banged': 18098, '[hill]': 18099, 'salvage': 18100, 'deflates': 18101, 'mean-spiritedness': 18102, 'advert': 18103, 'cellophane-pop': 18104, 'gentlemen': 18105, 'fabulous': 18106, 'stains': 18107, 'medem': 18108, 'disrobed': 18109, 'virgin': 18110, 'chastity': 18111, 'gasp-inducing': 18112, 'shoes': 18113, 'hoofing': 18114, 'crooning': 18115, 'urine': 18116, 'semen': 18117, 'substances': 18118, 'examining': 18119, 'palm': 18120, '[n�s]': 18121, 'originated': 18122, 'spawn': 18123, 'fools': 18124, 'raucous': 18125, 'branched': 18126, 'pseudo-witty': 18127, 'ultra-violent': 18128, \"huston's\": 18129, 'graduate': 18130, 'recyclable': 18131, 'reel/real': 18132, 'dichotomy': 18133, '[jaglom]': 18134, 'pursued': 18135, 'venice/venice': 18136, 'binging': 18137, 'cotton': 18138, 'unsatisfied': 18139, 'grittiest': 18140, 'dyspeptic': 18141, 'boorish': 18142, 'i-heard-a-joke-': 18143, 'at-a-frat-party': 18144, 'shifted': 18145, 'water-bound': 18146, 'land-based': 18147, \"'drama\": 18148, 'malone': 18149, 'burn': 18150, 'street-realist': 18151, 'self-regarding': 18152, 'trips': 18153, 'repelled': 18154, 'dogmatism': 18155, 'manipulativeness': 18156, 'fearful': 18157, 'gasbag': 18158, 'self-importance': 18159, 'hash': 18160, '[a]n': 18161, '60s': 18162, \"jonah's\": 18163, 'catch-22': 18164, 'seldhal': 18165, 'recesses': 18166, 'unearth': 18167, 'quaking': 18168, 'captivatingly': 18169, 'beat-the-clock': 18170, 'heart-on-its-sleeve': 18171, 'bundy': 18172, 'reilly': 18173, 'octopus': 18174, 'perspicacious': 18175, 'sloppiness': 18176, 'ooze': 18177, 'imperfection': 18178, 'off-handed': 18179, 'wade': 18180, \"dass's\": 18181, 'anti-harry': 18182, 'gryffindor': 18183, 'scarf': 18184, 'suspicion': 18185, 'hawke': 18186, 'lamentations': 18187, 'self-centered': 18188, '83': 18189, 'seesawed': 18190, 'controlling': 18191, 'discourages': 18192, 'no-surprise': 18193, 'b�art': 18194, 'berling': 18195, 'divertissement': 18196, 'gainsbourg': 18197, \"'artistically'\": 18198, 'joaquin': 18199, 'baca-asay': 18200, 'vertigo': 18201, 'opacity': 18202, \"fontaine's\": 18203, 'agreeably': 18204, 'sheerly': 18205, \"york's\": 18206, 'intently': 18207, 'underarm': 18208, 'noises': 18209, 'restatement': 18210, 'validated': 18211, 'probes': 18212, 'iran': 18213, 'afghani': 18214, 'shaw': 18215, 'melting': 18216, \"phocion's\": 18217, 'attentions': 18218, 'runteldat': 18219, 'integrates': 18220, 'pasta-fagioli': 18221, 'unwise': 18222, 'broadcast': 18223, 'chef': 18224, 'hotdog': 18225, 'gymnastics': 18226, 'inauthentic': 18227, 'lavish': 18228, 'formalism': 18229, 'shape-shifting': 18230, 'brushes': 18231, 'calamity': 18232, 'introspective': 18233, 'preferred': 18234, '$7': 18235, '00': 18236, 'burkina': 18237, 'faso': 18238, '[wang]': 18239, 'world-renowned': 18240, 'stomps': 18241, 'hobnail': 18242, 'natalie': 18243, \"babbitt's\": 18244, 'bends': 18245, \"generation's\": 18246, 'aldrich': 18247, 'thinkers': 18248, 'sequel-itis': 18249, 'comedy-deficient': 18250, 'directive': 18251, \"[carvey's]\": 18252, 'overplayed': 18253, \"kilmer's\": 18254, 'tener': 18255, 'decirles': 18256, '�nico': 18257, 'grato': 18258, 'cuerpo': 18259, 'desnudo': 18260, '1986': 18261, 'harlem': 18262, 'courtesy': 18263, 'pogue': 18264, 'yale': 18265, 'grad': 18266, 'previously': 18267, 'skulls': 18268, 'kahlo': 18269, 'contributions': 18270, 'fritters': 18271, 'smokers': 18272, '[schweiger': 18273, 'only-in': 18274, '-hollywood': 18275, 'schlepping': 18276, 'indiana': 18277, 'ashtray': 18278, 'marrow': 18279, 'cling': 18280, 'print': 18281, 'work-hours': 18282, 'slasher-movie': 18283, 'cockeyed': 18284, 'entwined': 18285, 'bromides': 18286, 'slogans': 18287, 'preachy-keen': 18288, 'tub-thumpingly': 18289, 'chump': 18290, '[scherfig]': 18291, 'dimensional': 18292, 'sunny': 18293, 'disposition': 18294, 'structuring': 18295, 'stand-off': 18296, 'trump': 18297, 'mid-section': 18298, 'intercut': 18299, 'eye-filling': 18300, 'wide-screen': 18301, 'disloyal': 18302, 'satyr': 18303, 'rouse': 18304, 'sneering': 18305, 'womanhood': 18306, 'bad-movie': 18307, 'tightened': 18308, 'raft': 18309, 'european-set': 18310, 'life-changing': 18311, 'mirthless': 18312, 'solondzian': 18313, \"'53\": 18314, 'poorly-constructed': 18315, 'pbs': 18316, 'amc': 18317, 'fourth-rate': 18318, \"'linklater\": 18319, 'avant-garde': 18320, 'voices-from-the-other-side': 18321, 'liza': 18322, \"salle's\": 18323, 'halfhearted': 18324, '8th': 18325, 'delving': 18326, 'self-satisfaction': 18327, 'continual': 18328, 'hand-held': 18329, 'derry': 18330, 'roaring': 18331, 'semi-improvised': 18332, 'semi-coherent': 18333, 'raps': 18334, 'relaxing': 18335, 'unessential': 18336, \"barrie's\": 18337, 'tv-insider': 18338, 'brothers]': 18339, \"motown's\": 18340, 'whatsoever': 18341, 'warmest': 18342, '[garbus]': 18343, 'discards': 18344, 'pathological': 18345, 'exhuming': 18346, 'heap': 18347, 'coming-of-age/coming-out': 18348, 'virtual': 18349, 'sleaze': 18350, 'copies': 18351, 'pull[s]': 18352, 'recreating': 18353, 'bertrand': 18354, 'oft-brilliant': 18355, '30-year': 18356, 'cliche-bound': 18357, 'epic-horror': 18358, 'dumber': 18359, 'unrelated': 18360, 'shorts': 18361, 'undetermined': 18362, 'period-piece': 18363, 'blarney': 18364, 'descriptions': 18365, 'favorably': 18366, 'das': 18367, 'boot': 18368, 'phoniness': 18369, 'female-bonding': 18370, 'visualmente': 18371, 'espectacular': 18372, 'entretenida': 18373, 'sencillamente': 18374, 'te': 18375, 'sorprender�': 18376, 'freely': 18377, 'mingles': 18378, 'primal': 18379, 'rashomon-for-dipsticks': 18380, \"'brazil\": 18381, 'confusions': 18382, 'kunis': 18383, \"student--where's\": 18384, 'pauly': 18385, 'break-ups': 18386, 'hook-ups': 18387, 'retelling': 18388, 'activate': 18389, 'girlish': 18390, 'ducts': 18391, 'amoral': 18392, 'chevy': 18393, 'yo': 18394, 'indisputably': 18395, 'dismantle': 18396, 'facades': 18397, 'wonderous': 18398, 'veracity': 18399, 'minutiae': 18400, 'hot-blooded': 18401, 'scorpion': 18402, 'conan': 18403, 'barbarian': 18404, 'stomp': 18405, 'all-over-the-map': 18406, 'pared': 18407, 'close-up': 18408, 'psyches': 18409, 'undercurrents': 18410, '[fessenden]': 18411, 'lopsided': 18412, 'faintly': 18413, 'grenier': 18414, 'heidegger-': 18415, 'nietzsche-referencing': 18416, 'conundrum': 18417, 'diss': 18418, \"'perfection\": 18419, 'translates': 18420, 'redeems': 18421, 'pretentiously': 18422, 'strung': 18423, 'dangers': 18424, 'ouija': 18425, 'boards': 18426, 'dispense': 18427, 'conforms': 18428, \"'who's\": 18429, \"who'\": 18430, 'anonymous': 18431, 'witlessness': 18432, 'not-so-bright': 18433, 'trio': 18434, 'criminals': 18435, 'luvvies': 18436, 'raptures': 18437, 'wider': 18438, 'cinema-besotted': 18439, 'hookers': 18440, 'scientific': 18441, 'heading': 18442, 'tickled': 18443, 'humor-seeking': 18444, 'lawn': 18445, 'margarita': 18446, \"england's\": 18447, 'mitchell': 18448, 'inappropriate': 18449, 'betting': 18450, 'buries': 18451, \"matthew's\": 18452, \"kennedy's\": 18453, 'investigate': 18454, 'unveil': 18455, 'wheedling': 18456, 'pointing': 18457, 'smeared': 18458, 'windshield': 18459, 'whitaker': 18460, 'lioness': 18461, 'protecting': 18462, 'cub': 18463, 'incapable': 18464, \"might've\": 18465, 'sprawl': 18466, 'uncoordinated': 18467, 'vectors': 18468, 'lemon': 18469, 'good-naturedness': 18470, 'goofiness': 18471, 'less-': 18472, 'than-likely': 18473, 'celebrities': 18474, 'sabrina': 18475, 'disturb': 18476, 'shiver-inducing': 18477, 'nerve-rattling': 18478, 'mountains': 18479, 'preserves': 18480, \"tosca's\": 18481, 'ardor': 18482, 'shayamalan': 18483, 'dressing': 18484, '85': 18485, 'loathsome': 18486, 'veggietales': 18487, 'appetizing': 18488, 'asparagus': 18489, 'brussels': 18490, 'sprouts': 18491, 'addiction': 18492, 'junk-calorie': 18493, \"paradiso's\": 18494, 'rusted-out': 18495, 'restored': 18496, 'third�emotionally': 18497, 'belittle': 18498, 'spicy': 18499, 'grips': 18500, 'rapt': 18501, 'shallowly': 18502, 'meatier': 18503, 'tipped': 18504, 'b+': 18505, 'kinetically-charged': 18506, 'bucket': 18507, '[two]': 18508, 'interlocking': 18509, 'scandinavian': 18510, 'settlers': 18511, '18th-century': 18512, 'canada': 18513, 'yuppie': 18514, 'sailboaters': 18515, 'slipper': 18516, 'imprisonment': 18517, 'nerdy': 18518, 'intoxicatingly': 18519, 'speech': 18520, 'patterns': 18521, 'codes': 18522, 'ideals': 18523, 'theology': 18524, 'preordained': 18525, 'mandates': 18526, 'sized': 18527, 'soda': 18528, 'vowing': 18529, 'restore': 18530, '[harmon]': 18531, 'prominence': 18532, 'terrors': 18533, 'praiseworthy': 18534, 'bong': 18535, 'downing': 18536, 'alcoholic': 18537, 'beverage': 18538, 'portion': 18539, 'respected': 18540, \"'rendered'\": 18541, \"pixar's\": 18542, 'solving': 18543, 'gelo': 18544, 'diverte': 18545, 'convence': 18546, 'passatempo': 18547, 'descompromissado': 18548, 'moretti': 18549, 'giovanni': 18550, 'psychiatrist': 18551, \"gilligan's\": 18552, 'thorn': 18553, 'vinegar': 18554, 'plundered': 18555, \"whaley's\": 18556, 'wretchedness': 18557, 'permanent': 18558, 'sex-reassignment': 18559, 'hard-': 18560, 'boiled': 18561, 'argot': 18562, 'binds': 18563, 'paraphrase': 18564, 'fragment': 18565, 'underdone': 18566, 'potato': 18567, 'stylishly': 18568, 'rhapsodic': 18569, 'ultra-low-budget': 18570, \"goyer's\": 18571, 'unaccountable': 18572, 'notches': 18573, 'waddling': 18574, \"wilson's\": 18575, 'drippiness': 18576, 'extols': 18577, 'comradeship': 18578, 'zoom': 18579, 'double-': 18580, 'triple-crosses': 18581, 'arise': 18582, \"malkovich's\": 18583, 'reedy': 18584, 'consigliere': 18585, 'contemptuous': 18586, 'population': 18587, 'dripping': 18588, 'bypassing': 18589, 'trivialize': 18590, 'energizes': 18591, 'chomps': 18592, 'louder': 18593, 'ponytail': 18594, 'grimly': 18595, 'gedeck': 18596, 'spot-on': 18597, 'peels': 18598, 'hysterical': 18599, 'disquisition': 18600, 'abrasive': 18601, 'monstrously': 18602, 'trope': 18603, 'day-old': 18604, 'location': 18605, 'discursive': 18606, 'shamu': 18607, 'fryers': 18608, 'hamburgers': 18609, 'mute': 18610, 'fooled': 18611, 'prizes': 18612, 'nationalism': 18613, 'media-soaked': 18614, 'overloads': 18615, 'studied': 18616, \"kid's\": 18617, 'broaches': 18618, 'neo-augustinian': 18619, 'best-known': 18620, 'untold': 18621, 'bui': 18622, 'suspiciously': 18623, 'overstylized': 18624, 'pur�ed': 18625, 'm�lange': 18626, 'wankery': 18627, 'cheapo': 18628, 'sword-and-sorcery': 18629, 'movies�or': 18630, 'hackles': 18631, 'puzzled': 18632, 'transgression': 18633, 'pentecostal': 18634, 'dallas': 18635, 'services': 18636, 'byways': 18637, 'jabs': 18638, 'egocentricities': 18639, 'convert': 18640, 'meeting': 18641, 'word--mindless': 18642, 'safely': 18643, 'sanded': 18644, 'fastballs': 18645, 'brogue': 18646, 'accentuating': 18647, 'muting': 18648, 'hollywood-predictable': 18649, 'travail': 18650, 'stupefying': 18651, 'force-feed': 18652, 'mirror': 18653, 'communism': 18654, \"stalk'n'slash\": 18655, 'effectiveness': 18656, 'writhing': 18657, \"'you're\": 18658, \"worlds'\": 18659, \"'tonight\": 18660, 'schlock-filled': 18661, 'unoriginality': 18662, 'smoothed': 18663, 'tidings': 18664, 'scent': 18665, \"farmer's\": 18666, 'battling': 18667, 'spaceship': 18668, \"lane's\": 18669, 'adrian': 18670, 'hyper': 18671, 'grasped': 18672, 'composing': 18673, 'porcelain': 18674, 'highly-praised': 18675, 'visualize': 18676, \"''independent\": 18677, \"film''\": 18678, 'commodified': 18679, 'sold-out': 18680, 'laura': 18681, 'cahill': 18682, 'unexceptional': 18683, \"'fish\": 18684, \"water'\": 18685, 'lilia': 18686, 'kate': 18687, 'janine': 18688, 'all-woman': 18689, 'backbone': 18690, 'cosby-seinfeld': 18691, 'larky': 18692, 'old-world-': 18693, 'meets-new': 18694, 'mesh': 18695, 'incarnated': 18696, 'effusion': 18697, 'disco': 18698, 'soaring': 18699, 'labours': 18700, 'imogen': 18701, 'kimmel': 18702, 'spaniel-eyed': 18703, 'slugfest': 18704, 'stricken': 18705, 'composer': 18706, 'violinist': 18707, 'dispel': 18708, 'perceptions': 18709, 'ape': 18710, 'hooting': 18711, 'beachcombing': 18712, 'verismo': 18713, 'ambrose': 18714, 'missive': 18715, 'near-impossible': 18716, '[janey]': 18717, 'forgets': 18718, 'obligations': 18719, 'guessable': 18720, 'morbidity': 18721, 'transported': 18722, 'wladyslaw': 18723, 'szpilman': 18724, 'chefs': 18725, 'fussing': 18726, 'australia': 18727, 'overweight': 18728, 'receding': 18729, 'hairline': 18730, 'weathered': 18731, 'countenance': 18732, 'ridiculously': 18733, '[de': 18734, 'single-handed': 18735, 'completists': 18736, \"all's\": 18737, 'consciousness-raising': 18738, 'cloaked': 18739, 'distract': 18740, 'solution': 18741, 'tissue': 18742, 'fab': 18743, 'fetish': 18744, 'outsiders': 18745, 'cd': 18746, 'sha-na-na': 18747, 'greek-american': 18748, 'testify': 18749, 'comparative': 18750, \"india's\": 18751, 'gulzar': 18752, 'jagjit': 18753, 'singh': 18754, 'soured': 18755, 'bumps': 18756, 'icky': 18757, 'pre-dawn': 18758, 'slots': 18759, 'gender-bender-baller': 18760, \"1982's\": 18761, 'forgetting': 18762, 'retain': 18763, 'confined': 18764, 'homages': 18765, 'confrontational': 18766, 'libidinous': 18767, 'obscenely': 18768, 'sidewalks': 18769, 'thornberry': 18770, 'wedgie': 18771, 'hereby': 18772, 'grit': 18773, 'intelligibility': 18774, 'rip-roaring': 18775, 'hairs': 18776, \"tinseltown's\": 18777, 'seasoned': 18778, 'veterans': 18779, 'celebrityhood': 18780, 'haywire': 18781, 'tori': 18782, 'amos': 18783, 'consistency': 18784, 'shakesperean': 18785, 'bombs': 18786, 'hollywood-action': 18787, 'crafting': 18788, 'widowmaker': 18789, \"henry's\": 18790, 'the': 18791, 'magi': 18792, 'relocated': 18793, 'scuzzy': 18794, \"nyc's\": 18795, 'drive-by': 18796, 'noticing': 18797, 'made-for-movie': 18798, 'non-mystery': 18799, 'latifah': 18800, 'flaunting': 18801, 'tumultuous': 18802, 'marginalization': 18803, 'loom': 18804, 'dreamer': 18805, 'dogwalker': 18806, 'rosa': 18807, \"leguizamo's\": 18808, 'internalized': 18809, 'hatosy': 18810, 'action-movie': 18811, 'pryce': 18812, 'diverted': 18813, 'lightens': 18814, 'taxi': 18815, 'driver-esque': 18816, 'teetering': 18817, 'sanity': 18818, '88-minute': 18819, 'scented': 18820, 'gangster/crime': 18821, 'movie-specific': 18822, 'enchanted': 18823, 'low-life': 18824, 'liberally': 18825, 'lunatic': 18826, 'associate': 18827, \"cage's\": 18828, 'semi-autobiographical': 18829, 'bugsy': 18830, 'caterer': 18831, 'retribution': 18832, 'beaches': 18833, \"caruso's\": 18834, 'increase': 18835, 'gravitational': 18836, 'cases': 18837, \"corcuera's\": 18838, 'germanic': 18839, 'ne': 18840, 'impervious': 18841, 'desplechin': 18842, 'online': 18843, 'laptops': 18844, 'plans': 18845, 'camera-work': 18846, 'ribcage': 18847, '[reynolds]': 18848, 'evenly': 18849, 'milks': 18850, 'regrets': 18851, 'cards': 18852, \"dahmer's\": 18853, 'cringe-inducing': 18854, 'stadium': 18855, 'nuked': 18856, 'naught': 18857, 'irredeemably': 18858, 'indoors': 18859, 'motionless': 18860, 'ransom': 18861, \"walsh's\": 18862, 'fogging': 18863, 'triangles': 18864, 'contract': 18865, 'african-americans': 18866, 'insensitivity': 18867, 'overt': 18868, 'drawling': 18869, 'slobbering': 18870, 'run-on': 18871, 'often-funny': 18872, 'less-than-magic': 18873, 'jettisons': 18874, 'seine': 18875, 'slogs': 18876, 'jam': 18877, 'renown': 18878, 'wherever': 18879, 'gels': 18880, 'outwardly': 18881, 'philosophers': 18882, 'genet': 18883, 'rechy': 18884, 'fassbinder': 18885, 'nocturnal': 18886, 'goya': 18887, 'fighters': 18888, 'tonally': 18889, 'patchouli': 18890, 'oil': 18891, 'well-observed': 18892, 'splashy': 18893, 'telescope': 18894, 'unreachable': 18895, 'rehearsal': 18896, 'unsteady': 18897, 'triviality': 18898, 'doubts': 18899, 'yearnings': 18900, 'unengaging': 18901, 'expressionistic': 18902, 'disgusted': 18903, \"product's\": 18904, 'unshapely': 18905, 'elegy': 18906, 'chitchat': 18907, 'neurotics': 18908, 'heaviest': 18909, 'uncontrolled': 18910, 'generalities': 18911, 'scrutiny': 18912, 'clowns': 18913, 'strenuous': 18914, 'clinch': 18915, 'razzie': 18916, 'second-guess': 18917, 'desirable': 18918, 'immortals': 18919, 'absence': 18920, '2--quite': 18921, 'intrepid': 18922, 'qualls': 18923, 'han': 18924, 'marisa': 18925, 'tomei': 18926, '[sade]': 18927, 'deceitful': 18928, 'reckless': 18929, 'idealistically': 18930, 'selfless': 18931, 'coldly': 18932, 'self-interested': 18933, 'thandie': 18934, 'hepburn': 18935, 'icons': 18936, 'galore': 18937, \"kilner's\": 18938, 'sturm': 18939, 'und': 18940, 'drung': 18941, 'unsatisfactorily': 18942, 'mulls': 18943, 'traverse': 18944, 'homespun': 18945, 'mule': 18946, 'skinner': 18947, 'posse': 18948, 'misty-eyed': 18949, 'tear-drenched': 18950, 'quicksand': 18951, 'ransacks': 18952, 'quick-buck': 18953, 'borrow': 18954, 'invariably': 18955, 'villians': 18956, 'introduced': 18957, 'commonly': 18958, 'turfs': 18959, 'self-made': 18960, 'low-down': 18961, 'crummy-looking': 18962, 'labelled': 18963, \"'hip'\": 18964, \"'innovative'\": 18965, \"'realistic'\": 18966, 'unlaughable': 18967, 'wailing': 18968, 'opium': 18969, 'overdoses': 18970, 'dissolution': 18971, 'synergistic': 18972, 'galvanize': 18973, 'campion': 18974, 'ancillary': 18975, 'products': 18976, 'affinity': 18977, 'fathom': 18978, 'masquerade': 18979, '65-minute': 18980, 'vacation': 18981, 'stonehenge': 18982, 'areas': 18983, 'flinching': 18984, 'multi-dimensional': 18985, 'germinate': 18986, 'magnificently': 18987, '170-minute': 18988, 'prize': 18989, 'locate': 18990, 'moodiness': 18991, 'laboratory': 18992, 'societal': 18993, 'kid-friendly': 18994, 'beanie': 18995, 'show-biz': 18996, 'subcultures': 18997, 'musclefest': 18998, 'fervid': 18999, '�a': 19000, 'baggy': 19001, 'carnival': 19002, 'rhyme': 19003, 'martinet': 19004, 'instructor': 19005, 'tormentor': 19006, 'suggested': 19007, 'mattered': 19008, 'under-10': 19009, 'altman-esque': 19010, 'bloodstream': 19011, 'civility': 19012, 'allison': 19013, 'identity-seeking': 19014, 'requirement': 19015, 'ships': 19016, 'broca': 19017, 'quantum': 19018, 'slash-dash': 19019, 'hardest�': 19020, 'phillip]': 19021, 'full-blown': 19022, 'mother/daughter': 19023, 'shiny': 19024, 'redolent': 19025, 'liberated': 19026, 'catholics': 19027, 'catechism': 19028, 'modulated': 19029}\n"
]
}
]
},
{
"cell_type": "code",
"metadata": {
"id": "ZKk6Pu9g7JW7"
},
"source": [
"from collections import defaultdict\n",
"import math\n",
"\n",
"\n",
"def train_naive_bayes(texts, labels, target_classes, alpha=1):\n",
" \"\"\"Train a multinomial Naive Bayes model\n",
" \"\"\"\n",
" ndoc = 0\n",
" nc = defaultdict(int) # map from a class label to number of documents in the class\n",
" logprior = dict()\n",
" loglikelihood = dict()\n",
" count = defaultdict(int) # count the occurrences of w in documents of class c\n",
"\n",
" vocab = build_vocab(texts)\n",
" # Training\n",
" for s, c in zip(texts, labels):\n",
" ndoc += 1\n",
" nc[c] += 1\n",
" for w in s.split():\n",
" if w in vocab:\n",
" count[(w,c)] += 1\n",
"\n",
" vocab_size = len(vocab)\n",
" for c in target_classes:\n",
" logprior[c] = math.log(nc[c]/ndoc)\n",
" sum_ = 0\n",
" for w in vocab.keys():\n",
" if (w,c) not in count: count[(w,c)] = 0\n",
" sum_ += count[(w,c)]\n",
"\n",
" for w in vocab.keys():\n",
" loglikelihood[(w,c)] = math.log( (count[(w,c)] + alpha) / (sum_ + alpha * vocab_size) )\n",
"\n",
" return logprior, loglikelihood, vocab"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "eAssoQTosUi0"
},
"source": [
"Let's test the train function on a toy example"
]
},
{
"cell_type": "code",
"metadata": {
"id": "OSrReqjcxjGa"
},
"source": [
"data = [\n",
" (\"Chinese Beijing Chinese\", \"c\"),\n",
" (\"Chinese Chinese Shanghai\", \"c\"),\n",
" (\"Chinese Macao\", \"c\"),\n",
" (\"Tokyo Japan Chinese\", \"j\")\n",
"]\n",
"texts, labels = zip(*data)\n",
"target_classes = [\"c\", \"j\"]\n",
"\n",
"logprior, loglikelihood, vocab = train_naive_bayes(texts, labels, target_classes)"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "5ZLG0w65zm0C"
},
"source": [
"Let's confirm our implementation works correctly."
]
},
{
"cell_type": "code",
"metadata": {
"id": "Rji21pqG2BKy"
},
"source": [
"assert logprior['c'] == math.log(0.75)\n",
"assert logprior['j'] == math.log(0.25)\n",
"assert loglikelihood[('Chinese', 'c')] == math.log(3/7)\n",
"assert loglikelihood[('Tokyo', 'c')] == math.log(1/14)\n",
"assert loglikelihood[('Japan', 'c')] == math.log(1/14)\n",
"assert loglikelihood[('Tokyo', 'j')] == math.log(2/9)"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "97_Ph19D2mne"
},
"source": [
"There is no assert exception, so our implementation of the training step is correct!"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "1BREkjxb8UKU"
},
"source": [
"#### Prediction Function"
]
},
{
"cell_type": "code",
"metadata": {
"id": "Qq6aDogy8dAk"
},
"source": [
"def test_naive_bayes(testdoc, logprior, loglikelihood, target_classes, vocab):\n",
" sum_ = {}\n",
" for c in target_classes:\n",
" sum_[c] = logprior[c]\n",
" for w in testdoc.split():\n",
" if w in vocab:\n",
" sum_[c] += loglikelihood[(w,c)]\n",
" # sort keys in sum_ by value\n",
" sorted_keys = sorted(sum_.keys(), key=lambda x: sum_[x], reverse=True)\n",
" return sorted_keys[0]"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "5tl_e6bw946H"
},
"source": [
"Let's try to predict the label for a test document."
]
},
{
"cell_type": "code",
"metadata": {
"id": "xvGrbehM9907",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "1f1a6f09-3ca6-44d1-fb66-ebb43325e39f"
},
"source": [
"print('Predicted class: %s' % test_naive_bayes('Chinese Chinese Tokyo Japan', logprior, loglikelihood, target_classes, vocab))"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Predicted class: c\n"
]
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "emLHsmgB-DjM"
},
"source": [
"Now, it is time to train our Naive Bayes model on the sentiment data."
]
},
{
"cell_type": "code",
"metadata": {
"id": "av4fCTt_-g1u"
},
"source": [
"target_classes = ['+1', '-1'] # we can construct a fixed set of classes from train_labels\n",
"logprior, loglikelihood, vocab = train_naive_bayes(train_texts, train_labels, target_classes)"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "k2mea9-H-wyq",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 36
},
"outputId": "88855690-3064-4ed0-dd08-5ceb908848a5"
},
"source": [
"test_naive_bayes(\"enigma is well-made , but it's just too dry and too placid .\", logprior, loglikelihood, target_classes, vocab)"
],
"execution_count": null,
"outputs": [
{
"output_type": "execute_result",
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "string"
},
"text/plain": [
"'-1'"
]
},
"metadata": {},
"execution_count": 18
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "CJLuLp3d--Qj"
},
"source": [
"### Evaluation\n",
"\n",
"We will calculate evaluation measures on the test data. You can implement evaluation measures by yourself, but in this notebook, we are going to use scikit-learn to do that."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "vKQMhL5c_bPs"
},
"source": [
"Let's get predicted classes of test documents."
]
},
{
"cell_type": "code",
"metadata": {
"id": "F3zVxwd6_lWj"
},
"source": [
"predicted_labels = [test_naive_bayes(s, logprior, loglikelihood, target_classes, vocab)\n",
" for s in test_texts]"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "BoYgM2xS_Wvi",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "e41d80a0-39a0-4813-cd3c-085498fb0805"
},
"source": [
"from sklearn import metrics\n",
"\n",
"print('Accuracy score: %f' % metrics.accuracy_score(test_labels, predicted_labels))"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Accuracy score: 0.759962\n"
]
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "naJutczxACUV"
},
"source": [
"We can calculate precision, recall, f1_score per class."
]
},
{
"cell_type": "code",
"metadata": {
"id": "rAWyc_kmAN49",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 158
},
"outputId": "69c589f3-1456-41e5-8ead-dac8fec8df7a"
},
"source": [
"for c in target_classes:\n",
" print('Evaluation measures for class %s' % c)\n",
" print(' Precision: %f' % metrics.precision_score(test_labels, predicted_labels, pos_label=c))\n",
" print(' Recall: %f' % metrics.recall_score(test_labels, predicted_labels, pos_label=c))\n",
" print(' F1: %f' % metrics.f1_score(test_labels, predicted_labels, pos_label=c))"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"text": [
"Evaluation measures for class +1\n",
" Precision: 0.766925\n",
" Recall: 0.746704\n",
" F1: 0.756679\n",
"Evaluation measures for class -1\n",
" Precision: 0.755232\n",
" Recall: 0.774977\n",
" F1: 0.764977\n"
],
"name": "stdout"
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "fUU-bUxOAsbW"
},
"source": [
"We can also compute macro-averaged and micro-averaged f1 score."
]
},
{
"cell_type": "code",
"metadata": {
"id": "Daj2JS8ZBM9J",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "939da1b4-8606-4665-caed-9aac9634da5e"
},
"source": [
"print('Macro-averaged f1: %f' % metrics.f1_score(test_labels, predicted_labels, average='macro'))\n",
"print('Micro-averaged f1: %f' % metrics.f1_score(test_labels, predicted_labels, average='micro'))"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Macro-averaged f1: 0.759890\n",
"Micro-averaged f1: 0.759962\n"
]
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "ZvTT6xFMBc-m"
},
"source": [
"We can report classification results all by once."
]
},
{
"cell_type": "code",
"metadata": {
"id": "KQ364h_qBkhJ",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "425ab7c5-6531-41d6-ef72-5e86564afdca"
},
"source": [
"print(metrics.classification_report(test_labels, predicted_labels))"
],
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
" precision recall f1-score support\n",
"\n",
" +1 0.77 0.75 0.76 1062\n",
" -1 0.75 0.77 0.76 1071\n",
"\n",
" accuracy 0.76 2133\n",
" macro avg 0.76 0.76 0.76 2133\n",
"weighted avg 0.76 0.76 0.76 2133\n",
"\n"
]
}
]
}
]
}