Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 판다스 데이터정렬
- fastapi #파이썬웹개발
- 머신러닝
- NLP
- 챗gpt
- sklearn
- langchain
- pandas
- programmablesearchengine
- 자연어분석
- MachineLearning
- chatGPT
- OpenAIAPI
- 파이토치기본
- HTML
- 파이토치
- pytorch
- 딥러닝
- 파이썬
- fastapi #python웹개발
- Python
- konlpy
- 파이썬웹개발
- 판다스
- 비지도학습
- deeplearning
- 랭체인
- 사이킷런
- python 정렬
- fastapi
Archives
- Today
- Total
Data Navigator
[NLP, PyTorch] IMDB 리뷰 감성분류하기 - PyTorch, torchtext 본문
Machine Learning, Deep Learning
[NLP, PyTorch] IMDB 리뷰 감성분류하기 - PyTorch, torchtext
코딩하고분석하는돌스 2021. 2. 23. 15:57IMDB 리뷰 감성 분류하기 PyTorch, Torchtext¶
In [1]:
import os
import torch
import torch.nn as nn
import torch.nn.functional as F
from torchtext import data, datasets
import random
1. 랜덤시드, 하이퍼 파라미터 지정¶
In [2]:
# 랜덤 시드 고정
SEED = 5
random.seed(SEED)
torch.manual_seed(SEED)
Out[2]:
<torch._C.Generator at 0x1c53390d1b0>
In [3]:
# 하이퍼 파라미터 정의
BATCH_SIZE = 64
lr = 0.001
EPOCHS = 10
2. GPU 연산을 위한 CUDA 환경 세팅¶
In [4]:
USE_CUDA = torch.cuda.is_available()
DEVICE = torch.device("cuda" if USE_CUDA else "cpu")
print("cpu or cuda: ", DEVICE)
cpu or cuda: cuda
3. Torchtext로 전처리¶
In [5]:
# 데이터 로드
TEXT = data.Field(sequential=True, batch_first=True, lower=True)
LABEL = data.Field(sequential=False, batch_first=True)
In [6]:
# 데이터 로드 및 분할하기 8:2로 나눔
trainset, testset = datasets.IMDB.splits(TEXT,LABEL)
In [7]:
print('trainset: ', trainset.fields)
trainset: {'text': <torchtext.data.field.Field object at 0x000001C532083C10>, 'label': <torchtext.data.field.Field object at 0x000001C5320839A0>}
In [8]:
print('testset: ', testset.fields)
testset: {'text': <torchtext.data.field.Field object at 0x000001C532083C10>, 'label': <torchtext.data.field.Field object at 0x000001C5320839A0>}
In [9]:
# 첫번째 IMDB 리뷰 데이터 체크
print(vars(trainset[0]))
{'text': ['bromwell', 'high', 'is', 'a', 'cartoon', 'comedy.', 'it', 'ran', 'at', 'the', 'same', 'time', 'as', 'some', 'other', 'programs', 'about', 'school', 'life,', 'such', 'as', '"teachers".', 'my', '35', 'years', 'in', 'the', 'teaching', 'profession', 'lead', 'me', 'to', 'believe', 'that', 'bromwell', "high's", 'satire', 'is', 'much', 'closer', 'to', 'reality', 'than', 'is', '"teachers".', 'the', 'scramble', 'to', 'survive', 'financially,', 'the', 'insightful', 'students', 'who', 'can', 'see', 'right', 'through', 'their', 'pathetic', "teachers'", 'pomp,', 'the', 'pettiness', 'of', 'the', 'whole', 'situation,', 'all', 'remind', 'me', 'of', 'the', 'schools', 'i', 'knew', 'and', 'their', 'students.', 'when', 'i', 'saw', 'the', 'episode', 'in', 'which', 'a', 'student', 'repeatedly', 'tried', 'to', 'burn', 'down', 'the', 'school,', 'i', 'immediately', 'recalled', '.........', 'at', '..........', 'high.', 'a', 'classic', 'line:', 'inspector:', "i'm", 'here', 'to', 'sack', 'one', 'of', 'your', 'teachers.', 'student:', 'welcome', 'to', 'bromwell', 'high.', 'i', 'expect', 'that', 'many', 'adults', 'of', 'my', 'age', 'think', 'that', 'bromwell', 'high', 'is', 'far', 'fetched.', 'what', 'a', 'pity', 'that', 'it', "isn't!"], 'label': 'pos'}
In [ ]:
4. vocabulary 만들기¶
In [10]:
TEXT.build_vocab(trainset, min_freq=5) #단어 집합 생성
LABEL.build_vocab(trainset)
In [11]:
vocab_size = len(TEXT.vocab)
n_classes = 2
print('set_size: ', (vocab_size))
print('nclass: ', (n_classes))
set_size: 46159 nclass: 2
In [12]:
print(TEXT.vocab.stoi)
defaultdict(<bound method Vocab._default_unk_index of <torchtext.vocab.Vocab object at 0x000001C5719DD910>>, {'<unk>': 0, '<pad>': 1, 'the': 2, 'a': 3, 'and': 4, 'of': 5, 'to': 6, 'is': 7, 'in': 8, 'i': 9, 'this': 10, 'that': 11, 'it': 12, '/><br': 13, 'was': 14, 'as': 15, 'for': 16, 'with': 17, 'but': 18, 'on': 19, 'movie': 20, 'his': 21, 'are': 22, 'not': 23, 'film': 24, 'you': 25, 'have': 26, 'he': 27, 'be': 28, 'at': 29, 'one': 30, 'by': 31, 'an': 32, 'they': 33, 'from': 34, 'all': 35, 'who': 36, 'like': 37, 'so': 38, 'just': 39, 'or': 40, 'has': 41, 'her': 42, 'about': 43, "it's": 44, 'some': 45, 'if': 46, 'out': 47, 'what': 48, 'very': 49, 'when': 50, 'more': 51, 'there': 52, 'she': 53, 'would': 54, 'even': 55, 'good': 56, 'my': 57, 'only': 58, 'their': 59, 'no': 60, 'really': 61, 'had': 62, 'which': 63, 'can': 64, 'up': 65, 'were': 66, 'see': 67, 'than': 68, 'we': 69, '-': 70, 'been': 71, 'into': 72, 'get': 73, 'will': 74, 'story': 75, 'much': 76, 'because': 77, 'most': 78, 'how': 79, 'other': 80, 'also': 81, 'first': 82, 'its': 83, 'time': 84, 'do': 85, "don't": 86, 'me': 87, 'great': 88, 'people': 89, 'could': 90, 'make': 91, 'any': 92, '/>the': 93, 'after': 94, 'made': 95, 'then': 96, 'bad': 97, 'think': 98, 'being': 99, 'many': 100, 'him': 101, 'never': 102, 'two': 103, 'too': 104, 'little': 105, 'where': 106, 'well': 107, '<br': 108, 'way': 109, 'watch': 110, 'your': 111, 'it.': 112, 'did': 113, 'does': 114, 'them': 115, 'best': 116, 'movie.': 117, 'know': 118, 'seen': 119, 'love': 120, 'characters': 121, 'character': 122, 'movies': 123, 'these': 124, 'ever': 125, 'still': 126, 'over': 127, 'should': 128, 'films': 129, 'such': 130, 'plot': 131, 'acting': 132, 'while': 133, 'show': 134, 'go': 135, 'those': 136, 'off': 137, 'better': 138, 'film.': 139, 'through': 140, "doesn't": 141, 'say': 142, 'something': 143, 'why': 144, "i'm": 145, 'makes': 146, "didn't": 147, 'watching': 148, 'back': 149, 'scene': 150, 'film,': 151, 'real': 152, 'find': 153, 'new': 154, 'movie,': 155, 'few': 156, 'actually': 157, 'every': 158, 'scenes': 159, 'man': 160, 'life': 161, 'going': 162, 'same': 163, 'nothing': 164, '/>i': 165, 'look': 166, 'another': 167, 'quite': 168, 'lot': 169, 'old': 170, 'want': 171, 'end': 172, 'pretty': 173, 'thing': 174, 'seems': 175, 'got': 176, '&': 177, "can't": 178, 'before': 179, 'take': 180, 'years': 181, 'part': 182, 'actors': 183, 'give': 184, 'young': 185, 'may': 186, 'between': 187, 'us': 188, "that's": 189, "i've": 190, 'without': 191, 'though': 192, 'both': 193, 'things': 194, 'gets': 195, 'big': 196, 'around': 197, 'here': 198, 'thought': 199, 'saw': 200, 'director': 201, 'almost': 202, 'it,': 203, 'now': 204, "isn't": 205, 'always': 206, 'must': 207, 'come': 208, 'own': 209, 'work': 210, 'whole': 211, 'cast': 212, 'horror': 213, 'down': 214, 'might': 215, "there's": 216, "he's": 217, 'bit': 218, 'least': 219, 'probably': 220, 'enough': 221, '"the': 222, 'feel': 223, 'last': 224, 'original': 225, 'am': 226, 'since': 227, 'rather': 228, 'long': 229, 'far': 230, 'fact': 231, 'kind': 232, 'each': 233, 'world': 234, 'funny': 235, 'found': 236, 'anything': 237, 'worst': 238, 'comes': 239, 'having': 240, 'our': 241, 'making': 242, 'trying': 243, 'action': 244, 'right': 245, 'interesting': 246, 'done': 247, 'however,': 248, 'point': 249, 'believe': 250, 'looks': 251, 'guy': 252, 'put': 253, 'goes': 254, '/>this': 255, 'family': 256, 'played': 257, 'main': 258, 'anyone': 259, 'series': 260, 'hard': 261, "wasn't": 262, 'role': 263, 'especially': 264, 'music': 265, 'yet': 266, 'worth': 267, 'seem': 268, 'performance': 269, 'plays': 270, 'takes': 271, 'script': 272, 'watched': 273, 'sure': 274, 'looking': 275, 'during': 276, 'someone': 277, 'minutes': 278, 'different': 279, 'tv': 280, 'although': 281, 'woman': 282, 'set': 283, 'three': 284, 'away': 285, 'times': 286, 'shows': 287, 'maybe': 288, 'comedy': 289, 'girl': 290, 'left': 291, 'everything': 292, 'time.': 293, 'john': 294, 'once': 295, 'seeing': 296, 'simply': 297, "you're": 298, 'american': 299, 'fun': 300, 'special': 301, 'completely': 302, 'everyone': 303, 'play': 304, 'true': 305, 'again': 306, 'reason': 307, 'read': 308, 'used': 309, 'well,': 310, 'need': 311, 'given': 312, 'until': 313, 'nice': 314, 'beautiful': 315, 'use': 316, 'high': 317, 'sense': 318, 'truly': 319, 'place': 320, 'idea': 321, '--': 322, 'help': 323, 'version': 324, 'try': 325, 'less': 326, 'rest': 327, 'black': 328, 'money': 329, 'came': 330, 'job': 331, 'second': 332, 'dvd': 333, 'excellent': 334, 'recommend': 335, 'ending': 336, 'tell': 337, 'getting': 338, 'shot': 339, 'keep': 340, 'instead': 341, 'actor': 342, '(and': 343, 'gives': 344, 'full': 345, 'said': 346, 'let': 347, 'half': 348, 'enjoy': 349, 'poor': 350, 'couple': 351, 'day': 352, 'himself': 353, 'playing': 354, 'definitely': 355, 'supposed': 356, 'audience': 357, 'early': 358, 'become': 359, 'along': 360, 'felt': 361, 'effects': 362, 'understand': 363, 'all,': 364, 'remember': 365, 'small': 366, "couldn't": 367, 'book': 368, 'entire': 369, 'later': 370, 'absolutely': 371, 'liked': 372, 'together': 373, 'star': 374, 'against': 375, 'fan': 376, 'went': 377, 'wife': 378, 'next': 379, 'doing': 380, 'start': 381, 'perhaps': 382, 'year': 383, 'often': 384, 'hollywood': 385, 'certainly': 386, 'screen': 387, 'several': 388, '(the': 389, 'time,': 390, '2': 391, "she's": 392, 'sort': 393, 'night': 394, 'waste': 395, 'human': 396, 'is,': 397, 'becomes': 398, 'short': 399, 'wonderful': 400, '10': 401, 'seemed': 402, 'loved': 403, 'men': 404, 'kids': 405, '\x96': 406, 'piece': 407, 'war': 408, 'classic': 409, 'father': 410, '.': 411, 'production': 412, 'house': 413, 'home': 414, 'camera': 415, 'else': 416, 'wanted': 417, 'hope': 418, 'women': 419, 'that,': 420, 'totally': 421, 'live': 422, 'course': 423, 'performances': 424, 'lost': 425, 'top': 426, 'based': 427, "i'd": 428, 'them.': 429, 'tries': 430, 'line': 431, 'mind': 432, 'video': 433, "you'll": 434, 'final': 435, 'able': 436, 'called': 437, 'wants': 438, 'perfect': 439, 'friends': 440, 'gave': 441, "they're": 442, 'under': 443, 'death': 444, 'already': 445, 'despite': 446, 'enjoyed': 447, 'story,': 448, 'finally': 449, 'person': 450, 'name': 451, 'either': 452, 'turn': 453, 'sex': 454, 'turns': 455, 'care': 456, 'one.': 457, 'starts': 458, 'written': 459, 'dead': 460, 'problem': 461, 'episode': 462, "won't": 463, 'this.': 464, 'low': 465, 'school': 466, 'stupid': 467, 'mean': 468, 'face': 469, 'behind': 470, 'this,': 471, 'me.': 472, 'him.': 473, 'moments': 474, 'lead': 475, 'favorite': 476, 'and,': 477, 'lines': 478, 'sound': 479, 'white': 480, 'head': 481, 'michael': 482, 'stars': 483, 'guess': 484, 'took': 485, 'cannot': 486, 'story.': 487, 'fine': 488, 'budget': 489, 'title': 490, 'good.': 491, 'well.': 492, 'me,': 493, 'kill': 494, 'terrible': 495, 'highly': 496, 'extremely': 497, 'others': 498, 'all.': 499, 'dialogue': 500, 'sometimes': 501, "film's": 502, 'evil': 503, 'beginning': 504, 'lack': 505, 'life.': 506, 'style': 507, 'throughout': 508, "wouldn't": 509, 'heard': 510, 'obviously': 511, 'boring': 512, 'dark': 513, 'feeling': 514, 'itself': 515, 'fans': 516, 'lives': 517, 'decent': 518, 'works': 519, 'expect': 520, 'soon': 521, 'killer': 522, 'boy': 523, 'good,': 524, 'looked': 525, 'mr.': 526, 'attempt': 527, 'late': 528, 'particularly': 529, 'case': 530, 'amazing': 531, 'course,': 532, 'directed': 533, 'friend': 534, 'fight': 535, 'leave': 536, '/>in': 537, 'wrong': 538, 'quality': 539, '/>it': 540, 'mother': 541, 'picture': 542, 'entertaining': 543, 'save': 544, 'complete': 545, 'thinking': 546, 'close': 547, 'viewer': 548, 'exactly': 549, 'guys': 550, 'taken': 551, 'awful': 552, 'writing': 553, 'finds': 554, 'run': 555, 'whose': 556, 'except': 557, '/>if': 558, 'wonder': 559, 'movies.': 560, 'somewhat': 561, 'living': 562, 'across': 563, 'number': 564, 'police': 565, 'strong': 566, 'told': 567, 'says': 568, 'james': 569, 'movies,': 570, 'opening': 571, 'worse': 572, 'obvious': 573, 'shown': 574, 'parts': 575, 'laugh': 576, 'coming': 577, 'running': 578, '3': 579, 'car': 580, 'films,': 581, 'past': 582, 'direction': 583, 'usually': 584, 'type': 585, 'wish': 586, 'group': 587, 'huge': 588, 'side': 589, 'acting,': 590, 'major': 591, 'taking': 592, 'children': 593, 'supporting': 594, 'girls': 595, 'stop': 596, 'act': 597, 'bad.': 598, 'hour': 599, 'turned': 600, 'tells': 601, 'known': 602, 'none': 603, 'started': 604, 'local': 605, 'knew': 606, 'that.': 607, 'myself': 608, 'killed': 609, 'due': 610, 'here,': 611, 'stories': 612, "aren't": 613, 'town': 614, 'single': 615, 'game': 616, 'happens': 617, ',': 618, 'female': 619, 'it.<br': 620, 'again,': 621, 'bring': 622, 'call': 623, 'including': 624, "i'll": 625, 'way,': 626, 'brilliant': 627, 'cinema': 628, 'here.': 629, 'son': 630, 'clearly': 631, 'british': 632, 'actress': 633, 'fact,': 634, '/>there': 635, 'mostly': 636, 'humor': 637, 'art': 638, 'david': 639, 'hit': 640, 'talking': 641, 'voice': 642, 'robert': 643, 'involved': 644, 'whether': 645, 'characters,': 646, 'giving': 647, 'child': 648, 'musical': 649, 'one,': 650, 'history': 651, 'order': 652, 'out.': 653, 'ends': 654, 'falls': 655, 'end,': 656, 'heart': 657, 'saying': 658, 'drama': 659, 'easily': 660, '!': 661, 'matter': 662, 'serious': 663, 'again.': 664, 'bad,': 665, 'eyes': 666, 'relationship': 667, 'horrible': 668, 'yes,': 669, 'nearly': 670, 'however': 671, 'modern': 672, 'chance': 673, 'feels': 674, 'beyond': 675, 'kid': 676, 'needs': 677, 'actual': 678, 'cut': 679, "haven't": 680, 'appears': 681, 'important': 682, 'similar': 683, 'themselves': 684, 'five': 685, 'example': 686, 'moment': 687, '/>but': 688, 'change': 689, 'comic': 690, 'upon': 691, 'end.': 692, 'simple': 693, 'strange': 694, 'using': 695, 'four': 696, 'knows': 697, 'happened': 698, 'is.': 699, 'named': 700, 'within': 701, 'released': 702, 'usual': 703, 'way.': 704, 'seen.': 705, 'english': 706, 'among': 707, 'movie.<br': 708, 'but,': 709, 'lots': 710, '/>': 711, 'basically': 712, 'mention': 713, 'slow': 714, 'romantic': 715, 'stuff': 716, 'bunch': 717, 'her.': 718, 'kept': 719, 'typical': 720, 'certain': 721, 'interest': 722, 'films.': 723, 'near': 724, 'city': 725, 'hours': 726, 'overall': 727, 'showing': 728, '(i': 729, 'blood': 730, 'plot,': 731, 'brought': 732, 'fall': 733, 'murder': 734, 'days': 735, 'body': 736, '/>and': 737, 'tried': 738, 'song': 739, 'apparently': 740, 'miss': 741, '/>a': 742, 'him,': 743, 'middle': 744, 'greatest': 745, 'jack': 746, 'life,': 747, 'george': 748, 'film.<br': 749, 'score': 750, 'events': 751, 'happy': 752, 'sad': 753, '/>as': 754, 'yourself': 755, 'working': 756, 'shots': 757, 'stay': 758, 'talk': 759, 'add': 760, 'cheap': 761, '(as': 762, 'begins': 763, 'decided': 764, 'age': 765, 'buy': 766, 'so,': 767, 'surprised': 768, 'hear': 769, 'french': 770, 'brother': 771, 'famous': 772, 'alone': 773, 'on.': 774, 'paul': 775, 'became': 776, "what's": 777, 'daughter': 778, 'hate': 779, 'annoying': 780, 'learn': 781, 'richard': 782, 'happen': 783, '(which': 784, 'please': 785, 'sit': 786, 'songs': 787, "you've": 788, 'de': 789, 'jokes': 790, 'easy': 791, "/>it's": 792, 'nor': 793, 'ten': 794, 'peter': 795, 'sets': 796, 'documentary': 797, 'view': 798, 'experience': 799, 'light': 800, 'too.': 801, 'above': 802, 'funny.': 803, 'cinematography': 804, 'funny,': 805, 'hell': 806, 'possibly': 807, "who's": 808, 'sequence': 809, 'sexual': 810, 'attention': 811, 'king': 812, 'straight': 813, '1': 814, 'stand': 815, 'hand': 816, 'meets': 817, 'power': 818, 'oh': 819, 'gore': 820, 'episodes': 821, 'word': 822, 'difficult': 823, 'clear': 824, 'elements': 825, 'husband': 826, 'also,': 827, 'red': 828, 'god': 829, 'violence': 830, 'characters.': 831, 'keeps': 832, 'leaves': 833, 'poorly': 834, 'realize': 835, 'means': 836, 'ones': 837, 'japanese': 838, 'television': 839, 'genre': 840, 'roles': 841, 'character,': 842, 'somehow': 843, 'flick': 844, '5': 845, 'cool': 846, 'out,': 847, 'figure': 848, 'reality': 849, 'possible': 850, 'silly': 851, 'them,': 852, 'eventually': 853, 'towards': 854, 'reading': 855, 'move': 856, 'rent': 857, 'brings': 858, 'doubt': 859, 'scary': 860, 'theme': 861, 'killing': 862, 'lady': 863, 'unfortunately': 864, 'filmed': 865, 'imagine': 866, 'moving': 867, 'previous': 868, 'emotional': 869, 'on,': 870, 'leads': 871, 'rock': 872, 'room': 873, '(or': 874, 'problems': 875, 'third': 876, 'tom': 877, 'deal': 878, 'say,': 879, 'oscar': 880, 'though,': 881, 'review': 882, 'talent': 883, 'novel': 884, 'comments': 885, 'forget': 886, 'hero': 887, 'leading': 888, 'message': 889, 'enjoyable': 890, 'incredibly': 891, 'level': 892, 'write': 893, 'career': 894, 'ridiculous': 895, 'check': 896, 'better.': 897, 'various': 898, 'plenty': 899, 'animation': 900, 'meant': 901, 'needed': 902, 'personal': 903, 'feature': 904, 'show.': 905, 'writer': 906, 'future': 907, 'herself': 908, 'avoid': 909, 'gone': 910, 'meet': 911, 'create': 912, 'work.': 913, 'hardly': 914, 'begin': 915, 'whom': 916, 'total': 917, 'country': 918, 'manages': 919, 'team': 920, 'theater': 921, 'watch.': 922, '4': 923, 'forced': 924, 'fairly': 925, 'form': 926, 'up.': 927, 'particular': 928, 'there.': 929, 'hilarious': 930, 'appear': 931, 'points': 932, 'you.': 933, 'now,': 934, 'viewers': 935, 'fantastic': 936, 'effort': 937, 'interested': 938, 'follow': 939, 'unless': 940, 'weak': 941, 'words': 942, 'fast': 943, 'dramatic': 944, 'expecting': 945, 'tale': 946, 'unfortunately,': 947, 'joe': 948, 'zombie': 949, 'male': 950, 'older': 951, 'average': 952, 'her,': 953, 'general': 954, 'political': 955, 'attempts': 956, 'reviews': 957, 'mystery': 958, 'scenes,': 959, 'features': 960, 'sounds': 961, 'subject': 962, '(a': 963, 'class': 964, 'whatever': 965, 'york': 966, 'pay': 967, 'crap': 968, 'lee': 969, 'up,': 970, 'scene,': 971, 'worked': 972, 'dance': 973, 'decides': 974, 'disney': 975, 'premise': 976, 'then,': 977, 'plain': 978, 'man,': 979, "let's": 980, 'minute': 981, 'badly': 982, 'ask': 983, 'dialog': 984, '20': 985, 'expected': 986, 'viewing': 987, 'forward': 988, 'open': 989, 'uses': 990, 'wait': 991, '(who': 992, 'deep': 993, 'social': 994, 'storyline': 995, 'front': 996, 'crime': 997, 'directors': 998, 'writers': 999, 'comment': 1000, 'there,': 1001, 'waiting': 1002, 'fails': 1003, 'hold': 1004, 'nature': 1005, "'the": 1006, 'slightly': 1007, 'admit': 1008, 'unique': 1009, 'deserves': 1010, 'sees': 1011, 'soundtrack': 1012, 'considering': 1013, 'stage': 1014, 'battle': 1015, 'pure': 1016, 'portrayed': 1017, 'parents': 1018, 'sequences': 1019, 'dull': 1020, 'footage': 1021, 'season': 1022, 'times,': 1023, 'compared': 1024, 'telling': 1025, 'sister': 1026, 'spent': 1027, 'atmosphere': 1028, 'dr.': 1029, 'realistic': 1030, 'biggest': 1031, 'caught': 1032, 'outside': 1033, 'rating': 1034, 'unlike': 1035, 'predictable': 1036, 'visual': 1037, 'william': 1038, 'earth': 1039, 'talented': 1040, 'agree': 1041, 'weird': 1042, 'years.': 1043, '...': 1044, 'it!': 1045, 'perfectly': 1046, 'recent': 1047, 'quickly': 1048, 'show,': 1049, 'spend': 1050, 'bill': 1051, 'inside': 1052, 'large': 1053, 'people,': 1054, 'eye': 1055, 'memorable': 1056, 'powerful': 1057, 'entirely': 1058, 'etc.': 1059, 'space': 1060, 'casting': 1061, 'fighting': 1062, '/>what': 1063, 'editing': 1064, 'people.': 1065, 'return': 1066, 'ways': 1067, 'kills': 1068, 'sequel': 1069, 'sorry': 1070, 'lame': 1071, 'rich': 1072, "we're": 1073, 'wrote': 1074, 'ben': 1075, 'plot.': 1076, 'result': 1077, 'amount': 1078, 'filled': 1079, 'made.': 1080, 'consider': 1081, 'free': 1082, 'question': 1083, 'disappointed': 1084, 'earlier': 1085, 'period': 1086, 'following': 1087, 'screenplay': 1088, 'former': 1089, 'sci-fi': 1090, 'secret': 1091, 'work,': 1092, 'actors,': 1093, 'gay': 1094, 'release': 1095, "weren't": 1096, 'filmmakers': 1097, 'neither': 1098, 'superb': 1099, 'cheesy': 1100, 'material': 1101, 'said,': 1102, 'seriously': 1103, 'showed': 1104, 'appreciate': 1105, 'popular': 1106, 'entertainment': 1107, 'odd': 1108, 'runs': 1109, 'comedy,': 1110, 'missing': 1111, 'copy': 1112, 'moves': 1113, 'creepy': 1114, 'hot': 1115, 'married': 1116, 'suddenly': 1117, 'positive': 1118, 'decide': 1119, '(in': 1120, 'basic': 1121, 'imdb': 1122, 'shame': 1123, 'present': 1124, 'scenes.': 1125, 'recently': 1126, 'animated': 1127, 'box': 1128, 'considered': 1129, 'portrayal': 1130, 'thriller': 1131, 'hands': 1132, 'mark': 1133, 'more.': 1134, 'plus': 1135, 'barely': 1136, 'break': 1137, 'common': 1138, 'credits': 1139, 'be.': 1140, 'beauty': 1141, 'crazy': 1142, 'ideas': 1143, 'too,': 1144, 'leaving': 1145, 'character.': 1146, 'further': 1147, 'wasted': 1148, 'fantasy': 1149, 'italian': 1150, 'missed': 1151, 'western': 1152, 'christmas': 1153, 'ended': 1154, 'believable': 1155, 'german': 1156, 'you,': 1157, 'follows': 1158, 'ago': 1159, 'created': 1160, 'great,': 1161, 'opinion': 1162, 'familiar': 1163, 'setting': 1164, 'utterly': 1165, 'background': 1166, 'in.': 1167, 'likes': 1168, 'bought': 1169, 'dream': 1170, 'fit': 1171, 'incredible': 1172, 'monster': 1173, 'jane': 1174, 'situation': 1175, 'involving': 1176, 'public': 1177, 'screen.': 1178, '"i': 1179, 'otherwise': 1180, 'starring': 1181, 'dumb': 1182, 'focus': 1183, 'glad': 1184, 'members': 1185, 'remake': 1186, 'crew': 1187, 'role.': 1188, 'van': 1189, 'acting.': 1190, 'successful': 1191, 'won': 1192, 'younger': 1193, 'apart': 1194, 'science': 1195, 'solid': 1196, 'boys': 1197, 'rate': 1198, 'series,': 1199, 'sitting': 1200, 'surprise': 1201, 'dog': 1202, 'street': 1203, 'die': 1204, 'generally': 1205, 'truth': 1206, 'ultimately': 1207, 'great.': 1208, 'baby': 1209, 'walk': 1210, '/>my': 1211, 'romance': 1212, 'world.': 1213, 'potential': 1214, 'managed': 1215, "movie's": 1216, 'cop': 1217, 'laughing': 1218, 'slasher': 1219, 'thinks': 1220, 'twist': 1221, 'suspense': 1222, 'scott': 1223, 'was,': 1224, 'bored': 1225, 'times.': 1226, '/>all': 1227, 'directing': 1228, 'doctor': 1229, 'not.': 1230, 'today': 1231, 'effect': 1232, 'knowing': 1233, 'singing': 1234, 'chemistry': 1235, '30': 1236, 'adult': 1237, 'catch': 1238, 'cover': 1239, 'bizarre': 1240, 'impossible': 1241, 'mentioned': 1242, 'acted': 1243, 'added': 1244, 'air': 1245, 'intelligent': 1246, 'speak': 1247, 'book,': 1248, 'fully': 1249, 'explain': 1250, 'match': 1251, 'likely': 1252, 'remains': 1253, 'cast,': 1254, 'changed': 1255, 'cinematic': 1256, 'convincing': 1257, 'escape': 1258, 'business': 1259, 'stick': 1260, 'win': 1261, 'clever': 1262, 'equally': 1263, 'first,': 1264, 'indeed': 1265, 'trouble': 1266, 'much.': 1267, 'thrown': 1268, 'note': 1269, 'produced': 1270, 'years,': 1271, 'failed': 1272, 'rare': 1273, '/>one': 1274, 'cause': 1275, 'computer': 1276, 'credit': 1277, 'dancing': 1278, 'mary': 1279, 'producers': 1280, 'pick': 1281, 'violent': 1282, 'historical': 1283, 'series.': 1284, 'steve': 1285, 'thanks': 1286, '15': 1287, 'effective': 1288, 'tony': 1289, 'choice': 1290, 'contains': 1291, 'cute': 1292, 'development': 1293, 'music,': 1294, "you'd": 1295, 'band': 1296, 'off,': 1297, 'sent': 1298, 'comedy.': 1299, 'hoping': 1300, 'military': 1301, 'shooting': 1302, 'south': 1303, 'central': 1304, 'longer': 1305, 'scene.': 1306, 'success': 1307, 'aspect': 1308, 'cartoon': 1309, 'constantly': 1310, 'off.': 1311, 'ability': 1312, 'cold': 1313, 'ok': 1314, 'script,': 1315, 'excuse': 1316, '10.': 1317, 'concept': 1318, 'studio': 1319, '/>so': 1320, 'college': 1321, 'immediately': 1322, 'state': 1323, 'not,': 1324, 'cult': 1325, 'know,': 1326, 'nobody': 1327, 'puts': 1328, 'surprisingly': 1329, 'walking': 1330, 'later,': 1331, 'tension': 1332, 'do.': 1333, 'exciting': 1334, 'frank': 1335, 'silent': 1336, 'society': 1337, 'brothers': 1338, 'fire': 1339, 'list': 1340, 'tone': 1341, 'ghost': 1342, 'surely': 1343, 'mean,': 1344, 'fear': 1345, 'minor': 1346, 'sam': 1347, 'spirit': 1348, 'throw': 1349, 'literally': 1350, 'beautifully': 1351, 'force': 1352, 'reasons': 1353, 'trip': 1354, 'ever.': 1355, 'jim': 1356, 'was.': 1357, 'la': 1358, 'laughs': 1359, 'questions': 1360, '(': 1361, 'depth': 1362, 'tough': 1363, 'died': 1364, 'sweet': 1365, '"a': 1366, 'flat': 1367, 'makers': 1368, 'enough,': 1369, 'stands': 1370, 'villain': 1371, 'gun': 1372, 'loves': 1373, 'man.': 1374, 'best.': 1375, "hasn't": 1376, 'indian': 1377, 'no,': 1378, 'nudity': 1379, 'pace': 1380, 'suggest': 1381, 'together.': 1382, 'amusing': 1383, 'girlfriend': 1384, 'respect': 1385, 'adaptation': 1386, 'anyway,': 1387, 'images': 1388, 'include': 1389, 'mad': 1390, 'falling': 1391, 'natural': 1392, 'thank': 1393, 'company': 1394, 'fake': 1395, 'lacks': 1396, 'presented': 1397, 'revenge': 1398, 'shoot': 1399, 'merely': 1400, 'touch': 1401, 'joke': 1402, 'party': 1403, 'terms': 1404, 'day.': 1405, 'master': 1406, 'office': 1407, 'brief': 1408, 'oh,': 1409, 'either.': 1410, 'impressive': 1411, 'mainly': 1412, 'pass': 1413, 'pointless': 1414, 'somewhere': 1415, 'america': 1416, 'example,': 1417, 'impression': 1418, 'day,': 1419, 'control': 1420, 'appeal': 1421, 'christopher': 1422, 'director,': 1423, 'drawn': 1424, 'proves': 1425, 'about.': 1426, 'innocent': 1427, 'putting': 1428, 'thing.': 1429, 'standard': 1430, 'appearance': 1431, 'chase': 1432, 'naked': 1433, 'prison': 1434, 'sick': 1435, 'wild': 1436, '"': 1437, 'chris': 1438, 'rated': 1439, 'serial': 1440, 'world,': 1441, 'audiences': 1442, 'becoming': 1443, 'heavy': 1444, 'in,': 1445, 'provides': 1446, '8': 1447, 'fell': 1448, 'harry': 1449, 'love,': 1450, 'mysterious': 1451, 'subtle': 1452, 'lovely': 1453, 'mess': 1454, 'share': 1455, 'cat': 1456, 'fellow': 1457, 'acts': 1458, 'army': 1459, 'detective': 1460, 'normal': 1461, 'reminded': 1462, 'support': 1463, 'suppose': 1464, 'appeared': 1465, 'followed': 1466, 'sure,': 1467, 'touching': 1468, 'finding': 1469, 'fun.': 1470, 'giant': 1471, 'role,': 1472, '(not': 1473, 'actors.': 1474, 'complex': 1475, 'drug': 1476, 'helps': 1477, 'meaning': 1478, 'narrative': 1479, 'thoroughly': 1480, 'absolute': 1481, 'minutes.': 1482, 'terrific': 1483, 'did.': 1484, 'pull': 1485, 'action,': 1486, 'adds': 1487, 'aspects': 1488, 'charles': 1489, 'offers': 1490, 'rented': 1491, 'seemingly': 1492, 'still,': 1493, 'with.': 1494, 'store': 1495, 'disturbing': 1496, 'fair': 1497, 'magic': 1498, 'point,': 1499, 'turning': 1500, 'element': 1501, 'held': 1502, 'language': 1503, 'stuck': 1504, 'tired': 1505, 'value': 1506, 'charming': 1507, 'effects,': 1508, 'paid': 1509, 'thats': 1510, 'wondering': 1511, 'slowly': 1512, 'supposedly': 1513, 'attack': 1514, 'books': 1515, 'brain': 1516, 'funniest': 1517, 'mood': 1518, 'painful': 1519, 'picked': 1520, 'themes': 1521, 'thus': 1522, 'delivers': 1523, 'onto': 1524, "shouldn't": 1525, 'water': 1526, 'island': 1527, 'minutes,': 1528, 'moral': 1529, 'self': 1530, 'awful.': 1531, 'charlie': 1532, 'lived': 1533, 'million': 1534, 'sadly': 1535, 'billy': 1536, 'critics': 1537, "man's": 1538, 'soldiers': 1539, 'journey': 1540, 'plan': 1541, 'wrong.': 1542, 'henry': 1543, 'pictures': 1544, 'redeeming': 1545, 'available': 1546, 'bruce': 1547, 'hand,': 1548, 'movie!': 1549, 'negative': 1550, 'ok,': 1551, 'twists': 1552, 'opportunity': 1553, 'performance.': 1554, 'vampire': 1555, 'willing': 1556, 'carry': 1557, 'presence': 1558, 'to.': 1559, 'changes': 1560, 'damn': 1561, 'key': 1562, 'led': 1563, 'dad': 1564, 'random': 1565, 'script.': 1566, 'sexy': 1567, 'actor,': 1568, 'bottom': 1569, 'edge': 1570, 'zombies': 1571, 'allowed': 1572, 'drive': 1573, 'government': 1574, 'green': 1575, 'hidden': 1576, 'interesting.': 1577, 'teenage': 1578, '/>for': 1579, 'cast.': 1580, 'laughed': 1581, 'lose': 1582, 'martial': 1583, 'project': 1584, 'track': 1585, 'away.': 1586, 'bother': 1587, 'flying': 1588, 'image': 1589, 'includes': 1590, 'other.': 1591, 'values': 1592, 'award': 1593, 'boring.': 1594, 'gang': 1595, 'mix': 1596, 'really,': 1597, 'thing,': 1598, 'though.': 1599, 'adventure': 1600, 'christian': 1601, 'everybody': 1602, 'issues': 1603, 'pieces': 1604, 'super': 1605, '(with': 1606, 'boring,': 1607, 'filming': 1608, 'helped': 1609, 'instead,': 1610, 'seen,': 1611, 'six': 1612, 'time.<br': 1613, 'camp': 1614, 'describe': 1615, 'family.': 1616, 'favourite': 1617, 'personally': 1618, 'jerry': 1619, 'lets': 1620, '7': 1621, 'era': 1622, 'interesting,': 1623, 'ready': 1624, 'train': 1625, 'before.': 1626, 'motion': 1627, 'outstanding': 1628, 'stunning': 1629, "character's": 1630, 'asks': 1631, 'awesome': 1632, 'compare': 1633, 'creative': 1634, 'honestly': 1635, 'masterpiece': 1636, 'rarely': 1637, 'feelings': 1638, 'impressed': 1639, 'approach': 1640, 'channel': 1641, 'road': 1642, 'step': 1643, 'aside': 1644, 'humour': 1645, 'intended': 1646, 'reminds': 1647, 'allow': 1648, 'artistic': 1649, 'book.': 1650, 'fascinating': 1651, 'names': 1652, 'audience.': 1653, 'beat': 1654, 'else.': 1655, 'mental': 1656, 'moved': 1657, 'pathetic': 1658, 'provide': 1659, 'compelling': 1660, 'deeply': 1661, 'hair': 1662, 'technical': 1663, 'tragic': 1664, 'alan': 1665, 'notice': 1666, 'now.': 1667, 'yet,': 1668, 'b': 1669, 'brian': 1670, 'ending.': 1671, 'overall,': 1672, 'student': 1673, 'victim': 1674, 'wearing': 1675, 'century': 1676, 'comedies': 1677, 'physical': 1678, 'west': 1679, 'comedic': 1680, 'speaking': 1681, 'yes': 1682, 'chinese': 1683, 'done.': 1684, 'family,': 1685, 'performance,': 1686, 'wife,': 1687, 'wonderfully': 1688, 'afraid': 1689, 'inspired': 1690, 'opinion,': 1691, 'wanting': 1692, 'back.': 1693, 'blue': 1694, 'continue': 1695, 'law': 1696, 'money.': 1697, 'purpose': 1698, 'culture': 1699, 'holds': 1700, 'struggle': 1701, 'better,': 1702, 'case,': 1703, 'color': 1704, 'developed': 1705, 'direct': 1706, 'gorgeous': 1707, 'gotten': 1708, 'listen': 1709, 'sat': 1710, 'search': 1711, 'accept': 1712, 'build': 1713, 'difference': 1714, 'house,': 1715, 'planet': 1716, "80's": 1717, 'desperate': 1718, 'details': 1719, 'hotel': 1720, 'mr': 1721, 'place.': 1722, 'situations': 1723, 'toward': 1724, 'trash': 1725, '(if': 1726, 'honest': 1727, 'mediocre': 1728, 'stewart': 1729, 'disappointed.': 1730, 'do,': 1731, 'independent': 1732, 'member': 1733, 'nowhere': 1734, 'answer': 1735, 'born': 1736, 'deliver': 1737, 'kelly': 1738, 'london': 1739, 'made,': 1740, 'ms.': 1741, 'realized': 1742, 'sense.': 1743, 'taste': 1744, 'woman,': 1745, 'worthy': 1746, '/>when': 1747, 'offer': 1748, 'stephen': 1749, 'be,': 1750, 'before,': 1751, 'confused': 1752, 'constant': 1753, 'it?': 1754, 'places': 1755, 'intense': 1756, 'marriage': 1757, 'smart': 1758, 'smith': 1759, 'watch,': 1760, 'for.': 1761, 'fresh': 1762, 'himself.': 1763, 'job.': 1764, 'seven': 1765, 'don': 1766, 'emotions': 1767, 'religious': 1768, 'began': 1769, 'impact': 1770, 'latter': 1771, 'nasty': 1772, 'original,': 1773, 'professional': 1774, 'best,': 1775, 'building': 1776, 'costumes': 1777, 'dialogue,': 1778, 'double': 1779, 'hated': 1780, 'part,': 1781, 'batman': 1782, 'apparent': 1783, 'climax': 1784, 'love.': 1785, 'spot': 1786, 'alien': 1787, 'down.': 1788, 'extreme': 1789, 'hurt': 1790, 'shock': 1791, 'asked': 1792, 'creating': 1793, 'cry': 1794, 'genius': 1795, "hadn't": 1796, 'introduced': 1797, 'ride': 1798, "today's": 1799, 'trust': 1800, '(like': 1801, '9': 1802, 'capture': 1803, 'church': 1804, 'extra': 1805, 'limited': 1806, 'manage': 1807, 'skip': 1808, 'ahead': 1809, 'cinema.': 1810, 'noir': 1811, 'photography': 1812, 'animals': 1813, 'charm': 1814, 'growing': 1815, 'accent': 1816, 'blame': 1817, 'deserve': 1818, 'exception': 1819, 'information': 1820, 'much,': 1821, 'murders': 1822, 'producer': 1823, 'pulled': 1824, 'ray': 1825, 'starting': 1826, 'students': 1827, 'terrible.': 1828, 'besides': 1829, 'martin': 1830, 'numerous': 1831, 'other,': 1832, 'quick': 1833, 'trailer': 1834, 'whenever': 1835, 'whilst': 1836, 'zero': 1837, 'bloody': 1838, 'fiction': 1839, 'genre.': 1840, 'likable': 1841, 'girl,': 1842, 'kinda': 1843, 'treated': 1844, 'according': 1845, 'featuring': 1846, 'keeping': 1847, 'loud': 1848, 'porn': 1849, 'see.': 1850, 'superior': 1851, 'tim': 1852, 'attractive': 1853, 'captain': 1854, 'fred': 1855, 'grand': 1856, 'russian': 1857, 'so.': 1858, 'terribly': 1859, 'winning': 1860, '/>to': 1861, 'actresses': 1862, 'ago,': 1863, 'academy': 1864, 'animal': 1865, 'long,': 1866, 'right.': 1867, 'scenery': 1868, 'unusual': 1869, '90': 1870, 'al': 1871, 'count': 1872, 'disappointing': 1873, 'addition': 1874, 'boss': 1875, 'discover': 1876, 'dreams': 1877, 'jason': 1878, 'mixed': 1879, 'phone': 1880, 'somebody': 1881, 'week': 1882, 'dealing': 1883, 'door': 1884, 'dvd.': 1885, 'ed': 1886, 'mistake': 1887, 'okay': 1888, 'prove': 1889, 'returns': 1890, 'uncle': 1891, 'cgi': 1892, 'flick.': 1893, 'normally': 1894, 'soul': 1895, 'unbelievable': 1896, '6': 1897, 'emotion': 1898, 'loses': 1899, 'rape': 1900, 'together,': 1901, '/>while': 1902, 'anybody': 1903, 'finish': 1904, 'international': 1905, 'joan': 1906, 'justice': 1907, 'news': 1908, 'responsible': 1909, 'summer': 1910, "they've": 1911, 'thin': 1912, "/>i'm": 1913, 'point.': 1914, 'recommended': 1915, 'wooden': 1916, '?': 1917, 'angry': 1918, 'fun,': 1919, 'genuinely': 1920, 'lies': 1921, 'original.': 1922, 'pain': 1923, 'relationships': 1924, 'understanding': 1925, "we've": 1926, 'woods': 1927, 'americans': 1928, 'are,': 1929, 'arthur': 1930, 'arts': 1931, 'father,': 1932, 'originally': 1933, 'portray': 1934, 'bar': 1935, 'current': 1936, 'deals': 1937, 'dying': 1938, 'scientist': 1939, 'therefore': 1940, '100': 1941, '40': 1942, 'bond': 1943, 'danny': 1944, 'desire': 1945, 'european': 1946, 'night,': 1947, "one's": 1948, 'teen': 1949, 'affair': 1950, 'hopes': 1951, 'okay,': 1952, 'remarkable': 1953, 'adults': 1954, 'allows': 1955, 'childhood': 1956, 'criminal': 1957, 'jeff': 1958, 'mind.': 1959, 'psychological': 1960, 'saved': 1961, 'scared': 1962, 'sheer': 1963, 'soldier': 1964, 'with,': 1965, 'agent': 1966, 'andy': 1967, 'aware': 1968, 'grew': 1969, 'unable': 1970, 'content': 1971, 'expectations': 1972, 'finest': 1973, 'low-budget': 1974, 'proved': 1975, 'ultimate': 1976, 'allen': 1977, 'finished': 1978, 'location': 1979, 'private': 1980, 'race': 1981, 'surprising': 1982, 'them.<br': 1983, 'traditional': 1984, 'alive': 1985, 'bed': 1986, 'brutal': 1987, 'continues': 1988, 'forgotten': 1989, 'numbers': 1990, 'opera': 1991, 'pop': 1992, 'short,': 1993, 'suspect': 1994, 'wrong,': 1995, 'cliché': 1996, 'club': 1997, "director's": 1998, 'discovers': 1999, 'eat': 2000, 'eddie': 2001, 'gonna': 2002, 'hits': 2003, 'moments,': 2004, 'regular': 2005, 'today.': 2006, '(for': 2007, 'epic': 2008, 'kevin': 2009, 'learned': 2010, 'lighting': 2011, 'loving': 2012, 'opens': 2013, 'shocking': 2014, 'boyfriend': 2015, 'date': 2016, 'dressed': 2017, 'mom': 2018, 'music.': 2019, 'page': 2020, 'seconds': 2021, 'see,': 2022, 'breaks': 2023, 'confusing': 2024, 'fan,': 2025, 'guy,': 2026, 'happening': 2027, 'lord': 2028, 'noticed': 2029, 'bigger': 2030, 'calls': 2031, 'dangerous': 2032, 'dirty': 2033, 'faces': 2034, 'gene': 2035, 'met': 2036, 'plane': 2037, 'twice': 2038, 'victims': 2039, 'yeah,': 2040, 'cops': 2041, 'driving': 2042, 'johnny': 2043, 'performances,': 2044, 'through.': 2045, 'majority': 2046, 'right,': 2047, 'screen,': 2048, 'to,': 2049, '(played': 2050, 'hospital': 2051, 'jump': 2052, 'nick': 2053, 'saving': 2054, 'utter': 2055, "70's": 2056, 'bits': 2057, 'forces': 2058, 'grace': 2059, 'holes': 2060, 'jean': 2061, 'land': 2062, 'radio': 2063, 'ugly': 2064, 'event': 2065, 'friends,': 2066, 'painfully': 2067, 'practically': 2068, 'steal': 2069, 'awful,': 2070, 'caused': 2071, 'essentially': 2072, 'garbage': 2073, 'higher': 2074, 'manner': 2075, 'necessary': 2076, 'overly': 2077, 'soap': 2078, 'visit': 2079, 'adam': 2080, 'collection': 2081, 'creature': 2082, 'design': 2083, 'ending,': 2084, 'reach': 2085, 'treat': 2086, 'unknown': 2087, 'creates': 2088, 'dies': 2089, 'fail': 2090, 'media': 2091, 'sign': 2092, 'conclusion': 2093, 'genuine': 2094, 'golden': 2095, 'pleasure': 2096, 'received': 2097, 'apartment': 2098, 'festival': 2099, 'paris': 2100, 'stone': 2101, 'captured': 2102, 'commentary': 2103, 'delightful': 2104, 'direction,': 2105, 'drama,': 2106, 'filmmaker': 2107, 'judge': 2108, 'mike': 2109, 'movie?': 2110, 'nicely': 2111, 'personality': 2112, '(although': 2113, '(but': 2114, '(even': 2115, 'crappy': 2116, 'dick': 2117, 'discovered': 2118, 'entertaining.': 2119, 'more,': 2120, 'system': 2121, 'teacher': 2122, 'area': 2123, 'connection': 2124, 'douglas': 2125, 'enough.': 2126, 'heads': 2127, 'himself,': 2128, 'industry': 2129, 'intriguing': 2130, 'involves': 2131, 'like,': 2132, 'native': 2133, 'performances.': 2134, 'prince': 2135, 'relate': 2136, 'sean': 2137, 'who,': 2138, 'witch': 2139, '/': 2140, 'ancient': 2141, 'anthony': 2142, 'energy': 2143, 'reviewers': 2144, 'states': 2145, 'effects.': 2146, 'food': 2147, 'foreign': 2148, 'lacking': 2149, 'occasionally': 2150, 'tears': 2151, 'watching.': 2152, 'described': 2153, 'jimmy': 2154, 'largely': 2155, 'learns': 2156, 'national': 2157, 'night.': 2158, 'twenty': 2159, 'williams': 2160, 'capable': 2161, 'develop': 2162, 'done,': 2163, 'job,': 2164, 'pacing': 2165, 'ran': 2166, 'sight': 2167, 'spanish': 2168, 'unnecessary': 2169, '/>overall,': 2170, 'asking': 2171, 'bright': 2172, 'death.': 2173, 'detail': 2174, 'fill': 2175, 'fox': 2176, 'history.': 2177, 'laughable': 2178, 'loose': 2179, 'money,': 2180, 'picture.': 2181, 'queen': 2182, 'stock': 2183, 'actions': 2184, 'blonde': 2185, 'broken': 2186, 'deserved': 2187, "here's": 2188, 'house.': 2189, 'joy': 2190, 'action.': 2191, 'ago.': 2192, 'itself,': 2193, 'portraying': 2194, 'roles.': 2195, 'tend': 2196, ':': 2197, 'away,': 2198, 'believes': 2199, 'bob': 2200, 'captures': 2201, 'clothes': 2202, 'intelligence': 2203, 'passion': 2204, 'proper': 2205, 'quiet': 2206, 'ship': 2207, 'tragedy': 2208, 'wide': 2209, 'below': 2210, 'choose': 2211, 'davis': 2212, 'empty': 2213, 'fights': 2214, 'long.': 2215, 'months': 2216, 'pair': 2217, 'part.': 2218, 'portrays': 2219, 'standing': 2220, '/>you': 2221, 'around.': 2222, 'boy,': 2223, 'classic.': 2224, 'cross': 2225, 'engaging': 2226, 'fat': 2227, 'gary': 2228, 'ground': 2229, 'issue': 2230, 'lover': 2231, 'place,': 2232, 'remembered': 2233, 'ring': 2234, 'kate': 2235, 'others.': 2236, 'screaming': 2237, 'theatre': 2238, 'combination': 2239, 'director.': 2240, 'knowledge': 2241, 'losing': 2242, 'powers': 2243, 'record': 2244, 'strongly': 2245, 'absurd': 2246, 'ann': 2247, 'assume': 2248, 'bringing': 2249, 'folks': 2250, 'unexpected': 2251, 'vhs': 2252, 'virtually': 2253, 'walks': 2254, 'war,': 2255, 'curious': 2256, 'endless': 2257, 'gangster': 2258, 'graphic': 2259, 'hearing': 2260, 'jackson': 2261, 'over.': 2262, 'passed': 2263, 'roll': 2264, 'station': 2265, 'steals': 2266, 'violence,': 2267, 'actor.': 2268, 'blind': 2269, 'death,': 2270, 'explanation': 2271, 'flaws': 2272, 'flicks': 2273, 'gem': 2274, 'home,': 2275, 'itself.': 2276, 'jones': 2277, 'kick': 2278, 'ordinary': 2279, 'steven': 2280, 'study': 2281, 'sudden': 2282, 'wedding': 2283, 'why?': 2284, 'brilliantly': 2285, 'built': 2286, 'crap.': 2287, 'eating': 2288, 'gratuitous': 2289, 'grow': 2290, 'included': 2291, 'mouth': 2292, 'awkward': 2293, 'emotionally': 2294, 'humans': 2295, 'produce': 2296, 'reason,': 2297, 'send': 2298, 'vision': 2299, 'cameo': 2300, 'down,': 2301, 'him.<br': 2302, 'meeting': 2303, 'memories': 2304, 'ruined': 2305, 'sell': 2306, 'stopped': 2307, '/>not': 2308, 'anything.': 2309, 'destroy': 2310, 'grown': 2311, 'heroes': 2312, 'humor,': 2313, 'initial': 2314, 'memory': 2315, 'nightmare': 2316, 'pilot': 2317, 'price': 2318, 'relatively': 2319, 'reviewer': 2320, 'convinced': 2321, 'delivered': 2322, 'eric': 2323, 'magnificent': 2324, 'players': 2325, 'references': 2326, 'remain': 2327, 'smile': 2328, 'bank': 2329, 'beautiful,': 2330, 'bet': 2331, 'bland': 2332, 'ever,': 2333, 'fits': 2334, 'legend': 2335, 'park': 2336, 'santa': 2337, 'style,': 2338, 'theatrical': 2339, 'travel': 2340, 'visually': 2341, '****': 2342, 'faith': 2343, 'jennifer': 2344, 'morgan': 2345, 'rob': 2346, 'son,': 2347, 'suit': 2348, 'till': 2349, 'worse.': 2350, '"what': 2351, '(though': 2352, '/>at': 2353, '/>even': 2354, 'castle': 2355, 'claim': 2356, 'days.': 2357, 'holding': 2358, 'lines,': 2359, 'marry': 2360, 'miles': 2361, 'obsessed': 2362, 'pretentious': 2363, 'serves': 2364, 'stupid,': 2365, 'today,': 2366, 'united': 2367, 'artist': 2368, 'asian': 2369, 'horribly': 2370, 'lives.': 2371, 'seriously,': 2372, 'sing': 2373, 'spoil': 2374, 'superman': 2375, 'taylor': 2376, 'wall': 2377, 'war.': 2378, '50': 2379, 'about,': 2380, 'hanging': 2381, 'least,': 2382, 'murdered': 2383, 'rise': 2384, 'stars.': 2385, 'suffers': 2386, 'around,': 2387, 'barbara': 2388, 'conflict': 2389, 'cuts': 2390, 'horse': 2391, 'insult': 2392, 'joseph': 2393, 'ladies': 2394, 'sense,': 2395, 'sleep': 2396, 'themselves.': 2397, 'chosen': 2398, 'drunk': 2399, 'games': 2400, 'latest': 2401, 'length': 2402, 'loss': 2403, 'pleasant': 2404, 'spoilers': 2405, 'terrible,': 2406, 'torture': 2407, 'which,': 2408, 'year.': 2409, '(especially': 2410, 'accurate': 2411, 'back,': 2412, 'reaction': 2413, 'talks': 2414, 'underrated': 2415, "would've": 2416, '/>however,': 2417, '/>now': 2418, '/>some': 2419, 'budget,': 2420, 'cage': 2421, 'canadian': 2422, 'drew': 2423, 'hide': 2424, 'machine': 2425, 'nominated': 2426, 'well.<br': 2427, 'worse,': 2428, '/>after': 2429, '/>on': 2430, 'anyway.': 2431, 'cant': 2432, 'chose': 2433, 'does.': 2434, 'finally,': 2435, 'indeed,': 2436, 'kong': 2437, 'ruin': 2438, 'strength': 2439, 'us.': 2440, 'viewed': 2441, 'woody': 2442, 'anywhere': 2443, 'cinema,': 2444, 'drugs': 2445, 'moments.': 2446, 'occasional': 2447, 'talents': 2448, 'u.s.': 2449, 'unfortunate': 2450, 'walked': 2451, 'contemporary': 2452, 'flick,': 2453, 'lesson': 2454, 'provided': 2455, 'range': 2456, 'realizes': 2457, 'rescue': 2458, 'suffering': 2459, 'tarzan': 2460, 'test': 2461, 'lower': 2462, 'lucky': 2463, 'post': 2464, 'presents': 2465, 'production.': 2466, 'remotely': 2467, 'scare': 2468, 'sky': 2469, 'versions': 2470, '12': 2471, 'disappointment': 2472, 'dvd,': 2473, 'heroine': 2474, 'morning': 2475, 'officer': 2476, 'player': 2477, 'reason.': 2478, 'suicide': 2479, 'version,': 2480, '/>of': 2481, 'cable': 2482, 'gags': 2483, 'humorous': 2484, 'imagination': 2485, 'individual': 2486, 'opposite': 2487, 'partner': 2488, 'sadly,': 2489, 'spends': 2490, 'types': 2491, 'very,': 2492, 'writing,': 2493, ')': 2494, 'are.': 2495, 'author': 2496, 'cinematography,': 2497, 'downright': 2498, 'excited': 2499, 'football': 2500, 'jackie': 2501, 'kinds': 2502, 'massive': 2503, 'multiple': 2504, 'old,': 2505, 'one.<br': 2506, 'tiny': 2507, 'us,': 2508, 'wars': 2509, '(he': 2510, 'australian': 2511, 'convince': 2512, 'depicted': 2513, 'drama.': 2514, 'edited': 2515, 'featured': 2516, 'inner': 2517, 'jesus': 2518, 'keaton': 2519, 'nothing.': 2520, 'of.': 2521, 'own.': 2522, 'pile': 2523, 'process': 2524, 'revealed': 2525, 'sex,': 2526, 'story.<br': 2527, 'struggling': 2528, 'unfunny': 2529, 'vehicle': 2530, '(it': 2531, 'closer': 2532, 'draw': 2533, 'experience.': 2534, 'ford': 2535, 'genre,': 2536, 'hong': 2537, 'ice': 2538, 'repeated': 2539, 'results': 2540, 'villains': 2541, 'claims': 2542, 'decision': 2543, 'line,': 2544, 'lovers': 2545, 'pulls': 2546, 'stupid.': 2547, 'wise': 2548, '/>then': 2549, 'all.<br': 2550, 'commercial': 2551, 'dan': 2552, 'debut': 2553, 'disaster': 2554, 'explained': 2555, 'field': 2556, 'program': 2557, 'roger': 2558, 'satire': 2559, 'simon': 2560, 'thomas': 2561, 'victor': 2562, 'werewolf': 2563, '/>that': 2564, 'albert': 2565, 'clichés': 2566, 'covered': 2567, 'freddy': 2568, 'know.': 2569, 'plots': 2570, 'recognize': 2571, 'saturday': 2572, 'things.': 2573, 'unlikely': 2574, 'accidentally': 2575, 'community': 2576, 'context': 2577, 'episode.': 2578, 'mission': 2579, 'parody': 2580, 'skills': 2581, 'soft': 2582, 'something.': 2583, 'speaks': 2584, 'survive': 2585, "/>don't": 2586, 'episode,': 2587, 'exact': 2588, 'explains': 2589, 'focuses': 2590, 'haunting': 2591, "he'd": 2592, 'matt': 2593, 'me.<br': 2594, 'paying': 2595, 'reveals': 2596, 'source': 2597, 'walter': 2598, 'whoever': 2599, '(at': 2600, '/>another': 2601, 'beginning,': 2602, 'dated': 2603, 'evidence': 2604, 'grade': 2605, 'haunted': 2606, 'humor.': 2607, 'leader': 2608, 'lousy': 2609, 'naive': 2610, 'owner': 2611, 'recall': 2612, 'ridiculous.': 2613, 'river': 2614, 'segment': 2615, 'shallow': 2616, 'sports': 2617, 'streets': 2618, 'village': 2619, 'directly': 2620, 'favor': 2621, 'friendship': 2622, 'identity': 2623, 'influence': 2624, 'mind,': 2625, 'offered': 2626, 'robin': 2627, 'shot,': 2628, 'stayed': 2629, 'stuff.': 2630, 'think,': 2631, 'vote': 2632, 'vs.': 2633, '/>we': 2634, 'audience,': 2635, 'baseball': 2636, 'children,': 2637, 'days,': 2638, 'deadly': 2639, 'fashion': 2640, 'forever': 2641, 'friends.': 2642, 'gory': 2643, 'irish': 2644, 'legendary': 2645, 'mere': 2646, 'plans': 2647, 'seriously.': 2648, 'spite': 2649, 'stays': 2650, 'advice': 2651, 'and/or': 2652, 'bear': 2653, 'cars': 2654, 'center': 2655, 'chief': 2656, 'clue': 2657, 'dark,': 2658, 'exploitation': 2659, 'fate': 2660, 'instead.': 2661, 'luke': 2662, 'model': 2663, 'of,': 2664, 'realism': 2665, 'veteran': 2666, 'board': 2667, 'broadway': 2668, 'dubbed': 2669, 'figured': 2670, 'first.': 2671, 'handled': 2672, 'handsome': 2673, 'hilarious.': 2674, 'howard': 2675, 'tv.': 2676, 'von': 2677, 'cost': 2678, 'daniel': 2679, 'drop': 2680, 'else,': 2681, 'facial': 2682, 'fu': 2683, 'guns': 2684, 'hired': 2685, 'louis': 2686, 'monsters': 2687, 'necessarily': 2688, 'research': 2689, 'trek': 2690, 'appropriate': 2691, 'ball': 2692, 'behavior': 2693, 'contrast': 2694, 'cutting': 2695, 'designed': 2696, 'excellent.': 2697, 'fly': 2698, 'heavily': 2699, 'president': 2700, 'sheriff': 2701, 'shop': 2702, 'touches': 2703, 'true,': 2704, 'witty': 2705, 'amateur': 2706, 'depressing': 2707, 'did,': 2708, 'dozen': 2709, 'excellent,': 2710, 'exist': 2711, 'focused': 2712, 'friend,': 2713, 'gold': 2714, 'home.': 2715, 'possible.': 2716, 'regret': 2717, 'reminiscent': 2718, 'reveal': 2719, 'shocked': 2720, 'sounded': 2721, 'sympathetic': 2722, 'this.<br': 2723, '/>with': 2724, 'attitude': 2725, 'desperately': 2726, 'donald': 2727, 'greater': 2728, 'hopefully': 2729, 'patrick': 2730, 'spectacular': 2731, 'alex': 2732, 'anime': 2733, 'anne': 2734, 'breaking': 2735, 'buying': 2736, 'combined': 2737, "father's": 2738, 'foot': 2739, 'lesbian': 2740, "people's": 2741, 'round': 2742, 'scream': 2743, 'significant': 2744, 'standards': 2745, 'treatment': 2746, 'young,': 2747, 'accident': 2748, 'african': 2749, 'bothered': 2750, 'career.': 2751, "could've": 2752, 'entertainment.': 2753, 'gore,': 2754, 'mother,': 2755, 'mrs.': 2756, 'north': 2757, 'notorious': 2758, 'others,': 2759, 'prior': 2760, 'things,': 2761, 'words,': 2762, 'youth': 2763, 'amazed': 2764, 'corny': 2765, 'daughter,': 2766, 'depiction': 2767, 'dreadful': 2768, 'enter': 2769, 'experienced': 2770, 'formula': 2771, 'guilty': 2772, 'mainstream': 2773, 'san': 2774, 'security': 2775, 'supernatural': 2776, 'this?': 2777, 'trapped': 2778, 'warning': 2779, 'actually,': 2780, 'appealing': 2781, 'drag': 2782, 'edward': 2783, 'embarrassing': 2784, 'express': 2785, 'girl.': 2786, 'guy.': 2787, 'horrible.': 2788, 'ii': 2789, 'logic': 2790, 'mess.': 2791, 'over,': 2792, 'passing': 2793, 'placed': 2794, 'roy': 2795, 'starred': 2796, 'training': 2797, 'washington': 2798, 'abandoned': 2799, 'awards': 2800, 'halfway': 2801, 'helping': 2802, 'hitler': 2803, 'join': 2804, 'picks': 2805, 'speed': 2806, 'buddy': 2807, 'costume': 2808, 'fictional': 2809, 'irritating': 2810, 'listening': 2811, 'nancy': 2812, 'over-the-top': 2813, 'previously': 2814, 'roles,': 2815, 'singer': 2816, 'universal': 2817, 'voices': 2818, 'wit': 2819, 'beloved': 2820, 'chick': 2821, 'dry': 2822, 'magical': 2823, 'moon': 2824, 'novel,': 2825, 'purely': 2826, 'seek': 2827, 'throws': 2828, 'urban': 2829, 'wear': 2830, 'wind': 2831, 'women,': 2832, 'actress,': 2833, 'carries': 2834, 'changing': 2835, 'committed': 2836, 'display': 2837, 'faithful': 2838, 'grant': 2839, 'insane': 2840, 'required': 2841, 'warm': 2842, 'witness': 2843, 'wood': 2844, 'blown': 2845, 'children.': 2846, 'decade': 2847, 'fairy': 2848, 'fault': 2849, 'horror,': 2850, 'kim': 2851, 'laugh.': 2852, 'paint': 2853, 'prefer': 2854, 'prime': 2855, 'real.': 2856, 'regarding': 2857, 'so-called': 2858, 'suffer': 2859, 'sympathy': 2860, 'throwing': 2861, '(including': 2862, 'carried': 2863, 'efforts': 2864, 'feet': 2865, 'laugh,': 2866, 'locations': 2867, 'mine': 2868, 'oliver': 2869, 'prepared': 2870, 'rose': 2871, 'serve': 2872, 'slow,': 2873, 'stolen': 2874, 'version.': 2875, 'watchable': 2876, 'brother,': 2877, 'cash': 2878, "children's": 2879, 'face.': 2880, 'false': 2881, 'ignore': 2882, 'kids,': 2883, 'nude': 2884, 'out.<br': 2885, 'refreshing': 2886, 'renting': 2887, 'reporter': 2888, 'via': 2889, 'adding': 2890, 'amongst': 2891, 'attempting': 2892, 'clean': 2893, 'driven': 2894, 'eight': 2895, 'enjoying': 2896, 'instance,': 2897, 'kung': 2898, 'lynch': 2899, 'matters': 2900, 'men,': 2901, 'mexican': 2902, 'pity': 2903, 'product': 2904, 'protagonist': 2905, 'technology': 2906, 'tv,': 2907, 'wayne': 2908, '/>so,': 2909, 'another.': 2910, 'carrying': 2911, 'convey': 2912, 'deeper': 2913, 'dull,': 2914, 'flashbacks': 2915, 'for,': 2916, 'humanity': 2917, 'marie': 2918, 'perspective': 2919, 'predictable,': 2920, 'stars,': 2921, 'surreal': 2922, 'tape': 2923, 'that.<br': 2924, 'way.<br': 2925, 'why.': 2926, 'closing': 2927, 'critical': 2928, 'cultural': 2929, 'finale': 2930, 'frame': 2931, 'indie': 2932, 'insight': 2933, 'kids.': 2934, 'learning': 2935, 'luck': 2936, 'movie:': 2937, 'remind': 2938, 'sake': 2939, 'satisfying': 2940, 'twisted': 2941, 'wears': 2942, '/>-': 2943, "/>there's": 2944, 'another,': 2945, 'blow': 2946, 'brave': 2947, 'crying': 2948, 'devil': 2949, 'experiences': 2950, 'film-making': 2951, 'floor': 2952, 'fourth': 2953, 'freedom': 2954, 'priest': 2955, 'production,': 2956, 'raised': 2957, 'say.': 2958, 'touched': 2959, 'variety': 2960, 'while,': 2961, 'wife.': 2962, 'woman.': 2963, 'anna': 2964, 'calling': 2965, 'comparison': 2966, 'facts': 2967, 'fallen': 2968, 'film!': 2969, 'film?': 2970, 'flesh': 2971, 'max': 2972, 'parker': 2973, 'past,': 2974, 'performed': 2975, 'promising': 2976, 'protect': 2977, '2.': 2978, '80s': 2979, 'boat': 2980, 'columbo': 2981, 'concerned': 2982, 'contain': 2983, 'here.<br': 2984, 'highlight': 2985, 'hunt': 2986, 'lake': 2987, 'relief': 2988, 'school,': 2989, 'sinatra': 2990, 'target': 2991, 'texas': 2992, 'visuals': 2993, 'anything,': 2994, 'england': 2995, 'entertaining,': 2996, 'families': 2997, 'happened.': 2998, 'japan': 2999, 'jumps': 3000, 'mildly': 3001, 'raise': 3002, 'ron': 3003, 'school.': 3004, 'throughout.': 3005, 'adventures': 3006, 'amazingly': 3007, 'anyway': 3008, 'causes': 3009, 'classics': 3010, 'contrived': 3011, 'desert': 3012, 'father.': 3013, 'figures': 3014, 'game.': 3015, 'harris': 3016, 'life.<br': 3017, 'lonely': 3018, 'make-up': 3019, 'picture,': 3020, 'professor': 3021, 'proud': 3022, 'replaced': 3023, 'revolves': 3024, 'true.': 3025, 'understood': 3026, 'warn': 3027, '"you': 3028, '/>although': 3029, 'determined': 3030, 'disgusting': 3031, 'end.<br': 3032, 'god,': 3033, 'heart.': 3034, 'makeup': 3035, 'notable': 3036, 'rental': 3037, 'seasons': 3038, 'spoiler': 3039, '(one': 3040, 'account': 3041, 'dead,': 3042, 'dean': 3043, 'head.': 3044, 'heck': 3045, 'hey,': 3046, 'invisible': 3047, 'print': 3048, 'quest': 3049, 'safe': 3050, 'side,': 3051, 'spy': 3052, 'stereotypes': 3053, 'teenagers': 3054, 'uk': 3055, 'wasting': 3056, 'what?': 3057, '/>first': 3058, '11': 3059, "ain't": 3060, 'bourne': 3061, 'correct': 3062, 'creatures': 3063, 'daily': 3064, 'drives': 3065, 'effectively': 3066, 'fool': 3067, 'forgot': 3068, 'glimpse': 3069, 'halloween': 3070, 'harsh': 3071, 'julie': 3072, 'lawyer': 3073, 'no.': 3074, 'princess': 3075, 'sorts': 3076, 'victoria': 3077, 'weeks': 3078, 'welles': 3079, 'achieve': 3080, 'amateurish': 3081, 'believed': 3082, 'brad': 3083, 'city,': 3084, 'continuity': 3085, 'dollar': 3086, 'erotic': 3087, 'handle': 3088, 'heaven': 3089, 'later.': 3090, 'rip': 3091, 'russell': 3092, 'sold': 3093, 'southern': 3094, 'thoughts': 3095, '(this': 3096, 'crowd': 3097, 'executed': 3098, 'existence': 3099, 'fans.': 3100, 'history,': 3101, 'locked': 3102, 'mentally': 3103, 'moore': 3104, 'score,': 3105, 'sea': 3106, 'shakespeare': 3107, 'site': 3108, 'suffered': 3109, 'town.': 3110, 'warner': 3111, 'window': 3112, 'birth': 3113, 'bodies': 3114, 'lot.': 3115, 'mature': 3116, 'medical': 3117, 'skin': 3118, 'speech': 3119, 'stereotypical': 3120, 'succeeds': 3121, 'year,': 3122, 'again.<br': 3123, 'consists': 3124, 'dennis': 3125, 'direction.': 3126, 'embarrassed': 3127, 'encounter': 3128, 'excitement': 3129, 'generation': 3130, 'julia': 3131, 'metal': 3132, 'powell': 3133, 'rolling': 3134, 'sensitive': 3135, 'sharp': 3136, 'teenager': 3137, '/>anyway,': 3138, '25': 3139, 'complicated': 3140, 'conversation': 3141, 'go.': 3142, 'laughter': 3143, 'lesser': 3144, 'mask': 3145, 'rachel': 3146, 'served': 3147, 'sinister': 3148, 'sleeping': 3149, 'that?': 3150, 'asleep': 3151, 'everyday': 3152, 'inept': 3153, 'interview': 3154, 'myself,': 3155, 'offensive': 3156, 'refuses': 3157, 'related': 3158, 'section': 3159, 'seeking': 3160, 'underground': 3161, '70s': 3162, 'abuse': 3163, 'attacked': 3164, 'bbc': 3165, 'bollywood': 3166, 'bomb': 3167, 'camera.': 3168, 'destroyed': 3169, 'essential': 3170, 'evening': 3171, 'eyes,': 3172, 'fabulous': 3173, 'initially': 3174, 'jewish': 3175, 'jon': 3176, 'letting': 3177, 'naturally': 3178, 'perfect.': 3179, 'propaganda': 3180, 'reference': 3181, 'riding': 3182, 'rough': 3183, 'sum': 3184, 'tied': 3185, "woman's": 3186, '(that': 3187, 'cinderella': 3188, 'clips': 3189, 'extraordinary': 3190, 'horrible,': 3191, 'hundreds': 3192, 'infamous': 3193, 'intellectual': 3194, 'leslie': 3195, 'level.': 3196, 'mountain': 3197, 'separate': 3198, 'sir': 3199, 'views': 3200, 'annoying.': 3201, 'child.': 3202, 'crude': 3203, 'delivery': 3204, 'different.': 3205, 'dislike': 3206, 'examples': 3207, 'friday': 3208, 'hundred': 3209, 'introduction': 3210, 'mgm': 3211, 'mistakes': 3212, 'remote': 3213, 'saves': 3214, 'seat': 3215, 'sequels': 3216, 'service': 3217, 'struggles': 3218, 'sunday': 3219, 'thousands': 3220, 'vampires': 3221, 'works.': 3222, 'written,': 3223, 'alone.': 3224, 'degree': 3225, 'established': 3226, 'failure': 3227, 'garbage.': 3228, 'hall': 3229, 'hill': 3230, 'ill': 3231, 'nazi': 3232, 'ones.': 3233, 'past.': 3234, 'qualities': 3235, 'searching': 3236, 'sends': 3237, 'shot.': 3238, 'something,': 3239, 'tedious': 3240, '"this': 3241, 'adapted': 3242, 'appreciated': 3243, 'core': 3244, 'dialogue.': 3245, 'fan.': 3246, 'fans,': 3247, 'forth': 3248, 'friendly': 3249, 'gas': 3250, 'gordon': 3251, 'greatly': 3252, 'larry': 3253, 'league': 3254, 'overcome': 3255, 'path': 3256, 'reputation': 3257, 'ryan': 3258, 'sucked': 3259, 'ways,': 3260, 'welcome': 3261, 'whereas': 3262, '14': 3263, 'amazing.': 3264, 'case.': 3265, 'checking': 3266, 'concerns': 3267, 'cruel': 3268, 'dogs': 3269, 'editing,': 3270, 'frequently': 3271, 'future.': 3272, 'hint': 3273, 'jessica': 3274, 'on.<br': 3275, 'recommended.': 3276, 'regard': 3277, 'stops': 3278, 'unrealistic': 3279, 'wealthy': 3280, 'act.': 3281, 'b-movie': 3282, 'believable.': 3283, 'burt': 3284, 'challenge': 3285, 'dealt': 3286, 'forest': 3287, 'gruesome': 3288, 'interest.': 3289, 'needless': 3290, 'nonsense': 3291, 'opened': 3292, 'otherwise,': 3293, 'play,': 3294, 'play.': 3295, 'predictable.': 3296, 'rubbish': 3297, 'sarah': 3298, 'sidney': 3299, 'statement': 3300, 'violence.': 3301, 'women.': 3302, 'wonderful.': 3303, 'angel': 3304, 'bette': 3305, 'campy': 3306, 'cares': 3307, 'child,': 3308, 'civil': 3309, 'description': 3310, 'drinking': 3311, 'happen.': 3312, 'is.<br': 3313, 'mass': 3314, 'perform': 3315, 'person,': 3316, 'position': 3317, 'robot': 3318, 'routine': 3319, 'style.': 3320, 'through,': 3321, 'torn': 3322, 'town,': 3323, '(of': 3324, 'broke': 3325, 'brown': 3326, 'candy': 3327, 'career,': 3328, 'device': 3329, 'dragged': 3330, 'foster': 3331, 'gritty': 3332, 'hunter': 3333, 'lights': 3334, 'murphy': 3335, 'pointed': 3336, 'poor,': 3337, 'quality.': 3338, 'raw': 3339, 'rules': 3340, 'stories,': 3341, 'susan': 3342, 'sword': 3343, 'ted': 3344, 'whatsoever.': 3345, 'angles': 3346, 'anymore.': 3347, 'arrives': 3348, 'blood,': 3349, 'bound': 3350, 'busy': 3351, 'criticism': 3352, 'deaths': 3353, 'expert': 3354, 'face,': 3355, 'frankly': 3356, 'interpretation': 3357, 'lisa': 3358, 'market': 3359, 'michelle': 3360, 'mindless': 3361, 'minds': 3362, 'ned': 3363, 'physically': 3364, 'portrait': 3365, 'psycho': 3366, 'rights': 3367, 'sisters': 3368, 'stood': 3369, 'suspenseful': 3370, 'teach': 3371, 'title,': 3372, 'u': 3373, 'anderson': 3374, 'ashamed': 3375, 'connected': 3376, 'countless': 3377, 'escapes': 3378, 'gain': 3379, 'horrific': 3380, 'husband,': 3381, 'killers': 3382, 'please,': 3383, 'promise': 3384, 'strangely': 3385, 'successfully': 3386, 'surrounding': 3387, '10/10': 3388, 'artists': 3389, 'associated': 3390, 'claire': 3391, 'clichéd': 3392, 'cynical': 3393, 'dialog,': 3394, 'entertain': 3395, 'execution': 3396, 'extras': 3397, 'factor': 3398, 'honest,': 3399, 'interviews': 3400, 'lines.': 3401, 'material.': 3402, 'mob': 3403, 'moment,': 3404, 'plastic': 3405, 'religion': 3406, 'ripped': 3407, 'sleazy': 3408, 'solve': 3409, 'spending': 3410, 'spoof': 3411, 'stanley': 3412, 'suspense,': 3413, 'then.': 3414, 'wishes': 3415, ':)': 3416, 'answers': 3417, 'ass': 3418, 'base': 3419, 'bo': 3420, 'dead.': 3421, 'develops': 3422, 'go,': 3423, 'j.': 3424, 'jr.': 3425, 'lazy': 3426, 'levels': 3427, 'marvelous': 3428, 'meanwhile,': 3429, 'old.': 3430, 'par': 3431, 'person.': 3432, 'politics': 3433, 'praise': 3434, 'really.': 3435, 'rings': 3436, 'sad,': 3437, 'sets,': 3438, 'shines': 3439, 'skill': 3440, 'spoken': 3441, 'theory': 3442, "they'd": 3443, 'thousand': 3444, 'tons': 3445, 'troubled': 3446, 'video.': 3447, '/>from': 3448, 'attempted': 3449, 'breath': 3450, 'bus': 3451, 'catholic': 3452, 'disappointment.': 3453, 'either,': 3454, 'ensemble': 3455, 'fbi': 3456, 'freeman': 3457, 'increasingly': 3458, 'inspector': 3459, 'ironic': 3460, 'kurt': 3461, 'lion': 3462, 'narration': 3463, 'once,': 3464, 'opinion.': 3465, 'own,': 3466, 'shoots': 3467, 'slapstick': 3468, 'structure': 3469, 'usual,': 3470, 'believing': 3471, 'bettie': 3472, 'classic,': 3473, 'elizabeth': 3474, 'flashback': 3475, 'game,': 3476, 'hang': 3477, 'hat': 3478, 'idea.': 3479, 'maria': 3480, 'millions': 3481, 'nudity,': 3482, 'obsession': 3483, 'or,': 3484, 'pregnant': 3485, 'real,': 3486, 'surrounded': 3487, 'teens': 3488, 'thriller,': 3489, 'toy': 3490, 'upset': 3491, 'vietnam': 3492, '"i\'m': 3493, 'advantage': 3494, 'aged': 3495, 'allowing': 3496, 'anger': 3497, 'belongs': 3498, 'bitter': 3499, 'c.': 3500, 'caring': 3501, 'cartoons': 3502, 'cowboy': 3503, 'danger': 3504, 'episodes,': 3505, 'hoped': 3506, 'lewis': 3507, 'reality,': 3508, 'right?': 3509, 'storyline,': 3510, 'themselves,': 3511, 'trick': 3512, 'unconvincing': 3513, 'winner': 3514, "world's": 3515, 'accents': 3516, 'age,': 3517, 'ages': 3518, 'beautiful.': 3519, 'chance.': 3520, 'covers': 3521, 'entertained': 3522, 'expression': 3523, 'fare': 3524, 'good.<br': 3525, 'grows': 3526, 'happily': 3527, 'horror.': 3528, 'killer,': 3529, 'like.': 3530, 'lying': 3531, 'oil': 3532, 'per': 3533, 'ralph': 3534, 'shows.': 3535, 'sings': 3536, 'strictly': 3537, 'stylish': 3538, 'talent.': 3539, 'term': 3540, 'viewer.': 3541, 'wanna': 3542, 'wins': 3543, '/>by': 3544, 'alice': 3545, 'annoyed': 3546, 'balance': 3547, 'because,': 3548, 'chasing': 3549, 'city.': 3550, 'enemy': 3551, 'etc': 3552, 'evil,': 3553, 'flight': 3554, 'goofy': 3555, 'hiding': 3556, 'killer.': 3557, 'movement': 3558, 'nuclear': 3559, 'pet': 3560, 'pleasantly': 3561, 'realise': 3562, 'rule': 3563, 'says,': 3564, 'status': 3565, 'studios': 3566, 'suggests': 3567, 'surprises': 3568, 'tight': 3569, '/>well,': 3570, '1st': 3571, 'aunt': 3572, 'budget.': 3573, 'bugs': 3574, 'dress': 3575, 'enters': 3576, 'everyone.': 3577, 'far,': 3578, 'frightening': 3579, 'have.': 3580, 'network': 3581, 'philip': 3582, 'represents': 3583, 'split': 3584, 'steps': 3585, 'strikes': 3586, 'there.<br': 3587, 'tradition': 3588, 'tribute': 3589, 'uninteresting': 3590, 'accepted': 3591, 'colors': 3592, 'dollars': 3593, 'equal': 3594, 'flow': 3595, 'grim': 3596, 'hardy': 3597, 'homeless': 3598, 'identify': 3599, 'masterpiece.': 3600, 'navy': 3601, 'opposed': 3602, 'prevent': 3603, 'quirky': 3604, 'shadow': 3605, 'sorry,': 3606, 'striking': 3607, 'tales': 3608, 'treasure': 3609, '(no': 3610, '1.': 3611, 'andrew': 3612, 'appearing': 3613, 'cabin': 3614, 'cell': 3615, 'code': 3616, 'directorial': 3617, 'driver': 3618, 'dude': 3619, 'essence': 3620, 'handful': 3621, 'imagery': 3622, 'inspiration': 3623, 'jay': 3624, 'kid,': 3625, 'neat': 3626, 'nine': 3627, 'paper': 3628, 'repeat': 3629, 'requires': 3630, 'risk': 3631, 'rival': 3632, 'sequel.': 3633, '(except': 3634, 'aforementioned': 3635, 'attention.': 3636, 'bore': 3637, 'burns': 3638, 'chan': 3639, 'court': 3640, 'crash': 3641, 'emma': 3642, 'entertainment,': 3643, 'fifteen': 3644, 'funnier': 3645, 'germany': 3646, 'gotta': 3647, 'guessing': 3648, 'matter.': 3649, 'moment.': 3650, 'r': 3651, 'sexually': 3652, 'shut': 3653, 'specific': 3654, 'substance': 3655, 'technically': 3656, 'teeth': 3657, 'thriller.': 3658, 'uncomfortable': 3659, 'wondered': 3660, "/>i've": 3661, '10,': 3662, 'blockbuster': 3663, 'caine': 3664, 'comical': 3665, 'contact': 3666, 'courage': 3667, 'does,': 3668, 'enjoyable.': 3669, 'entry': 3670, 'europe': 3671, 'eyes.': 3672, 'forgive': 3673, 'idea,': 3674, 'look,': 3675, 'nice,': 3676, 'paced': 3677, 'pacino': 3678, 'problems,': 3679, 'profound': 3680, 'pulling': 3681, 'quote': 3682, 'release.': 3683, 'shall': 3684, 'shots,': 3685, 'slight': 3686, 'task': 3687, 'thought,': 3688, 'two.': 3689, '"it\'s': 3690, 'chances': 3691, 'chilling': 3692, 'everything.': 3693, 'girls,': 3694, 'head,': 3695, 'holiday': 3696, 'kicks': 3697, 'men.': 3698, 'noble': 3699, 'once.': 3700, 'performing': 3701, 'pitt': 3702, 'plus,': 3703, 'problem.': 3704, 'pushed': 3705, 'real-life': 3706, 'release,': 3707, 'rid': 3708, 'scary,': 3709, 'screening': 3710, 'silly,': 3711, 'stranger': 3712, 'struck': 3713, 'subsequent': 3714, 'talked': 3715, 'theaters': 3716, 'weekend': 3717, 'why,': 3718, 'wilson': 3719, '"my': 3720, '(john': 3721, '(to': 3722, 'age.': 3723, 'arms': 3724, 'attracted': 3725, 'basis': 3726, 'beating': 3727, 'blair': 3728, 'clark': 3729, 'daughters': 3730, 'ghosts': 3731, 'graphics': 3732, 'heart,': 3733, 'her.<br': 3734, 'hero,': 3735, 'hitting': 3736, 'hollywood.': 3737, 'intensity': 3738, 'line.': 3739, 'lot,': 3740, 'lugosi': 3741, 'movies.<br': 3742, 'pat': 3743, 'remaining': 3744, 'romance,': 3745, 'sitcom': 3746, 'sole': 3747, 'stan': 3748, 'star.': 3749, 'stealing': 3750, 'television.': 3751, 'unforgettable': 3752, 'angle': 3753, 'authentic': 3754, 'brilliant,': 3755, 'circumstances': 3756, 'commit': 3757, 'criminals': 3758, 'drags': 3759, 'draws': 3760, 'expensive': 3761, 'hills': 3762, 'host': 3763, 'mid': 3764, 'murder,': 3765, 'object': 3766, 'partly': 3767, 'period.': 3768, 'reasonably': 3769, "show's": 3770, 'shower': 3771, 'star,': 3772, "they'll": 3773, 'too.<br': 3774, 'topic': 3775, 'tremendous': 3776, 'truck': 3777, 'wake': 3778, '/>he': 3779, '20th': 3780, 'aimed': 3781, 'bad.<br': 3782, 'brilliant.': 3783, 'cardboard': 3784, 'charismatic': 3785, 'controversial': 3786, 'definite': 3787, 'enjoy.': 3788, 'faced': 3789, 'flawed': 3790, 'guest': 3791, 'hell,': 3792, 'korean': 3793, 'parts,': 3794, 'picking': 3795, 'punch': 3796, 'racist': 3797, 'reactions': 3798, 'reed': 3799, 'silver': 3800, 'stretch': 3801, 'trilogy': 3802, 'video,': 3803, 'wonders': 3804, 'yourself.': 3805, 'anyone.': 3806, 'apparently,': 3807, 'attached': 3808, 'beach': 3809, 'car,': 3810, 'corrupt': 3811, 'demon': 3812, 'dropped': 3813, 'film;': 3814, 'grey': 3815, 'guys,': 3816, 'idiot': 3817, 'jokes,': 3818, 'jumping': 3819, 'lacked': 3820, 'laid': 3821, 'larger': 3822, 'lifetime': 3823, 'murderer': 3824, 'obnoxious': 3825, 'perfect,': 3826, 'proof': 3827, 'providing': 3828, 'reduced': 3829, 'society.': 3830, 'text': 3831, 'theater.': 3832, 'thrilling': 3833, 'two,': 3834, 'watches': 3835, 'ways.': 3836, '/>despite': 3837, 'achieved': 3838, 'aliens': 3839, 'at.': 3840, 'catherine': 3841, 'concerning': 3842, 'encounters': 3843, 'experiment': 3844, 'fame': 3845, 'france': 3846, 'gothic': 3847, 'hitchcock': 3848, 'hours.': 3849, 'kiss': 3850, 'matter,': 3851, 'melodrama': 3852, 'nevertheless,': 3853, 'packed': 3854, 'revealing': 3855, 'seagal': 3856, 'sequence,': 3857, 'sin': 3858, 'thumbs': 3859, 'universe': 3860, 'writer/director': 3861, 'burning': 3862, 'choices': 3863, 'competent': 3864, 'dare': 3865, 'digital': 3866, 'dorothy': 3867, 'drink': 3868, 'fitting': 3869, 'forgettable': 3870, 'hole': 3871, 'honor': 3872, 'idiotic': 3873, 'laughable.': 3874, 'los': 3875, 'mansion': 3876, 'peace': 3877, 'reality.': 3878, 'relevant': 3879, 'returning': 3880, 'root': 3881, 'same.': 3882, 'scale': 3883, 'scary.': 3884, 'scenario': 3885, 'scientists': 3886, 'seeing.': 3887, 'sides': 3888, 'stories.': 3889, 'stronger': 3890, 'stunt': 3891, 'tense': 3892, 'threw': 3893, 'timothy': 3894, 'better.<br': 3895, 'brand': 3896, 'closely': 3897, 'complaint': 3898, 'continued': 3899, 'cool,': 3900, 'crafted': 3901, 'credible': 3902, 'displays': 3903, 'eerie': 3904, 'film)': 3905, 'film:': 3906, 'frustrated': 3907, 'hilarious,': 3908, 'imaginative': 3909, 'jeremy': 3910, 'jobs': 3911, 'laurel': 3912, 'musicals': 3913, 'precious': 3914, 'push': 3915, 'retarded': 3916, 'screenwriter': 3917, 'shape': 3918, 'sister,': 3919, 'stole': 3920, 'storm': 3921, 'sucks': 3922, 'talent,': 3923, 'typically': 3924, 'unbelievably': 3925, 'wave': 3926, 'weapons': 3927, '/>just': 3928, '13': 3929, 'accused': 3930, 'buried': 3931, 'charge': 3932, 'decades': 3933, 'dig': 3934, 'directing,': 3935, 'dragon': 3936, 'easier': 3937, 'elderly': 3938, 'enjoys': 3939, 'gripping': 3940, 'gross': 3941, 'happen,': 3942, 'helen': 3943, 'is:': 3944, 'letter': 3945, 'lie': 3946, 'listed': 3947, 'mother.': 3948, 'parts.': 3949, 'planning': 3950, 'ridiculously': 3951, 'settings': 3952, 'spike': 3953, 'terrifying': 3954, 'thirty': 3955, 'throughout,': 3956, 'tour': 3957, 'worthwhile': 3958, 'admire': 3959, 'belief': 3960, 'builds': 3961, 'costs.': 3962, 'denzel': 3963, 'development,': 3964, 'drunken': 3965, 'effort.': 3966, 'extended': 3967, 'guard': 3968, 'hire': 3969, 'level,': 3970, 'lovable': 3971, 'lucy': 3972, 'man"': 3973, 'manager': 3974, 'meaningful': 3975, 'messages': 3976, 'mst3k': 3977, 'ought': 3978, 'pack': 3979, 'patient': 3980, 'poignant': 3981, 'pretend': 3982, 'resembles': 3983, 'scares': 3984, 'second,': 3985, 'shortly': 3986, 'stanwyck': 3987, 'stomach': 3988, 'stuff,': 3989, 'terror': 3990, 'think.': 3991, 'unintentionally': 3992, 'vincent': 3993, '"in': 3994, '(such': 3995, 'america.': 3996, 'blend': 3997, 'brooks': 3998, 'colorful': 3999, 'cooper': 4000, 'distant': 4001, 'enjoyment': 4002, 'eva': 4003, 'explore': 4004, 'gradually': 4005, "he'll": 4006, 'help.': 4007, 'ian': 4008, 'instantly': 4009, 'it)': 4010, 'jungle': 4011, 'mel': 4012, 'name.': 4013, 'personalities': 4014, 'pleased': 4015, 'sandler': 4016, 'short.': 4017, 'simple,': 4018, 'spiritual': 4019, 'start.': 4020, 'string': 4021, 'tracy': 4022, 'york,': 4023, 'art.': 4024, 'atmosphere,': 4025, 'attacks': 4026, 'cameos': 4027, 'camera,': 4028, 'cared': 4029, 'carefully': 4030, 'comedian': 4031, 'devoted': 4032, 'dubbing': 4033, 'east': 4034, 'evident': 4035, 'exists': 4036, 'expressions': 4037, 'extent': 4038, 'glass': 4039, 'hollywood,': 4040, 'homage': 4041, 'importance': 4042, 'junk': 4043, 'mouse': 4044, 'non': 4045, 'productions': 4046, 'rain': 4047, 'ratings': 4048, 'rural': 4049, 'segments': 4050, 'shows,': 4051, 'sophisticated': 4052, 'trash.': 4053, 'tune': 4054, 'upper': 4055, 'wes': 4056, '/>they': 4057, 'actress.': 4058, 'afternoon': 4059, 'aired': 4060, 'albeit': 4061, 'arm': 4062, 'assistant': 4063, 'atmospheric': 4064, 'atrocious': 4065, 'bridge': 4066, 'buck': 4067, 'che': 4068, 'con': 4069, 'concert': 4070, 'conclusion,': 4071, 'daughter.': 4072, 'exercise': 4073, 'films.<br': 4074, 'have,': 4075, 'jamie': 4076, 'joke.': 4077, 'laughs,': 4078, "mother's": 4079, 'novel.': 4080, 'reached': 4081, 'relies': 4082, 'rush': 4083, 'sentimental': 4084, 'soviet': 4085, 'spell': 4086, 'superbly': 4087, 'this:': 4088, 'white,': 4089, 'wow,': 4090, '/>also': 4091, '2,': 4092, 'africa': 4093, 'always,': 4094, 'appearances': 4095, 'bears': 4096, 'breathtaking': 4097, 'cases': 4098, 'category': 4099, 'country.': 4100, 'exceptional': 4101, 'johnson': 4102, 'knock': 4103, 'laughs.': 4104, 'neil': 4105, 'receive': 4106, 'ridiculous,': 4107, 'son.': 4108, 'titles': 4109, 'act,': 4110, 'bit,': 4111, 'bit.': 4112, 'bobby': 4113, 'chuck': 4114, 'currently': 4115, 'darkness': 4116, 'demons': 4117, 'disbelief': 4118, 'evil.': 4119, 'fatal': 4120, 'focusing': 4121, 'frankly,': 4122, 'futuristic': 4123, "girl's": 4124, 'intention': 4125, 'intrigued': 4126, 'jake': 4127, 'matthau': 4128, 'mexico': 4129, 'mild': 4130, 'minimal': 4131, 'misses': 4132, 'name,': 4133, 'neighborhood': 4134, 'notably': 4135, 'reasons.': 4136, 'returned': 4137, 'sticks': 4138, 'storytelling': 4139, 'vague': 4140, 'viewing.': 4141, 'wicked': 4142, '*': 4143, '/>also,': 4144, '/>no': 4145, '1950s': 4146, 'ad': 4147, 'beast': 4148, 'catches': 4149, 'credibility': 4150, 'darker': 4151, 'dinner': 4152, 'elvis': 4153, 'executive': 4154, 'flash': 4155, 'grab': 4156, 'grave': 4157, 'hearts': 4158, 'honestly,': 4159, 'hunting': 4160, 'involved.': 4161, 'irony': 4162, 'it...': 4163, 'jail': 4164, 'ken': 4165, 'kidnapped': 4166, 'laura': 4167, 'ludicrous': 4168, 'murderous': 4169, 'pool': 4170, 'rating:': 4171, 'selling': 4172, 'splendid': 4173, 'summary': 4174, 'sun': 4175, 'surface': 4176, 'university': 4177, 'wing': 4178, 'alone,': 4179, 'annoying,': 4180, 'attraction': 4181, 'branagh': 4182, 'burn': 4183, 'causing': 4184, 'complain': 4185, 'deliberately': 4186, 'derek': 4187, 'devoid': 4188, 'dialogs': 4189, 'escaped': 4190, 'everyone,': 4191, 'experience,': 4192, 'fancy': 4193, 'financial': 4194, 'health': 4195, 'highest': 4196, 'innocence': 4197, 'internet': 4198, 'jesse': 4199, 'killed,': 4200, 'legs': 4201, 'noted': 4202, 'pays': 4203, 'primary': 4204, 'properly': 4205, 'protagonists': 4206, 'relative': 4207, 'roberts': 4208, 'room,': 4209, 'sequel,': 4210, 'special.': 4211, 'staying': 4212, 'technique': 4213, 'timing': 4214, 'title.': 4215, 'tricks': 4216, 'world.<br': 4217, 'affected': 4218, 'arrested': 4219, 'b.': 4220, 'beats': 4221, 'carpenter': 4222, 'colour': 4223, 'countries': 4224, 'country,': 4225, 'delight': 4226, 'disappointing.': 4227, 'explaining': 4228, 'fine.': 4229, 'fond': 4230, 'forever.': 4231, 'greek': 4232, "hollywood's": 4233, 'holmes': 4234, "it'll": 4235, 'lessons': 4236, 'midnight': 4237, 'movie)': 4238, 'nothing,': 4239, 'novels': 4240, 'oddly': 4241, 'ok.': 4242, 'originality': 4243, 'poor.': 4244, 'press': 4245, 'realistic.': 4246, 'scripts': 4247, 'songs,': 4248, 'streisand': 4249, 'surprise,': 4250, 'table': 4251, 'twin': 4252, "we'll": 4253, 'westerns': 4254, '2nd': 4255, 'along.': 4256, 'amazing,': 4257, 'animation,': 4258, 'basically,': 4259, 'beginning.': 4260, 'broad': 4261, 'burned': 4262, 'clues': 4263, 'connect': 4264, 'contract': 4265, 'demands': 4266, 'describes': 4267, 'dozens': 4268, 'elaborate': 4269, 'fine,': 4270, 'funny.<br': 4271, 'gag': 4272, 'guts': 4273, 'happens.': 4274, 'happiness': 4275, 'hoffman': 4276, 'jet': 4277, 'jokes.': 4278, 'lincoln': 4279, 'load': 4280, 'look.': 4281, 'matrix': 4282, 'menacing': 4283, 'psychotic': 4284, 'ranks': 4285, 'rating.': 4286, 'reaches': 4287, 'reasonable': 4288, 'resemblance': 4289, 'scientific': 4290, 'stated': 4291, 'stupidity': 4292, 'thankfully': 4293, 'trio': 4294, 'truth.': 4295, 'urge': 4296, 'vacation': 4297, 'vicious': 4298, 'workers': 4299, "(i'm": 4300, '(see': 4301, '/>overall': 4302, '100%': 4303, 'accomplished': 4304, 'ambitious': 4305, 'briefly': 4306, 'california': 4307, 'care.': 4308, 'characters.<br': 4309, 'confusion': 4310, 'creators': 4311, 'curse': 4312, 'department': 4313, 'dynamic': 4314, 'earth.': 4315, 'failing': 4316, 'fired': 4317, 'friend.': 4318, 'kenneth': 4319, 'lives,': 4320, 'loads': 4321, 'mirror': 4322, 'mixture': 4323, 'nation': 4324, 'occurs': 4325, 'particular,': 4326, 'pushing': 4327, 'sally': 4328, 'slightest': 4329, 'strike': 4330, 'strip': 4331, 'subplot': 4332, 'subtitles': 4333, 'trial': 4334, 'weapon': 4335, 'while.': 4336, 'work.<br': 4337, 'worried': 4338, 'worry': 4339, '/>director': 4340, 'acceptable': 4341, 'afford': 4342, 'all-time': 4343, 'angels': 4344, 'art,': 4345, 'barry': 4346, 'boxing': 4347, 'bush': 4348, 'clint': 4349, 'comfortable': 4350, 'discuss': 4351, 'drawing': 4352, 'earth,': 4353, 'enormous': 4354, 'guide': 4355, 'heroic': 4356, 'improved': 4357, 'incoherent': 4358, 'involve': 4359, 'liberal': 4360, 'lloyd': 4361, 'many,': 4362, 'marks': 4363, 'material,': 4364, 'pitch': 4365, 'primarily': 4366, 'producing': 4367, 'racism': 4368, 'remarkably': 4369, 'sequences,': 4370, 'settle': 4371, 'spoiled': 4372, 'succeed': 4373, 'videos': 4374, 'view,': 4375, 'view.': 4376, 'watching,': 4377, 'whole,': 4378, 'worst.': 4379, '"how': 4380, '/>why': 4381, "90's": 4382, 'america,': 4383, 'battles': 4384, 'blah': 4385, 'boll': 4386, 'card': 4387, "characters'": 4388, 'consistently': 4389, 'convoluted': 4390, 'cup': 4391, 'dedicated': 4392, 'diamond': 4393, 'environment': 4394, 'flaw': 4395, 'format': 4396, 'grade:': 4397, 'horrendous': 4398, 'influenced': 4399, 'insulting': 4400, 'intentions': 4401, 'introduces': 4402, 'magazine': 4403, 'meat': 4404, 'newspaper': 4405, 'outer': 4406, 'presentation': 4407, 'recognized': 4408, 'repeatedly': 4409, 'smaller': 4410, 'solely': 4411, 'suited': 4412, 'suspense.': 4413, 'swedish': 4414, 'sweet,': 4415, 'titled': 4416, 'trade': 4417, 'travels': 4418, 'weight': 4419, '(an': 4420, '(i.e.': 4421, '/>*': 4422, '/>an': 4423, 'absence': 4424, 'andrews': 4425, 'aside,': 4426, 'bat': 4427, 'beaten': 4428, 'bite': 4429, 'blew': 4430, 'china': 4431, 'cousin': 4432, 'drops': 4433, 'era.': 4434, 'estate': 4435, 'hates': 4436, 'inevitable': 4437, 'lane': 4438, 'logical': 4439, 'lucas': 4440, 'nearby': 4441, 'parents,': 4442, 'portion': 4443, 'represent': 4444, 'revelation': 4445, 'screams': 4446, 'season.': 4447, 'situation.': 4448, 'situations.': 4449, 'soundtrack,': 4450, 'spooky': 4451, 'tad': 4452, 'thief': 4453, 'threat': 4454, 'tortured': 4455, 'uwe': 4456, 'wont': 4457, '(from': 4458, '/>yes,': 4459, '17': 4460, '60': 4461, '8/10': 4462, 'alas,': 4463, 'arnold': 4464, 'arrive': 4465, 'blatant': 4466, 'course.': 4467, 'curtis': 4468, 'developing': 4469, 'discussion': 4470, 'documentary.': 4471, 'endearing': 4472, 'era,': 4473, 'explicit': 4474, 'fay': 4475, 'hanks': 4476, 'hence': 4477, 'involvement': 4478, 'jeffrey': 4479, 'justify': 4480, 'kid.': 4481, 'kudos': 4482, 'morality': 4483, 'obscure': 4484, 'poster': 4485, 'rushed': 4486, 'severe': 4487, 'sex.': 4488, 'slap': 4489, "someone's": 4490, 'storyline.': 4491, 'suspects': 4492, 'threatening': 4493, 'tree': 4494, 'turkey': 4495, 'undoubtedly': 4496, 'vast': 4497, 'versus': 4498, 'writer,': 4499, "60's": 4500, 'argue': 4501, 'audio': 4502, 'big,': 4503, 'chased': 4504, 'chases': 4505, 'comparing': 4506, 'conventional': 4507, 'dave': 4508, 'dentist': 4509, 'fears': 4510, 'glorious': 4511, 'had.': 4512, 'hardcore': 4513, 'hell.': 4514, 'hints': 4515, 'hip': 4516, 'hooked': 4517, 'jealous': 4518, 'lame.': 4519, 'mafia': 4520, 'pace,': 4521, 'performers': 4522, 'photographed': 4523, 'possibility': 4524, 'rap': 4525, 'rip-off': 4526, 'rogers': 4527, 'ruth': 4528, 'shy': 4529, 'song,': 4530, 'spin': 4531, 'techniques': 4532, 'villain,': 4533, 'web': 4534, 'aging': 4535, 'beneath': 4536, 'chair': 4537, 'charisma': 4538, 'cheap,': 4539, 'combine': 4540, 'composed': 4541, 'conspiracy': 4542, 'contained': 4543, 'corner': 4544, 'crisis': 4545, 'defeat': 4546, 'different,': 4547, "everyone's": 4548, 'facing': 4549, 'fortune': 4550, 'gift': 4551, 'horrors': 4552, 'ideal': 4553, 'intent': 4554, 'involved,': 4555, 'kicked': 4556, 'killed.': 4557, 'lasted': 4558, 'lily': 4559, 'month': 4560, 'noise': 4561, 'norman': 4562, 'note,': 4563, 'ourselves': 4564, 'outrageous': 4565, 'pride': 4566, 'realizing': 4567, 'revolution': 4568, 'smooth': 4569, 'snow': 4570, 'titanic': 4571, 'useless': 4572, 'waited': 4573, 'weakest': 4574, 'winds': 4575, 'wore': 4576, 'writing.': 4577, '(you': 4578, '18': 4579, '2)': 4580, 'acted,': 4581, 'aka': 4582, 'anymore': 4583, 'benefit': 4584, 'brando': 4585, 'carl': 4586, 'cia': 4587, 'cruise': 4588, 'defend': 4589, 'emphasis': 4590, 'everything,': 4591, 'exposed': 4592, 'felix': 4593, 'gentle': 4594, 'harder': 4595, 'heston': 4596, 'karloff': 4597, 'notion': 4598, 'offering': 4599, 'orders': 4600, 'overlooked': 4601, 'personally,': 4602, 'rank': 4603, 'signs': 4604, 'sits': 4605, 'suits': 4606, 'superhero': 4607, 'thrillers': 4608, 'treats': 4609, 'warren': 4610, 'were,': 4611, '/>like': 4612, '/>most': 4613, '3.': 4614, '3rd': 4615, '45': 4616, 'bag': 4617, 'bare': 4618, 'blows': 4619, 'chance,': 4620, 'daring': 4621, 'documentary,': 4622, 'dull.': 4623, 'flynn': 4624, 'gem.': 4625, 'hugh': 4626, 'investigation': 4627, 'maintain': 4628, 'mickey': 4629, 'miscast': 4630, 'montage': 4631, 'nose': 4632, 'passes': 4633, 'presumably': 4634, 'quality,': 4635, 'released.': 4636, 'response': 4637, 'room.': 4638, 'sadistic': 4639, 'savage': 4640, 'screen.<br': 4641, 'soundtrack.': 4642, 'suitable': 4643, 'times.<br': 4644, '(by': 4645, '(they': 4646, '(yes,': 4647, 'border': 4648, 'bullets': 4649, 'can.': 4650, 'carrey': 4651, 'closest': 4652, 'come.': 4653, 'cook': 4654, 'delivering': 4655, 'exaggerated': 4656, 'girlfriend,': 4657, 'glenn': 4658, 'guys.': 4659, 'hey': 4660, 'highlights': 4661, 'i,': 4662, 'judging': 4663, 'link': 4664, 'margaret': 4665, 'modesty': 4666, 'movie...': 4667, 'nelson': 4668, 'painted': 4669, 'painting': 4670, 'problems.': 4671, 'psychiatrist': 4672, 'raped': 4673, 'spielberg': 4674, 'staring': 4675, 'suck': 4676, 'tear': 4677, 'this!': 4678, 'timeless': 4679, 'unbelievable.': 4680, 'usa': 4681, 'valuable': 4682, 'vivid': 4683, 'ward': 4684, 'watch.<br': 4685, 'winter': 4686, 'wished': 4687, '(she': 4688, 'affect': 4689, 'alexander': 4690, 'business.': 4691, 'considerable': 4692, 'corporate': 4693, "don't.": 4694, 'duke': 4695, 'dutch': 4696, 'et': 4697, 'events,': 4698, 'exotic': 4699, 'fish': 4700, 'headed': 4701, 'holy': 4702, 'ignored': 4703, 'individuals': 4704, 'interaction': 4705, 'investigate': 4706, 'it;': 4707, "king's": 4708, 'lab': 4709, 'masterpiece,': 4710, 'mentioned,': 4711, 'moving,': 4712, 'naturally,': 4713, 'reflect': 4714, 'resolution': 4715, 'samurai': 4716, 'society,': 4717, 'spare': 4718, 'spots': 4719, 'spring': 4720, 'sullivan': 4721, 'sure.': 4722, 'sutherland': 4723, 'switch': 4724, 'ticket': 4725, 'time!': 4726, 'viewers.': 4727, 'worthless': 4728, 'yet.': 4729, 'you.<br': 4730, '"la': 4731, '..': 4732, '/>do': 4733, '/>now,': 4734, '24': 4735, 'alongside': 4736, 'also.': 4737, 'amounts': 4738, 'baker': 4739, 'bible': 4740, 'bleak': 4741, 'chain': 4742, 'cheese': 4743, 'cole': 4744, 'crimes': 4745, 'depicts': 4746, 'destroying': 4747, 'disagree': 4748, 'documentaries': 4749, 'engaged': 4750, 'episodes.': 4751, 'ginger': 4752, 'goal': 4753, 'gray': 4754, 'hal': 4755, 'horses': 4756, 'i.e.': 4757, 'inspiring': 4758, 'interest,': 4759, 'isolated': 4760, 'it:': 4761, 'joined': 4762, 'le': 4763, 'less.': 4764, 'one-liners': 4765, 'orson': 4766, 'oscars': 4767, 'points.': 4768, 'racial': 4769, 'reads': 4770, 'rebel': 4771, 'reunion': 4772, 'set.': 4773, 'sexuality': 4774, 'shorts': 4775, 'size': 4776, 'sons': 4777, 'superb.': 4778, 'union': 4779, 'walls': 4780, 'x': 4781, '/>maybe': 4782, '1/2': 4783, '80': 4784, 'abc': 4785, 'behave': 4786, 'birthday': 4787, 'blake': 4788, 'centers': 4789, 'cheating': 4790, 'compelled': 4791, 'conversations': 4792, 'costumes,': 4793, 'crush': 4794, 'dear': 4795, 'disc': 4796, "disney's": 4797, 'displayed': 4798, 'earned': 4799, 'edgar': 4800, 'engage': 4801, 'floating': 4802, 'forbidden': 4803, 'from.': 4804, 'handed': 4805, 'india': 4806, 'instant': 4807, 'italy': 4808, 'knife': 4809, 'lighting,': 4810, 'maggie': 4811, 'melodramatic': 4812, 'murder.': 4813, 'potentially': 4814, 'prom': 4815, 'react': 4816, 'scottish': 4817, 'screenplay,': 4818, 'shining': 4819, 'show.<br': 4820, 'stunts': 4821, 'taught': 4822, 'thick': 4823, 'tie': 4824, 'toilet': 4825, 'truth,': 4826, 'unintentional': 4827, 'widmark': 4828, '1/10': 4829, 'admit,': 4830, 'agrees': 4831, 'argument': 4832, 'beer': 4833, 'blood.': 4834, 'brilliance': 4835, 'brutally': 4836, 'burton': 4837, 'carol': 4838, 'competition': 4839, 'cool.': 4840, 'development.': 4841, 'diane': 4842, 'doc': 4843, 'effect.': 4844, 'everywhere': 4845, 'ex': 4846, 'exceptionally': 4847, "family's": 4848, 'far.': 4849, 'festival.': 4850, 'flies': 4851, 'granted,': 4852, 'hung': 4853, 'juvenile': 4854, 'loyal': 4855, 'mario': 4856, 'matthew': 4857, 'memorable.': 4858, 'next.': 4859, 'ones,': 4860, 'overwhelming': 4861, 'pie': 4862, 'politically': 4863, 'pretending': 4864, 'proceeds': 4865, 'projects': 4866, 'reaching': 4867, 'rochester': 4868, 'secretly': 4869, 'staff': 4870, 'strong,': 4871, 'tends': 4872, 'thru': 4873, 'traveling': 4874, 'trite': 4875, 'up.<br': 4876, 'virus': 4877, 'vs': 4878, 'word,': 4879, 'wrapped': 4880, '"if': 4881, '(also': 4882, "(it's": 4883, '/>watch': 4884, 'addition,': 4885, 'advise': 4886, 'anyone,': 4887, 'armed': 4888, 'bin': 4889, 'breasts': 4890, 'brosnan': 4891, 'capturing': 4892, 'chorus': 4893, 'communist': 4894, 'cox': 4895, 'dawn': 4896, 'del': 4897, 'die,': 4898, 'doomed': 4899, 'emily': 4900, 'fantastic.': 4901, 'favorites': 4902, 'generic': 4903, 'guarantee': 4904, 'guessed': 4905, 'heat': 4906, 'ingredients': 4907, 'jumped': 4908, 'little.': 4909, 'lowest': 4910, 'movie;': 4911, 'nowadays': 4912, 'occur': 4913, 'perry': 4914, 'philosophical': 4915, 'result,': 4916, 'sad.': 4917, 'set,': 4918, 'side.': 4919, 'simplistic': 4920, 'situations,': 4921, 'spread': 4922, 'swear': 4923, 'topless': 4924, 'trap': 4925, 'weak,': 4926, 'wishing': 4927, 'wonderful,': 4928, 'worlds': 4929, 'wwii': 4930, '/>finally,': 4931, 'accent.': 4932, 'alternate': 4933, 'awfully': 4934, 'banned': 4935, 'blank': 4936, 'blond': 4937, 'broadcast': 4938, 'buddies': 4939, 'car.': 4940, 'cary': 4941, 'century.': 4942, 'cg': 4943, 'chaplin': 4944, 'childish': 4945, 'class.': 4946, 'classical': 4947, 'comments,': 4948, 'crap,': 4949, 'dancer': 4950, 'dire': 4951, 'discovery': 4952, 'distance': 4953, 'duo': 4954, 'global': 4955, 'guilt': 4956, 'hudson': 4957, 'instance': 4958, 'judy': 4959, 'lay': 4960, "lee's": 4961, 'made-for-tv': 4962, 'miller': 4963, 'nervous': 4964, 'official': 4965, 'pathetic.': 4966, 'persona': 4967, 'power,': 4968, 'relation': 4969, 'sacrifice': 4970, 'scenes.<br': 4971, 'shark': 4972, 'smoke': 4973, 'souls': 4974, 'stress': 4975, 'superficial': 4976, 'swimming': 4977, 'unpleasant': 4978, 'what,': 4979, 'whatsoever': 4980, 'works,': 4981, '(just': 4982, "50's": 4983, 'accompanied': 4984, 'aid': 4985, 'assigned': 4986, 'christ': 4987, 'claimed': 4988, 'cleverly': 4989, 'cried': 4990, 'crucial': 4991, 'detailed': 4992, 'eccentric': 4993, 'ellen': 4994, 'example.': 4995, 'exception.': 4996, 'factory': 4997, 'fascinated': 4998, 'flat.': 4999, 'folk': 5000, 'form.': 5001, 'glover': 5002, 'hilariously': 5003, 'humble': 5004, 'hype': 5005, 'impress': 5006, 'innovative': 5007, 'jazz': 5008, 'lame,': 5009, 'liking': 5010, 'linda': 5011, 'loser': 5012, 'matches': 5013, 'melting': 5014, 'messed': 5015, 'miserable': 5016, 'mystery,': 5017, 'nevertheless': 5018, 'odds': 5019, 'performs': 5020, 'points,': 5021, 'potential.': 5022, 'poverty': 5023, 'recorded': 5024, 'regardless': 5025, 'review.': 5026, 'rocks': 5027, 'seeks': 5028, 'showcase': 5029, 'song.': 5030, 'sub': 5031, 'sucks.': 5032, 'surviving': 5033, 'tale.': 5034, 'top.': 5035, 'triumph': 5036, 'uninspired': 5037, 'visits': 5038, 'widely': 5039, 'yeah': 5040, 'you!': 5041, '7/10': 5042, 'access': 5043, 'animation.': 5044, 'annie': 5045, 'astaire': 5046, 'basement': 5047, 'climactic': 5048, 'coherent': 5049, 'dating': 5050, 'differences': 5051, 'directs': 5052, 'doubt,': 5053, 'dramas': 5054, 'edie': 5055, 'finish.': 5056, 'garden': 5057, 'grandmother': 5058, 'hero.': 5059, 'herself.': 5060, 'incident': 5061, 'installment': 5062, 'introduce': 5063, 'journalist': 5064, 'karen': 5065, 'meaningless': 5066, 'medium': 5067, 'mini': 5068, 'movie"': 5069, 'neck': 5070, 'nurse': 5071, 'offended': 5072, 'photos': 5073, 'piano': 5074, 'purchased': 5075, 'ruthless': 5076, 'seen.<br': 5077, 'setting,': 5078, 'silence': 5079, 'sloppy': 5080, 'start,': 5081, 'stiff': 5082, 'stiller': 5083, 'success.': 5084, 'such,': 5085, 't.v.': 5086, 'tale,': 5087, 'theme,': 5088, 'tommy': 5089, 'underlying': 5090, 'unhappy': 5091, 'value.': 5092, 'virgin': 5093, 'wannabe': 5094, '"so': 5095, '16': 5096, 'achievement': 5097, 'advanced': 5098, 'beings': 5099, 'block': 5100, 'bride': 5101, 'brothers,': 5102, 'cagney': 5103, 'cameron': 5104, 'captivating': 5105, 'chess': 5106, 'chooses': 5107, 'cinematography.': 5108, 'corpse': 5109, 'davies': 5110, 'dr': 5111, 'editor': 5112, 'equivalent': 5113, 'farm': 5114, 'flat,': 5115, 'franchise': 5116, 'future,': 5117, 'fx': 5118, 'gore.': 5119, 'granted': 5120, 'hand.': 5121, 'hood': 5122, 'horrid': 5123, 'hours,': 5124, 'intelligent,': 5125, 'killings': 5126, 'least.': 5127, 'loosely': 5128, 'lou': 5129, 'luckily': 5130, 'much.<br': 5131, 'new,': 5132, 'photographer': 5133, 'photography,': 5134, 'pops': 5135, 'project.': 5136, 'promised': 5137, 'repetitive': 5138, 'represented': 5139, 'scene.<br': 5140, 'scheme': 5141, 'since.': 5142, 'staged': 5143, 'stellar': 5144, 'surprise.': 5145, 'suspend': 5146, 'terrorist': 5147, 'theater,': 5148, 'trashy': 5149, 'vaguely': 5150, 'warned': 5151, '–': 5152, '/>how': 5153, 'agreed': 5154, 'blob': 5155, 'bold': 5156, 'borrowed': 5157, 'camera-work': 5158, 'charming,': 5159, 'clumsy': 5160, 'command': 5161, 'craft': 5162, 'die.': 5163, 'distinct': 5164, 'disturbed': 5165, 'do?': 5166, 'etc.,': 5167, 'explored': 5168, 'foul': 5169, 'generous': 5170, "god's": 5171, 'groups': 5172, 'hideous': 5173, 'jonathan': 5174, 'kirk': 5175, 'lengthy': 5176, 'mentions': 5177, 'motivation': 5178, 'notes': 5179, 'power.': 5180, 'rather,': 5181, 'restaurant': 5182, 'roman': 5183, 'rotten': 5184, 'satisfy': 5185, 'shake': 5186, 'shirley': 5187, 'sound,': 5188, 'specifically': 5189, 'subjects': 5190, 'terry': 5191, 'thrill': 5192, 'thugs': 5193, 'tunes': 5194, 'wandering': 5195, 'week.': 5196, 'wet': 5197, 'would-be': 5198, "year's": 5199, "1950's": 5200, 'abusive': 5201, 'antics': 5202, 'atmosphere.': 5203, 'been.': 5204, 'body.': 5205, 'cheesy,': 5206, 'combat': 5207, 'commented': 5208, 'damage': 5209, 'depicting': 5210, 'diana': 5211, 'disliked': 5212, 'domestic': 5213, 'doors': 5214, 'elm': 5215, 'elvira': 5216, 'exploration': 5217, 'film).': 5218, 'grabs': 5219, 'grasp': 5220, 'happens,': 5221, 'hatred': 5222, 'him?': 5223, 'illegal': 5224, 'improve': 5225, 'intentionally': 5226, "isn't.": 5227, 'joey': 5228, 'laughably': 5229, 'more.<br': 5230, 'nostalgic': 5231, 'not.<br': 5232, 'people.<br': 5233, 'possessed': 5234, 'premise,': 5235, 'resemble': 5236, 'revolutionary': 5237, 'reynolds': 5238, 'same,': 5239, 'scores': 5240, 'scripted': 5241, 'secretary': 5242, 'shadows': 5243, 'signed': 5244, 'similarities': 5245, 'slave': 5246, 'sneak': 5247, 'soccer': 5248, 'spoke': 5249, 'styles': 5250, 'subjected': 5251, 'tender': 5252, 'ties': 5253, 'trained': 5254, 'twilight': 5255, 'understand.': 5256, 'was.<br': 5257, "we'd": 5258, 'wealth': 5259, 'whale': 5260, 'wholly': 5261, 'written.': 5262, '"star': 5263, '/>unfortunately,': 5264, '3/10': 5265, '60s': 5266, 'amanda': 5267, 'appalling': 5268, 'appreciation': 5269, 'april': 5270, 'arguably': 5271, 'backdrop': 5272, 'belong': 5273, 'britain': 5274, 'can,': 5275, 'concern': 5276, 'copies': 5277, 'crack': 5278, 'creepy,': 5279, 'critic': 5280, 'cute,': 5281, 'earlier,': 5282, 'either.<br': 5283, 'excessive': 5284, 'fix': 5285, 'flawless': 5286, 'implausible': 5287, 'iron': 5288, 'kapoor': 5289, 'kitchen': 5290, 'legal': 5291, 'manner.': 5292, 'perhaps,': 5293, 'principal': 5294, 'purchase': 5295, 'receives': 5296, 'relations': 5297, 'resort': 5298, 'ritter': 5299, 'royal': 5300, 'scooby': 5301, 'season,': 5302, 'secrets': 5303, 'shame,': 5304, 'situation,': 5305, 'stretched': 5306, 'symbolism': 5307, 'team.': 5308, 'transition': 5309, 'user': 5310, '"don\'t': 5311, '/>perhaps': 5312, '4/10': 5313, 'background.': 5314, 'brains': 5315, 'bullet': 5316, 'colonel': 5317, 'condition': 5318, 'consequences': 5319, 'curiosity': 5320, 'dalton': 5321, 'dances': 5322, 'directed,': 5323, 'eager': 5324, 'francisco': 5325, 'frequent': 5326, 'harvey': 5327, 'hour,': 5328, 'imagination.': 5329, 'immensely': 5330, 'kind.': 5331, 'leonard': 5332, 'lone': 5333, 'message.': 5334, 'miike': 5335, 'mildred': 5336, 'moody': 5337, 'movements': 5338, 'nights': 5339, 'notch': 5340, 'obviously,': 5341, 'officers': 5342, 'overrated': 5343, 'parallel': 5344, 'perfectly.': 5345, 'popcorn': 5346, 'population': 5347, 'props': 5348, 'pulp': 5349, 'removed': 5350, 'rendition': 5351, 'resulting': 5352, 'rocket': 5353, 'series.<br': 5354, 'smoking': 5355, 'stumbled': 5356, 'succeeded': 5357, 'supported': 5358, 'tag': 5359, 'therefore,': 5360, 'transfer': 5361, 'transformation': 5362, 'turner': 5363, 'twelve': 5364, 'viewer,': 5365, 'well-known': 5366, 'wells': 5367, 'woods,': 5368, 'wrestling': 5369, '(what': 5370, '***': 5371, '/>"the': 5372, '1970s': 5373, '4.': 5374, '=': 5375, 'along,': 5376, "america's": 5377, 'assumed': 5378, 'attend': 5379, 'capital': 5380, 'cats': 5381, 'citizen': 5382, 'cusack': 5383, 'dignity': 5384, 'dreams.': 5385, 'endure': 5386, 'etc.<br': 5387, 'ethan': 5388, 'eve': 5389, 'general,': 5390, 'gerard': 5391, 'get.': 5392, 'gifted': 5393, 'goes,': 5394, 'gundam': 5395, 'hank': 5396, 'hysterical': 5397, 'inability': 5398, 'joins': 5399, 'june': 5400, 'landscape': 5401, 'machines': 5402, 'maker': 5403, 'message,': 5404, 'middle-aged': 5405, 'myself.': 5406, 'one!': 5407, 'porno': 5408, 'problem,': 5409, 'progress': 5410, 'realistic,': 5411, 'row': 5412, 'selfish': 5413, 'trailers': 5414, 'viewers,': 5415, 'villain.': 5416, "wife's": 5417, '/>well': 5418, 'advance': 5419, 'arrogant': 5420, 'at,': 5421, 'authority': 5422, 'be.<br': 5423, 'blowing': 5424, 'books,': 5425, 'brady': 5426, 'cameras': 5427, 'close.': 5428, 'coffee': 5429, 'creation': 5430, 'definition': 5431, 'dinosaur': 5432, 'dose': 5433, 'editing.': 5434, 'faster': 5435, 'h.': 5436, 'hair,': 5437, 'hears': 5438, "husband's": 5439, 'ignorant': 5440, 'immediate': 5441, 'incompetent': 5442, 'indians': 5443, 'inferior': 5444, 'intimate': 5445, 'lead,': 5446, 'line:': 5447, 'little,': 5448, 'madness': 5449, 'manhattan': 5450, 'newly': 5451, 'occurred': 5452, 'opportunities': 5453, "other's": 5454, 'outcome': 5455, 'overlook': 5456, 'planned': 5457, 'plot.<br': 5458, 'possible,': 5459, 'pursuit': 5460, 'raises': 5461, 'randomly': 5462, 'rely': 5463, 'remember,': 5464, 'replace': 5465, 'resident': 5466, 'scope': 5467, 'seldom': 5468, 'shelf': 5469, 'silly.': 5470, 'spirits': 5471, 'st.': 5472, 'standards,': 5473, 'strange,': 5474, 'sums': 5475, 'survived': 5476, 'unaware': 5477, 'wakes': 5478, 'wallace': 5479, 'were.': 5480, 'witnesses': 5481, 'writes': 5482, '(michael': 5483, 'alfred': 5484, 'ape': 5485, 'aspiring': 5486, 'awesome.': 5487, 'bucks': 5488, 'carter': 5489, 'choreography': 5490, 'circle': 5491, 'comics': 5492, 'confidence': 5493, 'credits,': 5494, 'dinosaurs': 5495, 'eastern': 5496, 'eastwood': 5497, 'encourage': 5498, 'english,': 5499, 'errors': 5500, 'fantastic,': 5501, 'girls.': 5502, 'goldberg': 5503, 'great!': 5504, 'in.<br': 5505, 'inane': 5506, 'inappropriate': 5507, 'invites': 5508, 'jerk': 5509, 'joke,': 5510, 'kicking': 5511, 'loaded': 5512, 'masters': 5513, 'mighty': 5514, 'mile': 5515, 'motives': 5516, 'performer': 5517, 'raising': 5518, 'released,': 5519, 'require': 5520, 'review,': 5521, 'rick': 5522, 'screenplay.': 5523, 'sequences.': 5524, 'shelley': 5525, 'smith,': 5526, 'tall': 5527, 'teaches': 5528, 'temple': 5529, 'thought.': 5530, 'voice-over': 5531, 'warrior': 5532, 'watchable.': 5533, 'wound': 5534, 'yelling': 5535, '"good': 5536, '"it': 5537, '/>its': 5538, '3d': 5539, 'alive.': 5540, 'alright': 5541, 'bathroom': 5542, 'bela': 5543, 'black,': 5544, 'catching': 5545, 'charlotte': 5546, 'conflicts': 5547, 'conservative': 5548, 'decisions': 5549, 'destruction': 5550, 'discovering': 5551, 'donna': 5552, 'etc.)': 5553, 'expect.': 5554, 'expressed': 5555, 'fair,': 5556, 'falk': 5557, 'feed': 5558, 'fighter': 5559, 'fisher': 5560, 'good!': 5561, 'husband.': 5562, 'imagined': 5563, "kid's": 5564, 'language,': 5565, 'latin': 5566, 'light,': 5567, 'literary': 5568, 'march': 5569, 'molly': 5570, 'must-see': 5571, 'nature,': 5572, 'nicholson': 5573, 'pamela': 5574, 'period,': 5575, 'presenting': 5576, 'preview': 5577, 'rage': 5578, 'recording': 5579, 'redemption': 5580, 'respective': 5581, 'romance.': 5582, 'scenery,': 5583, 'senseless': 5584, 'shots.': 5585, "should've": 5586, 'solo': 5587, 'somehow,': 5588, 'sometimes,': 5589, 'standards.': 5590, 'teaching': 5591, 'todd': 5592, 'tracking': 5593, 'tracks': 5594, 'unsettling': 5595, 'virginia': 5596, 'water,': 5597, 'whats': 5598, "women's": 5599, 'york.': 5600, '"all': 5601, '(there': 5602, '**': 5603, '/>1.': 5604, 'adequate': 5605, 'adorable': 5606, 'akshay': 5607, 'artificial': 5608, 'change.': 5609, 'chaos': 5610, 'characterization': 5611, 'choreographed': 5612, 'cure': 5613, 'deceased': 5614, 'defined': 5615, 'demand': 5616, 'depression': 5617, 'dialogues': 5618, 'dolph': 5619, 'elegant': 5620, 'exchange': 5621, 'filling': 5622, 'finger': 5623, 'gather': 5624, 'germans': 5625, 'hbo': 5626, 'hopelessly': 5627, 'horrifying': 5628, 'illogical': 5629, 'justin': 5630, 'king,': 5631, 'lena': 5632, 'library': 5633, 'lust': 5634, 'massacre': 5635, 'mechanical': 5636, 'monkey': 5637, 'mundane': 5638, 'no-one': 5639, 'petty': 5640, 'precisely': 5641, 'promises': 5642, 'punk': 5643, 'purple': 5644, 'refer': 5645, 'referred': 5646, 'refused': 5647, 'rises': 5648, 'rising': 5649, 'rubber': 5650, 'sadness': 5651, 'sandra': 5652, 'september': 5653, 'shared': 5654, 'shoes': 5655, 'similarly': 5656, 'tame': 5657, 'team,': 5658, 'thoughtful': 5659, 'useful': 5660, 'walken': 5661, 'wreck': 5662, 'yourself,': 5663, '"american': 5664, '---': 5665, '/>having': 5666, "/>that's": 5667, 'air.': 5668, 'attention,': 5669, 'boss,': 5670, 'brother.': 5671, 'canada': 5672, 'cartoon.': 5673, 'character.<br': 5674, 'cinematographer': 5675, 'clever,': 5676, 'cold,': 5677, 'conclusion.': 5678, 'culture.': 5679, 'dancers': 5680, 'decent,': 5681, 'depressed': 5682, 'duty': 5683, 'ends.': 5684, 'events.': 5685, 'expectations.': 5686, 'explosion': 5687, 'fashioned': 5688, 'follow.': 5689, 'fortunately,': 5690, 'freak': 5691, 'gabriel': 5692, 'genius.': 5693, 'giallo': 5694, "guy's": 5695, 'ha': 5696, 'hard.': 5697, 'helicopter': 5698, 'hollow': 5699, 'im': 5700, 'invited': 5701, 'knocked': 5702, 'laurence': 5703, 'minutes.<br': 5704, 'mistaken': 5705, 'motivations': 5706, 'murdering': 5707, 'neighbor': 5708, 'nicholas': 5709, 'paulie': 5710, 'practice': 5711, 'prepare': 5712, 'question,': 5713, 'questionable': 5714, 'quietly': 5715, 'receiving': 5716, 'reflection': 5717, 'regarded': 5718, 'remained': 5719, 's.': 5720, 'shares': 5721, 'simple.': 5722, 'songs.': 5723, 'sounding': 5724, 'sue': 5725, 'survival': 5726, 'system.': 5727, 'thrills': 5728, 'throat': 5729, 'top,': 5730, 'trademark': 5731, 'whoopi': 5732, 'will.': 5733, 'wizard': 5734, '19th': 5735, 'alcoholic': 5736, 'amy': 5737, 'automatically': 5738, 'avoided': 5739, 'body,': 5740, 'brooklyn': 5741, 'bumbling': 5742, 'clothing': 5743, 'clown': 5744, 'construction': 5745, 'conveys': 5746, 'dead"': 5747, 'dysfunctional': 5748, 'effort,': 5749, 'fooled': 5750, 'fought': 5751, 'going.': 5752, 'guess.': 5753, 'half,': 5754, 'happening.': 5755, 'homosexual': 5756, 'hook': 5757, 'industrial': 5758, 'inventive': 5759, 'island,': 5760, 'it).': 5761, 'khan': 5762, 'li': 5763, 'list.': 5764, 'masterful': 5765, 'method': 5766, 'muslim': 5767, 'nazis': 5768, 'ordered': 5769, 'other.<br': 5770, 'pearl': 5771, 'popularity': 5772, 'positively': 5773, 'prisoners': 5774, 'promote': 5775, 'randy': 5776, 'rates': 5777, 'raymond': 5778, 'respected': 5779, 'severely': 5780, 'shine': 5781, 'snl': 5782, 'splatter': 5783, 'suspicious': 5784, 'threatens': 5785, 'try.': 5786, 'violent,': 5787, 'visiting': 5788, 'voice.': 5789, 'wacky': 5790, 'wait,': 5791, '"we': 5792, '(robert': 5793, '(some': 5794, '1)': 5795, '2006': 5796, 'additional': 5797, 'audience.<br': 5798, 'australia': 5799, 'bakshi': 5800, 'bottle': 5801, 'calm': 5802, 'careful': 5803, 'carrie': 5804, 'challenging': 5805, 'christy': 5806, 'class,': 5807, 'classes': 5808, 'close-ups': 5809, 'comfort': 5810, 'companion': 5811, 'confrontation': 5812, 'consistent': 5813, 'convincingly': 5814, 'craig': 5815, 'cube': 5816, "daughter's": 5817, 'dimensional': 5818, 'disappeared': 5819, 'disease': 5820, 'ego': 5821, 'electric': 5822, 'embarrassment': 5823, 'endings': 5824, 'film-makers': 5825, 'fire,': 5826, 'frustration': 5827, 'girlfriend.': 5828, 'had,': 5829, 'inevitably': 5830, 'ireland': 5831, 'items': 5832, 'jenny': 5833, 'kennedy': 5834, 'mayor': 5835, 'mistake.': 5836, 'nail': 5837, 'narrator': 5838, 'nature.': 5839, 'o': 5840, 'one-dimensional': 5841, 'parent': 5842, 'party,': 5843, 'potential,': 5844, 'rambo': 5845, 'redeem': 5846, 'reflects': 5847, 'responsibility': 5848, 'revenge.': 5849, 'rex': 5850, 'ruins': 5851, 'sci': 5852, 'stooges': 5853, 'suitably': 5854, 'synopsis': 5855, 'television,': 5856, 'that!': 5857, 'timon': 5858, 'ups': 5859, 'waters': 5860, 'website': 5861, 'widow': 5862, 'wrap': 5863, '(very': 5864, '2000': 5865, '9/10': 5866, 'abused': 5867, "actor's": 5868, 'advertising': 5869, 'angela': 5870, 'areas': 5871, 'assault': 5872, 'beauty,': 5873, 'besides,': 5874, 'bone': 5875, 'catchy': 5876, 'convincing.': 5877, 'costs': 5878, 'cuba': 5879, 'danes': 5880, 'designs': 5881, 'desperation': 5882, 'doll': 5883, 'drove': 5884, 'elephant': 5885, 'enemies': 5886, 'expected,': 5887, 'expected.': 5888, 'fascination': 5889, 'forcing': 5890, 'forms': 5891, 'grinch': 5892, 'hamlet': 5893, 'hammer': 5894, 'handling': 5895, 'here)': 5896, 'holly': 5897, 'idiots': 5898, 'kay': 5899, 'lyrics': 5900, 'marketing': 5901, 'matched': 5902, 'merit': 5903, 'mess,': 5904, 'miss.': 5905, 'morally': 5906, 'nostalgia': 5907, 'on-screen': 5908, 'peoples': 5909, 'rave': 5910, 'restored': 5911, 'retired': 5912, 'reviews,': 5913, 'riveting': 5914, 'robots': 5915, 'ruby': 5916, 'score.': 5917, 'sellers': 5918, 'sid': 5919, 'sidekick': 5920, 'species': 5921, 'spock': 5922, 'stage,': 5923, 'surfing': 5924, 'sympathize': 5925, 'together.<br': 5926, 'verhoeven': 5927, 'visited': 5928, 'voice,': 5929, 'weak.': 5930, 'winters': 5931, 'wolf': 5932, 'year-old': 5933, 'yellow': 5934, 'zone': 5935, '"why': 5936, '(all': 5937, '1930s': 5938, 'abysmal': 5939, 'ages.': 5940, 'attract': 5941, 'ballet': 5942, 'bird': 5943, 'burst': 5944, 'contrary': 5945, 'd': 5946, 'date.': 5947, 'deserted': 5948, 'directing.': 5949, 'disaster.': 5950, 'doubts': 5951, 'drivel': 5952, 'earl': 5953, 'examination': 5954, 'explores': 5955, 'flaws,': 5956, 'fonda': 5957, 'formulaic': 5958, 'forty': 5959, "friend's": 5960, 'glory': 5961, 'glowing': 5962, 'god.': 5963, 'herself,': 5964, 'historically': 5965, 'homer': 5966, 'insists': 5967, 'josh': 5968, 'junior': 5969, 'leg': 5970, 'letters': 5971, 'light.': 5972, 'loud,': 5973, 'marries': 5974, 'maybe,': 5975, 'me"': 5976, 'off.<br': 5977, 'ollie': 5978, 'only.': 5979, 'phil': 5980, 'piece,': 5981, 'pierce': 5982, 'pink': 5983, 'pointless.': 5984, 'quit': 5985, 'resist': 5986, 'rolled': 5987, 'said.': 5988, 'sending': 5989, "shakespeare's": 5990, 'sincere': 5991, 'stereotype': 5992, 'store.': 5993, 'strongest': 5994, 'success,': 5995, 'suffice': 5996, 'testament': 5997, 'unbearable': 5998, 'visible': 5999, 'wildly': 6000, 'will,': 6001, 'wow!': 6002, "(don't": 6003, '(when': 6004, '*****': 6005, '/>2.': 6006, '/>is': 6007, '/>other': 6008, 'about.<br': 6009, 'acting.<br': 6010, 'admittedly': 6011, 'arrival': 6012, 'arrived': 6013, 'attitudes': 6014, 'betty': 6015, 'bonus': 6016, 'both.': 6017, 'butt': 6018, 'chapter': 6019, 'checked': 6020, 'christians': 6021, 'complexity': 6022, 'constructed': 6023, 'couples': 6024, 'credits.': 6025, 'crime.': 6026, 'darn': 6027, 'demented': 6028, 'demonstrates': 6029, 'deranged': 6030, 'dies.': 6031, 'disappear': 6032, 'downhill': 6033, 'earlier.': 6034, 'eats': 6035, 'enjoyable,': 6036, 'enterprise': 6037, 'eye.': 6038, 'f.': 6039, 'feature.': 6040, 'francis': 6041, 'general.': 6042, 'goodness': 6043, 'greg': 6044, 'hit-man': 6045, 'hour.': 6046, 'hunters': 6047, 'impressive.': 6048, 'indication': 6049, 'interactions': 6050, 'invented': 6051, 'julian': 6052, 'kyle': 6053, 'lemmon': 6054, 'marty': 6055, 'me!': 6056, 'meryl': 6057, 'metaphor': 6058, 'movie).': 6059, 'moving.': 6060, 'nightmares': 6061, 'obligatory': 6062, 'online': 6063, 'poetic': 6064, 'prisoner': 6065, 'purpose.': 6066, 'recognition': 6067, 'relationship.': 6068, 'remove': 6069, 'shoddy': 6070, 'store,': 6071, 't': 6072, 'tempted': 6073, 'territory': 6074, 'them!': 6075, 'understandable': 6076, 'understated': 6077, 'voight': 6078, 'willie': 6079, 'word.': 6080, 'words.': 6081, 'wrong.<br': 6082, '"oh': 6083, '(after': 6084, '(aka': 6085, '(both': 6086, '(so': 6087, '.<br': 6088, '/>title': 6089, 'adopted': 6090, 'alec': 6091, 'awe': 6092, 'basketball': 6093, 'believable,': 6094, 'believe,': 6095, 'beside': 6096, 'blatantly': 6097, 'boredom': 6098, 'brenda': 6099, "brother's": 6100, 'business,': 6101, 'businessman': 6102, 'celebration': 6103, 'century,': 6104, 'charged': 6105, 'cheated': 6106, 'cliff': 6107, 'dawson': 6108, 'dracula': 6109, 'ease': 6110, 'educational': 6111, 'enthusiasm': 6112, 'entitled': 6113, 'fact.': 6114, 'fed': 6115, 'femme': 6116, 'fever': 6117, 'form,': 6118, 'fulci': 6119, 'godzilla': 6120, 'hangs': 6121, 'happened,': 6122, 'hart': 6123, 'iconic': 6124, 'indeed.': 6125, 'intrigue': 6126, 'joel': 6127, 'jr.,': 6128, 'karl': 6129, 'keen': 6130, 'lackluster': 6131, 'last,': 6132, 'lit': 6133, 'lover,': 6134, 'mann': 6135, 'manner,': 6136, 'match.': 6137, 'mentioning': 6138, 'mysteries': 6139, 'mystery.': 6140, 'niro': 6141, 'oldest': 6142, 'opinions': 6143, 'paris,': 6144, 'persons': 6145, 'piece.': 6146, 'plant': 6147, 'plight': 6148, 'pokemon': 6149, 'polanski': 6150, 'sappy': 6151, 'sink': 6152, 'slaughter': 6153, 'slice': 6154, 'slick': 6155, 'sorely': 6156, 'soul.': 6157, 'spirited': 6158, 'sport': 6159, 'street,': 6160, 'stumbles': 6161, 'subtlety': 6162, 'taste.': 6163, 'tea': 6164, 'them?': 6165, 'transformed': 6166, 'unfolds': 6167, 'values,': 6168, 'values.': 6169, 'vulnerable': 6170, 'with.<br': 6171, 'witnessed': 6172, 'worst,': 6173, 'years.<br': 6174, 'you?': 6175, 'youngest': 6176, '~': 6177, '"bad': 6178, "'em": 6179, '("the': 6180, '+': 6181, '/>avoid': 6182, "/>i'll": 6183, '/>many': 6184, '/>oh,': 6185, '/>though': 6186, '/>very': 6187, 'abilities': 6188, 'accepts': 6189, 'acclaimed': 6190, 'activities': 6191, 'awake': 6192, 'beatty': 6193, 'befriends': 6194, 'blunt': 6195, "boy's": 6196, 'challenges': 6197, 'claiming': 6198, 'collection.': 6199, 'continually': 6200, 'corruption': 6201, 'coupled': 6202, 'damon': 6203, 'danish': 6204, 'day.<br': 6205, "didn't.": 6206, 'die-hard': 6207, 'dog.': 6208, 'eternal': 6209, 'eugene': 6210, 'existed': 6211, 'experimental': 6212, 'fashion.': 6213, 'fear,': 6214, 'firmly': 6215, 'franco': 6216, 'fun.<br': 6217, 'furthermore,': 6218, 'handles': 6219, 'hapless': 6220, 'he,': 6221, 'hk': 6222, 'household': 6223, 'importantly,': 6224, 'kind,': 6225, 'lands': 6226, 'lawrence': 6227, 'lifted': 6228, 'lost.': 6229, 'louise': 6230, 'madonna': 6231, 'menace': 6232, 'nicole': 6233, 'often,': 6234, 'olivier': 6235, 'pace.': 6236, 'passionate': 6237, 'pictures,': 6238, 'possibilities': 6239, 'predict': 6240, 'provoking': 6241, 'rating,': 6242, 'reluctant': 6243, 'remarks': 6244, 'repeating': 6245, 'rooms': 6246, 'run,': 6247, 'shed': 6248, 'simpson': 6249, 'soon.': 6250, 'steady': 6251, 'subplots': 6252, 'tap': 6253, 'tongue': 6254, 'tooth': 6255, 'translation': 6256, 'uniformly': 6257, 'value,': 6258, "viewer's": 6259, 'wisdom': 6260, 'witty,': 6261, 'wives': 6262, 'worn': 6263, 'wretched': 6264, '(david': 6265, '(my': 6266, '(out': 6267, '/>3.': 6268, '/>two': 6269, '0': 6270, '1980s': 6271, '5.': 6272, 'above,': 6273, 'adaptations': 6274, 'admirable': 6275, 'again!': 6276, 'aids': 6277, 'although,': 6278, 'amitabh': 6279, 'amusing.': 6280, 'astonishing': 6281, 'austin': 6282, 'backgrounds': 6283, 'beauty.': 6284, 'billed': 6285, 'boasts': 6286, 'by.': 6287, 'charm.': 6288, 'commenting': 6289, 'control.': 6290, 'crazed': 6291, 'credited': 6292, 'depends': 6293, 'destroys': 6294, 'difficulty': 6295, 'dimension': 6296, 'discussing': 6297, 'disjointed': 6298, 'distracting': 6299, 'dont': 6300, 'dreams,': 6301, 'drugs,': 6302, 'dub': 6303, 'edition': 6304, 'empire': 6305, 'fashion,': 6306, 'feel.': 6307, 'fi': 6308, 'florida': 6309, 'footage,': 6310, 'framed': 6311, 'generated': 6312, 'greedy': 6313, 'harold': 6314, 'historic': 6315, 'hurts': 6316, 'ideas,': 6317, 'infected': 6318, 'keith': 6319, 'lifestyle': 6320, 'likable,': 6321, 'lively': 6322, 'meanwhile': 6323, 'models': 6324, 'mountains': 6325, 'muppet': 6326, 'namely': 6327, 'nod': 6328, 'nomination': 6329, 'nonetheless': 6330, 'northern': 6331, 'nowhere.': 6332, 'office,': 6333, 'okay.': 6334, 'overdone': 6335, 'phony': 6336, 'photo': 6337, 'polished': 6338, 'preferred': 6339, 'prize': 6340, 'recognizable': 6341, 'report': 6342, 'rooting': 6343, 'scarecrow': 6344, 'serving': 6345, 'showdown': 6346, 'smart,': 6347, 'snake': 6348, 'soon,': 6349, 'specially': 6350, 'studying': 6351, 'sung': 6352, 'suspension': 6353, 'taxi': 6354, 'thinking,': 6355, 'ton': 6356, 'troops': 6357, 'uncut': 6358, 'understands': 6359, 'vice': 6360, 'waitress': 6361, 'warmth': 6362, 'worker': 6363, '"do': 6364, '"real"': 6365, '#1': 6366, '(brazil):': 6367, '(maybe': 6368, '(on': 6369, '(paul': 6370, '(richard': 6371, 'accent,': 6372, 'accident.': 6373, 'alison': 6374, 'already,': 6375, 'angeles': 6376, 'animals,': 6377, 'appropriately': 6378, 'beliefs': 6379, 'cannibal': 6380, 'casual': 6381, 'chainsaw': 6382, 'clip': 6383, 'coach': 6384, 'composer': 6385, 'containing': 6386, 'cope': 6387, 'dee': 6388, 'depending': 6389, 'describing': 6390, 'destined': 6391, 'died.': 6392, 'domino': 6393, 'dreary': 6394, 'earn': 6395, 'ears': 6396, 'fiction,': 6397, 'fifty': 6398, 'fire.': 6399, 'gandhi': 6400, 'hamilton': 6401, 'hands.': 6402, "hitler's": 6403, 'kissing': 6404, 'landing': 6405, 'made.<br': 6406, 'manipulative': 6407, 'marion': 6408, 'measure': 6409, 'methods': 6410, 'montana': 6411, 'morbid': 6412, 'museum': 6413, 'myers': 6414, 'nathan': 6415, 'nonsense.': 6416, 'paltrow': 6417, 'partially': 6418, 'primitive': 6419, 'prominent': 6420, 'psychic': 6421, 'quotes': 6422, 'rat': 6423, 'realised': 6424, 'refers': 6425, 'rita': 6426, 'rubbish.': 6427, 'safety': 6428, 'satan': 6429, 'sharon': 6430, 'shaw': 6431, 'simplicity': 6432, 'spark': 6433, 'square': 6434, 'stark': 6435, 'stevens': 6436, 'stuart': 6437, 'sunny': 6438, 'sunshine': 6439, 'time)': 6440, 'tragedy.': 6441, 'uneven': 6442, 'voted': 6443, 'watched.': 6444, 'wendy': 6445, 'wounded': 6446, '(where': 6447, '/>but,': 6448, '/>once': 6449, 'adolescent': 6450, 'aim': 6451, 'airport': 6452, 'alive,': 6453, 'antwone': 6454, 'apart.': 6455, 'attorney': 6456, 'bad!': 6457, 'bernard': 6458, 'careers': 6459, 'celebrity': 6460, 'centered': 6461, 'closed': 6462, 'closet': 6463, 'cringe': 6464, 'darren': 6465, 'deleted': 6466, 'deny': 6467, 'des': 6468, 'detract': 6469, 'directors,': 6470, 'doing.': 6471, 'dolls': 6472, 'down.<br': 6473, 'dressing': 6474, 'effect,': 6475, "else's": 6476, 'empathy': 6477, 'ethnic': 6478, 'exist.': 6479, 'expedition': 6480, 'f': 6481, 'farce': 6482, 'frustrating': 6483, 'gregory': 6484, 'grotesque': 6485, 'hard,': 6486, 'hides': 6487, 'hires': 6488, 'hugely': 6489, 'humour,': 6490, 'icon': 6491, 'it"': 6492, 'justice.': 6493, 'kubrick': 6494, 'las': 6495, 'laws': 6496, 'leads,': 6497, 'leo': 6498, 'life"': 6499, 'mall': 6500, 'musical,': 6501, 'mutual': 6502, 'newer': 6503, 'non-stop': 6504, 'nowhere,': 6505, 'outfit': 6506, 'philosophy': 6507, 'plague': 6508, 'preparing': 6509, 'realm': 6510, 'recycled': 6511, 'remade': 6512, 'representation': 6513, 'rest.': 6514, 'ripping': 6515, 'role.<br': 6516, 's': 6517, 'screwed': 6518, "she'll": 6519, 'steel': 6520, 'stopping': 6521, 'streep': 6522, 'subject,': 6523, 'suggested': 6524, 'superb,': 6525, 'surprisingly,': 6526, 'told,': 6527, 'translated': 6528, 'unpredictable': 6529, 'viewing,': 6530, "wasn't.": 6531, 'wwe': 6532, 'yesterday': 6533, 'zombies.': 6534, '"just': 6535, '(well,': 6536, '2:': 6537, '70': 6538, 'active': 6539, 'akin': 6540, "allen's": 6541, 'alternative': 6542, 'ambiguous': 6543, "anyone's": 6544, 'apes': 6545, 'ashley': 6546, 'bargain': 6547, 'beverly': 6548, 'biography': 6549, 'blacks': 6550, 'blues': 6551, 'boy.': 6552, 'brutality': 6553, 'buffalo': 6554, 'cards': 6555, "child's": 6556, 'church,': 6557, 'communicate': 6558, 'complaints': 6559, 'confess': 6560, 'considerably': 6561, 'craven': 6562, 'crazy,': 6563, 'crime,': 6564, 'da': 6565, 'dance,': 6566, 'design,': 6567, 'difficulties': 6568, 'doctor,': 6569, 'eaten': 6570, 'emperor': 6571, 'exploring': 6572, 'favour': 6573, 'firing': 6574, 'frightened': 6575, 'function': 6576, 'gadget': 6577, 'gained': 6578, 'genres': 6579, 'griffith': 6580, 'hackneyed': 6581, 'half.': 6582, 'heading': 6583, 'heartfelt': 6584, 'insurance': 6585, 'investigating': 6586, 'morris': 6587, 'mtv': 6588, 'objects': 6589, 'obtain': 6590, 'ocean': 6591, 'office.': 6592, 'owen': 6593, 'owes': 6594, 'posted': 6595, 'pot': 6596, 'pressure': 6597, 'preston': 6598, 'region': 6599, 'secondary': 6600, 'seed': 6601, 'selection': 6602, 'serious,': 6603, 'sexy,': 6604, 'shame.': 6605, 'shirt': 6606, 'simultaneously': 6607, 'solution': 6608, 'stage.': 6609, 'straightforward': 6610, 'stunningly': 6611, 'surprised.': 6612, 'survivors': 6613, 'token': 6614, 'toys': 6615, 'trend': 6616, 'unexpectedly': 6617, 'unseen': 6618, 'vital': 6619, 'wanders': 6620, '"film"': 6621, '(his': 6622, '21st': 6623, '4th': 6624, 'a.': 6625, 'abraham': 6626, 'adams': 6627, 'adults.': 6628, 'agents': 6629, 'area.': 6630, 'barrymore': 6631, 'been,': 6632, 'bell': 6633, 'berlin': 6634, 'biblical': 6635, 'blade': 6636, 'bulk': 6637, 'celluloid': 6638, 'charlton': 6639, 'chest': 6640, 'choosing': 6641, 'comedies,': 6642, 'comparisons': 6643, 'confronted': 6644, 'creep': 6645, 'demonic': 6646, 'departure': 6647, 'dies,': 6648, 'disappointed.<br': 6649, 'disgusted': 6650, 'divorce': 6651, 'dresses': 6652, 'drive-in': 6653, 'dumb.': 6654, 'education': 6655, 'event,': 6656, 'eventually,': 6657, 'experiments': 6658, 'feeding': 6659, 'firm': 6660, 'folks,': 6661, 'fortunately': 6662, 'gangsters': 6663, 'garbo': 6664, 'godfather': 6665, 'guess,': 6666, 'hands,': 6667, 'has.': 6668, 'height': 6669, 'houses': 6670, 'industry.': 6671, 'internal': 6672, "jackson's": 6673, 'kung-fu': 6674, 'l.': 6675, 'lady,': 6676, 'lasting': 6677, 'layers': 6678, 'lend': 6679, 'levels.': 6680, 'light-hearted': 6681, 'limits': 6682, 'losers': 6683, 'lush': 6684, 'making.': 6685, 'means,': 6686, 'minded': 6687, 'misguided': 6688, 'mummy': 6689, 'next,': 6690, 'ninja': 6691, 'organized': 6692, 'pan': 6693, 'parents.': 6694, 'peak': 6695, 'pig': 6696, 'plausible': 6697, 'point.<br': 6698, 'prison,': 6699, 'proving': 6700, 'refuse': 6701, 'ride.': 6702, 'smiling': 6703, 'spinal': 6704, 'stilted': 6705, 'stunned': 6706, 'suburban': 6707, 'swept': 6708, 'thus,': 6709, 'triple': 6710, 'ultimately,': 6711, 'unrelated': 6712, 'ustinov': 6713, 'vastly': 6714, 'vocal': 6715, 'witches': 6716, '(how': 6717, '(most': 6718, "(that's": 6719, '/>john': 6720, '/>still,': 6721, 'after,': 6722, 'applaud': 6723, 'assuming': 6724, 'bath': 6725, 'bedroom': 6726, 'birds': 6727, 'boyfriend,': 6728, 'buildings': 6729, 'category.': 6730, 'claus': 6731, 'club,': 6732, 'commander': 6733, 'compassion': 6734, 'complaining': 6735, 'conceived': 6736, 'confront': 6737, 'convinces': 6738, 'creator': 6739, 'damme': 6740, 'dana': 6741, 'decidedly': 6742, 'defense': 6743, 'definitive': 6744, 'delicate': 6745, 'designer': 6746, 'dialog.': 6747, 'dropping': 6748, 'employed': 6749, 'entertained.': 6750, 'eventual': 6751, 'eye,': 6752, 'family.<br': 6753, 'fast,': 6754, 'flair': 6755, 'flicks,': 6756, 'further,': 6757, 'g.': 6758, 'graham': 6759, 'grandfather': 6760, 'hippie': 6761, 'incapable': 6762, 'inexplicably': 6763, 'ingenious': 6764, 'inherent': 6765, 'kingdom': 6766, 'language.': 6767, 'late,': 6768, 'lee,': 6769, 'likewise': 6770, 'lois': 6771, 'lumet': 6772, 'marlon': 6773, 'martha': 6774, 'missed.': 6775, 'mixing': 6776, 'muddled': 6777, 'nice.': 6778, 'nicolas': 6779, 'nyc': 6780, 'occasion': 6781, 'often.': 6782, 'parade': 6783, 'park,': 6784, 'patience': 6785, 'pete': 6786, 'pg-13': 6787, 'place.<br': 6788, 'places,': 6789, 'posters': 6790, 'prequel': 6791, 'promptly': 6792, 'puerto': 6793, 'puppet': 6794, 'quickly.': 6795, 'referring': 6796, 'relationships,': 6797, 'relatives': 6798, 'reviews.': 6799, 'rocky': 6800, 'saga': 6801, 'satirical': 6802, 'seventies': 6803, 'shaky': 6804, 'sharing': 6805, "she'd": 6806, 'sincerely': 6807, "son's": 6808, 'space,': 6809, 'stages': 6810, 'sticking': 6811, 'swing': 6812, 'tank': 6813, 'tension.': 6814, 'terrified': 6815, 'trail': 6816, 'troubles': 6817, 'twists,': 6818, 'undeniably': 6819, 'unsuspecting': 6820, 'widescreen': 6821, '"no': 6822, '(perhaps': 6823, '/>she': 6824, '2"': 6825, '`the': 6826, 'acid': 6827, 'address': 6828, 'affects': 6829, 'african-american': 6830, 'alicia': 6831, 'andre': 6832, 'audiences.': 6833, 'belushi': 6834, 'blast': 6835, 'buster': 6836, 'buys': 6837, 'caliber': 6838, 'camp,': 6839, 'casts': 6840, 'channels': 6841, 'cheer': 6842, 'clarke': 6843, 'combines': 6844, 'companies': 6845, 'concentrate': 6846, 'contribute': 6847, 'cop,': 6848, 'creativity': 6849, 'crocodile': 6850, 'crystal': 6851, 'demonstrate': 6852, 'deniro': 6853, 'deserving': 6854, 'dickens': 6855, 'dixon': 6856, 'elements,': 6857, 'elements.': 6858, 'emerges': 6859, 'ensure': 6860, 'entered': 6861, 'entering': 6862, 'existence.': 6863, 'exposure': 6864, 'fantasy,': 6865, 'fishing': 6866, 'forgotten.': 6867, "freddy's": 6868, 'glued': 6869, 'hindi': 6870, 'human,': 6871, 'imagination,': 6872, 'imdb,': 6873, 'improvement': 6874, 'issues,': 6875, 'it`s': 6876, 'lundgren': 6877, 'mate': 6878, 'meg': 6879, 'minimum': 6880, 'moronic': 6881, 'nonsensical': 6882, 'obvious,': 6883, 'palma': 6884, 'paramount': 6885, 'physics': 6886, 'planet.': 6887, 'poison': 6888, 'police,': 6889, 'premiere': 6890, 'pro': 6891, 'prostitute': 6892, 'rejected': 6893, 'robinson': 6894, 'rock,': 6895, 'rude': 6896, 'ships': 6897, 'shopping': 6898, 'shoulders': 6899, 'simmons': 6900, 'sketch': 6901, 'sleeps': 6902, 'suicide.': 6903, 'tension,': 6904, 'threatened': 6905, 'thrilled': 6906, 'tone,': 6907, 'tossed': 6908, 'tragedy,': 6909, 'underneath': 6910, 'venture': 6911, 'victory': 6912, 'visuals,': 6913, 'walker': 6914, 'walsh': 6915, 'wander': 6916, 'waves': 6917, 'weird,': 6918, 'wow': 6919, '"b"': 6920, '/>4/10': 6921, '1,': 6922, 'adventure,': 6923, 'altogether': 6924, 'alvin': 6925, 'amusing,': 6926, 'appeals': 6927, 'audrey': 6928, 'bands': 6929, 'bay': 6930, 'brooding': 6931, 'buffs': 6932, 'by,': 6933, 'cd': 6934, 'centre': 6935, 'coast': 6936, 'company.': 6937, 'compete': 6938, 'connery': 6939, 'cue': 6940, 'culture,': 6941, 'deaf': 6942, 'depict': 6943, 'despicable': 6944, 'detail,': 6945, "devil's": 6946, 'disastrous': 6947, 'disturbing.': 6948, 'dog,': 6949, 'done.<br': 6950, 'door,': 6951, 'downey': 6952, 'dubious': 6953, 'eighties': 6954, 'esther': 6955, 'excruciatingly': 6956, 'expertly': 6957, 'exploit': 6958, 'exposition': 6959, 'fade': 6960, 'fathers': 6961, 'feeling.': 6962, "ford's": 6963, 'funeral': 6964, 'furious': 6965, 'glamorous': 6966, 'iii': 6967, 'importantly': 6968, 'lasts': 6969, 'laughable,': 6970, 'lift': 6971, 'locations,': 6972, 'london,': 6973, 'macho': 6974, 'marriage.': 6975, 'melissa': 6976, 'milk': 6977, 'minute.': 6978, 'misfortune': 6979, 'missing.': 6980, 'owns': 6981, 'pain,': 6982, 'patients': 6983, 'perfection': 6984, 'phantom': 6985, 'project,': 6986, 'property': 6987, 'releases': 6988, 'respect.': 6989, 'romero': 6990, 'satisfied': 6991, 'saying,': 6992, 'sentiment': 6993, 'serious.': 6994, 'sissy': 6995, 'stale': 6996, 'subtly': 6997, 'taste,': 6998, 'too!': 6999, 'twist.': 7000, 'valley': 7001, 'visions': 7002, 'vulgar': 7003, 'weakness': 7004, 'wow.': 7005, '"big': 7006, "/>i'd": 7007, '/>ok,': 7008, '/>these': 7009, '35': 7010, 'accomplish': 7011, 'addicted': 7012, 'adventure.': 7013, 'affection': 7014, 'airplane': 7015, 'alleged': 7016, 'amused': 7017, 'amusement': 7018, 'as,': 7019, 'away.<br': 7020, 'balls': 7021, 'being.': 7022, 'bitten': 7023, 'boring.<br': 7024, 'bridget': 7025, 'cassidy': 7026, 'charm,': 7027, 'childhood,': 7028, 'chopped': 7029, 'collect': 7030, 'contribution': 7031, 'curly': 7032, 'demanding': 7033, 'desires': 7034, 'dudley': 7035, 'edit': 7036, 'emotion.': 7037, 'ending.<br': 7038, 'expect,': 7039, 'expectations,': 7040, 'expects': 7041, 'exploits': 7042, 'expose': 7043, 'females': 7044, 'feminist': 7045, 'fist': 7046, 'flashy': 7047, 'from,': 7048, 'gender': 7049, 'generations': 7050, 'harmless': 7051, 'hartley': 7052, 'hopper': 7053, 'imitation': 7054, 'ingrid': 7055, 'inspire': 7056, 'invasion': 7057, 'iraq': 7058, 'irrelevant': 7059, 'itself.<br': 7060, 'kathryn': 7061, 'labor': 7062, 'landed': 7063, 'lex': 7064, 'literature': 7065, 'mclaglen': 7066, 'mill': 7067, 'minus': 7068, 'mistress': 7069, 'moreover,': 7070, 'nerd': 7071, 'none.': 7072, 'numbers,': 7073, 'older,': 7074, 'opera.': 7075, 'outright': 7076, 'owned': 7077, 'phillip': 7078, 'praised': 7079, 'pray': 7080, 'premise.': 7081, 'process.': 7082, 'rainy': 7083, 'rapidly': 7084, 'reasons,': 7085, 'rendered': 7086, 'residents': 7087, 'richards': 7088, 'rod': 7089, 'roommate': 7090, 'scariest': 7091, 'seedy': 7092, 'sentence': 7093, 'significance': 7094, 'slimy': 7095, 'sox': 7096, 'space.': 7097, 'springer': 7098, 'switched': 7099, 'symbolic': 7100, 'tacky': 7101, 'theme.': 7102, 'thread': 7103, 'tribe': 7104, 'tyler': 7105, 'wang': 7106, 'wax': 7107, 'ya': 7108, 'youthful': 7109, '\x97': 7110, '(james': 7111, '1960s': 7112, '2005': 7113, '7.': 7114, 'absent': 7115, 'acted.': 7116, 'afterwards': 7117, 'all!': 7118, 'austen': 7119, 'baby,': 7120, 'bang': 7121, 'believe.': 7122, 'bent': 7123, 'books.': 7124, 'bunny': 7125, 'butler': 7126, 'campbell': 7127, 'carradine': 7128, 'cattle': 7129, 'cerebral': 7130, 'challenged': 7131, 'championship': 7132, 'change,': 7133, 'channel.': 7134, 'chicks': 7135, 'climax.': 7136, 'conrad': 7137, 'continuing': 7138, 'contributed': 7139, 'controlled': 7140, 'countryside': 7141, 'crashes': 7142, 'cream': 7143, 'daddy': 7144, 'date,': 7145, 'der': 7146, 'devices': 7147, 'disguised': 7148, 'else.<br': 7149, 'establish': 7150, 'exciting,': 7151, 'failure.': 7152, 'feel,': 7153, 'feel-good': 7154, 'fills': 7155, 'flashes': 7156, 'flicks.': 7157, 'flop': 7158, 'formed': 7159, 'frankie': 7160, 'gambling': 7161, 'greed': 7162, 'help,': 7163, 'ignorance': 7164, 'imdb.': 7165, 'iran': 7166, 'jaw': 7167, 'landscapes': 7168, 'lips': 7169, 'live,': 7170, 'located': 7171, 'longest': 7172, 'macarthur': 7173, 'map': 7174, 'memorable,': 7175, 'miracle': 7176, 'most,': 7177, 'murray': 7178, 'neatly': 7179, 'neighbors': 7180, 'nephew': 7181, 'now.<br': 7182, 'objective': 7183, 'paced,': 7184, 'pal': 7185, 'panic': 7186, 'policeman': 7187, 'provocative': 7188, 'pursue': 7189, 'quantum': 7190, 'rangers': 7191, 'read,': 7192, 'recently,': 7193, 'resources': 7194, 'rides': 7195, 'rifle': 7196, 'ronald': 7197, 'seeming': 7198, 'selected': 7199, 'sequence.': 7200, 'shouting': 7201, 'soylent': 7202, 'stalking': 7203, 'such.': 7204, 'supply': 7205, 'thing.<br': 7206, 'tip': 7207, 'tormented': 7208, 'trees': 7209, 'trials': 7210, 'ugly,': 7211, 'unit': 7212, 'vegas': 7213, 'water.': 7214, 'zombies,': 7215, '/>rating:': 7216, '/>since': 7217, 'abrupt': 7218, 'aided': 7219, 'aiming': 7220, 'air,': 7221, 'already.': 7222, 'arab': 7223, 'assassin': 7224, 'average,': 7225, 'avoiding': 7226, 'begging': 7227, 'being,': 7228, 'bergman': 7229, 'blood"': 7230, 'break.': 7231, 'buff': 7232, 'casting,': 7233, 'cities': 7234, 'citizens': 7235, 'collective': 7236, 'comedy.<br': 7237, 'commercials': 7238, 'commits': 7239, 'concept,': 7240, 'conclude': 7241, 'contest': 7242, 'conveyed': 7243, 'couple,': 7244, 'cracking': 7245, 'credit,': 7246, 'crossing': 7247, 'defies': 7248, 'directions': 7249, 'disappoint': 7250, 'disappointed,': 7251, 'distract': 7252, 'drake': 7253, 'dream.': 7254, 'dust': 7255, 'emerge': 7256, 'estranged': 7257, 'etc,': 7258, 'exquisite': 7259, 'floor.': 7260, 'glaring': 7261, 'guitar': 7262, 'happy.': 7263, 'heist': 7264, 'helpless': 7265, 'here:': 7266, 'high,': 7267, 'humanity.': 7268, 'injured': 7269, 'island.': 7270, 'jones,': 7271, 'kane': 7272, 'knocks': 7273, 'ladder': 7274, 'locals': 7275, 'macy': 7276, 'masterfully': 7277, 'me)': 7278, 'mini-series': 7279, 'minority': 7280, 'miserably.': 7281, 'mitchell': 7282, 'monk': 7283, 'non-existent': 7284, 'on!': 7285, 'out!': 7286, 'packs': 7287, 'pages': 7288, 'palace': 7289, 'performance.<br': 7290, 'phrase': 7291, 'popping': 7292, 'populated': 7293, 'prey': 7294, 'randolph': 7295, 'records': 7296, 'relationship,': 7297, 'reliable': 7298, 'remakes': 7299, 'reminder': 7300, 'respectable': 7301, 'reward': 7302, 'robbery': 7303, 'robbins': 7304, 'sassy': 7305, 'setting.': 7306, 'so.<br': 7307, 'something.<br': 7308, 'sooner': 7309, 'sought': 7310, 'stack': 7311, "story's": 7312, 'stranded': 7313, 'swim': 7314, 'taped': 7315, 'tax': 7316, 'tendency': 7317, "tony's": 7318, 'toronto': 7319, 'ultra': 7320, 'unfair': 7321, 'up!': 7322, 'vein': 7323, 'walt': 7324, 'when,': 7325, 'willis': 7326, 'yes.': 7327, "'cause": 7328, '(because': 7329, '(probably': 7330, '/>his': 7331, '/>please': 7332, '13th': 7333, '2001': 7334, '50s': 7335, 'absurdity': 7336, 'accuracy': 7337, 'achieves': 7338, 'altman': 7339, 'approaches': 7340, 'approaching': 7341, "audience's": 7342, 'backs': 7343, 'baldwin': 7344, 'banal': 7345, 'bed,': 7346, 'behaviour': 7347, 'breed': 7348, 'bruno': 7349, 'carell': 7350, 'cars,': 7351, 'choppy': 7352, 'circus': 7353, 'civilization': 7354, 'clichés,': 7355, 'co-stars': 7356, 'comedies.': 7357, 'comments.': 7358, 'consist': 7359, 'copied': 7360, 'covering': 7361, 'deciding': 7362, 'demonstrated': 7363, 'deserves.': 7364, 'devastating': 7365, 'disturbing,': 7366, 'eleven': 7367, 'embrace': 7368, 'enhance': 7369, 'errol': 7370, 'establishing': 7371, 'executed.': 7372, 'fifth': 7373, 'filmed.': 7374, 'fragile': 7375, 'funny!': 7376, 'gina': 7377, 'going,': 7378, 'grateful': 7379, 'guaranteed': 7380, 'h': 7381, 'hair.': 7382, 'has,': 7383, 'healthy': 7384, 'hearted': 7385, 'hokey': 7386, 'insults': 7387, 'intelligence.': 7388, 'karate': 7389, "kelly's": 7390, 'l.a.': 7391, 'left.': 7392, 'lends': 7393, 'less,': 7394, 'lindsay': 7395, 'live.': 7396, 'lock': 7397, 'maid': 7398, 'mccoy': 7399, 'mutant': 7400, 'n': 7401, 'new.': 7402, 'offer.': 7403, 'parties': 7404, 'patricia': 7405, 'peters': 7406, 'planet,': 7407, 'proceedings': 7408, 'promoted': 7409, 'pushes': 7410, 'rabbit': 7411, 'radical': 7412, 'raj': 7413, 'relentless': 7414, 'reports': 7415, 'resulted': 7416, 'results.': 7417, 'rooney': 7418, 'sabrina': 7419, 'screw': 7420, 'secondly,': 7421, 'shaking': 7422, 'simply,': 7423, 'sirk': 7424, 'skilled': 7425, 'startling': 7426, 'states.': 7427, 'stewart,': 7428, 'strangers': 7429, 'street.': 7430, 'studies': 7431, 'teachers': 7432, 'to.<br': 7433, 'tomatoes': 7434, 'turn,': 7435, 'twins': 7436, 'type,': 7437, 'uma': 7438, 'updated': 7439, 'uplifting': 7440, 'vance': 7441, 'vengeance': 7442, 'victorian': 7443, 'warming': 7444, 'wider': 7445, '"who': 7446, '(particularly': 7447, '/>bottom': 7448, '/>good': 7449, 'acquired': 7450, "actors'": 7451, 'advertised': 7452, 'attacking': 7453, 'audiences,': 7454, 'avoid.': 7455, 'bacall': 7456, 'begs': 7457, 'bizarre,': 7458, 'boom': 7459, 'bored.': 7460, 'brendan': 7461, 'button': 7462, 'carla': 7463, 'cecil': 7464, 'celebrated': 7465, 'claustrophobic': 7466, 'clear.': 7467, 'climax,': 7468, 'climb': 7469, 'colin': 7470, 'comedians': 7471, 'complex,': 7472, 'confusing.': 7473, 'connections': 7474, 'convicted': 7475, 'conviction': 7476, 'corny,': 7477, 'crazy.': 7478, 'define': 7479, 'descent': 7480, 'destiny': 7481, 'details.': 7482, 'doctors': 7483, "dvd's": 7484, 'dylan': 7485, 'engrossing': 7486, 'enhanced': 7487, 'fast.': 7488, 'fiancé': 7489, 'fingers': 7490, 'flimsy': 7491, 'fuller': 7492, 'good"': 7493, 'helpful': 7494, "hero's": 7495, 'high.': 7496, 'honesty': 7497, 'however.': 7498, 'impressive,': 7499, 'incomprehensible': 7500, 'insipid': 7501, 'interact': 7502, 'interests': 7503, 'intricate': 7504, 'invite': 7505, 'japan,': 7506, 'jess': 7507, 'jews': 7508, 'jules': 7509, 'lavish': 7510, 'lead.': 7511, 'leap': 7512, 'legacy': 7513, "life's": 7514, 'limit': 7515, 'lost,': 7516, 'maniac': 7517, 'marshall': 7518, 'marvel': 7519, 'misery': 7520, 'mobile': 7521, 'modest': 7522, 'musicians': 7523, 'naughty': 7524, 'noises': 7525, 'note:': 7526, 'omen': 7527, 'pants': 7528, 'parallels': 7529, 'peculiar': 7530, 'previews': 7531, 'rats': 7532, 'readily': 7533, 'relentlessly': 7534, 'remake,': 7535, 'remembers': 7536, 'repressed': 7537, 'romp': 7538, 'roth': 7539, "scott's": 7540, 'seasoned': 7541, 'setup': 7542, 'shallow,': 7543, 'shockingly': 7544, 'sixth': 7545, 'slapped': 7546, 'sleep.': 7547, 'slip': 7548, 'slowly,': 7549, 'soft-core': 7550, 'some,': 7551, 'someone,': 7552, 'sound.': 7553, 'stare': 7554, 'state,': 7555, 'subtle,': 7556, 'suddenly,': 7557, 'suspected': 7558, 'terrorists': 7559, 'unbelievable,': 7560, 'understand,': 7561, 'unlikeable': 7562, 'vibrant': 7563, 'wastes': 7564, 'weaker': 7565, 'well-made': 7566, 'white.': 7567, 'winchester': 7568, "writer's": 7569, 'writers,': 7570, 'yard': 7571, '"get': 7572, '"that': 7573, "'i": 7574, '/>***': 7575, '/>great': 7576, '/>oh': 7577, "1930's": 7578, '2004': 7579, '3)': 7580, '90%': 7581, 'abruptly': 7582, 'acceptance': 7583, 'accepting': 7584, 'accurately': 7585, 'agency': 7586, 'alright,': 7587, 'analysis': 7588, 'antonio': 7589, 'approached': 7590, 'arriving': 7591, 'assembled': 7592, 'attending': 7593, 'banter': 7594, 'bike': 7595, "bug's": 7596, 'bull': 7597, 'campaign': 7598, "che's": 7599, 'cinema.<br': 7600, 'clash': 7601, 'confusing,': 7602, 'conventions': 7603, 'corpses': 7604, 'crashing': 7605, 'crippled': 7606, 'dad,': 7607, 'damaged': 7608, 'dark.': 7609, 'dashing': 7610, 'debate': 7611, 'defeated': 7612, 'diverse': 7613, 'en': 7614, 'equipment': 7615, 'ever!': 7616, 'fantasies': 7617, 'festival,': 7618, 'fog': 7619, 'fun!': 7620, 'games,': 7621, 'gems': 7622, 'grabbed': 7623, 'guests': 7624, 'hack': 7625, 'happy,': 7626, 'heartbreaking': 7627, 'hit.': 7628, 'hope,': 7629, 'huh?': 7630, 'immense': 7631, 'immortal': 7632, 'important,': 7633, 'inconsistent': 7634, 'indicate': 7635, 'insightful': 7636, 'instinct': 7637, 'integrity': 7638, 'ironically': 7639, "jane's": 7640, "keaton's": 7641, 'kitty': 7642, 'know.<br': 7643, 'leads.': 7644, 'loretta': 7645, 'love.<br': 7646, 'low-key': 7647, 'magic,': 7648, 'males': 7649, 'marc': 7650, 'mark.': 7651, 'masks': 7652, 'medieval': 7653, 'monkeys': 7654, 'musician': 7655, 'mysteriously': 7656, 'nails': 7657, 'ominous': 7658, 'operation': 7659, 'outstanding.': 7660, 'overacting': 7661, 'overlong': 7662, 'palance': 7663, 'pale': 7664, 'paranoia': 7665, 'parking': 7666, 'party.': 7667, 'passengers': 7668, 'peaceful': 7669, 'perfection.': 7670, 'personality.': 7671, 'pitiful': 7672, 'pounds': 7673, 'producer,': 7674, 'published': 7675, 'punches': 7676, 'quentin': 7677, 'raines': 7678, 'reviewing': 7679, 'scifi': 7680, 'scrooge': 7681, 'sells': 7682, 'settled': 7683, 'sick.': 7684, 'sinking': 7685, 'sister.': 7686, 'skits': 7687, 'small,': 7688, 'squad': 7689, 'stating': 7690, 'suggestion': 7691, 'survivor': 7692, 'tail': 7693, 'tara': 7694, 'toby': 7695, 'topics': 7696, 'underwater': 7697, 'unreal': 7698, 'watson': 7699, 'weird.': 7700, 'well-written': 7701, 'western,': 7702, "where's": 7703, 'wiped': 7704, 'wisely': 7705, '"let\'s': 7706, '(we': 7707, '/>here': 7708, "1970's": 7709, '2/10': 7710, '3,': 7711, '9/11': 7712, 'adore': 7713, 'anil': 7714, 'anywhere.': 7715, 'arranged': 7716, 'aussie': 7717, 'baby.': 7718, 'bachelor': 7719, 'beg': 7720, 'best.<br': 7721, 'boston': 7722, 'bounty': 7723, 'c': 7724, 'cat,': 7725, 'cave': 7726, 'cheaply': 7727, 'chicago': 7728, 'chills': 7729, 'chronicles': 7730, 'circumstances.': 7731, 'cliche': 7732, 'colors,': 7733, 'confident': 7734, 'content.': 7735, 'crew,': 7736, 'cries': 7737, 'cruelty': 7738, 'cuban': 7739, 'cute.': 7740, 'dancing,': 7741, 'darth': 7742, 'deliciously': 7743, 'delightfully': 7744, 'depth,': 7745, 'depth.': 7746, 'details,': 7747, 'did.<br': 7748, 'distribution': 7749, 'do.<br': 7750, "doesn't.": 7751, 'dominated': 7752, 'door.': 7753, 'dumbest': 7754, 'elsewhere.': 7755, 'embarrassingly': 7756, 'enthusiastic': 7757, 'evidently': 7758, 'experience.<br': 7759, 'eyre': 7760, 'favorites.': 7761, 'film...': 7762, 'fontaine': 7763, 'free.': 7764, 'garner': 7765, 'genie': 7766, 'gillian': 7767, 'glasses': 7768, 'gone,': 7769, 'guns,': 7770, 'harm': 7771, 'havoc': 7772, 'heartwarming': 7773, 'heck,': 7774, 'her?': 7775, 'hopeless': 7776, 'hot,': 7777, 'husbands': 7778, 'insist': 7779, 'jared': 7780, 'kidman': 7781, 'kidnapping': 7782, "killer's": 7783, 'kolchak': 7784, 'lately': 7785, 'lauren': 7786, 'london.': 7787, 'longing': 7788, 'luis': 7789, 'mars': 7790, 'mercy': 7791, 'messing': 7792, 'messy': 7793, 'miserably': 7794, 'musical.': 7795, 'natives': 7796, 'nolan': 7797, 'obsessive': 7798, 'painful.': 7799, 'passable': 7800, 'perception': 7801, 'pirate': 7802, 'pointing': 7803, 'portrayals': 7804, 'posey': 7805, 'posing': 7806, 'present,': 7807, 'public.': 7808, 'punishment': 7809, 'pursued': 7810, 'question.': 7811, 'quickly,': 7812, 'quiet,': 7813, 'ramones': 7814, 'rapist': 7815, 'rear': 7816, 'recommendation': 7817, 'regards': 7818, 'reign': 7819, 'relax': 7820, 'remembering': 7821, 'resembling': 7822, 'roots': 7823, 'sensible': 7824, 'separated': 7825, 'servant': 7826, 'set-up': 7827, 'shades': 7828, 'sixties': 7829, 'spit': 7830, "stewart's": 7831, 'story"': 7832, 'suggesting': 7833, 'thankfully,': 7834, 'travesty': 7835, 'twist,': 7836, 'unique,': 7837, 'unoriginal': 7838, 'unsure': 7839, 'unusually': 7840, 'viewings': 7841, 'vince': 7842, 'virtual': 7843, 'voiced': 7844, 'warriors': 7845, 'wasted.': 7846, 'worse.<br': 7847, 'wrong!': 7848, '"house': 7849, '"movie"': 7850, '"they': 7851, '(more': 7852, ').': 7853, '/>only': 7854, '10/10.': 7855, 'affairs': 7856, 'africa,': 7857, 'album': 7858, 'altered': 7859, 'amrita': 7860, 'avid': 7861, 'background,': 7862, 'bacon': 7863, 'bar,': 7864, 'bogus': 7865, "branagh's": 7866, 'cal': 7867, 'choice,': 7868, 'christine': 7869, 'clan': 7870, 'comparison.': 7871, 'concerned.': 7872, 'conveniently': 7873, 'couch': 7874, 'crap.<br': 7875, 'crawford': 7876, 'credit.': 7877, 'dates': 7878, 'dazzling': 7879, 'delighted': 7880, 'depictions': 7881, 'depths': 7882, 'detail.': 7883, 'disappears': 7884, 'distracted': 7885, 'dumped': 7886, 'edgy': 7887, 'elevator': 7888, 'emotion,': 7889, 'england.': 7890, 'error': 7891, 'exciting.': 7892, 'excuses': 7893, 'exploding': 7894, 'explosions': 7895, 'fast-paced': 7896, 'fest': 7897, 'foxx': 7898, 'freaking': 7899, 'friendship,': 7900, 'genius,': 7901, 'georges': 7902, 'glimpses': 7903, 'gone.': 7904, 'greatness': 7905, 'hammy': 7906, 'heavy-handed': 7907, 'hinted': 7908, 'horny': 7909, 'hospital.': 7910, 'housewife': 7911, 'hungry': 7912, 'ignores': 7913, 'ii.': 7914, 'important.': 7915, 'inclusion': 7916, 'indiana': 7917, 'inexplicable': 7918, 'introducing': 7919, 'ira': 7920, 'it),': 7921, 'judd': 7922, 'judged': 7923, 'king.': 7924, 'kumar': 7925, 'lance': 7926, 'leaders': 7927, 'leon': 7928, 'lucille': 7929, 'macabre': 7930, 'maintains': 7931, 'make.': 7932, 'masterpieces': 7933, 'me?': 7934, 'muppets': 7935, 'myth': 7936, 'narrow': 7937, 'nina': 7938, 'novak': 7939, 'nut': 7940, 'nuts': 7941, 'over.<br': 7942, 'overblown': 7943, 'pit': 7944, 'poem': 7945, 'pointless,': 7946, 'possess': 7947, 'quarter': 7948, 'reader': 7949, 'realities': 7950, 'relating': 7951, 'releasing': 7952, 'rukh': 7953, 'run.': 7954, 'salvation': 7955, 'samantha': 7956, 'schools': 7957, 'script.<br': 7958, 'severed': 7959, 'shorter': 7960, 'sniper': 7961, 'soderbergh': 7962, 'sophie': 7963, 'standout': 7964, 'stunning.': 7965, 'sub-par': 7966, 'sucked.': 7967, 'sugar': 7968, 'talk,': 7969, 'technicolor': 7970, 'that)': 7971, 'theaters.': 7972, 'thought-provoking': 7973, 'tiresome': 7974, 'toni': 7975, 'tourist': 7976, 'translate': 7977, 'truman': 7978, 'unfold': 7979, 'upcoming': 7980, 'vanessa': 7981, 'w.': 7982, 'west.': 7983, 'whatsoever,': 7984, 'woo': 7985, 'worthwhile.': 7986, '!!': 7987, '(only': 7988, '/>8/10': 7989, '/>much': 7990, '/>see': 7991, '90s': 7992, 'acknowledge': 7993, 'admitted': 7994, 'after.': 7995, 'ah,': 7996, 'all:': 7997, 'amidst': 7998, 'anton': 7999, 'appeal.': 8000, 'apply': 8001, 'artsy': 8002, 'assure': 8003, 'asylum': 8004, 'attended': 8005, 'babies': 8006, 'blamed': 8007, 'boris': 8008, 'brainless': 8009, 'bronson': 8010, 'caricatures': 8011, 'cartoonish': 8012, 'casper': 8013, 'cbs': 8014, 'champion': 8015, 'charms': 8016, 'check.': 8017, 'cheesy.': 8018, 'chicken': 8019, 'claude': 8020, 'cleaning': 8021, 'clock': 8022, 'compelling,': 8023, 'coup': 8024, 'couple.': 8025, 'creepy.': 8026, 'damned': 8027, 'dandy': 8028, 'daniels': 8029, 'dated,': 8030, 'dirt': 8031, 'disguise': 8032, 'divorced': 8033, "doctor's": 8034, 'doom': 8035, 'dumb,': 8036, 'economic': 8037, 'erika': 8038, 'escaping': 8039, 'excellently': 8040, 'exclusively': 8041, 'explosive': 8042, 'feature,': 8043, 'feeble': 8044, 'fields': 8045, 'find.': 8046, 'firstly,': 8047, 'forgetting': 8048, 'fresh,': 8049, 'generate': 8050, 'goldie': 8051, 'grainy': 8052, 'grayson': 8053, 'group.': 8054, 'guards': 8055, 'gwyneth': 8056, 'heels': 8057, 'heights': 8058, 'humans,': 8059, 'immature': 8060, 'info': 8061, 'informed': 8062, 'inhabitants': 8063, 'intensely': 8064, 'j': 8065, 'juliette': 8066, 'kansas': 8067, 'leather': 8068, 'live-action': 8069, 'looking,': 8070, 'lurking': 8071, 'malone': 8072, 'masses': 8073, 'mathieu': 8074, 'meandering': 8075, 'merits': 8076, 'miniseries': 8077, 'mrs': 8078, 'ms': 8079, 'mystical': 8080, 'neurotic': 8081, 'old-fashioned': 8082, 'one)': 8083, 'orleans': 8084, 'package': 8085, 'pathetic,': 8086, "person's": 8087, 'poetry': 8088, 'popped': 8089, 'possesses': 8090, 'powerful,': 8091, 'preposterous': 8092, 'produces': 8093, 'psychology': 8094, 'quinn': 8095, 'racing': 8096, 'rape,': 8097, 'record,': 8098, 'reel': 8099, 'reflected': 8100, 'rehash': 8101, 'reid': 8102, 'remember.': 8103, 'ross': 8104, 'rounded': 8105, 'russia': 8106, 'scotland': 8107, 'senior': 8108, 'seymour': 8109, 'sf': 8110, 'slide': 8111, 'spacey': 8112, 'special,': 8113, 'spice': 8114, 'spies': 8115, 'steam': 8116, 'stinker': 8117, 'story?': 8118, 'tonight': 8119, 'trouble.': 8120, 'vile': 8121, 'vintage': 8122, 'wall.': 8123, 'warns': 8124, 'yokai': 8125, '"new': 8126, '"oh,': 8127, '(unless': 8128, '/>4.': 8129, '/>7/10': 8130, '/>because': 8131, 'actors.<br': 8132, 'admired': 8133, 'adrian': 8134, 'agent,': 8135, 'ally': 8136, 'ambition': 8137, 'ample': 8138, 'angles,': 8139, 'anxious': 8140, 'anyway.<br': 8141, 'applies': 8142, 'array': 8143, 'assured': 8144, 'babe': 8145, 'backed': 8146, 'barbra': 8147, 'basinger': 8148, 'biko': 8149, 'bother.': 8150, 'bow': 8151, 'boxer': 8152, 'bud': 8153, 'butcher': 8154, 'chavez': 8155, 'choice.': 8156, 'classy': 8157, 'co-star': 8158, 'color,': 8159, 'concepts': 8160, 'concerned,': 8161, 'confused,': 8162, 'contempt': 8163, 'controlling': 8164, 'critique': 8165, 'deemed': 8166, 'deep,': 8167, 'delicious': 8168, 'derivative': 8169, 'detectives': 8170, 'died,': 8171, 'dismiss': 8172, 'displaying': 8173, 'divine': 8174, 'du': 8175, 'dvds': 8176, 'edith': 8177, 'eli': 8178, 'endlessly': 8179, 'ends,': 8180, 'england,': 8181, 'escape.': 8182, 'evelyn': 8183, 'ever.<br': 8184, 'evolution': 8185, 'farmer': 8186, 'farrell': 8187, 'flaws.': 8188, 'fleshed': 8189, 'foolish': 8190, 'gal': 8191, 'grounds': 8192, 'group,': 8193, 'gunga': 8194, 'harrison': 8195, 'haunt': 8196, 'history.<br': 8197, 'hopkins': 8198, 'human.': 8199, 'hyde': 8200, 'images,': 8201, 'institution': 8202, 'into.': 8203, 'invested': 8204, 'iranian': 8205, 'israeli': 8206, 'item': 8207, 'jaded': 8208, 'jenna': 8209, 'kidnap': 8210, 'knight': 8211, 'lady.': 8212, 'laughing.': 8213, 'launch': 8214, 'legitimate': 8215, 'living.': 8216, 'marked': 8217, 'midst': 8218, 'millionaire': 8219, 'novelty': 8220, 'paints': 8221, 'passage': 8222, 'pattern': 8223, 'photographs': 8224, 'pleasing': 8225, 'polish': 8226, 'publicity': 8227, 'purpose,': 8228, 'ranch': 8229, 'realises': 8230, 'reeves': 8231, 'rejects': 8232, 'relying': 8233, 'renaissance': 8234, 'rescued': 8235, 'revolving': 8236, 'rips': 8237, 'ritchie': 8238, 'ruining': 8239, 'sang': 8240, 'scenery.': 8241, 'scored': 8242, 'sense.<br': 8243, 'senses': 8244, 'shifts': 8245, 'singers': 8246, 'skull': 8247, 'slow.': 8248, 'smiles': 8249, 'snakes': 8250, 'sometime': 8251, 'stargate': 8252, 'steer': 8253, 'story:': 8254, 'substance.': 8255, 'subway': 8256, 'teams': 8257, 'thereby': 8258, 'tiger': 8259, 'told.': 8260, 'tower': 8261, 'trace': 8262, 'trailer,': 8263, 'unexplained': 8264, 'unlikable': 8265, 'v.': 8266, 'vividly': 8267, 'votes': 8268, 'weather': 8269, 'whining': 8270, 'witnessing': 8271, '"love': 8272, '"not': 8273, '"one': 8274, '(about': 8275, '(another': 8276, '*1/2': 8277, '/>10/10': 8278, 'a)': 8279, 'admittedly,': 8280, 'always.': 8281, 'applied': 8282, 'ariel': 8283, 'art-house': 8284, 'assassination': 8285, 'atlantis': 8286, 'authorities': 8287, 'average.': 8288, 'awesome,': 8289, 'b)': 8290, 'beatles': 8291, 'bed.': 8292, 'butch': 8293, 'cake': 8294, 'cannon': 8295, 'canyon': 8296, 'characteristics': 8297, 'clara': 8298, 'clive': 8299, 'commanding': 8300, 'conditions': 8301, 'content,': 8302, 'corey': 8303, 'crew.': 8304, 'criticized': 8305, 'disabled': 8306, 'eagerly': 8307, 'ear': 8308, 'earnest': 8309, 'ebert': 8310, 'effective,': 8311, 'effective.': 8312, 'famed': 8313, 'faults': 8314, 'finishing': 8315, 'forgettable.': 8316, 'foundation': 8317, 'frames': 8318, 'freaky': 8319, 'frontier': 8320, 'fundamental': 8321, 'gere': 8322, 'goes.': 8323, 'good-looking': 8324, 'great.<br': 8325, 'ground,': 8326, 'gun.': 8327, 'hawke': 8328, 'here?': 8329, 'holes,': 8330, 'hospital,': 8331, 'humour.': 8332, 'hurt,': 8333, 'hybrid': 8334, 'ignoring': 8335, 'inmates': 8336, 'insights': 8337, 'inspirational': 8338, 'interested.': 8339, 'irene': 8340, 'jacques': 8341, 'junk.': 8342, 'label': 8343, 'leigh': 8344, 'les': 8345, 'liners': 8346, 'lovely,': 8347, 'low.': 8348, 'm.': 8349, 'marriage,': 8350, 'melvyn': 8351, 'memory.': 8352, 'mentality': 8353, 'milo': 8354, 'mind.<br': 8355, 'missile': 8356, 'monty': 8357, 'motive': 8358, 'mouth.': 8359, "must've": 8360, 'natalie': 8361, 'noteworthy': 8362, 'nuances': 8363, 'olivia': 8364, 'opposite.': 8365, 'orange': 8366, 'outing': 8367, 'pad': 8368, 'partners': 8369, 'penn': 8370, 'penny': 8371, 'pickford': 8372, 'places.': 8373, 'playboy': 8374, 'police.': 8375, 'polly': 8376, 'pun': 8377, 'qualify': 8378, 'rebellious': 8379, 'repeats': 8380, 'reviewed': 8381, 'roughly': 8382, 'say?': 8383, 'scratch': 8384, 'screwball': 8385, 'seductive': 8386, 'seems,': 8387, 'seen!': 8388, 'sidewalk': 8389, 'somewhere.': 8390, 'stabbed': 8391, 'static': 8392, 'street"': 8393, 'strings': 8394, 'sydney': 8395, 'them)': 8396, 'thing:': 8397, 'though.<br': 8398, 'tops': 8399, 'triangle': 8400, 'twice,': 8401, 'uncanny': 8402, 'underworld': 8403, 'upside': 8404, 'vader': 8405, 'varied': 8406, 'verbal': 8407, 'victims,': 8408, 'way)': 8409, 'week,': 8410, 'zombi': 8411, '"black': 8412, '"good"': 8413, '"hey,': 8414, '(e.g.': 8415, '(her': 8416, '/>where': 8417, '19': 8418, 'accompanying': 8419, 'admits': 8420, 'adults,': 8421, 'alcohol': 8422, 'annoy': 8423, 'appearance,': 8424, 'arrest': 8425, 'attractive,': 8426, 'before.<br': 8427, 'belly': 8428, 'between.': 8429, 'biased': 8430, 'bros.': 8431, 'casino': 8432, 'casting.': 8433, 'christianity': 8434, 'christina': 8435, 'christmas.': 8436, 'chuckle': 8437, 'close,': 8438, 'completed': 8439, 'confined': 8440, 'considers': 8441, 'copy.': 8442, 'courtroom': 8443, 'crisp': 8444, 'criticize': 8445, 'crown': 8446, 'days.<br': 8447, 'death.<br': 8448, 'din': 8449, 'doo': 8450, 'dread': 8451, 'dreamy': 8452, 'elite': 8453, 'encountered': 8454, 'evokes': 8455, 'exit': 8456, 'expense': 8457, 'experiencing': 8458, 'extensive': 8459, 'fight,': 8460, 'film),': 8461, 'film-making.': 8462, 'filthy': 8463, 'finishes': 8464, 'flashbacks,': 8465, 'flick.<br': 8466, 'forgets': 8467, 'frozen': 8468, 'gate': 8469, 'gathering': 8470, 'gigantic': 8471, 'guinea': 8472, 'gun,': 8473, 'gypo': 8474, 'habit': 8475, 'hand-held': 8476, 'harriet': 8477, "hitchcock's": 8478, 'hughes': 8479, 'impact.': 8480, 'implied': 8481, 'inaccurate': 8482, 'independence': 8483, 'israel': 8484, 'jill': 8485, 'jose': 8486, 'justice,': 8487, 'kathy': 8488, 'laurie': 8489, 'lethal': 8490, 'liam': 8491, 'lighter': 8492, 'limitations': 8493, 'linked': 8494, 'literal': 8495, 'love"': 8496, 'magic.': 8497, 'marilyn': 8498, 'match,': 8499, "men's": 8500, 'mirrors': 8501, 'murky': 8502, 'needing': 8503, "ol'": 8504, 'oscar.': 8505, 'outline': 8506, 'pain.': 8507, 'perspective,': 8508, 'phenomenon': 8509, 'poses': 8510, 'present.': 8511, 'produced.': 8512, 'quintessential': 8513, 'rate,': 8514, 'rational': 8515, 'reiser': 8516, 'reunite': 8517, 'ricky': 8518, 'rightly': 8519, 'riot': 8520, 'rome': 8521, 'rope': 8522, 'salman': 8523, 'salt': 8524, 'saw.': 8525, 'screenwriters': 8526, 'seduce': 8527, 'semblance': 8528, 'shred': 8529, 'speeches': 8530, 'spirit.': 8531, 'stallone': 8532, 'stand-up': 8533, 'statue': 8534, 'stereotypes,': 8535, 'stores': 8536, 'strict': 8537, 'stumble': 8538, 'substantial': 8539, 'summed': 8540, 'tasteless': 8541, 'themes,': 8542, 'there?': 8543, 'tire': 8544, 'titular': 8545, 'trivia': 8546, 'try,': 8547, 'unwatchable': 8548, 'unwatchable.': 8549, 'verge': 8550, 'victims.': 8551, 'volume': 8552, 'well...': 8553, 'young.': 8554, 'zizek': 8555, '"old': 8556, '(why': 8557, '/>every': 8558, "/>let's": 8559, "1960's": 8560, '1968': 8561, '22': 8562, '8.': 8563, 'about?': 8564, 'accessible': 8565, 'accident,': 8566, 'activity': 8567, 'affair.': 8568, 'american,': 8569, 'anticipation': 8570, 'antonioni': 8571, 'ants': 8572, 'anyways,': 8573, 'apart,': 8574, 'attenborough': 8575, 'awaiting': 8576, 'badly.': 8577, 'benefits': 8578, 'bowl': 8579, 'boys.': 8580, 'brown,': 8581, 'building,': 8582, 'buzz': 8583, "carpenter's": 8584, 'characteristic': 8585, "charlie's": 8586, 'cindy': 8587, 'cinemas': 8588, 'commitment': 8589, 'committing': 8590, 'community.': 8591, 'company,': 8592, 'day-lewis': 8593, 'deanna': 8594, 'detective,': 8595, 'drinks': 8596, 'drowned': 8597, 'earliest': 8598, 'earth"': 8599, 'emotions,': 8600, 'entertaining.<br': 8601, 'excess': 8602, 'executives': 8603, 'explained.': 8604, 'feelings.': 8605, 'feminine': 8606, 'fido': 8607, 'filler': 8608, 'flavor': 8609, 'fortunate': 8610, 'france,': 8611, 'fried': 8612, 'fury': 8613, 'gable': 8614, 'gags,': 8615, 'gimmick': 8616, 'globe': 8617, 'hilarity': 8618, 'hit,': 8619, 'illness': 8620, 'inadvertently': 8621, 'incredible.': 8622, 'infinitely': 8623, 'insanity': 8624, 'ironically,': 8625, 'jaws': 8626, 'jury': 8627, 'justified': 8628, 'kill,': 8629, 'life?': 8630, 'lightning': 8631, 'living,': 8632, 'looks,': 8633, 'loyalty': 8634, 'lukas': 8635, "lynch's": 8636, 'mabel': 8637, 'mankind': 8638, 'members,': 8639, 'moe': 8640, 'mol': 8641, 'monster,': 8642, 'mood.': 8643, 'mothers': 8644, 'move.': 8645, 'mute': 8646, 'narrated': 8647, 'neglected': 8648, 'numbers.': 8649, 'obvious.': 8650, 'offbeat': 8651, 'otto': 8652, 'pacific': 8653, 'passion,': 8654, 'paula': 8655, 'pound': 8656, 'principle': 8657, 'produced,': 8658, 'profession': 8659, 'psychopath': 8660, 'realization': 8661, 'remake.': 8662, 'reminding': 8663, 'revolt': 8664, 'richardson': 8665, 'rock.': 8666, 'romantic,': 8667, 'roof': 8668, 'route': 8669, 'safely': 8670, 'saint': 8671, 'sammo': 8672, 'sarcastic': 8673, 'screens': 8674, 'second.': 8675, 'sergeant': 8676, 'servants': 8677, 'sherlock': 8678, 'shootout': 8679, 'sick,': 8680, 'skit': 8681, 'soldiers,': 8682, 'stalked': 8683, 'stylized': 8684, 'subject.': 8685, 'sublime': 8686, 'sucker': 8687, 'supreme': 8688, 'tears.': 8689, 'terrific.': 8690, 'third,': 8691, 'three,': 8692, 'through.<br': 8693, 'tool': 8694, 'treat.': 8695, 'unrealistic.': 8696, 'users': 8697, 'vanilla': 8698, 'vanity': 8699, 'vehicles': 8700, 'villainous': 8701, 'wonder,': 8702, 'writer.': 8703, '"little': 8704, '"mr.': 8705, '"where': 8706, '"you\'re': 8707, '(despite': 8708, '....': 8709, '/>unlike': 8710, '1972': 8711, '1980': 8712, '28': 8713, 'ace': 8714, 'adapt': 8715, 'alexandre': 8716, 'alike.': 8717, 'anyway?': 8718, 'artwork': 8719, 'avenge': 8720, 'avoids': 8721, 'awakening': 8722, 'bachchan': 8723, 'bar.': 8724, 'battling': 8725, 'behavior.': 8726, 'biting': 8727, 'bored,': 8728, 'box,': 8729, 'boys,': 8730, 'cable.': 8731, 'carmen': 8732, 'cassavetes': 8733, 'cents': 8734, 'channel,': 8735, 'cher': 8736, 'comprehend': 8737, 'computers': 8738, 'concept.': 8739, 'conscience': 8740, 'control,': 8741, 'courtesy': 8742, 'daytime': 8743, 'deliberate': 8744, 'denis': 8745, 'despair': 8746, 'difference.': 8747, 'dukes': 8748, 'dustin': 8749, 'easy.': 8750, 'egyptian': 8751, 'enduring': 8752, 'english.': 8753, 'epitome': 8754, 'evoke': 8755, 'example:': 8756, 'expectation': 8757, 'exterior': 8758, 'favorite.': 8759, 'filth': 8760, 'for.<br': 8761, 'franklin': 8762, 'freaks': 8763, 'fritz': 8764, 'games.': 8765, 'gentleman': 8766, 'gloomy': 8767, 'ground.': 8768, 'herbert': 8769, 'hop': 8770, 'horrified': 8771, 'ideas.': 8772, 'identical': 8773, 'impending': 8774, 'improbable': 8775, 'incidents': 8776, 'inside.': 8777, 'intelligence,': 8778, 'intend': 8779, 'interesting.<br': 8780, 'interior': 8781, 'interrupted': 8782, 'jarring': 8783, 'jodie': 8784, 'kline': 8785, 'landmark': 8786, 'law,': 8787, 'laying': 8788, 'lean': 8789, 'legends': 8790, 'lifeless': 8791, 'loneliness': 8792, 'married,': 8793, 'melody': 8794, 'mesmerizing': 8795, 'minister': 8796, 'miranda': 8797, 'misleading': 8798, 'mitch': 8799, 'mitchum': 8800, 'mom,': 8801, 'mum': 8802, 'necessary.': 8803, 'nerve': 8804, 'newcomer': 8805, 'othello': 8806, 'out"': 8807, 'outrageously': 8808, 'participants': 8809, 'peck': 8810, 'pg': 8811, 'philo': 8812, 'player,': 8813, 'portrayed.': 8814, 'pre-code': 8815, 'presidential': 8816, 'pretends': 8817, 'pretty,': 8818, 'programs': 8819, 'questioning': 8820, 'readers': 8821, 'regularly': 8822, 'religion.': 8823, 'remainder': 8824, 'rest,': 8825, 'restrained': 8826, 'rhythm': 8827, 'salvage': 8828, 'samuel': 8829, 'schlock': 8830, 'shell': 8831, 'shift': 8832, 'similarity': 8833, 'site,': 8834, 'skeptical': 8835, 'smash': 8836, 'somewhere,': 8837, 'spaghetti': 8838, 'span': 8839, 'spencer': 8840, 'started.': 8841, 'sterling': 8842, 'students.': 8843, 'studied': 8844, 'stuffed': 8845, 'sub-plot': 8846, 'subtext': 8847, 'surround': 8848, 'swinging': 8849, 'targeted': 8850, 'technology,': 8851, 'thompson': 8852, 'top-notch': 8853, 'touching,': 8854, 'tremendously': 8855, 'trier': 8856, 'tuned': 8857, 'unanswered': 8858, 'unfamiliar': 8859, 'unnecessarily': 8860, 'wardrobe': 8861, 'wars,': 8862, 'washed': 8863, "welles'": 8864, 'west,': 8865, "who've": 8866, 'whole.': 8867, 'widowed': 8868, 'yeti': 8869, '"go': 8870, '/>final': 8871, "/>what's": 8872, '200': 8873, '2003': 8874, '4,': 8875, '8/10.': 8876, "80's,": 8877, 'actions.': 8878, 'alike': 8879, 'angie': 8880, 'appearance.': 8881, 'apt': 8882, 'arguing': 8883, 'arguments': 8884, 'assumes': 8885, 'audition': 8886, 'awful.<br': 8887, 'bearing': 8888, 'borders': 8889, 'borrow': 8890, 'bread': 8891, 'bug': 8892, 'bully': 8893, 'camcorder': 8894, 'camp.': 8895, 'cast.<br': 8896, 'castle,': 8897, 'charming.': 8898, 'clad': 8899, 'clear,': 8900, 'clueless': 8901, 'coat': 8902, 'colours': 8903, 'comparable': 8904, 'conan': 8905, 'convincing,': 8906, 'corman': 8907, 'could.': 8908, 'crushed': 8909, 'cut.': 8910, 'decent.': 8911, 'deepest': 8912, 'deer': 8913, 'demise': 8914, 'deputy': 8915, 'dismal': 8916, 'divided': 8917, "don't,": 8918, 'dramatically': 8919, 'dreck': 8920, 'e.': 8921, 'e.g.': 8922, 'emotions.': 8923, 'energetic': 8924, 'enigmatic': 8925, 'enjoy,': 8926, 'europe,': 8927, 'excruciating': 8928, 'explanation.': 8929, 'factors': 8930, 'fart': 8931, 'fighting,': 8932, 'finish,': 8933, 'flashing': 8934, 'fluid': 8935, 'follow-up': 8936, 'footage.': 8937, 'forgiven': 8938, 'free,': 8939, 'frontal': 8940, 'gates': 8941, 'genre.<br': 8942, 'germany,': 8943, 'ghostly': 8944, 'giants': 8945, 'girl"': 8946, 'guinness': 8947, 'harrowing': 8948, 'hateful': 8949, 'hello': 8950, 'here;': 8951, 'homicidal': 8952, 'images.': 8953, 'immigrant': 8954, 'incidentally,': 8955, 'inclined': 8956, 'joining': 8957, 'kent': 8958, "kubrick's": 8959, 'leave.': 8960, 'left,': 8961, 'lester': 8962, 'like:': 8963, 'low,': 8964, 'luck.': 8965, 'mannerisms': 8966, 'martian': 8967, 'maureen': 8968, 'mayhem': 8969, 'mistake,': 8970, 'niece': 8971, 'no!': 8972, 'noticeable': 8973, 'odd,': 8974, 'officer,': 8975, 'openly': 8976, 'order.': 8977, 'otherwise.': 8978, 'outfits': 8979, 'own.<br': 8980, 'pacing,': 8981, 'pains': 8982, 'palm': 8983, 'parsons': 8984, 'penned': 8985, 'pin': 8986, 'pole': 8987, 'pose': 8988, 'prison.': 8989, 'psychedelic': 8990, 'pumbaa': 8991, 'puppets': 8992, 'qualifies': 8993, 'religion,': 8994, 'revenge,': 8995, 'rich,': 8996, 'road.': 8997, 'roller': 8998, 'searched': 8999, 'serbian': 9000, 'sergio': 9001, 'serum': 9002, 'she,': 9003, 'shooting,': 9004, 'silliness': 9005, 'skills.': 9006, 'sleaze': 9007, 'someday': 9008, 'soup': 9009, 'spoiling': 9010, 'steele': 9011, 'stroke': 9012, 'stuff.<br': 9013, 'subsequently': 9014, 'sufficient': 9015, 'surgery': 9016, 'suspicion': 9017, 'symbol': 9018, 'tarantino': 9019, 'theatre,': 9020, 'thunderbirds': 9021, 'time"': 9022, 'toned': 9023, 'tongue-in-cheek': 9024, 'tough,': 9025, 'traits': 9026, 'tube': 9027, 'turkish': 9028, 'turmoil': 9029, 'unfunny,': 9030, 'uniform': 9031, 'veterans': 9032, 'voyage': 9033, 'waking': 9034, 'washington,': 9035, 'watching.<br': 9036, 'weekly': 9037, 'well-done': 9038, 'whiny': 9039, 'wilderness': 9040, 'williams,': 9041, 'window.': 9042, 'wooden,': 9043, 'you"': 9044, '"he': 9045, '"when': 9046, '/>1)': 9047, '/>3/10': 9048, '/>best': 9049, '/>p.s.': 9050, '1990': 9051, "30's": 9052, 'accounts': 9053, 'additionally,': 9054, 'affleck': 9055, 'alas': 9056, 'alot': 9057, 'angelina': 9058, 'anita': 9059, 'announced': 9060, 'apartment.': 9061, 'atrocious.': 9062, 'awhile': 9063, 'back.<br': 9064, 'backwards': 9065, "bakshi's": 9066, 'bashing': 9067, 'behind.': 9068, 'bend': 9069, 'blames': 9070, 'bondage': 9071, 'bones': 9072, 'box.': 9073, 'budding': 9074, 'bust': 9075, 'camping': 9076, 'capacity': 9077, 'cape': 9078, 'captivated': 9079, 'carey': 9080, 'celebrate': 9081, 'clerk': 9082, 'climbing': 9083, 'clooney': 9084, 'club.': 9085, 'coincidence': 9086, 'compensate': 9087, 'complained': 9088, 'conveying': 9089, 'cookie': 9090, 'coolest': 9091, 'cover,': 9092, 'cycle': 9093, 'davis,': 9094, 'debra': 9095, 'debut,': 9096, 'denise': 9097, 'department.': 9098, 'desert,': 9099, 'developed.': 9100, 'disregard': 9101, 'dragging': 9102, 'dream,': 9103, 'dump': 9104, 'duration': 9105, 'ealing': 9106, 'el': 9107, 'election': 9108, 'exploited': 9109, 'faces,': 9110, 'faded': 9111, 'faith,': 9112, 'fake.': 9113, 'fantasy.': 9114, 'few.': 9115, 'follow,': 9116, 'forever,': 9117, 'fox,': 9118, 'frances': 9119, 'friendship.': 9120, 'gamera': 9121, 'garland': 9122, 'gets.': 9123, 'gielgud': 9124, 'gilbert': 9125, 'gloria': 9126, 'grief': 9127, 'gritty,': 9128, 'grudge': 9129, 'hackman': 9130, 'hadley': 9131, 'hardened': 9132, 'herman': 9133, 'himself.<br': 9134, 'homes': 9135, 'hulk': 9136, 'i.': 9137, 'if,': 9138, 'incestuous': 9139, 'indifferent': 9140, 'inserted': 9141, 'isolation': 9142, "jack's": 9143, 'job.<br': 9144, 'knows,': 9145, 'kurosawa': 9146, 'labeled': 9147, 'land,': 9148, 'land.': 9149, 'later.<br': 9150, 'lip': 9151, 'list,': 9152, 'listened': 9153, 'longer.': 9154, 'magically': 9155, 'managing': 9156, 'maximum': 9157, 'meaning.': 9158, 'miyazaki': 9159, 'mortal': 9160, 'movies!': 9161, 'nations': 9162, 'netflix': 9163, 'night"': 9164, 'nominations': 9165, 'nudity.': 9166, 'optimistic': 9167, 'origins': 9168, 'outdated': 9169, 'pans': 9170, 'paradise': 9171, 'part.<br': 9172, 'pause': 9173, 'paxton': 9174, 'pc': 9175, 'peggy': 9176, 'penelope': 9177, 'perspective.': 9178, 'pfeiffer': 9179, 'phillips': 9180, 'pivotal': 9181, 'please.': 9182, 'plot?': 9183, 'plug': 9184, 'poker': 9185, 'politics,': 9186, 'powerful.': 9187, 'practical': 9188, 'proceed': 9189, 'quaid': 9190, 'r.': 9191, 'raging': 9192, 'ratso': 9193, 'reeve': 9194, 'relevance': 9195, 'relief.': 9196, 'rewarding': 9197, 'saloon': 9198, 'scott,': 9199, 'settings,': 9200, 'sgt.': 9201, 'shameless': 9202, 'shocks': 9203, 'shortcomings': 9204, 'should.': 9205, 'shoulder': 9206, 'sights': 9207, 'smell': 9208, 'sopranos': 9209, 'spain': 9210, 'sparks': 9211, 'sporting': 9212, 'stabbing': 9213, 'statements': 9214, 'station,': 9215, 'stella': 9216, 'stunning,': 9217, 'substitute': 9218, 'summary,': 9219, 'switching': 9220, 'takashi': 9221, 'talking,': 9222, 'tended': 9223, 'testing': 9224, 'thrust': 9225, 'transforms': 9226, 'troma': 9227, 'twice.': 9228, 'undead': 9229, 'unfolding': 9230, 'unsatisfying': 9231, 'up"': 9232, 'usual.': 9233, 'wash': 9234, 'weaknesses': 9235, 'wendigo': 9236, 'wherever': 9237, 'wilder': 9238, 'windows': 9239, 'woefully': 9240, 'worked.': 9241, 'world"': 9242, 'youth.': 9243, "'a": 9244, '(!)': 9245, '(?)': 9246, '/>aside': 9247, '/>both': 9248, '/>david': 9249, '/>meanwhile,': 9250, '1936': 9251, '1983': 9252, '1996': 9253, '3000': 9254, "80's.": 9255, 'accurate.': 9256, 'agenda': 9257, 'ajay': 9258, 'alert': 9259, 'ang': 9260, 'angry,': 9261, 'anticipated': 9262, 'army,': 9263, 'artistry': 9264, 'award.': 9265, 'begun': 9266, 'beowulf': 9267, 'bland,': 9268, 'bombs': 9269, 'boredom.': 9270, 'brazilian': 9271, 'breast': 9272, 'caricature': 9273, 'cena': 9274, 'centuries': 9275, 'cheering': 9276, 'chill': 9277, 'cigarette': 9278, 'clichés.': 9279, 'clothes,': 9280, 'cohesive': 9281, 'colored': 9282, 'comment.': 9283, 'communication': 9284, 'completely.': 9285, 'confines': 9286, 'confuse': 9287, 'convenient': 9288, 'cry.': 9289, 'd.': 9290, 'dancing.': 9291, "david's": 9292, 'decade.': 9293, 'defending': 9294, 'demille': 9295, 'despise': 9296, 'discussed': 9297, 'distinctive': 9298, 'diving': 9299, 'e': 9300, 'employee': 9301, 'encouraged': 9302, 'engaging,': 9303, 'escape,': 9304, 'europa': 9305, 'europeans': 9306, 'evening.': 9307, 'everywhere.': 9308, 'faces.': 9309, 'fascinating,': 9310, 'features.': 9311, 'feeling,': 9312, 'fiction.': 9313, 'figure,': 9314, 'filmed,': 9315, 'first-rate': 9316, 'flock': 9317, 'folks.': 9318, 'forget.': 9319, 'gap': 9320, 'gaps': 9321, 'grant,': 9322, 'growth': 9323, 'gus': 9324, 'ham': 9325, 'happen.<br': 9326, 'harlow': 9327, 'hers': 9328, 'him!': 9329, 'hines': 9330, 'hope.': 9331, 'hostile': 9332, 'hunted': 9333, 'hyped': 9334, 'informs': 9335, 'japan.': 9336, 'je': 9337, 'jewel': 9338, 'jude': 9339, 'july': 9340, 'kathleen': 9341, 'kazan': 9342, 'kidding': 9343, 'last.': 9344, 'lionel': 9345, 'logan': 9346, 'logic,': 9347, 'mean.': 9348, 'mediocre.': 9349, 'mock': 9350, 'money.<br': 9351, 'mormon': 9352, 'murders,': 9353, 'myrna': 9354, 'naschy': 9355, 'nbc': 9356, 'nearest': 9357, 'nemesis': 9358, 'ninety': 9359, 'noir,': 9360, 'note.': 9361, 'occupied': 9362, 'olsen': 9363, 'omar': 9364, 'one?': 9365, 'opera,': 9366, 'overbearing': 9367, 'phenomenal': 9368, 'pictures.': 9369, 'polar': 9370, 'possession': 9371, 'potter': 9372, 'powers.': 9373, 'predictably': 9374, 'preminger': 9375, 'presence,': 9376, 'presence.': 9377, 'put,': 9378, 'relationships.': 9379, 'rendering': 9380, 'reserved': 9381, 'resistance': 9382, 'ritual': 9383, 'river.': 9384, 'roles.<br': 9385, 'romeo': 9386, 'rosario': 9387, 'russ': 9388, 'sand': 9389, 'sanders': 9390, 'satire,': 9391, 'sebastian': 9392, 'shahid': 9393, 'shaped': 9394, 'siblings': 9395, 'sinks': 9396, 'skinny': 9397, 'slept': 9398, "smith's": 9399, 'snuff': 9400, 'sophia': 9401, 'speaking,': 9402, 'spirit,': 9403, 'stab': 9404, 'stinks': 9405, 'stream': 9406, 'sundance': 9407, 'survive.': 9408, 'survives': 9409, 'sustain': 9410, 'taylor,': 9411, 'tell.': 9412, 'ten.': 9413, 'thieves': 9414, 'thinking.': 9415, 'timberlake': 9416, 'tokyo': 9417, 'torture.': 9418, 'transport': 9419, 'trite,': 9420, 'uninteresting.': 9421, 'villains,': 9422, 'warrant': 9423, 'watchable,': 9424, 'worms': 9425, 'younger,': 9426, 'zodiac': 9427, '"jane': 9428, '"to': 9429, "'70s": 9430, '(albeit': 9431, '(george': 9432, '(william': 9433, '/>first,': 9434, '/>however': 9435, '/>richard': 9436, '/>who': 9437, "1980's": 9438, '1984': 9439, '30s': 9440, '5,': 9441, 'abandon': 9442, 'absorbing': 9443, 'absurd.': 9444, 'advised': 9445, 'aggressive': 9446, 'amid': 9447, 'anger,': 9448, 'angst': 9449, 'anthology': 9450, 'anymore,': 9451, 'apartment,': 9452, 'around.<br': 9453, 'artist,': 9454, 'back!': 9455, 'balanced': 9456, 'bars': 9457, 'battlestar': 9458, 'bogart': 9459, 'boyer': 9460, 'boyle': 9461, 'breakfast': 9462, 'breathing': 9463, 'cheech': 9464, 'chew': 9465, 'childhood.': 9466, 'chong': 9467, 'close-up': 9468, 'combining': 9469, 'confronts': 9470, 'contributes': 9471, 'controls': 9472, 'cops,': 9473, 'counter': 9474, 'created.': 9475, 'creek': 9476, 'crosses': 9477, 'cypher': 9478, 'dame': 9479, 'debbie': 9480, 'debt': 9481, 'denying': 9482, 'depend': 9483, 'desired': 9484, 'disgrace': 9485, 'dj': 9486, 'doing,': 9487, 'dominate': 9488, 'duel': 9489, 'educated': 9490, 'electronic': 9491, 'engaging.': 9492, 'enormously': 9493, 'ernie': 9494, 'execution.': 9495, 'explosions,': 9496, 'fades': 9497, 'fascinating.': 9498, 'feat': 9499, 'federal': 9500, 'fetish': 9501, 'figure.': 9502, 'finale.': 9503, 'floor,': 9504, 'flower': 9505, 'flowers': 9506, 'flows': 9507, 'foil': 9508, 'force.': 9509, 'frantic': 9510, 'further.': 9511, 'gilliam': 9512, 'god-awful': 9513, 'grass': 9514, 'gretchen': 9515, 'grip': 9516, 'grossly': 9517, 'hallmark': 9518, 'harsh,': 9519, 'hats': 9520, 'heroine,': 9521, 'humorous,': 9522, 'id': 9523, 'inform': 9524, 'instincts': 9525, 'intriguing.': 9526, 'intro': 9527, 'investigator': 9528, 'judgment': 9529, 'juliet': 9530, 'kidnaps': 9531, 'kris': 9532, 'late.': 9533, 'lays': 9534, 'life!': 9535, 'lifts': 9536, 'mad,': 9537, 'magician': 9538, 'maintaining': 9539, 'making,': 9540, 'man.<br': 9541, 'martin,': 9542, 'masked': 9543, 'mason': 9544, 'mcqueen': 9545, 'mice': 9546, 'mick': 9547, "miike's": 9548, 'mine.': 9549, 'misty': 9550, 'mixes': 9551, 'moments.<br': 9552, 'monster.': 9553, 'movement,': 9554, 'necessity': 9555, 'net': 9556, 'nightmarish': 9557, 'nolte': 9558, 'nonetheless,': 9559, 'ny': 9560, 'obstacles': 9561, 'option': 9562, 'outlandish': 9563, 'owners': 9564, 'papers': 9565, 'participate': 9566, 'paths': 9567, 'people?': 9568, 'permanent': 9569, 'photography.': 9570, 'pixar': 9571, 'plodding': 9572, 'possible.<br': 9573, 'producers,': 9574, 'psychologist': 9575, 'pursuing': 9576, 'realistically': 9577, 'rebels': 9578, 'redundant': 9579, 'resolved': 9580, 'reverse': 9581, 'revival': 9582, 'rewarded': 9583, 'rolls': 9584, 'rounds': 9585, 'rupert': 9586, 'sane': 9587, 'satanic': 9588, 'say:': 9589, 'scratching': 9590, 'screened': 9591, 'seasons,': 9592, 'sheets': 9593, 'shop,': 9594, 'showcases': 9595, 'sickening': 9596, 'singer,': 9597, 'socially': 9598, 'solid,': 9599, 'sondra': 9600, 'sonny': 9601, 'strung': 9602, 'studio,': 9603, 'switches': 9604, 't&a': 9605, 'talents.': 9606, 'tcm': 9607, 'tightly': 9608, 'torture,': 9609, 'transported': 9610, 'traumatic': 9611, 'tripe': 9612, 'turkey.': 9613, 'turns,': 9614, "tv's": 9615, 'vain': 9616, 'variation': 9617, 'wagner': 9618, 'wall,': 9619, 'wesley': 9620, "who'd": 9621, 'wire': 9622, 'would.': 9623, 'youth,': 9624, '"i\'ll': 9625, '"is': 9626, '"night': 9627, '"real': 9628, '"white': 9629, '(and,': 9630, '(something': 9631, '),': 9632, '/>before': 9633, '/>okay,': 9634, '/>those': 9635, '1971': 9636, '2002': 9637, '2007': 9638, '7/10.': 9639, '75': 9640, 'aaron': 9641, 'absorbed': 9642, 'actually.': 9643, 'addressed': 9644, 'affecting': 9645, "altman's": 9646, 'am,': 9647, 'animals.': 9648, 'answered': 9649, 'anytime': 9650, 'are:': 9651, 'arrow': 9652, 'article': 9653, 'auto': 9654, 'axe': 9655, 'beautifully.': 9656, 'belief.': 9657, 'belt': 9658, 'biker': 9659, 'bikini': 9660, 'bonnie': 9661, 'bothers': 9662, 'bsg': 9663, 'building.': 9664, 'burke': 9665, 'busby': 9666, 'candidate': 9667, 'cannes': 9668, 'cares?': 9669, 'carlos': 9670, 'cartoons,': 9671, 'circa': 9672, 'cliched': 9673, 'clunky': 9674, 'cohen': 9675, 'college.': 9676, 'coming.': 9677, 'commentary,': 9678, 'community,': 9679, 'condemned': 9680, 'connie': 9681, 'contestant': 9682, 'contestants': 9683, 'contrast,': 9684, 'county': 9685, 'creasy': 9686, 'crossed': 9687, 'cut,': 9688, 'defy': 9689, 'developed,': 9690, 'directed.': 9691, 'disgust': 9692, 'distinctly': 9693, 'district': 9694, 'dramatic,': 9695, 'earns': 9696, 'efforts.': 9697, 'elsewhere': 9698, 'energy.': 9699, 'entirety': 9700, 'entrance': 9701, 'entries': 9702, 'examine': 9703, 'expresses': 9704, 'factual': 9705, 'failed.': 9706, 'fake,': 9707, 'families.': 9708, 'fare.': 9709, 'file': 9710, 'flew': 9711, 'fools': 9712, 'formula.': 9713, 'ghetto': 9714, "girls'": 9715, 'grandma': 9716, 'han': 9717, "hartley's": 9718, 'hysterically': 9719, 'imaginary': 9720, 'immediately.': 9721, 'incredible,': 9722, 'instances': 9723, 'intentional': 9724, 'interviewed': 9725, 'irritated': 9726, 'it!!': 9727, 'jack,': 9728, 'jane,': 9729, 'jedi': 9730, 'joker': 9731, 'keys': 9732, "kids'": 9733, 'knocking': 9734, 'laughter,': 9735, 'laughter.': 9736, 'likable.': 9737, 'lingering': 9738, 'liu': 9739, 'lovers,': 9740, 'loy': 9741, 'ludicrous.': 9742, 'lunch': 9743, 'mae': 9744, 'manic': 9745, 'meteor': 9746, 'middle-class': 9747, 'misunderstood': 9748, 'momentum': 9749, 'mouths': 9750, 'muslims': 9751, 'mythical': 9752, 'not?': 9753, 'occult': 9754, 'offend': 9755, 'officially': 9756, 'one:': 9757, 'only,': 9758, 'orphan': 9759, 'others.<br': 9760, 'owner,': 9761, 'oz': 9762, 'painter': 9763, 'paintings': 9764, "palma's": 9765, 'park.': 9766, 'partner,': 9767, 'pedestrian': 9768, 'pegg': 9769, 'people"': 9770, 'pieces.': 9771, 'pilots': 9772, 'plague.': 9773, 'plagued': 9774, 'pleasure.': 9775, 'pretentious,': 9776, 'priceless': 9777, 'principals': 9778, 'progresses': 9779, 'projected': 9780, 'protagonist,': 9781, 'protective': 9782, 'puppy': 9783, 'puzzle': 9784, 'queen,': 9785, 'questions,': 9786, 'race,': 9787, 'rambling': 9788, 'recently.': 9789, 'recover': 9790, 'redneck': 9791, 'reject': 9792, 'representing': 9793, 'respect,': 9794, 'riff': 9795, 'right.<br': 9796, 'ring,': 9797, 'robbed': 9798, 'robertson': 9799, 'rookie': 9800, 'ruled': 9801, 'scares,': 9802, 'scorsese': 9803, 'see.<br': 9804, 'sentimentality': 9805, 'sentinel': 9806, 'shore': 9807, 'shoved': 9808, 'show!': 9809, 'shown.': 9810, "sister's": 9811, 'slower': 9812, 'snowy': 9813, 'soul,': 9814, 'stabs': 9815, 'state.': 9816, 'sunk': 9817, 'surface,': 9818, 'swallow': 9819, 't.': 9820, 'tackle': 9821, 'talk.': 9822, 'theaters,': 9823, 'thelma': 9824, 'theories': 9825, 'todays': 9826, 'touch.': 9827, 'ultimatum': 9828, 'uncertain': 9829, 'used,': 9830, 'valid': 9831, 'varying': 9832, 'war.<br': 9833, 'werewolves': 9834, 'whatever.': 9835, 'wielding': 9836, 'wig': 9837, 'wong': 9838, 'woods.': 9839, '"best': 9840, '"dark': 9841, '"dead': 9842, '(is': 9843, '(whose': 9844, '/>everything': 9845, '/>technically': 9846, '1995': 9847, '1997': 9848, '21': 9849, '300': 9850, 'accidental': 9851, 'adult,': 9852, 'aesthetic': 9853, 'africa.': 9854, 'agony': 9855, 'ali': 9856, 'alley': 9857, 'americans,': 9858, 'are.<br': 9859, 'armstrong': 9860, 'arquette': 9861, 'available.': 9862, 'berkeley': 9863, 'bitch': 9864, 'book.<br': 9865, 'borrows': 9866, 'brett': 9867, 'britney': 9868, 'brooke': 9869, 'budgets': 9870, 'burgess': 9871, 'burnt': 9872, 'cartoon,': 9873, 'cliches': 9874, 'colleagues': 9875, 'college,': 9876, 'come,': 9877, 'comprised': 9878, 'controversy': 9879, 'corn': 9880, 'count.': 9881, 'crashed': 9882, 'crowded': 9883, 'day"': 9884, 'deal.': 9885, 'decline': 9886, 'degrees': 9887, 'devotion': 9888, 'disco': 9889, 'disney,': 9890, 'document': 9891, 'dominic': 9892, 'drab': 9893, 'duvall': 9894, 'dwight': 9895, 'dynamics': 9896, 'edge.': 9897, 'encourages': 9898, 'enough.<br': 9899, 'especially,': 9900, 'event.': 9901, 'fairbanks': 9902, 'fascist': 9903, 'fassbinder': 9904, 'fatale': 9905, 'favor,': 9906, 'feast': 9907, 'fiery': 9908, 'fishburne': 9909, 'flowing': 9910, 'fright': 9911, 'fuel': 9912, 'fulfill': 9913, 'galaxy': 9914, 'given.': 9915, 'gods': 9916, 'goldblum': 9917, 'govinda': 9918, 'half-way': 9919, 'happening,': 9920, 'highway': 9921, 'hip-hop': 9922, 'hippies': 9923, 'imaginable': 9924, 'increase': 9925, 'inexperienced': 9926, 'interplay': 9927, 'invention': 9928, 'irving': 9929, 'isabelle': 9930, 'it!<br': 9931, 'iv': 9932, 'janet': 9933, 'jar': 9934, 'jersey': 9935, 'journey,': 9936, 'jr': 9937, 'kelly,': 9938, 'killers.': 9939, 'kirsten': 9940, 'knightley': 9941, 'krueger': 9942, 'lars': 9943, 'lds': 9944, 'linear': 9945, 'locate': 9946, 'location,': 9947, 'locations.': 9948, 'longoria': 9949, 'manipulate': 9950, 'marisa': 9951, 'mark,': 9952, 'market.': 9953, 'mention,': 9954, 'mine,': 9955, 'modern-day': 9956, 'narrative,': 9957, 'needed.': 9958, 'nightclub': 9959, 'niven': 9960, 'norm': 9961, 'notices': 9962, "o'hara": 9963, 'observation': 9964, 'on?': 9965, 'original.<br': 9966, 'oscar-winning': 9967, 'outstanding,': 9968, 'overshadowed': 9969, 'owe': 9970, 'paired': 9971, 'parrot': 9972, 'phase': 9973, 'phones': 9974, 'plate': 9975, 'plotting': 9976, 'pocket': 9977, 'policy': 9978, 'politicians': 9979, 'portuguese': 9980, 'preachy': 9981, 'prefers': 9982, 'pressed': 9983, 'proceedings.': 9984, 'prolific': 9985, 'question:': 9986, 'questions.': 9987, 'rampant': 9988, 'replacement': 9989, 'replacing': 9990, 'repulsive': 9991, 'retrieve': 9992, 'reunited': 9993, 'rivers': 9994, 'sammy': 9995, 'sarandon': 9996, 'seconds.': 9997, 'secure': 9998, 'seeing,': 9999, 'self-indulgent': 10000, 'sequels,': 10001, 'shannon': 10002, 'shepherd': 10003, 'signature': 10004, 'silverman': 10005, "simon's": 10006, 'sketches': 10007, 'sly': 10008, 'so-so': 10009, 'sour': 10010, 'speak,': 10011, 'spectacle': 10012, 'standard.': 10013, 'stars.<br': 10014, 'steaming': 10015, 'straight,': 10016, 'structure,': 10017, 'suave': 10018, 'summer,': 10019, 'surface.': 10020, 'suspenseful,': 10021, 'tasty': 10022, 'tedious,': 10023, 'thin,': 10024, 'tickets': 10025, 'time...': 10026, 'time?': 10027, 'torturing': 10028, 'towers': 10029, 'traffic': 10030, 'traps': 10031, 'treatment.': 10032, 'trilogy.': 10033, 'trivial': 10034, 'unconventional': 10035, 'unhinged': 10036, 'unleashed': 10037, 'unsympathetic': 10038, 'us.<br': 10039, 'vampires,': 10040, 'vision,': 10041, 'void': 10042, 'warned.': 10043, 'wartime': 10044, 'wayans': 10045, 'win.': 10046, 'winner.': 10047, 'worrying': 10048, 'year.<br': 10049, 'youtube': 10050, 'zane': 10051, '"death': 10052, '"plot"': 10053, '(mostly': 10054, '(peter': 10055, '(well': 10056, '/>about': 10057, '/>definitely': 10058, '/>let': 10059, '/>then,': 10060, '/>unfortunately': 10061, '1990s': 10062, '1999': 10063, '23': 10064, '40s': 10065, ':-)': 10066, 'above.': 10067, 'accurate,': 10068, 'action.<br': 10069, 'adaptation,': 10070, 'alarm': 10071, 'allen,': 10072, 'alliance': 10073, 'alter': 10074, 'arrogance': 10075, 'associate': 10076, 'awarded': 10077, 'band,': 10078, 'bates': 10079, 'battle.': 10080, 'be?': 10081, 'beckinsale': 10082, 'begins.': 10083, 'behaving': 10084, 'believable.<br': 10085, 'bittersweet': 10086, 'black.': 10087, 'bon': 10088, 'brain.': 10089, 'brides': 10090, 'brothers.': 10091, 'cab': 10092, 'cain': 10093, 'cancer': 10094, 'cat.': 10095, 'charges': 10096, 'cheap.': 10097, 'cheerful': 10098, 'chemical': 10099, 'cliché,': 10100, 'concentrated': 10101, 'conscious': 10102, 'consumed': 10103, 'continuous': 10104, 'corbett': 10105, 'correctly': 10106, 'counting': 10107, "country's": 10108, 'counts': 10109, 'crap!': 10110, 'curiously': 10111, 'cutter': 10112, 'danger,': 10113, 'defining': 10114, 'deserved.': 10115, 'deservedly': 10116, 'determination': 10117, 'determine': 10118, 'digging': 10119, 'dilemma': 10120, 'direct-to-video': 10121, 'disappointment,': 10122, 'distributed': 10123, 'doug': 10124, 'drowning': 10125, 'drunk,': 10126, 'dud': 10127, 'dumber': 10128, 'dvd.<br': 10129, 'echoes': 10130, 'effortlessly': 10131, 'efforts,': 10132, 'elected': 10133, 'emphasize': 10134, 'enchanted': 10135, 'energy,': 10136, 'enjoy!': 10137, 'environment.': 10138, 'evans': 10139, 'everywhere,': 10140, 'excels': 10141, 'expressing': 10142, 'eyes.<br': 10143, 'faint': 10144, 'farrah': 10145, 'fat,': 10146, 'fault.': 10147, 'feet.': 10148, 'fewer': 10149, 'filmmaker,': 10150, 'flag': 10151, 'fleeing': 10152, 'followers': 10153, 'food,': 10154, 'for?': 10155, 'freeze': 10156, 'fruit': 10157, 'funding': 10158, 'funny?': 10159, 'gackt': 10160, 'glossy': 10161, 'got.': 10162, 'gut': 10163, 'half-hour': 10164, 'hannah': 10165, 'heath': 10166, 'heaven.': 10167, 'herd': 10168, 'here).': 10169, 'ho': 10170, 'home.<br': 10171, 'homicide': 10172, 'hooker': 10173, 'hotel,': 10174, 'icy': 10175, 'identified': 10176, 'ii,': 10177, 'illustrate': 10178, 'imitate': 10179, 'imprisoned': 10180, 'increasing': 10181, 'interspersed': 10182, 'is!': 10183, 'is)': 10184, 'jordan': 10185, 'kindly': 10186, 'liberties': 10187, 'loud.': 10188, 'lover.': 10189, 'lunatic': 10190, 'lure': 10191, 'luxury': 10192, 'mandy': 10193, 'means.': 10194, 'melodrama,': 10195, 'members.': 10196, 'mermaid': 10197, 'mess.<br': 10198, 'meyer': 10199, 'minnelli': 10200, 'mode': 10201, 'morning,': 10202, 'motivated': 10203, 'names,': 10204, 'nerdy': 10205, 'novelist': 10206, 'now!': 10207, 'nun': 10208, 'oblivious': 10209, 'odyssey': 10210, 'ongoing': 10211, 'operating': 10212, 'origin': 10213, 'overtly': 10214, 'paranoid': 10215, 'period.<br': 10216, 'perverted': 10217, 'placing': 10218, 'planes': 10219, 'platform': 10220, 'players.': 10221, 'pompous': 10222, 'portions': 10223, 'post-war': 10224, 'pour': 10225, 'prejudice': 10226, 'prologue': 10227, 'promoting': 10228, 'properly.': 10229, 'python': 10230, 'race.': 10231, 'reckless': 10232, 'recurring': 10233, 'reese': 10234, 'relates': 10235, 'relaxed': 10236, 'remark': 10237, 'reported': 10238, 'representative': 10239, 'republic': 10240, 'result.': 10241, 'rice': 10242, 'ride,': 10243, 'river,': 10244, 'role)': 10245, "romero's": 10246, 'rousing': 10247, 'sailor': 10248, 'saw,': 10249, 'scattered': 10250, 'seconds,': 10251, 'self,': 10252, 'senator': 10253, 'sensual': 10254, 'serials': 10255, 'sexist': 10256, 'shaggy': 10257, 'shanghai': 10258, 'sharp,': 10259, 'shiny': 10260, 'since,': 10261, 'slugs': 10262, 'spiral': 10263, 'stairs': 10264, 'stalker': 10265, 'stance': 10266, 'stereotypes.': 10267, 'stone,': 10268, 'strong.': 10269, 'students,': 10270, 'stupid.<br': 10271, 'sucking': 10272, 'supports': 10273, 'sylvia': 10274, 'tactics': 10275, 'tell,': 10276, 'that:': 10277, 'theatre.': 10278, 'tools': 10279, 'treating': 10280, 'trip.': 10281, 'trouble,': 10282, 'tsui': 10283, 'unique.': 10284, 'unrealistic,': 10285, 'unwilling': 10286, 'usually,': 10287, 'val': 10288, 'valentine': 10289, "verhoeven's": 10290, 'vigilante': 10291, 'want,': 10292, 'well-acted': 10293, 'wheel': 10294, 'witchcraft': 10295, '(now': 10296, '(think': 10297, '***spoilers***': 10298, '/>grade:': 10299, '/>nothing': 10300, '/>people': 10301, '/>second,': 10302, '/>sure,': 10303, '/>yet': 10304, '1940s': 10305, '80s,': 10306, 'accents,': 10307, 'actresses,': 10308, 'adaptation.': 10309, 'adaption': 10310, 'admiration': 10311, 'afterwards.': 10312, 'allan': 10313, 'arc': 10314, 'assortment': 10315, 'atrocious,': 10316, 'august': 10317, 'automatic': 10318, 'awareness': 10319, 'awful!': 10320, 'b-movies': 10321, 'band.': 10322, 'barney': 10323, 'barrel': 10324, 'bats': 10325, 'benny': 10326, 'betrayal': 10327, 'betrayed': 10328, 'black-and-white': 10329, 'blaise': 10330, 'blandings': 10331, 'bless': 10332, 'bloom': 10333, 'brat': 10334, 'bridges': 10335, 'busey': 10336, 'campus': 10337, 'care,': 10338, 'cedric': 10339, 'chaotic': 10340, 'characterisation': 10341, 'chases,': 10342, 'chevy': 10343, 'china,': 10344, 'chip': 10345, 'clay': 10346, 'climbs': 10347, 'clothes.': 10348, 'columbia': 10349, 'complications': 10350, 'composition': 10351, 'concentrates': 10352, 'consisted': 10353, 'context.': 10354, 'continuously': 10355, 'contrived,': 10356, 'convict': 10357, 'cooking': 10358, 'cover.': 10359, 'cow': 10360, 'cracks': 10361, "craven's": 10362, 'croc': 10363, 'crooked': 10364, 'crosby': 10365, 'cushing': 10366, 'dad.': 10367, 'dance.': 10368, 'dealer': 10369, 'deliver.': 10370, 'desert.': 10371, 'differently': 10372, 'dillinger': 10373, 'directors.': 10374, 'disgusting.': 10375, 'diversity': 10376, 'drugs.': 10377, 'drum': 10378, 'duck': 10379, "eastwood's": 10380, 'embarrass': 10381, 'enhances': 10382, 'era.<br': 10383, 'ernest': 10384, 'extraordinarily': 10385, 'face.<br': 10386, 'fame,': 10387, 'far-fetched': 10388, 'ferrell': 10389, 'field,': 10390, 'fight.': 10391, 'filming.': 10392, 'fires': 10393, 'first-time': 10394, 'fluff': 10395, 'forced.': 10396, 'forward.': 10397, 'frankenstein': 10398, 'freaked': 10399, 'gay.': 10400, 'ghastly': 10401, 'gorgeous,': 10402, 'gorilla': 10403, 'gypsy': 10404, 'handicapped': 10405, 'happenings': 10406, 'hawn': 10407, 'heroes,': 10408, 'holes.': 10409, 'howling': 10410, 'idea.<br': 10411, 'incidental': 10412, 'influential': 10413, 'interestingly': 10414, 'iq': 10415, 'issues.': 10416, 'iturbi': 10417, 'jo': 10418, 'journey.': 10419, 'killers,': 10420, 'knack': 10421, 'largest': 10422, 'leave,': 10423, 'lighthearted': 10424, 'likeable': 10425, 'lindsey': 10426, 'lindy': 10427, 'lola': 10428, 'lowe': 10429, 'luckily,': 10430, 'macdonald': 10431, 'machine,': 10432, 'mama': 10433, 'manipulated': 10434, 'manipulation': 10435, 'marrying': 10436, 'marvin': 10437, 'meaning,': 10438, 'meantime,': 10439, 'miraculously': 10440, "miyazaki's": 10441, 'mockery': 10442, 'moderately': 10443, 'motel': 10444, 'motorcycle': 10445, 'murders.': 10446, 'name)': 10447, 'nerves': 10448, 'newman': 10449, 'noting': 10450, 'ordeal': 10451, 'oscar,': 10452, 'ostensibly': 10453, 'overall.': 10454, "parents'": 10455, 'pauline': 10456, 'pen': 10457, 'perceived': 10458, 'personality,': 10459, 'perverse': 10460, 'photograph': 10461, 'plot:': 10462, 'plots,': 10463, 'product.': 10464, 'profoundly': 10465, 'prolonged': 10466, 'prone': 10467, 'protest': 10468, 'psyche': 10469, 'races': 10470, 'randall': 10471, 'rapid': 10472, 'ravishing': 10473, 're': 10474, 'reason.<br': 10475, 'relied': 10476, 'revolution,': 10477, 'richly': 10478, 'rotting': 10479, 'runaway': 10480, 'satisfying.': 10481, 'scale.': 10482, 'scarlett': 10483, 'scheming': 10484, 'schneider': 10485, 'seventh': 10486, 'shah': 10487, 'ship,': 10488, 'shock,': 10489, 'singing,': 10490, 'slew': 10491, 'slim': 10492, 'slips': 10493, 'smile.': 10494, 'spectacular.': 10495, 'spotted': 10496, 'stephanie': 10497, 'stern': 10498, 'strengths': 10499, 'stumbling': 10500, 'substance,': 10501, 'suck.': 10502, 'taboo': 10503, 'tacked': 10504, 'tastes': 10505, 'teacher,': 10506, 'themes.': 10507, 'theodore': 10508, 'thirties': 10509, 'tierney': 10510, 'tobe': 10511, 'tolerate': 10512, 'torment': 10513, 'toxic': 10514, 'transparent': 10515, 'traveled': 10516, 'turn.': 10517, 'unattractive': 10518, 'unclear': 10519, 'unconvincing.': 10520, 'undercover': 10521, 'underwear': 10522, 'unimaginative': 10523, 'unstable': 10524, 'upbeat': 10525, 'update': 10526, 'vapid': 10527, 'vargas': 10528, 'vincenzo': 10529, 'vivian': 10530, 'want.': 10531, 'waste.': 10532, 'we,': 10533, 'wedding.': 10534, 'wings': 10535, 'woke': 10536, 'yell': 10537, 'zelah': 10538, '"bad"': 10539, '"happy': 10540, '"horror"': 10541, '"on': 10542, '"red': 10543, '(christopher': 10544, '/>**': 10545, '/>2)': 10546, '/>anyone': 10547, '/>besides': 10548, '/>directed': 10549, "/>here's": 10550, '/>paul': 10551, '/>which': 10552, '11,': 10553, '1933': 10554, '1945': 10555, '1978': 10556, 'actions,': 10557, 'adele': 10558, 'admirer': 10559, 'alienate': 10560, 'alone.<br': 10561, 'amazon': 10562, 'ambiance': 10563, 'any.': 10564, 'approach,': 10565, 'arty': 10566, 'authenticity': 10567, 'babes': 10568, 'baron': 10569, 'beetle': 10570, 'behaves': 10571, 'bert': 10572, 'betrays': 10573, 'biopic': 10574, 'blessed': 10575, 'bosses': 10576, 'bothering': 10577, 'boundaries': 10578, 'boyfriend.': 10579, 'brunette': 10580, 'bury': 10581, 'cameraman': 10582, "can't.": 10583, 'cap': 10584, 'carnage': 10585, 'casually': 10586, 'chamberlain': 10587, 'chock': 10588, 'chops': 10589, 'christmas,': 10590, 'church.': 10591, 'cinematographic': 10592, 'circles': 10593, "city's": 10594, 'cocaine': 10595, 'cockney': 10596, 'coke': 10597, 'colleague': 10598, 'combs': 10599, 'conductor': 10600, 'conflict,': 10601, 'constraints': 10602, 'cook,': 10603, 'cop.': 10604, 'copy,': 10605, 'counted': 10606, 'course)': 10607, 'cry,': 10608, 'cyborg': 10609, 'czech': 10610, 'daisy': 10611, 'dangers': 10612, 'delve': 10613, 'dental': 10614, 'derived': 10615, 'distinguished': 10616, 'dodgy': 10617, 'dollars.': 10618, 'doyle': 10619, 'dreaming': 10620, 'edmund': 10621, 'elder': 10622, 'elevate': 10623, 'ended.': 10624, 'expand': 10625, 'fabric': 10626, 'factor.': 10627, 'fame.': 10628, 'fate.': 10629, 'favorite,': 10630, 'fiend': 10631, 'fifties': 10632, 'fights,': 10633, 'film-making,': 10634, 'filming,': 10635, 'filmmaker.': 10636, 'finely': 10637, 'flipping': 10638, 'format.': 10639, 'found.': 10640, 'frog': 10641, 'fuss': 10642, 'garfield': 10643, 'gathered': 10644, 'genetic': 10645, 'gestures': 10646, 'goals': 10647, 'golf': 10648, 'gordon,': 10649, 'government,': 10650, 'grave.': 10651, 'grisly': 10652, 'guy"': 10653, 'happiness.': 10654, 'hayes': 10655, 'house"': 10656, 'huge,': 10657, 'hugo': 10658, 'humanity,': 10659, 'imitating': 10660, 'interpretations': 10661, 'it´s': 10662, 'joint': 10663, 'jolie': 10664, 'keanu': 10665, 'kinski': 10666, 'lacking.': 10667, 'leaps': 10668, 'license': 10669, 'long.<br': 10670, 'looking.': 10671, 'lopez': 10672, 'lovers.': 10673, 'lucio': 10674, 'madeleine': 10675, 'mail': 10676, 'mexico.': 10677, 'mister': 10678, 'mobster': 10679, "mom's": 10680, 'monologue': 10681, 'monotonous': 10682, 'mood,': 10683, "moore's": 10684, 'morals': 10685, 'motions': 10686, 'mythology': 10687, 'natural.': 10688, 'needlessly': 10689, 'networks': 10690, 'nifty': 10691, 'nightmare.': 10692, #39;non-existent.': 10693, 'notions': 10694, 'observations': 10695, 'opportunity.': 10696, 'order,': 10697, 'originals': 10698, 'outside,': 10699, 'pairing': 10700, 'periods': 10701, 'pirates': 10702, 'played.': 10703, 'playing.': 10704, 'politician': 10705, 'preaching': 10706, 'prevented': 10707, 'products': 10708, 'profanity': 10709, 'progression': 10710, 'protecting': 10711, 'psychiatric': 10712, 'puzzled': 10713, 'quirky,': 10714, 'ram': 10715, 'rampage': 10716, 'realism.': 10717, 'recommend.': 10718, 'recreate': 10719, 'redford': 10720, 'reluctantly': 10721, 'return.': 10722, 'revive': 10723, 'rider': 10724, 'road,': 10725, 'robbers': 10726, 'rourke': 10727, 'sacrifices': 10728, 'safe,': 10729, 'sale': 10730, 'sci-fi,': 10731, 'scientist,': 10732, 'screenplays': 10733, 'scripting': 10734, 'seat.': 10735, 'secret.': 10736, 'sections': 10737, 'seems.': 10738, 'segment,': 10739, 'session': 10740, 'shamelessly': 10741, 'shocking,': 10742, 'show"': 10743, 'slam': 10744, 'slashers': 10745, 'slaves': 10746, 'slows': 10747, 'snowman': 10748, 'someone.': 10749, 'sometimes.': 10750, 'sore': 10751, 'spider': 10752, 'spitting': 10753, 'spotlight': 10754, 'stepped': 10755, 'stereotyped': 10756, 'stones': 10757, 'stop.': 10758, 'straight-to-video': 10759, 'structure.': 10760, 'student,': 10761, 'stupidity.': 10762, 'succession': 10763, 'suit.': 10764, 'surpasses': 10765, 'surprises.': 10766, 'sweeping': 10767, 'swiss': 10768, 'tapes': 10769, 'targets': 10770, 'terms.': 10771, 'thinking?': 10772, 'thurman': 10773, 'today.<br': 10774, 'tone.': 10775, "town's": 10776, 'trains': 10777, 'trash,': 10778, 'tricked': 10779, 'universe.': 10780, 'unnecessary.': 10781, 'up:': 10782, 'urgency': 10783, 'use.': 10784, 'used.': 10785, 'version.<br': 10786, 'vet': 10787, 'victim,': 10788, "victoria's": 10789, 'watcher': 10790, 'weekend.': 10791, 'whatever,': 10792, 'wholesome': 10793, 'widower': 10794, 'willingly': 10795, 'wine': 10796, 'wood,': 10797, 'zorro': 10798, '!!!': 10799, '"an': 10800, '"hollywood': 10801, '"midnight': 10802, '(did': 10803, '(whom': 10804, '/>5.': 10805, '/>eye': 10806, '/>take': 10807, '/>unless': 10808, '10.<br': 10809, '18th': 10810, '1970': 10811, "70's.": 10812, '9.': 10813, ';': 10814, 'aboard': 10815, 'abundance': 10816, 'achieving': 10817, 'addict': 10818, 'advances': 10819, 'advice,': 10820, 'aftermath': 10821, 'ages,': 10822, 'all)': 10823, 'all?': 10824, 'alternately': 10825, 'amateurish.': 10826, 'appealing.': 10827, 'artist.': 10828, 'astonishingly': 10829, 'awards.': 10830, 'bach': 10831, 'ball.': 10832, 'beach,': 10833, 'benoit': 10834, 'billion': 10835, 'bodies,': 10836, 'boost': 10837, 'burial': 10838, 'bursts': 10839, 'characters;': 10840, 'chiba': 10841, 'chuckles': 10842, 'circumstances,': 10843, 'cliffhanger': 10844, 'clone': 10845, 'clutter': 10846, 'coal': 10847, 'collecting': 10848, 'comeback': 10849, 'comment,': 10850, 'confirmed': 10851, 'conflicted': 10852, 'consideration': 10853, 'contemplate': 10854, 'courageous': 10855, 'cultures': 10856, 'dangerously': 10857, 'darkly': 10858, 'desired.': 10859, 'detached': 10860, 'diego': 10861, 'diner': 10862, 'disappointing,': 10863, 'disaster,': 10864, 'discernible': 10865, 'distinction': 10866, 'distorted': 10867, 'division': 10868, 'dopey': 10869, 'downbeat': 10870, 'dreadful,': 10871, 'dreadfully': 10872, 'echo': 10873, 'element,': 10874, 'empathize': 10875, 'enchanting': 10876, 'end!': 10877, 'engine': 10878, 'ensues': 10879, 'epic,': 10880, 'espionage': 10881, 'existential': 10882, 'existing': 10883, 'expanded': 10884, 'families,': 10885, 'fanatic': 10886, 'faye': 10887, 'feature-length': 10888, 'finale,': 10889, 'fixed': 10890, 'flamboyant': 10891, 'flames': 10892, 'fleeting': 10893, 'frat': 10894, 'fulfilling': 10895, 'functions': 10896, 'funky': 10897, 'furniture': 10898, 'fuzzy': 10899, 'gamut': 10900, 'garnered': 10901, 'gear': 10902, 'gena': 10903, 'germany.': 10904, 'gig': 10905, 'glance': 10906, 'goldsworthy': 10907, 'gorgeous.': 10908, 'government.': 10909, 'graduate': 10910, 'grips': 10911, "harry's": 10912, 'heard.': 10913, 'heaven,': 10914, 'henchman': 10915, 'hesitate': 10916, 'his/her': 10917, 'holt': 10918, 'hooked.': 10919, 'humans.': 10920, 'hunky': 10921, 'icons': 10922, 'idealistic': 10923, 'illustrates': 10924, 'imagery,': 10925, 'imagine.': 10926, 'immersed': 10927, 'inaccuracies': 10928, 'is...': 10929, "its'": 10930, "john's": 10931, 'jolly': 10932, "jones'": 10933, 'knights': 10934, 'korea': 10935, 'laboratory': 10936, 'lampoon': 10937, 'lara': 10938, 'laser': 10939, 'lewis,': 10940, 'library.': 10941, 'lists': 10942, 'lo': 10943, 'loss.': 10944, 'lurid': 10945, 'lyrical': 10946, 'madison': 10947, 'mans': 10948, 'many.': 10949, 'marred': 10950, 'masterson': 10951, 'meal': 10952, 'men"': 10953, "michael's": 10954, 'midget': 10955, 'mischievous': 10956, 'mole': 10957, 'moon"': 10958, 'movie!!': 10959, 'movie),': 10960, 'muscular': 10961, 'music.<br': 10962, 'myrtle': 10963, 'narration,': 10964, 'narrative.': 10965, 'nuanced': 10966, 'observe': 10967, 'operate': 10968, 'orlando': 10969, 'outta': 10970, 'overboard': 10971, 'paper,': 10972, 'patty': 10973, 'perceive': 10974, 'performances.<br': 10975, 'pia': 10976, 'placement': 10977, 'plays,': 10978, 'poe': 10979, 'poke': 10980, 'potent': 10981, 'practicing': 10982, 'preacher': 10983, 'precise': 10984, 'prevalent': 10985, 'programme': 10986, 'promise,': 10987, 'proverbial': 10988, 'purposes': 10989, 'raunchy': 10990, 'razor': 10991, 'real.<br': 10992, 'recalls': 10993, 'recovering': 10994, 'regain': 10995, 'replies': 10996, 'requisite': 10997, 'resolve': 10998, 'respond': 10999, 'rests': 11000, 'rivalry': 11001, 'rivals': 11002, 'robbing': 11003, 'robotic': 11004, 'routines': 11005, 'sake,': 11006, 'scenarios': 11007, 'screaming,': 11008, 'scriptwriter': 11009, 'seats': 11010, 'services': 11011, 'seth': 11012, 'sexuality,': 11013, 'shady': 11014, 'shakespearean': 11015, 'shawn': 11016, 'sight.': 11017, "sinatra's": 11018, 'sincerity': 11019, 'singing.': 11020, 'sisters,': 11021, 'sitcoms': 11022, 'sky.': 11023, 'slipped': 11024, 'sorry.': 11025, 'sounds,': 11026, 'spelled': 11027, "spielberg's": 11028, 'spontaneous': 11029, 'stadium': 11030, 'strikingly': 11031, 'structured': 11032, 'studio.': 11033, 'stupidest': 11034, 'submit': 11035, 'subtitles.': 11036, 'successful,': 11037, 'successful.': 11038, 'system,': 11039, 'taker': 11040, 'tape,': 11041, 'teenager.': 11042, 'ten,': 11043, "that'll": 11044, 'there!': 11045, 'these,': 11046, 'things.<br': 11047, 'things:': 11048, 'time;': 11049, 'tolerance': 11050, 'tomb': 11051, 'train,': 11052, 'tramp': 11053, 'treasure.': 11054, 'truths': 11055, 'tunnel': 11056, 'twists.': 11057, 'vignettes': 11058, 'vision.': 11059, 'walk,': 11060, 'wedding,': 11061, 'wee': 11062, 'where,': 11063, 'whimsical': 11064, 'whites': 11065, 'window,': 11066, 'wrongly': 11067, 'yells': 11068, '"but': 11069, '"hey': 11070, '"mystery': 11071, '"return': 11072, "'n'": 11073, "'s": 11074, '(voiced': 11075, '(which,': 11076, '(without': 11077, '(yes': 11078, '...<br': 11079, '/>4': 11080, '/>9/10': 11081, '/>given': 11082, '/>highly': 11083, '/>more': 11084, '/>watching': 11085, '101': 11086, '3-d': 11087, '4)': 11088, '700': 11089, '9/10.': 11090, 'abu': 11091, 'academic': 11092, 'achievements': 11093, 'add,': 11094, 'adopt': 11095, 'ads': 11096, 'agent.': 11097, 'ahead.': 11098, 'ambiguity': 11099, 'amoral': 11100, 'and...': 11101, 'animations': 11102, 'anime,': 11103, 'answering': 11104, 'appeal,': 11105, 'applause': 11106, 'approach.': 11107, 'area,': 11108, 'asia': 11109, 'asleep.': 11110, 'assist': 11111, 'astounding': 11112, 'attack,': 11113, 'attack.': 11114, "author's": 11115, 'beard': 11116, 'believed.': 11117, 'beware': 11118, 'bias': 11119, 'bimbo': 11120, 'bites': 11121, 'bloke': 11122, 'board,': 11123, 'bombed': 11124, 'bonham': 11125, 'booker': 11126, 'borderline': 11127, 'both,': 11128, 'brave,': 11129, 'brit': 11130, 'brutal,': 11131, 'bunch.': 11132, 'bye': 11133, 'capitalize': 11134, 'capt.': 11135, 'captive': 11136, 'cemetery': 11137, "chan's": 11138, 'changes.': 11139, 'chloe': 11140, 'choke': 11141, 'clarence': 11142, 'clark,': 11143, 'classic.<br': 11144, 'click': 11145, 'colman': 11146, 'color.': 11147, 'come.<br': 11148, 'comical.': 11149, 'compliment': 11150, 'concentration': 11151, 'confirm': 11152, 'confronting': 11153, 'confused.': 11154, 'connecting': 11155, 'conniving': 11156, 'corporation': 11157, 'coverage': 11158, 'coward': 11159, 'cringing': 11160, 'crowd.': 11161, 'crude,': 11162, 'culminating': 11163, 'dash': 11164, 'deadpan': 11165, 'deaths.': 11166, 'deed': 11167, 'didnt': 11168, 'disgruntled': 11169, 'drastically': 11170, 'easily.': 11171, 'eliminate': 11172, 'embarrassing.': 11173, 'emmy': 11174, 'ended,': 11175, 'entertained,': 11176, 'exudes': 11177, 'eyed': 11178, 'features,': 11179, 'feelings,': 11180, 'fighting.': 11181, 'find,': 11182, 'fleet': 11183, 'ford,': 11184, 'france.': 11185, 'freed': 11186, 'full-length': 11187, 'gaining': 11188, 'gently': 11189, 'geoffrey': 11190, 'georgia': 11191, 'gino': 11192, 'gladly': 11193, 'goodbye': 11194, 'gooding': 11195, 'grandpa': 11196, 'grating': 11197, 'grim,': 11198, 'groove': 11199, 'groundbreaking': 11200, 'gruff': 11201, 'guided': 11202, 'hard-boiled': 11203, 'harris,': 11204, 'harron': 11205, 'hector': 11206, 'high-school': 11207, 'him;': 11208, 'hiring': 11209, 'honesty,': 11210, 'hooper': 11211, 'hurting': 11212, 'huston': 11213, 'illustrated': 11214, 'impressed.': 11215, 'inconsistencies': 11216, 'inherited': 11217, 'inside,': 11218, 'integrated': 11219, 'intelligently': 11220, 'islands': 11221, 'it."': 11222, 'it?<br': 11223, 'juan': 11224, 'kells': 11225, 'kiddie': 11226, 'known.': 11227, 'latino': 11228, 'lawyer,': 11229, 'liz': 11230, 'loner': 11231, 'longtime': 11232, 'looney': 11233, 'lovingly': 11234, 'lynch,': 11235, 'mack': 11236, 'marcel': 11237, 'marine': 11238, 'mary,': 11239, 'matching': 11240, 'matters.': 11241, 'me).': 11242, 'meek': 11243, 'memories.': 11244, 'mentioned.': 11245, 'merry': 11246, 'middle,': 11247, 'minute,': 11248, 'mira': 11249, 'moron': 11250, 'most.': 11251, "murphy's": 11252, 'mysterious,': 11253, 'nailed': 11254, 'nasty,': 11255, 'occasions': 11256, 'officials': 11257, 'opposition': 11258, 'organization': 11259, 'others)': 11260, 'ounce': 11261, 'outside.': 11262, 'padded': 11263, "paul's": 11264, 'peace.': 11265, 'pierre': 11266, 'pizza': 11267, 'point?': 11268, 'pokes': 11269, 'porn.': 11270, 'presumed': 11271, 'prevents': 11272, 'process,': 11273, 'pursues': 11274, 'qualities.': 11275, 'reagan': 11276, 'register': 11277, 'render': 11278, 'respectively.': 11279, 'responds': 11280, 'retain': 11281, 'rhyme': 11282, 'ridden': 11283, 'rodney': 11284, 'rogue': 11285, 'roll.': 11286, 'romances': 11287, 'romanian': 11288, 'rushes': 11289, 'saddest': 11290, 'salesman': 11291, 'saying.': 11292, 'sentenced': 11293, 'shameful': 11294, 'shotgun': 11295, 'shown,': 11296, 'simpler': 11297, 'skimpy': 11298, 'skipping': 11299, 'slater': 11300, 'smug': 11301, 'snippets': 11302, 'societal': 11303, 'spade': 11304, 'spreading': 11305, 'stalks': 11306, 'stations': 11307, 'steamy': 11308, 'stinks.': 11309, 'submarine': 11310, 'suicide,': 11311, 'swearing': 11312, 'table,': 11313, 'tasks': 11314, 'tech': 11315, 'temper': 11316, 'terminator': 11317, 'tess': 11318, 'thankful': 11319, 'this;': 11320, 'tolerable': 11321, 'tones': 11322, 'torch': 11323, 'toss': 11324, 'touching.': 11325, 'transcends': 11326, 'transferred': 11327, 'trauma': 11328, 'travis': 11329, 'trilogy,': 11330, 'unborn': 11331, 'universe,': 11332, 'unlucky': 11333, 'unnecessary,': 11334, 'unravel': 11335, 'vampire,': 11336, 'vengeful': 11337, 'victim.': 11338, 'visceral': 11339, 'voodoo': 11340, 'walken,': 11341, 'way:': 11342, 'weary': 11343, 'wise,': 11344, 'wit,': 11345, 'worked,': 11346, 'woven': 11347, 'wrong?': 11348, 'ww2': 11349, 'yourself.<br': 11350, 'zero.': 11351, '"look': 11352, '"special': 11353, '"well,': 11354, '"what\'s': 11355, '(jack': 11356, '(still': 11357, '(tom': 11358, '/>****': 11359, '/>and,': 11360, '/>being': 11361, '/>michael': 11362, '/>none': 11363, '/>sadly,': 11364, '/>tom': 11365, '1000': 11366, '1987': 11367, '2008': 11368, "40's": 11369, '70s.': 11370, 'acquire': 11371, 'addresses': 11372, 'addressing': 11373, 'affair,': 11374, 'afternoon.': 11375, 'agree.': 11376, 'aircraft': 11377, 'allied': 11378, 'analyze': 11379, 'anchors': 11380, 'anti': 11381, 'anything.<br': 11382, 'appears,': 11383, 'approximately': 11384, 'arnie': 11385, 'asset': 11386, 'attributed': 11387, 'bartender': 11388, 'beth': 11389, 'bing': 11390, 'blends': 11391, 'bomb.': 11392, 'boot': 11393, 'boots': 11394, 'boss.': 11395, 'break,': 11396, 'breakdown': 11397, 'breakthrough': 11398, 'breathe': 11399, 'brush': 11400, 'burden': 11401, 'byron': 11402, 'canceled': 11403, 'candle': 11404, 'candy:': 11405, 'caprica': 11406, 'career.<br': 11407, 'caron': 11408, 'case.<br': 11409, 'cases,': 11410, 'celebrities': 11411, 'chamber': 11412, 'chemistry.': 11413, 'classics.': 11414, 'clockwork': 11415, 'co-worker': 11416, 'collette': 11417, 'commentary.': 11418, 'concludes': 11419, 'conduct': 11420, 'consisting': 11421, 'cowardly': 11422, 'dafoe': 11423, 'daria': 11424, 'darkness.': 11425, 'deborah': 11426, 'dedication': 11427, 'defines': 11428, 'delirious': 11429, 'destructive': 11430, 'diabolical': 11431, 'diary': 11432, 'disjointed,': 11433, 'disorder': 11434, 'dive': 11435, 'dodge': 11436, 'dogs,': 11437, 'dom': 11438, 'dragons': 11439, 'dreamed': 11440, 'drivel.': 11441, 'dunst': 11442, 'dynamite': 11443, 'easy,': 11444, 'employees': 11445, 'engagement': 11446, 'ensuing': 11447, 'eponymous': 11448, 'exceedingly': 11449, 'excitement,': 11450, 'exposes': 11451, 'exposing': 11452, 'fails.': 11453, 'faux': 11454, 'fear.': 11455, 'feared': 11456, 'female,': 11457, 'fierce': 11458, 'films)': 11459, 'flip': 11460, 'force,': 11461, 'framing': 11462, 'freedom,': 11463, 'generation.': 11464, 'god!': 11465, 'gold.': 11466, 'good;': 11467, 'hairy': 11468, 'handsome,': 11469, 'hans': 11470, 'hardest': 11471, 'harilal': 11472, 'hayworth': 11473, 'helena': 11474, 'hockey': 11475, 'honest.': 11476, 'hot.': 11477, 'hum': 11478, 'hypnotic': 11479, 'identities': 11480, 'idol': 11481, 'imply': 11482, 'india.': 11483, 'indulge': 11484, 'influences': 11485, 'informative': 11486, 'insane.': 11487, 'insanely': 11488, 'insert': 11489, 'insisted': 11490, 'into,': 11491, "it'd": 11492, 'jealousy': 11493, 'jigsaw': 11494, 'johnson,': 11495, 'kenny': 11496, 'know?': 11497, 'knows.': 11498, 'launched': 11499, 'lawn': 11500, 'lens': 11501, 'lifelong': 11502, 'made!': 11503, 'madman': 11504, 'make,': 11505, 'mandatory': 11506, 'marx': 11507, 'mates': 11508, 'may,': 11509, 'me:': 11510, 'meadows': 11511, 'miami': 11512, 'miller,': 11513, 'missing,': 11514, 'mocking': 11515, 'monks': 11516, 'motion,': 11517, 'mourning': 11518, 'mutated': 11519, 'myra': 11520, 'naval': 11521, 'nicely.': 11522, 'noam': 11523, 'norris': 11524, 'noted,': 11525, 'nowadays,': 11526, 'nutty': 11527, 'obscene': 11528, 'october': 11529, 'of.<br': 11530, 'offensive,': 11531, 'olympic': 11532, 'oriental': 11533, 'outlaw': 11534, 'overacts': 11535, 'overwhelmed': 11536, 'page,': 11537, 'palestinian': 11538, 'partial': 11539, 'patriotic': 11540, 'payoff': 11541, 'paz': 11542, 'picture.<br': 11543, 'pilot,': 11544, 'planted': 11545, 'prank': 11546, 'predator': 11547, 'predicted': 11548, 'presentation.': 11549, 'production.<br': 11550, 'promise.': 11551, 'protection': 11552, 'racist,': 11553, 'raid': 11554, 'rapes': 11555, 'really?': 11556, 'regal': 11557, 'relaxing': 11558, 'remarkable.': 11559, 'renders': 11560, 'replay': 11561, 'reportedly': 11562, 'retains': 11563, 'retelling': 11564, 'riders': 11565, 'rodriguez': 11566, 'routine.': 11567, 'rowlands': 11568, 'run-of-the-mill': 11569, 'sales': 11570, 'sammi': 11571, 'sandy': 11572, 'screamed': 11573, 'sea.': 11574, 'secluded': 11575, 'see!': 11576, 'segal': 11577, 'self-centered': 11578, 'self.': 11579, 'semi': 11580, 'seriousness': 11581, 'shepard': 11582, 'shoe': 11583, 'shout': 11584, 'skills,': 11585, 'smallest': 11586, 'smile,': 11587, 'snappy': 11588, 'some.': 11589, 'speak.': 11590, 'spectacular,': 11591, 'spells': 11592, 'spine': 11593, 'spinning': 11594, 'spoilers,': 11595, 'spoofs': 11596, 'spree': 11597, 'stares': 11598, 'stepmother': 11599, 'stiles': 11600, 'stirring': 11601, 'stoic': 11602, 'strange.': 11603, 'stray': 11604, 'streets,': 11605, "streisand's": 11606, 'stretches': 11607, 'stretching': 11608, 'sucks,': 11609, 'surprises,': 11610, 'tashan': 11611, 'tenant': 11612, 'thailand': 11613, 'threads': 11614, 'thrills,': 11615, 'track,': 11616, 'traumatized': 11617, 'trendy': 11618, 'trip,': 11619, 'trusted': 11620, 'uneasy': 11621, 'unemployed': 11622, 'universally': 11623, 'vega': 11624, 'villains.': 11625, 'visconti': 11626, 'volumes': 11627, 'warehouse': 11628, 'weirdness': 11629, 'western.': 11630, 'why.<br': 11631, 'witch,': 11632, 'wrestler': 11633, 'x-files': 11634, 'yep,': 11635, '"man': 11636, '"of': 11637, '"sex': 11638, '"that\'s': 11639, '(charles': 11640, '/>no,': 11641, '10)': 11642, '1951': 11643, '1973': 11644, '1976': 11645, '26': 11646, '6.': 11647, '95': 11648, 'abortion': 11649, 'absurd,': 11650, 'accompany': 11651, 'acknowledged': 11652, 'adapting': 11653, 'addiction': 11654, 'adequately': 11655, 'admission': 11656, 'ago.<br': 11657, 'aims': 11658, 'ala': 11659, 'aliens,': 11660, 'all-star': 11661, 'allies': 11662, 'anchor': 11663, "anderson's": 11664, 'angle,': 11665, 'annoyingly': 11666, 'apollo': 11667, 'appalled': 11668, 'army.': 11669, 'artistically': 11670, 'attempt.': 11671, 'awakens': 11672, 'aztec': 11673, 'backwoods': 11674, 'bash': 11675, 'battle,': 11676, 'believability': 11677, 'believer': 11678, 'bernsen': 11679, 'bigfoot': 11680, 'bitchy': 11681, 'blazing': 11682, 'bout': 11683, 'boyish': 11684, 'brashear': 11685, 'bryan': 11686, 'calculated': 11687, 'candy,': 11688, "carlito's": 11689, 'castle.': 11690, 'cause.': 11691, 'cells': 11692, 'certainly,': 11693, 'changed.': 11694, 'cheesiness': 11695, 'cheung': 11696, 'chewing': 11697, 'chocolate': 11698, 'chop': 11699, 'cillian': 11700, 'classified': 11701, 'clumsily': 11702, 'co-wrote': 11703, 'cody': 11704, 'coffin': 11705, 'collaboration': 11706, 'collector': 11707, 'colony': 11708, 'coma': 11709, 'comic-book': 11710, 'commendable': 11711, 'compares': 11712, 'competing': 11713, 'conclusion.<br': 11714, 'connor': 11715, 'cons': 11716, 'contrary,': 11717, 'contrived.': 11718, 'cradle': 11719, 'crass': 11720, 'cuts,': 11721, "dad's": 11722, 'damsel': 11723, 'dares': 11724, "day's": 11725, 'deal,': 11726, 'deeds': 11727, 'delight.': 11728, 'denver': 11729, 'desk': 11730, 'destruction.': 11731, 'detracts': 11732, 'direction.<br': 11733, 'dirty,': 11734, 'disappearance': 11735, 'disdain': 11736, 'documents': 11737, 'downward': 11738, 'drawings': 11739, 'dripped': 11740, 'dripping': 11741, 'drugged': 11742, 'einstein': 11743, 'elisha': 11744, 'email': 11745, 'employs': 11746, 'epics': 11747, 'even,': 11748, 'explodes': 11749, 'faith.': 11750, 'fashions': 11751, 'fellini': 11752, 'figuring': 11753, 'flop.': 11754, 'forced,': 11755, 'friends.<br': 11756, 'frightening,': 11757, "fulci's": 11758, 'future.<br': 11759, 'g': 11760, 'geisha': 11761, 'gem,': 11762, 'gershwin': 11763, 'girlfriends': 11764, 'glenda': 11765, 'glow': 11766, 'go.<br': 11767, 'grady': 11768, 'greta': 11769, 'guardian': 11770, 'haines': 11771, 'hating': 11772, 'he/she': 11773, 'heard,': 11774, 'heart-warming': 11775, 'heavenly': 11776, 'hungarian': 11777, 'hurt.': 11778, 'image,': 11779, 'implies': 11780, 'impossible.': 11781, 'information.': 11782, 'inhabit': 11783, 'inhabited': 11784, 'instead.<br': 11785, 'integral': 11786, 'intentions,': 11787, 'intriguing,': 11788, 'investment': 11789, 'irrational': 11790, 'it!!!': 11791, 'jacket': 11792, 'jan': 11793, 'justification': 11794, 'kareena': 11795, 'katie': 11796, 'kinky': 11797, 'kinnear': 11798, 'knowledge,': 11799, 'knows?': 11800, "lady's": 11801, 'laughing,': 11802, 'leader,': 11803, 'lee.': 11804, 'legend,': 11805, 'length,': 11806, 'length.': 11807, 'lent': 11808, 'lightweight': 11809, 'line.<br': 11810, 'lives.<br': 11811, 'location.': 11812, 'locks': 11813, 'loony': 11814, 'loren': 11815, 'loss,': 11816, 'luthor': 11817, 'macmurray': 11818, 'madness,': 11819, 'marginally': 11820, 'marital': 11821, 'masquerading': 11822, 'maurice': 11823, 'mccarthy': 11824, 'melancholy': 11825, 'melodrama.': 11826, 'michaels': 11827, 'middle.': 11828, 'min': 11829, 'mining': 11830, 'monsters,': 11831, 'moss': 11832, 'movie..': 11833, 'muriel': 11834, 'musicals.': 11835, 'must-see.': 11836, 'naked,': 11837, 'natural,': 11838, 'norma': 11839, 'normal,': 11840, 'northam': 11841, 'number,': 11842, 'number.': 11843, 'observing': 11844, 'occurring': 11845, 'oddly,': 11846, 'of)': 11847, 'orchestra': 11848, 'originality.': 11849, 'paris.': 11850, 'percent': 11851, 'perfected': 11852, 'phoenix': 11853, 'playful': 11854, 'playwright': 11855, 'plods': 11856, 'point:': 11857, 'poking': 11858, 'porn,': 11859, 'porter': 11860, 'prehistoric': 11861, 'prestigious': 11862, 'presume': 11863, 'programming': 11864, 'psychologically': 11865, 'quaint': 11866, 'rabid': 11867, 'racism,': 11868, 'ranging': 11869, 'raping': 11870, 're-make': 11871, 'recognise': 11872, 'reputation.': 11873, 'restore': 11874, 'rewrite': 11875, 'rightfully': 11876, 'rogers,': 11877, 'ryan,': 11878, 'sack': 11879, 'sara': 11880, 'scooby-doo': 11881, 'sealed': 11882, 'sensational': 11883, 'sequels.': 11884, 'seriously.<br': 11885, 'sets.': 11886, 'shocking.': 11887, 'shorts,': 11888, 'shouts': 11889, 'sight,': 11890, 'smitten': 11891, 'solving': 11892, 'soprano': 11893, 'soulless': 11894, 'spectacularly': 11895, 'spelling': 11896, 'staging': 11897, 'stalk': 11898, 'staple': 11899, 'stardom': 11900, 'starship': 11901, 'station.': 11902, 'story!': 11903, 'story;': 11904, 'strained': 11905, 'stripped': 11906, 'struggled': 11907, 'subtitled': 11908, 'superfluous': 11909, 'supermarket': 11910, 'supportive': 11911, 'surrounds': 11912, 'tables': 11913, 'talented,': 11914, 'taut': 11915, 'teddy': 11916, 'tedious.': 11917, 'terrible.<br': 11918, 'that).': 11919, 'themselves.<br': 11920, 'these.': 11921, 'timmy': 11922, 'tomorrow': 11923, 'touch,': 11924, 'trailer.': 11925, 'train.': 11926, 'transform': 11927, 'travolta': 11928, 'type.': 11929, 'unbearably': 11930, 'understandably': 11931, 'unnatural': 11932, 'uptight': 11933, 'valerie': 11934, 'vera': 11935, 'violently': 11936, 'waits': 11937, 'warden': 11938, 'warning:': 11939, 'warped': 11940, 'was!': 11941, 'watch!': 11942, 'well;': 11943, 'what.': 11944, 'wicker': 11945, 'wondrous': 11946, 'worth,': 11947, 'wrath': 11948, 'writers.': 11949, 'yearning': 11950, '"baby': 11951, '"before': 11952, '"evil': 11953, '"hero"': 11954, '"home': 11955, '"le': 11956, '"no,': 11957, '"our': 11958, '"plan': 11959, '"there\'s': 11960, '"war': 11961, "'80s": 11962, "(he's": 11963, '/>1/10': 11964, '/>3': 11965, '/>go': 11966, '/>next': 11967, '/>secondly,': 11968, '/>still': 11969, '/>things': 11970, '/>three': 11971, '/>without': 11972, '10!': 11973, '1994': 11974, '7,': 11975, '70s,': 11976, '73': 11977, '85': 11978, "90's.": 11979, 'ability,': 11980, 'abstract': 11981, 'acclaim': 11982, 'afternoon,': 11983, 'alexandra': 11984, 'alright.': 11985, 'angry.': 11986, 'anguish': 11987, 'annual': 11988, 'anyhow,': 11989, 'anywhere,': 11990, 'apologize': 11991, 'architect': 11992, 'arkin': 11993, "austen's": 11994, 'author,': 11995, 'authors': 11996, 'ballroom': 11997, 'bart': 11998, 'basil': 11999, 'battlefield': 12000, 'bauer': 12001, 'begin.': 12002, 'begins,': 12003, "ben's": 12004, 'blah,': 12005, 'blending': 12006, 'blinded': 12007, 'blockbusters': 12008, 'bond,': 12009, 'bonding': 12010, 'boogie': 12011, 'branch': 12012, 'breathtaking.': 12013, 'brent': 12014, 'brick': 12015, 'brilliant!': 12016, 'brilliant.<br': 12017, 'brink': 12018, 'buddy,': 12019, 'but...': 12020, 'buttons': 12021, 'california,': 12022, 'cancelled': 12023, 'cathy': 12024, 'cbc': 12025, 'changed,': 12026, "cinema's": 12027, 'classic!': 12028, 'classmates': 12029, 'clean,': 12030, 'clever.': 12031, 'clichéd,': 12032, 'co': 12033, 'cocktail': 12034, 'cocky': 12035, 'colonial': 12036, 'comedy?': 12037, 'compassionate': 12038, 'confirms': 12039, 'confusion,': 12040, 'connects': 12041, 'contend': 12042, 'converted': 12043, 'coppola': 12044, 'counterpart': 12045, 'countries.': 12046, 'creature,': 12047, 'crispin': 12048, 'criticisms': 12049, 'crooks': 12050, 'crop': 12051, 'crummy': 12052, 'cunningham': 12053, 'dani': 12054, 'darius': 12055, 'dated.': 12056, 'daylight': 12057, 'death"': 12058, 'decapitated': 12059, 'della': 12060, 'demonstration': 12061, 'denouement': 12062, 'department,': 12063, 'destination': 12064, 'detective.': 12065, 'different.<br': 12066, 'distinguish': 12067, 'doctor.': 12068, 'doris': 12069, 'doses': 12070, 'download': 12071, 'downtown': 12072, 'drained': 12073, 'dreyfuss': 12074, 'drift': 12075, 'edge,': 12076, 'elmer': 12077, 'elsa': 12078, 'employ': 12079, 'englund': 12080, 'enjoyable.<br': 12081, 'episode.<br': 12082, 'etc...': 12083, 'eternity': 12084, 'ethel': 12085, 'europe.': 12086, 'ewan': 12087, 'exploitative': 12088, 'extras:': 12089, 'facility': 12090, 'fanning': 12091, 'fast-forward': 12092, 'feinstone': 12093, 'fighters': 12094, 'filmmakers,': 12095, 'flavia': 12096, 'fondness': 12097, 'foreboding': 12098, 'formidable': 12099, 'game.<br': 12100, 'get,': 12101, 'goods': 12102, 'grain': 12103, 'graveyard': 12104, 'hardships': 12105, 'hate.': 12106, 'heap': 12107, 'hedy': 12108, 'hepburn': 12109, 'her!': 12110, 'here!': 12111, 'hes': 12112, 'high-tech': 12113, 'hilarious.<br': 12114, 'homosexuality': 12115, 'hopeful': 12116, 'horror.<br': 12117, 'hostage': 12118, 'hottest': 12119, "howard's": 12120, 'identity,': 12121, 'idiot.': 12122, "imdb's": 12123, 'imperial': 12124, 'impressions': 12125, 'incest': 12126, 'inch': 12127, 'incorporate': 12128, 'industry,': 12129, 'informer': 12130, 'inherently': 12131, 'inject': 12132, 'innocent,': 12133, 'insane,': 12134, 'inspires': 12135, 'intellectually': 12136, 'intends': 12137, 'intense,': 12138, 'intense.': 12139, 'interest.<br': 12140, 'interpret': 12141, 'intrigue,': 12142, 'invent': 12143, 'is;': 12144, 'is?': 12145, 'issue.': 12146, 'jackson,': 12147, 'jewelry': 12148, 'jobs,': 12149, 'johansson': 12150, 'juice': 12151, 'kamal': 12152, 'known,': 12153, 'l': 12154, 'lake.': 12155, 'lansbury': 12156, 'large,': 12157, 'latter,': 12158, 'lecture': 12159, 'lennon': 12160, 'leopold': 12161, 'lighten': 12162, 'limp': 12163, 'love?': 12164, 'lowered': 12165, 'lump': 12166, 'lured': 12167, 'made?': 12168, 'maniacal': 12169, 'mannered': 12170, 'married.': 12171, 'martino': 12172, 'mercifully': 12173, 'mercilessly': 12174, 'micheal': 12175, 'mom.': 12176, 'monica': 12177, 'monumental': 12178, 'murderers': 12179, 'musicals,': 12180, 'natali': 12181, 'neighbor,': 12182, 'nonetheless.': 12183, 'nonsense,': 12184, 'nora': 12185, 'notch.': 12186, 'notice.': 12187, "o'": 12188, 'oddball': 12189, 'offense': 12190, 'one).': 12191, 'one;': 12192, 'opposing': 12193, 'optimism': 12194, 'orchestral': 12195, 'originality,': 12196, 'out?': 12197, 'outdoor': 12198, 'overt': 12199, 'overwrought': 12200, "pacino's": 12201, 'participation': 12202, 'particular.': 12203, 'pass.': 12204, 'penchant': 12205, 'pieces,': 12206, 'player.': 12207, 'pouring': 12208, 'preserved': 12209, 'priest,': 12210, 'program,': 12211, 'promotional': 12212, 'proudly': 12213, 'rain,': 12214, 'ranges': 12215, 'ranked': 12216, 'rate.': 12217, 'realism,': 12218, 'recreation': 12219, 'reeks': 12220, 'reno': 12221, 'respects': 12222, 'restraint': 12223, 'resume': 12224, 'rko': 12225, 'rugged': 12226, 'sacrificed': 12227, 'sarcasm': 12228, 'satisfaction': 12229, 'satisfactory': 12230, 'satisfied.': 12231, 'scenario.': 12232, 'sequel.<br': 12233, 'sh*t': 12234, 'shaolin': 12235, "ship's": 12236, 'shooting.': 12237, 'similar,': 12238, 'sins': 12239, 'skipped': 12240, 'slaughtered': 12241, 'sleep,': 12242, 'slow-motion': 12243, 'small-town': 12244, 'smarter': 12245, 'snipes': 12246, 'sons,': 12247, 'spaceship': 12248, 'spots,': 12249, 'standard,': 12250, 'starters,': 12251, 'states,': 12252, 'stealth': 12253, 'stinker.': 12254, "stone's": 12255, 'storytelling,': 12256, 'storytelling.': 12257, 'strain': 12258, 'strangest': 12259, 'stylistic': 12260, 'suggestive': 12261, 'surpassed': 12262, 'symbols': 12263, 'systems': 12264, 'talky': 12265, 'teamed': 12266, "ted's": 12267, 'temporary': 12268, 'tensions': 12269, 'theo': 12270, 'theory,': 12271, 'therapy': 12272, 'throwaway': 12273, 'tide': 12274, 'time).': 12275, 'timing,': 12276, 'topped': 12277, 'track.': 12278, 'transitions': 12279, 'travelling': 12280, 'unappealing': 12281, 'underdeveloped': 12282, 'understatement.': 12283, 'up?': 12284, 'vampires.': 12285, 'vaudeville': 12286, 'virtue': 12287, 'visuals.': 12288, 'voting': 12289, 'weaves': 12290, 'welcomed': 12291, 'wilson,': 12292, 'worm': 12293, 'would,': 12294, 'wounds': 12295, 'wright': 12296, 'writer-director': 12297, 'zany': 12298, 'zhang': 12299, 'zoom': 12300, '!<br': 12301, '"comedy"': 12302, '"high': 12303, '$1': 12304, '(actually': 12305, '(ben': 12306, '(daniel': 12307, "(there's": 12308, '.the': 12309, '/>apart': 12310, '/>or': 12311, '1944': 12312, '1950': 12313, '1963': 12314, '1977': 12315, '1985': 12316, '1986': 12317, '48': 12318, '500': 12319, "70's,": 12320, '8th': 12321, '99%': 12322, ';)': 12323, 'abuse,': 12324, 'adept': 12325, 'again?': 12326, 'ambitions': 12327, 'animators': 12328, 'announces': 12329, 'annoys': 12330, 'antagonist': 12331, 'any,': 12332, 'apocalypse': 12333, 'apple': 12334, 'aptly': 12335, 'artemisia': 12336, 'artful': 12337, 'arts,': 12338, 'aspects.': 12339, 'astronaut': 12340, 'ate': 12341, 'athletic': 12342, 'atmospheric,': 12343, 'atomic': 12344, 'atop': 12345, 'aura': 12346, 'azumi': 12347, 'b-grade': 12348, 'baddie': 12349, 'banana': 12350, 'banks': 12351, 'bathing': 12352, 'batman:': 12353, 'become.': 12354, 'beginning.<br': 12355, 'berenger': 12356, 'bets': 12357, 'better!': 12358, 'better)': 12359, 'billing': 12360, 'biological': 12361, 'bishop': 12362, 'blondell': 12363, 'boarding': 12364, 'boards': 12365, 'boat.': 12366, 'bonds': 12367, 'boot.': 12368, 'bore.': 12369, "brando's": 12370, 'bruckheimer': 12371, 'btk': 12372, 'bubble': 12373, 'bucket': 12374, 'bullies': 12375, 'butchered': 12376, 'cage,': 12377, 'careers.': 12378, 'carlito': 12379, 'carole': 12380, 'caroline': 12381, 'cgi,': 12382, 'changes,': 12383, 'characterizations': 12384, 'cheat': 12385, 'children.<br': 12386, 'clarity': 12387, 'climate': 12388, 'climatic': 12389, 'clyde': 12390, 'coaster': 12391, 'coburn': 12392, 'competently': 12393, 'complains': 12394, 'complement': 12395, 'conclusions': 12396, 'confederate': 12397, 'confession': 12398, 'consequence': 12399, 'contemplating': 12400, 'cortez': 12401, 'costumes.': 12402, 'countryside,': 12403, 'criminal,': 12404, 'critics,': 12405, 'cunning': 12406, 'cursed': 12407, 'cynicism': 12408, 'darkest': 12409, "davis'": 12410, 'declare': 12411, 'declared': 12412, 'delves': 12413, 'demeanor': 12414, 'depardieu': 12415, 'desolate': 12416, 'detroit': 12417, 'di': 12418, 'digs': 12419, 'dim': 12420, 'discount': 12421, 'duchovny': 12422, 'dusty': 12423, 'dwarf': 12424, 'edges': 12425, 'elementary': 12426, 'elsewhere,': 12427, 'enthralling': 12428, 'equals': 12429, 'escapist': 12430, 'etc)': 12431, 'etc.),': 12432, 'evolved': 12433, 'exception,': 12434, 'excitement.': 12435, 'exhibit': 12436, 'existence,': 12437, 'experts': 12438, 'explained,': 12439, 'fare,': 12440, 'fate,': 12441, 'field.': 12442, 'filmmaking': 12443, 'finnish': 12444, 'flee': 12445, 'flirting': 12446, 'fodder': 12447, 'formerly': 12448, 'franchise.': 12449, 'franchot': 12450, 'from?': 12451, 'fur': 12452, 'gannon': 12453, 'garage': 12454, 'gentlemen': 12455, 'ghosts,': 12456, 'girl.<br': 12457, 'godard': 12458, "goldsworthy's": 12459, 'good-natured': 12460, 'good?': 12461, 'gory,': 12462, 'gravity': 12463, 'greene': 12464, 'hall,': 12465, 'hanzo': 12466, 'headache': 12467, 'heather': 12468, 'hence,': 12469, 'his,': 12470, 'honorable': 12471, 'housing': 12472, 'impressively': 12473, 'incorrect': 12474, 'insignificant': 12475, 'interpreted': 12476, 'invariably': 12477, 'invest': 12478, 'irresponsible': 12479, 'jail.': 12480, 'jurassic': 12481, 'katherine': 12482, 'keaton,': 12483, 'kilmer': 12484, 'knees': 12485, 'laden': 12486, 'lake,': 12487, 'lane,': 12488, 'lang': 12489, 'law.': 12490, 'layered': 12491, 'legend.': 12492, 'legion': 12493, 'liberty': 12494, 'liked.': 12495, 'locale': 12496, 'looks.': 12497, 'lt.': 12498, 'ludicrously': 12499, 'm': 12500, 'madly': 12501, 'madness.': 12502, 'maintained': 12503, 'makeup,': 12504, "man'": 12505, 'marquis': 12506, 'mastermind': 12507, 'maybe.': 12508, 'meanings': 12509, 'meet,': 12510, 'mentor': 12511, 'misplaced': 12512, 'monday': 12513, 'monsters.': 12514, 'monstrous': 12515, 'morons': 12516, 'motion.': 12517, 'mouth,': 12518, 'movie!!!': 12519, 'movie."': 12520, 'movies)': 12521, 'movies?': 12522, 'nana': 12523, 'never,': 12524, 'news.': 12525, 'night.<br': 12526, 'non-existent,': 12527, 'nope.': 12528, 'not!': 12529, 'obnoxious,': 12530, 'oprah': 12531, 'overtones': 12532, 'pals': 12533, 'pam': 12534, 'perfectly,': 12535, 'persuade': 12536, 'phantasm': 12537, 'pilot.': 12538, 'plan.': 12539, 'plane,': 12540, 'plane.': 12541, 'popular.': 12542, 'pornographic': 12543, 'portrayal.': 12544, 'powerfully': 12545, 'premiered': 12546, 'primal': 12547, 'professionals': 12548, 'prostitution': 12549, 'public,': 12550, 'queens': 12551, 'rant': 12552, 'rea': 12553, 'read.': 12554, 'reasoning': 12555, 'redeemed': 12556, 'redemption.': 12557, 'registered': 12558, 'relief,': 12559, 'renowned': 12560, 'rental.': 12561, 'reruns': 12562, 'resembled': 12563, 'resorting': 12564, 'revealed.': 12565, 'ripoff': 12566, 'roller-coaster': 12567, 'rooted': 12568, 'row,': 12569, 'russians': 12570, 'sarne': 12571, 'scantily': 12572, 'scarcely': 12573, 'seasons.': 12574, 'seuss': 12575, 'sg-1': 12576, 'shadowy': 12577, 'sharks': 12578, 'sheen': 12579, 'shook': 12580, 'shrink': 12581, 'significantly': 12582, 'sky,': 12583, 'slash': 12584, 'smith.': 12585, 'snap': 12586, 'sordid': 12587, 'sources': 12588, 'sparse': 12589, 'springs': 12590, 'squeeze': 12591, 'stable': 12592, 'stake': 12593, 'stalwart': 12594, 'stepping': 12595, 'subdued': 12596, 'sucked,': 12597, 'supplies': 12598, 'surgeon': 12599, 'surrogate': 12600, 'suspended': 12601, 'suzanne': 12602, 'sympathetic,': 12603, 'table.': 12604, 'take.': 12605, 'talentless': 12606, 'teenager,': 12607, 'temptation': 12608, 'tense,': 12609, 'the,': 12610, 'thorn': 12611, 'throughout.<br': 12612, 'thunder': 12613, 'tina': 12614, 'tired,': 12615, 'twentieth': 12616, 'uncover': 12617, 'unfairly': 12618, 'unfunny.': 12619, 'uniquely': 12620, 'unnamed': 12621, 'untalented': 12622, 'unwittingly': 12623, 'upstairs': 12624, 'versatile': 12625, 'vhs.': 12626, 'vibe': 12627, "victim's": 12628, 'vietnam,': 12629, 'viggo': 12630, 'village.': 12631, 'voters': 12632, 'wait.': 12633, 'warhols': 12634, 'warm,': 12635, 'wars"': 12636, 'waving': 12637, 'way?': 12638, "wayne's": 12639, 'weekend,': 12640, 'wherein': 12641, 'wipe': 12642, "wood's": 12643, 'worry,': 12644, '"citizen': 12645, '"der': 12646, '"king': 12647, '"life': 12648, '"lost': 12649, '"rob': 12650, '"scary': 12651, '"well': 12652, '(along': 12653, '(good': 12654, '(jennifer': 12655, '(remember': 12656, "(she's": 12657, '(sorry': 12658, '/>2': 12659, '/>our': 12660, '/>too': 12661, '/>was': 12662, '1969': 12663, '1989': 12664, '5th': 12665, 'ably': 12666, 'aboriginal': 12667, 'across.': 12668, 'act.<br': 12669, 'adored': 12670, 'albert,': 12671, 'answer,': 12672, 'archer': 12673, 'aristocratic': 12674, 'armor': 12675, 'aspect.': 12676, 'assignment': 12677, 'assistance': 12678, 'association': 12679, 'assorted': 12680, 'attractive.': 12681, 'autobiography': 12682, 'away!': 12683, 'awesome!': 12684, 'backdrops': 12685, 'backing': 12686, 'bald': 12687, 'behavior,': 12688, 'beta': 12689, 'billie': 12690, 'bits,': 12691, 'blackmail': 12692, 'bloodbath': 12693, 'blue,': 12694, 'board.': 12695, 'bodyguard': 12696, 'bombing': 12697, 'botched': 12698, 'bowling': 12699, 'bravo': 12700, 'bursting': 12701, 'cable,': 12702, 'cake.': 12703, 'california.': 12704, 'canada,': 12705, 'cannibals': 12706, 'caper': 12707, 'carnival': 12708, 'carpet': 12709, 'cars.': 12710, 'cassie': 12711, 'casted': 12712, 'category,': 12713, 'ceremony': 12714, 'charlie,': 12715, 'cheadle': 12716, 'cheek': 12717, 'china.': 12718, 'choices.': 12719, 'christ,': 12720, 'christie': 12721, 'clearly,': 12722, 'co-written': 12723, 'coarse': 12724, 'coen': 12725, 'cold.': 12726, 'collection,': 12727, 'collins': 12728, 'coming,': 12729, 'companions': 12730, 'conception': 12731, 'consequences.': 12732, 'consummate': 12733, 'context,': 12734, 'continuity,': 12735, 'contrasting': 12736, 'convent': 12737, 'convention': 12738, 'coop': 12739, 'corbin': 12740, 'could,': 12741, 'court,': 12742, 'crater': 12743, 'credibility.': 12744, 'creeps': 12745, 'danced': 12746, 'decade,': 12747, 'decades.': 12748, 'december': 12749, 'decency': 12750, 'declares': 12751, 'degree,': 12752, 'degree.': 12753, 'delia': 12754, 'dern': 12755, 'developments': 12756, 'director.<br': 12757, 'director/writer': 12758, 'disappearing': 12759, 'disease.': 12760, 'documented': 12761, 'douglas,': 12762, 'downfall': 12763, 'draft': 12764, 'drain': 12765, 'drama.<br': 12766, 'economy': 12767, 'eddy': 12768, 'edited,': 12769, 'egg': 12770, 'eldest': 12771, 'elliot': 12772, 'embark': 12773, 'embarks': 12774, 'emerged': 12775, 'emerging': 12776, 'enjoyably': 12777, 'entertains': 12778, 'environment,': 12779, 'erratic': 12780, 'etc.).': 12781, 'everything.<br': 12782, 'exclusive': 12783, 'fable': 12784, 'fail.': 12785, 'fails,': 12786, 'failure,': 12787, 'failures': 12788, 'famous,': 12789, 'fantastically': 12790, 'fateful': 12791, 'fiancée': 12792, 'film"': 12793, 'films:': 12794, 'flamenco': 12795, 'food.': 12796, 'forgettable,': 12797, 'frightening.': 12798, 'furthermore': 12799, 'geeky': 12800, 'goat': 12801, 'grieving': 12802, 'guarded': 12803, 'guise': 12804, 'happier': 12805, 'harp': 12806, 'heal': 12807, 'heart.<br': 12808, 'helmet': 12809, 'hispanic': 12810, 'hoffman,': 12811, 'hooks': 12812, 'hoover': 12813, 'hopefully,': 12814, 'horse.': 12815, 'how,': 12816, 'humiliating': 12817, 'humphrey': 12818, 'hunter,': 12819, 'imagining': 12820, 'immediately,': 12821, 'impression.': 12822, 'india,': 12823, 'injury': 12824, 'injustice': 12825, 'intellect': 12826, 'interiors': 12827, 'isabel': 12828, 'ivan': 12829, 'jam': 12830, 'january': 12831, 'jerky': 12832, 'jobs.': 12833, 'joking': 12834, 'joshua': 12835, 'jovi': 12836, 'joyous': 12837, 'juicy': 12838, 'kings': 12839, 'kisses': 12840, 'laced': 12841, 'laputa': 12842, 'laugh-out-loud': 12843, 'legs,': 12844, 'level.<br': 12845, 'links': 12846, 'listing': 12847, 'literally,': 12848, 'locales': 12849, 'loudly': 12850, 'lung': 12851, 'madsen': 12852, 'maiden': 12853, 'malevolent': 12854, 'man!': 12855, 'man",': 12856, 'management': 12857, "mann's": 12858, 'martians': 12859, 'masterpiece.<br': 12860, 'media,': 12861, 'melbourne': 12862, 'michel': 12863, 'mission,': 12864, 'months.': 12865, 'movie-making': 12866, 'myriad': 12867, 'names.': 12868, 'natasha': 12869, 'nauseating': 12870, 'needed,': 12871, 'norwegian': 12872, 'nowadays.': 12873, "o'brien": 12874, 'olds': 12875, 'operatic': 12876, 'oppressive': 12877, 'owning': 12878, 'pacing.': 12879, 'paper.': 12880, 'parisian': 12881, 'parker,': 12882, 'parodies': 12883, 'patch': 12884, 'paul,': 12885, 'pauses': 12886, 'pertwee': 12887, 'place?': 12888, 'play.<br': 12889, 'players,': 12890, 'plays.': 12891, 'policemen': 12892, 'ponder': 12893, 'portrayed,': 12894, 'posh': 12895, 'postman': 12896, 'practices': 12897, 'praying': 12898, 'preferably': 12899, 'premier': 12900, 'price.': 12901, 'program.': 12902, 'progressed': 12903, 'progressively': 12904, 'prop': 12905, 'propaganda.': 12906, 'purse': 12907, 'q': 12908, 'qualified': 12909, 'quirks': 12910, 'radiation': 12911, 'raving': 12912, 'recipe': 12913, 'reckon': 12914, 'recognised': 12915, 'refusing': 12916, 'remaking': 12917, 'rescues': 12918, 'restless': 12919, 'retirement': 12920, 'revelations': 12921, 'revolution.': 12922, 'revolve': 12923, 'revolver': 12924, 'rights,': 12925, 'roaming': 12926, 'rochester.': 12927, 'roll,': 12928, 'romania': 12929, 'rub': 12930, 'russo': 12931, 'sailors': 12932, "sandler's": 12933, 'sans': 12934, 'sasquatch': 12935, 'says.': 12936, 'scarecrows': 12937, 'scarier': 12938, 'scaring': 12939, 'scary.<br': 12940, 'schedule': 12941, 'score:': 12942, 'sensitivity': 12943, 'sentences': 12944, 'series)': 12945, 'shakes': 12946, 'shattered': 12947, 'shaun': 12948, 'shelter': 12949, 'sheridan': 12950, 'sherry': 12951, 'sibling': 12952, 'simplest': 12953, 'sleeper': 12954, 'sneaking': 12955, 'so...': 12956, 'soldiers.': 12957, 'sophistication': 12958, 'sort.': 12959, 'sorta': 12960, 'spliced': 12961, 'sprinkled': 12962, 'stands,': 12963, 'started,': 12964, 'stefan': 12965, 'stink': 12966, 'stomach.': 12967, 'stoned': 12968, 'stripper': 12969, "studio's": 12970, 'succeed.': 12971, 'sunrise': 12972, 'surfers': 12973, 'sybil': 12974, 'tarzan,': 12975, "taylor's": 12976, 'tearing': 12977, 'tears,': 12978, 'technological': 12979, 'tel': 12980, 'tepid': 12981, 'terrific,': 12982, 'terror.': 12983, 'tested': 12984, 'thai': 12985, 'there`s': 12986, 'this)': 12987, 'tho': 12988, 'those.': 12989, 'threaten': 12990, 'thrillers,': 12991, 'timed': 12992, 'toll': 12993, 'tomei': 12994, 'tourists': 12995, 'townspeople': 12996, 'true.<br': 12997, 'turd': 12998, 'turtle': 12999, 'undertaker': 13000, 'uninteresting,': 13001, 'unsuccessful': 13002, 'variations': 13003, 'versions,': 13004, 'viewpoint': 13005, 'villagers': 13006, 'visitor': 13007, 'w/': 13008, 'wants.': 13009, 'watched,': 13010, 'whatsoever.<br': 13011, 'wheelchair': 13012, 'wind"': 13013, 'winston': 13014, 'wraps': 13015, 'zu': 13016, '"let': 13017, '"mad': 13018, "'what": 13019, '(1)': 13020, '(before': 13021, '(check': 13022, '(chris': 13023, '(hence': 13024, '(mainly': 13025, '(mark': 13026, '(much': 13027, '/>3)': 13028, '/>did': 13029, '/>during': 13030, '/>everyone': 13031, '/>someone': 13032, '/>thank': 13033, '0/10': 13034, '80%': 13035, 'abducted': 13036, 'abominable': 13037, 'abomination': 13038, 'abound': 13039, 'accomplishment': 13040, 'actors/actresses': 13041, 'adventurous': 13042, 'advertisement': 13043, 'agree,': 13044, 'ahead,': 13045, 'airing': 13046, 'alain': 13047, 'all...': 13048, 'allegedly': 13049, 'allison': 13050, 'allusions': 13051, 'altogether.': 13052, 'amateurish,': 13053, 'amiable': 13054, 'answer.': 13055, 'anti-hero': 13056, 'anyone?': 13057, 'art.<br': 13058, "arthur's": 13059, 'aspects,': 13060, 'astonished': 13061, 'astute': 13062, 'atrocities': 13063, 'attitude,': 13064, 'attracts': 13065, 'awkwardly': 13066, 'b/c': 13067, 'baddies': 13068, 'ball,': 13069, 'balloon': 13070, 'barman': 13071, 'barnes': 13072, 'bastard': 13073, 'batman.': 13074, 'battles,': 13075, 'be!': 13076, 'be:': 13077, 'beers': 13078, 'belle': 13079, 'best!': 13080, 'bickering': 13081, 'bills': 13082, 'blended': 13083, 'boils': 13084, 'bores': 13085, 'bouncing': 13086, 'box-office': 13087, 'brute': 13088, 'buffy': 13089, "burton's": 13090, "cage's": 13091, 'caine,': 13092, 'capote': 13093, 'capsule': 13094, 'caring,': 13095, 'castro': 13096, 'cavalry': 13097, 'celebrating': 13098, 'celluloid.': 13099, 'chandler': 13100, 'character)': 13101, 'chase,': 13102, 'chat': 13103, 'chews': 13104, 'chore': 13105, 'clinic': 13106, 'cloak': 13107, 'co.': 13108, 'collapse': 13109, 'comic,': 13110, 'commands': 13111, 'condescending': 13112, 'confesses': 13113, 'continent': 13114, 'continuation': 13115, 'coping': 13116, 'correct.': 13117, 'corridors': 13118, 'cracker': 13119, 'crash,': 13120, 'credible.': 13121, 'crenna': 13122, 'crowe': 13123, 'cruella': 13124, 'customers': 13125, 'dakota': 13126, 'dane': 13127, 'darling': 13128, 'dealers': 13129, 'deliverance': 13130, 'descends': 13131, 'did!': 13132, 'disagree.': 13133, 'discussions': 13134, 'dish': 13135, 'does.<br': 13136, "doesn't,": 13137, 'dominick': 13138, 'doubt.': 13139, 'dreaded': 13140, 'dreadful.': 13141, 'drummer': 13142, 'dry.': 13143, 'dying,': 13144, 'dying.': 13145, 'eagle': 13146, 'edits': 13147, 'efficient': 13148, 'elevated': 13149, 'elliott': 13150, 'end?': 13151, 'enjoyed.': 13152, 'ensues.': 13153, 'entertainment.<br': 13154, 'enthralled': 13155, 'everett': 13156, 'evil"': 13157, 'exceptions': 13158, 'exist,': 13159, 'existed.': 13160, 'exists.': 13161, 'explanations': 13162, 'extend': 13163, 'extreme.': 13164, 'familiarity': 13165, 'fans.<br': 13166, 'farce,': 13167, 'feisty': 13168, 'fernando': 13169, 'filmic': 13170, 'filmmakers.': 13171, 'fit.': 13172, 'flea': 13173, 'fleming': 13174, 'float': 13175, 'foggy': 13176, 'forbes': 13177, 'foremost': 13178, 'forties': 13179, 'frenetic': 13180, 'funds': 13181, 'funnier.': 13182, 'furry': 13183, 'gang.': 13184, 'gangs': 13185, 'garbage,': 13186, 'garbage.<br': 13187, 'gay,': 13188, 'giovanna': 13189, 'glory.': 13190, 'graces': 13191, 'gram': 13192, 'graphically': 13193, 'grumpy': 13194, 'guns.': 13195, 'haired': 13196, 'hallucinations': 13197, 'happened?': 13198, 'healing': 13199, 'heartily': 13200, 'heir': 13201, 'hick': 13202, 'holocaust': 13203, 'horrible!': 13204, 'horse,': 13205, 'hostel': 13206, 'hosts': 13207, 'house.<br': 13208, 'houses,': 13209, 'ideals': 13210, 'identity.': 13211, 'illiterate': 13212, 'implication': 13213, 'indicates': 13214, 'inducing': 13215, 'insulted': 13216, 'intelligent.': 13217, 'irritating.': 13218, 'izzard': 13219, 'jessie': 13220, 'joanna': 13221, 'joy,': 13222, 'joy.': 13223, 'judges': 13224, 'kaufman': 13225, 'keitel': 13226, 'kentucky': 13227, 'kidding.': 13228, 'kindness': 13229, 'krishna': 13230, 'kusturica': 13231, 'ladies,': 13232, 'late-night': 13233, 'latter.': 13234, 'laughs.<br': 13235, 'lawyers': 13236, 'leno': 13237, 'like.<br': 13238, 'lin': 13239, 'lines.<br': 13240, 'locke': 13241, 'logic.': 13242, 'looses': 13243, 'lost.<br': 13244, 'lubitsch': 13245, 'luscious': 13246, 'luzhin': 13247, 'machine.': 13248, 'mad.': 13249, 'marathon': 13250, 'marvelously': 13251, 'memory,': 13252, 'miniature': 13253, 'mins': 13254, 'mitchell,': 13255, 'mj': 13256, 'modern,': 13257, 'more!': 13258, 'mostly,': 13259, 'mountains,': 13260, 'movie!<br': 13261, 'movies:': 13262, 'murdered,': 13263, 'myths': 13264, 'neglect': 13265, 'neither.': 13266, 'ninjas': 13267, 'noticing': 13268, 'novels,': 13269, 'nuance': 13270, "o'sullivan": 13271, 'om': 13272, 'omega': 13273, 'one-sided': 13274, 'open.': 13275, 'orgy': 13276, 'owl': 13277, 'paragraph': 13278, 'parks': 13279, 'participating': 13280, 'pbs': 13281, 'peek': 13282, 'penguin': 13283, 'picturesque': 13284, 'pinnacle': 13285, 'pitched': 13286, 'plotted': 13287, 'plummer': 13288, 'predecessor': 13289, 'prejudices': 13290, 'pressures': 13291, 'preventing': 13292, 'priests': 13293, 'productions.': 13294, 'prophecy': 13295, 'prototype': 13296, 'provoke': 13297, 'punished': 13298, 'rack': 13299, 'raul': 13300, 'recapture': 13301, 'recommending': 13302, 'reflecting': 13303, 'refuge': 13304, 'rehearsal': 13305, 'request': 13306, 'rewind': 13307, 'right-wing': 13308, 'risks': 13309, 'roads': 13310, 'rohmer': 13311, "rosemary's": 13312, 'rosenstrasse': 13313, 'rules,': 13314, 'rusty': 13315, 'sacred': 13316, 'sardonic': 13317, 'satire.': 13318, 'scarlet': 13319, 'scenario,': 13320, 'scene:': 13321, 'searches': 13322, 'seduced': 13323, 'seduction': 13324, 'sensibilities': 13325, 'shakespeare,': 13326, 'sheep': 13327, 'sho': 13328, 'shortened': 13329, 'shrill': 13330, 'silk': 13331, 'simpsons': 13332, 'sites': 13333, 'sixty': 13334, 'skillfully': 13335, 'slug': 13336, 'soldier,': 13337, 'soldier.': 13338, 'soooo': 13339, 'sophomoric': 13340, 'spawned': 13341, 'spoiler,': 13342, 'spot.': 13343, 'stardust': 13344, 'starlet': 13345, 'start?': 13346, 'stills': 13347, 'stir': 13348, 'strapped': 13349, 'stricken': 13350, 'stubborn': 13351, 'stupidly': 13352, 'style.<br': 13353, 'sub-plots': 13354, 'subconscious': 13355, 'superstar': 13356, 'swamp': 13357, 'sweat': 13358, 'sweden': 13359, 'swift': 13360, 'task.': 13361, 'tea,': 13362, 'technology.': 13363, 'teeth.': 13364, 'terms,': 13365, 'textbook': 13366, 'the<br': 13367, 'thematic': 13368, 'they,': 13369, 'this...': 13370, 'thoughts.': 13371, 'throwback': 13372, 'tight,': 13373, 'time),': 13374, 'times)': 13375, 'tiresome,': 13376, 'titles.': 13377, 'tree,': 13378, 'triad': 13379, 'tricky': 13380, 'turgid': 13381, 'turner,': 13382, 'unconscious': 13383, 'underdog': 13384, 'uneven,': 13385, 'uninspiring': 13386, 'upon.': 13387, 'usage': 13388, 'v': 13389, 'vaughn': 13390, 'vcr': 13391, 'villa': 13392, 'vipul': 13393, 'wars.': 13394, 'was:': 13395, 'washing': 13396, 'weirdo': 13397, 'welcome.': 13398, 'well-meaning': 13399, "wells'": 13400, 'werewolf,': 13401, 'wheels': 13402, 'willem': 13403, 'wires': 13404, 'worldwide': 13405, 'worship': 13406, 'wronged': 13407, 'wwii.': 13408, 'youngsters': 13409, 'zatoichi': 13410, '"are': 13411, '"basic': 13412, '"dirty': 13413, '"three': 13414, '(*1/2)': 13415, '(apart': 13416, '(danny': 13417, "(i've": 13418, '(jon': 13419, '(other': 13420, '(since': 13421, '(thank': 13422, '(two': 13423, '/>7': 13424, '/>based': 13425, '/>dvd': 13426, '/>throughout': 13427, '1939': 13428, '1946': 13429, '1979': 13430, '1980s.': 13431, '1988': 13432, '1991': 13433, '2006,': 13434, '6th': 13435, 'abbott': 13436, 'acting?': 13437, 'actively': 13438, 'aimless': 13439, 'aimlessly': 13440, 'along.<br': 13441, 'amuse': 13442, 'amusingly': 13443, 'angel,': 13444, 'annoyance': 13445, 'anonymous': 13446, 'anyway)': 13447, 'anyways': 13448, 'apocalyptic': 13449, 'archive': 13450, 'associates': 13451, 'attendant': 13452, 'attitude.': 13453, 'aunts': 13454, 'babysitter': 13455, 'bag.': 13456, 'bait': 13457, 'basis.': 13458, 'batman,': 13459, 'beckham': 13460, 'belonged': 13461, 'between,': 13462, 'bizarre.': 13463, 'blaxploitation': 13464, 'bleed': 13465, 'blink': 13466, 'born,': 13467, "boys'": 13468, 'bravery': 13469, 'brock': 13470, "caine's": 13471, 'campbell,': 13472, 'candy.': 13473, 'caretaker': 13474, 'cartoons.': 13475, 'cavemen': 13476, 'ceiling': 13477, 'celine': 13478, 'cell,': 13479, 'censors': 13480, 'censorship': 13481, 'chained': 13482, 'chalk': 13483, 'cheaper': 13484, 'chester': 13485, 'christensen': 13486, 'cloth': 13487, 'collar': 13488, 'communism': 13489, 'competitive': 13490, 'complexities': 13491, 'compulsive': 13492, 'conceit': 13493, 'condition.': 13494, 'conquer': 13495, 'consequently': 13496, 'cos': 13497, 'costs,': 13498, 'cram': 13499, 'crawl': 13500, 'creations': 13501, 'criminally': 13502, 'criminals.': 13503, 'critic,': 13504, 'crushing': 13505, 'crypt': 13506, 'custody': 13507, 'dahmer': 13508, 'darkman': 13509, 'data': 13510, 'deaths,': 13511, 'decades,': 13512, 'deck': 13513, 'deftly': 13514, 'delivery.': 13515, 'demanded': 13516, 'dense': 13517, 'depressing,': 13518, 'devilish': 13519, 'director)': 13520, 'disappoint.': 13521, 'disasters': 13522, 'disbelief,': 13523, 'disney.': 13524, 'disservice': 13525, 'distraction': 13526, 'downside': 13527, 'dress,': 13528, 'dud.': 13529, 'dug': 13530, 'earning': 13531, 'easiest': 13532, 'effects.<br': 13533, 'effort.<br': 13534, 'effortless': 13535, 'electricity': 13536, 'enables': 13537, 'enlisted': 13538, 'environmental': 13539, 'envy': 13540, 'ethics': 13541, 'evening,': 13542, "everybody's": 13543, 'ewoks': 13544, 'exhibits': 13545, 'expertise': 13546, 'expressions.': 13547, 'extent,': 13548, 'extent.': 13549, 'external': 13550, 'extreme,': 13551, 'eyre"': 13552, 'fairness,': 13553, 'familiar,': 13554, 'farce.': 13555, 'father.<br': 13556, 'favor.': 13557, 'finance': 13558, 'flame': 13559, 'flips': 13560, 'focus.': 13561, 'footsteps': 13562, 'format,': 13563, 'frame,': 13564, 'frost': 13565, 'gage': 13566, 'gallery': 13567, 'gays': 13568, 'geniuses': 13569, 'genres,': 13570, 'gerald': 13571, "get's": 13572, 'gibson': 13573, 'giggle': 13574, 'given,': 13575, 'glee': 13576, 'good)': 13577, 'goodman': 13578, 'grabbing': 13579, 'granger': 13580, 'grin': 13581, 'gripe': 13582, 'grocery': 13583, 'grounded': 13584, 'guilt,': 13585, 'hale': 13586, 'harmony': 13587, 'hate,': 13588, 'have.<br': 13589, 'heightened': 13590, 'help.<br': 13591, 'henchmen': 13592, 'heroes.': 13593, 'hideously': 13594, 'hilary': 13595, 'him)': 13596, 'hometown': 13597, 'horn': 13598, 'humorous.': 13599, 'ichi': 13600, 'imagine,': 13601, 'immigrants': 13602, 'impossibly': 13603, 'incessant': 13604, 'interacting': 13605, 'interested,': 13606, 'intertwined': 13607, 'inviting': 13608, 'it?"': 13609, 'italy,': 13610, 'jameson': 13611, 'jed': 13612, 'jesus,': 13613, 'jonestown': 13614, "kurosawa's": 13615, 'lately,': 13616, 'ledger': 13617, 'lesson.': 13618, 'lessons.': 13619, 'levy': 13620, 'lieutenant': 13621, 'lincoln,': 13622, 'liza': 13623, "london's": 13624, 'lovable,': 13625, 'luc': 13626, 'ma': 13627, 'magnificent,': 13628, 'mamet': 13629, 'man?': 13630, 'marching': 13631, 'marcus': 13632, 'marijuana': 13633, 'marvellous': 13634, 'massey': 13635, 'mcadams': 13636, 'measures': 13637, 'mediocre,': 13638, 'metaphysical': 13639, 'mills': 13640, 'miscast.': 13641, 'mismatched': 13642, 'mission.': 13643, 'model,': 13644, 'moment.<br': 13645, 'morning.': 13646, 'move,': 13647, 'movie-going': 13648, 'murderer,': 13649, 'muted': 13650, "n'": 13651, 'naive,': 13652, 'naming': 13653, 'narcissistic': 13654, 'neeson': 13655, 'neon': 13656, 'neutral': 13657, 'nintendo': 13658, 'no-nonsense': 13659, "nobody's": 13660, 'normally,': 13661, 'nostril': 13662, 'nothing.<br': 13663, 'novice': 13664, "o'neill": 13665, 'observed': 13666, 'off!': 13667, 'off-screen': 13668, 'officer.': 13669, 'olive': 13670, 'organs': 13671, 'outbursts': 13672, 'overdone,': 13673, 'ozzy': 13674, 'p.': 13675, 'pacino,': 13676, 'padding': 13677, 'panned': 13678, 'pathos': 13679, 'pavarotti': 13680, 'pepper': 13681, 'percentage': 13682, 'permanently': 13683, 'perpetually': 13684, 'peterson': 13685, 'phrases': 13686, 'platoon': 13687, 'please!': 13688, 'poet': 13689, 'polite': 13690, 'poorest': 13691, 'posed': 13692, 'pressing': 13693, 'pretty.': 13694, 'profanity,': 13695, 'prophet': 13696, 'purposely': 13697, 'putrid': 13698, 'puzzling': 13699, 'quick,': 13700, 'ranting': 13701, 'rebecca': 13702, 'rebellion': 13703, 'reception': 13704, 'redeems': 13705, 'redemption,': 13706, 'refugee': 13707, 'regime': 13708, 'regrets': 13709, 'reincarnation': 13710, 'repetitive,': 13711, 'reporter,': 13712, 'researching': 13713, 'restricted': 13714, 'resurrect': 13715, 'resurrected': 13716, 'revisit': 13717, 'ridiculous.<br': 13718, 'right!': 13719, 'rigid': 13720, 'ring.': 13721, 'robber': 13722, 'rubbish,': 13723, 'rumors': 13724, 'runner': 13725, 'said:': 13726, 'says:': 13727, 'science-fiction': 13728, 'screwing': 13729, 'scriptwriters': 13730, 'seal': 13731, 'secretary,': 13732, 'sensation': 13733, 'service.': 13734, 'sessions': 13735, 'sexy.': 13736, 'shack': 13737, 'shaq': 13738, 'shatner': 13739, 'sheriff.': 13740, 'shifting': 13741, 'ship.': 13742, 'shop.': 13743, 'sickness': 13744, 'simon,': 13745, 'site.': 13746, 'skeleton': 13747, 'slapping': 13748, 'sleepy': 13749, 'smack': 13750, 'sneaks': 13751, 'socialist': 13752, "soderbergh's": 13753, 'solved': 13754, 'spared': 13755, 'spectrum': 13756, 'speeding': 13757, 'st': 13758, 'statement.': 13759, 'subtitles,': 13760, 'suit,': 13761, 'superman,': 13762, 'support.': 13763, 'supporters': 13764, 'surprising,': 13765, 'surprising.': 13766, 'suspect,': 13767, 'sweet.': 13768, 'sykes': 13769, 'syndrome': 13770, 'tall,': 13771, 'teens,': 13772, 'telling.': 13773, 'thankless': 13774, 'think)': 13775, 'threats': 13776, 'tighter': 13777, 'time:': 13778, 'transplant': 13779, 'trey': 13780, 'uh,': 13781, 'um,': 13782, 'unbearable.': 13783, 'uncle,': 13784, 'unfinished': 13785, 'upbringing': 13786, 'ursula': 13787, 'utilized': 13788, 'vacuous': 13789, 'video.<br': 13790, 'vietnamese': 13791, 'village,': 13792, 'vincente': 13793, 'virgin,': 13794, 'vonnegut': 13795, 'voyager': 13796, 'wasted,': 13797, 'ways.<br': 13798, 'wb': 13799, 'well!': 13800, 'westerns.': 13801, 'wickedly': 13802, 'willy': 13803, 'woman"': 13804, 'women.<br': 13805, 'wooden.': 13806, 'world?': 13807, 'worth.': 13808, 'worthless.': 13809, 'wrenching': 13810, 'zombie,': 13811, '"and': 13812, '"first': 13813, '"friday': 13814, '"from': 13815, '"hot': 13816, '"she': 13817, "'60s": 13818, '(2)': 13819, '(here': 13820, '(stephen': 13821, '(steve': 13822, '(usually': 13823, '(while': 13824, '/>acting': 13825, '/>along': 13826, '/>bad': 13827, '/>basically,': 13828, '/>finally': 13829, '/>her': 13830, '/>such': 13831, '/>ultimately,': 13832, '180': 13833, '1930s,': 13834, '1934': 13835, '1959': 13836, '1:': 13837, '2000,': 13838, '2001,': 13839, '3:': 13840, '400': 13841, '5)': 13842, 'abilities.': 13843, 'ability.': 13844, 'absurdly': 13845, 'accents.': 13846, 'accustomed': 13847, 'actor.<br': 13848, 'afraid.': 13849, 'afterwards,': 13850, 'agatha': 13851, 'all;': 13852, 'allegory': 13853, 'almighty': 13854, 'amber': 13855, 'anderson,': 13856, 'andrea': 13857, 'angle.': 13858, 'another.<br': 13859, 'appalling.': 13860, 'arbitrary': 13861, 'archie': 13862, 'arthur,': 13863, 'ashraf': 13864, 'assumption': 13865, 'astronauts': 13866, 'atlantic': 13867, 'atrocity': 13868, 'attachment': 13869, 'auteur': 13870, 'autistic': 13871, 'avalanche': 13872, 'baffled': 13873, 'baseketball': 13874, 'basket': 13875, 'begged': 13876, 'ben,': 13877, 'bethany': 13878, 'bleak,': 13879, 'bleeding': 13880, 'bliss': 13881, 'boast': 13882, 'boat,': 13883, 'bonanza': 13884, 'boob': 13885, 'boogeyman': 13886, 'brain,': 13887, 'brennan': 13888, 'britain,': 13889, 'brits': 13890, 'budget.<br': 13891, 'bump': 13892, 'bumps': 13893, 'busted': 13894, 'campers': 13895, 'carlyle': 13896, 'carradine,': 13897, 'catalog': 13898, 'cent': 13899, 'centres': 13900, 'chairman': 13901, 'chang': 13902, 'chapters': 13903, 'charisma,': 13904, 'chase.': 13905, 'checks': 13906, 'chen': 13907, 'childlike': 13908, 'choreographer': 13909, 'classroom': 13910, 'cloud': 13911, 'colourful': 13912, 'compound': 13913, 'conflict.': 13914, 'construct': 13915, 'convicts': 13916, 'core,': 13917, 'correctness': 13918, 'costume,': 13919, 'counts.': 13920, 'cracked': 13921, 'craving': 13922, 'created,': 13923, 'criminals,': 13924, 'criticizing': 13925, 'critics.': 13926, 'crouse': 13927, 'crow': 13928, "cusack's": 13929, 'dam': 13930, 'danger.': 13931, 'dared': 13932, 'daughters,': 13933, 'dawson,': 13934, 'design.': 13935, 'destroyed.': 13936, 'dev': 13937, 'devastated': 13938, 'dialogs,': 13939, 'dignified': 13940, 'disappointment.<br': 13941, 'disappoints': 13942, 'disbelief.': 13943, 'disconnected': 13944, 'displeasure': 13945, 'disrespect': 13946, 'distracting.': 13947, 'distress': 13948, 'doing.<br': 13949, 'dominates': 13950, 'donner': 13951, 'dreck.': 13952, 'driver,': 13953, 'drown': 13954, 'dual': 13955, 'dubbing,': 13956, 'durbin': 13957, 'duties': 13958, 'dyke': 13959, 'eighth': 13960, 'elephants': 13961, 'elevates': 13962, 'ella': 13963, 'else?': 13964, 'em': 13965, 'empty.': 13966, 'encouraging': 13967, 'end...': 13968, 'endearing.': 13969, 'endured': 13970, 'enemy,': 13971, 'engages': 13972, 'engrossed': 13973, 'erik': 13974, 'everybody,': 13975, 'evocative': 13976, 'evolves': 13977, 'examined': 13978, 'example)': 13979, 'explanation,': 13980, 'explode': 13981, 'expressive': 13982, 'extras,': 13983, 'extravagant': 13984, 'face"': 13985, 'facts.': 13986, 'fading': 13987, 'fagin': 13988, 'far.<br': 13989, 'farmers': 13990, 'fatally': 13991, 'fault,': 13992, 'faults,': 13993, 'fearing': 13994, 'films;': 13995, 'finished,': 13996, 'flawed,': 13997, 'flood': 13998, 'floriane': 13999, "flynn's": 14000, 'following.': 14001, 'forgiveness': 14002, 'formal': 14003, 'formula,': 14004, 'forth.': 14005, 'franchise,': 14006, 'freely': 14007, 'frenzy': 14008, 'freshman': 14009, 'front,': 14010, 'gandolfini': 14011, 'geared': 14012, 'geek': 14013, 'generation,': 14014, 'generous.': 14015, 'gil': 14016, 'gimmicks': 14017, 'goddess': 14018, 'grace,': 14019, 'grace.': 14020, 'graduated': 14021, 'grendel': 14022, "griffith's": 14023, 'grown-up': 14024, 'gym': 14025, 'had.<br': 14026, 'hail': 14027, 'hailed': 14028, 'hamming': 14029, 'hams': 14030, 'haunts': 14031, 'hazzard': 14032, 'heroine.': 14033, 'hesitation': 14034, 'highlight.': 14035, 'highlighted': 14036, 'hitchcock,': 14037, 'hogan': 14038, 'horses,': 14039, 'humor.<br': 14040, 'idiocy': 14041, 'idle': 14042, 'ii"': 14043, 'illusion': 14044, 'implications': 14045, 'improvised': 14046, 'in?': 14047, 'incompetence': 14048, 'incorporated': 14049, 'indulgent': 14050, 'infant': 14051, 'inflicted': 14052, 'inherit': 14053, 'initially,': 14054, 'innuendo': 14055, 'instrumental': 14056, 'intended.': 14057, 'invading': 14058, 'irreverent': 14059, 'irwin': 14060, 'itchy': 14061, 'james,': 14062, "jim's": 14063, 'jock': 14064, 'john,': 14065, 'jungle,': 14066, 'kill.': 14067, 'killings,': 14068, 'kornbluth': 14069, 'kristofferson': 14070, 'lange': 14071, 'lastly,': 14072, 'laugh.<br': 14073, 'lengths': 14074, 'life)': 14075, 'lifetime.': 14076, "lincoln's": 14077, 'listener': 14078, 'll': 14079, 'log': 14080, 'lol.': 14081, 'lommel': 14082, 'lonely,': 14083, 'long-suffering': 14084, 'lord,': 14085, 'lorenzo': 14086, 'lorre': 14087, 'low-budget,': 14088, 'macy,': 14089, 'malcolm': 14090, 'male,': 14091, 'manchu': 14092, 'manners': 14093, 'marjorie': 14094, 'marlene': 14095, "martin's": 14096, 'mask,': 14097, 'materials': 14098, 'maverick': 14099, 'mcdowell': 14100, 'meditation': 14101, 'melinda': 14102, 'melt': 14103, 'memories,': 14104, 'men.<br': 14105, 'mexico,': 14106, 'midler': 14107, 'misfire': 14108, 'mish-mash': 14109, 'mistake.<br': 14110, 'mistakes.': 14111, 'modicum': 14112, 'monotone': 14113, 'morse': 14114, 'mother.<br': 14115, 'motif': 14116, 'mud': 14117, 'mutants': 14118, 'need.': 14119, 'neo': 14120, 'niche': 14121, 'noah': 14122, 'norton': 14123, 'noticeably': 14124, "o'toole": 14125, 'occasion,': 14126, 'one"': 14127, 'one-liners,': 14128, 'opponent': 14129, 'oral': 14130, 'ordinary,': 14131, 'ourselves.': 14132, 'outbreak': 14133, 'overcomes': 14134, 'overseas': 14135, 'passive': 14136, 'path.': 14137, 'patriarch': 14138, 'payed': 14139, 'peasant': 14140, 'penalty': 14141, 'perpetual': 14142, 'person.<br': 14143, 'pickup': 14144, 'pita': 14145, "planet's": 14146, 'plantation': 14147, 'plants': 14148, 'point"': 14149, 'pond': 14150, 'popular,': 14151, "powell's": 14152, 'powers,': 14153, 'pows': 14154, 'preceded': 14155, 'preserve': 14156, 'principles': 14157, 'print.': 14158, 'privilege': 14159, 'profile': 14160, 'proposes': 14161, 'pros': 14162, 'prospect': 14163, 'pure,': 14164, 'quality.<br': 14165, 'quoting': 14166, 'raggedy': 14167, 'rang': 14168, 'ranger': 14169, 'reality.<br': 14170, 'really.<br': 14171, 'recognizes': 14172, 'recommended!': 14173, 'recreated': 14174, 'recruits': 14175, 'redgrave': 14176, 'reduce': 14177, 'renny': 14178, 'reprising': 14179, 'republican': 14180, 'returns,': 14181, 'reversed': 14182, 'ripe': 14183, 'rizzo': 14184, 'roach': 14185, 'roaring': 14186, 'robots,': 14187, 'robs': 14188, 'roommates': 14189, 'rosanna': 14190, 'rudy': 14191, 'rule,': 14192, 'sacrificing': 14193, 'sadness,': 14194, 'satellite': 14195, 'scale,': 14196, 'scared,': 14197, 'scared.': 14198, 'scarred': 14199, "scene's": 14200, 'scenic': 14201, 'seaside': 14202, 'seminal': 14203, 'sensibility': 14204, 'sesame': 14205, 'shakespeare.': 14206, 'sheila': 14207, 'sherman': 14208, 'shield': 14209, 'shot.<br': 14210, 'sing.': 14211, 'singular': 14212, 'slapstick,': 14213, 'slavery': 14214, 'sleazy,': 14215, 'slut': 14216, 'smarmy': 14217, 'smashing': 14218, 'smuggling': 14219, 'sober': 14220, 'sorrow': 14221, 'space"': 14222, 'speed.': 14223, 'spin-off': 14224, "stanwyck's": 14225, 'story-telling': 14226, 'straw': 14227, 'streets.': 14228, 'strive': 14229, 'subtleties': 14230, 'subversive': 14231, 'sufficiently': 14232, 'summer.': 14233, 'surf': 14234, 'surroundings': 14235, 'suspiciously': 14236, 'sutherland,': 14237, 'swat': 14238, 'swayze': 14239, 'tainted': 14240, 'talents,': 14241, 'talking.': 14242, 'tangled': 14243, 'tango': 14244, 'teacher.': 14245, 'telly': 14246, 'that...': 14247, 'theatres': 14248, 'throats': 14249, 'thumb': 14250, 'tiger,': 14251, 'today!': 14252, "tom's": 14253, 'transforming': 14254, 'trees,': 14255, 'tremors': 14256, 'trent': 14257, 'trial.': 14258, 'tribulations': 14259, 'trigger': 14260, 'tripe.': 14261, 'two.<br': 14262, 'types,': 14263, 'uk,': 14264, 'uk.': 14265, 'un': 14266, 'uneducated': 14267, 'uniforms': 14268, 'unknown.': 14269, 'unremarkable': 14270, 'untimely': 14271, 'upper-class': 14272, 'uttered': 14273, 'vacation.': 14274, 'vault': 14275, 'vets': 14276, 'vinnie': 14277, 'visually,': 14278, 'vulnerability': 14279, 'wanda': 14280, 'warning.': 14281, 'wayward': 14282, 'weeks.': 14283, 'weissmuller': 14284, 'werner': 14285, 'westerns,': 14286, 'whacked': 14287, 'whip': 14288, 'wild,': 14289, 'witless': 14290, 'wits': 14291, 'wwi': 14292, 'wyatt': 14293, 'y': 14294, 'yarn': 14295, 'yet.<br': 14296, "young's": 14297, 'zenia': 14298, 'zombie.': 14299, '"action"': 14300, '"at': 14301, '"blood': 14302, '"blue': 14303, '"last': 14304, '"make': 14305, '"men': 14306, '"must': 14307, '"planet': 14308, '"titanic"': 14309, '"young': 14310, '$5': 14311, '(almost': 14312, '(barbara': 14313, '(besides': 14314, '(jason': 14315, '(jean': 14316, '(kevin': 14317, '(many': 14318, '(oh,': 14319, '(or,': 14320, '-the': 14321, '/>add': 14322, '/>anyway': 14323, '/>jack': 14324, '/>later': 14325, '/>never': 14326, '/>poor': 14327, '/>robert': 14328, '/>worth': 14329, '100.': 14330, '1940': 14331, "1940's": 14332, '1943': 14333, '1953': 14334, '1966': 14335, '1970s,': 14336, '1974': 14337, '1981': 14338, '1982': 14339, '1993': 14340, '2/10.': 14341, '50%': 14342, '64': 14343, '98': 14344, 'abbot': 14345, 'achievement.': 14346, 'admirably': 14347, 'adult.': 14348, 'afghanistan': 14349, 'agreeing': 14350, 'ahmad': 14351, 'akira': 14352, 'alienated': 14353, 'amazes': 14354, 'amazing!': 14355, 'american.': 14356, "andy's": 14357, 'aniston': 14358, "ann's": 14359, 'apartheid': 14360, 'approval': 14361, 'approved': 14362, 'arrange': 14363, "artist's": 14364, 'as:': 14365, 'ask,': 14366, 'aspirations': 14367, 'attacks.': 14368, 'awake.': 14369, 'bad?': 14370, 'badly,': 14371, 'badness': 14372, 'baker,': 14373, 'based,': 14374, 'batwoman': 14375, 'bedroom,': 14376, 'beginnings': 14377, 'behind,': 14378, 'benjamin': 14379, 'bits.': 14380, 'blessing': 14381, 'bomber': 14382, 'bond.': 14383, 'boobs': 14384, "book's": 14385, 'book)': 14386, 'borg': 14387, 'boring!': 14388, 'brandon': 14389, 'brash': 14390, 'broadcasting': 14391, "brothers'": 14392, "brown's": 14393, 'bubba': 14394, 'buffs.': 14395, 'canned': 14396, 'capitalist': 14397, 'carbon': 14398, 'caught,': 14399, 'center,': 14400, 'chair,': 14401, "chaplin's": 14402, 'characterization,': 14403, 'characterized': 14404, 'charge,': 14405, 'charley': 14406, 'cheats': 14407, 'cheers': 14408, 'chef': 14409, 'cherish': 14410, 'chicago,': 14411, 'chief,': 14412, 'choir': 14413, 'circuit': 14414, 'city"': 14415, 'civilians': 14416, 'claw': 14417, 'closes': 14418, 'closeups': 14419, 'closure': 14420, 'coastal': 14421, 'collapsing': 14422, 'comedian,': 14423, 'comically': 14424, 'comics,': 14425, 'commentaries': 14426, 'commercials,': 14427, 'commercials.': 14428, 'commonly': 14429, 'compelling.': 14430, 'compilation': 14431, 'complex.': 14432, 'component': 14433, 'compositions': 14434, 'concluded': 14435, 'conquest': 14436, 'consequently,': 14437, 'contacts': 14438, 'contents': 14439, 'contrasts': 14440, 'conversation,': 14441, 'copious': 14442, 'cowboy"': 14443, 'creation,': 14444, 'creative,': 14445, 'creeped': 14446, 'criminal.': 14447, 'crisis,': 14448, 'crisis.': 14449, 'cristina': 14450, 'crowds': 14451, 'cues': 14452, 'culkin': 14453, 'curtain': 14454, 'customs': 14455, 'cyborgs': 14456, 'd.w.': 14457, 'dancer,': 14458, 'daphne': 14459, 'decision.': 14460, 'definately': 14461, 'delightful,': 14462, 'democratic': 14463, 'denied': 14464, 'dependent': 14465, 'depression,': 14466, 'depression.': 14467, 'description.': 14468, 'devils': 14469, 'diaz': 14470, 'dickinson': 14471, 'dictator': 14472, "didn't,": 14473, 'discipline': 14474, 'disgusting,': 14475, 'ditto': 14476, 'do!': 14477, 'dock': 14478, 'downs': 14479, 'dramatic.': 14480, 'drifter': 14481, 'drivers': 14482, 'dunne': 14483, 'earth.<br': 14484, 'ease.': 14485, 'ecstasy': 14486, 'edison': 14487, 'eerily': 14488, 'effect.<br': 14489, 'elicit': 14490, 'eliminated': 14491, 'elusive': 14492, 'emotional,': 14493, 'engineer': 14494, 'ensures': 14495, 'epic.': 14496, 'episodic': 14497, 'epps': 14498, "eric's": 14499, 'ernst': 14500, 'essay': 14501, 'establishes': 14502, 'etc).': 14503, 'evolve': 14504, 'ex-con': 14505, 'ex-girlfriend': 14506, 'example).': 14507, 'experiences.': 14508, 'explicitly': 14509, 'extras.': 14510, 'fallon': 14511, 'famous.': 14512, 'farewell': 14513, 'farnsworth': 14514, 'father-son': 14515, 'favorites,': 14516, 'feeds': 14517, 'feet,': 14518, 'ferry': 14519, 'festivals': 14520, 'fictitious': 14521, "filmmaker's": 14522, 'filter': 14523, 'financially': 14524, 'fire"': 14525, 'fireworks': 14526, 'first.<br': 14527, 'following:': 14528, 'forget,': 14529, 'forgiving': 14530, 'forsythe': 14531, 'fort': 14532, 'forum': 14533, 'fox.': 14534, 'frame.': 14535, 'french,': 14536, 'frenchman': 14537, 'fresh.': 14538, 'fricker': 14539, 'gains': 14540, 'galactica': 14541, 'gang,': 14542, 'gaping': 14543, 'gardens': 14544, 'generates': 14545, 'gertrude': 14546, 'ghost,': 14547, 'gifts': 14548, 'giggles': 14549, 'godfather,': 14550, 'goings': 14551, 'gold,': 14552, 'good-hearted': 14553, 'goth': 14554, 'graphics,': 14555, 'grease': 14556, 'guiding': 14557, 'guiness': 14558, 'hacks': 14559, 'handing': 14560, 'happened.<br': 14561, 'harlem': 14562, 'harry,': 14563, 'hat,': 14564, 'head.<br': 14565, 'heads.': 14566, 'heartless': 14567, 'hearty': 14568, 'heavyweight': 14569, 'hilarious!': 14570, 'historians': 14571, 'hollywood.<br': 14572, 'horror"': 14573, 'hurry': 14574, 'immune': 14575, 'impersonating': 14576, 'impersonation': 14577, 'impresses': 14578, 'improving': 14579, 'incarnation': 14580, 'included.': 14581, 'indifference': 14582, 'inspiration.': 14583, 'instrument': 14584, 'interviews,': 14585, 'intimacy': 14586, 'introduced,': 14587, 'irritating,': 14588, 'jabba': 14589, 'jackass': 14590, "joe's": 14591, 'joe,': 14592, 'jones.': 14593, 'joys': 14594, 'jungle.': 14595, 'kermit': 14596, 'kerr': 14597, 'kong.': 14598, 'korda': 14599, 'kramer': 14600, 'lambert': 14601, 'lap': 14602, 'learnt': 14603, 'levels,': 14604, 'lied': 14605, 'lights,': 14606, 'like?': 14607, 'lillian': 14608, 'limbs': 14609, 'logo': 14610, 'lol': 14611, 'longer,': 14612, 'lot.<br': 14613, 'low-rent': 14614, 'luck,': 14615, 'mac': 14616, 'majestic': 14617, 'malden': 14618, 'malta': 14619, 'marines': 14620, 'market,': 14621, 'mastery': 14622, 'match.<br': 14623, 'matrix,': 14624, 'meanders': 14625, 'measured': 14626, 'mechanic': 14627, 'melodramatic,': 14628, 'meredith': 14629, 'met.': 14630, 'miners': 14631, 'minutes!': 14632, 'minutes)': 14633, 'miraculous': 14634, 'misfits': 14635, 'misogynistic': 14636, 'missions': 14637, 'moderate': 14638, 'money!': 14639, 'monroe': 14640, 'monstrosity': 14641, 'more?': 14642, 'morgan,': 14643, 'morgana': 14644, 'mpaa': 14645, 'munchies': 14646, 'muni': 14647, 'murphy,': 14648, 'muscle': 14649, 'must,': 14650, 'mustache': 14651, 'mystic': 14652, 'necessary,': 14653, 'needle': 14654, "needn't": 14655, 'needs.': 14656, 'nell': 14657, 'never-ending': 14658, 'nielsen': 14659, 'noir.': 14660, 'now)': 14661, 'numbing': 14662, 'obscurity': 14663, 'olympia': 14664, 'on)': 14665, 'one-note': 14666, 'open,': 14667, 'operates': 14668, 'opponents': 14669, 'organ': 14670, 'outcome.': 14671, 'outs': 14672, 'over-the-top,': 14673, 'owed': 14674, 'page.': 14675, 'paresh': 14676, 'partner.': 14677, 'patient,': 14678, 'pedro': 14679, 'performance)': 14680, 'performers.': 14681, 'perspectives': 14682, 'picker': 14683, 'pictured': 14684, 'pits': 14685, 'pitt,': 14686, 'planets': 14687, 'plethora': 14688, 'poorly.': 14689, 'pornography': 14690, 'position,': 14691, 'pranks': 14692, 'preach': 14693, 'predecessor,': 14694, 'predictability': 14695, 'premises': 14696, 'preparation': 14697, 'presented.': 14698, 'price,': 14699, 'prints': 14700, 'proceeded': 14701, 'productions,': 14702, 'progresses,': 14703, 'propaganda,': 14704, 'psychopathic': 14705, 'puns': 14706, 'puri': 14707, 'qualities,': 14708, 'quarters': 14709, 'r-rated': 14710, 'radioactive': 14711, 'raft': 14712, 'railroad': 14713, 'rainer': 14714, 'rajpal': 14715, 'recall,': 14716, 'recommended,': 14717, 'red,': 14718, 'refreshingly': 14719, 'reginald': 14720, 'rejection': 14721, 'relegated': 14722, 'removing': 14723, 'repair': 14724, 'rescuing': 14725, 'resorts': 14726, 'retire': 14727, 'retro': 14728, 'revealed,': 14729, 'risky': 14730, 'robbie': 14731, 'robot,': 14732, 'rockets': 14733, 'rules.': 14734, 'sabu': 14735, 'saddled': 14736, 'sake.': 14737, 'sample': 14738, 'sanity': 14739, "santa's": 14740, 'sap': 14741, 'scene)': 14742, 'scenes:': 14743, 'schemes': 14744, 'scream,': 14745, 'seducing': 14746, 'self-conscious': 14747, 'sentimental,': 14748, 'sentiments': 14749, "series'": 14750, 'shadows,': 14751, 'shelves': 14752, 'shoestring': 14753, 'showtime': 14754, 'shy,': 14755, 'siege': 14756, 'signal': 14757, 'signals': 14758, 'signing': 14759, "sirk's": 14760, 'situation.<br': 14761, 'skill.': 14762, 'skin,': 14763, 'skips': 14764, 'skywalker': 14765, 'sloane': 14766, 'smart.': 14767, 'smoothly': 14768, 'society.<br': 14769, 'somber': 14770, 'someones': 14771, "stallone's": 14772, 'stereotyping': 14773, 'stevenson': 14774, 'stimulating': 14775, 'stop-motion': 14776, 'story)': 14777, 'streak': 14778, 'sunset': 14779, 'suppose,': 14780, 'surely,': 14781, 'surreal,': 14782, 'susannah': 14783, 'suspect.': 14784, 'suspects,': 14785, 'suspicions': 14786, 'sync': 14787, 'tackles': 14788, 'telegraphed': 14789, 'territory,': 14790, 'territory.': 14791, 'terrorism': 14792, 'testimony': 14793, 'those,': 14794, 'ticked': 14795, 'tits': 14796, 'tomato': 14797, 'tony,': 14798, 'towns': 14799, 'traces': 14800, 'traditions': 14801, 'tragic,': 14802, 'transcend': 14803, 'transvestite': 14804, 'tree.': 14805, 'tribal': 14806, 'trophy': 14807, 'truck.': 14808, 'tucker': 14809, 'turkey,': 14810, 'tv.<br': 14811, 'undeniable': 14812, 'unfolds,': 14813, 'unimpressive': 14814, 'unnerving': 14815, 'unquestionably': 14816, 'unstoppable': 14817, 'upsetting': 14818, 'usa,': 14819, 'usa.': 14820, 'verdict:': 14821, 'voices,': 14822, 'vomit': 14823, 'walters': 14824, 'watered': 14825, 'way!': 14826, 'way).': 14827, 'weaver': 14828, 'well).': 14829, 'whomever': 14830, 'whore': 14831, 'widmark,': 14832, 'within.': 14833, 'wonderland': 14834, 'words:': 14835, 'writings': 14836, 'wry': 14837, 'yeah.': 14838, 'years!': 14839, 'zealand': 14840, '"art"': 14841, '"be': 14842, '"dr.': 14843, '"family': 14844, '"full': 14845, '"going': 14846, '"gone': 14847, '"making': 14848, '"yeah,': 14849, "'n": 14850, '(best': 14851, '(complete': 14852, '(frank': 14853, '(great': 14854, '(unlike': 14855, '(watch': 14856, '-and': 14857, '/>6.': 14858, '/>any': 14859, '/>basically': 14860, '/>fans': 14861, '/>give': 14862, '/>james': 14863, '/>speaking': 14864, '/>spoilers': 14865, '/>yes': 14866, '1/10.': 14867, '150': 14868, '1920s': 14869, "1990's": 14870, '2005,': 14871, '65': 14872, '8,': 14873, ':.': 14874, 'a,': 14875, 'a<br': 14876, 'accompanies': 14877, 'acquainted': 14878, 'acting:': 14879, 'action-packed': 14880, 'aditya': 14881, 'affections': 14882, 'affluent': 14883, 'again:': 14884, 'ah': 14885, 'ailing': 14886, 'alex,': 14887, 'allure': 14888, 'alluring': 14889, 'also.<br': 14890, 'angeles,': 14891, "anna's": 14892, 'ant': 14893, 'anti-war': 14894, "antonioni's": 14895, 'anyone.<br': 14896, 'apologies': 14897, 'appallingly': 14898, 'appropriate.': 14899, 'arch': 14900, 'architecture': 14901, 'arizona': 14902, 'arms,': 14903, 'arresting': 14904, 'arrows': 14905, 'ash': 14906, 'asleep,': 14907, 'assembly': 14908, 'austrian': 14909, 'authentic.': 14910, 'awards,': 14911, 'awkward,': 14912, 'azaria': 14913, 'b&w': 14914, 'baby"': 14915, 'bags': 14916, 'balancing': 14917, 'bank,': 14918, 'basics': 14919, 'beef': 14920, 'been.<br': 14921, 'before?': 14922, 'began.': 14923, 'behalf': 14924, 'behold': 14925, 'betrayal,': 14926, 'biographical': 14927, 'bit.<br': 14928, 'blackie': 14929, 'blurred': 14930, 'bogdanovich': 14931, 'boggles': 14932, 'bolt': 14933, 'boredom,': 14934, 'born.': 14935, 'breath.': 14936, 'bright,': 14937, 'brightest': 14938, 'broadway.': 14939, "brooks'": 14940, 'brown.': 14941, 'bullying': 14942, 'bum': 14943, 'bureau': 14944, 'camera-work,': 14945, 'camera.<br': 14946, 'cancel': 14947, 'candidates': 14948, 'cannibalistic': 14949, 'canvas': 14950, "capote's": 14951, 'captivating.': 14952, 'carrier': 14953, 'cash.': 14954, "cat's": 14955, 'center.': 14956, 'cesar': 14957, 'chaplin,': 14958, 'characters:': 14959, 'characters?': 14960, 'cheered': 14961, 'cheese.': 14962, 'chemistry,': 14963, 'choices,': 14964, 'chopping': 14965, 'cliché.': 14966, 'closeup': 14967, 'clouds': 14968, 'club"': 14969, 'collage': 14970, 'combo': 14971, 'comedian.': 14972, 'compliments': 14973, 'comprehensive': 14974, 'compromise': 14975, 'conceal': 14976, 'concentrating': 14977, 'condition,': 14978, 'conquers': 14979, 'contrasted': 14980, 'copyright': 14981, 'corners': 14982, 'corruption,': 14983, 'country.<br': 14984, 'course.<br': 14985, 'cousins': 14986, 'craziness': 14987, 'criterion': 14988, 'crowd,': 14989, 'crowning': 14990, 'cruel,': 14991, 'culminates': 14992, 'cursing': 14993, "dante's": 14994, 'deformed': 14995, 'degenerates': 14996, 'demise.': 14997, "derek's": 14998, 'detailing': 14999, 'devgan': 15000, 'devious': 15001, 'dial': 15002, 'differ': 15003, 'difficult,': 15004, 'discarded': 15005, 'distributors': 15006, 'doors,': 15007, 'dorm': 15008, 'drawback': 15009, 'dreamlike': 15010, 'dreary,': 15011, 'drums': 15012, 'drunk.': 15013, 'duchess': 15014, 'dumps': 15015, 'duryea': 15016, 'effeminate': 15017, 'eleanor': 15018, "elvira's": 15019, 'emergency': 15020, 'eminently': 15021, 'emotionless': 15022, 'emptiness': 15023, 'enlightened': 15024, 'establishment': 15025, 'ethereal': 15026, 'ex-wife': 15027, 'exceeded': 15028, 'excellence': 15029, 'excesses': 15030, 'exchanges': 15031, 'execute': 15032, 'exhausted': 15033, 'exhilarating': 15034, 'experimenting': 15035, 'eyebrows': 15036, 'factory.': 15037, 'familiar.': 15038, 'fanatical': 15039, 'fanny': 15040, 'fantastical': 15041, 'farrelly': 15042, 'farther': 15043, 'fathom': 15044, 'fearless': 15045, 'fencing': 15046, 'fetching': 15047, 'fights.': 15048, 'film-maker': 15049, 'financed': 15050, 'finished.': 15051, 'finney': 15052, 'flashback,': 15053, 'flaw,': 15054, 'flawless.': 15055, 'flees': 15056, 'flesh.': 15057, 'fling': 15058, 'focus,': 15059, 'forming': 15060, 'forrest': 15061, 'found,': 15062, 'frail': 15063, 'fraud': 15064, 'freudian': 15065, 'friendships': 15066, 'frosty': 15067, 'frustratingly': 15068, 'fugitive': 15069, 'fund': 15070, 'funny)': 15071, 'garcia': 15072, "george's": 15073, 'german,': 15074, 'gesture': 15075, "gilliam's": 15076, 'girl)': 15077, 'gladiator': 15078, 'glorified': 15079, 'glue': 15080, 'go!': 15081, 'gomez': 15082, 'goofy,': 15083, 'griffin': 15084, 'gross-out': 15085, 'guerrilla': 15086, 'guevara': 15087, 'gunfight': 15088, 'gusto': 15089, 'guts,': 15090, 'guys"': 15091, 'h.g.': 15092, 'hackenstein': 15093, 'hagen': 15094, 'half-baked': 15095, 'happiness,': 15096, 'harbor': 15097, 'helicopters': 15098, "henry's": 15099, 'heres': 15100, 'heritage': 15101, 'hillbilly': 15102, 'his.': 15103, 'historian': 15104, 'hiv': 15105, 'holland': 15106, 'honour': 15107, 'horrendous.': 15108, 'hosted': 15109, 'hubby': 15110, 'idyllic': 15111, 'imaginable.': 15112, 'impact,': 15113, 'impossible,': 15114, 'inbred': 15115, 'incoherent,': 15116, 'induce': 15117, 'information,': 15118, 'ingredient': 15119, 'innate': 15120, 'insisting': 15121, 'interestingly,': 15122, 'internet.': 15123, 'inventor': 15124, 'investigates': 15125, 'it".': 15126, 'italians': 15127, 'ivy': 15128, 'jail,': 15129, 'jayne': 15130, 'jeep': 15131, 'judge,': 15132, 'kane,': 15133, 'keeler': 15134, 'kerry': 15135, 'kriemhild': 15136, 'lady"': 15137, "lampoon's": 15138, 'lana': 15139, 'lanza': 15140, 'lapses': 15141, 'laughed,': 15142, 'launching': 15143, 'lawrence,': 15144, 'least)': 15145, 'least.<br': 15146, 'lecherous': 15147, 'less.<br': 15148, 'library,': 15149, 'lie.': 15150, 'life;': 15151, 'lifetime,': 15152, 'lili': 15153, 'lions': 15154, 'liotta': 15155, 'long-time': 15156, 'loosing': 15157, 'losses': 15158, 'luminous': 15159, 'lynch.': 15160, 'magnificent.': 15161, 'magnificently': 15162, 'make-up,': 15163, 'marketed': 15164, 'marking': 15165, "mary's": 15166, 'material.<br': 15167, 'maturity': 15168, 'mcdermott': 15169, 'mcgavin': 15170, 'mcgregor': 15171, 'medium.': 15172, 'meet.': 15173, 'memorably': 15174, 'merit.': 15175, 'michael,': 15176, 'midway': 15177, "might've": 15178, 'mind-numbing': 15179, 'mind-numbingly': 15180, 'mindset': 15181, 'minions': 15182, 'monologues': 15183, 'mortensen': 15184, 'motley': 15185, 'motor': 15186, 'muddy': 15187, 'multitude': 15188, 'murdered.': 15189, 'muster': 15190, 'my,': 15191, "nation's": 15192, 'nefarious': 15193, 'nicely,': 15194, 'no-budget': 15195, 'nods': 15196, 'november': 15197, 'now?': 15198, 'offensive.': 15199, 'one-liners.': 15200, 'ones.<br': 15201, 'opening,': 15202, 'oriented': 15203, 'orphanage': 15204, 'outrage': 15205, 'outset': 15206, 'overdone.': 15207, 'overused': 15208, 'overwhelm': 15209, "page's": 15210, 'palette': 15211, 'palpable': 15212, 'parked': 15213, 'passions': 15214, 'paycheck': 15215, 'peace,': 15216, 'peaks': 15217, 'persuades': 15218, 'pervasive': 15219, 'photographic': 15220, 'phyllis': 15221, 'pioneer': 15222, 'piper': 15223, 'pity.': 15224, 'pleasures': 15225, 'poignancy': 15226, 'points:': 15227, "polanski's": 15228, 'pool.': 15229, 'post-apocalyptic': 15230, 'powered': 15231, 'ppv': 15232, 'praising': 15233, 'president.': 15234, 'probable': 15235, 'product,': 15236, 'professionally': 15237, 'professor,': 15238, 'progresses.': 15239, 'prophetic': 15240, 'prostitutes': 15241, 'proud.': 15242, 'pullman': 15243, 'punch.': 15244, 'punchline': 15245, 'rage,': 15246, 'railway': 15247, 'rally': 15248, 'raoul': 15249, 're-watch': 15250, 'recite': 15251, 'recruit': 15252, 'references,': 15253, 'reflections': 15254, 'refreshing,': 15255, 'regardless,': 15256, 'regulars': 15257, 'released.<br': 15258, 'renee': 15259, 'rents': 15260, 'reprise': 15261, 'researcher': 15262, 'retained': 15263, 'retreat': 15264, 'reunion.': 15265, 'revered': 15266, 'reverend': 15267, 'riddled': 15268, 'ringo': 15269, 'ripley': 15270, 'roland': 15271, 'saif': 15272, 'saints': 15273, 'scan': 15274, "school's": 15275, 'scoop': 15276, 'seattle': 15277, 'section.': 15278, 'select': 15279, 'self-absorbed': 15280, 'settings.': 15281, 'settles': 15282, 'sfx': 15283, 'shocker': 15284, 'sholay': 15285, 'short.<br': 15286, 'should,': 15287, 'shudder': 15288, 'sickly': 15289, 'simba': 15290, 'simulated': 15291, 'sinatra,': 15292, 'singer.': 15293, 'singleton': 15294, 'situated': 15295, 'sized': 15296, 'skill,': 15297, 'skillful': 15298, 'sliding': 15299, 'slit': 15300, 'slob': 15301, 'smashed': 15302, 'smashes': 15303, 'solidly': 15304, 'something?': 15305, 'speed,': 15306, 'spoilers.<br': 15307, 'spoilt': 15308, 'spouting': 15309, 'spray': 15310, 'squarely': 15311, 'ss': 15312, 'stand.': 15313, 'starving': 15314, 'stature': 15315, 'strives': 15316, 'stunts,': 15317, 'summarize': 15318, 'sun,': 15319, 'superlative': 15320, 'supplied': 15321, 'sustained': 15322, 'sweetness': 15323, 'tasteful': 15324, 'tastes.': 15325, 'tattooed': 15326, 'technique,': 15327, 'tedium': 15328, 'teenagers,': 15329, 'teens.': 15330, 'terminal': 15331, 'terrible!': 15332, 'texas,': 15333, 'texture': 15334, 'thereafter': 15335, 'thin.': 15336, 'think.<br': 15337, 'throat.': 15338, 'thug': 15339, 'timing.': 15340, 'tin': 15341, 'title)': 15342, "tolkien's": 15343, 'tornado': 15344, 'tosses': 15345, 'tracey': 15346, 'tragically': 15347, 'trashed': 15348, 'trips': 15349, 'turns.': 15350, 'ubiquitous': 15351, 'ugly.': 15352, 'unfaithful': 15353, 'unforgivable': 15354, 'unwanted': 15355, 'up)': 15356, 'utmost': 15357, 'varma': 15358, 'vary': 15359, 'veers': 15360, 'vehicle.': 15361, 'viewings.': 15362, 'vivah': 15363, 'vows': 15364, 'waiter': 15365, 'wallet': 15366, 'warnings': 15367, 'website,': 15368, 'welch': 15369, 'well)': 15370, 'well-crafted': 15371, 'welles,': 15372, 'wildlife': 15373, 'wimpy': 15374, 'wiser': 15375, 'wolves': 15376, 'work!': 15377, 'wreck,': 15378, 'wrinkle': 15379, 'yoda': 15380, '"10': 15381, '"actors"': 15382, '"cinderella"': 15383, '"down': 15384, '"rosemary\'s': 15385, '"something': 15386, '"too': 15387, '"twist"': 15388, '"your': 15389, '#2': 15390, '(apparently': 15391, '(looking': 15392, '(mary': 15393, '(possibly': 15394, '(too': 15395, '(who,': 15396, '/>2/10': 15397, '/>again,': 15398, '/>last': 15399, '1932': 15400, '1967': 15401, '1980s,': 15402, '2004,': 15403, '250': 15404, '3"': 15405, '3/4': 15406, '4/10.': 15407, '88': 15408, '99': 15409, ':(': 15410, ':)<br': 15411, ';-)': 15412, 'a-list': 15413, 'abhay': 15414, 'abiding': 15415, 'abigail': 15416, 'aborted': 15417, 'acts,': 15418, "adam's": 15419, 'adrenaline': 15420, 'adulterous': 15421, 'advice:': 15422, 'affinity': 15423, 'age.<br': 15424, 'agonizing': 15425, 'airline': 15426, 'akshaye': 15427, 'alarming': 15428, 'alike,': 15429, 'alpha': 15430, 'altering': 15431, 'amaze': 15432, 'anal': 15433, 'anniversary': 15434, 'antidote': 15435, 'apes,': 15436, 'applauded': 15437, 'apprentice': 15438, 'approve': 15439, 'argued': 15440, 'arises': 15441, 'arm.': 15442, 'armageddon': 15443, 'armies': 15444, 'artists.': 15445, 'ashton': 15446, 'ask?': 15447, 'askey': 15448, 'attain': 15449, 'attempt,': 15450, 'attentions': 15451, 'attributes': 15452, 'await': 15453, 'aweigh': 15454, 'bad;': 15455, 'baffling': 15456, 'bafta': 15457, 'bake': 15458, 'banging': 15459, 'barn': 15460, 'basement.': 15461, 'basis,': 15462, 'bass': 15463, 'bean': 15464, 'bear.': 15465, 'bee': 15466, 'begin,': 15467, 'belief,': 15468, 'belonging': 15469, 'bemused': 15470, 'benefited': 15471, 'bennett': 15472, 'big-budget': 15473, 'bird,': 15474, 'blah.': 15475, 'bland.': 15476, 'bloodthirsty': 15477, 'bloody,': 15478, 'bodies.': 15479, 'booth': 15480, 'bottom.': 15481, 'breasts,': 15482, 'breathtaking,': 15483, 'breezy': 15484, 'brightly': 15485, 'broadway,': 15486, "bronte's": 15487, 'bros': 15488, 'bucks,': 15489, 'buildings,': 15490, 'by-the-numbers': 15491, 'byrne': 15492, 'calibre': 15493, 'callahan': 15494, 'capitalism': 15495, 'care.<br': 15496, "carrey's": 15497, 'carter,': 15498, 'case)': 15499, 'catalyst': 15500, 'chains': 15501, 'challenger': 15502, 'character:': 15503, 'characterization.': 15504, 'choice.<br': 15505, 'chow': 15506, 'city.<br': 15507, 'cleaned': 15508, 'clifford': 15509, 'cobra': 15510, 'cold-blooded': 15511, 'coleman': 15512, 'collected': 15513, 'commend': 15514, 'commentators': 15515, 'comparison,': 15516, 'concluding': 15517, 'consciousness': 15518, 'convenience': 15519, 'cooper,': 15520, 'corleone': 15521, 'corporations': 15522, 'correct,': 15523, 'corrupted': 15524, 'costner': 15525, 'council': 15526, 'cramped': 15527, 'creature.': 15528, 'creatures.': 15529, 'creepiness': 15530, 'crook': 15531, 'daisies': 15532, 'dallas': 15533, 'danning': 15534, "danny's": 15535, 'darkened': 15536, 'darryl': 15537, "dawson's": 15538, 'dead-on': 15539, 'dear,': 15540, 'deception': 15541, 'delivers.': 15542, 'democracy': 15543, 'demons,': 15544, 'demonstrating': 15545, 'derive': 15546, 'desire,': 15547, 'device,': 15548, "didn't.<br": 15549, 'die"': 15550, 'dietrich': 15551, 'differs': 15552, 'dime': 15553, 'dinner.': 15554, 'dismissed': 15555, 'distasteful': 15556, 'distraught': 15557, 'distributor': 15558, 'disturb': 15559, 'dogma': 15560, 'dollars,': 15561, 'drinking,': 15562, 'drive,': 15563, 'dry,': 15564, 'dukakis': 15565, 'duped': 15566, 'early.': 15567, 'elia': 15568, 'eloquent': 15569, 'enthusiastically': 15570, 'escalating': 15571, 'escapes,': 15572, 'eustache': 15573, 'everybody.': 15574, 'evidence.': 15575, 'exceptions,': 15576, 'excessively': 15577, 'executed,': 15578, 'exorcist': 15579, 'exploiting': 15580, 'exuberant': 15581, 'faked': 15582, 'farcical': 15583, 'fashionable': 15584, 'favours': 15585, 'fawcett': 15586, 'fence': 15587, 'fetched': 15588, 'fiennes': 15589, 'film-': 15590, 'films!': 15591, 'films),': 15592, 'fitzgerald': 15593, 'fled': 15594, 'flesh-eating': 15595, 'foch': 15596, 'fool,': 15597, 'foremost,': 15598, 'forest.': 15599, 'forgotten,': 15600, 'four.': 15601, 'frank,': 15602, 'from...<br': 15603, 'fulfilled': 15604, 'futile': 15605, 'gabe': 15606, 'gals': 15607, 'gaze': 15608, 'gear,': 15609, 'gellar': 15610, 'gen.': 15611, 'generally,': 15612, 'george,': 15613, 'geraldine': 15614, 'gets,': 15615, "glover's": 15616, 'glover,': 15617, 'goo': 15618, 'governments': 15619, 'gown': 15620, 'grandparents': 15621, 'graves': 15622, 'great;': 15623, 'grind': 15624, 'guides': 15625, 'gullible': 15626, 'hacking': 15627, 'hamill': 15628, 'hamlet,': 15629, 'handy': 15630, 'happening.<br': 15631, 'hat.': 15632, 'hawk': 15633, 'heavens': 15634, 'heavy,': 15635, 'henderson': 15636, 'her)': 15637, 'here),': 15638, 'heroin': 15639, 'hill,': 15640, 'hilton': 15641, 'hitler,': 15642, 'hitler.': 15643, 'holidays': 15644, 'hoot': 15645, 'hotel.': 15646, 'howard,': 15647, 'hug': 15648, 'humdrum': 15649, 'humiliated': 15650, 'humming': 15651, 'idiots,': 15652, 'image.': 15653, 'imagery.': 15654, 'imposed': 15655, 'improves': 15656, 'income': 15657, 'increased': 15658, 'indicating': 15659, 'ineptly': 15660, 'infantile': 15661, 'infectious': 15662, 'insomnia': 15663, 'instructor': 15664, 'interminable': 15665, 'interviewing': 15666, 'irresistible': 15667, 'irs': 15668, 'ivory': 15669, 'jackman': 15670, 'jaffar': 15671, 'jagger': 15672, 'janine': 15673, 'janitor': 15674, 'journalists': 15675, 'kari': 15676, 'keller': 15677, 'kibbutz': 15678, 'know!': 15679, 'kong,': 15680, 'krell': 15681, 'leadership': 15682, 'leia': 15683, 'life...': 15684, 'life:': 15685, 'lifestyle,': 15686, 'locker': 15687, "logan's": 15688, 'lon': 15689, 'loop': 15690, 'loose.': 15691, 'loyalty,': 15692, "luke's": 15693, 'lupino': 15694, 'lynn': 15695, "macarthur's": 15696, 'maclean': 15697, 'magazines': 15698, 'mahatma': 15699, 'manager,': 15700, 'manga': 15701, 'manipulates': 15702, 'manipulating': 15703, 'manner.<br': 15704, 'massacre,': 15705, 'mattei': 15706, 'maze': 15707, 'mc': 15708, 'me...': 15709, 'measure.': 15710, 'medicine': 15711, 'megan': 15712, 'memoirs': 15713, 'menu': 15714, 'miles,': 15715, 'millennium': 15716, 'minds.': 15717, 'miscasting': 15718, 'mistakenly': 15719, 'mistakes,': 15720, 'mix.': 15721, 'modeling': 15722, 'monastery': 15723, 'montages': 15724, 'month.': 15725, 'mormons': 15726, 'movement.': 15727, 'movements,': 15728, 'moviegoers': 15729, 'much!': 15730, 'mumbling': 15731, 'mutilated': 15732, 'mystery.<br': 15733, 'narration.': 15734, 'nasty.': 15735, 'naturalistic': 15736, 'news,': 15737, 'next.<br': 15738, 'normal.': 15739, 'notes,': 15740, 'notoriety': 15741, 'o.': 15742, 'occupation': 15743, 'offer,': 15744, 'offspring': 15745, 'on...': 15746, 'opportunity,': 15747, 'opted': 15748, 'opus': 15749, 'oscars,': 15750, 'oscars.': 15751, 'output': 15752, 'over-acting': 15753, 'overnight': 15754, 'overuse': 15755, 'painting.': 15756, 'panahi': 15757, 'pang': 15758, 'parole': 15759, 'partition': 15760, 'partnership': 15761, 'pathetically': 15762, 'peckinpah': 15763, 'performed.': 15764, 'pets': 15765, 'pimp': 15766, 'pity,': 15767, 'played,': 15768, 'pleasure,': 15769, 'poisoned': 15770, 'policies': 15771, 'positions': 15772, 'positives': 15773, 'precursor': 15774, 'preference': 15775, 'presented,': 15776, 'pretentious.': 15777, 'priceless.': 15778, 'pride,': 15779, 'printed': 15780, 'problems.<br': 15781, 'profit': 15782, 'profits': 15783, 'projection': 15784, 'promising.': 15785, 'promotion': 15786, 'pronounce': 15787, 'pub': 15788, 'punched': 15789, 'punish': 15790, 'purposes,': 15791, 'purposes.': 15792, 'questioned': 15793, 'quotable': 15794, 'quoted': 15795, 'radiant': 15796, 'raider': 15797, 'raw,': 15798, 'reacts': 15799, 'reasons:': 15800, 'received.': 15801, 'refusal': 15802, 'relieved': 15803, 'religions': 15804, 'relish': 15805, 'rene': 15806, 'research.': 15807, 'revel': 15808, 'revolting': 15809, 'reworking': 15810, 'rich.': 15811, 'richard,': 15812, 'richardson,': 15813, 'ritter,': 15814, 'rocking': 15815, 'ronny': 15816, 'routine,': 15817, 'routinely': 15818, 'roy"': 15819, 'rumor': 15820, 'rushing': 15821, 'sabotage': 15822, 'saga.': 15823, 'same.<br': 15824, 'sappy,': 15825, 'scares.': 15826, 'scars': 15827, 'scene).': 15828, 'science.': 15829, 'screws': 15830, 'scripted,': 15831, 'scripts,': 15832, 'se': 15833, 'sea,': 15834, 'seeds': 15835, 'selma': 15836, 'sen': 15837, 'separation': 15838, 'seventies,': 15839, 'shade': 15840, 'shaken': 15841, 'sharply': 15842, 'sheet': 15843, 'shes': 15844, 'shops': 15845, 'shrek': 15846, 'shunned': 15847, 'shuttle': 15848, 'simple:': 15849, 'sisters.': 15850, 'sixteen': 15851, 'slaps': 15852, 'slasher,': 15853, 'slow-moving': 15854, 'smacks': 15855, 'small.': 15856, 'snaps': 15857, "society's": 15858, 'software': 15859, 'solves': 15860, 'somethings': 15861, 'soo': 15862, 'sooo': 15863, 'spectator': 15864, 'spiderman': 15865, 'spins': 15866, 'spoilers.': 15867, 'spoofing': 15868, 'sport,': 15869, 'spun': 15870, 'staggering': 15871, 'staircase': 15872, 'stamp': 15873, 'stand-out': 15874, 'stated,': 15875, 'status.': 15876, 'steadily': 15877, 'stems': 15878, 'sterile': 15879, 'stick.': 15880, 'stormy': 15881, 'strands': 15882, 'strength,': 15883, 'struggle,': 15884, 'stuff!': 15885, 'stupid!': 15886, 'subtlety.': 15887, 'superiors': 15888, 'suspects.': 15889, "sutherland's": 15890, 't.v': 15891, 'tailor': 15892, 'talent.<br': 15893, 'tape.': 15894, 'target,': 15895, 'target.': 15896, 'telephone': 15897, 'tenderness': 15898, 'teri': 15899, 'terrorized': 15900, 'theirs': 15901, 'them...': 15902, 'themed': 15903, 'then.<br': 15904, 'therein': 15905, 'thief,': 15906, 'thing"': 15907, 'thinly': 15908, 'thoughtful,': 15909, 'three.': 15910, 'til': 15911, 'toe': 15912, 'tom,': 15913, 'tomlinson': 15914, 'toro': 15915, 'townsend': 15916, 'traditionally': 15917, 'tragic.': 15918, 'trial,': 15919, 'troopers': 15920, 'tropical': 15921, 'trumpet': 15922, 'truthful': 15923, 'trying,': 15924, 'twisted,': 15925, 'two-dimensional': 15926, 'tying': 15927, 'typecast': 15928, 'uncertainty': 15929, 'uncredited': 15930, 'undermines': 15931, 'underused': 15932, 'unheard': 15933, 'uniqueness': 15934, 'unoriginal,': 15935, 'use,': 15936, 'usher': 15937, 'utilizing': 15938, 'uttering': 15939, 'venezuelan': 15940, 'veronica': 15941, 'veronika': 15942, 'version)': 15943, 'versions.': 15944, 'vhs,': 15945, 'vic': 15946, 'view.<br': 15947, 'violent.': 15948, "vonnegut's": 15949, 'waist': 15950, 'walls.': 15951, 'wandered': 15952, 'war"': 15953, 'wary': 15954, 'way),': 15955, 'way;': 15956, 'weapons,': 15957, 'while.<br': 15958, 'williams.': 15959, 'winner,': 15960, 'winners': 15961, 'wipes': 15962, 'woeful': 15963, "won't.": 15964, 'wonder.': 15965, 'worse!': 15966, 'wrapping': 15967, 'wray': 15968, 'wreak': 15969, 'wrestlemania': 15970, 'ww': 15971, 'wwii,': 15972, "york's": 15973, 'yuppie': 15974, 'yuzna': 15975, 'z': 15976, "zizek's": 15977, '"1"': 15978, '"acting"': 15979, '"bend': 15980, '"by': 15981, '"can': 15982, '"castle': 15983, '"el': 15984, '"funny"': 15985, '"normal"': 15986, '"out': 15987, '"right': 15988, '"saturday': 15989, '"serious"': 15990, '"story"': 15991, '"worst': 15992, "'bad": 15993, '(alan': 15994, '(later': 15995, '(literally)': 15996, '(matthew': 15997, '(no,': 15998, '(note': 15999, '(sometimes': 16000, '(then': 16001, '(those': 16002, '(tony': 16003, '***1/2': 16004, ',the': 16005, '...and': 16006, "/>'the": 16007, '/>1': 16008, '/>forget': 16009, '/>instead': 16010, '/>look': 16011, '/>mr.': 16012, '/>seriously,': 16013, '/>set': 16014, '/>spoiler': 16015, "1950's.": 16016, '1958': 16017, '1998': 16018, '2006.': 16019, '80s.': 16020, '`a': 16021, 'abandoning': 16022, 'abe': 16023, 'abusing': 16024, 'accusations': 16025, 'achieve.': 16026, 'achingly': 16027, 'activist': 16028, 'actor)': 16029, 'administration': 16030, 'adolf': 16031, 'adventures,': 16032, 'aerial': 16033, 'aggression': 16034, 'alejandro': 16035, 'alienation': 16036, 'all).': 16037, 'alligator': 16038, 'amazingly,': 16039, 'amos': 16040, 'analysis,': 16041, 'animal,': 16042, 'annoying.<br': 16043, 'anticipating': 16044, 'anxiety': 16045, 'apparent.': 16046, 'applying': 16047, 'artificially': 16048, 'ashamed.': 16049, 'attends': 16050, 'attention.<br': 16051, 'attraction.': 16052, 'auditioning': 16053, 'ava': 16054, 'awaited': 16055, 'award,': 16056, 'award-winning': 16057, 'awfulness': 16058, 'awry': 16059, 'b/w': 16060, 'balcony': 16061, 'barrel.': 16062, 'barren': 16063, 'bases': 16064, 'beach.': 16065, 'beat.': 16066, 'becky': 16067, 'begin?': 16068, 'beings,': 16069, 'bel': 16070, 'belgian': 16071, 'believably': 16072, 'berlin,': 16073, 'betray': 16074, 'bible.': 16075, 'bicycle': 16076, 'bigoted': 16077, 'bill.': 16078, 'birds,': 16079, 'bizarrely': 16080, 'blockbuster.': 16081, 'bloodshed': 16082, 'blurry': 16083, 'bombastic': 16084, 'book!': 16085, 'bozz': 16086, 'braveheart': 16087, 'brawl': 16088, 'brazil': 16089, 'breathless': 16090, 'breckinridge': 16091, 'bret': 16092, 'brief,': 16093, "britain's": 16094, 'bronte': 16095, 'buff,': 16096, 'bunker': 16097, 'burying': 16098, 'bus.': 16099, 'caged': 16100, 'candles': 16101, 'capshaw': 16102, 'carefree': 16103, 'careless': 16104, 'carface': 16105, 'cargo': 16106, 'carnal': 16107, 'carson': 16108, 'caruso': 16109, 'casa': 16110, 'celebrates': 16111, 'celeste': 16112, 'chair.': 16113, 'chance.<br': 16114, 'charge.': 16115, 'chiller': 16116, 'chubby': 16117, 'chunk': 16118, "cinderella's": 16119, 'classify': 16120, 'client': 16121, 'clinton': 16122, 'co-workers': 16123, 'co-writer': 16124, 'coincidences': 16125, 'comatose': 16126, 'comfortably': 16127, 'comforting': 16128, 'commentator': 16129, "company's": 16130, 'competition.': 16131, 'complete.': 16132, 'compromised': 16133, 'concrete': 16134, 'condensed': 16135, 'conflicting': 16136, 'confusion.': 16137, 'congratulate': 16138, 'connolly': 16139, 'constance': 16140, 'constructive': 16141, 'continual': 16142, 'continuity.': 16143, 'convert': 16144, 'corner,': 16145, 'cosmic': 16146, 'costuming': 16147, 'course).': 16148, 'courtney': 16149, 'crash.': 16150, 'crawling': 16151, 'creative.': 16152, 'credits.<br': 16153, 'crime.<br': 16154, 'crimes.': 16155, 'critically': 16156, 'crouching': 16157, 'cube,': 16158, 'curiosity.': 16159, 'cusack,': 16160, 'customary': 16161, 'cuts.': 16162, 'damaging': 16163, 'damn,': 16164, 'dangerous,': 16165, 'darkwolf': 16166, 'deathstalker': 16167, 'deathtrap': 16168, 'decaying': 16169, 'declaration': 16170, 'decorated': 16171, 'decrepit': 16172, 'deep.': 16173, 'defeating': 16174, 'degenerate': 16175, 'delivered.': 16176, 'denholm': 16177, 'depressing.': 16178, 'despair,': 16179, 'detention': 16180, 'dicaprio': 16181, "dickens'": 16182, 'die.<br': 16183, 'dillon': 16184, 'disappointed!': 16185, 'disfigured': 16186, 'disillusioned': 16187, 'disorder.': 16188, 'dispatch': 16189, 'disrespectful': 16190, 'distracts': 16191, 'dives': 16192, 'dna': 16193, 'doesnt': 16194, 'dominant': 16195, 'doorway': 16196, 'dorky': 16197, 'drag.': 16198, 'dramas,': 16199, 'duncan': 16200, 'dvd!': 16201, 'dye': 16202, "earth's": 16203, 'ebay': 16204, 'edinburgh': 16205, 'eggs': 16206, 'eileen': 16207, 'electrical': 16208, 'electronics': 16209, 'elisabeth': 16210, 'else!': 16211, "elvis'": 16212, 'emil': 16213, 'emphasizes': 16214, 'emulate': 16215, 'ending!': 16216, 'ending?': 16217, 'enraged': 16218, 'entertain.': 16219, 'entertainer': 16220, 'entirely.': 16221, 'envelope': 16222, 'erase': 16223, 'erroll': 16224, 'evolving': 16225, 'examines': 16226, 'excited,': 16227, 'exists,': 16228, 'exquisitely': 16229, 'extraordinary.': 16230, 'extremes': 16231, 'faceless': 16232, 'factory,': 16233, 'facts,': 16234, 'fairytale': 16235, 'faithfully': 16236, 'favorable': 16237, 'favourites': 16238, 'felt,': 16239, 'fiasco': 16240, 'fineman': 16241, 'flare': 16242, 'flesh,': 16243, 'floats': 16244, 'florida.': 16245, 'flow.': 16246, 'fluffy': 16247, 'folklore': 16248, 'fool.': 16249, 'fooling': 16250, 'formulaic,': 16251, 'fourteen': 16252, 'freedom.': 16253, 'freshness': 16254, 'friendly,': 16255, 'gags.': 16256, 'gambler': 16257, "garbo's": 16258, 'gasp': 16259, 'getaway': 16260, 'giggling': 16261, "gilligan's": 16262, "girlfriend's": 16263, 'gleefully': 16264, 'glorify': 16265, 'glossed': 16266, 'goons': 16267, 'gopal': 16268, 'governor': 16269, 'graceful': 16270, 'grandmother,': 16271, 'greedy,': 16272, 'grindhouse': 16273, 'groovy': 16274, 'guard,': 16275, 'guidance': 16276, 'gum': 16277, 'guru': 16278, 'habits': 16279, 'hacked': 16280, 'halt': 16281, 'hammered': 16282, 'hammerhead': 16283, 'hanson': 16284, 'harris.': 16285, 'hayden': 16286, 'headache.': 16287, 'heiress': 16288, 'herrings': 16289, 'heterosexual': 16290, 'hilliard': 16291, 'hoffman)': 16292, 'homophobic': 16293, 'honor.': 16294, 'hordes': 16295, 'horrendously': 16296, 'horror/thriller': 16297, 'hottie': 16298, 'house?': 16299, 'how?': 16300, 'humane': 16301, 'humiliation': 16302, 'hunk': 16303, 'hurts.': 16304, 'hustler': 16305, 'hype.': 16306, 'ill-fated': 16307, 'imagines': 16308, 'immoral': 16309, 'impaled': 16310, 'imposing': 16311, 'impoverished': 16312, 'in-depth': 16313, 'incomprehensible.': 16314, 'incorporates': 16315, 'increases': 16316, 'indicative': 16317, 'induced': 16318, 'infatuated': 16319, 'infidelity': 16320, 'inheritance': 16321, 'innocence,': 16322, 'insecure': 16323, 'instruments': 16324, 'internet,': 16325, 'interview,': 16326, 'inventing': 16327, 'jeanette': 16328, 'jerk,': 16329, 'johnston': 16330, 'josie': 16331, 'justifies': 16332, 'ka': 16333, 'kattan': 16334, 'kennedy,': 16335, 'keyboard': 16336, 'khouri': 16337, 'ki': 16338, 'kids.<br': 16339, 'killer.<br': 16340, 'killings.': 16341, 'kiss,': 16342, 'knightly': 16343, 'lamas': 16344, 'lamest': 16345, 'late.<br': 16346, 'leak': 16347, 'leaning': 16348, 'legally': 16349, 'lemon': 16350, 'lesson,': 16351, 'lest': 16352, 'letdown': 16353, 'levant': 16354, 'lifting': 16355, 'liked,': 16356, 'likewise,': 16357, 'liner': 16358, 'linking': 16359, 'liquor': 16360, 'liven': 16361, 'lizard': 16362, 'lombard': 16363, 'lorna': 16364, 'loved.': 16365, 'lovely.': 16366, 'luise': 16367, 'lures': 16368, 'lyle': 16369, 'machine"': 16370, "madonna's": 16371, 'magazine.': 16372, 'maguire': 16373, 'manor': 16374, 'mansion,': 16375, 'manufactured': 16376, 'masterpieces,': 16377, 'matrix.': 16378, 'maya': 16379, 'me;': 16380, 'medal': 16381, 'mega': 16382, 'member,': 16383, 'metaphors': 16384, 'milland': 16385, 'mimic': 16386, 'mines': 16387, 'mins.': 16388, 'miracles': 16389, 'misleading.': 16390, 'missed,': 16391, 'mostel': 16392, 'mounted': 16393, 'mraovich': 16394, 'mugging': 16395, 'multi': 16396, 'multi-million': 16397, 'nanny': 16398, 'narrates': 16399, 'newcombe': 16400, 'newest': 16401, 'newspapers': 16402, 'nicky': 16403, 'nope,': 16404, 'nubile': 16405, "o'clock": 16406, 'obstacle': 16407, 'one...': 16408, 'ordering': 16409, 'organic': 16410, 'outfit.': 16411, 'owner.': 16412, 'package.': 16413, 'painful,': 16414, 'panties': 16415, 'parody,': 16416, 'parody.': 16417, 'participated': 16418, 'pasolini': 16419, 'passenger': 16420, 'passionate,': 16421, 'pasted': 16422, 'pastiche': 16423, 'pastor': 16424, 'patiently': 16425, 'patsy': 16426, 'peers': 16427, 'perfect.<br': 16428, 'perky': 16429, 'persistent': 16430, 'personalities.': 16431, 'philadelphia': 16432, 'pickpocket': 16433, 'pinned': 16434, 'plainly': 16435, 'poignant,': 16436, 'pointlessly': 16437, 'poisonous': 16438, 'populate': 16439, 'port': 16440, 'possessing': 16441, 'possibilities.': 16442, 'post-modern': 16443, 'poured': 16444, 'pov': 16445, 'pre-teen': 16446, 'precision': 16447, 'pregnant.': 16448, "preminger's": 16449, "prince's": 16450, 'privileged': 16451, 'progressive': 16452, 'prominently': 16453, 'properly,': 16454, "public's": 16455, 'puke': 16456, 'punctuated': 16457, 'punks': 16458, 'pupils': 16459, 'quick.': 16460, 'quips': 16461, 'rancid': 16462, 'ransom': 16463, 'rarity': 16464, 're-runs': 16465, 'reacting': 16466, 'reasons.<br': 16467, 'recognizing': 16468, 'recovered': 16469, 'recruited': 16470, 'refined': 16471, 'refrain': 16472, 'reinforced': 16473, 'relive': 16474, 'remarkable,': 16475, 'remembered.': 16476, 'remorse': 16477, 'renegade': 16478, 'renoir': 16479, 'repellent': 16480, 'researched': 16481, 'resentment': 16482, 'respectful': 16483, 'responses': 16484, 'restoration': 16485, 'reunion,': 16486, 'review.<br': 16487, 'rico': 16488, 'ridley': 16489, 'riley': 16490, 'ringing': 16491, 'robby': 16492, 'romantic.': 16493, 'romy': 16494, 'room"': 16495, 'roscoe': 16496, 'rosie': 16497, 'ruling': 16498, 'rushed,': 16499, "russell's": 16500, 'sabretooth': 16501, 'satiric': 16502, 'saturated': 16503, 'scalise': 16504, 'scam': 16505, 'scandal': 16506, 'scenes;': 16507, "scorsese's": 16508, 'scream.': 16509, 'screening,': 16510, 'senseless,': 16511, 'sentence.': 16512, 'serviceable': 16513, 'shadow,': 16514, 'shapes': 16515, 'shaving': 16516, 'shawshank': 16517, 'shearer': 16518, 'shin-ae': 16519, 'shock.': 16520, 'shorts.': 16521, 'showing,': 16522, 'silly.<br': 16523, 'sitcom,': 16524, 'slang': 16525, 'slick,': 16526, 'slightest.': 16527, 'slutty': 16528, 'so)': 16529, 'societies': 16530, 'softcore': 16531, 'soles': 16532, 'solitary': 16533, 'soon.<br': 16534, 'sooooo': 16535, 'sorvino': 16536, 'south,': 16537, 'sparkling': 16538, 'special.<br': 16539, 'specialized': 16540, 'speech,': 16541, 'splash': 16542, 'splitting': 16543, 'sporadically': 16544, 'squandered': 16545, 'staden': 16546, 'standup': 16547, 'startled': 16548, 'stewart.': 16549, 'stiff,': 16550, 'stilted,': 16551, 'stoop': 16552, 'storyline.<br': 16553, 'strangely,': 16554, 'strangled': 16555, 'stressed': 16556, 'strips': 16557, 'studios,': 16558, 'stylish,': 16559, 'sub-genre': 16560, 'submitted': 16561, 'succeeding': 16562, 'suck,': 16563, 'suicidal': 16564, "sullivan's": 16565, 'sullivan,': 16566, 'sultry': 16567, 'summarized': 16568, 'supremely': 16569, 'sway': 16570, 'sweeps': 16571, 'swell': 16572, 'switzerland': 16573, 'swords': 16574, 'tack': 16575, 'tea.': 16576, 'teaming': 16577, 'technically,': 16578, 'televised': 16579, 'temperature': 16580, 'that),': 16581, 'thespian': 16582, 'they?': 16583, 'thirteen': 16584, 'though:': 16585, 'throne': 16586, 'times"': 16587, 'too)': 16588, 'too).': 16589, 'townsfolk': 16590, 'trading': 16591, 'tradition,': 16592, 'training,': 16593, 'trait': 16594, 'tripping': 16595, 'trite.': 16596, 'triumphs': 16597, 'truly,': 16598, 'turbulent': 16599, 'uncovers': 16600, 'unprecedented': 16601, 'unrated': 16602, 'unscrupulous': 16603, 'unto': 16604, 'us)': 16605, 'viewer.<br': 16606, 'visionary': 16607, 'vulgarity': 16608, 'wally': 16609, 'wanted.': 16610, 'warrants': 16611, 'was...': 16612, 'weapon.': 16613, 'weave': 16614, 'werewolf.': 16615, "williams'": 16616, 'willingness': 16617, 'win,': 16618, 'wind,': 16619, 'wolverine': 16620, 'wonderful!': 16621, 'word:': 16622, 'working-class': 16623, 'worlds,': 16624, 'worries': 16625, 'wrote,': 16626, 'wtc': 16627, 'wyoming': 16628, 'yvonne': 16629, '"as': 16630, '"back': 16631, '"dog': 16632, '"family"': 16633, '"final': 16634, '"new"': 16635, '"sweet': 16636, '"tarzan': 16637, '"who\'s': 16638, '"wild': 16639, "'i'm": 16640, '(again,': 16641, '(al': 16642, '(gene': 16643, '(look': 16644, '(made': 16645, '(often': 16646, '(yet': 16647, ',and': 16648, '/>4)': 16649, '/>back': 16650, '/>can': 16651, '/>honestly,': 16652, '/>lots': 16653, '/>nevertheless,': 16654, '/>note:': 16655, '/>ok': 16656, '/>peter': 16657, '/>please,': 16658, '/>plot': 16659, '/>really': 16660, '/>save': 16661, '/>think': 16662, '/>whether': 16663, '1999,': 16664, '2002,': 16665, '27': 16666, '60s.': 16667, '7th': 16668, '86': 16669, '90s.': 16670, ':d': 16671, '??': 16672, 'abroad': 16673, 'absorb': 16674, 'abundant': 16675, 'acquaintance': 16676, 'actors!': 16677, 'adams,': 16678, 'adjust': 16679, 'admitting': 16680, 'adopts': 16681, 'advertisements': 16682, 'again)': 16683, 'again...': 16684, 'alba': 16685, 'albums': 16686, 'alexis': 16687, 'alien,': 16688, 'amazing.<br': 16689, 'amicus': 16690, 'anakin': 16691, 'analogy': 16692, 'and<br': 16693, 'andie': 16694, 'andrei': 16695, 'andy,': 16696, 'animated,': 16697, 'anime.': 16698, 'anna,': 16699, 'announce': 16700, 'appreciates': 16701, 'ardent': 16702, 'areas,': 16703, 'arise': 16704, 'arms.': 16705, 'articulate': 16706, 'aspire': 16707, 'ass,': 16708, 'ass.': 16709, 'assassinate': 16710, 'australia,': 16711, 'aviv': 16712, 'awaits': 16713, 'ax': 16714, 'b-movie.': 16715, 'bacall,': 16716, 'back"': 16717, 'backstage': 16718, 'backward': 16719, 'backyard': 16720, 'bad)': 16721, 'bagdad': 16722, "baker's": 16723, 'balance.': 16724, "band's": 16725, 'bank.': 16726, 'barbarian': 16727, 'barton': 16728, 'bashed': 16729, 'bat,': 16730, 'bathtub': 16731, 'battered': 16732, 'bava': 16733, 'bear,': 16734, "beatty's": 16735, 'beau': 16736, 'befriended': 16737, 'behaved': 16738, 'behaviors': 16739, 'behold,': 16740, 'bell,': 16741, 'bells': 16742, 'benet': 16743, 'bevy': 16744, 'bewildered': 16745, 'big.': 16746, 'bigelow': 16747, 'bitterness': 16748, 'blaine': 16749, 'blindly': 16750, 'blockbuster,': 16751, 'bloodless': 16752, 'boman': 16753, 'boone': 16754, 'boxes': 16755, 'boy.<br': 16756, 'boyfriends': 16757, 'boys"': 16758, 'brilliance.': 16759, 'brisk': 16760, 'browsing': 16761, 'buck,': 16762, 'buckets': 16763, 'bumped': 16764, 'bus,': 16765, 'butterfly': 16766, 'cahill': 16767, 'calamity': 16768, 'callous': 16769, 'cambodian': 16770, 'cameos.': 16771, 'camps': 16772, 'canoe': 16773, 'canon': 16774, 'caribbean': 16775, "carla's": 16776, 'carlisle': 16777, 'cassandra': 16778, 'cassel': 16779, 'cast:': 16780, 'caucasian': 16781, 'ceases': 16782, 'celestial': 16783, 'cement': 16784, 'character-driven': 16785, 'charging': 16786, 'charity': 16787, 'childish,': 16788, 'chimney': 16789, 'churned': 16790, 'cinderella,': 16791, 'civilian': 16792, 'civilization,': 16793, 'cleaner': 16794, 'cleese': 16795, 'cleveland': 16796, 'close.<br': 16797, 'clubs': 16798, 'clumsy,': 16799, 'coach,': 16800, 'colorful,': 16801, 'columbine': 16802, 'comes,': 16803, 'commenter': 16804, 'communities': 16805, 'compensated': 16806, 'concert,': 16807, 'condemn': 16808, 'conducted': 16809, 'conference': 16810, 'congress': 16811, 'conjure': 16812, 'constitutes': 16813, 'controversial,': 16814, 'corner.': 16815, 'costello': 16816, 'cotton': 16817, 'counterparts': 16818, 'crammed': 16819, 'crank': 16820, 'crap?': 16821, 'creatures,': 16822, 'criteria': 16823, 'criticism.': 16824, 'crusty': 16825, 'culp': 16826, 'curious.': 16827, 'currie': 16828, 'daft': 16829, 'dahl': 16830, 'dangling': 16831, 'danielle': 16832, 'darkness,': 16833, 'debating': 16834, 'defeats': 16835, 'defended': 16836, 'degrading': 16837, 'delayed': 16838, 'dench': 16839, 'depraved': 16840, 'desi': 16841, 'device.': 16842, 'devised': 16843, 'dialog.<br': 16844, 'dialogues,': 16845, 'dien': 16846, 'digitally': 16847, 'dignity.': 16848, 'dining': 16849, 'dinner,': 16850, 'dire.': 16851, 'disgraceful': 16852, 'disparate': 16853, 'don´t': 16854, 'doodle': 16855, 'doolittle': 16856, 'dot': 16857, 'drawn,': 16858, 'dream"': 16859, 'dreamworks': 16860, 'drill': 16861, 'dull.<br': 16862, 'dwell': 16863, 'dyer': 16864, "eddie's": 16865, 'educate': 16866, 'education.': 16867, 'effects"': 16868, 'egan': 16869, 'ego,': 16870, 'egypt': 16871, 'eighties,': 16872, 'eighties.': 16873, 'either!': 16874, 'elegance': 16875, 'element.': 16876, 'enable': 16877, 'ends.<br': 16878, 'enforcement': 16879, 'escort': 16880, 'euro': 16881, 'evangelical': 16882, 'evoked': 16883, 'exceeds': 16884, 'excellent.<br': 16885, 'except,': 16886, 'excrement': 16887, 'excursion': 16888, 'existent': 16889, 'expert,': 16890, 'explain.': 16891, 'exploitation.': 16892, 'expressionist': 16893, 'extends': 16894, 'extension': 16895, 'eye.<br': 16896, 'eyeballs': 16897, 'factor,': 16898, 'faking': 16899, 'fanatics': 16900, 'favored': 16901, 'fearful': 16902, 'female.': 16903, 'fend': 16904, 'figures,': 16905, 'film!<br': 16906, 'film-noir': 16907, 'fiona': 16908, 'firemen': 16909, 'firstly': 16910, 'fists': 16911, 'fixing': 16912, 'flawless,': 16913, 'flaws.<br': 16914, 'foley': 16915, 'forward,': 16916, 'forwarding': 16917, 'francois': 16918, 'freeman,': 16919, 'frighten': 16920, 'frodo': 16921, 'fundamentally': 16922, 'gadgets': 16923, 'gail': 16924, 'gargantuan': 16925, 'garson': 16926, 'gentle,': 16927, 'glimmer': 16928, 'gloriously': 16929, 'goal.': 16930, 'goers': 16931, 'gossip': 16932, 'gracie': 16933, 'gradual': 16934, 'greed,': 16935, 'grizzled': 16936, 'gunshot': 16937, 'hagar': 16938, 'haphazard': 16939, 'happen?': 16940, 'hark': 16941, 'hayward': 16942, 'heaven"': 16943, 'heinous': 16944, 'hermann': 16945, 'heroines': 16946, 'hesitant': 16947, 'hid': 16948, 'him...': 16949, 'hindu': 16950, 'histrionics': 16951, "hoffman's": 16952, 'holden': 16953, 'homemade': 16954, 'homework': 16955, 'hoods': 16956, 'horrible.<br': 16957, 'humiliate': 16958, 'hunger': 16959, 'hypocrisy': 16960, 'i.e.,': 16961, 'ideology': 16962, 'illness,': 16963, 'illness.': 16964, 'impeccably': 16965, 'impose': 16966, 'in!': 16967, 'inconsequential': 16968, 'indy': 16969, 'innocence.': 16970, 'innocently': 16971, 'inspiring.': 16972, 'installment,': 16973, 'intellectuals': 16974, 'intending': 16975, 'intercut': 16976, 'interwoven': 16977, 'intimidating': 16978, 'intruder': 16979, 'iowa': 16980, 'irani': 16981, 'ireland,': 16982, 'irony,': 16983, 'islam': 16984, 'it-': 16985, 'it..': 16986, 'italy.': 16987, 'jafar': 16988, 'jane.': 16989, 'jewels': 16990, 'jonny': 16991, 'josé': 16992, 'judgement': 16993, 'judi': 16994, 'kei': 16995, 'keira': 16996, 'keystone': 16997, 'kill"': 16998, 'knife,': 16999, 'knives': 17000, 'knox': 17001, 'knoxville': 17002, 'ladies.': 17003, 'laid-back': 17004, 'lam': 17005, 'landlord': 17006, 'landscape,': 17007, "lang's": 17008, 'lately.': 17009, 'laughed.': 17010, 'leonardo': 17011, 'lesbians': 17012, 'linger': 17013, 'lingers': 17014, 'listens': 17015, 'loach': 17016, 'loneliness,': 17017, 'long-lost': 17018, 'longs': 17019, 'look.<br': 17020, 'lotr': 17021, 'low-grade': 17022, "lugosi's": 17023, 'lulu': 17024, 'lurks': 17025, 'male.': 17026, 'manoj': 17027, 'manson': 17028, 'mardi': 17029, 'marina': 17030, 'marriages': 17031, 'marshal': 17032, 'masculine': 17033, "master's": 17034, 'mat': 17035, "matthau's": 17036, 'maugham': 17037, 'max.': 17038, 'mcgovern': 17039, 'me."': 17040, 'mean-spirited': 17041, 'merchant': 17042, 'merits,': 17043, 'merk': 17044, 'meyers': 17045, 'mia': 17046, 'might,': 17047, 'millard': 17048, 'min.': 17049, 'misadventures': 17050, 'misfit': 17051, 'mix,': 17052, 'models,': 17053, 'momentarily': 17054, 'monitor': 17055, "monster's": 17056, 'moon,': 17057, 'moon.': 17058, 'moves,': 17059, 'moves.': 17060, 'movie".': 17061, 'movie-': 17062, 'movies;': 17063, 'murderer.': 17064, 'musician,': 17065, 'naked.': 17066, 'name.<br': 17067, 'napoleon': 17068, 'nat': 17069, 'neck,': 17070, 'neighbours': 17071, 'nelson,': 17072, 'network.': 17073, 'nevada': 17074, 'neve': 17075, 'newton': 17076, 'nightmares.': 17077, 'noble,': 17078, 'noel': 17079, 'non-linear': 17080, 'nonstop': 17081, 'nose.': 17082, 'noses': 17083, 'notch,': 17084, 'nuns': 17085, 'occasions,': 17086, 'occurred.': 17087, 'of"': 17088, 'ogre': 17089, 'oozes': 17090, 'operations': 17091, 'opposite,': 17092, 'oppressed': 17093, 'option.': 17094, 'options': 17095, 'ossessione': 17096, 'outlook': 17097, 'overwhelmingly': 17098, 'page"': 17099, 'paine': 17100, 'parental': 17101, 'passion.': 17102, 'passionately': 17103, 'past.<br': 17104, 'patently': 17105, 'path,': 17106, 'pawn': 17107, 'payne': 17108, "penn's": 17109, 'people;': 17110, 'perennial': 17111, 'personnel': 17112, 'peruvian': 17113, 'phone.': 17114, 'pidgeon': 17115, 'piercing': 17116, 'pigs': 17117, 'pistol': 17118, 'plan,': 17119, 'plausibility': 17120, 'plump': 17121, 'poetry,': 17122, 'pointless.<br': 17123, 'politics.': 17124, 'pondering': 17125, 'pope': 17126, 'portraits': 17127, 'posting': 17128, 'postwar': 17129, 'potato': 17130, 'praises': 17131, 'predicament': 17132, 'prem': 17133, 'prepares': 17134, 'priest.': 17135, 'productive': 17136, 'projects.': 17137, 'prompted': 17138, 'prostitute.': 17139, 'protagonists,': 17140, 'pseudo': 17141, 'psychiatrist,': 17142, 'psycho.': 17143, 'puerile': 17144, 'pulse': 17145, 'punching': 17146, 'radically': 17147, 'raiders': 17148, 'rainbow': 17149, 'ramon': 17150, 'ranking': 17151, 'rape.': 17152, 'razzie': 17153, 'reciting': 17154, 'reconciliation': 17155, 'relieve': 17156, 'reprises': 17157, 'residence': 17158, 'resonance': 17159, 'restores': 17160, 'results.<br': 17161, 'retaining': 17162, 'retread': 17163, 'revelation.': 17164, 'rewards': 17165, 'rhonda': 17166, 'ricardo': 17167, 'righteous': 17168, 'rival,': 17169, 'roberts,': 17170, 'rocks,': 17171, 'roddy': 17172, 'romance.<br': 17173, 'rose,': 17174, 'rosemary': 17175, 'rudd': 17176, 'ruler': 17177, 'running,': 17178, 'saccharine': 17179, 'scarface': 17180, 'scenes?': 17181, 'school.<br': 17182, 'science,': 17183, 'scoring': 17184, 'screening.': 17185, 'segment.': 17186, 'selfish,': 17187, 'sentinel"': 17188, 'serbs': 17189, 'sergeants': 17190, 'service,': 17191, 'settling': 17192, 'seventies.': 17193, "shaw's": 17194, 'shenanigans': 17195, 'shia': 17196, 'shootings': 17197, 'short-lived': 17198, 'shriek': 17199, 'sides,': 17200, 'sierra': 17201, 'silently': 17202, 'similarly,': 17203, 'since.<br': 17204, 'sing,': 17205, "singin'": 17206, 'single-handedly': 17207, 'slammed': 17208, 'slashing': 17209, 'sleuth': 17210, 'sloppy,': 17211, 'sluggish': 17212, 'snoop': 17213, 'sock': 17214, 'socks': 17215, 'sofia': 17216, 'soha': 17217, 'sorcery': 17218, 'sorts,': 17219, 'south.': 17220, 'speakers': 17221, 'spears': 17222, 'speech.': 17223, 'splendidly': 17224, 'spot,': 17225, 'stairs,': 17226, 'star.<br': 17227, 'start.<br': 17228, 'starts.': 17229, 'stoltz': 17230, 'stooge': 17231, 'storms': 17232, "story'": 17233, 'strategy': 17234, 'stratton': 17235, 'striving': 17236, 'styles,': 17237, 'successes': 17238, 'suffering.': 17239, 'sugary': 17240, 'suite': 17241, 'sumptuous': 17242, 'superb.<br': 17243, 'support,': 17244, 'surprised,': 17245, 'surrealism': 17246, 'surrealistic': 17247, 'suspense.<br': 17248, 'swanson': 17249, 'swear,': 17250, 'sweep': 17251, 'swordsman': 17252, 'synchronized': 17253, "t'aime": 17254, 'take,': 17255, 'tanks': 17256, 'tapping': 17257, 'tastes,': 17258, 'teenagers.': 17259, 'teller': 17260, 'temporarily': 17261, 'tenants': 17262, 'tens': 17263, 'tent': 17264, 'terrorize': 17265, 'th': 17266, 'than,': 17267, 'that`s': 17268, 'thaw': 17269, 'theft': 17270, 'thing!': 17271, 'thirds': 17272, 'thwarted': 17273, 'tigerland': 17274, 'timely': 17275, 'timid': 17276, 'titanic,': 17277, 'titanic.': 17278, 'tito': 17279, 'tortures': 17280, 'tow': 17281, 'towel': 17282, 'transformations': 17283, 'trappings': 17284, 'travel,': 17285, 'travesty.': 17286, 'troubling': 17287, 'two-thirds': 17288, 'tyrone': 17289, 'uncomfortably': 17290, 'uncommon': 17291, 'uncompromising': 17292, 'undermined': 17293, 'undeveloped': 17294, 'uninspired.': 17295, 'unjustly': 17296, 'unknowingly': 17297, 'unlikable,': 17298, 'unpretentious': 17299, 'unusual,': 17300, 'valiant': 17301, 'variety.': 17302, 'vehicle,': 17303, 'velvet': 17304, 'venezuela': 17305, 'verdict': 17306, 'views,': 17307, 'viking': 17308, 'violence.<br': 17309, 'virginity': 17310, 'virus.': 17311, 'visibly': 17312, 'visitors': 17313, 'volunteer': 17314, 'wai': 17315, 'wal-mart': 17316, "walken's": 17317, 'walker,': 17318, 'wallach': 17319, 'warfare': 17320, "washington's": 17321, 'weapons.': 17322, 'well-written,': 17323, 'whichever': 17324, "who'll": 17325, 'who.': 17326, 'wilderness.': 17327, 'winslet': 17328, 'witch.': 17329, 'witherspoon': 17330, 'woman.<br': 17331, 'worthy.': 17332, 'write,': 17333, 'write.': 17334, 'yacht': 17335, 'yawn': 17336, 'you."': 17337, 'yours': 17338, 'zabriskie': 17339, 'zone.': 17340, 'zooms': 17341, '"braveheart"': 17342, '"dressed': 17343, '"for': 17344, '"great"': 17345, '"hamlet"': 17346, '"lord': 17347, '"lost"': 17348, '"made': 17349, '"national': 17350, '"once': 17351, '"saving': 17352, '"seed"': 17353, '"stay': 17354, '"true"': 17355, '"whipped"': 17356, "'in": 17357, "'man": 17358, '(bill': 17359, '(dennis': 17360, '(ian': 17361, '(quite': 17362, "(who's": 17363, '(yeah,': 17364, '/>-the': 17365, '/>according': 17366, '/>actually,': 17367, '/>excellent': 17368, '/>film': 17369, '/>firstly,': 17370, '/>movie': 17371, '/>obviously': 17372, '/>through': 17373, '1/3': 17374, '17,': 17375, '1938': 17376, "1970's,": 17377, '1970s.': 17378, '1992': 17379, '4:': 17380, '5.1': 17381, '6,': 17382, '7.5/10': 17383, '747': 17384, 'a.k.a.': 17385, 'absurdist': 17386, 'accuses': 17387, 'actors)': 17388, 'adultery': 17389, 'adulthood': 17390, 'advancement': 17391, 'advancing': 17392, 'affable': 17393, 'africans': 17394, 'afterward': 17395, 'aiello': 17396, 'aired,': 17397, 'aliens.': 17398, 'ambient': 17399, 'americans.': 17400, 'ancestor': 17401, "andrews'": 17402, 'angles.': 17403, 'answers.': 17404, 'anticipation.': 17405, "anybody's": 17406, 'apartments': 17407, 'appear.': 17408, 'appearances,': 17409, 'appropriate,': 17410, 'archaeologist': 17411, 'archetypal': 17412, 'arctic': 17413, 'arena': 17414, 'argues': 17415, 'aristocrat': 17416, 'arnold,': 17417, 'arrogant,': 17418, 'arthur.': 17419, 'articles': 17420, 'asano': 17421, 'asks,': 17422, 'assisted': 17423, 'atwill': 17424, 'avoid,': 17425, 'awhile.': 17426, 'backbone': 17427, 'bargained': 17428, 'barker': 17429, 'barking': 17430, 'barrage': 17431, 'base,': 17432, 'basement,': 17433, 'bathsheba': 17434, 'baxter': 17435, 'beast,': 17436, 'beautiful!': 17437, 'beautiful.<br': 17438, 'beds': 17439, 'behold.': 17440, 'beings.': 17441, 'benicio': 17442, 'benson': 17443, "bettie's": 17444, 'beyond.': 17445, 'bilge': 17446, 'binoche': 17447, 'bio': 17448, "black's": 17449, 'blackadder': 17450, 'blasting': 17451, 'bloated': 17452, 'blocks': 17453, 'blur': 17454, 'boiling': 17455, 'booze': 17456, 'brass': 17457, 'bravura': 17458, 'bridge.': 17459, 'broader': 17460, 'broderick': 17461, 'btw,': 17462, 'bucks.': 17463, 'budgeted': 17464, 'bullied': 17465, 'burns,': 17466, 'burton,': 17467, 'buttgereit': 17468, 'button.': 17469, 'butts': 17470, 'buy.': 17471, 'bygone': 17472, 'cafe': 17473, 'café': 17474, "cain's": 17475, 'call,': 17476, 'calvin': 17477, 'camaraderie': 17478, 'came.': 17479, 'can.<br': 17480, 'canada.': 17481, 'cane': 17482, 'captain,': 17483, 'cards.': 17484, 'carr': 17485, 'cause,': 17486, 'caution': 17487, 'censored': 17488, 'cgi.': 17489, "chamberlain's": 17490, 'chaney': 17491, 'character?': 17492, 'characters)': 17493, 'charmed': 17494, 'cheeky': 17495, 'child"': 17496, 'chord': 17497, 'choreography,': 17498, 'christian,': 17499, 'cleared': 17500, 'clinical': 17501, 'clones': 17502, 'clue.': 17503, 'clutches': 17504, 'colbert': 17505, 'collapses': 17506, 'comedy;': 17507, 'comet': 17508, 'coming-of-age': 17509, 'committee': 17510, 'common.': 17511, 'communicating': 17512, 'communists': 17513, 'completely,': 17514, 'components': 17515, 'conclusion:': 17516, 'concoction': 17517, 'connelly': 17518, 'conroy': 17519, 'contradict': 17520, 'contributing': 17521, 'contributions': 17522, 'copying': 17523, 'corinne': 17524, 'corky': 17525, 'correctly,': 17526, 'cost.': 17527, 'counterpoint': 17528, "couple's": 17529, 'cousin,': 17530, 'creepiest': 17531, 'cringed': 17532, 'curiosity,': 17533, 'curious,': 17534, 'curtis,': 17535, 'cutest': 17536, 'cybill': 17537, 'dale': 17538, 'days"': 17539, 'dazzled': 17540, "dead'": 17541, 'debut.': 17542, 'decadent': 17543, 'decently': 17544, 'deceptive': 17545, 'decoration': 17546, 'deft': 17547, 'delon': 17548, 'deluise': 17549, 'demi': 17550, 'departed': 17551, 'depravity': 17552, 'desire.': 17553, 'despised': 17554, 'development.<br': 17555, 'devil,': 17556, 'devout': 17557, 'diagnosed': 17558, 'dig!': 17559, 'digest': 17560, 'dim-witted': 17561, 'dimensions': 17562, 'dingo': 17563, 'disability': 17564, 'disk': 17565, 'display,': 17566, 'disposal': 17567, 'distaste': 17568, 'distraction.': 17569, 'distribution.': 17570, 'doubles': 17571, 'down!': 17572, 'dramas.': 17573, 'drawn-out': 17574, 'drifting': 17575, 'drone': 17576, 'drowns': 17577, 'dubbed,': 17578, 'dublin': 17579, 'duds': 17580, 'duff': 17581, 'dusk': 17582, 'earthquake': 17583, 'economical': 17584, 'editors': 17585, 'effective.<br': 17586, 'effectiveness': 17587, 'egotistical': 17588, 'embittered': 17589, 'emotionally,': 17590, 'employment': 17591, 'end)': 17592, 'endeavor': 17593, 'endurance': 17594, 'enemy.': 17595, 'englishman': 17596, 'enjoyment.': 17597, 'ensue': 17598, 'entranced': 17599, 'epilogue': 17600, 'esoteric': 17601, 'evidenced': 17602, 'evil.<br': 17603, 'evoking': 17604, 'exactly,': 17605, 'excellent!': 17606, 'exceptional.': 17607, 'executing': 17608, 'exemplifies': 17609, 'exhibited': 17610, 'experiment,': 17611, 'experiment.': 17612, 'expression.': 17613, 'extract': 17614, 'extraneous': 17615, 'eyeball': 17616, 'eyes"': 17617, 'facets': 17618, 'failed,': 17619, 'fails.<br': 17620, 'famously': 17621, 'feat.': 17622, 'fenton': 17623, 'few,': 17624, "films'": 17625, 'finch': 17626, 'fisherman': 17627, 'flickering': 17628, 'flirt': 17629, 'flirts': 17630, 'fluff.': 17631, 'follow.<br': 17632, "fonda's": 17633, 'footlight': 17634, 'forgives': 17635, 'forth,': 17636, "foster's": 17637, 'foster,': 17638, 'fraction': 17639, 'franz': 17640, 'frustration,': 17641, "fuller's": 17642, 'garish': 17643, 'gathers': 17644, 'genres.': 17645, 'glamour': 17646, 'gleason': 17647, 'godmother': 17648, 'gojoe': 17649, 'good...': 17650, 'goofs': 17651, 'goose': 17652, 'got,': 17653, 'gracefully': 17654, 'grade.': 17655, 'grandeur': 17656, 'grandiose': 17657, 'grandson': 17658, 'gratitude': 17659, 'greatness.': 17660, 'greats': 17661, 'greenaway': 17662, 'grinding': 17663, 'gripping.': 17664, 'gruesome,': 17665, 'guerrero': 17666, 'guess.<br': 17667, 'gutter': 17668, 'gyllenhaal': 17669, 'halloween,': 17670, 'hanks,': 17671, 'harlin': 17672, 'he?': 17673, "heaven's": 17674, 'hectic': 17675, 'heed': 17676, 'hewitt': 17677, 'hickock': 17678, 'hiking': 17679, 'him).': 17680, 'hitch': 17681, 'hitchhiker': 17682, "homer's": 17683, 'honourable': 17684, 'hoot.': 17685, 'horses.': 17686, 'hour.<br': 17687, 'how.': 17688, 'hundstage': 17689, 'hunter.': 17690, 'hyde,': 17691, 'hysteria': 17692, 'icing': 17693, 'ida': 17694, 'idiot,': 17695, 'igor': 17696, 'ii:': 17697, 'illustrious': 17698, 'imo': 17699, 'impeccable': 17700, 'import': 17701, 'impressionable': 17702, 'included,': 17703, 'incomparable': 17704, 'individuals,': 17705, 'ineffective': 17706, 'influence,': 17707, 'ingenuity': 17708, 'ingmar': 17709, 'inherits': 17710, 'injects': 17711, 'inmate': 17712, 'innocent.': 17713, 'insect': 17714, 'insects': 17715, 'inserting': 17716, 'insufferable': 17717, 'intact': 17718, 'intact.': 17719, 'intensity,': 17720, 'intrusive': 17721, 'irons': 17722, 'ironside': 17723, 'is).': 17724, "isn't,": 17725, 'it.)': 17726, 'it.i': 17727, "jackie's": 17728, 'jackson.': 17729, 'janeane': 17730, 'japanese.': 17731, 'jerks': 17732, 'jim"': 17733, 'jim,': 17734, 'jj': 17735, 'job!': 17736, 'joke.<br': 17737, 'journalism': 17738, "kate's": 17739, 'kate,': 17740, 'kelly.': 17741, 'kennel': 17742, 'key,': 17743, 'killing,': 17744, 'kissed': 17745, 'kit': 17746, 'kitsch': 17747, 'knowledgeable': 17748, "kyle's": 17749, 'languages': 17750, 'larger-than-life': 17751, 'lau': 17752, 'layer': 17753, 'lazy,': 17754, 'leader.': 17755, 'league,': 17756, 'leagues': 17757, 'leaping': 17758, 'less)': 17759, 'lick': 17760, 'lie,': 17761, 'lightly': 17762, 'lila': 17763, 'lined': 17764, 'lips.': 17765, 'literally.': 17766, 'looming': 17767, 'loose,': 17768, 'loosely)': 17769, 'loser.': 17770, 'loved,': 17771, 'loving,': 17772, 'lumiere': 17773, 'machinations': 17774, 'madame': 17775, 'madeline': 17776, 'magnetic': 17777, 'magnum': 17778, 'malicious': 17779, 'maltin': 17780, 'mankind.': 17781, 'mantegna': 17782, 'marie,': 17783, 'massively': 17784, 'master,': 17785, 'masturbation': 17786, 'math': 17787, 'matte': 17788, "may's": 17789, 'media.': 17790, 'meetings': 17791, 'messes': 17792, "mgm's": 17793, 'milestone': 17794, 'misunderstanding': 17795, 'mode.': 17796, 'modine': 17797, 'morgue': 17798, 'mount': 17799, 'mouse,': 17800, 'movies).': 17801, 'must.': 17802, 'nacho': 17803, 'narratives': 17804, 'nary': 17805, 'neck.': 17806, 'neighbors,': 17807, 'nerds': 17808, 'newcomers': 17809, 'next?': 17810, 'nice.<br': 17811, 'noirs': 17812, 'noisy': 17813, 'noriko': 17814, 'not)': 17815, 'nothing!': 17816, "novel's": 17817, 'novels.': 17818, 'nuke': 17819, 'nurse,': 17820, 'nutshell,': 17821, 'nyc,': 17822, 'o.k.': 17823, 'occasions.': 17824, 'odd.': 17825, 'off"': 17826, 'off?': 17827, 'offset': 17828, 'offside': 17829, 'olen': 17830, "olivier's": 17831, 'on;': 17832, 'opinion)': 17833, 'opinion.<br': 17834, 'ordinary.': 17835, 'originated': 17836, 'orwell': 17837, 'oscar-worthy': 17838, 'ott': 17839, 'out;': 17840, 'outcast': 17841, 'outlet': 17842, 'outraged': 17843, 'overplayed': 17844, 'overrated.': 17845, 'overthrow': 17846, 'overweight': 17847, 'oxygen': 17848, 'oz,': 17849, 'packing': 17850, 'pakistani': 17851, 'pales': 17852, 'paperhouse': 17853, 'partying': 17854, 'passages': 17855, 'passed.': 17856, 'patriotism': 17857, 'patterns': 17858, 'penis': 17859, 'penultimate': 17860, 'peripheral': 17861, 'permission': 17862, 'perpetrated': 17863, 'perplexing': 17864, 'persona.': 17865, 'photographer,': 17866, 'piles': 17867, 'pimlico': 17868, 'pipe': 17869, 'plastered': 17870, 'playing,': 17871, 'pleasant.': 17872, 'plot!': 17873, "plot's": 17874, 'plots.': 17875, 'plunges': 17876, 'pokémon': 17877, 'poop': 17878, 'popcorn,': 17879, 'position.': 17880, 'positive,': 17881, 'positive.': 17882, 'pounding': 17883, 'powell,': 17884, 'power.<br': 17885, 'preceding': 17886, 'pregnant,': 17887, 'presentation,': 17888, 'president,': 17889, 'pretension': 17890, 'prime.': 17891, 'princess,': 17892, 'priya': 17893, 'problem.<br': 17894, 'problematic': 17895, 'professional,': 17896, 'promising,': 17897, 'promo': 17898, 'pronounced': 17899, 'proportion': 17900, "protagonist's": 17901, 'protected': 17902, 'provokes': 17903, 'publicly': 17904, 'publish': 17905, 'pumped': 17906, 'puzzles': 17907, 'q&a': 17908, 'quincy': 17909, 'random,': 17910, 'rao': 17911, 'ratings.': 17912, 'ratio': 17913, 're-read': 17914, 'realising': 17915, 'reel.': 17916, 'reflective': 17917, 'refreshing.': 17918, 'renewed': 17919, 'replete': 17920, 'reply': 17921, 'reporters': 17922, 'reporting': 17923, 'requiring': 17924, 'respectively,': 17925, 'resurrection': 17926, 'return,': 17927, 'reviewer,': 17928, 'reviewers,': 17929, 'revolved': 17930, 'reynolds,': 17931, 'rhymes': 17932, 'richards,': 17933, 'richer': 17934, 'rifles': 17935, 'risqué': 17936, 'robot.': 17937, "rochester's": 17938, 'roll.<br': 17939, 'rory': 17940, 'round,': 17941, 'rubbing': 17942, 'runner,': 17943, 'running.': 17944, 'russell,': 17945, 's&m': 17946, 'sacrifice,': 17947, 'sad.<br': 17948, 'safety.': 17949, 'sailing': 17950, 'salute': 17951, 'scant': 17952, 'scenes!': 17953, 'schizophrenic': 17954, 'schumacher': 17955, 'scott.': 17956, 'screen!': 17957, 'scrooge,': 17958, 'seamlessly': 17959, 'secondly': 17960, 'secret,': 17961, 'seduces': 17962, 'seeing.<br': 17963, 'self-serving': 17964, 'sensitive,': 17965, 'shallow.': 17966, 'shane': 17967, 'shattering': 17968, 'shaved': 17969, 'sheedy': 17970, 'shelly': 17971, 'shootouts': 17972, 'short:': 17973, 'show)': 17974, 'showcasing': 17975, 'shrieking': 17976, 'silent,': 17977, 'silliest': 17978, 'sketchy': 17979, 'skin.': 17980, 'skinned': 17981, 'slides': 17982, 'so!': 17983, 'soaked': 17984, 'somerset': 17985, 'spain,': 17986, 'spans': 17987, 'speaker': 17988, 'spewing': 17989, 'spill': 17990, 'spots.': 17991, 'spouts': 17992, 'spree.': 17993, 'stagnant': 17994, 'stakes': 17995, 'stallion': 17996, 'status,': 17997, 'sticky': 17998, 'still.': 17999, 'strains': 18000, 'streetcar': 18001, 'strength.': 18002, 'stuntman': 18003, 'stunts.': 18004, 'subjective': 18005, 'subtitle': 18006, 'subtle.': 18007, 'sucks!': 18008, 'sullavan': 18009, 'superimposed': 18010, 'surly': 18011, 'surpass': 18012, 'surprise!': 18013, 'surrender': 18014, 'survive,': 18015, 'sweaty': 18016, 'sympathetic.': 18017, 'sympathise': 18018, 't-rex': 18019, 'tailored': 18020, 'tales,': 18021, 'tapped': 18022, 'tastefully': 18023, "team's": 18024, 'tease': 18025, 'techniques,': 18026, 'techno': 18027, 'television.<br': 18028, 'telling,': 18029, 'tennessee': 18030, 'terrifically': 18031, 'terror,': 18032, 'terrorizing': 18033, 'tests': 18034, 'then?': 18035, 'there"': 18036, 'theresa': 18037, "thing's": 18038, 'thing?': 18039, 'thirst': 18040, "thompson's": 18041, 'thorough': 18042, 'thoughts,': 18043, 'thrills.': 18044, 'tilly': 18045, 'tired.': 18046, 'tissue': 18047, 'todesking': 18048, 'tolerated': 18049, 'translates': 18050, 'trap.': 18051, 'trees.': 18052, "trier's": 18053, 'trump': 18054, 'trying.': 18055, 'two-hour': 18056, 'unabashed': 18057, 'unattractive,': 18058, 'unbalanced': 18059, 'unbeknownst': 18060, 'under-appreciated': 18061, 'underbelly': 18062, 'unfathomable': 18063, 'unforgettable.': 18064, 'uninspired,': 18065, 'unorthodox': 18066, 'unwillingness': 18067, 'upsets': 18068, 'us?': 18069, 'vanishes': 18070, 'venoms': 18071, 'ventures': 18072, 'verbally': 18073, 'versa.': 18074, 'vh1': 18075, 'videos,': 18076, 'viewers.<br': 18077, 'vikings': 18078, 'villainess#39;: 18079, 'violin': 18080, 'virginal': 18081, 'virtues': 18082, 'virus,': 18083, 'vixen': 18084, 'voice-overs': 18085, 'voices.': 18086, 'wait!': 18087, 'wants,': 18088, 'warners': 18089, 'weeks,': 18090, 'weisz': 18091, 'well-intentioned': 18092, 'wendt': 18093, 'whips': 18094, 'wide-eyed': 18095, 'wind.': 18096, 'winding': 18097, 'witty.': 18098, 'womanizing': 18099, 'wondering,': 18100, 'work?': 18101, 'workers,': 18102, 'working.': 18103, 'wrecks': 18104, 'wrought': 18105, 'wu': 18106, 'wwf': 18107, 'yadda': 18108, 'yearn': 18109, 'yes!': 18110, 'you?"': 18111, 'zach': 18112, 'zero,': 18113, 'zoo': 18114, '"animal': 18115, '"attack': 18116, '"batman': 18117, '"come': 18118, '"cool"': 18119, '"great': 18120, '"jokes"': 18121, '"killer': 18122, '"les': 18123, '"live': 18124, '"only': 18125, '"over': 18126, '"power': 18127, '"r"': 18128, '"show': 18129, '"there': 18130, '"two': 18131, '"welcome': 18132, '"zombie"': 18133, "'movie'": 18134, '(among': 18135, '(aside': 18136, '(being': 18137, '(e.g.,': 18138, '(ie': 18139, '(joan': 18140, '(leslie': 18141, '(matt': 18142, '(oh': 18143, '(ray': 18144, '(save': 18145, '(walter': 18146, '(was': 18147, '/>8': 18148, '/>check': 18149, '/>direction': 18150, '/>episode': 18151, '/>george': 18152, '/>have': 18153, '/>jim': 18154, '/>looking': 18155, '/>otherwise,': 18156, '/>pretty': 18157, '/>sorry': 18158, '/>sound': 18159, '/>story': 18160, '/>their': 18161, '/>whatever': 18162, '/>william': 18163, '17th': 18164, '18,': 18165, "1920's": 18166, '1930s.': 18167, '1935': 18168, '1950s,': 18169, '1950s.': 18170, "1970's.": 18171, '1975': 18172, '1986,': 18173, '1993,': 18174, '3/10.': 18175, "50's.": 18176, "60's,": 18177, '60s,': 18178, '9,': 18179, 'aag': 18180, 'about!': 18181, 'accent.<br': 18182, 'accuse': 18183, 'achilles': 18184, 'action/adventure': 18185, 'ada': 18186, 'adultery,': 18187, 'adv.': 18188, 'advocate': 18189, 'afi': 18190, 'afterward.': 18191, 'again;': 18192, 'agents,': 18193, 'agnes': 18194, 'alberto': 18195, 'alcoholism': 18196, 'allegorical': 18197, 'alternating': 18198, 'ancestors': 18199, 'android': 18200, 'angered': 18201, "anne's": 18202, 'answer:': 18203, 'anthem': 18204, 'appealed': 18205, 'appealing,': 18206, 'appear,': 18207, 'appease': 18208, 'appetite': 18209, 'appreciated.': 18210, 'appreciative': 18211, 'arrangement': 18212, 'arrangements': 18213, 'ask.': 18214, 'aspect,': 18215, 'assert': 18216, 'assumptions': 18217, 'atmosphere.<br': 18218, 'awesomely': 18219, 'b-': 18220, 'back-story': 18221, 'backgrounds.': 18222, 'bad:': 18223, 'bands,': 18224, 'bathroom.': 18225, 'bearded': 18226, 'bears,': 18227, 'beauties': 18228, 'bernie': 18229, 'berry': 18230, 'best-selling': 18231, 'betsy': 18232, 'bhandarkar': 18233, 'big-time': 18234, "bill's": 18235, 'bill,': 18236, 'birth,': 18237, 'blasts': 18238, 'blonde,': 18239, "bo's": 18240, 'bob,': 18241, 'bodily': 18242, 'bold,': 18243, 'bolivia': 18244, 'bordering': 18245, 'boring?': 18246, 'borrowing': 18247, 'bounce': 18248, 'bourgeois': 18249, 'boyle,': 18250, 'brain-dead': 18251, 'brains.': 18252, 'brainwashed': 18253, 'breathtakingly': 18254, 'breeding': 18255, 'brighter': 18256, 'brigitte': 18257, 'british.': 18258, 'brosnan,': 18259, 'brutal.': 18260, 'buddy.': 18261, 'buff.': 18262, 'bullets,': 18263, 'bunch,': 18264, 'but.': 18265, 'butchering': 18266, 'butler,': 18267, 'butt.': 18268, 'c)': 18269, 'c-': 18270, 'cameo.': 18271, 'cameras,': 18272, 'campy,': 18273, 'cardinal': 18274, 'casey': 18275, 'cautionary': 18276, 'certainty': 18277, 'chad': 18278, 'chaos.': 18279, 'character;': 18280, 'cheesiest': 18281, 'cherry': 18282, 'cheryl': 18283, 'chico': 18284, 'chilling.': 18285, 'chin': 18286, 'chopper': 18287, 'christianity.': 18288, 'christmas"': 18289, 'chronological': 18290, 'classics,': 18291, 'cleverness': 18292, 'cloris': 18293, 'clothing,': 18294, 'clunker': 18295, 'code.': 18296, "cohen's": 18297, 'cohn': 18298, 'colleen': 18299, 'colour,': 18300, 'commented,': 18301, 'commercial,': 18302, 'commercial.': 18303, 'commonplace': 18304, 'comparatively': 18305, 'compellingly': 18306, 'completing': 18307, 'computer,': 18308, 'computer.': 18309, 'comrades': 18310, 'conscience.': 18311, 'contaminated': 18312, 'contract.': 18313, 'conversation.': 18314, 'convincingly.': 18315, 'core.': 18316, 'corny.': 18317, 'corpse.': 18318, 'costume.': 18319, 'could.<br': 18320, 'count,': 18321, 'countryside.': 18322, 'cowboys': 18323, 'creeping': 18324, 'crimson': 18325, 'cults': 18326, 'cum': 18327, 'curse,': 18328, 'cuteness': 18329, 'cynthia': 18330, 'dance"': 18331, 'dastardly': 18332, 'day!': 18333, 'dead.<br': 18334, 'debacle': 18335, 'deceptively': 18336, 'degradation': 18337, 'delay': 18338, 'delights': 18339, 'delta': 18340, 'deluded': 18341, 'delusional': 18342, 'demon,': 18343, 'denial': 18344, 'departments': 18345, 'dependable': 18346, 'deplorable': 18347, 'describe.': 18348, 'dialogue.<br': 18349, 'dialogue:': 18350, 'diamonds': 18351, 'diet': 18352, 'difference,': 18353, 'dip': 18354, 'direct,': 18355, 'disappointments': 18356, 'discusses': 18357, 'disguises': 18358, 'disinterested': 18359, 'dispose': 18360, 'disturbing.<br': 18361, 'divorce,': 18362, "dixon's": 18363, 'do)': 18364, 'documentaries,': 18365, "dog's": 18366, 'dolls,': 18367, 'domineering': 18368, 'don`t': 18369, 'doubtful': 18370, 'doubtless': 18371, "drew's": 18372, 'dried': 18373, 'drink,': 18374, 'droll': 18375, 'droning': 18376, 'drooling': 18377, 'drunks': 18378, 'dude,': 18379, 'dungeons': 18380, 'duo.': 18381, 'durante': 18382, 'dust.': 18383, 'dvd)': 18384, 'earp': 18385, 'edgy,': 18386, 'effectively.': 18387, 'eight.<br': 18388, 'eighty': 18389, 'elegant,': 18390, 'elijah': 18391, 'embraced': 18392, 'emergence': 18393, 'emma.': 18394, 'emmanuelle': 18395, 'end).': 18396, 'enjoy.<br': 18397, 'enlists': 18398, 'enrico': 18399, 'entice': 18400, 'enticing': 18401, 'er': 18402, 'eroticism': 18403, 'evidently,': 18404, 'exceptional,': 18405, 'excite': 18406, 'expression,': 18407, 'expressions,': 18408, 'f/x': 18409, 'fair.': 18410, 'fairbanks,': 18411, 'fairness': 18412, 'fame)': 18413, 'fantasies.': 18414, 'fares': 18415, 'fascism': 18416, 'faults.': 18417, 'faulty': 18418, 'fest.': 18419, 'filmography': 18420, 'films).': 18421, 'finer': 18422, 'finlay': 18423, 'firefighters': 18424, 'five,': 18425, 'flashbacks.': 18426, 'floors': 18427, 'foe': 18428, 'foolishly': 18429, 'foot,': 18430, 'ford.': 18431, 'fortunes': 18432, 'foul-mouthed': 18433, 'fragmented': 18434, 'francisco,': 18435, 'francisco.': 18436, 'freakish': 18437, "freeman's": 18438, 'from.<br': 18439, 'funeral,': 18440, 'g-girl': 18441, 'gandalf': 18442, 'gangsta': 18443, 'generations.': 18444, 'ghost.': 18445, 'ghosts.': 18446, 'giallo,': 18447, 'giddy': 18448, 'gift,': 18449, 'girls"': 18450, 'glamor': 18451, 'gloss': 18452, 'goal,': 18453, 'goebbels': 18454, 'going.<br': 18455, 'gospel': 18456, 'graced': 18457, 'graffiti': 18458, 'grainy,': 18459, 'greeted': 18460, 'gremlins': 18461, 'grief,': 18462, 'grinning': 18463, 'gripping,': 18464, 'guy!': 18465, 'guy?': 18466, 'hairdo': 18467, 'hallam': 18468, 'halloween.': 18469, 'hamilton,': 18470, 'hampered': 18471, 'hand.<br': 18472, 'happy.<br': 18473, 'hardship': 18474, 'hardy,': 18475, 'harvard': 18476, 'harvest': 18477, 'hauntingly': 18478, 'hazel': 18479, 'heads,': 18480, 'heated': 18481, 'heaton': 18482, 'helmed': 18483, 'her;': 18484, 'herself.<br': 18485, 'highlighting': 18486, 'him:': 18487, 'hinges': 18488, 'hog': 18489, 'hole.': 18490, 'homosexuality,': 18491, 'honors': 18492, 'hopelessness': 18493, 'hopper,': 18494, 'horrid,': 18495, 'houston': 18496, 'hudson,': 18497, 'hutton': 18498, 'i.q.': 18499, 'ideological': 18500, 'iii,': 18501, 'iii:': 18502, 'illustration': 18503, 'imho': 18504, 'immerse': 18505, 'imo,': 18506, 'incongruous': 18507, 'indicated': 18508, 'individual,': 18509, 'inflict': 18510, 'inhuman': 18511, 'injected': 18512, 'innovative,': 18513, 'ins': 18514, 'insistence': 18515, 'installment.': 18516, 'intentions.': 18517, 'interludes': 18518, 'intervention': 18519, 'intestines': 18520, 'investigative': 18521, 'invitation': 18522, 'ironic,': 18523, 'it!"': 18524, "it'": 18525, 'it...<br': 18526, "jake's": 18527, 'janos': 18528, "japan's": 18529, 'jeanne': 18530, 'jerome': 18531, "johnny's": 18532, "johnson's": 18533, 'joyce': 18534, 'just,': 18535, 'justice.<br': 18536, 'kali': 18537, 'katsu': 18538, 'kidnappers': 18539, 'killing.': 18540, 'kingsley': 18541, 'kooky': 18542, 'labour': 18543, "ladies'": 18544, 'lassie': 18545, 'leans': 18546, 'leary': 18547, 'legions': 18548, "lennon's": 18549, "levin's": 18550, 'liar': 18551, 'liberated': 18552, 'librarian': 18553, 'lighting.': 18554, "lily's": 18555, 'line"': 18556, 'literate': 18557, 'liv': 18558, 'loathe': 18559, 'lord.': 18560, 'lose,': 18561, 'louque': 18562, 'low-brow': 18563, 'low-life': 18564, "lucas'": 18565, 'ludicrous,': 18566, 'lumet,': 18567, 'lust,': 18568, 'maddy': 18569, 'makings': 18570, 'maltese': 18571, 'maman': 18572, 'man".': 18573, 'mansion.': 18574, 'marie.': 18575, 'marley': 18576, 'marsha': 18577, 'mastroianni': 18578, 'mate.': 18579, 'matter.<br': 18580, 'matters,': 18581, 'mature,': 18582, 'matured': 18583, "maugham's": 18584, 'maxwell': 18585, 'me!"': 18586, 'me,"': 18587, 'meaty': 18588, 'mechanics': 18589, 'mediocrity': 18590, 'melvin': 18591, 'mendes': 18592, 'mercury': 18593, 'merit,': 18594, 'mesmerized': 18595, 'met,': 18596, 'meteorite': 18597, 'mid-life': 18598, "miller's": 18599, 'minimalist': 18600, 'mirror.': 18601, 'miscast,': 18602, 'misery.': 18603, 'mislead': 18604, 'mistaken.': 18605, 'mobsters': 18606, 'models.': 18607, 'monument': 18608, 'morbius': 18609, 'morphs': 18610, 'morton': 18611, 'motives,': 18612, 'mounting': 18613, 'movie.i': 18614, 'mug': 18615, 'mumbai': 18616, "mummy's": 18617, 'murder.<br': 18618, 'muscles': 18619, 'myself.<br': 18620, 'nadir': 18621, 'naomi': 18622, 'nasa': 18623, 'natured': 18624, "nicholson's": 18625, 'nightmare,': 18626, 'nominee': 18627, 'nonexistent': 18628, "novak's": 18629, 'now"': 18630, "o'neal": 18631, 'obligated': 18632, 'obliged': 18633, 'obscurity.': 18634, 'obtaining': 18635, 'occasionally,': 18636, 'occupy': 18637, 'of?': 18638, 'offenders': 18639, 'one),': 18640, 'oneself': 18641, 'operas': 18642, 'operation,': 18643, 'orca': 18644, 'original)': 18645, 'orleans,': 18646, "others'": 18647, 'out-of-place': 18648, 'outlaws': 18649, 'overcoming': 18650, 'overlooked.': 18651, 'overlooking': 18652, 'owing': 18653, 'p.s.': 18654, "panahi's": 18655, 'pantheon': 18656, 'parable': 18657, 'parsifal': 18658, 'part:': 18659, 'pass,': 18660, 'passable,': 18661, 'paste': 18662, 'pathetic.<br': 18663, "paulie's": 18664, 'pazu': 18665, 'pecker': 18666, 'pee': 18667, 'people!': 18668, 'people)': 18669, 'peppered': 18670, 'performers,': 18671, 'perilous': 18672, 'perils': 18673, 'permeates': 18674, 'perplexed': 18675, 'personal,': 18676, 'perversion': 18677, 'pervert': 18678, 'philippe': 18679, 'phone,': 18680, 'picky': 18681, 'pin-up': 18682, 'pine': 18683, 'pitfalls': 18684, 'plagues': 18685, 'plotline': 18686, 'ploy': 18687, 'pm': 18688, 'poem,': 18689, 'poignant.': 18690, 'point-of-view': 18691, 'pollack': 18692, 'ponderous': 18693, 'poorer': 18694, 'population.': 18695, 'poverty,': 18696, 'praise.': 18697, 'prayer': 18698, 'predecessors': 18699, 'pregnancy': 18700, 'pretense': 18701, 'pretext': 18702, 'pristine': 18703, 'probably,': 18704, 'problem:': 18705, 'producers.': 18706, 'progress,': 18707, 'projects,': 18708, 'protagonists.': 18709, 'protector': 18710, 'protracted': 18711, 'protée': 18712, 'pryor': 18713, 'purchasing': 18714, 'purists': 18715, 'quigley': 18716, 'radio,': 18717, 'ragged': 18718, 'rains': 18719, 'ranma': 18720, 'rapists': 18721, 'raptor': 18722, 'rare.': 18723, 'ratings,': 18724, "ray's": 18725, 're-animator': 18726, 'reading.': 18727, 'reason)': 18728, 'reason:': 18729, 'recalled': 18730, 'reels': 18731, 'reform': 18732, 'reinforces': 18733, 'removes': 18734, 'rent,': 18735, 'rent.': 18736, 'repugnant': 18737, 'reputation,': 18738, 'rerun': 18739, 'research,': 18740, 'resolution,': 18741, 'resounding': 18742, 'resourceful': 18743, 'resources.': 18744, 'revived': 18745, 'rhys': 18746, 'riches': 18747, 'ride.<br': 18748, 'rightful': 18749, 'rings,': 18750, 'ringwald': 18751, 'risk.': 18752, 'rocker': 18753, 'rockwell': 18754, 'role),': 18755, "rose's": 18756, 'roses': 18757, 'round.': 18758, 'rowan': 18759, "rukh's": 18760, 'rule.': 18761, 's***': 18762, 's**t': 18763, 'sail': 18764, 'salem': 18765, 'saps': 18766, 'savage,': 18767, 'scarce': 18768, 'scheduled': 18769, 'schtick': 18770, 'schwarzenegger': 18771, 'scrappy': 18772, 'screenwriter,': 18773, "script's": 18774, 'scripts.': 18775, "seagal's": 18776, 'section,': 18777, 'separates': 18778, 'servant,': 18779, 'sewer': 18780, 'sexuality.': 18781, 'shabby': 18782, 'shahrukh': 18783, 'sheeta': 18784, "sheriff's": 18785, 'shields': 18786, 'shooter': 18787, 'shove': 18788, 'show:': 18789, 'showcased': 18790, 'shows.<br': 18791, 'shtick': 18792, 'sidekick,': 18793, 'silliness,': 18794, 'similar.': 18795, 'simone': 18796, 'single,': 18797, 'singles': 18798, 'sky"': 18799, 'slackers': 18800, 'sleep.<br': 18801, 'slipping': 18802, 'smoking,': 18803, 'solace': 18804, 'solar': 18805, 'solid.': 18806, 'sonia': 18807, 'sophomore': 18808, 'spanish,': 18809, 'sparkle': 18810, 'spear': 18811, 'specialty': 18812, 'specifically,': 18813, 'speeds': 18814, 'speedy': 18815, 'spider-man': 18816, 'spinster': 18817, 'spits': 18818, 'spoils': 18819, 'spying': 18820, 'statement,': 18821, 'stories.<br': 18822, 'storm,': 18823, 'story...': 18824, 'straight.': 18825, 'stranger,': 18826, 'stroll': 18827, 'stud': 18828, 'sturdy': 18829, 'succeeded.': 18830, 'superior,': 18831, 'superior.': 18832, 'supporter': 18833, 'suppress': 18834, 'survival.': 18835, 'swayed': 18836, 'tackled': 18837, 'tanya': 18838, 'task,': 18839, 'tattoo': 18840, 'taylor.': 18841, 'teased': 18842, 'teeth,': 18843, 'tempered': 18844, 'temple.': 18845, 'tempo': 18846, 'textile': 18847, 'that;': 18848, 'them:': 18849, 'them;': 18850, 'then...': 18851, 'there)': 18852, 'there...': 18853, 'there:': 18854, 'thomas,': 18855, 'thriller.<br': 18856, 'thrilling,': 18857, 'throughly': 18858, 'tia': 18859, 'tibetan': 18860, 'tidy': 18861, 'tierney,': 18862, 'tigers': 18863, 'times!': 18864, 'times;': 18865, 'tintin': 18866, 'tips': 18867, 'tiresome.': 18868, 'title.<br': 18869, 'to?': 18870, 'toes': 18871, 'toolbox': 18872, 'topic,': 18873, 'tossing': 18874, 'tournament': 18875, 'trade,': 18876, 'treacherous': 18877, 'treasure,': 18878, 'treasured': 18879, 'trifle': 18880, 'trinity': 18881, 'trish': 18882, 'troop': 18883, 'truck,': 18884, 'truth.<br': 18885, 'turturro': 18886, 'tv-movie': 18887, 'twenty-five': 18888, 'twisting': 18889, 'twisty': 18890, 'typing': 18891, 'unavailable': 18892, 'unbelievable.<br': 18893, 'uncle.': 18894, 'uncomfortable,': 18895, 'underscores': 18896, 'undisputed': 18897, 'undying': 18898, 'unexpected.': 18899, 'unfortunately.': 18900, 'unity': 18901, 'unleash': 18902, 'unpopular': 18903, 'unravels': 18904, 'unrecognizable': 18905, 'unresolved': 18906, 'unsavory': 18907, 'unsophisticated': 18908, 'unusual.': 18909, 'upon,': 18910, 'urges': 18911, 'useless.': 18912, 'utilize': 18913, "valentine's": 18914, 'vengeance.': 18915, 'venice': 18916, 'venom': 18917, 'veritable': 18918, 'videotape': 18919, 'viewing.<br': 18920, 'vijay': 18921, 'visit.': 18922, 'volatile': 18923, 'volunteers': 18924, 'warmed': 18925, 'warning,': 18926, 'warrior,': 18927, 'wayne,': 18928, 'weaknesses,': 18929, 'weed': 18930, 'weeping': 18931, 'weigh': 18932, 'weirdly': 18933, 'wheeler': 18934, 'whine': 18935, 'whodunit': 18936, "widmark's": 18937, 'wit.': 18938, 'wolfman': 18939, 'wonderful.<br': 18940, "woody's": 18941, 'workings': 18942, 'works.<br': 18943, 'worthwhile,': 18944, 'wreck.': 18945, 'yakuza': 18946, 'yesterday,': 18947, 'you:': 18948, 'yourselves': 18949, 'yuen': 18950, 'zelda': 18951, 'zucker': 18952, '"alien': 18953, '"city': 18954, '"cool': 18955, '"doctor': 18956, '"hood': 18957, '"inspector': 18958, '"johnny': 18959, '"kill': 18960, '"moonstruck"': 18961, '"more': 18962, '"mother': 18963, '"now': 18964, '"people': 18965, '"perfect': 18966, '"pet': 18967, '"police': 18968, '"pulp': 18969, '"santa': 18970, '"scream"': 18971, '"secret': 18972, '"seven': 18973, '"silent': 18974, '"take': 18975, '"very': 18976, '"we\'re': 18977, '"written': 18978, '"yes,': 18979, "'this": 18980, '("you': 18981, '(2003)': 18982, '(amy': 18983, '(b)': 18984, '(based': 18985, '(brian': 18986, '(can': 18987, '(first': 18988, '(its': 18989, '(jeff': 18990, '(never': 18991, '(really': 18992, '(sort': 18993, '(thanks': 18994, '(will': 18995, '****.': 18996, '*not*': 18997, '...but': 18998, '/>*1/2': 18999, '/>cons:': 19000, '/>get': 19001, '/>normally': 19002, '/>part': 19003, '/>ps:': 19004, '/>seeing': 19005, '/>simply': 19006, '/>sure': 19007, '/>would': 19008, '/>yet,': 19009, "/>you'll": 19010, '1.5': 19011, '11th': 19012, '16mm': 19013, '1948': 19014, '1980,': 19015, '1990,': 19016, '1990s.': 19017, '2000.': 19018, '2001.': 19019, '2002.': 19020, '36': 19021, '360': 19022, '42': 19023, '5/10': 19024, '7.5': 19025, '95%': 19026, '>': 19027, 'abandons': 19028, 'abby': 19029, 'acceptable.': 19030, 'accomplishes': 19031, 'account,': 19032, 'acquaintances': 19033, 'acting...': 19034, 'actress.<br': 19035, 'actresses.': 19036, 'acts.': 19037, 'addictive': 19038, 'additions': 19039, 'adequate,': 19040, 'admiring': 19041, 'adorable,': 19042, 'afflicted': 19043, 'afraid,': 19044, 'afterward,': 19045, 'again"': 19046, 'age"': 19047, 'age-old': 19048, 'agenda.': 19049, 'alamo': 19050, 'alcoholism,': 19051, 'alfre': 19052, "alice's": 19053, 'always)': 19054, 'amnesia': 19055, 'anderson.': 19056, 'angers': 19057, 'animal.': 19058, 'antichrist': 19059, 'appeared.': 19060, 'appointed': 19061, 'appreciate.': 19062, 'appreciating': 19063, 'arabic': 19064, 'archaeological': 19065, 'arcs': 19066, 'areas.': 19067, 'argument.': 19068, 'armand': 19069, 'arrives,': 19070, 'artifacts': 19071, 'arts.': 19072, 'ashes': 19073, 'aside.': 19074, 'asinine': 19075, 'assassins': 19076, 'assaulted': 19077, 'astoundingly': 19078, 'attack.<br': 19079, "attenborough's": 19080, 'atypical': 19081, 'audience)': 19082, 'authenticity.': 19083, 'autobiographical': 19084, 'awaken': 19085, 'awkwardness': 19086, 'baby",': 19087, 'babylon': 19088, 'backseat': 19089, 'backstory': 19090, 'baloo': 19091, 'ban': 19092, 'banality': 19093, 'bandit': 19094, 'bangs': 19095, 'banner': 19096, 'basket:': 19097, 'bathed': 19098, 'beads': 19099, 'bearable': 19100, 'bedroom.': 19101, 'beery': 19102, 'beggars': 19103, 'beliefs,': 19104, 'berserk': 19105, 'biased,': 19106, 'bid': 19107, 'birthday,': 19108, 'bitter,': 19109, 'bitterly': 19110, 'blocking': 19111, 'blooded': 19112, 'boggy': 19113, "boll's": 19114, 'bollywood.': 19115, 'boorish': 19116, 'both.<br': 19117, 'bowie': 19118, 'bra': 19119, 'bradford': 19120, 'bride,': 19121, 'brigham': 19122, 'broadly': 19123, 'brody': 19124, 'brooks,': 19125, "brosnan's": 19126, "bruce's": 19127, 'brushes': 19128, 'bryant': 19129, "buck's": 19130, 'budgetary': 19131, 'build-up': 19132, 'bulb': 19133, 'bully,': 19134, 'burgeoning': 19135, 'burstyn': 19136, 'butter': 19137, 'caesar': 19138, 'calmly': 19139, 'campfire': 19140, 'cancer,': 19141, 'can´t': 19142, 'capra': 19143, 'caricatures.': 19144, "carter's": 19145, 'cash,': 19146, 'catastrophe': 19147, 'cate': 19148, 'cave.': 19149, 'celie': 19150, 'century.<br': 19151, 'challenge.': 19152, 'channeling': 19153, 'charisma.': 19154, 'cherished': 19155, 'child-like': 19156, 'chilling,': 19157, 'ching': 19158, 'choppy,': 19159, 'chrissy': 19160, 'chronic': 19161, 'churn': 19162, 'cinemax': 19163, 'circumstance': 19164, 'civilization.': 19165, "clark's": 19166, 'claymation': 19167, 'cliff,': 19168, 'climax.<br': 19169, 'co-production': 19170, 'coherence': 19171, 'collision': 19172, 'comics.': 19173, 'commando': 19174, 'commandos': 19175, 'companion,': 19176, 'comparison.<br': 19177, 'conceived,': 19178, 'conditions,': 19179, 'conducting': 19180, 'connecticut': 19181, 'contact.': 19182, 'contention': 19183, 'contest,': 19184, 'contradictions': 19185, 'cool.<br': 19186, "cop's": 19187, 'coroner': 19188, 'corridor': 19189, "couldn't.": 19190, 'countess': 19191, 'courage,': 19192, 'court.': 19193, 'cowboy.': 19194, 'craven,': 19195, 'creation.': 19196, 'creatively': 19197, 'creator,': 19198, 'cromwell': 19199, 'crumbling': 19200, 'cryptic': 19201, 'cult.': 19202, 'curses': 19203, 'cylons': 19204, "dan's": 19205, 'darlene': 19206, 'daryl': 19207, 'davis.': 19208, 'day-to-day': 19209, 'dc': 19210, 'dead?': 19211, 'debuted': 19212, 'deem': 19213, 'defence': 19214, 'deja': 19215, 'demographic': 19216, 'demons.': 19217, 'denominator': 19218, 'descending': 19219, 'desdemona': 19220, 'desperation.': 19221, 'destiny.': 19222, 'detractors': 19223, 'devil.': 19224, 'dhoom': 19225, 'dialect': 19226, 'differences.': 19227, 'dilapidated': 19228, 'diluted': 19229, 'diminish': 19230, 'directions.': 19231, 'disappointment!': 19232, 'discovered,': 19233, 'discrimination': 19234, 'disgustingly': 19235, 'dishonest': 19236, 'disposed': 19237, 'distance,': 19238, 'distribute': 19239, 'do).': 19240, 'dolby': 19241, 'domain': 19242, 'domergue': 19243, "don's": 19244, 'done!': 19245, 'doodlebops': 19246, 'dope': 19247, 'drafted': 19248, 'dressler': 19249, 'drifts': 19250, 'drumming': 19251, 'drummond': 19252, 'duly': 19253, 'dumbed': 19254, 'dummy': 19255, 'dung': 19256, 'duration.': 19257, 'dwelling': 19258, 'dyan': 19259, 'edited.': 19260, 'editor,': 19261, 'effectively,': 19262, 'efficiently': 19263, 'einstein,': 19264, 'elegantly': 19265, 'elvira,': 19266, 'embodies': 19267, 'embodiment': 19268, 'emilio': 19269, 'emotion.<br': 19270, "emperor's": 19271, 'employer': 19272, 'enabled': 19273, 'enabling': 19274, 'endearing,': 19275, 'endorse': 19276, 'endures': 19277, 'energetic,': 19278, 'engineered': 19279, "england's": 19280, 'english)': 19281, 'epidemic': 19282, 'errors,': 19283, 'even.': 19284, 'everyone.<br': 19285, 'ex-boyfriend': 19286, 'excerpts': 19287, 'excited.': 19288, 'execs': 19289, 'exorcist,': 19290, 'experienced.': 19291, 'experiences,': 19292, 'exploitation,': 19293, 'fail,': 19294, 'failings': 19295, 'falls,': 19296, 'falsely': 19297, 'family?': 19298, 'fan.<br': 19299, 'farm.': 19300, 'ferrari': 19301, 'fey': 19302, 'fidel': 19303, 'files': 19304, 'filler.': 19305, 'filmmaking.': 19306, 'finale.<br': 19307, 'fine.<br': 19308, 'finish.<br': 19309, 'fisher,': 19310, 'flat-out': 19311, 'flavour': 19312, 'flaw.': 19313, 'flooding': 19314, 'florence': 19315, 'flushed': 19316, 'fondly': 19317, 'foot"': 19318, 'foot.': 19319, 'foreshadowing': 19320, 'forgettable.<br': 19321, 'forsaken': 19322, 'forthcoming': 19323, 'fortune.': 19324, 'fractured': 19325, 'framework': 19326, "frankie's": 19327, 'frantically': 19328, 'freddie': 19329, 'frying': 19330, 'fulfillment': 19331, 'funeral.': 19332, 'gabby': 19333, 'gambling,': 19334, 'gaming': 19335, 'gangsters,': 19336, 'gardener': 19337, 'gas,': 19338, 'genetically': 19339, "genre's": 19340, 'genuine,': 19341, 'glances': 19342, 'glass.': 19343, 'glasses,': 19344, 'glen': 19345, 'glory,': 19346, 'goof': 19347, "gordon's": 19348, 'gory.': 19349, 'gosh,': 19350, 'grable': 19351, 'grammar': 19352, "grant's": 19353, 'green,': 19354, 'greengrass': 19355, 'grieco': 19356, 'grisby': 19357, 'grossed': 19358, 'guard.': 19359, 'gulf': 19360, 'guy.<br': 19361, 'gymnast': 19362, 'ha!': 19363, 'haim': 19364, 'haley': 19365, 'half-hearted': 19366, 'hands.<br': 19367, 'happy-go-lucky': 19368, "hardy's": 19369, "harlin's": 19370, 'harmon': 19371, 'harper': 19372, 'hartman': 19373, 'hayworth,': 19374, 'hear.': 19375, 'heart-wrenching': 19376, 'hefty': 19377, 'here"': 19378, 'high"': 19379, 'hill.': 19380, 'hit-man,': 19381, 'hobgoblins': 19382, 'holmes.': 19383, 'honeymoon': 19384, 'honor,': 19385, 'honored': 19386, 'hopalong': 19387, 'hopes,': 19388, 'hopkins,': 19389, 'hotter': 19390, 'hou': 19391, 'houseman': 19392, 'hunchback': 19393, 'hunt.': 19394, 'hysterical.': 19395, 'icon,': 19396, 'idealism': 19397, 'ideally': 19398, 'idiots.': 19399, 'ill-conceived': 19400, 'imaginative,': 19401, 'imminent': 19402, 'impersonate': 19403, 'implying': 19404, 'impotent': 19405, 'impression,': 19406, 'impromptu': 19407, 'inadequate': 19408, 'incident,': 19409, 'indirectly': 19410, 'indistinguishable': 19411, 'indoor': 19412, 'ineptitude': 19413, 'inimitable': 19414, 'inn': 19415, 'insight,': 19416, 'insipid,': 19417, 'instructions': 19418, 'intended)': 19419, 'intended,': 19420, 'intensity.': 19421, 'intent.': 19422, 'intricacies': 19423, 'invaded': 19424, 'inventive,': 19425, 'invisible.': 19426, 'involved.<br': 19427, 'irritate': 19428, 'irritates': 19429, 'islanders': 19430, 'jacob': 19431, 'jason,': 19432, 'jealousy,': 19433, 'jefferson': 19434, 'jericho': 19435, 'jerk.': 19436, 'jew': 19437, 'jfk': 19438, 'joe.': 19439, 'jokes.<br': 19440, 'journeys': 19441, 'jr.)': 19442, 'jud': 19443, 'jump,': 19444, 'justifiably': 19445, 'k': 19446, 'k.': 19447, 'karisma': 19448, 'kaye': 19449, 'kazaam': 19450, 'klaus': 19451, 'knife.': 19452, 'knowledge.': 19453, 'kristen': 19454, 'lab,': 19455, 'lad': 19456, 'landlady': 19457, 'lapd': 19458, 'lauded': 19459, 'lawyer.': 19460, 'leaden': 19461, 'leila': 19462, 'leon,': 19463, 'lessons,': 19464, 'lifestyle.': 19465, 'lilly': 19466, 'lit,': 19467, 'litter': 19468, 'lively,': 19469, 'loan': 19470, 'loathing': 19471, 'loathsome': 19472, 'lordi': 19473, 'lorne': 19474, 'loser,': 19475, 'love/hate': 19476, "lover's": 19477, 'loves.': 19478, 'lsd': 19479, 'luther': 19480, 'luxurious': 19481, 'majesty': 19482, 'making.<br': 19483, 'manhattan,': 19484, 'maradona': 19485, 'mark.<br': 19486, 'marky': 19487, 'mask.': 19488, 'masterpiece!': 19489, 'mate,': 19490, 'mating': 19491, 'mattered': 19492, 'mcbain': 19493, 'mcintire': 19494, 'meager': 19495, 'meantime': 19496, 'meatball': 19497, 'medium,': 19498, 'melts': 19499, 'mention.': 19500, 'mercenary': 19501, 'meter': 19502, 'metropolis': 19503, 'mgm,': 19504, 'miklos': 19505, 'million,': 19506, "mind's": 19507, 'minds,': 19508, 'mirror,': 19509, 'mist': 19510, 'moby': 19511, 'mona': 19512, 'monaghan': 19513, 'monarch': 19514, 'moods': 19515, 'moonwalker': 19516, 'moore,': 19517, 'moral,': 19518, 'morale': 19519, "morgan's": 19520, 'motivation,': 19521, 'moto': 19522, 'mountains.': 19523, 'movie.the': 19524, 'movies"': 19525, 'movies),': 19526, 'mysticism': 19527, 'nadia': 19528, 'nameless': 19529, 'namely,': 19530, "nancy's": 19531, 'nation,': 19532, 'nature.<br': 19533, 'naïve': 19534, 'nc-17': 19535, 'need,': 19536, "neighbor's": 19537, 'neighborhood.': 19538, 'neo-realist': 19539, 'nest': 19540, 'neville': 19541, 'nic': 19542, 'nicer': 19543, 'nick,': 19544, 'nights.': 19545, 'nisha': 19546, 'nominal': 19547, 'nose,': 19548, 'notice,': 19549, 'nursing': 19550, 'nuts.': 19551, 'object,': 19552, 'obligation': 19553, 'obnoxious.': 19554, 'observes': 19555, 'obtained': 19556, 'occurrence': 19557, 'occurs,': 19558, 'ocean,': 19559, 'of:': 19560, 'officers.': 19561, 'ohio': 19562, 'ok.<br': 19563, 'old.<br': 19564, 'older.': 19565, "ollie's": 19566, 'onwards': 19567, 'opens,': 19568, 'orchestrated': 19569, 'original?': 19570, 'oscar-nominated': 19571, 'out)': 19572, 'out:': 19573, 'outcome,': 19574, 'outsider': 19575, 'overact': 19576, 'overacting,': 19577, 'pact': 19578, 'palsy': 19579, 'paranoia,': 19580, 'paranormal': 19581, 'paraphrase': 19582, 'parties,': 19583, 'paul.': 19584, 'payment': 19585, 'peer': 19586, 'peet': 19587, 'peril': 19588, 'perkins': 19589, 'personalities,': 19590, 'pesky': 19591, 'philosophy,': 19592, 'photographers': 19593, 'piano,': 19594, 'picnic': 19595, 'pike': 19596, 'pinjar': 19597, 'pipes': 19598, "pitt's": 19599, 'place!': 19600, 'plague,': 19601, 'pleasurable': 19602, 'plot;': 19603, 'pod': 19604, 'poetic,': 19605, 'poor.<br': 19606, 'popeye': 19607, 'portman': 19608, 'powerhouse': 19609, 'powerless': 19610, 'practice.': 19611, 'prancing': 19612, 'prayed': 19613, 'predecessor.': 19614, 'premature': 19615, 'pretensions': 19616, 'prince,': 19617, 'prizes': 19618, 'proceedings,': 19619, 'proclaimed': 19620, 'programmes': 19621, 'protagonist.': 19622, 'provoking,': 19623, 'pump': 19624, 'purity': 19625, 'purple"': 19626, 'purports': 19627, 'quartet': 19628, 'queen.': 19629, 'quotes.': 19630, "rachel's": 19631, 'rain"': 19632, 'ramble': 19633, 'rammed': 19634, 'range.': 19635, 'rapping': 19636, 'rapture': 19637, 'reaction.': 19638, 'rebirth': 19639, 'recognisable': 19640, 'recommendation.': 19641, 'reconcile': 19642, 'reed,': 19643, 'refund': 19644, 'regional': 19645, 'release.<br': 19646, 'removed.': 19647, 'repertoire': 19648, 'replaces': 19649, 'reservation': 19650, 'resonates': 19651, 'respite': 19652, 'restaurant,': 19653, 'retarded.': 19654, 'retrospect,': 19655, 'reunites': 19656, 'reve': 19657, 'revue': 19658, 'ridicule': 19659, 'ridiculed': 19660, 'ridiculous!': 19661, 'ridiculousness': 19662, 'riveting,': 19663, 'robbery.': 19664, 'robinson,': 19665, 'robust': 19666, "rockin'": 19667, 'rode': 19668, 'rogers.': 19669, "rohmer's": 19670, 'rolling.': 19671, 'rooker': 19672, 'room.<br': 19673, 'rooms,': 19674, 'rubbish.<br': 19675, 'rudolph': 19676, 'runtime': 19677, 'ruthless,': 19678, 'ruthlessly': 19679, 'rvd': 19680, 'saber': 19681, 'safe.': 19682, 'saffron': 19683, 'sam,': 19684, "satan's": 19685, 'satisfying,': 19686, 'saura': 19687, 'savior': 19688, 'scary!': 19689, 'schlock.': 19690, 'scholarship': 19691, 'scotland,': 19692, 'screeching': 19693, 'seat,': 19694, 'seated': 19695, 'see?': 19696, 'seem,': 19697, 'sematary': 19698, 'separately': 19699, 'sequel?': 19700, 'serene': 19701, 'sexploitation': 19702, 'shakti': 19703, 'shelf.': 19704, 'shine.': 19705, 'shipped': 19706, 'shocked,': 19707, 'shoes,': 19708, 'shoving': 19709, 'show).': 19710, 'shrewd': 19711, 'shue': 19712, 'shuffle': 19713, 'significance.': 19714, 'silvers': 19715, 'singers,': 19716, 'singularly': 19717, 'siren': 19718, 'skies': 19719, 'sleepwalking': 19720, 'sliced': 19721, 'slot': 19722, 'slowed': 19723, 'slowly.': 19724, 'smells': 19725, 'smith)': 19726, 'snafu': 19727, 'snatch': 19728, 'snatched': 19729, 'sneering': 19730, 'snobby': 19731, 'snow,': 19732, 'soon-to-be': 19733, 'sooraj': 19734, 'spacek': 19735, 'spaces': 19736, 'spain.': 19737, 'sparring': 19738, 'spontaneously': 19739, 'sports.': 19740, 'sprawling': 19741, 'stacy': 19742, 'standards.<br': 19743, 'standpoint': 19744, 'standpoint,': 19745, 'stanwyck,': 19746, 'statues': 19747, 'stepfather': 19748, 'stereo': 19749, 'stewart)': 19750, 'storage': 19751, 'strathairn': 19752, 'streep,': 19753, 'strut': 19754, 'study,': 19755, 'stylistically': 19756, 'success.<br': 19757, 'suits,': 19758, "superman's": 19759, 'sure.<br': 19760, 'surroundings.': 19761, 'sweetly': 19762, 'taiwanese': 19763, 'talented.': 19764, 'talkie': 19765, 'tame.': 19766, 'tautou': 19767, 'tenuous': 19768, 'termed': 19769, 'texan': 19770, 'text,': 19771, 'that"': 19772, 'thee': 19773, 'thematically': 19774, 'theory.': 19775, 'there;': 19776, 'thesis': 19777, 'thought:': 19778, 'tick': 19779, 'to:': 19780, 'tobacco': 19781, 'tobias': 19782, 'toddler': 19783, 'tolerable.': 19784, 'tolerant': 19785, 'tomorrow.': 19786, 'tonight,': 19787, 'topic.': 19788, 'tore': 19789, 'touches.': 19790, 'touring': 19791, 'town.<br': 19792, 'tracked': 19793, 'tracy"': 19794, 'trades': 19795, 'tradition.': 19796, 'tragedies': 19797, 'transylvania': 19798, 'travelers': 19799, 'trek"': 19800, 'trelkovsky': 19801, 'tried,': 19802, 'tristan': 19803, 'tub': 19804, 'tunes,': 19805, 'tuning': 19806, 'typed': 19807, 'ufo': 19808, 'ugh.': 19809, 'uncontrollable': 19810, 'undemanding': 19811, 'undercurrent': 19812, 'undermine': 19813, 'understated,': 19814, 'unedited': 19815, 'uneven.': 19816, 'uneventful': 19817, 'unknown,': 19818, 'unpleasant,': 19819, 'unreal.': 19820, 'unrelenting': 19821, 'unspoken': 19822, 'urgent': 19823, 'utilizes': 19824, 'van.': 19825, 'vanished': 19826, 'vegas.': 19827, 'vent': 19828, 'venturing': 19829, 'versatility': 19830, 'verve': 19831, 'vibrant,': 19832, 'victoria,': 19833, 'videos.': 19834, 'vienna': 19835, 'vocals': 19836, 'voluptuous': 19837, "wagner's": 19838, 'wagon': 19839, 'walk.': 19840, 'walking,': 19841, 'walls,': 19842, 'wanna-be': 19843, 'warned,': 19844, "warner's": 19845, 'wasnt': 19846, 'waste,': 19847, 'wasted.<br': 19848, 'watchers': 19849, 'weight,': 19850, 'west"': 19851, 'whack': 19852, 'whit': 19853, 'whole.<br': 19854, 'wife.<br': 19855, 'willard': 19856, 'wills': 19857, 'wins.': 19858, 'wiping': 19859, 'wisconsin': 19860, 'wisecracks': 19861, 'witches,': 19862, 'withstand': 19863, 'wodehouse': 19864, 'wonderfully.': 19865, 'worldly': 19866, 'worst.<br': 19867, 'writing.<br': 19868, 'wtf?': 19869, 'x.': 19870, 'xica': 19871, 'yadav': 19872, 'year)': 19873, 'yesterday.': 19874, 'you)': 19875, 'young)': 19876, 'yours.': 19877, 'youssef': 19878, 'youths': 19879, 'zack': 19880, 'zeta-jones': 19881, 'zone,': 19882, 'à': 19883, '"beyond': 19884, '"dan': 19885, '"die': 19886, '"f"': 19887, '"fight': 19888, '"heaven': 19889, '"left': 19890, '"like': 19891, '"meet': 19892, '"murder': 19893, '"nightmare': 19894, '"play': 19895, '"pride': 19896, '"robot': 19897, '"rock': 19898, '"romance"': 19899, '"time': 19900, '"under': 19901, '"zabriskie': 19902, '$20': 19903, "'30s": 19904, "'70's": 19905, "'73": 19906, "'80's": 19907, "'b'": 19908, "'love": 19909, "'oh": 19910, "'real'": 19911, "'so": 19912, '("i': 19913, '(almost)': 19914, '(always': 19915, '(big': 19916, '(do': 19917, '(dr.': 19918, '(due': 19919, '(dustin': 19920, '(gary': 19921, '(having': 19922, '(instead': 19923, '(jeremy': 19924, '(kim': 19925, '(lee': 19926, '(martin': 19927, '(note:': 19928, '(obviously': 19929, '(patrick': 19930, '(read': 19931, '(ron': 19932, '(sam': 19933, '(seriously,': 19934, '(tim': 19935, '(vincent': 19936, '(voice': 19937, '***<br': 19938, '/>acting:': 19939, '/>beyond': 19940, '/>does': 19941, '/>except': 19942, '/>kudos': 19943, '/>lastly,': 19944, '/>long': 19945, '/>needless': 19946, '/>over': 19947, '/>overall:': 19948, '/>personally,': 19949, '/>plot:': 19950, '/>right': 19951, '/>sometimes': 19952, '/>special': 19953, '/>taking': 19954, '/>thanks': 19955, '/>third,': 19956, '/>tony': 19957, '/>try': 19958, '10th': 19959, '120': 19960, '1931': 19961, '1942': 19962, '1955': 19963, '1970,': 19964, '1973,': 19965, '1981,': 19966, '1988,': 19967, '2003,': 19968, '2005.': 19969, '2008,': 19970, '33': 19971, '43': 19972, '6/10': 19973, '8.5/10': 19974, '82': 19975, '9/11.': 19976, '?<br': 19977, 'abbey': 19978, 'abilities,': 19979, 'abuse.': 19980, 'accent?': 19981, 'accidents': 19982, 'accomplish.': 19983, 'aching': 19984, 'actuality': 19985, 'addict,': 19986, 'admirers': 19987, 'advantages': 19988, 'advises': 19989, 'affairs,': 19990, 'affectionate': 19991, 'afforded': 19992, 'airport,': 19993, 'albert.': 19994, 'alcoholic,': 19995, "alex's": 19996, 'all),': 19997, 'all-american': 19998, 'allen.': 19999, 'alluded': 20000, 'amateurs': 20001, 'ambassador': 20002, 'americanized': 20003, 'anamorphic': 20004, 'anchorman': 20005, 'anger.': 20006, 'anticipate': 20007, 'antithesis': 20008, 'anybody,': 20009, 'anymore.<br': 20010, 'appeared,': 20011, 'appears.': 20012, 'archaic': 20013, 'archibald': 20014, 'arjun': 20015, 'ark': 20016, 'aroused': 20017, 'asians': 20018, 'ask)': 20019, 'astaire,': 20020, 'atlantis,': 20021, 'attempts,': 20022, 'aunt.': 20023, 'authentic,': 20024, 'avail.': 20025, 'avant-garde': 20026, 'avenging': 20027, 'awhile,': 20028, 'b-movie,': 20029, 'babbling': 20030, 'babe,': 20031, 'bach,': 20032, 'backgrounds,': 20033, 'bad...': 20034, 'bailey': 20035, 'bamboo': 20036, 'barbie': 20037, 'barr': 20038, 'basing': 20039, 'batista': 20040, 'before:': 20041, 'befriend': 20042, 'behind-the-scenes': 20043, 'being.<br': 20044, 'bench': 20045, 'best)': 20046, 'bfg': 20047, "biko's": 20048, 'bilko': 20049, 'binder': 20050, 'bisexual': 20051, 'blanks': 20052, 'blasted': 20053, 'blows.': 20054, 'boiled': 20055, 'bore,': 20056, 'borne': 20057, 'bounces': 20058, 'bounds': 20059, 'boy"': 20060, 'boyd': 20061, 'boyhood': 20062, 'brando,': 20063, 'bratty': 20064, 'bravado': 20065, 'bravely': 20066, 'brazil,': 20067, 'breasts.': 20068, 'breeze': 20069, 'broken.': 20070, 'brow': 20071, 'bruce,': 20072, 'bud,': 20073, 'buddies,': 20074, 'bullock': 20075, 'bumbling,': 20076, 'bumping': 20077, 'burrows': 20078, 'buscemi': 20079, 'busy,': 20080, 'cabinet': 20081, 'cad': 20082, 'cagney,': 20083, 'calculating': 20084, 'calm,': 20085, 'camel': 20086, "cameron's": 20087, 'captivate': 20088, 'card.': 20089, 'cards,': 20090, 'cares.': 20091, 'carey,': 20092, "carol's": 20093, 'carroll': 20094, 'cases.': 20095, 'cast!': 20096, 'casualty': 20097, 'catalogue': 20098, 'cater': 20099, 'caught.': 20100, 'cave,': 20101, 'cecilia': 20102, 'celestine': 20103, 'centerpiece': 20104, 'channels.': 20105, 'character).': 20106, 'charitable': 20107, 'charmingly': 20108, 'charts': 20109, 'cheapest': 20110, 'cheated.': 20111, 'cheek,': 20112, 'chores': 20113, "christ's": 20114, "christy's": 20115, 'chuckled': 20116, 'chunks': 20117, 'cigar': 20118, 'cigarettes': 20119, 'circular': 20120, 'cities,': 20121, 'cities.': 20122, 'civilized': 20123, 'claudia': 20124, 'clayton': 20125, 'clearer': 20126, 'cliffs': 20127, 'climaxes': 20128, 'close-ups,': 20129, 'closet.': 20130, 'clouds,': 20131, 'co-starred': 20132, 'code,': 20133, 'cohorts': 20134, 'coin': 20135, 'coincidentally,': 20136, 'col.': 20137, 'collects': 20138, 'colonies': 20139, 'colors.': 20140, 'commercially': 20141, 'communicated': 20142, 'complements': 20143, 'complexity.': 20144, 'compose': 20145, 'computers,': 20146, 'concede': 20147, 'conceivable': 20148, 'conditions.': 20149, 'congratulations': 20150, "connery's": 20151, 'consecutive': 20152, 'consistency': 20153, 'consuming': 20154, 'contemporaries': 20155, 'contender': 20156, 'contradiction': 20157, 'conviction.': 20158, 'convoluted,': 20159, 'cooler': 20160, "cowboy'": 20161, 'cows': 20162, 'crafty': 20163, 'cranked': 20164, 'crazier': 20165, 'creepshow': 20166, 'cricket': 20167, 'cried,': 20168, 'criticise': 20169, 'criticised': 20170, 'crotch': 20171, 'cruz': 20172, 'cuba,': 20173, 'cup.': 20174, 'cured': 20175, 'cylon': 20176, 'dagger': 20177, 'damien': 20178, 'dangerfield': 20179, 'dario': 20180, 'dark"': 20181, 'dashed': 20182, 'david,': 20183, 'decisions.': 20184, 'delightful.': 20185, 'delivered,': 20186, 'demeaning': 20187, 'deol': 20188, 'depalma': 20189, 'depressed,': 20190, 'depressingly': 20191, 'deprived': 20192, 'descended': 20193, 'descriptions': 20194, 'deserts': 20195, 'deserve.': 20196, 'desired,': 20197, 'desperate,': 20198, 'desperation,': 20199, 'destiny,': 20200, 'det.': 20201, 'difficult.': 20202, 'diminishes': 20203, 'dirty.': 20204, 'disappears.': 20205, 'disclaimer': 20206, 'discomfort': 20207, 'discredit': 20208, 'discs': 20209, 'disease,': 20210, 'dishes': 20211, 'dispute': 20212, 'dissolves': 20213, 'diva': 20214, 'diver': 20215, 'dizzying': 20216, 'doc,': 20217, 'doing?': 20218, 'dolly': 20219, 'dooley': 20220, 'down-to-earth': 20221, 'downer': 20222, 'downhill.': 20223, 'drag,': 20224, 'dramatized': 20225, 'drenched': 20226, 'driver.': 20227, 'due.': 20228, 'e-mail': 20229, 'earthly': 20230, 'eater': 20231, 'ebenezer': 20232, 'echoing': 20233, 'eden': 20234, 'eighteen': 20235, 'embarrassment.': 20236, 'embraces': 20237, 'embracing': 20238, "emma's": 20239, 'empire,': 20240, 'employing': 20241, 'enamored': 20242, 'endings.': 20243, 'endowed': 20244, 'engineering': 20245, 'enlist': 20246, 'ensues.<br': 20247, 'ensuring': 20248, 'entangled': 20249, 'episodes.<br': 20250, 'equipment,': 20251, 'equipment.': 20252, 'er,': 20253, 'erica': 20254, 'essentially,': 20255, 'etc..': 20256, 'etched': 20257, 'evacuated': 20258, 'ever)': 20259, 'example),': 20260, 'excel': 20261, 'excellence.': 20262, 'excused': 20263, 'execution,': 20264, 'exhausting': 20265, 'expect.<br': 20266, 'experimentation': 20267, 'experiments.': 20268, 'exploded': 20269, 'explosion.': 20270, 'f-word': 20271, 'facade': 20272, 'fact.<br': 20273, "falk's": 20274, 'false.': 20275, 'familial': 20276, 'fans!': 20277, 'fantastic!': 20278, 'farrell,': 20279, 'fave': 20280, 'fears,': 20281, 'feather': 20282, 'federation': 20283, 'fellow,': 20284, 'ferdie': 20285, 'festivals,': 20286, 'final,': 20287, 'fingernails': 20288, 'fired.': 20289, 'fish,': 20290, 'fish.': 20291, "fishburne's": 20292, 'fitted': 20293, 'flags': 20294, 'flops': 20295, 'flowers,': 20296, 'flute': 20297, 'foray': 20298, 'forbid': 20299, 'forces,': 20300, 'forces.': 20301, 'foreground': 20302, 'forensic': 20303, 'forever.<br': 20304, 'forgivable': 20305, 'fork': 20306, 'forms.': 20307, 'fortune,': 20308, "freakin'": 20309, 'freezing': 20310, 'freud': 20311, 'friend.<br': 20312, 'frighteningly': 20313, 'frustrations': 20314, 'fulfills': 20315, 'funniest,': 20316, 'furlong': 20317, 'g.i.': 20318, 'gameplay': 20319, 'gasping': 20320, 'gazzara': 20321, 'genesis': 20322, 'genitals': 20323, 'giant,': 20324, "gibson's": 20325, 'gist': 20326, 'glib': 20327, 'glorifies': 20328, 'god.<br': 20329, 'godzilla,': 20330, 'goldberg,': 20331, 'goldsmith': 20332, 'gong': 20333, 'good).': 20334, 'google': 20335, 'gore.<br': 20336, 'grandfather,': 20337, 'grant)': 20338, 'graphics.': 20339, 'grave,': 20340, 'grayson,': 20341, 'greasy': 20342, 'great)': 20343, 'greetings': 20344, 'grenade': 20345, 'gripped': 20346, 'grit': 20347, 'groan': 20348, 'gross,': 20349, 'grossing': 20350, 'guide,': 20351, 'guidelines': 20352, 'guilt.': 20353, 'gunfire': 20354, 'gunman': 20355, 'gunner': 20356, 'gunshots': 20357, "guys'": 20358, 'hallways': 20359, 'ham-fisted': 20360, 'handled,': 20361, 'harassed': 20362, 'harbors': 20363, 'hard-core': 20364, 'hart,': 20365, 'haunting,': 20366, 'hawke,': 20367, 'hazy': 20368, 'headstrong': 20369, 'heartbreaking.': 20370, 'heartbroken': 20371, 'heel': 20372, 'hellman': 20373, 'helm': 20374, 'her:': 20375, 'heyday': 20376, 'highly.': 20377, 'himself!': 20378, 'himself)': 20379, 'hippy': 20380, 'histrionic': 20381, 'hobby': 20382, 'homages': 20383, 'honey,': 20384, 'hood,': 20385, 'hood.': 20386, 'horns': 20387, 'hose': 20388, 'hugging': 20389, 'hype,': 20390, 'hysterical,': 20391, 'iago': 20392, 'iceberg': 20393, 'idealized': 20394, 'ill.': 20395, 'illicit': 20396, 'illustrations': 20397, 'ilona': 20398, 'imaginations': 20399, 'immensely.': 20400, 'immigration': 20401, 'impatient': 20402, 'in"': 20403, 'inanimate': 20404, 'incomplete': 20405, 'incorporating': 20406, 'incredibly,': 20407, 'indeed.<br': 20408, 'indians,': 20409, 'indictment': 20410, 'individual.': 20411, 'inevitable,': 20412, 'inexcusable': 20413, 'infested': 20414, 'infinite': 20415, 'infuriating': 20416, 'inkling': 20417, 'innocuous': 20418, 'innumerable': 20419, 'inoffensive': 20420, 'insight.': 20421, 'installed': 20422, 'instance.': 20423, 'instructed': 20424, 'insultingly': 20425, 'intention,': 20426, 'intercourse': 20427, 'interference': 20428, 'interlude': 20429, 'interpretation.': 20430, 'interrogation': 20431, 'intolerable': 20432, 'intrinsic': 20433, 'investigation,': 20434, 'invincible': 20435, 'invisibility': 20436, 'iran,': 20437, 'iraq,': 20438, 'irrelevant.': 20439, 'irritatingly': 20440, 'is<br': 20441, 'island"': 20442, "isn't.<br": 20443, 'issue,': 20444, 'issued': 20445, 'itch': 20446, 'j.j.': 20447, 'jean-claude': 20448, 'jeroen': 20449, "jerry's": 20450, 'jocks': 20451, 'joey,': 20452, 'johnnie': 20453, 'journal': 20454, 'jump.': 20455, 'justified.': 20456, 'justifying': 20457, 'justly': 20458, 'juxtaposition': 20459, "karloff's": 20460, 'keeper': 20461, "khouri's": 20462, 'kiefer': 20463, 'killed.<br': 20464, 'killer?': 20465, 'kindergarten': 20466, 'kirkland': 20467, 'knockout': 20468, 'la.': 20469, 'lair': 20470, 'laird': 20471, 'lamarr': 20472, 'lame.<br': 20473, 'landing,': 20474, 'later"': 20475, 'later)': 20476, 'laugh!': 20477, 'laura,': 20478, 'lea': 20479, 'leaves.': 20480, 'leering': 20481, 'left-wing': 20482, 'leg,': 20483, 'lensman': 20484, 'leo,': 20485, 'leonora': 20486, 'liaison': 20487, 'liberally': 20488, 'lies,': 20489, 'likelihood': 20490, 'limits,': 20491, 'liquid': 20492, 'literature,': 20493, 'lithgow': 20494, 'live.<br': 20495, 'lloyd,': 20496, 'lobby': 20497, 'logically': 20498, 'long-winded': 20499, 'look-alike': 20500, "lord's": 20501, 'lords': 20502, 'lori': 20503, 'lottery': 20504, 'lousy,': 20505, 'love!': 20506, 'loves,': 20507, 'lugosi,': 20508, "lumet's": 20509, 'lusting': 20510, 'lyrics,': 20511, 'mace': 20512, 'madhur': 20513, 'man,"': 20514, 'manager.': 20515, 'manhood': 20516, 'manuscript': 20517, 'marches': 20518, 'marianne': 20519, "marie's": 20520, 'marin': 20521, 'marxist': 20522, 'mary-kate': 20523, 'masala': 20524, 'mastered': 20525, 'masterwork': 20526, 'matinée': 20527, 'mayer': 20528, 'mcmahon': 20529, 'mean.<br': 20530, 'meaningful,': 20531, 'meld': 20532, 'menacing,': 20533, 'metamorphosis': 20534, 'meticulous': 20535, 'metropolitan': 20536, 'michael.': 20537, 'michele': 20538, 'microphone': 20539, 'mile.': 20540, 'miles.': 20541, 'military,': 20542, 'military.': 20543, 'mimicking': 20544, 'mindless,': 20545, 'minimum.': 20546, 'mirrors,': 20547, 'mistreated': 20548, 'misunderstandings': 20549, 'mm': 20550, 'moaning': 20551, 'modeled': 20552, 'mold': 20553, 'monitors': 20554, 'moody,': 20555, 'moriarty': 20556, 'morita': 20557, 'moronic.': 20558, 'morose': 20559, 'mountain,': 20560, 'moved.': 20561, 'movie-goers': 20562, 'mower': 20563, 'mst': 20564, 'much?': 20565, 'mushrooms': 20566, 'music;': 20567, 'mvp': 20568, 'mythic': 20569, 'mythological': 20570, 'nancy,': 20571, 'narrator,': 20572, "naschy's": 20573, 'nation.': 20574, 'nausicaa': 20575, 'nazis,': 20576, 'necessary.<br': 20577, 'neighborhood,': 20578, 'network,': 20579, 'neurotic,': 20580, 'newfound': 20581, 'newhart': 20582, 'nick.': 20583, 'nickname': 20584, 'night!': 20585, 'nineties': 20586, 'ninth': 20587, 'nodding': 20588, 'non-professional': 20589, 'none,': 20590, 'notoriously': 20591, 'nowhere.<br': 20592, 'objections': 20593, 'observer': 20594, 'obsolete': 20595, 'oddity': 20596, 'offends': 20597, 'offer.<br': 20598, 'offerings': 20599, 'ole': 20600, 'on"': 20601, 'oppression': 20602, 'opts': 20603, 'orientation': 20604, 'oshii': 20605, 'out).': 20606, 'outfit,': 20607, 'outtakes': 20608, 'overlong,': 20609, 'overs': 20610, 'pa': 20611, 'painters': 20612, 'painting,': 20613, 'palace,': 20614, 'palatable': 20615, 'paltrow,': 20616, 'paltry': 20617, 'parameters': 20618, "parker's": 20619, 'parodying': 20620, 'parting': 20621, 'patented': 20622, 'pathos,': 20623, "peckinpah's": 20624, 'perceptive': 20625, 'perfection,': 20626, 'periodically': 20627, 'perlman': 20628, 'permitted': 20629, "perry's": 20630, 'persona,': 20631, 'persuaded': 20632, 'pesci': 20633, 'phallic': 20634, 'pills': 20635, 'pino': 20636, 'pioneers': 20637, 'plead': 20638, 'pleads': 20639, 'plight.': 20640, 'plumbing': 20641, 'plus.': 20642, "poe's": 20643, 'pointe': 20644, 'polished,': 20645, 'pony': 20646, 'poo': 20647, 'pool,': 20648, 'pornography.': 20649, 'portugal': 20650, 'posse': 20651, 'powder': 20652, 'power"': 20653, 'pre': 20654, 'preachy.': 20655, "president's": 20656, 'presley': 20657, 'previously,': 20658, 'print,': 20659, 'probation': 20660, 'procedure': 20661, 'professional.': 20662, 'proportions.': 20663, 'proposal': 20664, 'proposition': 20665, 'prosecutor': 20666, 'provocative,': 20667, 'prowess': 20668, 'psycho,': 20669, 'puddle': 20670, 'put-upon': 20671, 'pyramid': 20672, 'questionable.': 20673, 'ra': 20674, 'racy': 20675, 'radar': 20676, 'radha': 20677, 'rails': 20678, 'raja': 20679, 'ramblings': 20680, 'rapport': 20681, 'raquel': 20682, 'rathbone': 20683, 'rawal': 20684, 'ray,': 20685, 're-release': 20686, 'reactionary': 20687, 'reb': 20688, 'recap': 20689, 'recommended.<br': 20690, 'reeling': 20691, 'regina': 20692, 'regretted': 20693, 'reincarnated': 20694, 'rekindle': 20695, 'related.': 20696, 'relax,': 20697, 'reliance': 20698, 'remarks.': 20699, 'replies,': 20700, 'report,': 20701, 'repression': 20702, 'requirement': 20703, 'rescue.': 20704, 'reservations': 20705, 'reserve': 20706, 'resides': 20707, 'restrictions': 20708, 'rethink': 20709, 'reversal': 20710, 'revisiting': 20711, 'rican': 20712, 'rip-off.': 20713, 'rip-offs': 20714, 'roam': 20715, 'roar': 20716, 'rochon': 20717, 'roddenberry': 20718, 'rodgers': 20719, 'roeg': 20720, 'romano': 20721, 'romanticized': 20722, 'ronnie': 20723, 'roosevelt': 20724, 'rough,': 20725, 'rubbed': 20726, 'rubble': 20727, 'rufus': 20728, 'rundown': 20729, 'safer': 20730, 'sands': 20731, 'sant': 20732, 'sarah,': 20733, 'satires': 20734, 'savagely': 20735, 'savalas': 20736, 'savvy': 20737, 'saxon': 20738, 'scene),': 20739, "schindler's": 20740, 'score.<br': 20741, 'scrap': 20742, 'scratches': 20743, 'sctv': 20744, 'sea"': 20745, 'season.<br': 20746, 'seconds.<br': 20747, 'secretive': 20748, 'self-destructive': 20749, 'self-righteous': 20750, 'senate': 20751, 'send-up': 20752, 'sensitively': 20753, 'series!': 20754, 'set-pieces': 20755, 'setting.<br': 20756, 'shambles': 20757, 'shefali': 20758, 'shirt,': 20759, 'shoes.': 20760, 'shortage': 20761, 'shouted': 20762, 'shutting': 20763, 'side.<br': 20764, 'sided': 20765, "sidney's": 20766, 'silence.': 20767, 'silliness.': 20768, 'sitcom.': 20769, 'skulls': 20770, 'slated': 20771, 'slaughtering': 20772, 'sleepaway': 20773, 'sleepwalkers': 20774, 'sloth': 20775, 'slowing': 20776, 'small-time': 20777, 'smiled': 20778, 'smirk': 20779, 'snapped': 20780, 'sniffing': 20781, 'snipers': 20782, 'snob': 20783, 'snobbish': 20784, 'socialite': 20785, 'soft,': 20786, 'sol': 20787, 'sorts.': 20788, 'soundtrack.<br': 20789, 'spacey,': 20790, 'spanish.': 20791, 'spectacle.': 20792, 'spectators': 20793, 'spoiled,': 20794, 'spoilers<br': 20795, 'spoon': 20796, 'sports,': 20797, 'spot-on': 20798, 'spout': 20799, 'sprayed': 20800, 'spreads': 20801, 'squire': 20802, 'stacey': 20803, 'star-studded': 20804, 'stardom.': 20805, 'starfleet': 20806, 'starters': 20807, 'starts,': 20808, 'stay,': 20809, 'stinking': 20810, 'stock.': 20811, 'stone.': 20812, 'stop,': 20813, 'stores,': 20814, 'story),': 20815, 'story-line': 20816, 'storylines': 20817, 'strays': 20818, 'strokes': 20819, 'stubby': 20820, "student's": 20821, 'student.': 20822, 'studios.': 20823, 'study.': 20824, 'stupider': 20825, 'subliminal': 20826, 'subplots,': 20827, 'suckered': 20828, 'suggests,': 20829, 'sullen': 20830, 'sunken': 20831, 'superiority': 20832, 'suppose.': 20833, 'suppressed': 20834, 'surveillance': 20835, 'survivors.': 20836, 'suspenseful.': 20837, 'swearing,': 20838, 'sweden.': 20839, 'sweetheart': 20840, 'swordplay': 20841, 'sworn': 20842, 'sylvester': 20843, 'symbolism.': 20844, 'symbolizes': 20845, 'syrup': 20846, 'tackling': 20847, 'tagged': 20848, 'takes,': 20849, 'talks,': 20850, 'tarnished': 20851, 'tawdry': 20852, 'teachings': 20853, 'technicolor,': 20854, 'template': 20855, 'temple,': 20856, 'tempting': 20857, 'terminally': 20858, 'terrain': 20859, 'terri': 20860, 'test,': 20861, 'test.': 20862, 'that´s': 20863, 'theater.<br': 20864, 'theatrical,': 20865, 'them).': 20866, 'therapist': 20867, 'there).': 20868, 'thing)': 20869, 'this).': 20870, 'thought.<br': 20871, 'threadbare': 20872, 'three.<br': 20873, 'threesome': 20874, 'thrilling.': 20875, 'thunderbird': 20876, 'thwart': 20877, 'timeless.': 20878, "timmy's": 20879, "timon's": 20880, 'tng': 20881, 'togar': 20882, 'toilet.': 20883, 'torso': 20884, 'touches,': 20885, 'tougher': 20886, 'toughness': 20887, 'trade.': 20888, 'training.': 20889, 'traitor': 20890, 'trashing': 20891, 'treat,': 20892, 'treatment,': 20893, 'trek:': 20894, 'trevor': 20895, 'tribes': 20896, 'trippy': 20897, 'trotta': 20898, 'troubles.': 20899, 'troublesome': 20900, 'troupe': 20901, 'truer': 20902, 'trunk': 20903, 'tunnels': 20904, 'types.': 20905, 'ulrich': 20906, "uncle's": 20907, 'unconvincing,': 20908, 'under-rated': 20909, 'undergo': 20910, 'undergoes': 20911, 'underlines': 20912, 'undertone': 20913, 'undertones': 20914, 'underwritten': 20915, 'unexciting': 20916, 'unflinching': 20917, 'unfocused': 20918, 'ungar': 20919, 'unimaginative,': 20920, 'unintelligible': 20921, 'unintended': 20922, 'unisol': 20923, 'unmotivated': 20924, 'unnoticed': 20925, 'unofficial': 20926, 'untrue.': 20927, 'unworthy': 20928, 'upright': 20929, 'urinating': 20930, 'utah': 20931, 'vacant': 20932, 'validity': 20933, 'value.<br': 20934, 'veiled': 20935, 'veneer': 20936, 'vertigo': 20937, 'viable': 20938, 'vicki': 20939, 'victims.<br': 20940, 'viewpoints': 20941, 'virgin.': 20942, 'virgins': 20943, 'vistas': 20944, 'visually.': 20945, 'vivid,': 20946, 'vocabulary': 20947, 'vulcan': 20948, 'w': 20949, 'waco': 20950, 'wade': 20951, 'wanted,': 20952, 'ward,': 20953, 'washington.': 20954, 'wasteland': 20955, 'watchable.<br': 20956, 'wave.': 20957, 'way"': 20958, 'ways:': 20959, 'wealth,': 20960, 'weapon,': 20961, 'well-developed': 20962, 'well-made,': 20963, 'went.': 20964, 'whereabouts': 20965, 'whipping': 20966, "wilder's": 20967, 'wildest': 20968, 'wimp': 20969, 'winger': 20970, 'winter,': 20971, 'wisecracking': 20972, 'without,': 20973, 'won,': 20974, 'wrestlers': 20975, 'x"': 20976, 'x-men': 20977, 'yang': 20978, 'yanked': 20979, 'yawn.': 20980, 'yearns': 20981, 'years)': 20982, 'years?': 20983, 'you...': 20984, 'zen': 20985, 'zeta': 20986, 'zoe': 20987, '"10"': 20988, '"alien"': 20989, '"being': 20990, '"better': 20991, '"boogie': 20992, '"cat': 20993, '"christmas': 20994, '"classic"': 20995, '"end': 20996, '"film': 20997, '"fun"': 20998, '"grand': 20999, '"have': 21000, '"his': 21001, '"kids"': 21002, '"land': 21003, '"maybe': 21004, '"message"': 21005, '"naked': 21006, '"never': 21007, '"please': 21008, '"sudden': 21009, '"watch': 21010, '"you\'ve': 21011, '$': 21012, '$10,000': 21013, "'50s": 21014, "'black": 21015, "'good": 21016, "'house": 21017, "'how": 21018, "'no": 21019, "'plot'": 21020, '(1990)': 21021, '(1996)': 21022, '(2002)': 21023, '(a)': 21024, '(a.k.a.': 21025, '(bad': 21026, '(catherine': 21027, '(emily': 21028, '(god': 21029, '(i.e.,': 21030, '(jimmy': 21031, '(let': 21032, '(lots': 21033, '(mostly)': 21034, '(mr.': 21035, '(nothing': 21036, '(ok,': 21037, '(philip': 21038, '(read:': 21039, '(until': 21040, '(victor': 21041, "(you'll": 21042, '*is*': 21043, '*really*': 21044, '-<br': 21045, '/>10': 21046, '/>7.': 21047, '/>al': 21048, '/>be': 21049, '/>big': 21050, '/>bill': 21051, '/>dr': 21052, '/>each': 21053, '/>full': 21054, '/>had': 21055, '/>imagine': 21056, '/>instead,': 21057, '/>probably': 21058, '/>quite': 21059, '/>rent': 21060, '/>sorry,': 21061, "/>we're": 21062, '/>will': 21063, '/>written': 21064, '/>young': 21065, '007': 21066, '102': 21067, '140': 21068, '15,': 21069, '15.': 21070, '1922': 21071, '1930': 21072, '1933,': 21073, '1937': 21074, '1941': 21075, '1957': 21076, '1960': 21077, '1962': 21078, '1969,': 21079, "1980's,": 21080, "1980's.": 21081, '1993.': 21082, '1996,': 21083, '1997,': 21084, '2.<br': 21085, '2007,': 21086, '2009': 21087, '29': 21088, '30,': 21089, '39': 21090, '84': 21091, 'abandonment': 21092, 'abetted': 21093, 'aborigines': 21094, 'accolades': 21095, 'accomplice': 21096, 'actions.<br': 21097, 'adam,': 21098, 'add.': 21099, 'adelaide': 21100, 'adolescents': 21101, 'adrienne': 21102, 'advani': 21103, 'advantage.': 21104, 'advent': 21105, 'adventures.': 21106, 'adviser': 21107, 'afoul': 21108, 'aggressively': 21109, "al's": 21110, 'al.': 21111, "alison's": 21112, 'all-out': 21113, 'aloof': 21114, 'aloud': 21115, 'altogether,': 21116, 'am.': 21117, 'amateur,': 21118, 'amateur.': 21119, 'america.<br': 21120, 'amok': 21121, 'ana': 21122, 'analyzed': 21123, 'anastasia': 21124, 'anders': 21125, 'angel.': 21126, 'angels,': 21127, 'ankle': 21128, 'annals': 21129, 'answers,': 21130, 'anupam': 21131, 'anxiously': 21132, 'anyway).': 21133, 'anyways.': 21134, 'apparent,': 21135, 'arabian': 21136, 'aragorn': 21137, 'arcane': 21138, 'archival': 21139, 'arduous': 21140, 'are)': 21141, "argento's": 21142, 'arising': 21143, 'arranges': 21144, 'artistic,': 21145, 'artists,': 21146, 'artwork,': 21147, 'aspires': 21148, 'assassin,': 21149, 'asserts': 21150, 'assets': 21151, 'assistant.': 21152, 'astounding.': 21153, 'attackers': 21154, 'audacity': 21155, 'audiard': 21156, "australia's": 21157, 'autumn': 21158, 'avenue': 21159, 'avoided.': 21160, 'awakened': 21161, 'axel': 21162, 'b+': 21163, 'b-movies,': 21164, 'b.s.': 21165, 'bag,': 21166, 'baked': 21167, 'bakula': 21168, 'balances': 21169, 'baltimore': 21170, 'banker': 21171, 'bannister': 21172, 'barbaric': 21173, 'barriers': 21174, 'bars.': 21175, 'bay.': 21176, "bbc's": 21177, 'be;': 21178, 'beams': 21179, 'beans': 21180, 'beast.': 21181, 'beatrice': 21182, 'beauty"': 21183, 'beforehand,': 21184, 'befuddled': 21185, 'began,': 21186, 'begins.<br': 21187, 'benchmark': 21188, 'berkley': 21189, 'berkowitz': 21190, 'besieged': 21191, 'bet,': 21192, 'better;': 21193, 'big-name': 21194, 'bikers': 21195, 'biko,': 21196, 'birthday.': 21197, 'bjm': 21198, 'blackmailed': 21199, 'blaming': 21200, 'bleached': 21201, 'blocked': 21202, 'blood.<br': 21203, 'boasted': 21204, 'bogged': 21205, 'boldly': 21206, 'bolivian': 21207, 'boll.': 21208, 'bomb,': 21209, 'bona': 21210, 'bother?': 21211, 'bots': 21212, 'bottles': 21213, 'boxing,': 21214, 'branagh,': 21215, 'briefly,': 21216, 'brigade': 21217, 'brilliantly.': 21218, 'brim': 21219, 'brimming': 21220, 'british,': 21221, 'brittany': 21222, 'broadcast,': 21223, 'bronx': 21224, 'brothel': 21225, 'brutish': 21226, 'btw': 21227, 'buddhist': 21228, 'bull,': 21229, 'bulldog': 21230, 'burlesque': 21231, 'by.<br': 21232, 'cabaret': 21233, 'call.': 21234, 'cambodia': 21235, 'camcorder.': 21236, 'campiness': 21237, 'canadians': 21238, 'canal': 21239, 'canceled.': 21240, "candy's": 21241, 'cannibalism': 21242, 'capabilities': 21243, 'caprice': 21244, 'captured,': 21245, 'captured.': 21246, 'car.<br': 21247, 'carrot': 21248, 'carrère': 21249, 'cartwright': 21250, 'casablanca': 21251, 'casablanca,': 21252, 'catastrophic': 21253, 'catholics': 21254, 'centering': 21255, 'chairs': 21256, 'champion,': 21257, 'chan,': 21258, 'chap': 21259, 'chatting': 21260, 'cheerfully': 21261, 'cheery': 21262, 'cheese,': 21263, 'cheng': 21264, 'chillers': 21265, 'chimp': 21266, 'chocolat': 21267, 'choi': 21268, 'choked': 21269, 'chomsky': 21270, 'chou': 21271, 'christ.': 21272, 'chuckling': 21273, 'churches': 21274, 'citizens.': 21275, 'clair': 21276, 'claustrophobia': 21277, 'clichéd.': 21278, 'climbed': 21279, 'clues,': 21280, 'coherent,': 21281, 'coincidence.': 21282, 'cole,': 21283, 'collaborations': 21284, 'colleagues,': 21285, 'colossal': 21286, 'coltrane': 21287, 'columbo,': 21288, 'combined.': 21289, 'comical,': 21290, 'commended': 21291, 'committed.': 21292, 'company.<br': 21293, 'complete,': 21294, 'completed.': 21295, 'complimented': 21296, 'conceive': 21297, 'condemning': 21298, 'conversion': 21299, 'cooks': 21300, 'cooper.': 21301, 'cooperation': 21302, "corman's": 21303, 'corpse,': 21304, 'couples,': 21305, 'cousin.': 21306, 'coven': 21307, 'cozy': 21308, 'craft.': 21309, 'crafted,': 21310, 'crafts': 21311, 'credentials': 21312, 'creed': 21313, 'cringe.': 21314, 'cronies': 21315, "crowe's": 21316, 'crying.': 21317, 'culmination': 21318, 'culprit': 21319, 'cultures.': 21320, 'curtiz': 21321, 'cuz': 21322, "d'amato": 21323, "d'angelo": 21324, 'dancers,': 21325, 'dangerous.': 21326, 'danny,': 21327, 'dante': 21328, 'danza': 21329, 'daughters.': 21330, 'davis)': 21331, 'dawson.': 21332, 'day)': 21333, 'day?': 21334, 'dealings': 21335, 'decay': 21336, 'decipher': 21337, 'deco': 21338, 'decomposing': 21339, 'deeply.': 21340, 'defends': 21341, 'degrades': 21342, 'delivery,': 21343, 'delusions': 21344, 'demme': 21345, 'demolition': 21346, 'den': 21347, 'denies': 21348, 'depicted.': 21349, 'depp': 21350, 'derives': 21351, 'dermot': 21352, 'descendant': 21353, 'designs,': 21354, 'desirable': 21355, 'detailed,': 21356, 'deter': 21357, 'deteriorated': 21358, 'detmers': 21359, 'deus': 21360, 'devon': 21361, "dexter's": 21362, 'dibiase': 21363, 'dictatorship': 21364, 'dictionary': 21365, 'dignity,': 21366, 'dimwitted': 21367, 'dinosaurs.': 21368, 'dire,': 21369, 'disappear.': 21370, 'disaster.<br': 21371, 'discern': 21372, 'disconcerting': 21373, 'discourse': 21374, 'discovered.': 21375, 'dismay': 21376, 'disposable': 21377, 'disposing': 21378, 'distinguishes': 21379, 'distracting,': 21380, 'distressed': 21381, 'disturbed,': 21382, 'divide': 21383, 'divorce.': 21384, 'dixon,': 21385, 'dodger': 21386, 'dog"': 21387, 'donate': 21388, 'doomsday': 21389, 'doors.': 21390, 'doubly': 21391, 'doubting': 21392, 'downey,': 21393, 'dragon,': 21394, 'dragon.': 21395, 'draining': 21396, 'dream-like': 21397, 'dream.<br': 21398, 'drift.': 21399, 'dross': 21400, 'duet': 21401, 'dumbing': 21402, 'dumping': 21403, 'dunaway': 21404, 'duty,': 21405, 'duvall,': 21406, 'dystopian': 21407, 'ear.': 21408, 'ears.': 21409, 'easily,': 21410, 'east.': 21411, 'easter': 21412, 'eclectic': 21413, 'eclipsed': 21414, 'edmond': 21415, 'edwards': 21416, 'eerie,': 21417, 'electrifying': 21418, 'eliminates': 21419, 'eliminating': 21420, 'elinore': 21421, 'embarrassing,': 21422, 'embedded': 21423, 'embodied': 21424, 'emory': 21425, 'empty,': 21426, 'encompasses': 21427, 'encounter.': 21428, 'endure.': 21429, 'engineer,': 21430, 'engulfed': 21431, 'enlightening': 21432, 'enlightenment': 21433, 'ennio': 21434, 'ensues,': 21435, 'entertain,': 21436, 'enthusiasts': 21437, 'entity': 21438, 'ephemeral': 21439, 'erased': 21440, 'erotic.': 21441, 'erupts': 21442, 'eskimo': 21443, 'eternally': 21444, 'ethical': 21445, 'evaluate': 21446, 'eve.': 21447, 'everyman': 21448, 'evil?': 21449, 'exaggeration': 21450, 'example.<br': 21451, 'exiled': 21452, 'expectations.<br': 21453, 'expected.<br': 21454, 'explain,': 21455, 'exploitive': 21456, 'explosion,': 21457, 'eye"': 21458, 'eye-candy': 21459, 'fabricated': 21460, 'faithfulness': 21461, "fallon's": 21462, 'far-fetched.': 21463, "farmer's": 21464, 'farting': 21465, 'fast.<br': 21466, 'favourites.': 21467, 'featurette': 21468, 'february': 21469, 'feeling.<br': 21470, "felix's": 21471, "fellini's": 21472, 'fellows': 21473, 'fellowship': 21474, 'ferris': 21475, 'feud': 21476, 'feudal': 21477, 'fiction"': 21478, 'fictionalized': 21479, 'fide': 21480, 'film-making.<br': 21481, 'film."': 21482, "filmmakers'": 21483, 'films?': 21484, 'financing': 21485, 'finest.': 21486, 'fitz': 21487, 'fixation': 21488, 'flashed': 21489, 'flicker': 21490, 'flirtatious': 21491, 'flora': 21492, 'florida,': 21493, 'flourishes': 21494, 'floyd': 21495, 'flynn,': 21496, 'fonda,': 21497, 'football.': 21498, 'forehead': 21499, 'forest,': 21500, 'founded': 21501, 'fragments': 21502, 'frailty': 21503, "france's": 21504, 'fraught': 21505, 'freak,': 21506, 'frechette': 21507, 'frederic': 21508, 'french.': 21509, 'frenzied': 21510, 'fringe': 21511, 'front.': 21512, 'frye': 21513, 'fundamentalist': 21514, 'fx,': 21515, 'gaelic': 21516, 'gamers': 21517, "gannon's": 21518, 'gauri': 21519, 'gee,': 21520, 'geeks': 21521, 'gerry': 21522, 'gingerbread': 21523, 'gladys': 21524, 'gleeful': 21525, 'goodies': 21526, 'gooding,': 21527, 'gotham': 21528, 'graduation': 21529, 'granted.': 21530, 'grants': 21531, 'graphic,': 21532, 'gras': 21533, 'green.': 21534, 'greenwich': 21535, 'greenwood': 21536, 'grimy': 21537, 'groans': 21538, 'grueling': 21539, 'gruner': 21540, 'gun"': 21541, 'gunbuster': 21542, 'gung-ho': 21543, 'gunned': 21544, "guy'": 21545, 'guys?': 21546, 'haggard': 21547, "hamilton's": 21548, 'hammy,': 21549, 'hangover': 21550, 'hard-working': 21551, 'hardware': 21552, 'hastily': 21553, 'hatred,': 21554, 'hauled': 21555, 'hawaii': 21556, 'hawaiian': 21557, 'headlines': 21558, 'heartbreak': 21559, 'heat,': 21560, 'hebrew': 21561, 'hell.<br': 21562, 'helms': 21563, 'henson': 21564, 'her...': 21565, 'hera': 21566, 'herbie': 21567, 'hernandez': 21568, 'hero.<br': 21569, "heroine's": 21570, "heston's": 21571, 'heston,': 21572, 'hi': 21573, 'hicks': 21574, 'hillary': 21575, 'him),': 21576, 'hindered': 21577, 'hinting': 21578, 'hip,': 21579, 'hitchcock.': 21580, 'hmmm,': 21581, 'hodgepodge': 21582, 'holm': 21583, 'homeward': 21584, 'horde': 21585, 'horrifying,': 21586, 'horseback': 21587, 'host,': 21588, "house'": 21589, 'house)': 21590, 'housewives': 21591, 'humanistic': 21592, 'humor?': 21593, 'humorless': 21594, 'hunting,': 21595, 'hyper': 21596, 'hypnotized': 21597, 'i`m': 21598, 'ice,': 21599, 'identifiable': 21600, 'identification': 21601, 'identifying': 21602, 'ignored,': 21603, 'il': 21604, 'imagined,': 21605, 'imagined.': 21606, 'imax': 21607, 'imdb.com': 21608, 'imitated': 21609, 'imo.': 21610, 'importance.': 21611, 'impress.': 21612, 'improvements': 21613, 'inappropriately': 21614, 'inc.': 21615, 'inches': 21616, 'incredible!': 21617, 'indelible': 21618, 'independent,': 21619, 'indestructible': 21620, 'indicator': 21621, 'indigenous': 21622, 'inevitability': 21623, 'inexplicably,': 21624, 'infiltrate': 21625, 'inflicting': 21626, 'injecting': 21627, 'injury,': 21628, 'insatiable': 21629, 'insensitive': 21630, 'insistent': 21631, 'inspiring,': 21632, 'institute': 21633, 'intents': 21634, 'intolerance': 21635, 'intricately': 21636, 'intrigues': 21637, 'introduction,': 21638, 'introductory': 21639, 'introspective': 21640, 'investigation.': 21641, 'iraqi': 21642, 'it).<br': 21643, 'it.the': 21644, 'ivanna': 21645, "jabba's": 21646, 'jada': 21647, 'jaffe': 21648, 'jai': 21649, 'jang': 21650, 'jannings': 21651, 'japanese,': 21652, 'jaw-dropping': 21653, 'jean-pierre': 21654, 'jeans': 21655, 'jeffery': 21656, "jesus'": 21657, "jimmy's": 21658, 'jolt': 21659, 'journalist,': 21660, 'jumbled': 21661, 'jumpy': 21662, 'jungles': 21663, 'junkie': 21664, 'kat': 21665, "kazan's": 21666, 'kessler': 21667, 'kgb': 21668, 'khanna': 21669, 'kiddies': 21670, 'kind.<br': 21671, 'kinetic': 21672, 'kitchen,': 21673, 'know)': 21674, 'lamb': 21675, 'lamberto': 21676, 'landscape.': 21677, 'lane.': 21678, 'laundry': 21679, 'lazy.': 21680, 'leaf': 21681, 'leftover': 21682, 'legacy.': 21683, 'legs.': 21684, 'lerner': 21685, "lester's": 21686, 'lethargic': 21687, 'leung': 21688, "li's": 21689, 'life",': 21690, 'lighted': 21691, 'lil': 21692, 'limb': 21693, 'limited,': 21694, 'ling': 21695, 'lips,': 21696, 'listless': 21697, 'liver': 21698, 'livingston': 21699, 'long-running': 21700, 'lowbrow': 21701, 'lucid': 21702, 'lucile': 21703, 'lucky.': 21704, 'lumbering': 21705, 'lyric': 21706, 'macaulay': 21707, 'macdowell': 21708, 'machete': 21709, 'machinery': 21710, "macy's": 21711, 'made;': 21712, 'magical,': 21713, 'magical.': 21714, 'maher': 21715, 'mainstream,': 21716, 'makeup.': 21717, 'manchester': 21718, 'manipulative,': 21719, 'mankind,': 21720, 'mansfield': 21721, 'manual': 21722, 'map.': 21723, 'marginal': 21724, 'mars,': 21725, "martino's": 21726, 'marylee': 21727, 'masses.': 21728, 'matthau,': 21729, 'matthews': 21730, 'matuschek': 21731, 'mccartney': 21732, 'mcshane': 21733, 'me),': 21734, 'me?"': 21735, 'meaningful.': 21736, 'meeting,': 21737, 'melodramas': 21738, 'melody,': 21739, 'memorable.<br': 21740, 'memorial': 21741, 'menace.': 21742, 'mentality.': 21743, 'merciless': 21744, 'merge': 21745, 'merits.': 21746, 'merle': 21747, 'mesh': 21748, 'message.<br': 21749, 'microfilm': 21750, "milo's": 21751, 'milton': 21752, 'mind-blowing': 21753, 'mind-boggling': 21754, 'miriam': 21755, 'mishaps': 21756, 'miss,': 21757, 'missionary': 21758, 'miya': 21759, 'monetary': 21760, 'money?': 21761, 'monochrome': 21762, 'monster"': 21763, 'monte': 21764, 'montgomery': 21765, 'moralistic': 21766, 'morals,': 21767, 'morricone': 21768, 'moses': 21769, 'mountain.': 21770, "movie'": 21771, 'movie...<br': 21772, 'movie<br': 21773, 'movies...': 21774, 'muddled,': 21775, 'mukhsin': 21776, 'muller': 21777, 'mulligan': 21778, 'multiply': 21779, 'museum,': 21780, 'music"': 21781, 'music...': 21782, 'musicians,': 21783, 'naiveté': 21784, 'nam': 21785, 'narrating': 21786, 'narrator.': 21787, 'narrowly': 21788, 'nash': 21789, 'nations.': 21790, 'naudet': 21791, 'neal': 21792, 'necks': 21793, 'negative.': 21794, 'negligible': 21795, 'neighbor.': 21796, 'neill': 21797, 'nerves.': 21798, "newman's": 21799, 'nighttime': 21800, 'nighy': 21801, 'nikhil': 21802, 'nipple': 21803, 'no.<br': 21804, 'nobel': 21805, 'nobility': 21806, 'noise.': 21807, 'nonetheless.<br': 21808, 'noon': 21809, 'normalcy': 21810, 'nosy': 21811, 'not),': 21812, 'notwithstanding': 21813, 'numbingly': 21814, 'nymphomaniac': 21815, 'oakland': 21816, 'occasion.': 21817, 'occupies': 21818, 'off-the-wall': 21819, 'off;': 21820, 'ogling': 21821, 'old)': 21822, 'omitted': 21823, 'onset': 21824, 'oozing': 21825, 'origin.': 21826, 'osbourne': 21827, 'outfits,': 21828, 'overhead': 21829, 'overpowering': 21830, 'overrated,': 21831, 'oversexed': 21832, 'overview': 21833, 'packaging': 21834, 'pagan': 21835, 'painstakingly': 21836, 'paintings,': 21837, 'pakeezah': 21838, 'pants.': 21839, 'parasite': 21840, 'pardon': 21841, 'park"': 21842, 'part?': 21843, 'passed,': 21844, 'patients.': 21845, 'patrons': 21846, 'paxton,': 21847, 'peeping': 21848, 'peg': 21849, 'pencil': 21850, 'peralta': 21851, 'perhaps.': 21852, 'perpetuate': 21853, 'personified': 21854, 'pessimistic': 21855, "pete's": 21856, "peter's": 21857, 'petition': 21858, 'phenomenon.': 21859, 'philosophy.': 21860, 'photographed,': 21861, 'pieced': 21862, 'pigeon': 21863, 'pinkett': 21864, 'pins': 21865, 'pitcher': 21866, 'plains': 21867, 'play"': 21868, 'pleasant,': 21869, 'poem.': 21870, 'poetry.': 21871, 'poirot': 21872, 'pop,': 21873, 'posts': 21874, 'pours': 21875, 'pow': 21876, 'preachy,': 21877, 'precocious': 21878, 'predictable.<br': 21879, 'premise.<br': 21880, 'prissy': 21881, 'priyadarshan': 21882, 'priyanka': 21883, 'professionalism': 21884, 'programmer': 21885, 'promiscuous': 21886, 'proposed': 21887, 'props,': 21888, 'protocol': 21889, 'provincial': 21890, 'prudish': 21891, 'pulitzer': 21892, 'puppies': 21893, 'purest': 21894, 'purvis': 21895, 'pym': 21896, 'questions.<br': 21897, "quinn's": 21898, 'racially': 21899, 'racism.': 21900, 'random.': 21901, 'raped,': 21902, 'real?': 21903, 'recordings': 21904, 'recounting': 21905, 'recreating': 21906, 'reda': 21907, 'redhead': 21908, 'referenced': 21909, 'rehashing': 21910, 'rehearsing': 21911, 'reinforce': 21912, 'reitman': 21913, 'relationship.<br': 21914, 'relic': 21915, 'removal': 21916, 'repercussions': 21917, 'repetition': 21918, 'repetitive.': 21919, 'requests': 21920, 'requirements': 21921, 'resent': 21922, 'resolution.': 21923, 'resolving': 21924, 'resonate': 21925, 'respectively': 21926, 'respects.': 21927, 'responded': 21928, 'restaurant.': 21929, 'resume.': 21930, 'revenge.<br': 21931, "richard's": 21932, 'rigged': 21933, 'right:': 21934, 'rings.': 21935, 'risking': 21936, 'robbery,': 21937, 'roberto': 21938, 'robin,': 21939, 'robson': 21940, 'rochester,': 21941, 'rock"': 21942, "rock's": 21943, 'rodeo': 21944, "rogers'": 21945, 'role).': 21946, 'romantically': 21947, 'roof.': 21948, 'ropes': 21949, 'rot': 21950, 'route.': 21951, 'rpg': 21952, 'rubbish!': 21953, 'ruben': 21954, 'rudimentary': 21955, 'rumored': 21956, 'rushed.': 21957, 'russia,': 21958, 'saddened': 21959, 'said.<br': 21960, 'sake!': 21961, 'sakura': 21962, 'salacious': 21963, 'salary': 21964, 'samurai,': 21965, 'sank': 21966, "sarah's": 21967, 'sarno': 21968, 'savings': 21969, 'savini': 21970, 'say.<br': 21971, 'sayuri': 21972, 'scanners': 21973, 'scathing': 21974, 'scene;': 21975, 'scorcese': 21976, 'screams,': 21977, 'secretary.': 21978, 'secular': 21979, 'see"': 21980, 'seething': 21981, 'segments,': 21982, 'serial,': 21983, 'series?': 21984, 'serpent': 21985, 'seven.<br': 21986, 'sex.<br': 21987, 'sexual,': 21988, 'shakespearian': 21989, 'shame.<br': 21990, 'shamefully': 21991, 'shape,': 21992, 'she?': 21993, 'sheryl': 21994, 'shifted': 21995, 'ships,': 21996, 'shirts': 21997, 'shone': 21998, 'shoot.': 21999, 'shortcomings.': 22000, 'show?': 22001, 'showy': 22002, 'shrunk': 22003, 'sibrel': 22004, 'sickeningly': 22005, 'sidekicks': 22006, 'sigourney': 22007, 'simple-minded': 22008, 'sixties.': 22009, 'skating': 22010, 'slams': 22011, "sleeve's": 22012, 'slime': 22013, 'slow-paced': 22014, 'slumber': 22015, 'slumming': 22016, 'smiles,': 22017, 'smiling.': 22018, 'sniff': 22019, 'snuck': 22020, 'sociopath': 22021, 'sollett': 22022, 'solo,': 22023, 'sombre': 22024, "somebody's": 22025, 'somehow.': 22026, "something's": 22027, 'something...': 22028, 'soulful': 22029, 'sounds.': 22030, 'spanning': 22031, 'speaking.': 22032, 'specialist': 22033, 'speechless': 22034, 'spilled': 22035, 'spilling': 22036, 'spirals': 22037, 'spirits,': 22038, 'splashes': 22039, 'spoken,': 22040, 'sponsored': 22041, 'spoof,': 22042, 'spoof.': 22043, 'spook': 22044, 'spouse': 22045, 'spunky': 22046, 'square,': 22047, 'squeamish': 22048, "star's": 22049, 'stared': 22050, 'static,': 22051, 'stephens': 22052, 'stifler': 22053, 'stint': 22054, 'stirred': 22055, 'stitches': 22056, 'stoner': 22057, 'stormtroopers': 22058, 'story."': 22059, 'stowe': 22060, 'strangle': 22061, 'stratten': 22062, 'strengths,': 22063, 'strippers': 22064, 'stuff?': 22065, 'stuffy': 22066, 'stylised': 22067, 'submission': 22068, 'substituting': 22069, 'suburb': 22070, 'successor': 22071, 'succumbs': 22072, 'summon': 22073, 'summoned': 22074, 'superheroes': 22075, 'superman.': 22076, 'surfer': 22077, 'surfing,': 22078, 'surprised.<br': 22079, 'surreal.': 22080, 'survive.<br': 22081, 'suv': 22082, 'swallowed': 22083, 'swashbuckling': 22084, 'swelling': 22085, 'swings': 22086, 'sympathies': 22087, 'synonymous': 22088, 'tabloid': 22089, 'tadanobu': 22090, 'tails': 22091, 'takes.': 22092, 'talkative': 22093, 'tapes,': 22094, "tarantino's": 22095, 'tassi': 22096, 'teasing': 22097, 'tendencies': 22098, 'tennis': 22099, 'tenor': 22100, 'tenth': 22101, 'terrorists,': 22102, 'texas.': 22103, 'thanked': 22104, 'theatrically': 22105, 'them),': 22106, 'there),': 22107, 'thief.': 22108, 'things?': 22109, 'think),': 22110, 'think).': 22111, 'thinner': 22112, 'thornton': 22113, 'ticket.': 22114, 'tiny,': 22115, 'title:': 22116, 'to)': 22117, 'tomboy': 22118, 'tomei,': 22119, 'top-notch.': 22120, 'top.<br': 22121, 'traced': 22122, 'trademarks': 22123, 'trader': 22124, 'trainer': 22125, 'transfered': 22126, 'transfixed': 22127, 'translation,': 22128, 'translation.': 22129, 'transmitted': 22130, 'triads': 22131, 'tribeca': 22132, 'tries,': 22133, 'true-to-life': 22134, 'trusting': 22135, 'tune,': 22136, 'turd.': 22137, 'tv-series': 22138, 'uh': 22139, 'una': 22140, 'uncovering': 22141, 'undermining': 22142, 'underrated.': 22143, 'understandably,': 22144, 'unexpected,': 22145, 'unfold.': 22146, 'unhealthy': 22147, 'unimportant': 22148, 'uninhibited': 22149, 'union,': 22150, "universal's": 22151, 'unlimited': 22152, 'unlock': 22153, 'unmistakable': 22154, 'unrealistically': 22155, 'unsettling.': 22156, 'unsung': 22157, 'unwatchable,': 22158, 'uplifting,': 22159, 'utters': 22160, 'vague,': 22161, 'vain.': 22162, 'vampire.': 22163, 'vanishing': 22164, 'vendetta': 22165, 'venue': 22166, 'vernon': 22167, 'vessel': 22168, 'viet': 22169, "villain's": 22170, 'vinny': 22171, "visconti's": 22172, 'voight,': 22173, 'vulgar,': 22174, 'vulnerable,': 22175, 'wallow': 22176, 'waqt': 22177, 'war?': 22178, 'warlord': 22179, 'warmly': 22180, 'waterfront': 22181, 'wave,': 22182, 'way...': 22183, 'we?': 22184, 'weaving': 22185, 'website.': 22186, 'wei': 22187, 'weirdest': 22188, 'well-deserved': 22189, 'well-done,': 22190, 'well?': 22191, 'welles.': 22192, 'wentworth': 22193, 'who?': 22194, 'whom,': 22195, 'whopping': 22196, 'whos': 22197, 'willis,': 22198, 'wily': 22199, 'wink': 22200, 'wise-cracking': 22201, 'wish,': 22202, 'wistful': 22203, 'without.': 22204, 'wobbly': 22205, 'wood.': 22206, 'wounds,': 22207, 'yelled': 22208, 'yet?': 22209, "you'": 22210, 'youngster': 22211, 'yul': 22212, 'zombies?': 22213, 'zuniga': 22214, '"air': 22215, '"anna"': 22216, '"art': 22217, '"big"': 22218, '"blair': 22219, '"cabin': 22220, '"columbo"': 22221, '"demons': 22222, '"evil"': 22223, '"fear': 22224, '"feel': 22225, '"fever': 22226, '"friends"': 22227, '"gay': 22228, '"he\'s': 22229, '"her': 22230, '"here': 22231, '"hobgoblins"': 22232, '"horror': 22233, '"i\'ve': 22234, '"john': 22235, '"kalifornia"': 22236, '"leave': 22237, '"love"': 22238, '"masters': 22239, '"match': 22240, '"modern': 22241, '"panic': 22242, '"party': 22243, '"pushing': 22244, '"reality': 22245, '"robin': 22246, '"scoop"': 22247, '"second': 22248, '"see': 22249, '"shanghai': 22250, '"she\'s': 22251, '"small': 22252, '"south': 22253, '"thing"': 22254, '"tom': 22255, '"total': 22256, '"twelve': 22257, '"with': 22258, '#': 22259, '$10': 22260, "'40s": 22261, "'90s": 22262, "'big": 22263, "'not": 22264, "'you": 22265, '(&': 22266, '(1933)': 22267, '(1973)': 22268, '(1979)': 22269, '(1985)': 22270, '(1987)': 22271, '(3': 22272, '(anthony': 22273, '(better': 22274, '(bruce': 22275, '(burt': 22276, '(craig': 22277, '(elizabeth': 22278, '(every': 22279, '(featuring': 22280, '(greg': 22281, '(guy': 22282, '(ie.': 22283, '(jim': 22284, '(joe': 22285, '(lisa': 22286, '(maria': 22287, '(mrs.': 22288, '(sorry,': 22289, ').<br': 22290, '.....': 22291, '/>---': 22292, '/>--polarisdib': 22293, '/>8.': 22294, '/>9': 22295, '/>anyways,': 22296, '/>apparently': 22297, '/>are': 22298, '/>aspect': 22299, '/>conclusion:': 22300, '/>jason': 22301, '/>man': 22302, '/>mary': 22303, '/>movies': 22304, '/>nice': 22305, '/>nonetheless,': 22306, '/>old': 22307, '/>pros:': 22308, '/>season': 22309, '/>seriously': 22310, '/>sidney': 22311, '/>skip': 22312, '/>steven': 22313, '/>ten': 22314, '/>whilst': 22315, '/>yeah,': 22316, '/>·': 22317, '10%': 22318, '10?': 22319, '11.': 22320, '12,': 22321, '14th': 22322, '1949': 22323, '1956': 22324, '1960s,': 22325, '1964': 22326, '1971.': 22327, '1974,': 22328, '1980.': 22329, '1983,': 22330, '1983.': 22331, '1984,': 22332, "1990's.": 22333, '1990s,': 22334, '2".': 22335, '20,': 22336, '2007.': 22337, '2008.': 22338, "30's,": 22339, '31': 22340, '32': 22341, '34': 22342, '35mm': 22343, '42nd': 22344, '55': 22345, '600': 22346, '71': 22347, '76': 22348, '8mm': 22349, '9/11,': 22350, "90's,": 22351, '97': 22352, '9th': 22353, ':-)<br': 22354, "abc's": 22355, 'abhorrent': 22356, 'aborigine': 22357, 'abound.': 22358, 'absurd.<br': 22359, 'abysmal.': 22360, 'accented': 22361, 'achievement,': 22362, 'across,': 22363, 'acting;': 22364, 'action"': 22365, 'actor/actress': 22366, 'addicts': 22367, 'adequate.': 22368, 'adjective': 22369, 'admiral': 22370, 'ado': 22371, 'adolescence': 22372, 'adoration': 22373, 'adversary': 22374, 'advert': 22375, 'advice.': 22376, 'affords': 22377, 'aids.': 22378, 'alastair': 22379, 'album.': 22380, 'alexander,': 22381, 'alfonso': 22382, 'alive.<br': 22383, 'all"': 22384, 'all-around': 22385, 'allergic': 22386, 'allusion': 22387, 'alter-ego': 22388, 'alumni': 22389, 'ambition,': 22390, 'ambitious,': 22391, 'ammunition': 22392, 'anachronistic': 22393, 'andrews,': 22394, 'angelic': 22395, 'announcement': 22396, 'anti-social': 22397, 'antics.': 22398, 'antique': 22399, 'antoine': 22400, 'anybody.': 22401, 'anything!': 22402, 'apart.<br': 22403, 'apology': 22404, 'appalling,': 22405, "aren't.": 22406, 'argument,': 22407, 'arrive,': 22408, 'aryan': 22409, 'as.': 22410, 'assaults': 22411, 'assistant,': 22412, 'at.<br': 22413, 'athletes': 22414, 'atmospheric.': 22415, 'attacks,': 22416, 'attic': 22417, 'attorney,': 22418, 'attribute': 22419, 'audacious': 22420, 'audience?': 22421, 'auntie': 22422, 'australia.': 22423, 'autopsy': 22424, 'available,': 22425, 'avenger': 22426, 'avoid!': 22427, 'ayers': 22428, "baby's": 22429, 'back...': 22430, 'back?': 22431, 'bad-ass': 22432, 'baffles': 22433, 'balance,': 22434, 'ballad': 22435, 'ballantine': 22436, 'banal,': 22437, 'bandwagon': 22438, 'bankrupt': 22439, "barker's": 22440, 'basic,': 22441, 'bates,': 22442, 'bath,': 22443, 'bathroom,': 22444, 'battles.': 22445, 'bc': 22446, 'bearable.': 22447, 'beasts': 22448, 'beaver': 22449, 'bedknobs': 22450, 'beer,': 22451, 'beforehand': 22452, 'behaviour.': 22453, 'believe)': 22454, 'below.': 22455, "belushi's": 22456, 'berate': 22457, 'bergman,': 22458, 'bergman.': 22459, 'betting': 22460, 'between.<br': 22461, 'biehn': 22462, 'bigotry': 22463, 'bla': 22464, 'blackwood': 22465, 'blades': 22466, 'blanc': 22467, 'blaring': 22468, 'blithely': 22469, 'block.': 22470, 'blossom': 22471, 'blunt,': 22472, 'bluntly': 22473, 'blurb': 22474, 'bluth': 22475, 'bonus,': 22476, 'book"': 22477, 'books.<br': 22478, 'boorman': 22479, 'border,': 22480, 'boringly': 22481, 'bothered.': 22482, 'bouvier': 22483, 'branches': 22484, 'breakout': 22485, 'bricks': 22486, 'bridges,': 22487, 'briggs': 22488, 'brilliance,': 22489, 'brisson': 22490, 'britain.': 22491, 'brokedown': 22492, "brontë's": 22493, 'brooklyn,': 22494, 'brynner': 22495, 'bubbles': 22496, 'buildup': 22497, 'bureaucracy': 22498, 'burr': 22499, "burtynsky's": 22500, 'businessmen': 22501, 'busting': 22502, 'cafeteria': 22503, 'caleb': 22504, 'campy.': 22505, 'can!': 22506, 'cancels': 22507, 'candice': 22508, 'canine': 22509, 'capably': 22510, 'captivating,': 22511, 'carelessly': 22512, "carell's": 22513, 'caretaker,': 22514, 'carlo': 22515, 'carolina': 22516, 'carved': 22517, 'cashing': 22518, 'cat-and-mouse': 22519, 'cats,': 22520, 'caves': 22521, 'cavorting': 22522, 'cd.': 22523, 'cease': 22524, 'celtic': 22525, 'ceremonies': 22526, 'chagrin': 22527, 'challenging,': 22528, 'change.<br': 22529, 'chanting': 22530, 'characters!': 22531, 'charismatic,': 22532, 'chavo': 22533, 'check.<br': 22534, 'cheezy': 22535, 'chelsea': 22536, 'chemicals': 22537, 'chic': 22538, 'childishly': 22539, 'chile': 22540, 'chilean': 22541, 'chimps': 22542, 'chinatown': 22543, 'chinese,': 22544, 'choking': 22545, 'choreography.': 22546, 'chávez': 22547, 'clan,': 22548, 'clare': 22549, 'clarify': 22550, 'clause': 22551, 'clavier': 22552, 'cliché-ridden': 22553, 'clicked': 22554, 'climber': 22555, 'closely,': 22556, 'clothing.': 22557, 'co-starring': 22558, 'cobb': 22559, 'coccio': 22560, 'codes': 22561, 'collapsed': 22562, 'collectively': 22563, 'collins,': 22564, 'colorado': 22565, 'colours,': 22566, 'commissioner': 22567, 'commune': 22568, 'compare.': 22569, 'competent,': 22570, 'complaint,': 22571, 'complicated,': 22572, 'comprehension': 22573, 'comprises': 22574, 'conceptual': 22575, 'conclude,': 22576, 'confessed': 22577, 'confessions': 22578, 'connection,': 22579, 'conquered': 22580, 'consciously': 22581, 'consistent.': 22582, 'constitute': 22583, 'consumer': 22584, 'consumption.': 22585, 'conversations,': 22586, 'cool!': 22587, 'coolness': 22588, "cooper's": 22589, 'cops.': 22590, 'cosby': 22591, 'costumed': 22592, 'cotten': 22593, 'counterparts.': 22594, 'countries,': 22595, 'course!': 22596, 'coveted': 22597, 'cowgirls': 22598, 'coyote': 22599, 'crafting': 22600, 'creativity,': 22601, 'cried.': 22602, 'crudely': 22603, 'csi': 22604, 'cuddly': 22605, 'cult,': 22606, 'culture.<br': 22607, 'cunningham,': 22608, 'curb': 22609, 'curr': 22610, 'curry': 22611, 'curse.': 22612, 'cursory': 22613, 'curve': 22614, 'cynic': 22615, 'cynical,': 22616, 'd+': 22617, 'dads': 22618, 'damning': 22619, 'dan,': 22620, 'dancer.': 22621, 'dancers.': 22622, 'dances,': 22623, 'danes,': 22624, 'daring,': 22625, 'date.<br': 22626, 'daughter.<br': 22627, 'davidson': 22628, 'death?': 22629, 'debts': 22630, 'decision,': 22631, 'decisions,': 22632, 'declaring': 22633, 'defense,': 22634, 'degraded': 22635, 'delectable': 22636, 'delicately': 22637, 'denmark': 22638, 'depended': 22639, 'descendants': 22640, 'designers': 22641, 'despair.': 22642, 'detect': 22643, 'detracted': 22644, 'develop.': 22645, 'devil"': 22646, 'devise': 22647, 'devos': 22648, 'devote': 22649, 'dialogs.': 22650, 'dice': 22651, 'dick,': 22652, 'didn`t': 22653, 'dies.<br': 22654, 'differentiate': 22655, 'differently.': 22656, 'dil': 22657, 'diminished': 22658, 'diminutive': 22659, 'dimitri': 22660, 'dino': 22661, 'dinocroc': 22662, 'director:': 22663, 'director?': 22664, 'disappear,': 22665, 'disappeared,': 22666, 'disappointing.<br': 22667, 'dismisses': 22668, 'dispatches': 22669, 'distress.': 22670, 'ditzy': 22671, 'dizzy': 22672, 'doctors,': 22673, 'doe': 22674, 'dominating': 22675, "domino's": 22676, "donna's": 22677, 'doom.': 22678, 'douglas.': 22679, 'dour': 22680, 'dowdy': 22681, 'down"': 22682, 'downloading': 22683, 'drama?': 22684, 'dramatization': 22685, 'drawn.': 22686, 'drilling': 22687, 'dub,': 22688, 'dubbed.': 22689, 'dudes': 22690, 'due,': 22691, 'duke,': 22692, "duvall's": 22693, 'dv': 22694, 'dwarfs': 22695, 'earlier.<br': 22696, 'eastwood,': 22697, 'echoed': 22698, 'ecological': 22699, 'education,': 22700, 'efforts.<br': 22701, 'egos': 22702, 'either;': 22703, 'elaine': 22704, 'elimination': 22705, 'elitist': 22706, 'emma,': 22707, 'emotive': 22708, 'emphasizing': 22709, 'encountering': 22710, 'end;': 22711, 'endearingly': 22712, 'endless,': 22713, 'engaged.': 22714, 'enterprise,': 22715, 'entertainment!': 22716, 'equipped': 22717, 'erotic,': 22718, 'estate.': 22719, 'esteem': 22720, 'eternity.': 22721, 'evade': 22722, 'evan': 22723, 'event.<br': 22724, 'everlasting': 22725, 'evils': 22726, 'exception.<br': 22727, 'exchanged': 22728, 'exclamation': 22729, 'exile': 22730, 'existed,': 22731, 'exiting': 22732, 'expansive': 22733, 'expect?': 22734, 'experience!': 22735, 'explicit,': 22736, 'explored.': 22737, 'extracts': 22738, 'extraordinary,': 22739, 'extravaganza': 22740, 'eyebrow': 22741, 'fabulous,': 22742, 'fahey': 22743, 'faints': 22744, 'falk.': 22745, 'family"': 22746, 'far-fetched,': 22747, 'felt.': 22748, 'festivals.': 22749, 'fez': 22750, 'fiddle': 22751, 'fiercely': 22752, 'fifties.': 22753, 'fighter,': 22754, 'film).<br': 22755, 'film.)': 22756, 'filmography.': 22757, 'filtered': 22758, 'filth,': 22759, 'fingers,': 22760, 'first!': 22761, 'first-class': 22762, "fisher's": 22763, 'flailing': 22764, 'flair.': 22765, 'flaming': 22766, 'flashback.': 22767, 'fleischer': 22768, 'flemming': 22769, 'flippant': 22770, 'flipped': 22771, 'flowed': 22772, 'flying,': 22773, 'focused,': 22774, 'followed.': 22775, 'follows:': 22776, 'foo': 22777, 'footage.<br': 22778, 'forgivable.': 22779, 'format:': 22780, 'four)': 22781, 'four,': 22782, 'freshly': 22783, 'friend"': 22784, 'friends!': 22785, 'frigid': 22786, 'fry': 22787, 'full-blown': 22788, 'full-on': 22789, 'full.': 22790, 'funded': 22791, 'futility': 22792, 'gale': 22793, 'gall': 22794, 'gang"': 22795, 'gangsters.': 22796, 'garde': 22797, 'gas.': 22798, 'gaudy': 22799, 'gears': 22800, 'geer': 22801, 'generating': 22802, 'generic,': 22803, 'genocide': 22804, 'gentlemen,': 22805, 'germs': 22806, 'gibberish': 22807, 'girl!': 22808, 'girls.<br': 22809, 'glance,': 22810, 'glaringly': 22811, 'glove': 22812, 'gods,': 22813, 'goings-on': 22814, 'goldblum,': 22815, "good'": 22816, 'good:': 22817, 'goodness,': 22818, 'goods,': 22819, 'gordon.': 22820, 'gosha': 22821, 'governess': 22822, "government's": 22823, 'grade,': 22824, 'graduates': 22825, 'gratifying': 22826, 'gratuitous,': 22827, 'gratuitous.': 22828, 'graveyard.': 22829, 'gray,': 22830, 'greatest,': 22831, 'greece': 22832, 'griffiths': 22833, 'grim.': 22834, 'groin': 22835, 'grosse': 22836, 'grotesquely': 22837, 'ground.<br': 22838, 'groups.': 22839, 'growling': 22840, 'gruesomely': 22841, 'guessing,': 22842, 'guessing.': 22843, "guevara's": 22844, 'gung': 22845, 'gwynne': 22846, 'hai': 22847, 'hain': 22848, 'hairstyles': 22849, 'halls': 22850, 'hanna': 22851, 'happens.<br': 22852, 'hard.<br': 22853, 'hare': 22854, 'harmed': 22855, 'harrelson': 22856, 'harris)': 22857, 'hartnett': 22858, 'has.<br': 22859, 'hasselhoff': 22860, 'hasty': 22861, 'hated,': 22862, 'haters': 22863, 'hauser': 22864, 'havana': 22865, 'have)': 22866, 'hd': 22867, 'headmaster': 22868, 'health.': 22869, 'heaped': 22870, 'heflin': 22871, 'heighten': 22872, 'heightens': 22873, 'heights,': 22874, 'hell?': 22875, 'helps.': 22876, 'hepburn,': 22877, 'heroism': 22878, 'herschel': 22879, 'hickok': 22880, 'hijack': 22881, 'hijacked': 22882, 'hilarity.': 22883, 'hill"': 22884, 'hillbillies': 22885, 'hilt': 22886, 'hindsight,': 22887, 'hitchcockian': 22888, 'hogg': 22889, 'holmes,': 22890, 'homeland': 22891, 'homely': 22892, 'homes,': 22893, 'honed': 22894, 'hope.<br': 22895, 'hopeless,': 22896, 'hopping': 22897, 'horizon': 22898, 'horrid.': 22899, 'hostess': 22900, 'hound': 22901, 'hughes,': 22902, 'humility': 22903, 'hunt,': 22904, 'hunter"': 22905, 'hunts': 22906, 'hurricane': 22907, "hurt's": 22908, 'idiosyncratic': 22909, 'idiotic,': 22910, 'idiotic.': 22911, 'illinois': 22912, 'immaculate': 22913, 'immature,': 22914, 'impact"': 22915, 'implausible.': 22916, 'implore': 22917, 'impressing': 22918, 'improvise': 22919, 'impulse': 22920, 'in-your-face': 22921, 'incidentally': 22922, 'include:': 22923, 'incoherent.': 22924, 'incomprehensible,': 22925, 'inconvenient': 22926, 'incorrect.': 22927, 'incriminating': 22928, 'indians.': 22929, 'individuals.': 22930, 'inept,': 22931, 'inescapable': 22932, 'inexperience': 22933, 'infatuation': 22934, 'infused': 22935, 'inhabits': 22936, 'injuries': 22937, 'innovation': 22938, 'insecurities': 22939, 'inserts': 22940, 'inspired,': 22941, 'installments': 22942, 'instance)': 22943, 'instead!': 22944, 'institution,': 22945, 'insulting.': 22946, 'integrate': 22947, 'intellectual,': 22948, 'interests.#39;: 22949, 'interrupting': 22950, 'interrupts': 22951, 'introduced.': 22952, 'invade': 22953, 'inventiveness': 22954, 'iris': 22955, 'ironies': 22956, 'irritation': 22957, 'italian,': 22958, 'j.t.': 22959, 'jab': 22960, 'jack.': 22961, 'jagger,': 22962, 'jan-michael': 22963, 'jc': 22964, 'jean-luc': 22965, 'jean-marc': 22966, 'jorge': 22967, 'judith': 22968, 'juhi': 22969, 'junk,': 22970, 'k-9': 22971, 'kahn': 22972, 'kane"': 22973, 'katharine': 22974, "kaufman's": 22975, 'keener': 22976, 'kid.<br': 22977, 'kiki': 22978, "kipling's": 22979, 'kirk,': 22980, 'kiss.': 22981, 'kitchen.': 22982, 'knight,': 22983, 'know...': 22984, 'knowingly': 22985, 'kovacs': 22986, 'krabbé': 22987, 'krause': 22988, 'kristin': 22989, 'kryptonite': 22990, 'la,': 22991, 'labeouf': 22992, 'lacklustre': 22993, 'laid.': 22994, 'laughable.<br': 22995, 'lawless': 22996, 'leaves,': 22997, 'lectures': 22998, 'lee)': 22999, 'leisurely': 23000, 'lenny': 23001, "leonard's": 23002, 'letdown.': 23003, 'letters,': 23004, 'lian-chu': 23005, 'lifeless,': 23006, 'light.<br': 23007, 'lightness': 23008, "lil'": 23009, "lila's": 23010, 'limited.': 23011, 'limits.': 23012, 'liners,': 23013, 'lingered': 23014, 'list.<br': 23015, 'loaf': 23016, 'loathed': 23017, 'logical,': 23018, 'lol!': 23019, 'lolita': 23020, 'louder': 23021, 'louisiana': 23022, 'lousy.': 23023, 'loveable': 23024, 'loveless': 23025, 'lowell': 23026, 'lowly': 23027, 'loyalty.': 23028, 'luchino': 23029, 'lucifer': 23030, 'lugosi.': 23031, 'lukewarm': 23032, "lundgren's": 23033, 'lungs': 23034, 'lyman': 23035, "mabel's": 23036, 'machines,': 23037, 'machines.': 23038, 'mafia,': 23039, 'maggots': 23040, 'magnolia': 23041, 'maid,': 23042, 'maine': 23043, 'major,': 23044, 'maker,': 23045, 'maker.': 23046, 'malden,': 23047, 'mall,': 23048, 'man)': 23049, 'manchurian': 23050, 'manifested': 23051, 'manly': 23052, 'many)': 23053, 'many.<br': 23054, 'mar': 23055, 'marco': 23056, 'marcy': 23057, 'mare': 23058, 'marry.': 23059, 'marshall,': 23060, 'mary"': 23061, 'masculinity': 23062, 'maslin': 23063, 'masochistic': 23064, 'massacre.': 23065, 'master.': 23066, 'matter)': 23067, 'mavens': 23068, 'mean?': 23069, 'mechanism': 23070, 'meddling': 23071, 'melodies': 23072, 'memory.<br': 23073, "men'": 23074, 'mercedes': 23075, 'messiah': 23076, 'metaphorical': 23077, 'meth': 23078, 'mgm.': 23079, 'michell': 23080, 'migration': 23081, 'miguel': 23082, 'milieu': 23083, 'militant': 23084, 'mime': 23085, 'minuscule': 23086, 'minutes?': 23087, 'miraglia': 23088, 'miramax': 23089, 'mishmash': 23090, 'misrepresentation': 23091, 'missouri': 23092, 'misuse': 23093, 'mocked': 23094, 'mockumentary': 23095, 'mode,': 23096, 'model.': 23097, 'molested': 23098, 'months,': 23099, 'morality,': 23100, 'moran': 23101, 'mordrid': 23102, 'more)': 23103, 'mores': 23104, 'morons.': 23105, 'morphed': 23106, 'morvern': 23107, 'movie.)': 23108, 'movie....': 23109, 'movie?<br': 23110, 'mst3k,': 23111, 'much)': 23112, 'mulder': 23113, 'museum.': 23114, 'music:': 23115, 'nagging': 23116, 'nagra': 23117, 'nascar': 23118, 'naturalism': 23119, 'navy,': 23120, "nazi's": 23121, 'nazis.': 23122, 'neat,': 23123, "ned's": 23124, 'neighbour': 23125, 'neverending': 23126, 'new-age': 23127, 'newbie': 23128, 'newsreel': 23129, 'nickelodeon': 23130, 'nigel': 23131, 'nigh': 23132, 'night)': 23133, 'night?': 23134, 'nineties.': 23135, 'nixon': 23136, 'no.1': 23137, 'noirish': 23138, 'noise,': 23139, 'nolan,': 23140, 'nomination.': 23141, 'nominees': 23142, 'non-actors': 23143, 'noni': 23144, 'notre': 23145, 'notwithstanding,': 23146, 'nude,': 23147, 'nutshell': 23148, 'nypd': 23149, 'o-lan': 23150, 'obey': 23151, 'oblivion.': 23152, 'obnoxiously': 23153, 'obvious.<br': 23154, 'occurred,': 23155, 'offbeat,': 23156, 'offs': 23157, 'often.<br': 23158, 'oh!': 23159, 'oklahoma': 23160, 'olga': 23161, 'one-dimensional,': 23162, 'one-dimensional.': 23163, 'one-time': 23164, 'only)': 23165, 'operation.': 23166, 'opinions.': 23167, 'opting': 23168, 'orked': 23169, 'orthodox': 23170, 'othello,': 23171, 'otherworldly': 23172, 'otis': 23173, 'ourselves,': 23174, 'outburst': 23175, 'outdated,': 23176, 'outdo': 23177, 'outrageous,': 23178, 'outstanding!': 23179, 'over-sized': 23180, 'overacting.': 23181, 'overdoes': 23182, 'owners,': 23183, 'pacifist': 23184, 'pained': 23185, 'pairs': 23186, 'pal,': 23187, 'panache': 23188, 'paper-thin': 23189, 'pappy': 23190, 'partners,': 23191, 'patekar': 23192, 'paved': 23193, 'paxinou': 23194, 'peasants': 23195, "peck's": 23196, 'perfectly.<br': 23197, 'performer.': 23198, 'peril.': 23199, 'permit': 23200, 'personally.': 23201, "pervert's": 23202, 'phoned': 23203, 'phoning': 23204, 'phrase,': 23205, 'pianist': 23206, 'pic': 23207, 'pillow': 23208, 'pintilie': 23209, 'pitch"': 23210, 'pitch,': 23211, 'pitt)': 23212, 'pittsburgh': 23213, 'place:': 23214, 'plates': 23215, 'plausible,': 23216, 'plausible.': 23217, 'playfully': 23218, 'plea': 23219, 'pleas': 23220, 'plentiful': 23221, 'plot)': 23222, 'plotting,': 23223, 'pole.': 23224, 'policeman,': 23225, 'politician,': 23226, 'pollution': 23227, 'porsche': 23228, "posey's": 23229, 'posturing': 23230, 'potty': 23231, 'poverty.': 23232, 'powerful.<br': 23233, 'pr': 23234, 'prairie': 23235, 'praise,': 23236, 'prashant': 23237, 'pre-war': 23238, 'preached': 23239, 'precedes': 23240, 'predators': 23241, 'predecessors,': 23242, 'predominantly': 23243, 'preferring': 23244, 'prejudiced': 23245, 'premise:': 23246, 'preposterous.': 23247, 'preservation': 23248, 'prevailing': 23249, 'previously.': 23250, "price's": 23251, 'prices': 23252, 'prince.': 23253, 'princess.': 23254, 'principal,': 23255, 'privy': 23256, 'probing': 23257, 'proclaim': 23258, "producer's": 23259, 'profane': 23260, 'programmed': 23261, 'programs.': 23262, 'progress.': 23263, 'project.<br': 23264, 'projecting': 23265, 'prospective': 23266, 'prostitute,': 23267, 'proven': 23268, 'province': 23269, 'provoked': 23270, 'pseudonym': 23271, 'pumpkin': 23272, 'punch,': 23273, 'punishing': 23274, 'punishment.': 23275, 'purchase.': 23276, 'pyun': 23277, 'qualms': 23278, 'que': 23279, "queen's": 23280, 'queer': 23281, 'question.<br': 23282, 'quickie': 23283, 'quickly.<br': 23284, 'quinn,': 23285, 'racist.': 23286, 'radium': 23287, 'railly': 23288, 'raines,': 23289, 'rajinikanth': 23290, 'rampage,': 23291, 'range,': 23292, 'rani': 23293, 'rapid-fire': 23294, 'rare,': 23295, 'ratio:': 23296, 'raucous': 23297, 'ravenous': 23298, 're-edited': 23299, 'react.': 23300, 'reacted': 23301, 'readings': 23302, 'realized,': 23303, 'realized.': 23304, 'reaper': 23305, 'reclaim': 23306, 'reclusive': 23307, 'recollection': 23308, 'recruiting': 23309, 'red.': 23310, 'reduces': 23311, "reed's": 23312, 'refugees': 23313, 'regular,': 23314, 'relatable': 23315, 'relatives.': 23316, 'reliving': 23317, 'remains,': 23318, 'renamed': 23319, 'rental,': 23320, 'repeatedly,': 23321, 'republicans': 23322, 'resnais': 23323, 'responsibilities': 23324, 'rest.<br': 23325, 'restrained,': 23326, 'reviving': 23327, 'rhode': 23328, 'richness': 23329, 'rife': 23330, 'rio': 23331, 'riots': 23332, 'ripper': 23333, 'risen': 23334, "ritchie's": 23335, "ritter's": 23336, 'rituals': 23337, 'rocks!': 23338, 'rolle': 23339, 'romanticism': 23340, 'roof,': 23341, 'rooms.': 23342, 'rose.': 23343, 'rotj': 23344, 'rounding': 23345, 'row.': 23346, "roy's": 23347, 'royalty': 23348, 'rubs': 23349, 'run"': 23350, 'russel': 23351, 'sade': 23352, 'safari': 23353, 'saget': 23354, 'salad': 23355, "sam's": 23356, 'sanity.': 23357, 'santa,': 23358, 'satan,': 23359, 'sax': 23360, 'saying:': 23361, 'scales': 23362, 'scandalous': 23363, 'scandinavian': 23364, 'scarecrow,': 23365, 'scenes).': 23366, 'schlesinger': 23367, 'schlocky': 23368, 'school"': 23369, 'sci-fi.': 23370, 'scientist.': 23371, "scorpion's": 23372, 'scotland.': 23373, 'scratched': 23374, 'screen?': 23375, 'screens.': 23376, 'scum': 23377, 'se,': 23378, 'seaman': 23379, 'seberg': 23380, "seberg's": 23381, 'seen...': 23382, 'segues': 23383, 'seidl': 23384, 'selecting': 23385, 'self-consciously': 23386, 'self-esteem': 23387, 'self-proclaimed': 23388, 'self-respecting': 23389, 'senses,': 23390, 'sensuous': 23391, 'sentimentality.': 23392, 'series;': 23393, 'serling': 23394, 'set-up,': 23395, 'sexes': 23396, 'sexiest': 23397, 'sexism': 23398, 'shadowed': 23399, 'shaky,': 23400, 'shallowness': 23401, 'sharif': 23402, 'shark.': 23403, 'shekhar': 23404, 'shemp': 23405, 'shen': 23406, 'sheriff,': 23407, 'shivers': 23408, 'shoot,': 23409, 'shoves': 23410, 'show),': 23411, 'shower,': 23412, 'showing.': 23413, 'shrouded': 23414, 'shuts': 23415, 'sides.': 23416, 'sign.': 23417, 'silhouette': 23418, 'simplicity,': 23419, 'sings,': 23420, 'sinister,': 23421, 'sizzling': 23422, 'skagway': 23423, 'skeletons': 23424, 'ski': 23425, 'skirt': 23426, 'slack': 23427, 'slacker': 23428, 'slapstick.': 23429, 'slasher.': 23430, 'slaughterhouse': 23431, 'sledge': 23432, 'slices': 23433, 'slicing': 23434, 'slimy,': 23435, 'smartly': 23436, "snail's": 23437, 'snake,': 23438, 'snapshot': 23439, 'sneaky': 23440, 'snippet': 23441, 'so).': 23442, 'so-so.': 23443, 'soften': 23444, 'son.<br': 23445, 'sons.': 23446, 'sorcerer': 23447, 'soup,': 23448, 'spacecraft': 23449, 'sparked': 23450, 'spawn': 23451, 'speakeasy': 23452, 'special-effects': 23453, 'spent.': 23454, 'spew': 23455, 'spielberg,': 23456, 'sporadic': 23457, 'spree,': 23458, 'squeezing': 23459, 'squirm': 23460, 'stance,': 23461, 'stars!': 23462, 'statistics': 23463, 'steep': 23464, 'steiner': 23465, "steiner's": 23466, 'stem': 23467, 'stereotype,': 23468, 'stereotype.': 23469, 'stereotypical.': 23470, "steve's": 23471, 'stevens,': 23472, 'stifling': 23473, 'stiller,': 23474, 'sting': 23475, 'stinkers': 23476, 'stomping': 23477, 'stops.': 23478, 'straight-to-dvd': 23479, 'strand': 23480, 'strangelove': 23481, 'strangeness': 23482, 'streetwise': 23483, 'strengths.': 23484, 'strides': 23485, 'struggle.': 23486, 'stunk.': 23487, 'styled': 23488, 'stylishly': 23489, 'subject.<br': 23490, 'subjects,': 23491, 'substituted': 23492, 'suburbia': 23493, 'succumb': 23494, 'such.<br': 23495, 'sudden,': 23496, 'sun.': 23497, 'superficially': 23498, 'superhuman': 23499, 'superpowers': 23500, 'supremacy': 23501, 'surprise.<br': 23502, "susan's": 23503, 'suzy': 23504, 'sweating': 23505, 'sweetest': 23506, 'sword.': 23507, 'sydow': 23508, 'sympathy,': 23509, 'syndrome.': 23510, 'synopsis.<br': 23511, 'synthesizer': 23512, 't-shirt': 23513, 'taboos': 23514, 'taller': 23515, 'talos': 23516, 'taping': 23517, 'tarot': 23518, 'tasteless.': 23519, 'taunts': 23520, 'taut,': 23521, 'tavern': 23522, 'tearjerker': 23523, 'technique.': 23524, 'techniques.': 23525, 'tediously': 23526, 'temporal': 23527, 'tenant"': 23528, 'terrifyingly': 23529, 'thanksgiving': 23530, 'that?<br': 23531, 'theme.<br': 23532, 'theories,': 23533, 'theron': 23534, 'think?': 23535, 'third.': 23536, 'thirdly,': 23537, 'this"': 23538, 'this<br': 23539, 'this?<br': 23540, 'thompson,': 23541, 'though).': 23542, 'thought-provoking,': 23543, 'thoughtfully': 23544, "three's": 23545, 'three-way': 23546, 'thrillers.': 23547, 'thy': 23548, 'tiniest': 23549, 'tmnt': 23550, 'to...': 23551, 'toast': 23552, 'tongue,': 23553, 'too;': 23554, 'torrance': 23555, 'tos': 23556, 'tough.': 23557, 'tour-de-force': 23558, 'towering': 23559, 'towers.': 23560, 'toys,': 23561, 'toys.': 23562, 'traci': 23563, 'trailers.': 23564, 'transformers': 23565, 'trashy,': 23566, "trek's": 23567, 'trek.': 23568, 'tremendously.': 23569, 'trends': 23570, 'tribe,': 23571, 'tricks,': 23572, 'tricks.': 23573, 'trimmed': 23574, 'triumph.': 23575, 'triumphant': 23576, 'trojan': 23577, 'truffaut': 23578, 'trust,': 23579, 'truthful,': 23580, 'tube.': 23581, 'tumultuous': 23582, 'tunes.': 23583, 'turtles': 23584, 'twenties': 23585, 'twins,': 23586, 'u.k.': 23587, 'ugh!': 23588, 'ugliest': 23589, 'ulterior': 23590, 'uncharted': 23591, 'uncovered': 23592, 'underestimated': 23593, 'underground,': 23594, 'underneath.': 23595, 'underrated,': 23596, 'understand.<br': 23597, 'understood.': 23598, 'underwhelming': 23599, 'unease': 23600, 'unemployment': 23601, 'unfolded': 23602, 'unger': 23603, 'unholy': 23604, 'unit.': 23605, 'unite': 23606, 'university,': 23607, 'unleashes': 23608, 'unspeakable': 23609, 'unsubtle': 23610, 'unsuitable': 23611, 'untold': 23612, 'upset.': 23613, 'urging': 23614, 'urmila': 23615, 'ussr': 23616, 'usual)': 23617, 'vacuum': 23618, 'vader,': 23619, 'valentino': 23620, 'vamp': 23621, 'veins': 23622, 'ventura': 23623, 'verse': 23624, 'vicar': 23625, 'victimized': 23626, 'vierde': 23627, 'viewings,': 23628, 'viewpoint,': 23629, 'violated': 23630, 'violet': 23631, 'virtuous': 23632, 'vitality': 23633, 'vomit.': 23634, 'wage': 23635, 'wahlberg': 23636, 'walrus': 23637, 'walston': 23638, 'wan': 23639, 'warden,': 23640, 'wards': 23641, 'warms': 23642, 'waterman': 23643, 'watson,': 23644, 'waves.': 23645, 'wayne.': 23646, 'weaknesses.': 23647, 'webster': 23648, 'weddings': 23649, 'weir': 23650, 'welcomes': 23651, 'welfare': 23652, 'well-done.': 23653, 'well-worn': 23654, 'wellington,': 23655, "wendy's": 23656, 'were.<br': 23657, 'where.': 23658, 'whereby': 23659, 'whim': 23660, 'whipped': 23661, 'whirlwind': 23662, 'whistling': 23663, 'wholeheartedly': 23664, 'whoville': 23665, 'wife;': 23666, 'wikipedia': 23667, 'wilde': 23668, "will's": 23669, 'will.<br': 23670, 'williamson': 23671, "wilson's": 23672, 'wilson)': 23673, 'wine,': 23674, 'winfield': 23675, 'winters,': 23676, 'wishes.': 23677, 'witness,': 23678, 'witness.': 23679, 'woman)': 23680, 'won.': 23681, 'workout': 23682, 'world!': 23683, 'worlds.': 23684, 'worse)': 23685, 'writhing': 23686, 'written.<br': 23687, 'wtf': 23688, 'x-rated': 23689, 'yada': 23690, 'yaphet': 23691, 'yards': 23692, 'yea': 23693, 'yorker': 23694, 'you!"': 23695, 'you!<br': 23696, 'younger.': 23697, 'yourself!': 23698, 'yukon': 23699, 'yuma': 23700, 'zentropa': 23701, 'ziyi': 23702, 'zombies.<br': 23703, '"alive"': 23704, '"chick': 23705, '"cube"': 23706, '"deathtrap"': 23707, '"deliverance"': 23708, '"did': 23709, '"double': 23710, '"finding': 23711, '"fire': 23712, '"forbidden': 23713, '"gentleman': 23714, '"getting': 23715, '"halloween"': 23716, '"hot"': 23717, '"lets': 23718, '"little"': 23719, '"movie': 23720, '"nothing"': 23721, '"o': 23722, '"pecker"': 23723, '"pickup': 23724, '"pretty': 23725, '"some': 23726, '"space': 23727, '"st.': 23728, '"still': 23729, '"superman': 23730, '"true': 23731, '"walking': 23732, '"zombie': 23733, '$$': 23734, '$100': 23735, "'": 23736, "'70s,": 23737, "'all": 23738, "'get": 23739, "'midnight": 23740, "'one": 23741, "'til": 23742, "'zombie": 23743, '(2': 23744, '(2007)': 23745, '(3)': 23746, '(according': 23747, '(actually,': 23748, '(again)': 23749, '(ala': 23750, '(anna': 23751, '(billy': 23752, '(brad': 23753, '(dean': 23754, '(dorothy': 23755, '(either': 23756, '(eric': 23757, '(get': 23758, '(harry': 23759, '(henry': 23760, '(hugh': 23761, "(i'd": 23762, '(jamie': 23763, '(julia': 23764, '(michelle': 23765, '(none': 23766, '(once': 23767, '(playing': 23768, '(plus': 23769, '(steven': 23770, '(susan': 23771, '(their': 23772, '(written': 23773, ',but': 23774, '...the': 23775, '/>"i': 23776, '/>10.': 23777, '/>amitabh': 23778, '/>among': 23779, '/>andy': 23780, '/>christopher': 23781, '/>considering': 23782, '/>daniel': 23783, '/>eric': 23784, '/>filmed': 23785, '/>following': 23786, '/>furthermore,': 23787, '/>gary': 23788, '/>going': 23789, "/>he's": 23790, '/>hollywood': 23791, '/>nobody': 23792, '/>recommended': 23793, '/>rob': 23794, '/>something': 23795, '/>stay': 23796, '/>stephen': 23797, '/>steve': 23798, '/>story:': 23799, '/>truly': 23800, '/>ultimately': 23801, '/>visually': 23802, '1.<br': 23803, '10/10,': 23804, '105': 23805, '110': 23806, '12.': 23807, '13th"': 23808, '1936,': 23809, '1947': 23810, '1954': 23811, '1968,': 23812, '1969.': 23813, '1970.': 23814, '1973.': 23815, '1975,': 23816, '1979,': 23817, '1979.': 23818, '1987,': 23819, '2",': 23820, '2-3': 23821, '2.5': 23822, '2001:': 23823, '20s': 23824, '47': 23825, "50's,": 23826, '50s,': 23827, "60's.": 23828, '74': 23829, '9"': 23830, '90-minute': 23831, '90s,': 23832, '@': 23833, 'a+': 23834, 'a.m.': 23835, 'about...': 23836, 'above.<br': 23837, 'abrupt,': 23838, 'abysmally': 23839, 'academy.': 23840, 'accommodate': 23841, 'account.': 23842, 'accountant': 23843, 'accuracy,': 23844, 'accuracy.': 23845, 'acquit': 23846, 'action!': 23847, 'activists': 23848, 'actor!': 23849, 'actor;': 23850, 'actress)': 23851, 'actuality,': 23852, 'addiction.': 23853, 'adoring': 23854, 'adverse': 23855, 'adversity': 23856, 'advertising.': 23857, 'affair.<br': 23858, 'afterlife': 23859, 'aftermath.': 23860, 'aghast': 23861, 'ai': 23862, 'aidan': 23863, 'aired.': 23864, 'airs': 23865, "alan's": 23866, 'alcohol,': 23867, 'alibi': 23868, 'alienating': 23869, 'alone"': 23870, 'ambulance': 23871, 'amin': 23872, 'amusement,': 23873, 'amuses': 23874, 'amusing.<br': 23875, 'anand': 23876, 'animosity': 23877, 'anne,': 23878, 'announcer': 23879, 'anthropologist': 23880, 'anti-american': 23881, 'ants.': 23882, 'any)': 23883, 'anyway!': 23884, 'anywhere.<br': 23885, 'apartment.<br': 23886, 'apollonia': 23887, 'apologise': 23888, 'apologizing': 23889, 'appearances.': 23890, 'applegate': 23891, 'appropriately,': 23892, 'argentine': 23893, 'argentinian': 23894, 'arguing,': 23895, 'arouse': 23896, 'arrival,': 23897, 'ascertain': 23898, 'asia,': 23899, 'asia.': 23900, 'assertion': 23901, 'assistants': 23902, 'assume,': 23903, 'atlanta': 23904, 'attach': 23905, 'attempts.': 23906, 'attendance': 23907, 'attitudes,': 23908, 'attracting': 23909, 'atul': 23910, 'audience;': 23911, 'aunt,': 23912, 'aural': 23913, 'austere': 23914, 'australians': 23915, 'authority,': 23916, 'automobile': 23917, 'away"': 23918, 'away?': 23919, 'awed': 23920, 'awesome.<br': 23921, 'axis': 23922, 'aykroyd': 23923, 'babbage': 23924, 'backdrop,': 23925, 'backdrop.': 23926, 'background.<br': 23927, 'backlash': 23928, 'bad-guy': 23929, 'baggage': 23930, 'baker.': 23931, 'ballet,': 23932, 'banished': 23933, 'baptist': 23934, 'barclay': 23935, 'barely.': 23936, 'barjatya': 23937, 'base.': 23938, 'baseball,': 23939, 'baseball.': 23940, 'based.': 23941, 'bat.': 23942, 'batch': 23943, 'bath.': 23944, 'be)': 23945, 'beaches': 23946, 'beam': 23947, 'beatty,': 23948, 'beckett': 23949, 'beckham"': 23950, 'bedtime': 23951, 'behind"': 23952, 'beleaguered': 23953, 'beliefs.': 23954, 'belts': 23955, "bergman's": 23956, 'beset': 23957, 'bestiality': 23958, 'betraying': 23959, 'bigger.': 23960, 'biographies': 23961, 'bitching': 23962, 'blackmailing': 23963, 'blair,': 23964, 'blank,': 23965, 'blind.': 23966, 'blob.': 23967, 'blondes': 23968, 'bloom,': 23969, 'boats': 23970, "bob's": 23971, 'bog': 23972, 'boil': 23973, 'bolivia,': 23974, 'bolts': 23975, 'bombers': 23976, 'bone,': 23977, 'bone.': 23978, 'boomers': 23979, 'boop': 23980, 'bosworth': 23981, 'bottle.': 23982, "bourne's": 23983, 'boxed': 23984, 'braindead': 23985, 'bravo!': 23986, 'break!': 23987, 'breaks.': 23988, 'breathes': 23989, 'bridge,': 23990, 'brolin': 23991, 'brother.<br': 23992, 'bubbly': 23993, 'buck.': 23994, 'buggy': 23995, 'bullshit': 23996, 'bums': 23997, 'burdened': 23998, 'burgade': 23999, 'buries': 24000, 'burman': 24001, 'burns.': 24002, 'busty': 24003, 'buy,': 24004, "c'mon": 24005, 'cabin.': 24006, "cagney's": 24007, 'caine.': 24008, 'calf': 24009, 'camerawork': 24010, 'camille': 24011, 'candid': 24012, 'canyon.': 24013, 'capability': 24014, 'card,': 24015, 'care?': 24016, 'carell,': 24017, 'caricature.': 24018, 'caring.': 24019, 'carmen,': 24020, 'carnosaur': 24021, 'caron,': 24022, 'carriage': 24023, 'cartoony': 24024, 'carving': 24025, 'casanova': 24026, 'cashier': 24027, 'categories': 24028, 'categories.': 24029, 'categorize': 24030, 'categorized': 24031, 'catered': 24032, 'catering': 24033, 'celebi': 24034, 'celebrity.': 24035, "celeste's": 24036, 'cellar': 24037, 'cemetery.': 24038, 'censor': 24039, 'centred': 24040, 'ceo': 24041, 'certificate': 24042, 'chaos,': 24043, 'characterizations,': 24044, 'charlize': 24045, 'chastity': 24046, 'chatter': 24047, 'chauffeur': 24048, 'che,': 24049, 'cheapo': 24050, 'cheating.': 24051, 'checkout': 24052, 'cherie': 24053, 'chest.': 24054, 'chiefly': 24055, 'children?': 24056, 'chills,': 24057, 'chopra': 24058, 'chris,': 24059, 'christianity,': 24060, 'chronicle': 24061, "chuck's": 24062, 'chuckle.': 24063, "church's": 24064, 'churning': 24065, 'cia,': 24066, 'cited': 24067, 'clap': 24068, 'claptrap': 24069, 'cleans': 24070, 'cleanse': 24071, 'clear.<br': 24072, 'cleavage': 24073, 'cleo': 24074, 'clerks,': 24075, 'clients': 24076, 'closing,': 24077, 'clown.': 24078, 'co-produced': 24079, "cody's": 24080, 'coffy': 24081, 'coincidentally': 24082, 'coldly': 24083, 'collaborated': 24084, 'collaborator': 24085, 'collaborators': 24086, 'collectors': 24087, 'comedienne': 24088, 'comforts': 24089, 'comment:': 24090, 'communications': 24091, 'companionship': 24092, 'comparative': 24093, 'competitors': 24094, 'compiled': 24095, 'completes': 24096, 'completists': 24097, 'complicating': 24098, 'compliment.': 24099, 'composer,': 24100, 'compressed': 24101, 'concealed': 24102, 'conditioned': 24103, 'conducts': 24104, 'conflicts,': 24105, 'connection.': 24106, 'connors': 24107, 'consideration,': 24108, 'consistent,': 24109, 'conspicuous': 24110, 'conspiracy.': 24111, 'constantly.': 24112, 'constitution': 24113, 'constructed,': 24114, 'consultant': 24115, 'contest.': 24116, 'continues,': 24117, 'contradictory': 24118, 'controversial.': 24119, 'convention,': 24120, 'convention.': 24121, 'cooperate': 24122, "corbett's": 24123, 'cord': 24124, 'cornball': 24125, 'cornered': 24126, 'corrupt,': 24127, 'cosmo': 24128, 'costar': 24129, 'courts': 24130, 'covert': 24131, 'coz': 24132, 'craftsmanship': 24133, 'craig,': 24134, 'crawford,': 24135, 'crawled': 24136, 'crawls': 24137, 'creaky': 24138, 'create.': 24139, 'creepier': 24140, 'crimes,': 24141, 'cripple': 24142, 'criticism,': 24143, 'crossbow': 24144, 'cruel.': 24145, 'cruelly': 24146, "cruise's": 24147, 'crusade': 24148, 'cube.': 24149, "cuckoo's": 24150, 'cukor': 24151, 'cultured': 24152, 'curio': 24153, 'curl': 24154, "cushing's": 24155, 'cuss': 24156, 'custer': 24157, 'custom': 24158, 'cuter': 24159, 'cutesy': 24160, 'd&d': 24161, 'd-': 24162, 'd.c.': 24163, 'dalai': 24164, "dalton's": 24165, 'damage.': 24166, "damme's": 24167, 'danni': 24168, 'dawn,': 24169, 'dawns': 24170, 'dead:': 24171, 'deadbeat': 24172, 'deathly': 24173, 'deceive': 24174, 'declined': 24175, 'declining': 24176, 'def': 24177, 'defiant': 24178, 'delpy': 24179, 'demonicus': 24180, 'denial,': 24181, 'dentist,': 24182, 'dentist.': 24183, 'depressed.': 24184, 'depth.<br': 24185, 'derivative,': 24186, 'descend': 24187, 'deserves,': 24188, 'desires.': 24189, 'destruction,': 24190, 'determines': 24191, 'develop,': 24192, 'devices,': 24193, 'devito': 24194, 'devour': 24195, 'devoured': 24196, 'diagnosis': 24197, 'dictates': 24198, "did'nt": 24199, 'diggers': 24200, 'dimensional.': 24201, 'dinosaurs,': 24202, 'directer': 24203, "directors'": 24204, 'directs,': 24205, 'disappeared.': 24206, 'disappoint,': 24207, 'disappoints.': 24208, 'disapproving': 24209, 'discerning': 24210, 'diseases': 24211, 'disillusionment': 24212, 'dispatched': 24213, 'displaced': 24214, 'display.': 24215, 'dissatisfied': 24216, 'dissect': 24217, 'distance.': 24218, 'distress,': 24219, 'distrust': 24220, 'ditches': 24221, 'do"': 24222, "doc's": 24223, 'documentaries.': 24224, 'documenting': 24225, 'dodging': 24226, 'dogs.': 24227, 'doll.': 24228, 'dome': 24229, 'domination': 24230, 'dominican': 24231, 'dominique': 24232, 'donated': 24233, 'donkey': 24234, 'douglas)': 24235, 'downtrodden': 24236, 'dozed': 24237, 'dp': 24238, 'drake)': 24239, 'dramatics': 24240, 'drew,': 24241, 'dreyfus': 24242, 'drop-dead': 24243, 'drought': 24244, 'drying': 24245, 'ducks': 24246, "duke's": 24247, 'dumbland': 24248, 'dungeon': 24249, 'ears,': 24250, 'easier.': 24251, 'east,': 24252, "ebert's": 24253, 'edge.<br': 24254, 'editing.<br': 24255, 'edition,': 24256, 'effected': 24257, 'efficiency': 24258, 'egon': 24259, 'eligible': 24260, 'else:': 24261, 'elton': 24262, 'embassy': 24263, 'empathise': 24264, 'encounters,': 24265, 'ending"': 24266, 'enemies,': 24267, 'enemies.': 24268, 'enslaved': 24269, 'entertainers': 24270, 'entirety.': 24271, 'entry.': 24272, 'envisioned': 24273, 'eod': 24274, 'equation': 24275, 'erich': 24276, 'esteemed': 24277, 'estelle': 24278, 'ettore': 24279, 'evaluation': 24280, 'ever-present': 24281, 'ever?': 24282, 'exaggerate': 24283, 'exaggerating': 24284, 'examining': 24285, 'exceed': 24286, 'excess.': 24287, 'exchanging': 24288, 'excitement.<br': 24289, 'excuse.': 24290, 'exec': 24291, 'execrable': 24292, 'exhibiting': 24293, 'exhibition': 24294, 'exist.<br': 24295, 'explosions.': 24296, 'explosives': 24297, 'exposure,': 24298, 'expressionistic': 24299, 'exterior,': 24300, 'eyre,': 24301, 'eytan': 24302, 'f***': 24303, 'fabulous.': 24304, 'face)': 24305, 'fairy-tale': 24306, 'falters': 24307, 'familiar?': 24308, 'fared': 24309, "fassbinder's": 24310, 'favors': 24311, 'fecal': 24312, 'feel.<br': 24313, 'feelgood': 24314, 'fessenden': 24315, 'fever"': 24316, 'fiancé,': 24317, 'fidelity': 24318, 'figment': 24319, 'figures.': 24320, 'filing': 24321, 'filipino': 24322, 'film!!': 24323, 'film".': 24324, 'films"': 24325, 'finlayson': 24326, 'fireplace': 24327, 'firode': 24328, 'flashlight': 24329, 'flashman': 24330, 'flawed.': 24331, 'flight,': 24332, 'floored': 24333, 'flounder': 24334, 'flown': 24335, 'flu': 24336, 'fluff,': 24337, 'flung': 24338, 'fly.': 24339, 'focal': 24340, 'followed,': 24341, 'follows.': 24342, 'forcibly': 24343, 'forests': 24344, 'formation': 24345, 'forms,': 24346, 'formulated': 24347, 'forties,': 24348, 'forwarded': 24349, 'founding': 24350, 'foxes': 24351, 'foxy': 24352, 'fraternity': 24353, 'fred,': 24354, 'free-spirited': 24355, 'freeway': 24356, 'frolic': 24357, 'fuels': 24358, 'fun-loving': 24359, 'funnier,': 24360, 'funnily': 24361, 'fuqua': 24362, 'furious,': 24363, 'furniture,': 24364, 'fx.': 24365, "gadget's": 24366, 'gag.': 24367, 'galore,': 24368, 'gamble': 24369, 'gandhi,': 24370, 'gangs,': 24371, 'gangster.': 24372, 'gardner,': 24373, 'garofalo': 24374, 'garrett': 24375, 'gateway': 24376, 'gator': 24377, 'gauge': 24378, 'gender.': 24379, 'general.<br': 24380, 'genius.<br': 24381, 'george.': 24382, 'get?': 24383, 'giallo.': 24384, 'giamatti': 24385, 'gift.': 24386, 'gimme': 24387, 'gimmicky': 24388, 'giovanni': 24389, 'girl;': 24390, 'girl?': 24391, 'girlfriend.<br': 24392, 'glitz': 24393, 'go?': 24394, "goa'uld": 24395, 'goals.': 24396, "godard's": 24397, 'goer': 24398, 'good.the': 24399, 'goodman,': 24400, 'goodnight': 24401, 'gorgeously': 24402, 'grace"': 24403, 'grad': 24404, 'grail': 24405, "gram's": 24406, 'grams': 24407, 'grandfather.': 24408, 'grasp.': 24409, 'grave"': 24410, 'gravitas': 24411, 'greenhouse': 24412, 'grief.': 24413, 'grier': 24414, 'grieve': 24415, 'growth,': 24416, 'gujarati': 24417, 'gutsy': 24418, 'guzman': 24419, 'hairs': 24420, 'hairstyle': 24421, 'hallucination': 24422, 'hamburg': 24423, 'hamiltons': 24424, 'hamlet.': 24425, 'hammer,': 24426, 'hannah,': 24427, 'happiness.<br': 24428, 'hard-edged': 24429, 'harm.': 24430, 'harried': 24431, "harris'": 24432, 'harry.': 24433, 'harshness': 24434, 'hayao': 24435, 'he.': 24436, 'heady': 24437, 'healy': 24438, 'heero': 24439, 'heights.': 24440, 'helga': 24441, 'helicopter.': 24442, 'hell"': 24443, 'hellish': 24444, 'helmer': 24445, 'helper': 24446, 'henri': 24447, 'henry,': 24448, "hepburn's": 24449, 'her).': 24450, 'herring': 24451, 'hers,': 24452, 'herzog': 24453, 'hewlett': 24454, 'hideo': 24455, 'hideous,': 24456, 'higher,': 24457, 'highlights.': 24458, 'hijinks': 24459, 'hilda': 24460, 'hills,': 24461, 'hillyer': 24462, 'hindsight': 24463, 'hirsch': 24464, 'history;': 24465, 'hitokiri': 24466, 'hits,': 24467, 'hmm,': 24468, 'holodeck': 24469, 'homer,': 24470, 'homoerotic': 24471, 'hooligans': 24472, 'hopeless.': 24473, 'horrendous,': 24474, 'hospitals': 24475, 'hostages': 24476, 'hostility': 24477, "hotel's": 24478, 'hours.<br': 24479, "house's": 24480, 'housekeeper': 24481, "hudson's": 24482, "humanity's": 24483, 'humanoid': 24484, 'husband.<br': 24485, 'hustle': 24486, "huston's": 24487, 'hypocritical': 24488, 'idiosyncrasies': 24489, 'idiotically': 24490, 'ignored.': 24491, 'ilk': 24492, 'ill-advised': 24493, 'illegitimate': 24494, 'illogical.': 24495, 'illuminate': 24496, 'illustrating': 24497, 'imaginatively': 24498, 'imagine.<br': 24499, 'imbued': 24500, 'imdb.<br': 24501, 'imperfect': 24502, 'implanted': 24503, 'implausibility': 24504, 'implausible,': 24505, 'implements': 24506, 'impossibility': 24507, 'impressionistic': 24508, 'impressive.<br': 24509, 'improvement.': 24510, 'in-between': 24511, 'in-laws': 24512, 'incarnations': 24513, 'incest,': 24514, 'indeed!': 24515, "individual's": 24516, 'individually': 24517, 'indulges': 24518, 'ineptness': 24519, 'inevitable.': 24520, 'infernal': 24521, 'inflated': 24522, 'informative.': 24523, 'inhabitants,': 24524, 'inhumanity': 24525, 'input': 24526, 'insightful,': 24527, 'insights,': 24528, 'insomnia,': 24529, 'insomnia.': 24530, 'insomniac': 24531, 'inspiration,': 24532, 'instalment': 24533, 'instantly.': 24534, 'intact,': 24535, 'integrity,': 24536, 'intensive': 24537, 'interests,': 24538, 'interfere': 24539, 'interpretation,': 24540, 'interracial': 24541, 'interrupt': 24542, 'intertwine': 24543, 'intertwining': 24544, 'intrinsically': 24545, 'introduction.': 24546, 'invaluable': 24547, 'investigate.': 24548, 'investigated': 24549, 'investigations': 24550, 'irresistible.': 24551, 'isaac': 24552, 'ishwar': 24553, 'islamic': 24554, 'isnt': 24555, 'israel,': 24556, 'israel.': 24557, 'it!)': 24558, 'it?)': 24559, 'ive': 24560, 'izo': 24561, 'jacket,': 24562, 'jacknife': 24563, 'jacqueline': 24564, "james's": 24565, 'janeway': 24566, 'jars': 24567, 'jazzy': 24568, 'jealous,': 24569, "jennifer's": 24570, 'jeopardy': 24571, 'jerry,': 24572, "joey's": 24573, 'john.': 24574, 'johnny,': 24575, 'johnson.': 24576, 'joss': 24577, 'ju-on': 24578, 'judas': 24579, 'jumble': 24580, 'jumbo': 24581, 'just...': 24582, 'kalifornia': 24583, 'karas': 24584, 'karloff,': 24585, 'keenan': 24586, 'kent,': 24587, 'kills.': 24588, "kim's": 24589, 'kingsley,': 24590, 'kira': 24591, 'kitten': 24592, 'korea,': 24593, 'krige': 24594, 'kristy': 24595, 'kubrick,': 24596, 'kudrow': 24597, 'kulkarni': 24598, 'l&h': 24599, 'label.': 24600, 'labyrinth': 24601, 'lacking,': 24602, 'lads': 24603, 'lancaster': 24604, 'landmarks': 24605, 'landscapes.': 24606, 'laputa,': 24607, 'largo': 24608, 'lascivious': 24609, 'latex': 24610, 'latter-day': 24611, 'laziness': 24612, 'learn.': 24613, 'lease': 24614, 'leftist': 24615, 'lenses': 24616, "leo's": 24617, "leone's": 24618, 'lesbianism': 24619, 'less"': 24620, "lewis's": 24621, 'lewis.': 24622, 'licking': 24623, 'lieu': 24624, 'liev': 24625, 'lifeless.': 24626, 'like)': 24627, 'limbo': 24628, 'line-up': 24629, 'lines?': 24630, 'lining': 24631, 'literature.': 24632, 'little.<br': 24633, 'lived,': 24634, 'lived.': 24635, 'locking': 24636, 'loneliness.': 24637, 'long!': 24638, 'longed': 24639, 'lookalike': 24640, 'lore': 24641, 'lorenz': 24642, 'lot!': 24643, 'louis,': 24644, 'lounge': 24645, "love's": 24646, 'luciano': 24647, 'lucky,': 24648, 'luke,': 24649, 'lurches': 24650, 'lusty': 24651, 'macbeth': 24652, 'macgregor': 24653, 'made-for-television': 24654, 'magnitude': 24655, 'magnus': 24656, 'mainland': 24657, 'makers,': 24658, 'makes,': 24659, "mamet's": 24660, 'mamie': 24661, 'mammoth': 24662, 'mangled': 24663, 'mannerisms,': 24664, 'manny': 24665, 'mars.': 24666, 'marsh': 24667, 'marvelous,': 24668, 'marvelous.': 24669, 'mary.': 24670, 'mason,': 24671, 'mathematical': 24672, 'matlin': 24673, 'maudlin': 24674, 'mawkish': 24675, 'mcdonald': 24676, 'mckay': 24677, 'mckenzie': 24678, 'mclaglen,': 24679, 'meaningless,': 24680, 'measure,': 24681, 'med': 24682, 'meena': 24683, 'megs': 24684, 'melancholic': 24685, 'melanie': 24686, 'memorized': 24687, 'mencia': 24688, 'mendez': 24689, 'mesmerizing.': 24690, 'metal,': 24691, 'michigan': 24692, 'midgets': 24693, 'midwest': 24694, "mike's": 24695, 'mildred,': 24696, 'mildred.': 24697, 'mile,': 24698, 'mill,': 24699, 'milligan': 24700, 'mindlessly': 24701, 'mines,': 24702, 'mini-series.': 24703, 'minion': 24704, 'minstrel': 24705, 'minutes),': 24706, 'misogyny': 24707, 'mission.<br': 24708, 'mistaken,': 24709, 'mistress,': 24710, 'moans': 24711, 'mocks': 24712, 'mogul': 24713, 'mohanlal': 24714, 'mommy': 24715, 'mon': 24716, 'money"': 24717, 'monk.': 24718, 'monkeys"': 24719, 'monkeys,': 24720, 'month,': 24721, 'moore.': 24722, 'moreau': 24723, 'moreover': 24724, 'morris,': 24725, 'morrow': 24726, 'mortally': 24727, 'mothers,': 24728, 'motifs': 24729, 'motivates': 24730, 'movie",': 24731, "movies'": 24732, 'mumbo': 24733, 'murder"': 24734, 'muse': 24735, 'myers,': 24736, 'n64': 24737, 'name:': 24738, 'nanette': 24739, "narrator's": 24740, 'nastassja': 24741, 'nationalist': 24742, 'naturally.': 24743, 'nauseating.': 24744, 'navigate': 24745, 'nearing': 24746, 'needs,': 24747, 'needy': 24748, 'negative,': 24749, 'negotiate': 24750, 'neighboring': 24751, 'nephews': 24752, 'net.': 24753, 'nevertheless.': 24754, 'newborn': 24755, 'nichole': 24756, 'nightly': 24757, 'nineteen': 24758, "niro's": 24759, 'niro,': 24760, 'nitpick': 24761, 'no?': 24762, 'noises,': 24763, 'nominate': 24764, 'nonexistent,': 24765, 'nonsensical,': 24766, 'not).': 24767, 'nude.': 24768, 'numbers.<br': 24769, 'oberon': 24770, 'objective.': 24771, 'objects,': 24772, 'oblivion': 24773, 'obscure,': 24774, 'observant': 24775, 'occupying': 24776, 'occur,': 24777, 'oceans': 24778, 'ode': 24779, 'of).': 24780, 'of...': 24781, 'of<br': 24782, 'office.<br': 24783, 'offices': 24784, 'on).': 24785, 'on-screen.': 24786, 'on...<br': 24787, 'once.<br': 24788, 'one!!': 24789, 'one-liner': 24790, 'one-man': 24791, 'open-minded': 24792, 'opener': 24793, 'operator': 24794, 'orange,': 24795, 'orchid': 24796, 'order"': 24797, 'oregon': 24798, 'organised': 24799, 'organize': 24800, "original's": 24801, 'osama': 24802, "oscar's": 24803, 'outdoes': 24804, 'outfits.': 24805, 'outing.': 24806, 'outrageous.': 24807, 'outset,': 24808, 'outsiders': 24809, 'outward': 24810, 'overdue': 24811, 'overlapping': 24812, 'overwhelming.': 24813, 'pablo': 24814, 'pacino.': 24815, 'packaged': 24816, 'paintings.': 24817, 'pair,': 24818, 'palermo': 24819, 'panama': 24820, 'pander': 24821, 'pappas': 24822, 'paralyzed': 24823, "parent's": 24824, 'parent,': 24825, 'parker.': 24826, 'particularly,': 24827, 'parties.': 24828, "pasolini's": 24829, 'pasteur': 24830, 'pathos.': 24831, 'patience.': 24832, 'patrick,': 24833, 'patriot': 24834, 'patron': 24835, 'patronizing': 24836, 'pay,': 24837, 'payne,': 24838, 'pedophile': 24839, 'penniless': 24840, "peoples'": 24841, 'perceives': 24842, 'perpetrator': 24843, 'perpetrators': 24844, 'perpetuates': 24845, 'persecution': 24846, 'peter,': 24847, 'photographer.': 24848, 'photographing': 24849, 'pianist,': 24850, 'pick-up': 24851, 'piled': 24852, 'pinup': 24853, 'pitiful.': 24854, 'plain,': 24855, 'plans,': 24856, 'plans.': 24857, 'plant.': 24858, 'platinum': 24859, 'plot-line': 24860, 'plot...': 24861, 'plucked': 24862, 'plucky': 24863, 'poets': 24864, 'politely': 24865, 'poorly,': 24866, 'pop-culture': 24867, 'poppins': 24868, 'population,': 24869, 'porky': 24870, 'portrayal,': 24871, 'portrayals.': 24872, 'possessive': 24873, 'possibly,': 24874, 'post-production': 24875, 'potential.<br': 24876, 'practiced': 24877, 'prague': 24878, 'prayers': 24879, 'pre-release': 24880, 'predictably,': 24881, 'preface': 24882, 'prejudice.': 24883, 'prequel.': 24884, 'present-day': 24885, 'presenter': 24886, 'preview,': 24887, 'previews,': 24888, 'prisoners,': 24889, 'proclaims': 24890, 'profession.': 24891, 'professor.': 24892, 'professors': 24893, 'programmers': 24894, 'projector': 24895, 'proof.': 24896, 'propel': 24897, 'property.': 24898, 'proportions,': 24899, 'prosthetic': 24900, 'prostitutes.': 24901, 'provo': 24902, 'psychology,': 24903, 'pupil': 24904, 'pusser': 24905, 'quibble': 24906, 'quicker': 24907, 'quiroz': 24908, 'quo': 24909, 'rabbits': 24910, 'radio.': 24911, 'rae': 24912, 'rag': 24913, 'raimi': 24914, 'rambling,': 24915, 'ramones,': 24916, 'rampage.': 24917, 'ramshackle': 24918, 'ramtha': 24919, 'rap,': 24920, 'rash': 24921, 'rate:': 24922, 'rathbone,': 24923, 'rating.<br': 24924, 'raven': 24925, 'ray"': 24926, "razor's": 24927, 're-watching': 24928, 'reaction,': 24929, 'reader,': 24930, 'reading,': 24931, 'realistic.<br': 24932, 'really!': 24933, 'really)': 24934, 'recomend': 24935, 'reconstruction': 24936, 'recovers': 24937, 'red-headed': 24938, 'redeemable': 24939, 'redfield': 24940, 'rediscovered': 24941, 'referee': 24942, 'rehashed': 24943, 'reid,': 24944, 'reiner': 24945, 'rejecting': 24946, 'relatives,': 24947, 'reminiscing': 24948, 'renditions': 24949, 'replaying': 24950, 'replicate': 24951, 'reprehensible': 24952, 'resigned': 24953, 'resources,': 24954, 'response.': 24955, 'restraining': 24956, 'result.<br': 24957, 'results,': 24958, 'retarded,': 24959, 'retrospect': 24960, 'retrospective': 24961, 'reverence': 24962, 'rewarding.': 24963, 'rewrites': 24964, 'rewriting': 24965, 'rhythm,': 24966, 'ricci': 24967, 'richest': 24968, 'richie': 24969, 'ridicules': 24970, 'rifle,': 24971, 'rift': 24972, 'right)': 24973, 'riker': 24974, 'riveted': 24975, "robert's": 24976, 'rockets,': 24977, 'role?': 24978, 'roma': 24979, 'rome,': 24980, 'ronda': 24981, 'roommate,': 24982, 'roots,': 24983, 'rosarios': 24984, 'roster': 24985, 'roth,': 24986, 'rowdy': 24987, 'royston': 24988, 'rube': 24989, 'rude,': 24990, 'rukh,': 24991, 'rumble': 24992, 'rumour': 24993, "ryan's": 24994, 'saga,': 24995, 'sale.': 24996, 'samson': 24997, 'sanchez': 24998, 'sanctimonious': 24999, 'sandler,': 25000, 'santos': 25001, 'sasha': 25002, 'savagery': 25003, 'say)': 25004, 'say...': 25005, 'scene?': 25006, 'scenes"': 25007, 'scenes)': 25008, 'scenes...': 25009, 'sceptical': 25010, 'scheme.': 25011, 'school?': 25012, "scientist's": 25013, 'scorpion': 25014, 'scraped': 25015, 'scrapes': 25016, 'screaming.': 25017, 'screen;': 25018, 'script?': 25019, 'scripting,': 25020, 'scrubs': 25021, 'scrutiny': 25022, 'sculpture': 25023, 'seamless': 25024, 'seas': 25025, 'seattle,': 25026, 'second-rate': 25027, 'securing': 25028, "sellers'": 25029, 'sellers,': 25030, 'sense!': 25031, 'senses.': 25032, 'sentences.': 25033, 'sentiment.': 25034, 'sequel!': 25035, 'sequences.<br': 25036, 'seventeen': 25037, 'sex?': 25038, 'shadow.': 25039, 'shape.': 25040, 'shapiro': 25041, 'shear': 25042, 'sheltered': 25043, 'shining.': 25044, 'shintaro': 25045, 'shitty': 25046, 'shocked.': 25047, 'sholay.': 25048, 'shots.<br': 25049, 'shoulder,': 25050, 'shouting,': 25051, 'sidekick.': 25052, 'sideways': 25053, 'silverstone': 25054, 'simplicity.': 25055, 'simulate': 25056, 'sincere,': 25057, 'singh': 25058, 'siodmak': 25059, 'siskel': 25060, 'situational': 25061, 'situations.<br': 25062, 'siu': 25063, 'sixties,': 25064, 'sizable': 25065, 'skater': 25066, 'skimmed': 25067, 'skirts': 25068, 'slavic': 25069, 'sleaze,': 25070, 'sleepless': 25071, 'sloppy.': 25072, 'slums': 25073, 'smallville': 25074, 'smarmy,': 25075, 'smartest': 25076, 'smattering': 25077, 'smeared': 25078, 'smoked': 25079, 'smokes': 25080, 'smug,': 25081, 'snack': 25082, 'snapping': 25083, 'snl,': 25084, 'soap,': 25085, 'sob': 25086, 'sobbing': 25087, "soldier's": 25088, 'solitude': 25089, 'solution.': 25090, 'solutions': 25091, 'someday,': 25092, 'somewhat,': 25093, 'song"': 25094, 'sonic': 25095, 'sookie': 25096, 'sopranos"': 25097, 'sopranos.': 25098, 'sort,': 25099, 'souls,': 25100, 'southwest': 25101, 'spades.': 25102, 'spall': 25103, 'sparkles': 25104, 'specials': 25105, 'speculate': 25106, 'sped': 25107, 'spiced': 25108, 'spirituality': 25109, 'splattered': 25110, 'spoiler.': 25111, 'spoilers*<br': 25112, 'spooky,': 25113, 'sport.': 25114, 'spotting': 25115, 'spraying': 25116, 'squalor': 25117, 'sr.': 25118, 'staggeringly': 25119, 'stagy': 25120, 'stahl': 25121, 'stale.': 25122, 'stalin': 25123, 'stand,': 25124, 'standing,': 25125, 'standouts': 25126, 'stardom,': 25127, 'starkly': 25128, 'stars)': 25129, 'starsky': 25130, 'stash': 25131, 'stay.': 25132, 'stench': 25133, 'step,': 25134, 'stirs': 25135, 'stockwell': 25136, 'stolen.': 25137, 'stomach,': 25138, 'store.<br': 25139, 'story",': 25140, 'strauss': 25141, 'street.<br': 25142, 'streets"': 25143, 'stresses': 25144, 'stretch,': 25145, 'strife': 25146, 'stunned,': 25147, 'sub-par,': 25148, 'subscribe': 25149, 'suburbs': 25150, 'succumbed': 25151, 'suitcase': 25152, 'sunday,': 25153, 'sunglasses': 25154, 'sunrise"': 25155, 'sunshine"': 25156, 'superficial,': 25157, 'supernatural,': 25158, 'surgical': 25159, 'surpassing': 25160, 'survey': 25161, 'swaying': 25162, 'swears': 25163, 'swiftly': 25164, 'swirling': 25165, 'syberberg': 25166, 'symphony': 25167, 'tagline': 25168, 'taken,': 25169, 'talkies': 25170, 'tamil': 25171, 'tap,': 25172, 'tarzan.': 25173, 'tasteless,': 25174, 'tatum': 25175, 'taunting': 25176, 'taxes': 25177, 'team.<br': 25178, 'tedious.<br': 25179, 'teenaged': 25180, 'temperamental': 25181, 'tending': 25182, 'tentative': 25183, 'term,': 25184, 'terrifying.': 25185, 'text.': 25186, 'texts': 25187, 'then)': 25188, 'thereof.': 25189, 'thirties,': 25190, 'this!!': 25191, 'this),': 25192, 'tho,': 25193, 'thread,': 25194, 'three-dimensional': 25195, 'throat,': 25196, 'throbbing': 25197, 'thugs,': 25198, "time'": 25199, 'times?': 25200, 'tires': 25201, 'tivo': 25202, 'to!': 25203, 'tokyo,': 25204, 'tolkien': 25205, 'tomatoes,': 25206, 'tonight.': 25207, 'too),': 25208, 'top-notch,': 25209, 'torments': 25210, 'tortuous': 25211, 'total,': 25212, 'totalitarian': 25213, 'toto': 25214, 'touchy': 25215, 'touted': 25216, 'towns,': 25217, 'tracks.': 25218, "tracy's": 25219, 'trafficking': 25220, 'tragedy.<br': 25221, 'translating': 25222, 'transsexual': 25223, 'traumas': 25224, 'tread': 25225, 'treasury': 25226, 'trick.': 25227, 'tried.': 25228, 'triggers': 25229, 'triton': 25230, 'troll': 25231, 'trough': 25232, 'troy': 25233, 'trucks': 25234, 'trusty': 25235, 'tsai': 25236, 'tudor': 25237, 'tumbling': 25238, 'tune.': 25239, 'tung': 25240, 'tunnel,': 25241, 'tvm': 25242, 'twenty-something': 25243, 'twinkle': 25244, 'two"': 25245, 'tycoon': 25246, 'tyson': 25247, 'u.s.a.': 25248, 'ulli': 25249, 'unacceptable': 25250, 'unarmed': 25251, 'unbiased': 25252, 'uncaring': 25253, 'unconsciously': 25254, 'undercut': 25255, 'understandable.': 25256, 'understanding.': 25257, 'understatement': 25258, 'underworld,': 25259, 'undiscovered': 25260, 'undressed': 25261, 'unfair,': 25262, 'unfold,': 25263, 'uniforms,': 25264, 'uniforms.': 25265, 'unimaginable': 25266, 'uninitiated': 25267, 'unintelligent': 25268, 'union.': 25269, 'unit,': 25270, 'universal,': 25271, 'unjust': 25272, 'unknowns': 25273, 'unleashing': 25274, 'unnecessary.<br': 25275, 'unsatisfied': 25276, 'untouched': 25277, 'untrue': 25278, 'uplifting.': 25279, 'ups,': 25280, 'upward': 25281, 'urbane': 25282, 'useful,': 25283, 'utility': 25284, 'valued': 25285, 'vance,': 25286, 'variant': 25287, 'varies': 25288, 'vatican': 25289, 'vcr.': 25290, 'vegas,': 25291, 'veidt': 25292, 'venus': 25293, 'version),': 25294, 'viciously': 25295, 'vienna,': 25296, 'viennese': 25297, 'vietnam.': 25298, 'views.': 25299, 'vignette': 25300, 'vinci': 25301, 'virulent': 25302, 'viva': 25303, 'vivien': 25304, 'voice.<br': 25305, 'void.': 25306, 'vortex': 25307, 'vote,': 25308, 'vu': 25309, 'walken.': 25310, 'wannabes': 25311, 'want?': 25312, 'warhol': 25313, 'warming.': 25314, 'warned!': 25315, 'was)': 25316, 'was;': 25317, "wasn't,": 25318, 'waters.': 25319, 'watts': 25320, 'waves,': 25321, 'wealthy,': 25322, 'week.<br': 25323, 'welcome,': 25324, 'well),': 25325, 'well-cast': 25326, 'well-rounded': 25327, 'whales': 25328, 'whines': 25329, 'whiny,': 25330, 'whisper': 25331, 'white)': 25332, 'why?<br': 25333, 'wife)': 25334, 'wilcox': 25335, "william's": 25336, 'wilson.': 25337, 'winded': 25338, 'windshield': 25339, 'wings.': 25340, 'winning,': 25341, 'winona': 25342, 'wise.': 25343, 'wish.': 25344, 'witch"': 25345, 'witchcraft,': 25346, 'within,': 25347, 'wives,': 25348, 'woman!': 25349, 'women"': 25350, 'women)': 25351, "woo's": 25352, 'woodward': 25353, 'work)': 25354, 'work;': 25355, 'worships': 25356, 'wrecking': 25357, 'wrists': 25358, 'x,': 25359, 'yankee': 25360, 'yash': 25361, 'yelnats': 25362, 'yummy': 25363, 'zone"': 25364, 'zp': 25365, '!!!!': 25366, '!)': 25367, '"a"': 25368, '"anna': 25369, '"beat': 25370, '"beautiful': 25371, '"beauty': 25372, '"behind': 25373, '"blow': 25374, '"breaking': 25375, '"cry': 25376, '"cute"': 25377, '"deep': 25378, '"dick': 25379, '"does': 25380, '"emma"': 25381, '"every': 25382, '"get"': 25383, '"ghost': 25384, '"girlfight"': 25385, '"green': 25386, '"hard': 25387, '"henry': 25388, '"jerry': 25389, '"lady': 25390, '"look,': 25391, '"nice': 25392, '"october': 25393, '"other': 25394, '"private': 25395, '"psycho"': 25396, '"purple': 25397, '"ratso"': 25398, '"read': 25399, '"revenge': 25400, '"road': 25401, '"stairway': 25402, '"star"': 25403, '"stripes"': 25404, '"thriller"': 25405, '"top': 25406, '"up': 25407, '"while': 25408, '"will': 25409, '"wow,': 25410, '"yankee': 25411, "''the": 25412, "'70s.": 25413, "'bad'": 25414, "'bout": 25415, "'creature": 25416, "'hero'": 25417, "'higher": 25418, "'horror'": 25419, "'is": 25420, "'night": 25421, "'r'": 25422, "'star": 25423, '(!),': 25424, '(1953)': 25425, '(1964)': 25426, '(1971)': 25427, '(1980)': 25428, '(1981)': 25429, '(1991)': 25430, '(1999)': 25431, '(2005)': 25432, '(2006)': 25433, '(adam': 25434, '(again': 25435, '(anne': 25436, '(barry': 25437, "(can't": 25438, '(cary': 25439, '(claire': 25440, '(could': 25441, '(denzel': 25442, "(didn't": 25443, '(dylan': 25444, '(ed': 25445, '(hey,': 25446, '(joseph': 25447, '(little': 25448, '(looks': 25449, '(our': 25450, '(part': 25451, '(patricia': 25452, '(presumably': 25453, '(pun': 25454, '(real': 25455, '(scott': 25456, '(sean': 25457, '(should': 25458, '(sounds': 25459, '(these': 25460, '(through': 25461, '(unintentionally)': 25462, '(whatever': 25463, '**<br': 25464, '-a': 25465, '...i': 25466, '/>"my': 25467, '/>--the': 25468, '/>9.': 25469, '/>absolutely': 25470, '/>akshay': 25471, '/>almost': 25472, '/>chris': 25473, '/>dan': 25474, '/>don': 25475, '/>either': 25476, '/>enjoy': 25477, '/>enter': 25478, '/>eventually': 25479, '/>five': 25480, '/>fortunately,': 25481, '/>gene': 25482, '/>granted,': 25483, '/>hey,': 25484, '/>hopefully': 25485, '/>lets': 25486, '/>match': 25487, '/>may': 25488, '/>morgan': 25489, '/>ms.': 25490, '/>oddly': 25491, '/>often': 25492, '/>okay': 25493, '/>originally': 25494, '/>ps': 25495, '/>second': 25496, '/>shame': 25497, '/>shot': 25498, '/>sounds': 25499, '/>summing': 25500, '/>technically,': 25501, '/>tim': 25502, '/>welles': 25503, '/>worse': 25504, '/>worst': 25505, '0,': 25506, '0.': 25507, '1%': 25508, '1/4': 25509, '10,000': 25510, '14,': 25511, '1914': 25512, "1930's.": 25513, '1939,': 25514, '1939.': 25515, '1959.': 25516, '1972,': 25517, '1978,': 25518, '1978.': 25519, '1989,': 25520, '1989.': 25521, '1991,': 25522, '1991.': 25523, '1995,': 25524, '1996.': 25525, '1999.': 25526, "2'": 25527, "20's": 25528, '20+': 25529, '2003.': 25530, '25,': 25531, '3-4': 25532, '3000,': 25533, '3000.': 25534, '30s,': 25535, '30th': 25536, '49': 25537, '52': 25538, '54': 25539, '57': 25540, '6)': 25541, '72': 25542, '75%': 25543, '79': 25544, '8/10<br': 25545, '81': 25546, '87': 25547, '89': 25548, 'a&e': 25549, 'abandoned,': 25550, 'abbas': 25551, 'abduction': 25552, 'abrasive': 25553, 'absolutely,': 25554, 'absorbing,': 25555, 'absurdity.': 25556, 'academy,': 25557, 'acceptance.': 25558, 'accepted.': 25559, 'accessible.': 25560, 'accounted': 25561, 'acerbic': 25562, 'achieved.': 25563, 'acknowledges': 25564, 'acting!': 25565, 'activities.': 25566, 'adaptations,': 25567, 'addiction,': 25568, 'addictions': 25569, 'administration.': 25570, 'admire.': 25571, 'adolph': 25572, 'adults.<br': 25573, 'advance,': 25574, 'advance.': 25575, 'adventure.<br': 25576, 'aesthetically': 25577, 'aesthetics': 25578, 'affectionately': 25579, 'afloat.': 25580, 'after.<br': 25581, 'agenda,': 25582, 'aggravating': 25583, 'aging,': 25584, 'ago;': 25585, 'ago?': 25586, 'agonizingly': 25587, 'agreement': 25588, 'aiden': 25589, 'airhead': 25590, 'airwolf': 25591, 'aisle': 25592, 'aka.': 25593, 'al,': 25594, 'alaska': 25595, "albert's": 25596, 'album,': 25597, 'alias': 25598, 'alice,': 25599, 'alien.': 25600, 'alike.<br': 25601, 'alley.': 25602, 'alleys': 25603, 'allude': 25604, 'almost.': 25605, 'alok': 25606, 'altar': 25607, 'alternates': 25608, 'alters': 25609, 'amazement': 25610, 'ambitions,': 25611, 'ambitions.': 25612, 'amc': 25613, "american's": 25614, 'amorous': 25615, 'analog': 25616, 'analyzing': 25617, 'anatomy': 25618, 'angelo': 25619, 'angelopoulos': 25620, 'angst.': 25621, 'anguished': 25622, 'animation.<br': 25623, 'announcing': 25624, 'annoyed.': 25625, 'anorexic': 25626, 'anti-establishment': 25627, "antwone's": 25628, 'apathetic': 25629, 'apathy': 25630, 'apex': 25631, 'aplomb.': 25632, 'application': 25633, 'appreciated,': 25634, 'aquarium': 25635, 'arabs': 25636, 'archives': 25637, 'argentina': 25638, 'argue,': 25639, 'arlington': 25640, 'arrived,': 25641, 'artfully': 25642, 'artificial,': 25643, 'asked,': 25644, 'assurance': 25645, "astaire's": 25646, 'astor': 25647, 'asylum.': 25648, 'atheist': 25649, 'atlantis.': 25650, 'atrociously': 25651, 'atrocity.': 25652, 'attacker': 25653, 'attenborough,': 25654, 'attitudes.': 25655, 'attractions': 25656, 'aubrey': 25657, "aunt's": 25658, 'austria': 25659, 'average.<br': 25660, 'awe.': 25661, 'awful)': 25662, 'awry,': 25663, 'babysitting': 25664, 'backup': 25665, 'badness.': 25666, 'baio': 25667, 'balding': 25668, 'bam': 25669, 'bane': 25670, 'bangkok': 25671, 'barbed': 25672, 'barrett': 25673, 'barrier': 25674, 'basinger,': 25675, 'bathhouse': 25676, "batman's": 25677, 'baton': 25678, 'battalion': 25679, 'bawdy': 25680, 'beaten,': 25681, 'beatings': 25682, 'beautifully,': 25683, 'beauty.<br': 25684, 'become,': 25685, 'beer.': 25686, 'beforehand.': 25687, 'beheading': 25688, 'belief.<br': 25689, 'believers': 25690, 'belongs.': 25691, 'benevolent': 25692, 'benign': 25693, 'benton': 25694, 'bet.': 25695, 'bewitched': 25696, 'bey': 25697, 'beyonce': 25698, 'billing,': 25699, 'bin.': 25700, 'bischoff': 25701, 'biz': 25702, 'blackmails': 25703, 'blandly': 25704, 'blanket': 25705, 'blast.': 25706, 'blethyn': 25707, 'blier': 25708, 'blindness': 25709, 'blob"': 25710, 'blood",': 25711, 'bloodied': 25712, 'blouse': 25713, 'blue.': 25714, 'blues"': 25715, 'blues,': 25716, 'boasting': 25717, 'boats,': 25718, 'bobby,': 25719, 'body.<br': 25720, 'bogs': 25721, 'bolo': 25722, 'bones,': 25723, 'bonkers': 25724, 'boo': 25725, 'booby': 25726, 'booed': 25727, 'boothe': 25728, 'border.': 25729, 'bordered': 25730, 'boredom.<br': 25731, 'borowczyk': 25732, 'bosnian': 25733, "boss's": 25734, 'boy)': 25735, "boyle's": 25736, 'bradley': 25737, 'brag': 25738, 'bram': 25739, 'braun': 25740, 'bread,': 25741, 'breath,': 25742, 'brewing': 25743, "brian's": 25744, 'bright.': 25745, 'brilliantly,': 25746, 'broken,': 25747, "bronson's": 25748, 'brushed': 25749, 'bubbling': 25750, 'budgets,': 25751, 'buffs,': 25752, 'bulimia': 25753, 'bull.': 25754, 'bullets.': 25755, 'burakov': 25756, 'burger': 25757, 'burroughs': 25758, 'burtynsky': 25759, 'bush,': 25760, 'business.<br': 25761, 'busts': 25762, 'butt,': 25763, "c'mon,": 25764, 'ca': 25765, 'caan': 25766, 'cages': 25767, 'caine)': 25768, 'cameramen': 25769, 'cameras.': 25770, 'camilla': 25771, 'caper,': 25772, 'captors': 25773, 'car!': 25774, 'career;': 25775, 'carrell': 25776, "cassidy's": 25777, "cast's": 25778, 'cast;': 25779, "castle's": 25780, 'cat"': 25781, 'cathartic': 25782, 'cautious': 25783, 'cavalier': 25784, 'ceased': 25785, 'celebrity,': 25786, 'celia': 25787, 'cell.': 25788, 'cemented': 25789, 'cemetery,': 25790, 'champ': 25791, 'chant': 25792, 'charles,': 25793, 'charter': 25794, "chase's": 25795, 'chawla': 25796, "cheadle's": 25797, 'cheapness': 25798, 'chest,': 25799, 'chick.': 25800, 'chicks,': 25801, 'chicks.': 25802, 'chikatilo': 25803, 'child.<br': 25804, 'chills.': 25805, 'chips': 25806, 'choir,': 25807, 'chosen.': 25808, 'christians,': 25809, 'christie,': 25810, 'circle,': 25811, 'clark.': 25812, 'clashing': 25813, 'classed': 25814, 'classes.': 25815, 'classic?': 25816, 'clausen': 25817, 'cliches,': 25818, 'cliff.': 25819, 'clothed': 25820, 'clueless,': 25821, 'clutching': 25822, 'co-producer': 25823, 'cock': 25824, 'coda': 25825, 'code"': 25826, 'coffee.': 25827, 'coffin.': 25828, 'cognac!!!!!i': 25829, 'coincidence,': 25830, 'collection.<br': 25831, 'collora': 25832, "colman's": 25833, 'colombian': 25834, 'colonel,': 25835, 'colonialism': 25836, 'column': 25837, 'combat,': 25838, 'combat.': 25839, 'comedy!': 25840, 'commendable,': 25841, 'commenters': 25842, 'commissioned': 25843, 'committed,': 25844, 'community.<br': 25845, 'companies.': 25846, 'compelling.<br': 25847, 'compels': 25848, 'competence': 25849, 'completist': 25850, 'complicate': 25851, 'composers': 25852, 'compounded': 25853, 'comprise': 25854, 'compromising': 25855, 'concert.': 25856, 'concocted': 25857, 'confess,': 25858, 'congrats': 25859, 'conned': 25860, 'connery,': 25861, 'connoisseur': 25862, 'consequences.<br': 25863, 'considered,': 25864, 'construction.': 25865, 'consumers': 25866, 'contacted': 25867, 'contracted': 25868, 'contractual': 25869, 'corbett,': 25870, 'corporation.': 25871, 'corrected': 25872, 'correctly.': 25873, 'cortes': 25874, 'cost,': 25875, 'costs!': 25876, 'countdown': 25877, 'courage.': 25878, 'courtyard': 25879, 'crain': 25880, 'crane': 25881, 'cranky': 25882, 'crappy,': 25883, 'crazy?': 25884, 'credibility,': 25885, 'credulity': 25886, 'crisp,': 25887, "critic's": 25888, 'critter': 25889, 'crocodiles': 25890, 'croft': 25891, 'cross-country': 25892, 'cross-dressing': 25893, 'cross.': 25894, 'crushes': 25895, 'crying,': 25896, 'culled': 25897, 'culminate': 25898, 'cultists': 25899, 'cultivated': 25900, 'culturally': 25901, 'cunningly': 25902, 'curiously,': 25903, 'curt': 25904, 'customers,': 25905, 'cyber': 25906, 'dabney': 25907, 'damage,': 25908, 'danes.': 25909, 'dang': 25910, 'daninsky': 25911, 'darren,': 25912, 'das': 25913, "davis's": 25914, 'daylight.': 25915, 'dead)': 25916, 'dead-end': 25917, 'deaf,': 25918, 'death)': 25919, 'debatable': 25920, 'debris': 25921, 'deceit,': 25922, 'decor': 25923, 'delving': 25924, 'demands.': 25925, 'denizens': 25926, 'denny': 25927, 'denouement,': 25928, 'depart': 25929, 'departs': 25930, 'deposit': 25931, 'depressive': 25932, 'depths.': 25933, 'desperate.': 25934, 'despises': 25935, 'deterioration': 25936, 'determining': 25937, 'detriment': 25938, 'devastation': 25939, 'deviates': 25940, 'dey': 25941, 'dialogues.': 25942, 'dictator,': 25943, 'difference.<br': 25944, 'differently,': 25945, 'dilemma.': 25946, 'dillon,': 25947, 'diminishing': 25948, 'diplomatic': 25949, 'dirk': 25950, 'disappointingly': 25951, 'discloses': 25952, 'discovery,': 25953, 'disgrace.': 25954, 'disgraced': 25955, 'dismayed': 25956, 'dismembered': 25957, 'disorders': 25958, 'disowned': 25959, 'dispense': 25960, 'distortion': 25961, 'distressing': 25962, 'distribution,': 25963, 'ditsy': 25964, 'diversion': 25965, 'divert': 25966, 'do),': 25967, 'does).': 25968, 'dogged': 25969, 'doggie': 25970, 'doktor': 25971, 'dolores': 25972, 'donnie': 25973, 'door.<br': 25974, 'doppelganger': 25975, 'double,': 25976, 'dove': 25977, "down's": 25978, 'downloaded': 25979, 'drawer': 25980, 'dreamer': 25981, 'dreams.<br': 25982, 'dregs': 25983, 'dress.': 25984, 'drinking.': 25985, 'drinks,': 25986, 'drivel.<br': 25987, 'driven,': 25988, "driver's": 25989, 'driving,': 25990, 'drool': 25991, 'dtv': 25992, 'dundee': 25993, 'duprez': 25994, 'duval': 25995, 'dvr': 25996, 'dwells': 25997, 'dwindling': 25998, 'e.g.,': 25999, 'each,': 26000, 'each.': 26001, 'early,': 26002, 'eaten.': 26003, 'ebay.': 26004, 'eccentric,': 26005, 'editions': 26006, 'editorial': 26007, 'edna': 26008, 'educated,': 26009, 'egregious': 26010, 'eh?': 26011, "einstein's": 26012, 'elaborated': 26013, 'elders': 26014, 'elf': 26015, 'eliza': 26016, "elliott's": 26017, 'eludes': 26018, 'elves': 26019, 'embarrassment,': 26020, 'embroiled': 26021, 'emile': 26022, 'eminent': 26023, 'empathetic': 26024, 'empathy.': 26025, 'emy': 26026, 'end),': 26027, 'endear': 26028, 'ending...': 26029, 'endor': 26030, 'enforcer': 26031, 'english-language': 26032, 'enigma': 26033, 'enjoyed,': 26034, 'enjoyment,': 26035, 'ensemble.': 26036, 'enthusiast': 26037, 'entrails': 26038, 'episode)': 26039, 'epitomized': 26040, 'equality': 26041, 'equate': 26042, 'eras': 26043, 'erected': 26044, 'erstwhile': 26045, 'escapees': 26046, 'esp.': 26047, 'essayed': 26048, 'established,': 26049, 'esteban': 26050, "evening's": 26051, 'evenly': 26052, 'everett,': 26053, 'everything!': 26054, "everything's": 26055, 'everytime': 26056, 'evidence,': 26057, 'evident.': 26058, 'ex-husband': 26059, 'exaggerated,': 26060, 'executes': 26061, 'exemplary': 26062, 'exercise.': 26063, 'existence.<br': 26064, 'exits': 26065, 'expanding': 26066, 'expands': 26067, 'expansion': 26068, 'expedition.': 26069, 'expensive,': 26070, 'experiencing.': 26071, 'explained.<br': 26072, 'explode.': 26073, 'explored,': 26074, 'exposition.': 26075, 'express,': 26076, 'extremist': 26077, 'eyes!': 26078, 'eyes?': 26079, 'fab': 26080, 'face!': 26081, 'facet': 26082, 'facilities': 26083, 'failing,': 26084, 'failure.<br': 26085, 'falk,': 26086, 'fall,': 26087, 'fall.': 26088, 'fanciful': 26089, 'fantasy.<br': 26090, 'faris': 26091, "farrell's": 26092, 'fashion.<br': 26093, 'fates': 26094, 'father-in-law': 26095, 'fear"': 26096, 'fears.': 26097, 'feline': 26098, 'feminism': 26099, 'ferocious': 26100, 'fest,': 26101, 'festering': 26102, 'fetchit': 26103, 'feuding': 26104, 'few)': 26105, 'fields,': 26106, 'fiendish': 26107, 'fifties,': 26108, 'film...<br': 26109, 'film.the': 26110, 'film<br': 26111, 'filmed.<br': 26112, 'films...': 26113, 'filone': 26114, 'findings': 26115, 'finesse': 26116, 'finest,': 26117, 'fired,': 26118, 'first:': 26119, 'fischer': 26120, 'fishburne,': 26121, 'flapping': 26122, 'flat.<br': 26123, 'flemish': 26124, 'flick!': 26125, 'flight.': 26126, 'flippen': 26127, 'fluke': 26128, 'fly,': 26129, 'flying.': 26130, 'follows,': 26131, 'fooled,': 26132, 'for!': 26133, 'for:': 26134, 'forget.<br': 26135, 'forgiven.': 26136, 'form.<br': 26137, 'former,': 26138, 'forsythe,': 26139, 'forties.': 26140, 'fortress': 26141, 'founder': 26142, 'four.<br': 26143, "fox's": 26144, "foxx's": 26145, "franco's": 26146, 'franco,': 26147, 'frankenstein,': 26148, 'frederick': 26149, 'freeing': 26150, 'frequently,': 26151, 'friction': 26152, 'fridge': 26153, 'frustrate': 26154, 'full-fledged': 26155, 'functioning': 26156, 'g-rated': 26157, 'gabriele': 26158, 'gaiman': 26159, 'galactica.': 26160, 'gallows': 26161, 'game!': 26162, 'game"': 26163, 'game;': 26164, 'gammera': 26165, "gandhi's": 26166, "gangster's": 26167, 'gangster,': 26168, 'garage.': 26169, 'garbage!': 26170, 'garland,': 26171, 'garry': 26172, 'gasoline': 26173, 'gates,': 26174, 'gavin': 26175, 'geez,': 26176, 'geico': 26177, 'gem.<br': 26178, 'geneva': 26179, 'genitalia': 26180, 'genius!': 26181, 'genuine.': 26182, 'geographic': 26183, 'georgia,': 26184, 'geriatric': 26185, 'gestapo': 26186, 'get-go.': 26187, 'get.<br': 26188, 'gets.<br': 26189, 'gi': 26190, 'giancarlo': 26191, 'gibson,': 26192, "gilley's": 26193, 'girlie': 26194, 'give,': 26195, 'glass,': 26196, 'gleaming': 26197, 'glimpsed': 26198, 'glitches': 26199, 'glitter': 26200, 'gloom': 26201, 'gloves': 26202, 'gold-digger': 26203, 'goldberg.': 26204, 'good",': 26205, "goodman's": 26206, 'goon': 26207, 'gowns': 26208, 'graham,': 26209, 'granddaughter': 26210, 'grandmother.': 26211, 'granny': 26212, 'grapple': 26213, 'grasped': 26214, 'grasping': 26215, 'grate': 26216, 'gratification': 26217, 'greatly.': 26218, "greenaway's": 26219, "greene's": 26220, 'greener': 26221, 'greet': 26222, "grendel's": 26223, 'grisham': 26224, 'ground-breaking': 26225, 'grungy': 26226, 'guarantees': 26227, 'guessed,': 26228, 'gummer': 26229, 'gunning': 26230, 'gunslinger': 26231, 'gushing': 26232, 'guts.': 26233, 'gutted': 26234, 'guttenberg': 26235, 'guys.<br': 26236, 'gwen': 26237, 'half-assed': 26238, 'half.<br': 26239, 'hall.': 26240, 'hallway': 26241, 'ham,': 26242, 'handled.': 26243, 'hannibal': 26244, 'happily,': 26245, 'har': 26246, 'harass': 26247, 'hardly.': 26248, 'hardwicke': 26249, 'hardworking': 26250, "harlow's": 26251, 'harmful': 26252, 'has-been': 26253, 'hat"': 26254, 'hatches': 26255, 'have?': 26256, 'hawke)': 26257, 'hawks': 26258, 'hayek': 26259, 'hays': 26260, 'head!': 26261, 'headline': 26262, 'headquarters': 26263, "heart's": 26264, 'heartless,': 26265, 'heartwarming,': 26266, 'helluva': 26267, 'helsing': 26268, 'henchmen.': 26269, 'hendrix': 26270, 'herein': 26271, 'heroics': 26272, 'hess': 26273, 'higher.': 26274, 'hijacking': 26275, 'him...<br': 26276, 'hits.': 26277, 'ho-hum': 26278, 'hobbits': 26279, 'hoechlin': 26280, 'homage,': 26281, 'homosexuality.': 26282, 'hood"': 26283, 'hopes.': 26284, 'horribly.': 26285, 'horrific.': 26286, 'hot!': 26287, 'hotel"': 26288, 'house",': 26289, 'house".': 26290, 'houses.': 26291, "how's": 26292, 'however.<br': 26293, 'hrs': 26294, 'hulce': 26295, 'hulking': 26296, 'huppert': 26297, 'hurriedly': 26298, 'hurry.': 26299, "hyde's": 26300, 'hyperactive': 26301, 'hypnosis': 26302, 'ice.': 26303, 'iceberg.': 26304, 'ignorance,': 26305, 'ignorant,': 26306, 'iii"': 26307, 'iii.': 26308, 'illogical,': 26309, 'illusions': 26310, 'imaginable,': 26311, 'imbecilic': 26312, 'imho,': 26313, 'imitation.': 26314, 'imitations': 26315, 'impact.<br': 26316, 'implicit': 26317, 'impressed,': 26318, 'impressionist': 26319, 'improbably': 26320, 'improv': 26321, 'in)': 26322, 'included)': 26323, 'inconsistent,': 26324, 'indescribably': 26325, "india's": 26326, 'indian,': 26327, 'indulging': 26328, 'ineffectual': 26329, 'inept.': 26330, 'inert': 26331, 'inevitably,': 26332, 'informative,': 26333, 'informing': 26334, 'ingram': 26335, 'ink': 26336, 'insanity.': 26337, 'insects,': 26338, 'insecure,': 26339, 'inspired.': 26340, 'instill': 26341, 'insufferably': 26342, 'insufficient': 26343, 'insurmountable': 26344, 'integrity.': 26345, 'intended).': 26346, 'intention.': 26347, 'intercontinental': 26348, 'internationally': 26349, 'intervening': 26350, 'intrepid': 26351, 'invaders': 26352, 'invisible,': 26353, 'iraq.': 26354, 'isle': 26355, 'it,but': 26356, 'it....': 26357, 'italian.': 26358, 'itself:': 26359, 'iv,': 26360, 'jade': 26361, 'jailed': 26362, 'japan.<br': 26363, 'jarring,': 26364, 'jaws,': 26365, 'jeanie': 26366, 'jen': 26367, 'jets': 26368, 'jim.': 26369, 'joe"': 26370, 'jordan,': 26371, "joseph's": 26372, 'journalistic': 26373, 'journey.<br': 26374, "jr.'s": 26375, 'judgmental': 26376, 'judicious': 26377, 'junk.<br': 26378, 'kabuki': 26379, 'kane.': 26380, 'karin': 26381, 'kellerman': 26382, 'kelso': 26383, 'kendrick': 26384, 'ketchup': 26385, "khan's": 26386, 'kharis': 26387, 'kick-ass': 26388, 'kid"': 26389, 'kidnapped.': 26390, 'kiera': 26391, 'killer"': 26392, 'killian': 26393, 'kills,': 26394, 'king)': 26395, 'kinnear,': 26396, 'kitschy': 26397, 'kline,': 26398, 'knew,': 26399, 'knives.': 26400, 'knotts': 26401, 'know"': 26402, 'koreans': 26403, 'kothari': 26404, "kristofferson's": 26405, 'kutcher': 26406, 'kylie': 26407, 'kyoto': 26408, 'labels': 26409, 'lack.': 26410, 'laconic': 26411, 'lamer': 26412, 'lamp': 26413, 'landis': 26414, 'landscapes,': 26415, 'lapse': 26416, "latter's": 26417, 'laughter.<br': 26418, 'lawler': 26419, 'layout': 26420, 'leachman': 26421, 'lead.<br': 26422, 'legged': 26423, 'legitimately': 26424, "leigh's": 26425, 'lemmon,': 26426, 'lena,': 26427, 'leopard': 26428, 'lew': 26429, 'liberating': 26430, 'liberation': 26431, 'libido': 26432, 'life".': 26433, 'life-long': 26434, 'lifestyles': 26435, 'lights.': 26436, 'likability': 26437, 'limelight': 26438, 'linklater': 26439, "lion's": 26440, 'liotta,': 26441, 'lipstick': 26442, 'listen.': 26443, 'litany': 26444, 'lizzie': 26445, 'loft': 26446, 'loggia': 26447, 'longevity': 26448, 'lookout': 26449, 'looser': 26450, 'loot': 26451, 'lose.': 26452, 'losers,': 26453, "lot's": 26454, 'ludicrous.<br': 26455, 'luigi': 26456, 'lunacy': 26457, 'lupin': 26458, 'lush,': 26459, 'lustful': 26460, 'lusts': 26461, "luzhin's": 26462, 'lynchian': 26463, 'lynne': 26464, 'maclaine': 26465, 'madonna,': 26466, 'magazine,': 26467, 'magazines.': 26468, 'maggie,': 26469, 'magnetism': 26470, 'make.<br': 26471, 'mall.': 26472, 'mallory': 26473, 'malone,': 26474, 'man-eating': 26475, 'man;': 26476, 'maniac,': 26477, 'manifest': 26478, 'manuel': 26479, "maria's": 26480, 'marlee': 26481, 'martinez': 26482, 'masks.': 26483, 'massacred': 26484, 'masses,': 26485, 'masterson,': 26486, 'masturbating': 26487, 'matador': 26488, 'mates,': 26489, 'max,': 26490, 'mazes': 26491, 'mcanally': 26492, 'mccarthy,': 26493, 'mcconaughey': 26494, 'mcdonalds': 26495, 'mcintyre': 26496, 'meal.': 26497, 'meaning.<br': 26498, 'measly': 26499, 'medication': 26500, 'medicine,': 26501, 'medicine.': 26502, 'mediocrity,': 26503, 'medley': 26504, 'meeting.': 26505, 'melange': 26506, 'melodramatic.': 26507, 'melted': 26508, 'memphis': 26509, 'meredith,': 26510, 'merging': 26511, 'merlin': 26512, 'messy,': 26513, 'method.': 26514, 'methods,': 26515, 'miami,': 26516, 'mic': 26517, 'mightily': 26518, 'mike,': 26519, 'mikels': 26520, 'milk.': 26521, 'milked': 26522, 'mind),': 26523, 'miner': 26524, 'miracle,': 26525, 'mischa': 26526, 'misery,': 26527, 'misleading,': 26528, 'missiles': 26529, 'mistake!': 26530, 'mistress.': 26531, 'misunderstand': 26532, 'misused': 26533, 'mo': 26534, 'mod': 26535, "modesty's": 26536, 'moh': 26537, 'mold.': 26538, 'moll': 26539, 'moms': 26540, 'monkey,': 26541, 'montages,': 26542, 'montana,': 26543, 'moodiness': 26544, 'moonstruck': 26545, 'morph': 26546, 'mortimer': 26547, 'motivate': 26548, 'moustache': 26549, 'movements.': 26550, 'movie...i': 26551, 'mulholland': 26552, 'mummified': 26553, 'munching': 26554, 'mundae': 26555, 'munro': 26556, 'mushy': 26557, 'musical.<br': 26558, 'myles': 26559, 'mysteries,': 26560, 'mysteries.': 26561, 'mystique': 26562, 'naivety': 26563, 'nap': 26564, 'narrate': 26565, 'natalia': 26566, 'nationality': 26567, 'nauseatingly': 26568, 'ned,': 26569, 'neff': 26570, 'negatively': 26571, 'negatives': 26572, 'neglecting': 26573, 'neglects': 26574, 'nelson.': 26575, 'nephew,': 26576, 'neurosis': 26577, 'nevermind': 26578, 'new.<br': 26579, 'newman.': 26580, 'newmar': 26581, 'night",': 26582, "night's": 26583, 'nightmares,': 26584, 'nimoy': 26585, 'no-name': 26586, 'nonchalantly': 26587, 'nonexistent.': 26588, 'nonsensical.': 26589, 'noodle': 26590, 'noonan': 26591, 'nope': 26592, 'nord': 26593, 'norman,': 26594, 'northwest': 26595, 'norway': 26596, 'noticed.': 26597, 'novella': 26598, 'now:': 26599, 'nuanced,': 26600, 'nudie': 26601, 'numb': 26602, 'nwa': 26603, "o'conor": 26604, "o'hara,": 26605, "o'shea": 26606, 'obese': 26607, 'objection': 26608, 'objectively': 26609, 'obsession.': 26610, 'obtrusive': 26611, 'obviously.': 26612, 'occupants': 26613, 'odious': 26614, 'offence': 26615, 'offender': 26616, 'ogre"': 26617, 'oliver!': 26618, 'on-screen,': 26619, 'on:': 26620, 'one-of-a-kind': 26621, 'ones)': 26622, 'online.': 26623, 'opening.': 26624, 'operated': 26625, 'optical': 26626, 'original;': 26627, 'orleans.': 26628, 'orphaned': 26629, 'other?': 26630, 'ourselves.<br': 26631, 'out!<br': 26632, 'out-takes': 26633, 'outdated.': 26634, 'outings': 26635, 'outline,': 26636, 'outlines': 26637, 'outstandingly': 26638, 'outweigh': 26639, 'outweighs': 26640, 'over...': 26641, 'overkill': 26642, 'overtones,': 26643, 'overweight,': 26644, 'owen,': 26645, "owner's": 26646, 'ownership': 26647, 'ozzie': 26648, 'p': 26649, 'paced.': 26650, 'pack,': 26651, 'painter,': 26652, 'painter.': 26653, 'pakistan': 26654, 'palma,': 26655, 'pancake': 26656, 'panning': 26657, 'panoramic': 26658, 'paolo': 26659, 'pap': 26660, 'papas': 26661, 'paquin': 26662, 'par,': 26663, 'par.': 26664, 'parasitic': 26665, 'parodied': 26666, 'parodies.': 26667, 'participant': 26668, 'parts.<br': 26669, 'pasdar': 26670, 'passable.': 26671, 'patriarchal': 26672, 'patric': 26673, 'patrol': 26674, 'patti': 26675, 'pauly': 26676, 'pay-per-view': 26677, 'peak.': 26678, 'peaked': 26679, 'pendleton': 26680, 'people".': 26681, 'people:': 26682, 'perdition': 26683, 'pereira': 26684, 'perez': 26685, 'perfect;': 26686, 'performed,': 26687, 'performer,': 26688, 'perlman,': 26689, 'persecuted': 26690, 'petiot': 26691, 'phillips,': 26692, 'philosopher': 26693, 'photogenic': 26694, 'physician': 26695, 'piano.': 26696, 'pics': 26697, 'picture!': 26698, "picture's": 26699, 'pie"': 26700, 'pier': 26701, 'piling': 26702, 'pining': 26703, 'piscopo': 26704, 'pit,': 26705, 'pitting': 26706, "pixar's": 26707, 'planes,': 26708, 'plank': 26709, 'planned.': 26710, 'playful,': 26711, 'pleasance': 26712, 'pleasures.': 26713, 'plunge': 26714, 'pneumonic': 26715, 'pocket.': 26716, 'pockets': 26717, 'points.<br': 26718, 'poiré': 26719, 'poked': 26720, 'poker,': 26721, 'poonam': 26722, 'populace': 26723, 'portman,': 26724, 'possibilities,': 26725, 'postcard': 26726, 'posters,': 26727, 'postmodern': 26728, 'potts': 26729, 'prc': 26730, 'predatory': 26731, 'predecessors.': 26732, 'prejudice,': 26733, 'prematurely': 26734, 'preposterous,': 26735, 'presumably,': 26736, 'pretended': 26737, 'prevails': 26738, 'princes': 26739, 'principals,': 26740, 'principals.': 26741, 'prix': 26742, 'proceeding': 26743, 'process.<br': 26744, 'prodigy': 26745, 'producer.': 26746, 'profanity.': 26747, 'programs,': 26748, 'progressed,': 26749, 'promos': 26750, 'promoter': 26751, 'promotes': 26752, 'propelled': 26753, 'prosecuting': 26754, 'protestant': 26755, 'provoking.': 26756, 'psychos': 26757, 'publisher': 26758, 'pumping': 26759, 'punishment,': 26760, 'purpose.<br': 26761, 'pyar': 26762, 'quantity': 26763, 'quest.': 26764, 'quibbles': 26765, 'quits': 26766, 'rachael': 26767, 'radiates': 26768, 'radios': 26769, 'raining': 26770, 'ranks.': 26771, 'rarer': 26772, 'rat,': 26773, 'rationing': 26774, 'rats,': 26775, 're-run': 26776, 're-telling': 26777, 'ready.': 26778, 'realisation': 26779, 'realist': 26780, 'rears': 26781, 'reason!': 26782, 'reason?': 26783, 'reasonable,': 26784, 'rebuild': 26785, 'recognition.': 26786, 'recommend,': 26787, 'recounts': 26788, 'recovery': 26789, 'recreates': 26790, 'recycling': 26791, 'references.': 26792, 'regard,': 26793, 'reggie': 26794, 'regrettably': 26795, 'rehab': 26796, 'reinhold': 26797, 'relations,': 26798, 'reloaded': 26799, 'remastered': 26800, 'reminisce': 26801, 'removed,': 26802, 'repetitious': 26803, 'replied': 26804, 'report.': 26805, 'representations': 26806, 'reptilian': 26807, 'repulsed': 26808, 'repulsion': 26809, 'repulsive,': 26810, 'repulsive.': 26811, 'reputed': 26812, 'requested': 26813, 'required.': 26814, 'researchers': 26815, 'reside': 26816, 'resists': 26817, 'respect.<br': 26818, 'responding': 26819, 'retail': 26820, 'retitled': 26821, 'reuniting': 26822, 'revels': 26823, 'reviewers.': 26824, 'reviews.<br': 26825, 'revolution.<br': 26826, 'reworked': 26827, 'rgv': 26828, 'ribs': 26829, 'richard.': 26830, 'richardson)': 26831, 'rig': 26832, 'riget': 26833, 'rings"': 26834, 'riot.': 26835, 'riotous': 26836, 'riveting.': 26837, 'robots.': 26838, "roeg's": 26839, 'role-playing': 26840, 'roles)': 26841, 'roles;': 26842, 'rollicking': 26843, 'romances,': 26844, 'romans': 26845, 'romero.': 26846, 'romp.': 26847, 'rooftop': 26848, 'rosa': 26849, 'rosetta': 26850, "roth's": 26851, 'rotoscoped': 26852, 'routines.': 26853, 'rowlands,': 26854, 'rudyard': 26855, 'russell)': 26856, 'russian,': 26857, 'ryan.': 26858, 'saath': 26859, 'sabertooth': 26860, "sabrina's": 26861, 'saddle': 26862, 'salma': 26863, 'sanjay': 26864, 'santana': 26865, 'sarcasm,': 26866, 'sas': 26867, 'sassy,': 26868, 'saucy': 26869, 'saved,': 26870, 'say!': 26871, 'sceneries': 26872, 'schedule,': 26873, 'scholar': 26874, 'scholars': 26875, 'schoolboy': 26876, 'schools.': 26877, "schumacher's": 26878, 'schygulla': 26879, 'scientists,': 26880, 'scots': 26881, 'scotty': 26882, 'scout': 26883, 'scrape': 26884, 'scraping': 26885, 'scrawny': 26886, 'screenings': 26887, 'screenplay.<br': 26888, 'scripture': 26889, 'scrooge.': 26890, 'scruffy': 26891, 'scully': 26892, 'seann': 26893, 'seat.<br': 26894, 'secrets.': 26895, 'segments.': 26896, 'selective': 26897, 'self-centered,': 26898, 'seller': 26899, 'sensationalism': 26900, 'sensuality': 26901, 'sentence,': 26902, 'separating': 26903, 'sequence.<br': 26904, 'series).': 26905, 'series...': 26906, 'series:': 26907, 'seriously?': 26908, 'sexier': 26909, 'sh!t': 26910, 'shanghai"': 26911, 'shapely': 26912, 'shaping': 26913, 'share.': 26914, 'sheds': 26915, 'sheen,': 26916, 'shelves.': 26917, 'shepherd,': 26918, "shin-ae's": 26919, 'shine,': 26920, 'shines.': 26921, 'shohei': 26922, 'shoulder.': 26923, 'shrill,': 26924, 'shrug': 26925, 'siblings,': 26926, 'signified': 26927, 'sim': 26928, 'simply.': 26929, 'sizes': 26930, 'skewed': 26931, 'slain': 26932, 'slapdash': 26933, 'slashed': 26934, 'slashes': 26935, 'slavoj': 26936, 'sleek': 26937, 'sleepwalks': 26938, 'slum': 26939, 'smiling,': 26940, 'smoky': 26941, 'smooth,': 26942, 'snarling': 26943, 'snot': 26944, 'snotty': 26945, 'so-so,': 26946, 'soaps': 26947, 'soliloquy': 26948, 'songs.<br': 26949, 'soprano,': 26950, 'sorrow,': 26951, 'sorted': 26952, 'soup.': 26953, 'sources,': 26954, 'species,': 26955, 'speeches,': 26956, 'spellbinding': 26957, 'spellbound': 26958, 'sperm': 26959, 'spews': 26960, 'spineless': 26961, "spirit's": 26962, 'spirit.<br': 26963, 'spiritually': 26964, 'splashed': 26965, 'splashy': 26966, 'spur': 26967, 'squeaky': 26968, 'srk': 26969, "stack's": 26970, 'staggers': 26971, 'stale,': 26972, 'stalker,': 26973, 'stamped': 26974, 'stand-alone': 26975, 'stark,': 26976, 'starr': 26977, "stars'": 26978, 'started.<br': 26979, 'stationed': 26980, 'status.<br': 26981, 'staunch': 26982, 'steele,': 26983, 'stein': 26984, 'stellar,': 26985, 'step.': 26986, 'stepsisters': 26987, 'stereotyped,': 26988, 'stereotypical,': 26989, 'stereotypically': 26990, 'steve,': 26991, 'stew': 26992, 'stiff.': 26993, 'stigma': 26994, "stiller's": 26995, 'stimulate': 26996, 'stopped.': 26997, 'storm.': 26998, 'storyteller': 26999, 'strangler': 27000, 'strangling': 27001, 'streaming': 27002, 'stressful': 27003, 'stride': 27004, 'striking,': 27005, 'strip,': 27006, 'strip.': 27007, 'strong-willed': 27008, 'stronger.': 27009, 'structural': 27010, 'struggles.': 27011, 'studies.': 27012, "studios'": 27013, 'stupendous': 27014, 'stuttering': 27015, 'subplot,': 27016, 'substance.<br': 27017, 'substandard': 27018, 'substitutes': 27019, 'subtlety,': 27020, 'succeeds.': 27021, 'successfully.': 27022, 'suckers': 27023, 'suffer.': 27024, 'suggestions': 27025, 'sum,': 27026, 'summary:': 27027, 'summers': 27028, 'sunny,': 27029, 'sunshine,': 27030, 'superficial.': 27031, 'superficiality': 27032, 'supernatural.': 27033, 'supplying': 27034, 'suppose.<br': 27035, 'suppressing': 27036, 'supremacy,': 27037, 'surge': 27038, 'surgery.': 27039, 'survivor.': 27040, 'survivors,': 27041, 'sustains': 27042, 'swap': 27043, 'swarm': 27044, 'swarming': 27045, 'swashbucklers': 27046, 'swim"': 27047, 'symbolism,': 27048, 'symptoms': 27049, 'syndicated': 27050, 'syndrome,': 27051, 'synthesis': 27052, 'synthetic': 27053, 'syrupy': 27054, 't-shirts': 27055, 'ta': 27056, 'tacky,': 27057, 'taft': 27058, 'taken.': 27059, 'talent!': 27060, 'tamblyn': 27061, 'tamer': 27062, 'tandem': 27063, 'tang': 27064, 'tangible': 27065, 'taoist': 27066, 'tapestry': 27067, 'taps': 27068, "tarzan's": 27069, 'tear-jerking': 27070, 'tears.<br': 27071, 'teaser': 27072, 'teases': 27073, 'tell.<br': 27074, 'temperament': 27075, 'tenant,': 27076, 'tender,': 27077, 'tension.<br': 27078, 'terence': 27079, 'thanks,': 27080, 'then!': 27081, 'theology': 27082, 'theoretical': 27083, 'theoretically': 27084, 'therefor': 27085, 'thick,': 27086, 'thing".': 27087, 'thing;': 27088, 'thirsty': 27089, 'this:<br': 27090, 'though...': 27091, 'thought-out': 27092, 'thoughts:': 27093, 'thrill.': 27094, 'throes': 27095, 'thursday': 27096, 'ticket,': 27097, 'tightened': 27098, 'tim,': 27099, 'time!<br': 27100, 'times).': 27101, 'tiring': 27102, 'to<br': 27103, 'today?': 27104, 'todd,': 27105, 'tom.': 27106, 'tombstone': 27107, 'tongue.': 27108, 'too...': 27109, 'too:': 27110, 'topical': 27111, 'topping': 27112, 'tornadoes': 27113, 'torrent': 27114, 'torturous': 27115, 'touch"': 27116, 'toughest': 27117, 'tour,': 27118, 'tracks,': 27119, 'traditions,': 27120, 'traditions.': 27121, 'trailing': 27122, 'trails': 27123, 'trance': 27124, 'trancers': 27125, 'transferring': 27126, 'transfers': 27127, 'transmission': 27128, 'transplanted': 27129, 'transporting': 27130, 'trash!': 27131, 'trashes': 27132, 'treasures': 27133, 'treatments': 27134, 'treaty': 27135, 'trebor': 27136, 'trench': 27137, 'tricking': 27138, 'troops,': 27139, 'trouble.<br': 27140, 'troubled,': 27141, 'trousers': 27142, 'trust.': 27143, 'truth"': 27144, 'tsing': 27145, 'tucci': 27146, 'tucked': 27147, 'tuesday': 27148, 'two)': 27149, 'tyne': 27150, 'typical,': 27151, 'tyrannosaurus': 27152, 'u.s.,': 27153, 'udo': 27154, 'ullman': 27155, 'unavoidable': 27156, 'unbearable,': 27157, 'unbeatable': 27158, 'uncensored': 27159, 'unconnected': 27160, 'underage': 27161, 'undergone': 27162, 'underpinnings': 27163, 'underwear,': 27164, 'undeserved': 27165, 'undeservedly': 27166, 'undeveloped,': 27167, 'undone': 27168, 'unearthed': 27169, 'unexpectedly,': 27170, 'unexplained,': 27171, 'unfair.': 27172, 'unfeeling': 27173, 'unflattering': 27174, 'unhappily': 27175, 'uninterested': 27176, 'uninvolving': 27177, 'unions': 27178, 'unique.<br': 27179, 'universal.': 27180, 'unlikable.': 27181, 'unlikely.': 27182, 'unraveling': 27183, 'unreal,': 27184, 'unsatisfied.': 27185, 'unsatisfying.': 27186, 'unsolved': 27187, 'unsuccessfully': 27188, 'unused': 27189, 'unwavering': 27190, 'up-and-coming': 27191, 'upscale': 27192, 'upstate': 27193, 'uriah': 27194, 'vain,': 27195, 'valette': 27196, 'van,': 27197, 'vancouver': 27198, 'vanities': 27199, 'vd': 27200, 'vega,': 27201, 'vein.': 27202, 'venerable': 27203, 'vengeance,': 27204, 'venomous': 27205, 'verne': 27206, 'versa,': 27207, 'victor,': 27208, 'victoria"': 27209, 'victoria.': 27210, 'vignettes,': 27211, 'violating': 27212, 'virginity.': 27213, 'visiteurs,': 27214, 'voicing': 27215, 'vomiting': 27216, 'vulnerable.': 27217, 'wacko': 27218, 'wagner,': 27219, 'waldemar': 27220, 'waldo': 27221, "walker's": 27222, "wallace's": 27223, 'waltz': 27224, 'war-time': 27225, 'war-torn': 27226, 'wardrobe,': 27227, 'warned:': 27228, 'watching!': 27229, 'water"': 27230, 'watery': 27231, 'weakness.': 27232, 'wealth.': 27233, 'weber': 27234, 'weepy': 27235, 'weight.': 27236, 'weirder': 27237, 'weismuller': 27238, 'welcome.<br': 27239, 'well-acted,': 27240, 'well-acted.': 27241, 'well-to-do': 27242, 'well:': 27243, 'welsh': 27244, 'wenders': 27245, "west's": 27246, 'whatever.<br': 27247, 'whiff': 27248, 'whisked': 27249, 'whiskey': 27250, 'whiz': 27251, 'widmark)': 27252, 'widow,': 27253, 'widow.': 27254, 'wife?': 27255, 'wig,': 27256, 'wild.': 27257, 'windows,': 27258, 'winfrey': 27259, 'winkler': 27260, 'winners.': 27261, 'wins,': 27262, 'winter.': 27263, 'wishful': 27264, 'with:': 27265, 'with?': 27266, 'withdrawn': 27267, 'woken': 27268, 'woodard': 27269, 'wordy': 27270, 'workable': 27271, 'working,': 27272, 'workmanlike': 27273, 'world",': 27274, 'world:': 27275, 'world;': 27276, 'woulda': 27277, 'wounds.': 27278, 'wow.<br': 27279, 'wrist': 27280, 'wrong;': 27281, 'wrote.': 27282, 'wuhl': 27283, 'yahoo': 27284, 'yankees': 27285, 'yawning': 27286, 'ye': 27287, 'yearly': 27288, 'years).': 27289, 'yelling,': 27290, 'yourselves.': 27291, 'youtube.': 27292, 'yup,': 27293, 'z-grade': 27294, 'zadora': 27295, 'zandalee': 27296, 'zillion': 27297, '\x91the': 27298, '!!<br': 27299, '"2"': 27300, '"any': 27301, '"atlantis"': 27302, '"based': 27303, '"batman"': 27304, '"because': 27305, '"body': 27306, '"bonanza"': 27307, '"broken': 27308, '"c"': 27309, '"can\'t': 27310, '"cold': 27311, '"crazy': 27312, '"cypher"': 27313, '"devil': 27314, '"documentary"': 27315, '"dream': 27316, '"feel"': 27317, '"free': 27318, '"friend"': 27319, '"give': 27320, '"golden': 27321, '"grey': 27322, '"gunga': 27323, '"guy': 27324, '"harry': 27325, '"hatred"': 27326, '"heroes"': 27327, '"holes"': 27328, '"hollow': 27329, '"ice': 27330, '"il': 27331, '"invisible': 27332, '"jesus': 27333, '"journey': 27334, '"mary': 27335, '"modern"': 27336, '"monster"': 27337, '"mrs.': 27338, '"ok': 27339, '"okay,': 27340, '"open': 27341, '"peter': 27342, '"phantom': 27343, '"pokemon': 27344, '"poor': 27345, '"prom': 27346, '"put': 27347, '"raising': 27348, '"rapture"': 27349, '"reign': 27350, '"science': 27351, '"shut': 27352, '"silence': 27353, '"someone': 27354, '"special"': 27355, '"stars"': 27356, '"strange': 27357, '"taxi': 27358, '"teen': 27359, '"things': 27360, '"those': 27361, '"un': 27362, '"urban': 27363, '"water': 27364, '"weird': 27365, '"werewolf': 27366, '"whatever': 27367, '"women': 27368, '"wonderland"': 27369, '$2': 27370, "''": 27371, "'an": 27372, "'blood": 27373, "'de": 27374, "'em,": 27375, "'it": 27376, "'just": 27377, "'normal'": 27378, "'top": 27379, "'two": 27380, "'we": 27381, "'west": 27382, '("i\'m': 27383, "('the": 27384, '(1932)': 27385, '(1967)': 27386, '(1968)': 27387, '(1972)': 27388, '(1982)': 27389, '(1986)': 27390, '(1989)': 27391, '(2000)': 27392, '(albert': 27393, '(ann': 27394, '(arthur': 27395, '(charlie': 27396, '(charlotte': 27397, '(come': 27398, '(director': 27399, '(don': 27400, '(donald': 27401, '(during': 27402, '(eddie': 27403, '(fred': 27404, '(jay': 27405, '(jonathan': 27406, '(linda': 27407, '(lindsay': 27408, '(luke': 27409, '(marisa': 27410, '(mr': 27411, '(nick': 27412, '(pretty': 27413, '(rick': 27414, '(right': 27415, '(robin': 27416, '(same': 27417, '(sarah': 27418, '(simon': 27419, '(spoiler)': 27420, '(spoilers': 27421, '(thus': 27422, '(under': 27423, '(writer': 27424, '*****.': 27425, '****<br': 27426, '*beep*': 27427, '*spoiler*': 27428, '*the': 27429, '.it': 27430, '/>(i': 27431, '/>*my': 27432, '/>actually': 27433, '/>ah,': 27434, '/>alice': 27435, '/>anne': 27436, '/>anyhow,': 27437, '/>awful': 27438, '/>beautiful': 27439, '/>ben': 27440, '/>certainly': 27441, '/>charles': 27442, '/>charlie': 27443, '/>claire': 27444, '/>come': 27445, '/>comments:': 27446, '/>dick': 27447, '/>executive': 27448, '/>few': 27449, '/>fortunately': 27450, '/>four': 27451, '/>has': 27452, '/>here,': 27453, '/>indeed,': 27454, '/>japanese': 27455, '/>jean': 27456, '/>later,': 27457, '/>loved': 27458, '/>make': 27459, '/>meanwhile': 27460, '/>next,': 27461, '/>note': 27462, '/>put': 27463, '/>rated': 27464, '/>rather': 27465, '/>remember': 27466, '/>score:': 27467, '/>several': 27468, '/>starring': 27469, '/>this,': 27470, '/>throw': 27471, '/>thus': 27472, '/>trust': 27473, '/>using': 27474, '/>usually': 27475, '/>whoever': 27476, '12-year-old': 27477, '12th': 27478, '13,': 27479, '1940,': 27480, '1943,': 27481, '1945,': 27482, '1948.': 27483, "1960's.": 27484, '1984.': 27485, '1986.': 27486, '1990.': 27487, '1994.': 27488, '1995.': 27489, '1998.': 27490, '2),': 27491, "2000's": 27492, '2004.': 27493, '24,': 27494, '25th': 27495, '2d': 27496, '3/10,': 27497, '40,': 27498, '5-10': 27499, '7-year-old': 27500, '83': 27501, '911': 27502, '93': 27503, '94': 27504, '99.9%': 27505, ':<br': 27506, '?!': 27507, 'a-': 27508, 'a...': 27509, 'aback': 27510, 'abject': 27511, 'abnormal': 27512, 'abound,': 27513, 'about:': 27514, 'absence,': 27515, 'absent.': 27516, 'abuses': 27517, 'abysmal,': 27518, 'abyss': 27519, 'acceptable,': 27520, 'accomplished,': 27521, 'accomplished.': 27522, 'accounts.': 27523, 'acid,': 27524, 'acid.': 27525, 'acrobatic': 27526, 'act?': 27527, 'actioner': 27528, 'activity.': 27529, 'actors:': 27530, 'actually)': 27531, 'acute': 27532, 'acutely': 27533, 'ad-libbed': 27534, 'adama': 27535, 'adamson': 27536, 'addison': 27537, 'adjacent': 27538, 'admires': 27539, 'adrenalin': 27540, 'adrien': 27541, 'advertise': 27542, 'affection,': 27543, 'african-americans': 27544, 'afternoons': 27545, 'afterwards.<br': 27546, 'agents.': 27547, 'aggressive,': 27548, 'ago)': 27549, 'agony.': 27550, 'aide': 27551, 'aimée': 27552, 'air.<br': 27553, 'alfredo': 27554, 'alienation,': 27555, 'all-important': 27556, 'allegiance': 27557, "allende's": 27558, 'alley,': 27559, 'alone!': 27560, 'already!': 27561, 'amalgam': 27562, 'amateurishly': 27563, 'amateurs.': 27564, 'amazon.com': 27565, 'ameche': 27566, 'amelie': 27567, 'america:': 27568, 'america?': 27569, 'amok,': 27570, 'amok.': 27571, 'amy,': 27572, 'analyse': 27573, 'anansa': 27574, 'anchored': 27575, 'andre,': 27576, 'andreas': 27577, 'angeles.': 27578, 'angels"': 27579, 'angst,': 27580, 'anne-marie': 27581, "another's": 27582, 'answered.': 27583, 'anti-christ': 27584, 'anticipated.': 27585, 'anticipates': 27586, 'antics,': 27587, 'antiquated': 27588, 'antiques': 27589, 'antwerp': 27590, 'anymore!': 27591, 'anyone?)': 27592, 'aplomb': 27593, 'apparently.': 27594, 'appeal.<br': 27595, 'appreciate,': 27596, 'apropos': 27597, 'aptitude': 27598, 'arc,': 27599, 'arcs,': 27600, 'aristocrats': 27601, 'arly': 27602, "armstrong's": 27603, 'armstrong,': 27604, "arnold's": 27605, 'arrested,': 27606, 'arrives.': 27607, 'arsenal': 27608, 'arthouse': 27609, 'asian,': 27610, 'assault,': 27611, 'assaulting': 27612, 'assessment': 27613, 'assignment,': 27614, 'assistance.': 27615, 'assures': 27616, 'astounded': 27617, 'astounding,': 27618, 'astutely': 27619, 'asylum,': 27620, 'attached.': 27621, 'attic.': 27622, 'attire': 27623, 'attraction,': 27624, 'auction': 27625, 'audition,': 27626, 'auditions': 27627, 'august,': 27628, 'authentically': 27629, 'authoritative': 27630, 'avery': 27631, 'awfulness.': 27632, 'axe,': 27633, 'b,': 27634, 'babban': 27635, 'babies.': 27636, 'babs': 27637, 'backstabbing': 27638, "bacon's": 27639, 'bad).': 27640, 'badass': 27641, 'baddies.': 27642, 'badly.<br': 27643, 'bait.': 27644, 'bakshi,': 27645, 'baldwin,': 27646, 'ballads': 27647, 'balls,': 27648, 'band.<br': 27649, 'bandits': 27650, 'bang,': 27651, 'bankable': 27652, 'banking': 27653, 'barbarians': 27654, 'bares': 27655, 'baroque': 27656, 'barry,': 27657, 'barton,': 27658, 'basketball.': 27659, 'bauer,': 27660, 'bb': 27661, 'beaver.': 27662, 'beefcake': 27663, 'beek': 27664, 'begin.<br': 27665, 'beginning)': 27666, 'behaviour,': 27667, 'behind.<br': 27668, 'belgium': 27669, 'believed.<br': 27670, 'belushi,': 27671, 'bending': 27672, 'benedict': 27673, 'benkei': 27674, 'berates': 27675, 'bereft': 27676, 'bergen': 27677, 'berman': 27678, 'bernadette': 27679, 'besotted': 27680, 'bestowed': 27681, 'better?': 27682, 'beyond,': 27683, 'bias,': 27684, 'bible,': 27685, 'biko.': 27686, 'billboard': 27687, 'billboards': 27688, 'billions': 27689, 'biograph': 27690, 'biography,': 27691, 'biopics': 27692, 'birthplace': 27693, 'bitch,': 27694, 'bitter-sweet': 27695, 'blackboard': 27696, 'blackout': 27697, 'bled': 27698, 'blind,': 27699, 'blinding': 27700, 'blossomed': 27701, 'blue-collar': 27702, 'blunt.': 27703, 'boarded': 27704, 'boat"': 27705, 'boeing': 27706, 'bolan': 27707, 'bondage"': 27708, 'boobs.': 27709, 'book).': 27710, 'bookstore': 27711, 'boot,': 27712, 'bootleg': 27713, 'bops': 27714, 'borgnine': 27715, 'borzage': 27716, 'bosnia': 27717, 'bothersome': 27718, 'bottom,': 27719, 'bouchet': 27720, 'bouncy': 27721, 'bourne,': 27722, 'bowery': 27723, "boyer's": 27724, 'boyer,': 27725, 'brainwashing': 27726, 'brainy': 27727, 'brakes': 27728, 'breakdancing': 27729, 'breakdown.': 27730, "brendan's": 27731, 'brent,': 27732, 'bribes': 27733, 'brighten': 27734, 'brinke': 27735, 'broadcast.': 27736, 'broadcasts': 27737, 'broderick,': 27738, 'bronze': 27739, 'brooklyn.': 27740, 'brooks.': 27741, 'broomsticks': 27742, 'brotherly': 27743, 'brown)': 27744, 'browning': 27745, 'bruised': 27746, 'brunt': 27747, 'bsg,': 27748, 'budapest': 27749, 'buffalo,': 27750, 'bugged': 27751, 'buildings.': 27752, 'bulging': 27753, 'bumper': 27754, 'bunuel': 27755, 'bureaucratic': 27756, 'burgundy': 27757, 'buscemi,': 27758, 'button,': 27759, "c'mon!": 27760, 'cackling': 27761, 'caesar,': 27762, 'cairo': 27763, 'calls,': 27764, 'cam': 27765, 'cambodia.': 27766, 'cameos,': 27767, 'campus.': 27768, "canada's": 27769, 'cancellation': 27770, 'cancer.': 27771, 'candidate.': 27772, 'cans': 27773, 'capabilities.': 27774, 'capitalism,': 27775, 'capitalists': 27776, 'capitol': 27777, 'caps': 27778, 'capture.': 27779, 'carefully,': 27780, 'cares,': 27781, 'caressing': 27782, 'caretakers': 27783, 'carnage.': 27784, 'carol,': 27785, 'cartwrights': 27786, 'caste': 27787, 'catalina': 27788, 'catapulted': 27789, 'catchy,': 27790, 'caters': 27791, 'cathedral': 27792, 'cattle.': 27793, 'cd,': 27794, 'central.': 27795, 'cents.': 27796, 'channing': 27797, 'chaplin.'#39;: 27798, 'character!': 27799, 'charms.': 27800, 'chasey': 27801, 'chauvinistic': 27802, 'che:': 27803, 'cheek.': 27804, 'cheerleader': 27805, 'cheetah': 27806, 'cheh': 27807, "chen's": 27808, "cher's": 27809, 'chewed': 27810, 'cheyenne': 27811, "chiba's": 27812, 'chicago.': 27813, 'chick,': 27814, 'chillingly': 27815, 'chilly': 27816, "china's": 27817, 'chosen,': 27818, "christie's": 27819, "christine's": 27820, 'chronologically': 27821, 'chunky': 27822, 'churns': 27823, 'ciaran': 27824, 'cigarettes,': 27825, 'cinderella.': 27826, 'cinema:': 27827, 'cinemas.': 27828, 'cinematography.<br': 27829, 'circles.': 27830, 'circling': 27831, 'circumstance.': 27832, 'civilians,': 27833, 'claim,': 27834, 'class.<br': 27835, 'classes,': 27836, 'classically': 27837, 'classmate': 27838, 'claudio': 27839, 'claustrophobic,': 27840, 'clear:': 27841, 'cliche,': 27842, 'cliches.': 27843, "cliff's": 27844, 'close-up,': 27845, 'closely.': 27846, 'closeness': 27847, 'closets': 27848, 'clown,': 27849, 'cloying': 27850, 'cnn': 27851, 'co-directed': 27852, 'coaching': 27853, 'cobbled': 27854, 'collections': 27855, 'collette,': 27856, 'collide': 27857, 'colorless': 27858, 'colourless': 27859, 'columbia,': 27860, 'columnist': 27861, 'combination.': 27862, 'comedians,': 27863, 'comedy"': 27864, "comedy's": 27865, 'comely': 27866, 'comes.': 27867, 'comeuppance': 27868, 'comic.': 27869, 'commitments': 27870, 'compassion,': 27871, 'compassion.': 27872, 'competent.': 27873, 'complaint.': 27874, 'complaints.': 27875, 'complemented': 27876, 'con-man': 27877, 'concept.<br': 27878, 'concerned.<br': 27879, 'conchita': 27880, 'conform': 27881, 'confrontations': 27882, 'congratulated': 27883, 'conjunction': 27884, 'conjured': 27885, 'conscience,': 27886, 'conscientious': 27887, 'consent': 27888, 'consequence.': 27889, 'conspiracies': 27890, 'conspiracy,': 27891, 'conte': 27892, 'contract,': 27893, 'contradicts': 27894, 'controlled.': 27895, 'conventions,': 27896, 'converse': 27897, 'convictions': 27898, 'convince.': 27899, 'coolly': 27900, 'corin': 27901, 'coronation': 27902, 'correctional': 27903, 'correspondence': 27904, 'costs.<br': 27905, 'couch,': 27906, 'coulardeau,': 27907, 'coulouris': 27908, 'courtship': 27909, 'cowboy,': 27910, 'cox)': 27911, 'coy': 27912, 'crabs': 27913, 'crackling': 27914, 'crave': 27915, 'craves': 27916, 'craze': 27917, 'craze.': 27918, 'creativity.': 27919, 'creditable': 27920, "crew's": 27921, 'crews': 27922, 'cringed.': 27923, "crosby's": 27924, 'crossover': 27925, 'crucifix': 27926, 'crude.': 27927, 'cruelty,': 27928, 'cruelty.': 27929, 'cruise,': 27930, 'cuba.': 27931, 'cubans': 27932, 'cultures,': 27933, 'cups': 27934, 'cusack)': 27935, 'cusak': 27936, 'customer': 27937, 'cut"': 27938, 'cutouts': 27939, 'cynics': 27940, 'cédric': 27941, 'd.a.': 27942, 'daddy,': 27943, 'daffy': 27944, "dahl's": 27945, "dahmer's": 27946, 'daisies"': 27947, 'damian': 27948, "danes'": 27949, 'daniela': 27950, 'daredevil': 27951, 'dashes': 27952, "davies'": 27953, 'davy': 27954, "day'": 27955, 'day).': 27956, 'day."': 27957, "days'": 27958, 'dazed': 27959, 'dealer.': 27960, 'dear.': 27961, 'dearly': 27962, 'death!': 27963, 'deathbed': 27964, 'debonair': 27965, 'debt.': 27966, 'decadence': 27967, 'deceit': 27968, 'deceived': 27969, 'decide.': 27970, 'decline,': 27971, 'decline.': 27972, 'decoration,': 27973, 'decoy': 27974, 'deeper,': 27975, 'defeated,': 27976, 'deficiencies': 27977, 'defied': 27978, 'definetly': 27979, 'definitively': 27980, 'degenerated': 27981, 'delight,': 27982, 'delved': 27983, 'demented,': 27984, "demille's": 27985, 'denouement.': 27986, 'dentists': 27987, 'departments.': 27988, 'derision': 27989, 'desires,': 27990, 'desmond': 27991, 'destroyed,': 27992, 'detail.<br': 27993, 'deteriorating': 27994, 'detour': 27995, 'deviant': 27996, 'dialogue;': 27997, 'dianne': 27998, 'diaper': 27999, 'dichotomy': 28000, 'dictating': 28001, 'diction': 28002, 'did)': 28003, 'did),': 28004, 'differences,': 28005, 'diffident': 28006, 'digicorp': 28007, 'dimwit': 28008, 'directions,': 28009, 'discipline,': 28010, 'discussion.': 28011, 'disgust.': 28012, 'dish.': 28013, 'disheveled': 28014, 'disliking': 28015, 'disorder,': 28016, 'disposition': 28017, 'disregards': 28018, 'dissertation': 28019, 'distinguishing': 28020, 'distraction,': 28021, 'disturbingly': 28022, 'disturbs': 28023, 'ditch': 28024, 'divers': 28025, 'do...': 28026, 'docile': 28027, 'docudrama': 28028, 'documentary.<br': 28029, 'documentation': 28030, 'doesn`t': 28031, "don't!": 28032, 'donna,': 28033, 'donovan': 28034, 'doom,': 28035, 'dorff': 28036, 'dorsey': 28037, 'doting': 28038, 'doubted': 28039, 'doubtlessly': 28040, 'doubts,': 28041, 'dough': 28042, 'dourif': 28043, 'downs.': 28044, "doyle's": 28045, 'drab,': 28046, "dracula's": 28047, 'drama!': 28048, 'dribble': 28049, 'drip': 28050, 'drive.': 28051, 'drones': 28052, 'dropped.': 28053, 'drummer,': 28054, 'ds9': 28055, 'dubbing.': 28056, 'duck,': 28057, 'dudikoff': 28058, 'dueling': 28059, 'duffell': 28060, 'dullest': 28061, 'dumbfounded': 28062, 'dunno': 28063, 'duplicitous': 28064, 'duran': 28065, 'duryea,': 28066, 'dust,': 28067, 'dutifully': 28068, 'dvd?': 28069, 'dvds.': 28070, 'earth-shattering': 28071, 'eartha': 28072, 'easygoing': 28073, 'eat,': 28074, 'eaten,': 28075, 'eccleston': 28076, 'ecstatic': 28077, 'eddie,': 28078, 'edel': 28079, "edison's": 28080, 'editor.': 28081, 'eduardo': 28082, 'effects?': 28083, 'electra': 28084, 'electrocuted': 28085, 'elicited': 28086, 'ellie': 28087, 'ellis': 28088, 'elmore': 28089, 'eloquently': 28090, 'ely': 28091, 'embody': 28092, 'emotionally.': 28093, 'emphasized': 28094, 'empire.': 28095, 'encounters.': 28096, 'end:': 28097, 'ending;': 28098, 'endings,': 28099, 'engines': 28100, 'england.<br': 28101, 'enough)': 28102, 'enough:': 28103, 'enough?': 28104, 'ensue,': 28105, 'entertained.<br': 28106, 'enthusiasm.': 28107, 'entrenched': 28108, 'entrepreneur': 28109, 'entwined': 28110, 'environments': 28111, 'epiphany': 28112, 'episode:': 28113, 'episodes)': 28114, 'equal.': 28115, 'equally.': 28116, "era's": 28117, 'eric,': 28118, 'ernesto': 28119, 'escapades': 28120, 'escapism': 28121, 'esp': 28122, 'essence,': 28123, 'establishment.': 28124, 'estate,': 28125, 'etc),': 28126, 'eve,': 28127, 'evenings': 28128, 'everyday,': 28129, 'everywhere.<br': 28130, 'exactly.': 28131, 'exaggerated.': 28132, 'exam': 28133, 'examples.': 28134, 'exasperated': 28135, 'excellent;': 28136, 'exceptions.': 28137, 'exclaims': 28138, 'excluding': 28139, 'exercise,': 28140, 'expecting.': 28141, 'expend': 28142, 'experiments,': 28143, 'expletives': 28144, 'explode,': 28145, 'exploitative,': 28146, 'extinction': 28147, 'exuberance': 28148, 'f**k': 28149, 'f*ck': 28150, 'fabled': 28151, 'fabulously': 28152, 'fairy,': 28153, 'faithful,': 28154, 'fakes': 28155, 'fantastic.<br': 28156, 'fast-food': 28157, 'fast-forwarding': 28158, 'fastest': 28159, 'fatalistic': 28160, 'father)': 28161, 'father/son': 28162, 'father?': 28163, 'fathers,': 28164, 'favorably': 28165, 'favourite,': 28166, "fay's": 28167, 'fbi,': 28168, 'fee': 28169, 'felix,': 28170, 'feminist,': 28171, 'fence,': 28172, 'ferrer,': 28173, 'fervent': 28174, 'fetishistic': 28175, 'fictional,': 28176, 'fields.': 28177, 'fight.<br': 28178, 'film!)': 28179, 'film--and': 28180, 'film..': 28181, 'filmmaking,': 28182, 'filmography,': 28183, 'finland': 28184, 'finney,': 28185, 'firefighter': 28186, 'flaccid': 28187, 'flawlessly': 28188, 'flicks.<br': 28189, 'flights': 28190, 'floundering': 28191, 'fluent': 28192, 'fluids': 28193, 'fog,': 28194, 'fold': 28195, 'folk,': 28196, 'folk.': 28197, 'follower': 28198, 'following,': 28199, 'following:<br': 28200, "fool's": 28201, 'fooled.': 28202, 'foolishness': 28203, 'fools,': 28204, 'force.<br': 28205, 'forceful': 28206, 'forensics': 28207, 'forever!': 28208, 'formulaic.': 28209, 'forwards': 28210, 'francis,': 28211, 'franka': 28212, 'franks': 28213, 'fraser': 28214, 'fraud.': 28215, 'frazetta': 28216, 'freddy,': 28217, 'freedom"': 28218, 'friendships,': 28219, 'frightens': 28220, 'frits': 28221, 'frustration.': 28222, 'fun!<br': 28223, 'functional': 28224, 'funny"': 28225, 'fury,': 28226, 'fury.': 28227, 'fuse': 28228, 'gabbar': 28229, 'gadget.': 28230, 'galaxy,': 28231, 'gallons': 28232, 'gandolfini,': 28233, 'garam': 28234, 'garbled': 28235, 'garbo.': 28236, 'gardenia': 28237, 'gardiner': 28238, 'gardner': 28239, "gary's": 28240, 'gate,': 28241, 'gaunt': 28242, 'gawd': 28243, 'gazes': 28244, 'geezer': 28245, 'gen': 28246, "general's": 28247, 'generals': 28248, 'geography': 28249, 'georgian': 28250, 'gere,': 28251, 'germans.': 28252, "gershwin's": 28253, 'ghetto.': 28254, 'ghibli': 28255, 'ghoul': 28256, 'gialli': 28257, 'gigi': 28258, 'gingold': 28259, 'girotti': 28260, 'glitzy': 28261, 'glory.<br': 28262, 'glows': 28263, 'gobs': 28264, 'god?': 28265, 'godfather"': 28266, 'goers.': 28267, 'goldwyn': 28268, 'gonzalez': 28269, 'goods.': 28270, 'goofball': 28271, 'goofs,': 28272, 'gosh': 28273, 'gould': 28274, 'govind': 28275, 'grader': 28276, 'grandchildren': 28277, 'grander': 28278, 'grasshoppers': 28279, 'gratefully': 28280, 'grave.<br': 28281, "grayson's": 28282, 'greeting': 28283, 'greets': 28284, 'grenades': 28285, "grey's": 28286, 'grimm': 28287, 'grin.': 28288, "grinch's": 28289, 'grinch.': 28290, 'grinds': 28291, 'grodin': 28292, 'gross.': 28293, 'groupie': 28294, 'guadalcanal': 28295, 'guess)': 28296, 'guests,': 28297, 'guy)': 28298, 'ha.': 28299, 'hair"': 28300, 'haircut': 28301, 'hallie': 28302, 'hallmarks': 28303, 'halperin': 28304, "hammer's": 28305, 'hammering': 28306, 'hammett': 28307, 'hammond': 28308, 'hand-drawn': 28309, 'hanged': 28310, 'hanka': 28311, "hanks'": 28312, 'hansen': 28313, 'happen!': 28314, 'harassing': 28315, 'harassment': 28316, 'hard-earned': 28317, 'harem': 28318, "hark's": 28319, 'harlequin': 28320, 'harmless,': 28321, 'harshly': 28322, "harvey's": 28323, 'hattie': 28324, 'haunting.': 28325, 'have:': 28326, 'havent': 28327, 'hayes,': 28328, 'hazard': 28329, 'hbo,': 28330, 'hbo.': 28331, 'he`s': 28332, 'headed.': 28333, 'headlight': 28334, 'headmistress': 28335, 'headphones': 28336, 'health,': 28337, 'heaping': 28338, 'heaps': 28339, 'hear,': 28340, 'heard.<br': 28341, 'heart-breaking': 28342, 'heartbreaking,': 28343, 'helen,': 28344, 'helicopter,': 28345, 'helplessness': 28346, 'hemingway': 28347, 'hepburn.': 28348, 'here."': 28349, 'hermit': 28350, 'hey!': 28351, 'high-pitched': 28352, 'high-profile': 28353, 'highs': 28354, 'hills.': 28355, 'hilton,': 28356, 'hobson': 28357, 'holloway': 28358, 'honesty.': 28359, 'honky': 28360, 'hook,': 28361, 'hookers': 28362, 'hooking': 28363, 'hopper.': 28364, 'horatio': 28365, 'hormones': 28366, 'horrific,': 28367, 'horrifically': 28368, 'horror!': 28369, 'horrorfest': 28370, 'horton': 28371, 'housed': 28372, 'howard.': 28373, 'huggins': 28374, 'hugs': 28375, 'human.<br': 28376, 'humanly': 28377, 'humourless': 28378, 'huntley': 28379, 'husbands,': 28380, 'huston,': 28381, 'hut': 28382, 'hypocrite': 28383, 'i.e': 28384, 'idea;': 28385, 'idea?': 28386, 'identical,': 28387, 'identifies': 28388, 'ideologies': 28389, 'ie': 28390, 'ifc': 28391, 'illinois.': 28392, 'imitates': 28393, 'immortality': 28394, 'impassioned': 28395, 'impeccable.': 28396, 'improve.': 28397, 'impulsive': 28398, 'incessantly': 28399, 'inconceivable': 28400, 'incorrect,': 28401, 'incubus': 28402, 'indescribable': 28403, 'inexorably': 28404, 'inferno': 28405, 'inhabiting': 28406, 'initiated': 28407, 'initiative': 28408, 'inner-city': 28409, 'innermost': 28410, 'insertion': 28411, "insomniac's": 28412, 'instinct"': 28413, 'instinctively': 28414, 'interesting;': 28415, 'interfering': 28416, 'intervals': 28417, 'interviewer': 28418, 'introspection': 28419, 'intrusion': 28420, 'inventions': 28421, 'inventive.': 28422, 'investigators': 28423, 'investors': 28424, 'invests': 28425, 'inxs': 28426, 'irascible': 28427, 'iris,': 28428, 'irony.': 28429, 'irrelevant,': 28430, 'irreversible': 28431, 'is),': 28432, 'is..': 28433, 'isaacs': 28434, 'ishii': 28435, 'islam,': 28436, 'isn`t': 28437, 'isolation,': 28438, 'it--': 28439, 'it<br': 28440, 'itself?': 28441, 'iv:': 28442, 'j-horror': 28443, 'jabs': 28444, "james'": 28445, 'jammed': 28446, 'janice': 28447, 'jansen': 28448, 'jargon': 28449, 'jazz,': 28450, 'jealous.': 28451, 'jeez,': 28452, 'jeff,': 28453, 'jenny,': 28454, 'jerry"': 28455, 'jersey,': 28456, 'jester': 28457, 'jesus.': 28458, 'jewison': 28459, 'jimmie': 28460, 'jimmy,': 28461, "joan's": 28462, 'joaquin': 28463, 'jody': 28464, 'johansson,': 28465, 'johns': 28466, 'joke!': 28467, 'joker,': 28468, 'jolie,': 28469, 'jong-chan': 28470, 'jr,': 28471, 'julia,': 28472, "julian's": 28473, 'julius': 28474, 'jumbled,': 28475, 'justice"': 28476, 'juvenile.': 28477, 'juxtaposing': 28478, 'kapoor,': 28479, 'kara': 28480, "karen's": 28481, 'kasdan': 28482, 'keaton.': 28483, 'kells.': 28484, 'kevin,': 28485, 'kher': 28486, 'kicker': 28487, 'kidnapped,': 28488, 'kids!': 28489, 'kimberly': 28490, 'king"': 28491, 'kingpin': 28492, 'kino': 28493, 'kip': 28494, 'kleenex': 28495, 'knightley,': 28496, 'knit': 28497, 'knowing,': 28498, 'korman': 28499, 'kowalski': 28500, 'kralik': 28501, 'kureishi': 28502, 'kurosawa,': 28503, 'labelled': 28504, 'labute': 28505, 'labyrinth,': 28506, 'labyrinthine': 28507, 'lambs': 28508, 'landau': 28509, 'lando': 28510, 'landon': 28511, 'languages,': 28512, 'languages.': 28513, 'languid': 28514, 'larry,': 28515, 'last.<br': 28516, 'latina': 28517, 'lava': 28518, 'lavender': 28519, "lean's": 28520, 'learn,': 28521, 'lecturer': 28522, 'leg.': 28523, 'legitimacy': 28524, "lemmon's": 28525, 'lending': 28526, 'lesbian.': 28527, 'lesser-known': 28528, 'let-down': 28529, 'lever': 28530, 'levinson': 28531, "lewis'": 28532, 'liberal,': 28533, 'liberals': 28534, 'life."': 28535, 'lightening': 28536, 'likes.': 28537, 'lily,': 28538, 'limitations,': 28539, 'linden': 28540, 'little-known': 28541, "liu's": 28542, 'loading': 28543, 'lohan': 28544, 'lok': 28545, 'lol,': 28546, 'longer.<br': 28547, 'loni': 28548, 'looting': 28549, 'losers.': 28550, 'louie': 28551, "louis's": 28552, 'love",': 28553, 'love-hate': 28554, 'love-story': 28555, 'lovemaking': 28556, 'lower.': 28557, 'lows': 28558, 'loy,': 28559, "lubitsch's": 28560, 'lucas,': 28561, 'lucien': 28562, 'luger': 28563, 'lull': 28564, 'lundgren,': 28565, 'lydia': 28566, 'lying,': 28567, 'macgyver': 28568, 'machina': 28569, 'madam': 28570, 'made-up': 28571, 'madge': 28572, 'maestro': 28573, 'magic.<br': 28574, 'magnificence': 28575, 'mail,': 28576, 'mainly,': 28577, 'make-up.': 28578, 'makeshift': 28579, 'malik': 28580, 'maléfique': 28581, 'man-made': 28582, 'manifestation': 28583, 'mankiewicz': 28584, 'map,': 28585, 'marbles': 28586, 'mard': 28587, 'margheriti': 28588, 'mariette': 28589, 'marilu': 28590, "mark's": 28591, 'marsden': 28592, 'massachusetts': 28593, 'masterpieces.': 28594, 'maternity': 28595, 'matinee': 28596, 'matron': 28597, 'maude': 28598, 'mayhem,': 28599, 'mayhem.': 28600, "mayor's": 28601, 'maysles': 28602, 'mcclure': 28603, 'mccoy,': 28604, "mcdonald's": 28605, 'mcguire': 28606, 'mchugh': 28607, 'mckenna': 28608, "mclaglen's": 28609, 'mcnally': 28610, 'me",': 28611, 'me".': 28612, 'meaningless.': 28613, 'mecha': 28614, 'mediocrity.': 28615, 'mediterranean': 28616, 'meeker': 28617, 'melancholy,': 28618, 'melodic': 28619, 'member.': 28620, 'menace,': 28621, 'menzies': 28622, 'merchandise': 28623, 'merrill': 28624, 'merrill,': 28625, 'messages.': 28626, 'meters': 28627, 'methods.': 28628, 'metro': 28629, 'mid-air': 28630, 'midlife': 28631, 'midwestern': 28632, 'milius': 28633, 'milking': 28634, 'milverton': 28635, 'mind"': 28636, 'mind)': 28637, 'minding': 28638, 'mindset.': 28639, 'mine.<br': 28640, 'ministry': 28641, 'minor,': 28642, 'minute.<br': 28643, 'mirren': 28644, 'mirrored': 28645, 'miscarriage': 28646, 'mischief': 28647, 'miserably,': 28648, 'misled': 28649, 'miss.<br': 28650, 'missed!': 28651, 'missing.<br': 28652, 'misunderstood,': 28653, 'mitch,': 28654, 'mixed-up': 28655, 'mob.': 28656, 'modelling': 28657, 'molesting': 28658, 'molina': 28659, 'momentary': 28660, 'monastery,': 28661, "money's": 28662, 'money...': 28663, 'mono': 28664, 'monologue.': 28665, 'monologues,': 28666, 'monroe,': 28667, 'moocow': 28668, "moon's": 28669, 'morales': 28670, 'morals.': 28671, 'morbidly': 28672, "morris'": 28673, 'morrissey': 28674, 'morty': 28675, 'most.<br': 28676, 'mother)': 28677, 'motions.': 28678, 'motivating': 28679, 'motivation.': 28680, 'motivations,': 28681, 'motive.': 28682, 'mountain"': 28683, 'mouths.': 28684, 'movie,"': 28685, 'movie-making,': 28686, 'movie:<br': 28687, 'movies..': 28688, 'moving.<br': 28689, 'mph': 28690, 'mullet': 28691, 'multi-faceted': 28692, 'multiplex': 28693, 'mumbo-jumbo': 28694, 'music!': 28695, 'musically': 28696, 'muted,': 28697, 'mutiny': 28698, 'muttering': 28699, 'myself)': 28700, 'mysterious.': 28701, 'mystified': 28702, 'mythology.': 28703, 'na': 28704, 'napier': 28705, 'narrow-minded': 28706, 'nasal': 28707, 'nascent': 28708, "natali's": 28709, 'nath': 28710, 'nathan,': 28711, "nature's": 28712, 'natures': 28713, 'nausea.': 28714, 'navy.': 28715, 'nba': 28716, 'ne': 28717, 'negotiation': 28718, "nelson's": 28719, 'nemesis,': 28720, 'nemesis.': 28721, 'nepotism': 28722, 'nerd,': 28723, 'netflix,': 28724, 'netflix.': 28725, 'never.': 28726, 'nice-looking': 28727, 'nicolai': 28728, 'nightmare"': 28729, 'nihilistic': 28730, 'nineteenth': 28731, 'nobody.': 28732, "nolte's": 28733, 'norm.': 28734, 'north,': 28735, 'nostalgia,': 28736, 'noticed,': 28737, 'notting': 28738, 'novel).': 28739, 'novels.<br': 28740, 'nuisance': 28741, 'nursery': 28742, 'nyqvist': 28743, "o'connor's": 28744, "o'donnell": 28745, "o'neil": 28746, 'objective,': 28747, 'obscure.': 28748, 'obsession,': 28749, 'occur.': 28750, 'occurrences': 28751, 'occurs.': 28752, "ocean's": 28753, 'oddness': 28754, 'odds.': 28755, 'oedipal': 28756, 'off-putting': 28757, 'off...': 28758, 'offensively': 28759, 'old-school': 28760, 'olivier,': 28761, 'omission': 28762, 'omnipresent': 28763, 'one-joke': 28764, 'onslaught': 28765, 'opinion).': 28766, 'opportunity.<br': 28767, 'oppose': 28768, 'opposites': 28769, 'orcs': 28770, 'originally,': 28771, 'originals.': 28772, "orwell's": 28773, 'oswald': 28774, 'others).': 28775, 'otherwise.<br': 28776, "out'": 28777, 'out...': 28778, 'outdid': 28779, 'outdoors': 28780, 'outshine': 28781, 'outsmart': 28782, 'outwardly': 28783, 'over-dramatic': 28784, 'over-rated': 28785, 'overacted': 28786, 'overdose': 28787, 'overhears': 28788, 'overlooked,': 28789, 'overriding': 28790, 'overrun': 28791, 'overshadows': 28792, 'overstated': 28793, 'overzealous': 28794, "owen's": 28795, 'oz.': 28796, 'ozu': 28797, 'pace.<br': 28798, 'pacific.': 28799, 'padding.': 28800, 'pages,': 28801, 'paget': 28802, 'paid,': 28803, 'palance,': 28804, 'palermo,': 28805, 'panther': 28806, 'pantomime': 28807, 'papa': 28808, 'paperback': 28809, 'parades': 28810, 'parent.': 28811, 'parsons,': 28812, 'party.<br': 28813, 'pas': 28814, 'passport': 28815, 'pastoral': 28816, 'patched': 28817, 'patches': 28818, 'patchy': 28819, 'patton': 28820, 'payback': 28821, 'payoff.': 28822, 'payroll': 28823, 'peach': 28824, 'pedestal': 28825, 'pedigree': 28826, 'peers.': 28827, "pegg's": 28828, 'penetrate': 28829, 'penetrating': 28830, 'pentagon': 28831, 'perceptions': 28832, 'percy': 28833, 'performance;': 28834, 'perhaps?': 28835, 'periods,': 28836, 'personas': 28837, 'personification': 28838, 'perspectives,': 28839, 'pert': 28840, 'pertinent': 28841, 'peru': 28842, 'peters)': 28843, 'peters,': 28844, 'petite': 28845, 'petrified': 28846, 'phenomena': 28847, 'phenomenal.': 28848, 'phenomenally': 28849, 'pheri': 28850, 'philippines': 28851, 'philosophies': 28852, 'phony,': 28853, 'picture?': 28854, 'pie,': 28855, 'piece.<br': 28856, 'piggy': 28857, 'pile.': 28858, 'pilgrimage': 28859, 'pill': 28860, 'pinch': 28861, 'pinchot': 28862, 'ping': 28863, 'pinning': 28864, 'pioneering': 28865, 'pit.': 28866, 'pitiable': 28867, 'pj': 28868, 'place"': 28869, 'plague.<br': 28870, 'plant,': 28871, 'plasma': 28872, 'platitudes': 28873, "play's": 28874, 'playwright,': 28875, 'pleading': 28876, 'pleased.': 28877, 'pleases': 28878, 'pleasingly': 28879, 'plodding,': 28880, 'plum': 28881, 'pluto': 28882, 'pods': 28883, 'poignantly': 28884, 'point!': 28885, 'pointlessness': 28886, 'poles': 28887, 'polluted': 28888, 'polyester': 28889, 'pornography,': 28890, 'portrayals,': 28891, 'positions,': 28892, 'possible)': 28893, 'post,': 28894, 'potatoes': 28895, 'potboiler': 28896, 'powell)': 28897, 'ppl': 28898, 'practice,': 28899, 'prag"': 28900, 'pratfalls': 28901, 'prays': 28902, 'preaches': 28903, 'preconceived': 28904, 'predictability.': 28905, 'predicting': 28906, 'prelude': 28907, 'preminger,': 28908, 'pressburger': 28909, 'pressure,': 28910, 'pressure.': 28911, 'pressured': 28912, 'prestige': 28913, 'preteen': 28914, 'pretentiousness': 28915, 'pride.': 28916, 'prim': 28917, 'prime-time': 28918, 'principally': 28919, 'priority': 28920, 'prisons': 28921, 'prize,': 28922, 'problems:': 28923, 'produce.': 28924, 'properties': 28925, 'prophecies': 28926, 'proportions': 28927, 'propose': 28928, 'props.': 28929, 'prose': 28930, 'proximity': 28931, 'prude': 28932, 'ps': 28933, 'psyche.': 28934, 'psychologist,': 28935, 'puberty': 28936, 'publicity.': 28937, 'pufnstuf': 28938, 'pumps': 28939, 'punjabi': 28940, 'puppets.': 28941, 'purportedly': 28942, 'putain"': 28943, 'pyrotechnics': 28944, 'quaid,': 28945, 'qualifying': 28946, 'queen"': 28947, 'queue': 28948, 'quid': 28949, 'quiet.': 28950, 'quit.': 28951, 'quiz': 28952, 'rabbit,': 28953, 'rabbit.': 28954, 'raf': 28955, 'rafael': 28956, 'rags': 28957, 'rama': 28958, 'rambles': 28959, 'rambo,': 28960, 'ramones.': 28961, 'rampaging': 28962, 'randall,': 28963, 'ranged': 28964, 'rangers.': 28965, 'rants': 28966, 'raped.': 28967, 'rated.': 28968, 'rationale': 28969, 'rattling': 28970, 'ravaged': 28971, 'raved': 28972, 'ray.': 28973, 're-released': 28974, 're-watched': 28975, 'reactions.': 28976, 'realism.<br': 28977, 'reason),': 28978, 'recap:': 28979, 'recites': 28980, 'recorder': 28981, 'rectify': 28982, 'redefined': 28983, 'redemptive': 28984, 'redgrave,': 28985, 'redone': 28986, 'redundant,': 28987, 'reeve,': 28988, 'reeves,': 28989, 'ref': 28990, 'regency': 28991, 'region.': 28992, 'registers': 28993, 'registration': 28994, 'regurgitated': 28995, "reid's": 28996, 'reindeer': 28997, 'relations.': 28998, 'releases.': 28999, 'religiously': 29000, 'reluctance': 29001, 'remakes,': 29002, 'remarked': 29003, 'remarks,': 29004, 'remember.<br': 29005, 'reminders': 29006, 'rental.<br': 29007, 'repay': 29008, 'repeated.': 29009, 'representatives': 29010, 'reproduction': 29011, 'reptile': 29012, 'rescue,': 29013, 'residing': 29014, 'resonated': 29015, 'respects,': 29016, 'resting': 29017, 'restrictive': 29018, 'resurgence': 29019, 'retard': 29020, 'retribution': 29021, 'returns.': 29022, 'reubens': 29023, 'revelation,': 29024, 'revenge"': 29025, 'rewatch': 29026, 'rewound': 29027, 'reynolds)': 29028, 'rhetoric': 29029, 'rhoda': 29030, 'rhodes': 29031, 'rico,': 29032, 'right...': 29033, 'rights.': 29034, 'rise,': 29035, "rita's": 29036, 'rival.': 29037, 'roast': 29038, 'robe': 29039, 'roberta': 29040, 'robocop': 29041, "rock'n'roll": 29042, 'rocked': 29043, 'role;': 29044, 'romero,': 29045, 'romps': 29046, 'rookie"': 29047, "room'": 29048, 'room?': 29049, 'rooney,': 29050, 'rosalba': 29051, 'rosalind': 29052, 'roseanne': 29053, 'rotation': 29054, 'ruins,': 29055, 'runt': 29056, 'ruse': 29057, 'rut': 29058, "ruth's": 29059, 'rv': 29060, 'ryder': 29061, 'sabotaged': 29062, 'saddening': 29063, 'sadder': 29064, 'sadism': 29065, 'sale,': 29066, 'salon': 29067, 'sam.': 29068, 'sampson': 29069, "sant's": 29070, 'sartain': 29071, 'satisfaction.': 29072, "saura's": 29073, 'savini,': 29074, 'savor': 29075, 'saw.<br': 29076, 'saxophone': 29077, 'sayonara': 29078, 'scandal,': 29079, 'scanner': 29080, 'scar': 29081, 'scarf': 29082, 'scariness': 29083, "scarlet's": 29084, 'scatman': 29085, 'scent': 29086, 'schildkraut': 29087, 'schizophrenia': 29088, 'schmid': 29089, 'schmidt': 29090, 'schneebaum': 29091, 'sciamma': 29092, 'scola': 29093, 'scott)': 29094, "screen's": 29095, 'screen)': 29096, 'screens,': 29097, 'script!': 29098, 'script).': 29099, 'scroll': 29100, 'scrub': 29101, 'scumbags': 29102, 'scurry': 29103, 'se.': 29104, "sean's": 29105, 'searing': 29106, 'season!': 29107, 'seasonal': 29108, 'seasons.<br': 29109, 'seats.': 29110, 'secured': 29111, 'seductively': 29112, 'see...': 29113, 'seen)': 29114, "segal's": 29115, 'seinfeld': 29116, 'seized': 29117, 'selections': 29118, 'self-contained': 29119, 'self-indulgence': 29120, 'self-indulgent,': 29121, 'self-involved': 29122, 'self-loathing': 29123, 'selfless': 29124, 'sell,': 29125, 'sell.': 29126, 'selleck': 29127, 'sematary"': 29128, 'sensationally': 29129, 'sense)': 29130, 'sepia': 29131, 'serial.': 29132, 'sermon': 29133, 'set-ups': 29134, "shah's": 29135, 'shambles.': 29136, 'sharma': 29137, 'shave': 29138, 'shed,': 29139, 'sheffer': 29140, 'shelton': 29141, 'shifty': 29142, 'shining,': 29143, 'shipment': 29144, 'shiver': 29145, 'sho,': 29146, 'shoot-out': 29147, 'shoot-outs': 29148, 'shooters': 29149, 'shootouts,': 29150, 'shortcomings,': 29151, 'shoulders,': 29152, 'show".': 29153, 'showbiz': 29154, 'showdown.': 29155, 'showering': 29156, 'shreds': 29157, 'shuffling': 29158, 'si': 29159, 'siegfried': 29160, 'sign,': 29161, 'silvio': 29162, 'simmering': 29163, 'simplistic,': 29164, 'sin,': 29165, 'singapore': 29166, 'singled': 29167, 'sir,': 29168, 'sirens': 29169, 'sister?': 29170, 'sith': 29171, 'size.': 29172, 'sjoman': 29173, 'skeet': 29174, 'skelton': 29175, 'skid': 29176, 'skipper': 29177, 'skippy': 29178, 'skit,': 29179, 'slate': 29180, 'slavery,': 29181, 'slay': 29182, 'sledgehammer': 29183, 'sleeve.': 29184, 'slice-of-life': 29185, 'sloppily': 29186, 'slovenian': 29187, 'slowness': 29188, 'smith.<br': 29189, 'smoke,': 29190, 'smuggled': 29191, 'smut': 29192, 'snag': 29193, 'snail': 29194, 'snicker': 29195, 'snide': 29196, 'snooping': 29197, 'snow.': 29198, 'soap-opera': 29199, 'soapy': 29200, 'socio-political': 29201, 'sod': 29202, 'sofa': 29203, 'softly': 29204, 'soil': 29205, 'solicitor': 29206, 'solomon': 29207, 'solved.': 29208, 'someday.': 29209, 'someplace': 29210, 'son)': 29211, 'song)': 29212, 'songwriter': 29213, 'sonja': 29214, 'sooner.': 29215, 'sorting': 29216, 'soundtracks': 29217, 'source,': 29218, 'sources.': 29219, 'spacecamp': 29220, 'spaced': 29221, 'spaces,': 29222, 'spader': 29223, 'specializes': 29224, 'specifics': 29225, 'sphere': 29226, 'sphinx': 29227, 'spiraling': 29228, 'spirit"': 29229, 'splendor': 29230, 'splits': 29231, "spock's": 29232, 'spoiler:': 29233, 'spoilers*': 29234, 'spoilers:': 29235, 'sponge': 29236, 'spotty': 29237, 'sprung': 29238, 'sputnik': 29239, 'squadron': 29240, 'staff,': 29241, 'stagecoach': 29242, 'staged,': 29243, 'stagey': 29244, 'stairs.': 29245, 'startlingly': 29246, 'starved': 29247, 'state-of-the-art': 29248, 'stately': 29249, 'states.<br': 29250, 'statue,': 29251, 'steely': 29252, 'steeped': 29253, 'stepin': 29254, 'steps,': 29255, 'stirba': 29256, 'stocks': 29257, 'stomped': 29258, 'stones,': 29259, 'stormare': 29260, 'strangers,': 29261, 'strangers.': 29262, "streep's": 29263, 'strident': 29264, 'strike,': 29265, 'strike.': 29266, 'stripping': 29267, 'strode': 29268, 'strombel': 29269, 'stronger,': 29270, 'strutting': 29271, 'stunk': 29272, 'stunned.': 29273, 'stupidity,': 29274, 'styling': 29275, 'styrofoam': 29276, 'sub-genre.': 29277, 'subjecting': 29278, 'substantially': 29279, 'subtitles)': 29280, 'subtitles.<br': 29281, 'succeed,': 29282, 'successive': 29283, 'sucked.<br': 29284, 'sued': 29285, 'suffocating': 29286, 'sugiyama': 29287, 'suit"': 29288, 'suitors': 29289, 'sullivan.': 29290, 'summertime': 29291, 'sunlight': 29292, 'super-hero': 29293, 'superbly.': 29294, 'superhero,': 29295, 'superstars': 29296, 'supposedly,': 29297, 'surfing.': 29298, 'surplus': 29299, 'surrealist': 29300, 'survival,': 29301, 'susan,': 29302, 'swain': 29303, 'swallow.': 29304, 'swapping': 29305, 'sweetheart,': 29306, 'swoon': 29307, 'swords,': 29308, 'symbolically': 29309, 'synopsis.': 29310, 't\'aime"': 29311, 'tags': 29312, 'tales.': 29313, 'talkie,': 29314, 'tame,': 29315, 'tamed': 29316, 'tan': 29317, 'tantalizing': 29318, 'tap"': 29319, 'tarantino,': 29320, 'targeting': 29321, 'teachers,': 29322, 'teamwork': 29323, 'technicolor.': 29324, 'ted.': 29325, 'teen,': 29326, 'templar': 29327, 'tempt': 29328, 'tent,': 29329, 'teresa': 29330, 'term.': 29331, 'terrifying,': 29332, 'terrorising': 29333, 'terrors': 29334, 'testify': 29335, 'testosterone': 29336, 'tha': 29337, 'that!<br': 29338, 'that?"': 29339, 'theatres.': 29340, 'theme:': 29341, 'themselves)': 29342, 'theorists': 29343, 'therapist,': 29344, "there're": 29345, 'thereof)': 29346, 'these.<br': 29347, 'thighs': 29348, 'things)': 29349, 'think...': 29350, 'thinking:': 29351, 'this-': 29352, 'this...<br': 29353, 'thou': 29354, 'though)': 29355, 'though;': 29356, 'threat.': 29357, 'threshold': 29358, 'thrill,': 29359, 'throne.': 29360, 'tibet': 29361, 'ticking': 29362, 'time."': 29363, 'times:': 29364, 'titillation': 29365, 'to).': 29366, "todd's": 29367, 'together!': 29368, 'tones,': 29369, 'tongue-in-cheek,': 29370, 'tongues': 29371, 'too!)': 29372, 'too?': 29373, 'torches': 29374, 'torrid': 29375, 'touching.<br': 29376, 'tourneur': 29377, 'towers,': 29378, 'tracing': 29379, 'train-wreck': 29380, 'trains,': 29381, 'tramell': 29382, 'transcendental': 29383, 'transformers,': 29384, 'transports': 29385, 'travelled': 29386, 'travelogue': 29387, 'treachery': 29388, 'treat.<br': 29389, 'tripe.<br': 29390, 'tripod': 29391, 'triumph,': 29392, 'troops.': 29393, 'true!': 29394, 'true:': 29395, 'true;': 29396, 'truely': 29397, 'truest': 29398, 'truthfully': 29399, 'tube"': 29400, 'tully': 29401, 'tv!': 29402, 'tv"': 29403, 'twist.<br': 29404, 'twitch': 29405, 'two-part': 29406, 'two:': 29407, 'two?': 29408, 'typically,': 29409, 'u.': 29410, 'ugliness': 29411, 'um': 29412, 'unappealing.': 29413, 'unbearable.<br': 29414, 'unbridled': 29415, 'unceremoniously': 29416, 'uncharacteristic': 29417, 'uncharacteristically': 29418, 'uncomfortable.': 29419, 'understanding,': 29420, 'undue': 29421, 'unexplored': 29422, 'unfortunate,': 29423, 'unfriendly': 29424, 'unfulfilled': 29425, 'unimaginative.': 29426, 'uninterrupted': 29427, 'units': 29428, 'university.': 29429, 'unmistakably': 29430, 'unreasonable': 29431, 'unsatisfactory': 29432, 'unsympathetic.': 29433, 'until,': 29434, "up'": 29435, 'up),': 29436, 'up-to-date': 29437, 'up...': 29438, 'upgrade': 29439, 'upheaval': 29440, 'ups.': 29441, 'upset,': 29442, 'ur': 29443, "ursula's": 29444, 'us!': 29445, 'vacation,': 29446, 'vanish': 29447, 'vans': 29448, 'variable': 29449, 'variety,': 29450, 'vegetables': 29451, 'veil': 29452, 'verging': 29453, 'verify': 29454, 'verite': 29455, 'vertigo,': 29456, 'vibes': 29457, 'vicious,': 29458, "victor's": 29459, 'victorious': 29460, 'victory.': 29461, 'videotaped': 29462, 'vidor': 29463, "viewers'": 29464, 'vigorous': 29465, 'vigorously': 29466, 'vile,': 29467, 'villages': 29468, 'villain.<br': 29469, 'virgin"': 29470, 'visa': 29471, 'vivacious': 29472, 'vol.': 29473, 'vow': 29474, 'vying': 29475, 'wackiness': 29476, 'wacky,': 29477, 'wager': 29478, 'wailing': 29479, 'waiting,': 29480, 'wall.<br': 29481, 'wallach,': 29482, 'waning': 29483, "want's": 29484, 'warm-hearted': 29485, 'warp': 29486, 'warring': 29487, 'warrior.': 29488, 'warriors,': 29489, 'warts': 29490, 'washes': 29491, "waters'": 29492, 'waters,': 29493, 'waterston': 29494, 'wcw': 29495, 'wear.': 29496, 'wed': 29497, 'weep': 29498, 'wegener': 29499, 'weighty': 29500, 'well-being': 29501, 'well-developed,': 29502, 'well-executed': 29503, 'wendy,': 29504, 'what?<br': 29505, 'when?': 29506, 'whimsical,': 29507, 'whimsy': 29508, 'whispered': 29509, 'whitaker': 29510, 'whites.': 29511, 'whitney': 29512, 'who"': 29513, 'why).': 29514, 'why:': 29515, 'wilfred': 29516, 'will)': 29517, "willis'": 29518, 'wincing': 29519, 'wincott': 29520, 'windows.': 29521, 'winner:': 29522, 'wish"': 29523, 'witnessed.': 29524, 'wolf"': 29525, 'woman?': 29526, 'womanizer': 29527, 'woodland': 29528, 'word)': 29529, 'words.<br': 29530, 'work),': 29531, 'worker,': 29532, 'world)': 29533, 'world-weary': 29534, 'woronov': 29535, 'worse:': 29536, 'worthless,': 29537, "wouldn't.": 29538, 'wouldnt': 29539, 'wow...': 29540, 'wreaking': 29541, 'wrecked': 29542, 'wretched,': 29543, 'wrinkled': 29544, 'writer.<br': 29545, 'writer/director,': 29546, "writers'": 29547, 'writes,': 29548, 'writing)': 29549, 'wrongs': 29550, 'ya,': 29551, 'yanks': 29552, 'yard,': 29553, 'yarn,': 29554, 'yawn.<br': 29555, 'year!': 29556, "years'": 29557, 'years),': 29558, 'yer': 29559, "yesterday's": 29560, 'yikes!': 29561, 'yo': 29562, 'yonica': 29563, 'york.<br': 29564, 'yorkers': 29565, 'yrs': 29566, 'zane,': 29567, 'zemeckis': 29568, "zombie's": 29569, 'zulu': 29570, '\x8ei\x9eek': 29571, '!).': 29572, '"12': 29573, '"42nd': 29574, '"8': 29575, '"action".': 29576, '"after': 29577, '"bill': 29578, '"blazing': 29579, '"born': 29580, '"call': 29581, '"captain': 29582, '"coming': 29583, '"cult': 29584, '"cut"': 29585, '"dawn': 29586, '"demons"': 29587, '"descent"': 29588, '"director"': 29589, '"envy"': 29590, '"everything': 29591, '"fatal': 29592, '"femme': 29593, '"five': 29594, '"funny': 29595, '"fury': 29596, '"gilligan\'s': 29597, '"girl': 29598, '"god': 29599, '"god"': 29600, '"gold': 29601, '"goodfellas"': 29602, '"hello': 29603, '"here\'s': 29604, '"holly"': 29605, '"huh?"': 29606, '"i\'d': 29607, '"its': 29608, '"jack': 29609, '"jurassic': 29610, '"keep': 29611, '"kiss': 29612, '"love\'s': 29613, '"maléfique"': 29614, '"miami': 29615, '"michael': 29616, '"miss': 29617, '"monster': 29618, '"nothing': 29619, '"office': 29620, '"ok,': 29621, '"ossessione"': 29622, '"panic"': 29623, '"paris': 29624, '"paris,': 29625, '"realistic"': 29626, '"reality"': 29627, '"romantic"': 29628, '"scarface"': 29629, '"scary"': 29630, '"sea': 29631, '"shall': 29632, '"shocking"': 29633, '"shoot': 29634, '"six': 29635, '"smooth': 29636, '"soul': 29637, '"spirit"': 29638, '"stop': 29639, '"stroker': 29640, '"summer': 29641, '"super': 29642, '"surprise"': 29643, '"thank': 29644, '"they\'re': 29645, '"trouble': 29646, '"villa': 29647, '"was': 29648, '"woman': 29649, '"wow': 29650, '"wrong': 29651, '"yes': 29652, '"zero': 29653, '"zombi': 29654, '"zombies"': 29655, "'30's": 29656, "'50's": 29657, "'a'": 29658, "'adult'": 29659, "'blue": 29660, "'citizen": 29661, "'classic'": 29662, "'comedy'": 29663, "'film'": 29664, "'forbidden": 29665, "'fun'": 29666, "'good'": 29667, "'great": 29668, "'if": 29669, "'king": 29670, "'little": 29671, "'love'": 29672, "'making": 29673, "'my": 29674, "'police": 29675, "'special": 29676, "'that": 29677, "'who": 29678, "'why": 29679, '("a': 29680, '(1': 29681, '(1975)': 29682, '(1977)': 29683, '(1981),': 29684, '(1983)': 29685, '(1987),': 29686, '(1988)': 29687, '(1992),': 29688, '(1993)': 29689, '(2002),': 29690, '(2004)': 29691, '(5': 29692, '(aka.': 29693, '(alice': 29694, '(american': 29695, '(bad)': 29696, '(bette': 29697, '(brandon': 29698, '(compared': 29699, '(debra': 29700, '(depending': 29701, '(edward': 29702, '(given': 29703, '(glenn': 29704, '(hank': 29705, '(helen': 29706, '(however,': 29707, "(i'll": 29708, '(imagine': 29709, '(insert': 29710, '(jane': 29711, '(kate': 29712, '(laura': 29713, "(let's": 29714, '(lou': 29715, '(luis': 29716, '(man': 29717, '(meg': 29718, '(named': 29719, '(nancy': 29720, '(ned': 29721, '(nicholas': 29722, '(nicolas': 29723, '(nicole': 29724, '(notably': 29725, '(okay,': 29726, '(over': 29727, '(portrayed': 29728, '(pronounced': 29729, '(rachel': 29730, '(rather': 29731, '(rock': 29732, '(seen': 29733, '(selma': 29734, '(shot': 29735, '(sic)': 29736, '(supposedly': 29737, "(they're": 29738, '(whether': 29739, '(yeah': 29740, ')<br': 29741, '*could*': 29742, '..<br': 29743, '.but': 29744, '/>"a': 29745, '/>"mr.': 29746, '/>"you': 29747, '/>added': 29748, '/>alas,': 29749, '/>am': 29750, '/>arthur': 29751, '/>black': 29752, '/>boy,': 29753, '/>brad': 29754, "/>can't": 29755, '/>certain': 29756, '/>characters': 29757, '/>coming': 29758, '/>consider': 29759, '/>cut': 29760, "/>didn't": 29761, '/>early': 29762, '/>equally': 29763, '/>favorite': 29764, '/>fido': 29765, '/>firstly': 29766, '/>frank': 29767, '/>frankly,': 29768, '/>freddy': 29769, '/>further': 29770, '/>henry': 29771, '/>ironically,': 29772, '/>jeff': 29773, '/>jimmy': 29774, '/>joe': 29775, '/>kelly': 29776, '/>kevin': 29777, '/>lee': 29778, '/>little': 29779, '/>look,': 29780, '/>love': 29781, '/>made': 29782, '/>making': 29783, '/>matt': 29784, '/>p.s': 29785, '/>plus,': 29786, '/>rating': 29787, '/>really,': 29788, '/>recommended.': 29789, '/>red': 29790, '/>regardless': 29791, '/>scott': 29792, '/>sean': 29793, '/>starting': 29794, '/>upon': 29795, '/>\x95': 29796, '1,000': 29797, '10-15': 29798, '10<br': 29799, '13.': 29800, '14-year-old': 29801, '16th': 29802, '1940s,': 29803, '1940s.': 29804, '1948,': 29805, '1952': 29806, '1955,': 29807, '1957,': 29808, '1957.': 29809, '1958.': 29810, '1960s.': 29811, '1965': 29812, '1972.': 29813, '1976,': 29814, '1998,': 29815, '2/10<br': 29816, '2022': 29817, '20s,': 29818, '22,': 29819, "3'": 29820, '3000"': 29821, '40-year-old': 29822, '44': 29823, '50s.': 29824, '56': 29825, '5:': 29826, '66': 29827, '666': 29828, '68': 29829, '7)': 29830, '7.0': 29831, '7/10<br': 29832, '96': 29833, ';)<br': 29834, 'aames': 29835, 'ab': 29836, 'abandon.': 29837, 'abc,': 29838, 'abhishek': 29839, 'abomination.': 29840, 'abortion,': 29841, 'abortion.': 29842, 'about;': 29843, 'about?<br': 29844, 'above-average': 29845, 'abroad,': 29846, 'absent,': 29847, 'absurdities': 29848, 'accentuate': 29849, 'accentuates': 29850, 'accident)': 29851, 'accompaniment': 29852, 'accomplishments': 29853, 'accounting': 29854, 'achieved,': 29855, 'ackland)': 29856, 'acknowledgement': 29857, 'acquits': 29858, 'acrobatics': 29859, 'act!': 29860, 'acting)': 29861, 'actor),': 29862, 'actor).': 29863, 'actors...': 29864, 'actress"': 29865, 'adamant': 29866, 'adjusting': 29867, 'adjustment': 29868, 'adopting': 29869, 'adoptive': 29870, 'adores': 29871, 'adversaries': 29872, 'adversity.': 29873, 'advertises': 29874, 'affiliated': 29875, "affleck's": 29876, 'affordable': 29877, 'aficionado': 29878, 'afloat': 29879, 'afterlife,': 29880, 'afterthought': 29881, 'afterthought.': 29882, 'against,': 29883, 'ageing': 29884, 'agency.': 29885, 'agent.<br': 29886, 'agitated': 29887, 'ahab': 29888, 'aid.': 29889, 'aids,': 29890, 'aileen': 29891, 'aimee': 29892, 'airplanes': 29893, 'airport.': 29894, 'airwaves': 29895, 'aishwarya': 29896, 'albeit,': 29897, 'alcatraz': 29898, 'alcohol.': 29899, 'alexandre,': 29900, 'alicia,': 29901, 'alimony': 29902, 'aline': 29903, 'alistair': 29904, 'all!<br': 29905, 'all<br': 29906, 'alleviate': 29907, 'almost,': 29908, 'am.<br': 29909, 'amazon,': 29910, 'ambiguities': 29911, 'ambiguity.': 29912, 'ambivalent': 29913, 'america"': 29914, 'american)': 29915, 'amityville': 29916, 'amounted': 29917, 'amused,': 29918, 'amused.': 29919, 'anachronism': 29920, 'analogies': 29921, 'analysis.': 29922, 'anarchy': 29923, 'ancestry': 29924, 'anchorman,': 29925, 'anecdotes': 29926, 'anemic': 29927, 'angrily': 29928, 'animate': 29929, 'animated.': 29930, 'annoyance.': 29931, 'answered,': 29932, 'answers.<br': 29933, 'antagonist,': 29934, 'anthologies': 29935, 'anti-drug': 29936, 'anti-semitic': 29937, 'anticlimactic': 29938, 'antics.<br': 29939, 'antonietta': 29940, 'antonioni,': 29941, 'any.<br': 29942, 'anyhow': 29943, 'anyone?),': 29944, 'anyway),': 29945, 'aplomb,': 29946, 'apple,': 29947, 'appleby': 29948, 'approximation': 29949, 'april"': 29950, 'april,': 29951, 'arbuckle': 29952, 'arcade': 29953, 'archetype': 29954, 'arden': 29955, 'are;': 29956, 'area.<br': 29957, 'areas.<br': 29958, 'argento': 29959, 'aristocracy': 29960, 'arkin,': 29961, 'arm,': 29962, 'armour': 29963, 'army.<br': 29964, 'around!': 29965, 'arouses': 29966, 'arquette,': 29967, 'arrived.': 29968, 'artificial.': 29969, 'ashley,': 29970, 'ask:': 29971, 'asked.': 29972, 'aspirations.': 29973, 'assassination.': 29974, 'assisting': 29975, 'assured,': 29976, 'astor,': 29977, 'astral': 29978, 'astray': 29979, 'at:': 29980, 'athleticism': 29981, 'atkins': 29982, 'atoz': 29983, 'attaching': 29984, 'attained': 29985, 'attentive': 29986, 'attest': 29987, 'attila': 29988, 'attributes,': 29989, 'attuned': 29990, 'au': 29991, 'audible': 29992, 'austin,': 29993, 'authenticity,': 29994, 'author.': 29995, 'authorities,': 29996, 'automotive': 29997, 'available.<br': 29998, 'avert': 29999, 'aviation': 30000, 'avoidance': 30001, 'avoided,': 30002, 'award.<br': 30003, 'awards.<br': 30004, 'away;': 30005, 'awe-inspiring': 30006, 'awestruck': 30007, 'awkward.': 30008, 'azteca': 30009, 'b*tch': 30010, 'b-rate': 30011, 'babe.': 30012, 'babies,': 30013, 'bach.': 30014, 'backyard.': 30015, 'bacon,': 30016, 'bad"': 30017, 'baghdad': 30018, 'bail': 30019, 'bailed': 30020, 'ball"': 30021, 'ballet.': 30022, 'bang.': 30023, 'banned.': 30024, 'bannen': 30025, 'bard': 30026, 'barefoot': 30027, 'bargain-basement': 30028, 'baring': 30029, 'barker,': 30030, 'barred': 30031, 'barres': 30032, "barrymore's": 30033, 'bars,': 30034, 'bartram': 30035, 'batmobile': 30036, 'battery': 30037, 'battlefield.': 30038, 'batty': 30039, 'bay,': 30040, 'beaming': 30041, 'beatle': 30042, 'beavis': 30043, 'beck': 30044, 'beers,': 30045, 'beggar': 30046, 'begley': 30047, 'behavioral': 30048, 'behold.<br': 30049, 'belated': 30050, 'believability.': 30051, 'bello': 30052, 'below,': 30053, 'belt,': 30054, 'belt.': 30055, 'bender': 30056, 'benito': 30057, 'bernhard': 30058, 'berryman': 30059, 'bessie': 30060, 'better:': 30061, 'biased.': 30062, 'bids': 30063, 'big-screen': 30064, 'biggs': 30065, 'bikes': 30066, 'bill"': 30067, "billy's": 30068, 'binge': 30069, 'binnie': 30070, 'binoculars': 30071, 'bipolar': 30072, 'bjork': 30073, 'blacksnake': 30074, 'blade,': 30075, 'blair)': 30076, "blake's": 30077, 'blasphemy': 30078, 'bleed.': 30079, 'blissfully': 30080, 'block,': 30081, 'blokes': 30082, 'blondell,': 30083, 'bloodshed,': 30084, 'blossoming': 30085, 'blossoms': 30086, 'blow-up': 30087, 'blow.': 30088, 'blunders': 30089, "bobby's": 30090, "bogdanovich's": 30091, 'bogie': 30092, 'bohemian': 30093, 'boiler': 30094, 'boisterous': 30095, 'boll,': 30096, 'bombarded': 30097, 'bombs,': 30098, "bond's": 30099, 'bonded': 30100, 'bont': 30101, 'bonus.': 30102, 'book;': 30103, 'boss.<br': 30104, 'bother.<br': 30105, 'boulder': 30106, 'bowels': 30107, 'bowler': 30108, 'bows': 30109, 'boxer.': 30110, 'boxing.': 30111, "boyfriend's": 30112, 'bradshaw': 30113, 'braga': 30114, 'bravo,': 30115, 'brazen': 30116, 'breach': 30117, 'break.<br': 30118, 'breakdown,': 30119, 'breakup': 30120, 'breathed': 30121, 'breckin': 30122, 'bred': 30123, 'bressart': 30124, 'brewster': 30125, 'bribe': 30126, 'bride"': 30127, 'briefcase': 30128, 'bro': 30129, 'broaden': 30130, 'bromwell': 30131, 'broom': 30132, 'brother-in-law': 30133, 'brotherhood': 30134, 'brownstone': 30135, 'bubblegum': 30136, 'bubonic': 30137, 'buddhism': 30138, 'budget)': 30139, 'budgets.': 30140, 'buffoon,': 30141, 'buffy,': 30142, 'buford': 30143, 'built.': 30144, 'bulgarian': 30145, 'burnett': 30146, 'buses': 30147, 'busta': 30148, 'butchers': 30149, 'butterflies': 30150, 'buxom': 30151, 'buzzing': 30152, 'bypass': 30153, 'bête"': 30154, 'cabin,': 30155, 'cage)': 30156, 'cagney.': 30157, 'calendar': 30158, 'called,': 30159, 'called.': 30160, 'caller': 30161, 'calls.': 30162, 'came,': 30163, 'cameo,': 30164, "camera's": 30165, 'camera-work.': 30166, 'cameron,': 30167, "can't,": 30168, 'cancelled.': 30169, 'cannons': 30170, 'canyon,': 30171, 'capped': 30172, 'captains': 30173, 'caption': 30174, 'captives': 30175, 'caravan': 30176, 'careers,': 30177, 'carface.': 30178, 'caricatures,': 30179, 'carlin': 30180, 'carlitos': 30181, 'carmilla': 30182, 'carpenter,': 30183, 'carpet,': 30184, 'carrey,': 30185, 'carson,': 30186, 'cartoon-like': 30187, 'cartoon.<br': 30188, 'cash-in': 30189, 'casio': 30190, "cassavetes'": 30191, 'cast)': 30192, 'castles,': 30193, 'catch,': 30194, 'categories:': 30195, 'category.<br': 30196, 'catiii': 30197, 'cato': 30198, 'catwoman': 30199, 'caution.': 30200, 'caveman': 30201, 'cctv': 30202, 'cds': 30203, 'ceilings': 30204, 'celebratory': 30205, 'cellphone': 30206, 'chain.': 30207, 'chamberlain,': 30208, 'chamberlains': 30209, 'champions': 30210, 'championship:': 30211, 'chan.': 30212, 'chance!': 30213, 'changed.<br': 30214, 'channels,': 30215, "character's,": 30216, 'character),': 30217, 'characterisation,': 30218, 'characterised': 30219, 'characters),': 30220, 'charade': 30221, 'charm.<br': 30222, 'charms,': 30223, 'chasm': 30224, 'cheapen': 30225, 'check!': 30226, 'check<br': 30227, 'checked,': 30228, 'cheeks': 30229, 'cheerful,': 30230, 'cheese.<br': 30231, 'cheesecake': 30232, 'chi': 30233, 'chiaki': 30234, 'chicken,': 30235, "child'": 30236, 'children;': 30237, 'choose.': 30238, "chris'": 30239, 'chuckles,': 30240, 'cinema!': 30241, 'cinema?': 30242, 'cinematographer,': 30243, 'circulation': 30244, 'circus,': 30245, 'civic': 30246, 'claims,': 30247, "clampett's": 30248, 'clarity.': 30249, 'classmates.': 30250, 'claudette': 30251, "clay's": 30252, 'client.': 30253, 'clifton': 30254, 'clinic.': 30255, 'clips,': 30256, 'clique': 30257, 'clocked': 30258, 'clocking': 30259, 'clocks': 30260, 'clone.': 30261, 'closed,': 30262, 'closeted': 30263, 'closure.': 30264, 'cloudy': 30265, 'clowns': 30266, 'clue,': 30267, 'clunky,': 30268, 'co-stars,': 30269, 'coats': 30270, 'coe': 30271, 'coffee,': 30272, 'coins': 30273, 'cold-hearted': 30274, "cole's": 30275, 'coleman,': 30276, 'colour.': 30277, "columbo's": 30278, 'comedic,': 30279, 'comedy-drama': 30280, 'comer': 30281, 'comfortable,': 30282, 'comforted': 30283, 'comment.<br': 30284, 'commie': 30285, 'compact': 30286, 'companionship.': 30287, 'competition,': 30288, 'composing': 30289, 'compositions,': 30290, 'compromise.': 30291, 'compulsory': 30292, 'conan,': 30293, 'conceited': 30294, 'concerts': 30295, 'concise': 30296, 'concocts': 30297, 'confidence.': 30298, 'confident,': 30299, 'confiscated': 30300, 'conformity': 30301, 'confusion.<br': 30302, 'connect.': 30303, 'conning': 30304, 'conroy,': 30305, 'consciousness,': 30306, 'consensus': 30307, 'consequence,': 30308, 'consideration.': 30309, 'considerations': 30310, 'consistency.': 30311, 'conspiracies,': 30312, 'constipated': 30313, 'constitutional': 30314, 'constrained': 30315, 'consumes': 30316, 'consumption': 30317, 'context.<br': 30318, 'continental': 30319, 'contingent': 30320, 'contributors': 30321, 'contrivances': 30322, 'contrives': 30323, 'controller': 30324, 'conventionally': 30325, 'conversations.': 30326, 'convincing.<br': 30327, 'cooking,': 30328, 'coonskin': 30329, 'copies,': 30330, 'copper': 30331, 'cornell': 30332, 'correspond': 30333, 'corresponding': 30334, 'corruption.': 30335, 'costumes.<br': 30336, 'cottage': 30337, 'counts,': 30338, 'couple.<br': 30339, 'coupling': 30340, 'coups': 30341, 'courted': 30342, 'courting': 30343, 'covered,': 30344, 'cox,': 30345, 'cox.': 30346, 'crackpot': 30347, 'crate': 30348, "creasy's": 30349, 'creations.': 30350, 'credence': 30351, 'creek,': 30352, 'creepily': 30353, 'crept': 30354, 'crescendo': 30355, 'cresta': 30356, 'cries,': 30357, 'critique,': 30358, 'crockett': 30359, 'crud': 30360, 'cruddy': 30361, 'cruiserweight': 30362, 'cruising': 30363, 'crutch': 30364, 'crux': 30365, 'crystal,': 30366, 'cubs': 30367, 'cunning,': 30368, 'curator': 30369, 'curtains': 30370, 'cushing,': 30371, 'customers.': 30372, 'cyborg,': 30373, 'cyd': 30374, "daddy's": 30375, 'dakar': 30376, 'daly': 30377, 'dancy': 30378, 'danelia': 30379, 'daniella': 30380, 'daniels,': 30381, 'darcy': 30382, 'darker,': 30383, 'dashiell': 30384, 'date"': 30385, 'dating,': 30386, 'davenport': 30387, 'davies)': 30388, 'daylight,': 30389, 'days!': 30390, 'dead!': 30391, 'dead",': 30392, 'deal!': 30393, 'deal.<br': 30394, 'death;': 30395, 'debts.': 30396, 'deconstruct': 30397, 'deduce': 30398, 'deed.': 30399, 'deer.': 30400, 'default': 30401, 'defeat.': 30402, 'defenseless': 30403, 'defiance': 30404, 'defiantly': 30405, 'definitely.': 30406, 'defying': 30407, 'degrade': 30408, 'delinquent': 30409, 'delusion': 30410, 'demean': 30411, 'demented.': 30412, 'demo': 30413, 'demon.': 30414, 'demunn': 30415, "deniro's": 30416, 'denounced': 30417, 'dentist"': 30418, 'department.<br': 30419, 'depicted,': 30420, 'deployed': 30421, 'derail': 30422, 'derailed': 30423, 'description,': 30424, 'desensitized': 30425, 'deserved.<br': 30426, 'designated': 30427, 'designed.': 30428, 'destiny"': 30429, 'detachment': 30430, 'details.<br': 30431, 'detained': 30432, 'detrimental': 30433, 'detroit,': 30434, 'develops,': 30435, 'diatribe': 30436, 'did;': 30437, 'did?': 30438, 'die!': 30439, 'difficulties,': 30440, 'digested': 30441, 'digger': 30442, 'dilemma,': 30443, 'din,': 30444, 'directing.<br': 30445, 'dirt,': 30446, 'disagree,': 30447, 'disclosed': 30448, 'discoveries': 30449, 'discovery.': 30450, 'disease.<br': 30451, 'disguise.': 30452, 'disguising': 30453, 'dishing': 30454, 'dislikes': 30455, 'dismal,': 30456, 'dismal.': 30457, 'dispassionate': 30458, 'disrupted': 30459, 'dissolution': 30460, 'distinctively': 30461, 'distortions': 30462, 'distributing': 30463, 'disturbance': 30464, 'disturbed.': 30465, 'disused': 30466, 'ditched': 30467, 'diver.': 30468, 'diverted': 30469, 'divides': 30470, 'docks': 30471, 'document,': 30472, "does'nt": 30473, "doesn't.<br": 30474, 'dog)': 30475, 'doll,': 30476, 'done)': 30477, 'dons': 30478, 'doo"': 30479, 'doomed,': 30480, 'dork': 30481, 'doubled': 30482, "douglas'": 30483, 'down?': 30484, 'downed': 30485, 'downplay': 30486, 'downs,': 30487, 'dragoon': 30488, 'drags.': 30489, 'drains': 30490, "drake's": 30491, 'drake,': 30492, 'dramatically.': 30493, 'drank': 30494, 'drastic': 30495, 'drifted': 30496, 'driving.': 30497, 'drugs.<br': 30498, 'duc': 30499, 'dude.': 30500, 'duets': 30501, 'duh!': 30502, 'duller': 30503, 'dumb.<br': 30504, 'dunne,': 30505, 'duo,': 30506, 'dyed': 30507, 'dysfunction': 30508, 'eagles': 30509, 'earth."': 30510, 'ease.<br': 30511, 'easy.<br': 30512, 'eat.': 30513, 'edged': 30514, 'edges,': 30515, 'edward,': 30516, 'eggar': 30517, 'eglantine': 30518, 'eight.': 30519, 'either)': 30520, 'ekin': 30521, 'eleniak': 30522, 'elephants,': 30523, 'elicits': 30524, 'elite.': 30525, 'elizabeth,': 30526, 'elizabethan': 30527, 'elizondo': 30528, 'elvira.': 30529, 'elvis,': 30530, 'emails': 30531, 'embarrassing.<br': 30532, 'emerson': 30533, 'emilia': 30534, 'emotional.': 30535, 'encompassing': 30536, 'encounter,': 30537, 'endangered': 30538, 'english-speaking': 30539, 'engulf': 30540, 'enhancing': 30541, 'enjoyment.<br': 30542, 'enlighten': 30543, 'ensue.': 30544, 'entertainer.': 30545, 'enthusiasm,': 30546, 'entourage': 30547, 'entry,': 30548, 'environment.<br': 30549, 'episode!': 30550, 'episode;': 30551, 'epitomizes': 30552, 'erection': 30553, 'err': 30554, 'erroneous': 30555, 'errors.': 30556, 'ersatz': 30557, 'erudite': 30558, 'erupt': 30559, 'esai': 30560, 'escalates': 30561, 'escape.<br': 30562, 'eschews': 30563, 'esha': 30564, 'especially.': 30565, 'esposito': 30566, "esther's": 30567, 'etc...<br': 30568, 'eternity,': 30569, 'eventually.': 30570, 'ever!!!': 30571, 'evergreen': 30572, 'evers': 30573, 'everyday.': 30574, 'ex-cop': 30575, 'ex-wife,': 30576, 'exacting': 30577, 'excellent:': 30578, 'excess,': 30579, 'exciting.<br': 30580, 'executions': 30581, 'exorcism': 30582, 'expectant': 30583, 'expecting,': 30584, 'expelled': 30585, 'expert.': 30586, 'explorations': 30587, 'explorers': 30588, 'exposed,': 30589, 'exposed.': 30590, 'expressionless': 30591, 'extending': 30592, 'exteriors': 30593, 'extinct': 30594, 'extra.': 30595, 'extracting': 30596, 'eyre.': 30597, 'faced.': 30598, 'faces.<br': 30599, 'facile': 30600, 'factor.<br': 30601, 'factors,': 30602, 'factors.': 30603, 'fad': 30604, 'failed.<br': 30605, 'falcon,': 30606, 'fallon,': 30607, 'fallout': 30608, 'family!': 30609, 'family)': 30610, "fan's": 30611, 'fanatics.': 30612, 'fanboy': 30613, 'fanboys': 30614, 'fanfan': 30615, 'fangoria': 30616, 'fanshawe': 30617, 'faraway': 30618, 'farmer,': 30619, 'fascinate': 30620, 'fast-paced,': 30621, 'fast-talking': 30622, 'faster,': 30623, 'fatale,': 30624, 'father"': 30625, 'father).': 30626, 'fatty': 30627, 'fav': 30628, 'favour,': 30629, 'favourites,': 30630, 'fawlty': 30631, 'fawning': 30632, 'fear.<br': 30633, 'fearsome': 30634, 'featurette,': 30635, 'featurettes': 30636, 'feds': 30637, 'fee.': 30638, 'feels,': 30639, 'fella': 30640, 'females,': 30641, 'fenway': 30642, 'fertile': 30643, 'fervor': 30644, 'festival.<br': 30645, 'fetch': 30646, 'fetisov': 30647, 'fever,': 30648, 'fiber': 30649, 'fickle': 30650, 'field.<br': 30651, 'fighter.': 30652, 'figured,': 30653, 'filed': 30654, 'film!!!': 30655, 'film.i': 30656, 'filters': 30657, 'finger.': 30658, 'firm,': 30659, 'first)': 30660, 'fit,': 30661, 'fitzgerald,': 30662, 'five.': 30663, 'fix.': 30664, 'fixes': 30665, 'flabby': 30666, 'flaherty': 30667, 'flash,': 30668, 'flatter': 30669, 'flattering': 30670, 'flatulence': 30671, 'flawlessly.': 30672, 'flaws:': 30673, 'flexible': 30674, 'flic': 30675, 'flirtation': 30676, 'flix': 30677, 'floor.<br': 30678, 'flopped': 30679, 'flourished': 30680, 'flow,': 30681, 'flurry': 30682, 'flynn.': 30683, 'focused.': 30684, 'foes': 30685, 'foibles': 30686, 'following.<br': 30687, 'folly': 30688, 'foolishly,': 30689, 'football,': 30690, 'forbids': 30691, 'forcefully': 30692, 'fore': 30693, 'foree': 30694, 'foreigner': 30695, 'foreigners': 30696, 'foresee': 30697, 'foreshadow': 30698, 'forge': 30699, 'forged': 30700, 'forgiveness.': 30701, 'formulas': 30702, 'forsyth': 30703, 'fps': 30704, 'fragility': 30705, 'frakes': 30706, 'franchises': 30707, 'frantic,': 30708, 'free.<br': 30709, 'freezes': 30710, 'frequency': 30711, 'friend)': 30712, 'frightened.': 30713, 'frothy': 30714, 'fruition': 30715, 'fu,': 30716, 'fulfil': 30717, 'full-frontal': 30718, 'fuller,': 30719, 'fun-filled': 30720, 'funeral.<br': 30721, 'funny).': 30722, 'funny...': 30723, 'funny:': 30724, 'fussy': 30725, 'gabriel,': 30726, 'gabrielle': 30727, 'gadgetmobile': 30728, 'gaggle': 30729, 'gainsbourg': 30730, 'galactic': 30731, 'galipeau': 30732, 'games"': 30733, 'gandhi.': 30734, "gang's": 30735, 'garb': 30736, 'gauntlet': 30737, 'gawky': 30738, 'gazing': 30739, 'gel': 30740, 'gem!': 30741, 'gems,': 30742, 'generated.': 30743, 'generosity': 30744, 'generously': 30745, 'genetics': 30746, 'genteel': 30747, 'geographical': 30748, "gere's": 30749, 'gestures,': 30750, 'ghoulish': 30751, 'giada': 30752, 'gideon': 30753, 'gigolo': 30754, "gillian's": 30755, 'girl",': 30756, 'glam': 30757, 'glorifying': 30758, 'go"': 30759, 'goat,': 30760, 'godard,': 30761, 'good),': 30762, 'goodness.': 30763, 'gordon)': 30764, 'gore)': 30765, 'gorehounds': 30766, 'gorris': 30767, "gosha's": 30768, 'gouge': 30769, 'government.<br': 30770, "grace's": 30771, "graham's": 30772, 'grande': 30773, 'grant.': 30774, 'grapes': 30775, 'grass,': 30776, 'great:': 30777, 'greatest.': 30778, 'greed.': 30779, 'grifters': 30780, 'grin,': 30781, 'groomed': 30782, 'grounds.': 30783, 'group.<br': 30784, 'grunts': 30785, 'guess).': 30786, 'guests.': 30787, 'guetary': 30788, 'guido': 30789, 'guild': 30790, 'guillotine': 30791, 'guilty.': 30792, 'guitarist': 30793, 'gump': 30794, 'gunfighter': 30795, 'gunpoint': 30796, 'guru.': 30797, 'guys!': 30798, 'guys)': 30799, 'gwizdo': 30800, 'gymkata': 30801, 'h.b.': 30802, 'ha,': 30803, 'haas': 30804, 'hacker': 30805, 'haden': 30806, "hadn't.": 30807, 'haines,': 30808, 'hair.<br': 30809, 'haircut.': 30810, 'haircuts': 30811, 'hale,': 30812, 'half-breed': 30813, 'half-dozen': 30814, 'halle': 30815, 'halve': 30816, 'handle.': 30817, "hank's": 30818, "hanna's": 30819, 'haphazardly': 30820, 'happiest': 30821, 'hard-nosed': 30822, 'hard-pressed': 30823, 'harder.': 30824, 'hardesty': 30825, 'hardy.': 30826, 'hari': 30827, 'hasten': 30828, 'hastings': 30829, 'hatch': 30830, 'hatred.': 30831, 'hats.': 30832, 'hatton': 30833, 'hay': 30834, 'haze': 30835, 'hbk': 30836, 'head)': 30837, 'head;': 30838, 'headless': 30839, 'healed': 30840, 'heals': 30841, 'hearing,': 30842, 'hearse': 30843, 'hearst': 30844, 'heartache': 30845, 'heartland': 30846, 'hearts,': 30847, 'heaving': 30848, 'heder': 30849, "heinlein's": 30850, 'henderson,': 30851, 'henstridge': 30852, 'her"': 30853, 'heralded': 30854, 'herb': 30855, 'heretic"': 30856, 'hermione': 30857, 'heros': 30858, 'herr': 30859, 'hershey': 30860, 'hg': 30861, 'hickcock': 30862, 'hiding,': 30863, 'highlight,': 30864, 'him?<br': 30865, 'himself?': 30866, 'hinds': 30867, 'historians,': 30868, "history's": 30869, 'hodge': 30870, 'hodge-podge': 30871, 'hokum': 30872, 'hollow,': 30873, 'holly,': 30874, 'holocaust,': 30875, 'holocaust.': 30876, 'homecoming': 30877, 'homo': 30878, 'homosexuals': 30879, 'honestly.': 30880, 'honeymoon.': 30881, 'honorary': 30882, 'hoodlum': 30883, 'hoodlums': 30884, 'hoon': 30885, "hooper's": 30886, 'horror/sci-fi': 30887, 'horse"': 30888, 'horus': 30889, 'hosting': 30890, 'hot-headed': 30891, 'household,': 30892, 'household.': 30893, 'housewives,': 30894, 'houston,': 30895, 'hudson)': 30896, 'hudson.': 30897, 'hues': 30898, 'huge.': 30899, 'hulk.': 30900, 'humorously': 30901, 'hungary': 30902, 'hunger,': 30903, 'huns': 30904, "hunter's": 30905, 'hunting.': 30906, 'hurl': 30907, 'hurling': 30908, 'hustler,': 30909, 'hyperbole': 30910, 'hypnotizes': 30911, 'hysterics': 30912, 'i?': 30913, 'ice-t': 30914, 'idea!': 30915, 'idea:': 30916, 'ideals,': 30917, 'ideas.<br': 30918, 'ideology.': 30919, 'idiocy.': 30920, 'ignorant.': 30921, 'ii)': 30922, 'ilk,': 30923, 'ilk.': 30924, 'ill,': 30925, 'illegally': 30926, 'imaginative.': 30927, 'immersion': 30928, 'immigrant,': 30929, 'immorality': 30930, 'immortalized': 30931, 'impacted': 30932, 'impenetrable': 30933, 'imperialist': 30934, 'impetus': 30935, 'implied,': 30936, 'improved.': 30937, 'impulses': 30938, 'in).': 30939, 'inaccuracies,': 30940, 'inaccuracies.': 30941, 'inaccurate,': 30942, 'inane,': 30943, 'inasmuch': 30944, 'incarceration': 30945, 'inconsistency': 30946, 'incorrectly': 30947, 'indemnity': 30948, 'independence.': 30949, 'independently': 30950, 'indies': 30951, 'industrialization': 30952, 'infants': 30953, 'infect': 30954, 'inferior.': 30955, 'infidelity,': 30956, 'influencing': 30957, 'infuses': 30958, 'ingredients.': 30959, 'inhabitant': 30960, 'inhabitants.': 30961, 'injection': 30962, 'injustices': 30963, 'inland': 30964, 'innocents': 30965, 'inside.<br': 30966, 'insignificance': 30967, 'instruction': 30968, 'instructors': 30969, 'insulting.<br': 30970, 'intent,': 30971, 'interacted': 30972, 'interacts': 30973, 'interesting...': 30974, 'intergalactic': 30975, 'interiors,': 30976, 'interpersonal': 30977, 'interweaving': 30978, 'intolerably': 30979, 'intoxicated': 30980, 'intrigue.': 30981, 'intrigued.': 30982, 'introvert': 30983, 'invention,': 30984, 'investigate,': 30985, 'investing': 30986, 'invokes': 30987, 'iota': 30988, 'iphigenia': 30989, 'iran.': 30990, 'ironic.': 30991, 'irrespective': 30992, 'irreverence': 30993, 'irritating.<br': 30994, 'is!<br': 30995, 'israelis': 30996, 'issues.<br': 30997, 'istanbul': 30998, 'it...but': 30999, 'it.it': 31000, 'it:<br': 31001, 'itself)': 31002, 'it’s': 31003, 'i´ve': 31004, 'jacket.': 31005, 'jackie,': 31006, 'jacobi': 31007, 'jaime': 31008, 'james.': 31009, 'jarvis': 31010, 'jasmine': 31011, 'jaw-droppingly': 31012, 'jedi"': 31013, 'jeffs': 31014, 'jelly': 31015, 'jeon': 31016, "jess's": 31017, 'ji': 31018, 'jilted': 31019, 'job?': 31020, 'jodelle': 31021, 'johnson)': 31022, 'joie': 31023, 'joints': 31024, 'joke?': 31025, 'joking.': 31026, 'jonathon': 31027, "jones's": 31028, 'jover': 31029, 'joyful': 31030, 'judgement.': 31031, 'judson': 31032, 'justine': 31033, 'juxtaposed': 31034, "k'sun": 31035, 'kansas,': 31036, 'kar': 31037, 'kavner': 31038, 'ke': 31039, 'keaton)': 31040, 'kei.': 31041, 'keith,': 31042, 'kelso,': 31043, 'kemble': 31044, 'kendall': 31045, 'key.': 31046, 'kibbee': 31047, 'kidding,': 31048, 'kidney': 31049, 'kids)': 31050, "killers'": 31051, "king'": 31052, 'kingdom"': 31053, 'kipling': 31054, "kirk's": 31055, "kitamura's": 31056, "kline's": 31057, 'knew.': 31058, 'knock-off': 31059, 'know:': 31060, 'kobayashi': 31061, 'konkana': 31062, 'koo': 31063, 'kor': 31064, 'kornbluth,': 31065, 'krabbe': 31066, 'kumar.': 31067, "kusturica's": 31068, 'kyle,': 31069, 'kyser': 31070, "l'engle": 31071, 'lab.': 31072, 'labor,': 31073, 'labored': 31074, "labour's": 31075, 'ladder,': 31076, 'lafitte': 31077, 'lamely': 31078, 'lament': 31079, 'lamented': 31080, 'lampooning': 31081, 'lanchester': 31082, 'lange,': 31083, 'laptop': 31084, 'lashes': 31085, 'latinos': 31086, 'latter.<br': 31087, 'laughed"': 31088, 'laughs!': 31089, 'launches': 31090, 'laura.': 31091, "law's": 31092, 'law)': 31093, 'lawman': 31094, 'lawnmower': 31095, 'lee),': 31096, 'leers': 31097, 'legends,': 31098, 'leisen': 31099, 'leone': 31100, 'lessened': 31101, 'letters.': 31102, 'levity': 31103, 'lewton': 31104, 'liability': 31105, 'liang': 31106, 'lies.': 31107, "life'": 31108, 'life,"': 31109, 'like;': 31110, 'likeable.': 31111, 'likened': 31112, 'liking.': 31113, 'lilith': 31114, 'lillies': 31115, 'lilly,': 31116, 'limo': 31117, 'lines:': 31118, 'lions,': 31119, "liotta's": 31120, 'list"': 31121, 'listen,': 31122, 'listings': 31123, 'littered': 31124, 'live"': 31125, 'live-in': 31126, 'liverpool': 31127, 'living.<br': 31128, 'locals.': 31129, 'locke,': 31130, 'lola,': 31131, 'lollobrigida': 31132, 'lonesome': 31133, 'longoria,': 31134, 'loomis': 31135, 'loop.': 31136, 'loopy': 31137, 'loosely,': 31138, 'louella': 31139, 'lovable.': 31140, 'lovably': 31141, 'love)': 31142, 'love."': 31143, 'lowers': 31144, 'lowery': 31145, 'lucienne': 31146, 'lucrative': 31147, "lucy's": 31148, 'lukas,': 31149, 'luke.': 31150, 'luring': 31151, 'lutz': 31152, 'lynda': 31153, 'lyrics.': 31154, 'macchesney': 31155, 'macready': 31156, 'maddox': 31157, 'made)': 31158, "madsen's": 31159, 'madsen.': 31160, 'magician,': 31161, 'magnitude.': 31162, 'mahoney': 31163, 'mai': 31164, 'mainstay': 31165, 'majors': 31166, 'makers.': 31167, 'malice': 31168, "man',": 31169, 'man."': 31170, 'manhattan.': 31171, 'mani': 31172, "mankind's": 31173, 'mann,': 31174, 'mannequin': 31175, 'mannerisms.': 31176, 'manners,': 31177, 'manu': 31178, 'manufacturing': 31179, 'marcello': 31180, 'marius': 31181, 'marks.': 31182, 'marry,': 31183, 'maruschka': 31184, 'mas': 31185, "massey's": 31186, 'massey,': 31187, 'masters.': 31188, 'matador"': 31189, 'match-': 31190, 'materialism': 31191, 'materialistic': 31192, 'matheson': 31193, 'matthias': 31194, 'mayor,': 31195, 'mazursky': 31196, 'mccabe': 31197, 'mcdoakes': 31198, "mcqueen's": 31199, "me'": 31200, 'me..': 31201, 'meals': 31202, 'meandering,': 31203, 'meaner': 31204, 'meant.': 31205, 'mechanisms': 31206, 'mein': 31207, 'melbourne,': 31208, 'men)': 31209, 'menial': 31210, 'mermaid.': 31211, 'mes': 31212, 'mesmerising': 31213, 'mesmerizing,': 31214, 'message:': 31215, 'messages,': 31216, 'messenger': 31217, 'metal.': 31218, 'metaphor,': 31219, 'methodical': 31220, 'methodically': 31221, 'meticulously': 31222, 'mice.': 31223, 'middleton': 31224, 'middling': 31225, 'midkiff': 31226, 'midler,': 31227, 'might.': 31228, 'mild,': 31229, 'miller.': 31230, 'million.': 31231, 'milquetoast': 31232, "milverton's": 31233, 'milyang': 31234, 'mind).': 31235, 'mind?': 31236, 'minds.<br': 31237, 'ming': 31238, 'miniscule': 31239, 'minister,': 31240, 'minutes;': 31241, 'miserable.': 31242, 'misinformation': 31243, 'miss!': 31244, 'misstep': 31245, 'mitchell.': 31246, 'mnm': 31247, 'moag': 31248, 'moan': 31249, 'mobs': 31250, 'moe,': 31251, 'mohan': 31252, 'mohr': 31253, "mol's": 31254, 'mol,': 31255, 'mold,': 31256, 'money;': 31257, 'monique': 31258, 'monk,': 31259, 'monkey.': 31260, 'mononoke': 31261, 'monopoly': 31262, 'montana.': 31263, 'montrose': 31264, 'montrose,': 31265, 'monumentally': 31266, 'moorehead': 31267, 'moralizing': 31268, 'morbid,': 31269, 'moretti': 31270, 'morgan.': 31271, 'mormon,': 31272, 'moronic,': 31273, 'morpheus': 31274, 'morphing': 31275, 'mortality': 31276, 'mosque': 31277, 'mother"': 31278, 'motivations.': 31279, 'motorbike': 31280, 'motorcycle.': 31281, 'mounts': 31282, 'mouse.': 31283, 'mouthed': 31284, 'movie,,': 31285, 'movie-making.': 31286, 'much),': 31287, 'muck': 31288, 'muertos"': 31289, 'muffled': 31290, 'mumbles': 31291, 'mummy.': 31292, 'munich': 31293, 'munsters': 31294, 'muppets,': 31295, 'murderers.': 31296, 'murders.<br': 31297, 'music)': 31298, 'muslim,': 31299, 'mutilation': 31300, 'myth.': 31301, 'naff': 31302, 'nail-biting': 31303, 'nails,': 31304, 'naivete': 31305, 'name!': 31306, 'nan': 31307, 'nandini': 31308, 'natassia': 31309, 'nbc,': 31310, 'nearer': 31311, 'needed.<br': 31312, 'neighborhoods': 31313, 'neighbors.': 31314, 'neither,': 31315, 'nekromantik': 31316, 'neo-noir': 31317, 'neri': 31318, 'nest"': 31319, 'neutered': 31320, "nick's": 31321, 'niece,': 31322, 'night-time': 31323, 'nights"': 31324, 'nine.<br': 31325, 'no-talent': 31326, 'nobleman': 31327, 'nocturnal': 31328, 'nominations.': 31329, 'nondescript': 31330, 'none.<br': 31331, 'noose': 31332, "nora's": 31333, 'norm,': 31334, 'not"': 31335, 'notes.': 31336, "nothing's": 31337, 'nothingness': 31338, 'novel.<br': 31339, 'now...': 31340, 'nurses': 31341, 'nutcase': 31342, "o'connor": 31343, 'oak': 31344, 'oath': 31345, 'obscenely': 31346, 'obsessions': 31347, 'occasion.<br': 31348, 'ocean.': 31349, 'oddest': 31350, 'of;': 31351, 'off-broadway': 31352, 'off-kilter': 31353, 'off:': 31354, 'offed': 31355, 'offending': 31356, 'offerings.': 31357, 'offers.': 31358, 'office"': 31359, 'office)': 31360, 'offing': 31361, 'oh.': 31362, 'oily': 31363, 'oj': 31364, 'okay<br': 31365, 'old;': 31366, 'oliver,': 31367, 'omen"': 31368, 'on-': 31369, 'on?"': 31370, 'once),': 31371, 'onscreen': 31372, 'ontario': 31373, 'opener,': 31374, 'operative': 31375, 'opulent': 31376, 'orbit': 31377, 'ordeal.': 31378, 'order.<br': 31379, 'orders,': 31380, 'ordinarily': 31381, 'organisation': 31382, 'organizations': 31383, 'orgies,': 31384, 'origin,': 31385, 'original!': 31386, 'origins,': 31387, 'origins.': 31388, 'orphans': 31389, 'others),': 31390, 'ours': 31391, 'ours.': 31392, 'out!!': 31393, 'out."': 31394, 'outdone': 31395, 'outing,': 31396, 'outshines': 31397, 'outsider,': 31398, 'ova': 31399, 'over-hyped': 31400, 'over-long': 31401, 'over-the-top.': 31402, 'overbearing,': 31403, 'overboard,': 31404, 'overboard.': 31405, 'overcame': 31406, 'overcome,': 31407, 'overdo': 31408, 'overload': 31409, 'overprotective': 31410, 'overseeing': 31411, 'overworked': 31412, "owl's": 31413, 'owl.': 31414, 'owners.': 31415, 'oz"': 31416, 'p.j.': 31417, 'paces': 31418, 'package,': 31419, 'packed,': 31420, 'paid.': 31421, 'paige': 31422, "paine's": 31423, 'painful.<br': 31424, 'paint.': 31425, 'paintball': 31426, 'pairings': 31427, "paltrow's": 31428, 'panel': 31429, 'paranoia.': 31430, 'parasites': 31431, 'parenting': 31432, "park's": 31433, 'parker)': 31434, 'parliament': 31435, 'part).': 31436, 'part-time': 31437, 'part;': 31438, 'particles': 31439, 'particular)': 31440, 'passionate.': 31441, 'past;': 31442, 'patchwork': 31443, 'pathological': 31444, 'patient.': 31445, 'patter': 31446, 'patterned': 31447, 'patterns.': 31448, 'pausing': 31449, 'pavement': 31450, 'peanut': 31451, "pecker's": 31452, 'pedestrian.': 31453, 'pedicab': 31454, 'peeing': 31455, 'peeling': 31456, 'peering': 31457, 'peers,': 31458, 'penguins': 31459, 'penthouse': 31460, 'people",': 31461, 'permeate': 31462, 'permits': 31463, 'perry,': 31464, 'person?': 31465, 'personality.<br': 31466, 'persons,': 31467, 'persons.': 31468, 'perspectives.': 31469, 'perversely': 31470, 'pharaoh': 31471, 'phenomenon,': 31472, 'philandering': 31473, "phillip's": 31474, 'philly': 31475, 'photographed.': 31476, 'photos.': 31477, 'physical,': 31478, 'physically,': 31479, 'picard': 31480, 'pick.': 31481, "pickford's": 31482, 'pie.': 31483, 'piecing': 31484, 'pikachu': 31485, 'pirates,': 31486, 'pistol.': 31487, 'pitch-perfect': 31488, 'places.<br': 31489, 'planet"': 31490, 'planet.<br': 31491, 'plastic.': 31492, 'platform.': 31493, 'pleasing,': 31494, 'pledge': 31495, 'plod': 31496, 'plush': 31497, 'poe,': 31498, 'point;': 31499, 'poker.': 31500, 'poland': 31501, 'politician.': 31502, 'politicians,': 31503, 'pollak': 31504, 'popcorn.': 31505, 'portable': 31506, "porter's": 31507, 'possessed.': 31508, 'possessions': 31509, 'postal': 31510, 'pot,': 31511, 'pot.': 31512, 'pota': 31513, 'potion': 31514, 'pounded': 31515, 'powell.': 31516, 'preaching,': 31517, 'precise,': 31518, 'predator,': 31519, 'prediction': 31520, 'preferable': 31521, 'preity': 31522, 'preoccupation': 31523, 'preparations': 31524, 'prequels': 31525, 'prerequisite': 31526, 'prescient': 31527, 'presentation.<br': 31528, 'press,': 31529, 'prey.': 31530, 'price.<br': 31531, 'priceless.<br': 31532, 'prickly': 31533, 'prima': 31534, 'principle,': 31535, 'principles,': 31536, 'privacy': 31537, "prizzi's": 31538, 'processed': 31539, 'proclaiming': 31540, 'produce,': 31541, 'produced.<br': 31542, 'products,': 31543, 'proficient': 31544, 'profile.': 31545, 'progressed.': 31546, 'progressing': 31547, 'prohibition': 31548, 'prominence': 31549, 'prompting': 31550, 'proof,': 31551, 'prop,': 31552, 'property,': 31553, 'proprietor': 31554, 'prospects': 31555, 'protests': 31556, 'prowl': 31557, 'pryce': 31558, 'psychic,': 31559, 'psychological,': 31560, 'psychopaths': 31561, 'psychosis': 31562, 'psychotic,': 31563, 'public.<br': 31564, 'publicist': 31565, 'publishing': 31566, 'puff': 31567, 'punk,': 31568, 'puppetry': 31569, 'purposefully': 31570, 'pâquerette': 31571, 'qi': 31572, "quaid's": 31573, 'qualities.<br': 31574, 'quasi': 31575, 'quatermain': 31576, 'quest,': 31577, 'quotations': 31578, 'r.g.': 31579, 'rail': 31580, "raimi's": 31581, 'rain.': 31582, 'raines)': 31583, 'rainn': 31584, 'rajni': 31585, 'ramgopal': 31586, 'ramifications': 31587, 'ramone': 31588, 'rampling': 31589, 'ramsey': 31590, 'rancher': 31591, 'randomness': 31592, 'rangers,': 31593, 'rapaport': 31594, 'rapper': 31595, 'rappers': 31596, 'rarely,': 31597, 'rationalize': 31598, 'raves': 31599, 'raw.': 31600, 'rawhide': 31601, 're-create': 31602, 're-cut': 31603, 'reactor': 31604, "reader's": 31605, 'realm.': 31606, 'realms': 31607, 'reanimated': 31608, 'reasoned': 31609, 'reassure': 31610, 'recall.': 31611, 'recalling': 31612, 'reccomend': 31613, 'recipient': 31614, 'recluse': 31615, 'recognition,': 31616, 'recognize.': 31617, 'recognized.': 31618, 'recommendable': 31619, 'reconsider': 31620, 'recycle': 31621, 'redd': 31622, "redgrave's": 31623, 'reds': 31624, 'redundancy': 31625, 'reek': 31626, 'refrigerator': 31627, 'refuses,': 31628, 'regard.': 31629, 'regime.': 31630, 'reinvent': 31631, 'relate.': 31632, 'relax.': 31633, 'relays': 31634, 'relevant.': 31635, 'relics': 31636, 'remakes.': 31637, 'remembered,': 31638, 'remembrance': 31639, 'remote,': 31640, 'renaissance,': 31641, 'rep': 31642, 'replays': 31643, 'reporter.': 31644, 'reproduce': 31645, 'reputations': 31646, 'reread': 31647, 'resentful': 31648, 'resist.': 31649, 'resolves': 31650, 'resonant': 31651, 'resorted': 31652, 'resource': 31653, 'resourceful,': 31654, 'responds,': 31655, 'response,': 31656, 'responsible,': 31657, 'restaurants': 31658, 'restoring': 31659, 'restrain': 31660, 'resultant': 31661, 'resumed': 31662, 'retreats': 31663, 'reuben': 31664, 'reused': 31665, 'rev.': 31666, 'reverses': 31667, "reviewer's": 31668, 'revised': 31669, 'revolted': 31670, 'revolutionary.': 31671, 'rewritten': 31672, 'rf': 31673, 'rhea': 31674, 'riddle': 31675, 'rifle.': 31676, 'right).': 31677, 'right?)': 31678, 'ringer': 31679, 'rios': 31680, 'ripoffs': 31681, 'rippner': 31682, 'rivers,': 31683, 'rizzo,': 31684, 'robbers,': 31685, "robbins'": 31686, "robertson's": 31687, 'robinsons': 31688, 'rockies': 31689, 'roguish': 31690, 'romancing': 31691, 'romp,': 31692, "rooney's": 31693, 'rope,': 31694, 'rosalie': 31695, 'ross,': 31696, 'roth.': 31697, 'royce': 31698, 'rubbery': 31699, 'rubin': 31700, 'rug': 31701, 'ruggero': 31702, 'run-down': 31703, 'run.<br': 31704, 'rung': 31705, 'russian.': 31706, 'sacrificial': 31707, 'sadistically': 31708, 'sadness.': 31709, 'sage': 31710, 'sags': 31711, 'salesman,': 31712, 'sally,': 31713, 'samberg': 31714, 'same-sex': 31715, 'sand.': 31716, 'sandino': 31717, 'sandwiches': 31718, 'sanitized': 31719, 'sarafina': 31720, 'satan.': 31721, 'saturn': 31722, 'saucer': 31723, 'savior.': 31724, 'sawyer': 31725, 'scandals': 31726, 'scanning': 31727, 'scare.': 31728, 'scarecrow.': 31729, 'scarecrows,': 31730, 'scarface,': 31731, 'scenarios.': 31732, 'scene!': 31733, 'scene...': 31734, 'scenery.<br': 31735, 'schaech': 31736, 'scheider': 31737, 'schell': 31738, 'scheme,': 31739, 'scheming,': 31740, 'schmaltzy': 31741, "schwarzenegger's": 31742, 'scope.': 31743, 'scorpion,': 31744, 'screen).': 31745, 'screen:': 31746, 'script:': 31747, 'scripted.': 31748, 'scrolling': 31749, 'scuba': 31750, 'sculptor': 31751, 'scumbag': 31752, 'seams': 31753, 'second.<br': 31754, 'sedate': 31755, 'seen:': 31756, 'seizes': 31757, 'self-assured': 31758, 'self-respect': 31759, 'selfish.': 31760, 'sensation.': 31761, 'sense;': 31762, 'sensibility,': 31763, 'sensibility.': 31764, 'sentimental.': 31765, 'sequence)': 31766, 'serbia': 31767, 'sergei': 31768, 'servants,': 31769, 'servicemen': 31770, 'services,': 31771, 'session.': 31772, 'set-piece': 31773, 'set-pieces.': 31774, 'set.<br': 31775, 'shakespeare.<br': 31776, 'share,': 31777, 'shea': 31778, 'shedding': 31779, 'shelby': 31780, 'shelf,': 31781, 'shell,': 31782, 'shep': 31783, 'shepard,': 31784, 'sheppard': 31785, 'shirt.': 31786, 'shocker.': 31787, 'shootings,': 31788, 'shorter.': 31789, 'shorthand': 31790, 'shovel': 31791, 'shower.': 31792, 'shrine': 31793, 'shrinking': 31794, 'shue,': 31795, 'shut.': 31796, 'siblings.': 31797, 'sica': 31798, "sica's": 31799, 'sicilian': 31800, 'sickening.': 31801, 'sickest': 31802, 'side-splitting': 31803, 'sigh': 31804, 'sight.<br': 31805, 'signe': 31806, 'silberling': 31807, 'silences': 31808, 'silent.': 31809, 'similarities.': 31810, 'simmons,': 31811, 'sinful': 31812, 'single.': 31813, 'sir.': 31814, 'sissy,': 31815, 'sister)': 31816, 'sister.<br': 31817, 'sit-com': 31818, 'skeletal': 31819, 'skeptic': 31820, 'skits.': 31821, 'skull,': 31822, 'slack.': 31823, 'slap-stick': 31824, 'slaves,': 31825, 'slaves.': 31826, 'slaying': 31827, 'sleaze.': 31828, 'slickly': 31829, 'slight,': 31830, 'slippery': 31831, 'slog': 31832, 'slow-burning': 31833, 'slow-moving,': 31834, 'slut,': 31835, 'smacking': 31836, 'smarts': 31837, 'smear': 31838, 'smile.<br': 31839, 'smita': 31840, 'smoke.': 31841, 'snare': 31842, 'sneers': 31843, 'snl.': 31844, 'snobs': 31845, 'snooty': 31846, 'snowman.': 31847, 'soap.': 31848, 'soaring': 31849, 'sober,': 31850, 'societies.': 31851, 'society:': 31852, 'sociology': 31853, 'sociopathic': 31854, 'somebody,': 31855, 'something).': 31856, 'something;': 31857, 'son?': 31858, 'song-and-dance': 31859, 'song.<br': 31860, 'sony': 31861, 'sophisticated,': 31862, 'sorbonne': 31863, 'sorority': 31864, 'sorrows': 31865, 'souls.': 31866, 'soundtrack!': 31867, 'space.<br': 31868, 'spat': 31869, 'spatial': 31870, 'spatula': 31871, 'speak)': 31872, 'speechless.': 31873, 'speeded': 31874, 'spencer,': 31875, 'spicy': 31876, 'spiders': 31877, 'spike,': 31878, 'spills': 31879, 'spin.': 31880, 'spleen': 31881, 'splendid.': 31882, 'spoilers!<br': 31883, 'spoilers)': 31884, 'sponsor': 31885, 'spring.': 31886, 'springwood': 31887, 'spy,': 31888, 'squad,': 31889, 'squirming': 31890, 'stained': 31891, 'stairway': 31892, 'stand-in': 31893, 'standards)': 31894, "stanley's": 31895, 'stanley,': 31896, 'stanton': 31897, 'stapleton': 31898, 'star!': 31899, 'star"': 31900, 'stars:': 31901, 'stars?': 31902, 'starts.<br': 31903, 'starz': 31904, 'statham': 31905, 'station.<br': 31906, 'stead': 31907, 'stealer': 31908, 'steering': 31909, 'stepford': 31910, 'stevie': 31911, 'stillness': 31912, 'stink.': 31913, 'stinker,': 31914, 'stitches.': 31915, 'stitzer': 31916, 'stolen,': 31917, 'stomp': 31918, 'stoned,': 31919, 'stooges.': 31920, 'stop.<br': 31921, 'stopped,': 31922, 'story).': 31923, 'story-': 31924, 'storyline:': 31925, 'storytelling.<br': 31926, 'straining': 31927, 'strait': 31928, 'strapping': 31929, 'stratten,': 31930, 'streams': 31931, "street'": 31932, 'strengthen': 31933, 'stretch.': 31934, 'strict,': 31935, 'stroke.': 31936, 'strummer': 31937, 'studio.<br': 31938, 'studly': 31939, 'stylized,': 31940, 'submitting': 31941, 'subplots.': 31942, 'substances': 31943, 'substantive': 31944, 'suburbs.': 31945, 'succeed.<br': 31946, 'succeeds,': 31947, 'sugar-coated': 31948, 'suggest.': 31949, 'suggested,': 31950, 'suicides': 31951, 'suitor': 31952, 'suits.': 31953, 'summarizing': 31954, 'summary.': 31955, 'summation': 31956, "summer's": 31957, 'summing': 31958, "sunday's": 31959, 'sunshine.': 31960, 'superstitious': 31961, 'supervisor': 31962, 'suprised': 31963, 'sure!': 31964, 'surgery,': 31965, 'surmise': 31966, 'surrender,': 31967, 'survives.': 31968, 'survivor,': 31969, 'sushmita': 31970, 'susie': 31971, 'suspending': 31972, 'sutherland.': 31973, 'swallowing': 31974, 'swallows': 31975, 'swan': 31976, 'sweat,': 31977, 'sweat.': 31978, 'sweden,': 31979, 'swims': 31980, 'swore': 31981, 'symbolic,': 31982, 'synopsis:': 31983, 'tactic': 31984, 'take-off': 31985, 'talia': 31986, 'talky,': 31987, 'tam': 31988, 'tampering': 31989, 'tanks,': 31990, 'tar': 31991, 'tarkovsky': 31992, 'tatsuhito': 31993, 'team).': 31994, 'tearful': 31995, 'tearjerker.': 31996, 'teeny': 31997, 'telling.<br': 31998, 'tempest': 31999, 'ten.<br': 32000, 'territorial': 32001, 'terror"': 32002, 'terry-thomas': 32003, 'textures': 32004, 'thailand.': 32005, "that'd": 32006, 'theirs.': 32007, 'ther': 32008, "there'd": 32009, 'thereafter,': 32010, 'thereafter.': 32011, 'thespians': 32012, 'thier': 32013, 'think:': 32014, 'thornway': 32015, 'thought-provoking.': 32016, 'thriller?': 32017, 'thrives': 32018, 'thugs.': 32019, 'tickled': 32020, 'tieh': 32021, "tierney's": 32022, 'tilda': 32023, 'time!)': 32024, 'time".': 32025, "time's": 32026, 'time-line': 32027, 'time.i': 32028, 'timeless,': 32029, 'timeline': 32030, 'timer': 32031, 'timone': 32032, 'tipped': 32033, 'tissues': 32034, 'titles,': 32035, 'tits,': 32036, 'toad': 32037, 'tobey': 32038, 'toenails': 32039, 'together"': 32040, 'toilets': 32041, 'tokugawa': 32042, 'tomatoes"': 32043, 'tony.': 32044, 'too.)': 32045, 'topher': 32046, 'topics,': 32047, 'topless,': 32048, 'torture.<br': 32049, 'toshiro': 32050, 'tough-guy': 32051, 'tourism': 32052, 'town?': 32053, 'toying': 32054, 'tract': 32055, 'tracy,': 32056, 'traffic,': 32057, 'train"': 32058, 'transfer.': 32059, 'transformation,': 32060, 'transpire': 32061, 'transpires': 32062, 'transplant.': 32063, 'transplants': 32064, 'traveler': 32065, 'treads': 32066, 'treat!': 32067, 'trek,': 32068, 'trend.': 32069, 'triangle.': 32070, 'tribe.': 32071, 'tribulation': 32072, 'tribunal': 32073, 'trickery': 32074, 'triggered': 32075, 'trim': 32076, 'trip"': 32077, 'tripped': 32078, 'tritter': 32079, 'tropes': 32080, 'trot': 32081, 'troubles,': 32082, 'truncated': 32083, 'tsunami': 32084, 'tubes': 32085, 'tug': 32086, 'tugs': 32087, 'turkey.<br': 32088, 'turkeys': 32089, 'turmoil,': 32090, 'turn"': 32091, 'turn-off': 32092, 'turn.<br': 32093, 'twit': 32094, 'tylo': 32095, 'tyrannical': 32096, 'tyranny': 32097, 'uglier': 32098, 'umpteenth': 32099, 'unashamedly': 32100, 'uncles': 32101, 'uncreative': 32102, 'undead.': 32103, 'undefined': 32104, 'underdeveloped.': 32105, 'undergoing': 32106, 'underground.': 32107, 'underlings': 32108, 'underlining': 32109, 'underpants': 32110, 'underscored': 32111, 'undertones,': 32112, 'undeserving': 32113, 'undetected': 32114, 'undistinguished': 32115, 'undress': 32116, 'uneasy.': 32117, 'unengaging': 32118, 'unfolds.': 32119, 'ungodly': 32120, 'unidentified': 32121, 'unified': 32122, 'unknowing': 32123, 'unlikeable.': 32124, 'unmemorable': 32125, 'unmitigated': 32126, 'unnaturally': 32127, 'unneeded': 32128, 'unoriginal.': 32129, 'unpredictable,': 32130, 'unpredictable.': 32131, 'unprepared': 32132, 'unreleased': 32133, 'unrequited': 32134, 'unrestrained': 32135, 'unruly': 32136, 'unscathed': 32137, 'unspeakably': 32138, 'unsurprisingly': 32139, 'unthinkable': 32140, 'unwarranted': 32141, 'unwashed': 32142, 'unwed': 32143, 'unwelcome': 32144, 'unwise': 32145, 'unwisely': 32146, 'up."': 32147, 'updating': 32148, 'uproarious': 32149, 'upstairs.': 32150, 'us"': 32151, 'usa.<br': 32152, 'usual.<br': 32153, 'vaccaro': 32154, 'vagina': 32155, 'valley,': 32156, 'vampirism': 32157, 'vartan': 32158, 'vegetable': 32159, 'vera-ellen': 32160, 'versailles': 32161, 'verses': 32162, 'version:': 32163, 'vessels': 32164, 'veteran,': 32165, 'vidal': 32166, "vidal's": 32167, 'video!': 32168, 'video"': 32169, 'video/dvd': 32170, 'viewed.': 32171, 'viewpoint.': 32172, 'vindictive': 32173, 'vinyl': 32174, 'visage': 32175, 'visayan': 32176, 'vogue': 32177, "voight's": 32178, 'volleyball': 32179, 'votes,': 32180, 'voyeuristic': 32181, 'wages': 32182, 'waisted': 32183, 'wait...': 32184, 'waitress,': 32185, 'wales': 32186, 'walker.': 32187, 'walking.': 32188, 'wallop': 32189, 'walmart': 32190, "walsh's": 32191, 'wang,': 32192, 'wannabe,': 32193, 'warbling': 32194, 'ward.': 32195, 'warmth,': 32196, 'warranted': 32197, 'washington)': 32198, "wasn't.<br": 32199, 'waste!': 32200, 'watch;': 32201, 'watched.<br': 32202, 'watered-down': 32203, 'waterfall': 32204, 'weakens': 32205, 'weakly': 32206, 'weaponry': 32207, 'wearing.': 32208, 'weather,': 32209, 'webb': 32210, 'websites': 32211, 'wednesday': 32212, 'weekday': 32213, 'weighed': 32214, "weir's": 32215, 'weirdos': 32216, 'well-directed,': 32217, 'well-thought': 32218, 'weller': 32219, 'went,': 32220, 'were:': 32221, 'westerners': 32222, "whale's": 32223, 'wheeled': 32224, 'whoopie': 32225, 'whore,': 32226, 'why!': 32227, 'wicked,': 32228, 'widmark.': 32229, 'wigs': 32230, 'wilderness,': 32231, 'wilhelm': 32232, 'willfully': 32233, 'william,': 32234, 'wince': 32235, 'wing.': 32236, "winner's": 32237, 'winsome': 32238, 'wisdom.': 32239, 'witchy': 32240, 'witnessed,': 32241, 'woes': 32242, 'wolfe': 32243, 'wolfgang': 32244, 'wolves,': 32245, 'women?': 32246, 'wonderfully,': 32247, 'woodstock': 32248, 'wooing': 32249, 'wool': 32250, 'wordless': 32251, 'workaholic': 32252, 'world-wide': 32253, 'worried.': 32254, 'worse?': 32255, 'worst:': 32256, 'wounded,': 32257, 'wounded.': 32258, 'wrench': 32259, 'wrestle': 32260, 'wring': 32261, 'wrong:': 32262, 'wrongfully': 32263, 'wuhrer': 32264, 'wuthering': 32265, 'xiao': 32266, 'xmas': 32267, 'yard.': 32268, 'yea,': 32269, 'yiddish': 32270, 'yoko': 32271, 'you!!': 32272, 'you".': 32273, 'you).': 32274, 'yourself:': 32275, 'youth.<br': 32276, 'yr': 32277, 'yvaine': 32278, 'yvette': 32279, 'zest': 32280, 'zip': 32281, 'zombie"': 32282, 'zooming': 32283, '½': 32284, '",': 32285, '"<br': 32286, '"about': 32287, '"act"': 32288, '"ah,': 32289, '"al': 32290, '"amazing': 32291, '"angels': 32292, '"apocalypse': 32293, '"battle': 32294, '"beau': 32295, '"ben': 32296, '"beverly': 32297, '"boy': 32298, '"boys': 32299, '"bride': 32300, '"cape': 32301, '"character': 32302, '"children': 32303, '"cinema': 32304, '"civilized"': 32305, '"class': 32306, '"could': 32307, '"creature': 32308, '"dance': 32309, '"darkness': 32310, '"de': 32311, '"decameron"': 32312, '"didn\'t': 32313, '"dragon': 32314, '"drunken': 32315, '"easy': 32316, '"enchanted': 32317, '"even': 32318, '"evening"': 32319, '"experts"': 32320, '"facts"': 32321, '"father': 32322, '"fay': 32323, '"film".': 32324, '"flight': 32325, '"follow': 32326, '"food': 32327, '"four': 32328, '"foxes"': 32329, '"ghost"': 32330, '"hidden': 32331, '"hip"': 32332, '"hollywood"': 32333, '"house"': 32334, '"humor"': 32335, '"jaws".': 32336, '"joe': 32337, '"kind': 32338, '"law': 32339, '"looking': 32340, '"low': 32341, '"luck': 32342, '"monsters': 32343, '"mr': 32344, '"much': 32345, '"napoleon': 32346, '"natural': 32347, '"naughty': 32348, '"nice"': 32349, '"odd': 32350, '"only"': 32351, '"other"': 32352, '"people"': 32353, '"place': 32354, '"plot': 32355, '"queen': 32356, '"re-imagining"': 32357, '"right"': 32358, '"rocky': 32359, '"run': 32360, '"say': 32361, '"schindler\'s': 32362, '"scooby': 32363, '"singing': 32364, '"sit': 32365, '"slaughter': 32366, '"social': 32367, '"spinal': 32368, '"stargate': 32369, '"stargate"': 32370, '"straight': 32371, '"surviving': 32372, '"survivor"': 32373, '"tales': 32374, '"turn': 32375, '"wait': 32376, '"white"': 32377, '$$$': 32378, '$100,000': 32379, '$1000': 32380, '$3': 32381, '%': 32382, "'60's": 32383, "'63": 32384, "'80's.": 32385, "'art": 32386, "'death": 32387, "'don't": 32388, "'high": 32389, "'horror": 32390, "'hot": 32391, "'last": 32392, "'new": 32393, "'panic": 32394, "'set": 32395, "'time": 32396, "'twist'": 32397, "'video": 32398, "'wild": 32399, '(1954)': 32400, '(1974)': 32401, '(1983),': 32402, '(1994)': 32403, '(1998)': 32404, '(1999).': 32405, '(2001)': 32406, '(4': 32407, '(4)': 32408, '(7/10)': 32409, '(aka:': 32410, '(also,': 32411, '(amanda': 32412, '(are': 32413, '(around': 32414, '(awful)': 32415, '(believe': 32416, '(black': 32417, '(brooke': 32418, '(c)': 32419, '(carl': 32420, '(certainly': 32421, '(christina': 32422, '(considering': 32423, '(corbin': 32424, '(dan': 32425, '(dana': 32426, '(derek': 32427, '(does': 32428, '(ethan': 32429, '(excuse': 32430, '(four': 32431, '(gena': 32432, '(hope': 32433, '(im': 32434, '(ironically,': 32435, '(jake': 32436, '(jessica': 32437, '(jodie': 32438, '(josh': 32439, '(joss': 32440, '(juan': 32441, '(kay': 32442, '(kris': 32443, '(late': 32444, '(marion': 32445, '(may': 32446, '(melvyn': 32447, '(minus': 32448, '(namely': 32449, '(natasha': 32450, '(next': 32451, '(nor': 32452, '(oliver': 32453, '(olympia': 32454, '(oscar': 32455, '(pardon': 32456, '(paz': 32457, '(people': 32458, '(preferably': 32459, '(r)': 32460, '(remember,': 32461, '(ryan': 32462, '(say': 32463, '(shades': 32464, '(shelley': 32465, '(small': 32466, '(sp?)': 32467, '(specially': 32468, '(star': 32469, '(take': 32470, '(thomas': 32471, '(three': 32472, '(toni': 32473, '(trust': 32474, '(using': 32475, '(van': 32476, '(very)': 32477, '(via': 32478, '(warning:': 32479, '(wes': 32480, '(witness': 32481, '(young': 32482, '**********': 32483, ',as': 32484, '-in': 32485, '.i': 32486, '/>"': 32487, '/>"it\'s': 32488, '/>"what': 32489, '/>(originally': 32490, '/>(spoilers)': 32491, '/>*****spoiler': 32492, '/>*spoilers*': 32493, '/>*the': 32494, '/>...': 32495, '/>5': 32496, '/>5)': 32497, '/>act': 32498, '/>actors': 32499, '/>adding': 32500, '/>additionally,': 32501, '/>alan': 32502, '/>alright,': 32503, '/>anil': 32504, '/>animation': 32505, '/>anthony': 32506, '/>avoid.': 32507, '/>billy': 32508, '/>brian': 32509, '/>camera': 32510, '/>character': 32511, '/>clearly': 32512, '/>cliché': 32513, '/>contrary': 32514, '/>dana': 32515, '/>denzel': 32516, '/>diane': 32517, '/>edward': 32518, '/>especially': 32519, '/>essentially,': 32520, '/>far': 32521, '/>fun': 32522, '/>halloween': 32523, '/>harry': 32524, '/>honestly': 32525, '/>hope': 32526, '/>i,': 32527, '/>jessica': 32528, '/>joan': 32529, '/>jon': 32530, '/>keep': 32531, '/>kids': 32532, '/>life': 32533, '/>low': 32534, '/>miss': 32535, '/>music': 32536, '/>neither': 32537, '/>parker': 32538, '/>patrick': 32539, '/>personally': 32540, '/>plus': 32541, '/>producer:': 32542, '/>segment': 32543, '/>show': 32544, '/>side': 32545, '/>somehow,': 32546, '/>somewhere': 32547, '/>soon': 32548, '/>stan': 32549, '/>starring:': 32550, '/>stupid:': 32551, '/>summary:': 32552, '/>superman': 32553, '/>supposedly': 32554, '/>surprisingly,': 32555, '/>susan': 32556, '/>terrible': 32557, '/>thankfully,': 32558, '/>today': 32559, '/>true': 32560, '/>true,': 32561, '/>truly,': 32562, '/>turn': 32563, '/>victor': 32564, '/>violence:': 32565, '/>wait': 32566, '/>walter': 32567, '/>way': 32568, '/>writer:': 32569, "/>you'd": 32570, "/>you've": 32571, '0/10.': 32572, '1"': 32573, '10-year-old': 32574, '100,': 32575, '14.': 32576, '1912': 32577, '1920': 32578, '1928': 32579, '1929': 32580, '1934.': 32581, '1942,': 32582, '1950,': 32583, '1959,': 32584, '1965,': 32585, '1965.': 32586, '1967.': 32587, '1976.': 32588, '1982.': 32589, '1985,': 32590, '1985.': 32591, '1987.': 32592, '1988.': 32593, '2).': 32594, '2/3': 32595, '20%': 32596, '21,': 32597, '27,': 32598, "30's.": 32599, '41': 32600, '46': 32601, '50,000': 32602, '5000': 32603, '51': 32604, '53': 32605, '6:': 32606, '90210': 32607, '92': 32608, ':-': 32609, '=)': 32610, '?)': 32611, 'a+.': 32612, 'a-team': 32613, 'aardman': 32614, "abby's": 32615, 'abounds#39;: 32616, 'abridged': 32617, 'abruptly,': 32618, 'absolute,': 32619, 'absorbing.': 32620, 'abstract,': 32621, 'absurdity,': 32622, 'abundantly': 32623, 'accentuated': 32624, 'accept,': 32625, 'accomplishment.': 32626, 'accurately.': 32627, 'achieve.<br': 32628, 'acoustic': 32629, 'acted.<br': 32630, 'acting),': 32631, 'acting).': 32632, 'action-adventure': 32633, 'activity,': 32634, 'actors;': 32635, 'actors?': 32636, 'actually.<br': 32637, 'adam.': 32638, 'adaptation.<br': 32639, 'added.': 32640, 'adeptly': 32641, 'adherence': 32642, 'adjani': 32643, 'admission.': 32644, 'admit.': 32645, 'adoption': 32646, 'adorable.': 32647, 'advantage,': 32648, 'adventurer': 32649, 'afar': 32650, 'affairs.': 32651, 'affected.': 32652, 'affirms': 32653, "afi's": 32654, 'aficionados': 32655, 'afore-mentioned': 32656, 'afro': 32657, 'afro-american': 32658, 'aftermath,': 32659, 'afterwords': 32660, 'again!<br': 32661, 'again."': 32662, 'age);': 32663, 'aggravated': 32664, 'ago!': 32665, 'agreed,': 32666, 'ahem,': 32667, "ain't.": 32668, 'aja': 32669, 'albuquerque': 32670, 'alert!': 32671, "alien's": 32672, 'aligned': 32673, 'all!!!': 32674, 'alliances': 32675, 'allowances': 32676, 'already.<br': 32677, 'altered,': 32678, 'aluminium': 32679, 'aluminum': 32680, "alvin's": 32681, 'amateurish.<br': 32682, 'amazed.': 32683, 'amazon.': 32684, 'ambiance.': 32685, 'ambiguous,': 32686, 'ambiguous.': 32687, 'ambition.': 32688, 'ambush': 32689, 'amends': 32690, 'americana': 32691, 'americans)': 32692, 'amply': 32693, 'ancient,': 32694, "andrew's": 32695, 'andré': 32696, 'anecdote': 32697, 'aneta': 32698, 'angel"': 32699, "angelopoulos'": 32700, "animal's": 32701, 'animatronic': 32702, 'animes': 32703, 'ann,': 32704, 'annakin': 32705, 'annie,': 32706, 'annoyance,': 32707, 'antagonist.': 32708, 'antagonists': 32709, 'anthology,': 32710, "anthony's": 32711, 'anti-nazi': 32712, 'anticipation,': 32713, 'anyhow.': 32714, 'anyone!': 32715, 'anytime.': 32716, 'anyway...': 32717, 'apartheid.': 32718, 'apartments,': 32719, 'apatow': 32720, 'apples': 32721, 'applicable': 32722, 'archaeologists': 32723, 'archetypes': 32724, 'architecture,': 32725, 'are?': 32726, "aren't,": 32727, 'arena.': 32728, 'argento,': 32729, 'arid': 32730, 'ariel,': 32731, 'aristocrat,': 32732, 'around;': 32733, 'around?': 32734, 'arranging': 32735, 'arrogance,': 32736, 'arse': 32737, 'artifice': 32738, 'ascended': 32739, 'ashanti': 32740, 'ashore': 32741, 'aspiration': 32742, 'ass.<br': 32743, 'assassinated': 32744, 'assemble': 32745, 'asses': 32746, 'assignment.': 32747, 'assignments': 32748, 'assists': 32749, 'associations': 32750, 'astaire.': 32751, 'atari': 32752, 'atheist,': 32753, 'athlete': 32754, 'attached,': 32755, 'attaches': 32756, 'attackers.': 32757, 'attractive.<br': 32758, 'atwill,': 32759, 'audiences.<br': 32760, 'audio,': 32761, 'augmented': 32762, 'aur': 32763, 'austria.': 32764, 'authorities.': 32765, 'automobiles': 32766, 'availability': 32767, 'avalon': 32768, 'avant': 32769, 'aversion': 32770, 'avoid.<br': 32771, 'awake,': 32772, 'awakes': 32773, 'awful...': 32774, 'awry.': 32775, 'aya': 32776, 'b-list': 32777, 'b-movies.': 32778, 'b-rated': 32779, 'baba': 32780, 'babble': 32781, 'babette': 32782, 'bacall.': 32783, 'bachman': 32784, 'back-to-back': 32785, 'backs.': 32786, 'backwards,': 32787, 'backwards.': 32788, 'bad..': 32789, 'bad...<br': 32790, 'baddest': 32791, 'baddies,': 32792, 'badge': 32793, 'bahrain': 32794, 'baker)': 32795, 'bakery': 32796, 'balduin': 32797, 'balkan': 32798, 'balls.': 32799, 'baltimore,': 32800, 'banderas': 32801, 'bands.': 32802, 'bang!': 32803, 'bang-up': 32804, 'banning': 32805, 'banquet': 32806, "barbara's": 32807, 'barest': 32808, 'barkin': 32809, 'barnes,': 32810, 'bartel': 32811, 'baseless': 32812, 'bassett': 32813, 'bathe': 32814, 'bats,': 32815, "bava's": 32816, 'bawling': 32817, 'baywatch': 32818, 'beacon': 32819, 'bearer': 32820, 'bears.': 32821, 'beast"': 32822, "beatles'": 32823, 'bebe': 32824, 'became.': 32825, 'becker': 32826, 'bed.<br': 32827, 'bedchamber': 32828, 'beers.': 32829, 'befitting': 32830, 'before!': 32831, 'before...': 32832, 'before;': 32833, 'befriending': 32834, 'beheaded': 32835, 'behest': 32836, 'belafonte': 32837, 'belgium,': 32838, 'belies': 32839, 'believe.<br': 32840, 'bell.': 32841, 'below-average': 32842, 'ben.': 32843, 'bennett)': 32844, 'benson,': 32845, 'bentley': 32846, 'berenger,': 32847, "berkeley's": 32848, 'berkeley,': 32849, 'bernstein': 32850, 'betrothed': 32851, 'better).': 32852, 'better."': 32853, 'bettie,': 32854, 'betty,': 32855, 'bewildering': 32856, 'bhaiyyaji': 32857, 'bicker': 32858, 'bigger,': 32859, 'bike,': 32860, 'bike.': 32861, 'bikers,': 32862, 'binks': 32863, 'biology': 32864, 'biopic,': 32865, 'bird.': 32866, 'birth.': 32867, 'black-and-white,': 32868, 'blacklisted': 32869, 'blackmail,': 32870, 'blackmailer': 32871, 'blacks,': 32872, 'blalock': 32873, 'blame.': 32874, 'blandings,': 32875, 'blinking': 32876, 'blitz': 32877, 'blockbuster.<br': 32878, 'blockbusters,': 32879, 'blockbusters.': 32880, 'blonde.': 32881, "blood'": 32882, 'bloodrayne': 32883, 'bloodshed.': 32884, 'bloodsuckers': 32885, 'bloom.': 32886, 'blooming': 32887, 'bloopers': 32888, 'blurring': 32889, 'boarder': 32890, 'boesman': 32891, 'bogeyman': 32892, 'boil.': 32893, 'boldness': 32894, 'bombshell': 32895, 'bombshells': 32896, 'bondage,"': 32897, 'bonham-carter': 32898, 'boobies': 32899, 'boobs,': 32900, 'book?': 32901, "boorman's": 32902, 'booze,': 32903, 'borden': 32904, 'boring)': 32905, 'borlenghi': 32906, 'boro': 32907, "boss'": 32908, 'bosses,': 32909, 'bossy': 32910, 'boston,': 32911, 'boulders': 32912, 'boundaries,': 32913, 'boundless': 32914, 'bourne.': 32915, 'bouts': 32916, 'bowing': 32917, 'bowl,': 32918, 'bowl.': 32919, 'boxer,': 32920, 'boxes,': 32921, 'bracelet': 32922, "bradbury's": 32923, 'brady,': 32924, 'brain"': 32925, 'branagh.': 32926, 'branded': 32927, 'brash,': 32928, 'braveheart,': 32929, 'bread.': 32930, 'breaker': 32931, 'breath-taking': 32932, 'breathing,': 32933, 'breeds': 32934, 'brendan,': 32935, 'brennan,': 32936, 'brevity': 32937, 'brew': 32938, 'brewster,': 32939, 'brief.': 32940, 'briefest': 32941, 'brigadoon': 32942, 'broad,': 32943, 'broadbent': 32944, 'broadcaster': 32945, 'broinowski': 32946, 'broke,': 32947, 'broker': 32948, 'brook': 32949, 'brothels': 32950, 'brother)': 32951, 'brutality.': 32952, 'bs': 32953, 'bsg.': 32954, 'bubble"': 32955, 'budget?': 32956, 'bufford': 32957, 'bugs,': 32958, 'bullet.': 32959, 'bunch.<br': 32960, 'bunny,': 32961, "bunuel's": 32962, 'bureaucrat': 32963, 'buried.': 32964, 'burrows,': 32965, 'burton.': 32966, 'busey,': 32967, 'businesses': 32968, 'businessman,': 32969, 'buyer': 32970, 'buñuel': 32971, 'caan,': 32972, 'cabal': 32973, 'cacoyannis': 32974, 'cadets': 32975, 'cage.': 32976, 'caliber.': 32977, 'callahan,': 32978, 'camcorder,': 32979, 'cameo)': 32980, 'campaign,': 32981, 'canceled,': 32982, 'cannabis': 32983, 'cannes,': 32984, 'cannon,': 32985, 'capote.': 32986, 'captain.': 32987, 'captivates': 32988, 'car"': 32989, 'car?': 32990, 'cardboard.': 32991, 'careful,': 32992, 'carla,': 32993, 'carlton': 32994, 'carlton-browne': 32995, 'carney': 32996, 'carnivorous': 32997, 'carol"': 32998, "caron's": 32999, 'carpet.': 33000, 'carrere': 33001, 'carrie-anne': 33002, 'carter.': 33003, 'cartoonish,': 33004, 'caruso.': 33005, 'carve': 33006, 'cashed': 33007, 'casino,': 33008, 'cassavetes,': 33009, 'cassavettes': 33010, 'cassette': 33011, 'cassidy,': 33012, 'cast?': 33013, 'casting:': 33014, 'cat.<br': 33015, 'catastrophe.': 33016, 'catchphrase': 33017, 'catchy.': 33018, 'catharsis': 33019, 'catholic,': 33020, 'cats.': 33021, 'caulfield': 33022, 'cause"': 33023, 'caves,': 33024, 'celebrities.': 33025, 'celie,': 33026, 'centuries.': 33027, 'cesspool': 33028, 'ceylon': 33029, 'chabat': 33030, 'chahine': 33031, 'champagne': 33032, 'championship,': 33033, "channel's": 33034, 'chaotic,': 33035, 'character...': 33036, 'characterizations.': 33037, 'characters-': 33038, 'charis': 33039, 'charity.': 33040, 'charleton': 33041, 'chase:': 33042, "chavez's": 33043, 'chavez,': 33044, 'cheap.<br': 33045, 'cheapened': 33046, "chief's": 33047, 'chief.': 33048, 'chieftain': 33049, 'child)': 33050, 'childish.': 33051, 'children)': 33052, 'chime': 33053, 'chintzy': 33054, 'chocolates': 33055, 'chokes': 33056, "chong's": 33057, 'choreographed,': 33058, 'christensen,': 33059, 'christian.': 33060, 'chronically': 33061, 'chronicling': 33062, 'chuck,': 33063, 'chuckle,': 33064, 'chucky': 33065, 'chyna': 33066, 'cia.': 33067, 'cigars': 33068, 'cinema"': 33069, 'cinematographers': 33070, 'circles,': 33071, 'circumstances.<br': 33072, 'cite': 33073, 'citing': 33074, 'clandestine': 33075, "clara's": 33076, "clarke's": 33077, 'clarkson': 33078, 'clashes': 33079, 'classic;': 33080, 'claws': 33081, 'cleansing': 33082, 'clearly.': 33083, 'cleef': 33084, 'clerk,': 33085, 'clerks': 33086, 'cliche.': 33087, 'clicks': 33088, 'cling': 33089, 'clip,': 33090, 'clipped': 33091, "clooney's": 33092, 'closed.': 33093, 'closer,': 33094, 'closet,': 33095, 'closing.': 33096, 'closure,': 33097, 'club",': 33098, "club's": 33099, 'clubs.': 33100, 'clueless.': 33101, 'clutters': 33102, 'co-star,': 33103, 'co-star.': 33104, 'coaster-waldau': 33105, 'cod': 33106, 'coe,': 33107, 'cogent': 33108, 'coincide': 33109, 'col': 33110, 'collapse,': 33111, 'colleague.': 33112, "collector's": 33113, 'colleges': 33114, 'collides': 33115, 'collinwood': 33116, 'colm': 33117, "colonel's": 33118, 'colorful.': 33119, 'colorized': 33120, 'coloured': 33121, 'columbia.': 33122, 'columbo.': 33123, 'columbus': 33124, 'coma.': 33125, 'combination,': 33126, 'combined.<br': 33127, 'comedians.': 33128, 'commentary.<br': 33129, 'commission': 33130, 'commit.': 33131, 'common,': 33132, 'communicates': 33133, 'communism.': 33134, 'companion.': 33135, 'compel': 33136, 'compensates': 33137, 'compensation': 33138, 'competes': 33139, 'completion': 33140, 'complexity,': 33141, 'complicated.': 33142, 'complication': 33143, 'complications.': 33144, 'comprehensible': 33145, 'comprehension.': 33146, 'compromises': 33147, 'compulsion': 33148, 'computer-generated': 33149, 'conceived.': 33150, 'concern.': 33151, 'conclusions.': 33152, 'condemnation': 33153, 'condo': 33154, 'condom': 33155, 'confinement': 33156, 'confirming': 33157, 'conjuring': 33158, 'connections.': 33159, 'connolly,': 33160, 'connotations': 33161, 'consciousness.': 33162, 'conservatory': 33163, 'consider,': 33164, 'considered.': 33165, 'console': 33166, 'conspire': 33167, 'constant.': 33168, 'constraints,': 33169, 'constructing': 33170, 'construction,': 33171, 'construed': 33172, 'consulted': 33173, 'consume': 33174, 'contacting': 33175, 'container': 33176, 'contains,': 33177, 'contemplated': 33178, 'contemporaries,': 33179, 'contempt.': 33180, 'contestants.': 33181, 'continue.': 33182, 'contractor': 33183, 'control.<br': 33184, 'conventions.': 33185, 'conversational': 33186, 'convertible': 33187, 'conveyor': 33188, "cook's": 33189, 'cooked': 33190, 'coop,': 33191, 'copped': 33192, 'cora': 33193, 'cordell': 33194, "corleone's": 33195, 'corman,': 33196, 'corporal': 33197, 'corporation,': 33198, 'corpses"': 33199, 'corpses,': 33200, 'correction': 33201, 'correctness.': 33202, 'corridors,': 33203, 'cosmetic': 33204, 'costly': 33205, "costner's": 33206, 'coulier': 33207, 'count.<br': 33208, 'counteract': 33209, 'coup.': 33210, 'couple"': 33211, 'couples.': 33212, 'cow,': 33213, 'cowering': 33214, 'coworker': 33215, "cox's": 33216, 'craggy': 33217, 'crams': 33218, 'cranking': 33219, 'crap-fest': 33220, 'craps': 33221, 'cratchit': 33222, 'craven.': 33223, 'crazies': 33224, 'craziest': 33225, 'creaks': 33226, "creator's": 33227, 'creators,': 33228, 'credits)': 33229, 'creepy.<br': 33230, 'criminal"': 33231, 'cringe-worthy': 33232, 'cristy': 33233, 'critical,': 33234, 'criticizes': 33235, 'critters': 33236, 'crock': 33237, 'crooks,': 33238, 'crops': 33239, 'crossword': 33240, 'crucified': 33241, 'cruise.': 33242, 'cruiser': 33243, 'cuckolded': 33244, 'cumming': 33245, 'cumulative': 33246, 'cup,': 33247, 'cupboard': 33248, 'cupid': 33249, 'curing': 33250, 'currie,': 33251, 'cusp': 33252, 'cussing': 33253, 'cyberpunk': 33254, 'cyborg.': 33255, 'cynical.': 33256, 'cynically': 33257, 'cyril': 33258, 'd,': 33259, 'd.j.': 33260, 'daddy.': 33261, 'dafoe,': 33262, 'daily,': 33263, 'dallas,': 33264, 'dalliance': 33265, 'dalmatians': 33266, 'dance.<br': 33267, 'danes)': 33268, 'daniel,': 33269, "danning's": 33270, 'dates,': 33271, 'dave,': 33272, 'davenport,': 33273, 'davies,': 33274, 'davis),': 33275, 'daylights': 33276, 'dazzling,': 33277, 'dead".': 33278, 'dead."': 33279, 'dealer,': 33280, 'dean,': 33281, 'debates': 33282, 'decadence,': 33283, 'decapitation': 33284, 'decapitation,': 33285, 'decency.': 33286, 'decimated': 33287, 'deck,': 33288, 'decked': 33289, 'deconstructing': 33290, 'deconstruction': 33291, 'decorative': 33292, 'dedicate': 33293, 'deeply,': 33294, 'defense.': 33295, 'definitely,': 33296, 'defunct': 33297, 'delays': 33298, 'deluxe': 33299, 'demand.': 33300, 'demeanor,': 33301, 'demise,': 33302, 'demographic,': 33303, 'demure': 33304, 'denmark,': 33305, 'dense,': 33306, "dentist'": 33307, "dentist's": 33308, "denzel's": 33309, "depalma's": 33310, 'derails': 33311, 'derek,': 33312, 'dern,': 33313, 'derogatory': 33314, 'descent,': 33315, 'describe,': 33316, 'deserved,': 33317, 'designed,': 33318, 'despicable.': 33319, 'despotic': 33320, 'destination.': 33321, 'detailed.': 33322, 'deterred': 33323, 'detestable': 33324, 'detracting': 33325, 'deux': 33326, 'deveraux': 33327, 'devine': 33328, 'devito,': 33329, 'devotee': 33330, 'devouring': 33331, 'dewey': 33332, 'dhol': 33333, 'diabolically': 33334, "dibiase's": 33335, "dick's": 33336, "dicken's": 33337, 'dickens,': 33338, 'dickory': 33339, 'dictate': 33340, 'dictated': 33341, 'didn´t': 33342, 'differ.': 33343, 'differing': 33344, 'difficulties.': 33345, 'dignity.<br': 33346, 'dimension.': 33347, 'dimensional,': 33348, 'din"': 33349, 'dine': 33350, 'dinos': 33351, 'dinosaur,': 33352, 'dint': 33353, 'dipped': 33354, 'dipping': 33355, 'directly.': 33356, 'director!': 33357, 'director),': 33358, 'director/co-writer': 33359, 'dirtiest': 33360, 'dis': 33361, 'disagreement': 33362, 'disastrously': 33363, 'disbelief.<br': 33364, 'discipline.': 33365, 'discourage': 33366, 'discouraged': 33367, 'discover,': 33368, 'discreet': 33369, 'disenfranchised': 33370, 'disguise,': 33371, 'disingenuous': 33372, 'disjointed.': 33373, 'dismemberment': 33374, 'disparity': 33375, 'dispel': 33376, 'displeased': 33377, 'disregarded': 33378, 'dissing': 33379, 'dissolved': 33380, 'disturbing?': 33381, 'diversion.': 33382, 'divorced,': 33383, 'divorcee': 33384, 'do:': 33385, 'do;': 33386, 'dogma,': 33387, 'dola': 33388, 'dollars.<br': 33389, 'dolls.': 33390, 'domesticated': 33391, 'dominatrix': 33392, 'donned': 33393, "dooley's": 33394, 'doorstep': 33395, 'doorstep.': 33396, 'doped': 33397, 'dormant': 33398, "dosen't": 33399, 'dots': 33400, 'dotted': 33401, 'down;': 33402, 'downhill.<br': 33403, 'dracula,': 33404, 'dracula.': 33405, "dragon's": 33406, 'dragons,': 33407, 'drain.': 33408, 'dramatize': 33409, 'draper': 33410, 'draw,': 33411, 'drawl': 33412, 'dread,': 33413, 'dreamcast': 33414, 'dressed,': 33415, 'dresses,': 33416, 'dresses.': 33417, 'dribble.': 33418, 'drink.': 33419, 'driscoll': 33420, 'drivel,': 33421, 'duality': 33422, 'dub.': 33423, 'duels': 33424, 'duh.': 33425, 'duke.': 33426, 'dune': 33427, 'dung.': 33428, 'dunk': 33429, 'dunn': 33430, "duo's": 33431, 'duplicate': 33432, 'durbin,': 33433, 'dwarfs,': 33434, 'earnestly': 33435, 'earnestness': 33436, 'earth,"': 33437, 'earthy': 33438, 'eaters': 33439, 'eating,': 33440, 'eburne': 33441, 'economics': 33442, 'economy,': 33443, "ed's": 33444, 'ed,': 33445, 'educating': 33446, 'edwardian': 33447, 'edwards,': 33448, 'edwin': 33449, 'effects!': 33450, 'effects...': 33451, 'effie': 33452, 'eisenberg': 33453, 'elaborate,': 33454, 'electing': 33455, 'elegiac': 33456, 'elevator,': 33457, 'elinor': 33458, "elizabeth's": 33459, "elmo's": 33460, 'else...': 33461, 'elvis.': 33462, 'embarrasses': 33463, 'embeth': 33464, 'embezzler': 33465, 'emily,': 33466, 'emitted': 33467, 'emotions.<br': 33468, 'emperor.': 33469, 'empowerment': 33470, 'emraan': 33471, 'enchanting,': 33472, 'enchanting.': 33473, 'encore': 33474, 'encroaching': 33475, 'end"': 33476, 'endeavors': 33477, 'endless.': 33478, 'endure,': 33479, 'engaged,': 33480, 'english.<br': 33481, 'englund,': 33482, 'enliven': 33483, 'enmeshed': 33484, 'enrich': 33485, 'entails': 33486, 'enterprise.': 33487, "entertainment's": 33488, 'entirely,': 33489, 'entirety,': 33490, 'envision': 33491, "episode's": 33492, 'erases': 33493, 'erect': 33494, 'erin': 33495, 'erotically': 33496, 'escapade': 33497, 'escapes.': 33498, 'escorted': 33499, 'essays': 33500, 'essential.': 33501, 'estimation': 33502, 'ethnicities': 33503, 'euphemism': 33504, 'even)': 33505, 'events.<br': 33506, 'everytown': 33507, 'evicted': 33508, 'evil)': 33509, 'evocation': 33510, 'evolution,': 33511, 'ex-military': 33512, 'ex-mrs.': 33513, 'exaggerations': 33514, 'examples,': 33515, 'examples:': 33516, 'excels.': 33517, 'excerpt': 33518, 'exclude': 33519, 'excruciating.': 33520, 'exemplar': 33521, 'exhaustion': 33522, 'exotic,': 33523, 'expectation.': 33524, 'expendable': 33525, 'experiment.<br': 33526, 'explodes,': 33527, 'explodes.': 33528, 'exploration,': 33529, 'explorer': 33530, 'expressionism': 33531, 'exquisite,': 33532, 'extent.<br': 33533, 'extremities': 33534, 'exuded': 33535, 'eye-catching': 33536, 'eye-popping': 33537, 'eyes)': 33538, 'eyes).': 33539, 'f***ing': 33540, 'fabulous!': 33541, 'facility,': 33542, 'fact)': 33543, 'fact:': 33544, 'factions': 33545, 'failures,': 33546, 'falco': 33547, 'falls.': 33548, 'false,': 33549, 'famine': 33550, 'fan;': 33551, 'fanatic,': 33552, 'fancies': 33553, 'fantastic!!': 33554, 'fare.<br': 33555, 'farm,': 33556, 'farting,': 33557, 'fascinates': 33558, 'fascinating.<br': 33559, 'fascination.': 33560, 'fashioned,': 33561, 'fashions,': 33562, 'fast-moving': 33563, 'fatalism': 33564, 'fate.<br': 33565, 'fatherly': 33566, 'fatigue': 33567, 'faultless': 33568, 'favourably': 33569, 'favoured': 33570, "feature'": 33571, 'feature.<br': 33572, 'feinstone,': 33573, 'females.': 33574, 'femininity': 33575, 'fends': 33576, 'feroz': 33577, 'ferrer': 33578, 'fetched,': 33579, 'fetched.': 33580, 'few),': 33581, 'few.<br': 33582, 'fez,': 33583, 'fi,': 33584, "fiancé's": 33585, 'fiancée,': 33586, 'fictional.': 33587, 'field!': 33588, 'figuratively': 33589, 'figure.<br': 33590, 'filler,': 33591, 'film?!': 33592, 'film?)': 33593, 'film?<br': 33594, 'filthy,': 33595, 'fire.<br': 33596, 'fireball': 33597, 'first?': 33598, 'fish-out-of-water': 33599, 'fisher.': 33600, 'fistfight': 33601, "fitzgerald's": 33602, 'five"': 33603, 'flabbergasted': 33604, 'flack': 33605, 'flaky': 33606, 'flaps': 33607, 'flashy,': 33608, 'flatly': 33609, 'fletcher': 33610, 'flick"': 33611, "flick's": 33612, 'flick:': 33613, 'flick;': 33614, 'flicked': 33615, 'flies.': 33616, 'flik': 33617, 'flooded': 33618, 'floors"': 33619, 'flop,': 33620, 'floppy': 33621, 'fluorescent': 33622, 'flush': 33623, 'foam': 33624, 'fodder,': 33625, 'folksy': 33626, 'fong': 33627, 'footage)': 33628, 'for),': 33629, 'forefront': 33630, 'foreigners,': 33631, 'forerunner': 33632, 'forever"': 33633, 'forewarned': 33634, 'forging': 33635, 'forgiven.<br': 33636, 'forgot,': 33637, 'forlorn': 33638, 'formulate': 33639, 'forty-five': 33640, 'forty-something': 33641, 'found.<br': 33642, 'fountain': 33643, 'foxx,': 33644, 'framed.': 33645, 'fran': 33646, 'francesca': 33647, 'frankenheimer': 33648, 'frankenstein"': 33649, "frankenstein's": 33650, 'fraudulent': 33651, 'fraulein': 33652, 'freak.': 33653, 'freaks.': 33654, "fred's": 33655, 'freddy.': 33656, 'freebird': 33657, 'frees': 33658, 'fresh-faced': 33659, 'friday,': 33660, 'friel': 33661, "friends'": 33662, 'friends?': 33663, 'friggin': 33664, "friggin'": 33665, 'fright.': 33666, 'frightened,': 33667, 'frivolous': 33668, 'frolicking': 33669, 'fronts': 33670, 'fronts.': 33671, 'frost,': 33672, 'fruitless': 33673, 'frustrating.': 33674, 'frye,': 33675, 'fräulein': 33676, 'ft': 33677, 'ft.': 33678, 'fulci,': 33679, 'full-time': 33680, 'fumbling': 33681, 'function.': 33682, 'funding,': 33683, 'funhouse': 33684, 'funk': 33685, 'furnished': 33686, 'fusion': 33687, 'future!': 33688, 'gadget,': 33689, 'gag,': 33690, 'gallery;': 33691, 'gambit': 33692, 'gamblers': 33693, "game's": 33694, 'games.<br': 33695, 'gangland': 33696, 'ganz': 33697, 'gardener,': 33698, 'gardens,': 33699, 'garrison': 33700, 'garvin': 33701, 'gary,': 33702, 'gazzara,': 33703, 'gear.': 33704, 'gedde': 33705, 'geddes,': 33706, 'geek,': 33707, 'geiger': 33708, 'geisha,': 33709, 'genders': 33710, 'generational': 33711, 'generator': 33712, 'generous,': 33713, 'genre:': 33714, 'geography,': 33715, "germany's": 33716, 'gershon': 33717, 'gesture,': 33718, 'giddily': 33719, 'gilbert,': 33720, 'gillen': 33721, 'gimmick,': 33722, 'giorgio': 33723, "giovanna's": 33724, 'giovanna,': 33725, "girl'": 33726, 'girlfight': 33727, 'girlfriends,': 33728, 'girlish': 33729, 'glacier': 33730, 'gladiator.': 33731, 'glancing': 33732, 'glazed': 33733, 'glides': 33734, 'globalization': 33735, 'globe,': 33736, 'glorious.': 33737, 'glove.': 33738, 'glover)': 33739, 'go-go': 33740, 'god)': 33741, 'godawful': 33742, 'goddamn': 33743, 'goines': 33744, 'goldberg)': 33745, "goldblum's": 33746, 'gone.<br': 33747, 'gonzo': 33748, 'good-looking,': 33749, 'goody': 33750, 'gooey': 33751, 'goring': 33752, 'gough': 33753, 'grader.': 33754, 'graders': 33755, 'grail,': 33756, 'grand,': 33757, "granddaughter's": 33758, 'granddaughter,': 33759, 'grandma,': 33760, "grandmother's": 33761, 'grasps': 33762, 'great!<br': 33763, 'great),': 33764, 'great).': 33765, 'green"': 33766, 'greens': 33767, "gregory's": 33768, 'greydon': 33769, 'grittier': 33770, 'gritty.': 33771, 'grotesque,': 33772, 'grounding': 33773, "group's": 33774, 'groups,': 33775, 'grow,': 33776, 'growing,': 33777, 'growls': 33778, 'grubby': 33779, 'grudgingly': 33780, 'guantanamo': 33781, 'guardians': 33782, 'guarding': 33783, 'guards,': 33784, 'guerilla': 33785, 'guide.': 33786, 'guilt-ridden': 33787, 'gun-toting': 33788, 'gunfights': 33789, 'gunfire,': 33790, 'gunpowder': 33791, 'guns"': 33792, 'gut-wrenching': 33793, 'guttural': 33794, 'guzman,': 33795, 'gérard': 33796, 'hackman,': 33797, 'haggard,': 33798, 'hahk': 33799, "haim's": 33800, 'hair)': 33801, 'hair?': 33802, 'hairdresser': 33803, 'haired,': 33804, 'hairy,': 33805, 'hakuna': 33806, 'half-decent': 33807, 'half-heartedly': 33808, 'halleck': 33809, 'ham.': 33810, 'hamill,': 33811, 'hamilton.': 33812, 'hammed': 33813, 'hampton,': 33814, 'hand-to-hand': 33815, 'handheld': 33816, 'handsome.': 33817, 'hanging,': 33818, 'hanging.': 33819, 'happenstance': 33820, 'happier.': 33821, 'harbor,': 33822, 'hard!': 33823, 'hard-bitten': 33824, 'harmonious': 33825, 'harms': 33826, "harris's": 33827, 'harron,': 33828, 'harry"': 33829, "hart's": 33830, 'hartmann': 33831, 'hasso': 33832, 'hatcher': 33833, "haven't,": 33834, 'having.': 33835, "hayward's": 33836, 'hazardous': 33837, 'he<br': 33838, 'headlights': 33839, 'healer': 33840, 'hearing.': 33841, 'heart"': 33842, 'heartbreakingly': 33843, 'hearted,': 33844, 'heartfelt.': 33845, 'heartstrings': 33846, 'heartwarming.': 33847, 'heavier': 33848, 'heavies': 33849, 'heavy-handed,': 33850, 'hecht': 33851, 'hee': 33852, 'heist.': 33853, "hell's": 33854, 'helped.': 33855, 'helpful.': 33856, 'helplessly': 33857, 'henner': 33858, "her's": 33859, 'her),': 33860, 'heralds': 33861, 'hercules': 33862, 'here).<br': 33863, 'here...': 33864, 'heroism,': 33865, 'heroism.': 33866, 'herrings,': 33867, 'hers.': 33868, 'hickam': 33869, 'hicks,': 33870, 'hideout': 33871, 'highlander': 33872, 'highly,': 33873, 'highpoint': 33874, 'highway,': 33875, 'him"': 33876, 'him).<br': 33877, 'him."': 33878, 'him/her': 33879, 'hingle': 33880, 'historian,': 33881, 'hitches': 33882, 'hitman': 33883, 'hmm...': 33884, 'hmmm.': 33885, 'hmmm...': 33886, 'ho"': 33887, "ho'": 33888, 'hoffman.': 33889, 'hokey.': 33890, 'holed': 33891, 'holiday,': 33892, 'holiday.': 33893, "holly's": 33894, 'hollywood!': 33895, "holmes'": 33896, "holmes's": 33897, 'home"': 33898, 'hometown,': 33899, 'homosexual,': 33900, 'honey': 33901, 'honor"': 33902, 'hoop': 33903, "hopper's": 33904, 'horizon,': 33905, 'horizons': 33906, 'horned': 33907, 'horrible;': 33908, 'horrifyingly': 33909, "horror's": 33910, 'horror?': 33911, 'horrors,': 33912, 'hoskins': 33913, 'hotels': 33914, 'hours!': 33915, 'hours)': 33916, 'hours?': 33917, 'hovering': 33918, 'howl': 33919, 'humanism': 33920, 'humping': 33921, "hung's": 33922, 'hungry,': 33923, 'hunt"': 33924, 'hunters,': 33925, 'hurled': 33926, 'hurls': 33927, 'hurried': 33928, 'hussey': 33929, 'hustling': 33930, 'hydro': 33931, 'hydrogen': 33932, 'hypnotist': 33933, 'hypochondriac': 33934, 'hypocritical,': 33935, 'i<br': 33936, 'ia': 33937, 'ic': 33938, 'ice-cold': 33939, 'idealist': 33940, 'idrissa': 33941, 'ignites': 33942, 'ii",': 33943, "il'": 33944, 'ills': 33945, 'illuminated': 33946, 'illusive': 33947, 'imagination.<br': 33948, 'imaginations.': 33949, 'imamura': 33950, 'imbues': 33951, 'immigrants,': 33952, 'impaired': 33953, 'impartial': 33954, 'impediment': 33955, 'impersonator': 33956, 'imported': 33957, 'impossible.<br': 33958, 'imprint': 33959, 'imprisons': 33960, 'improbable,': 33961, 'improbable.': 33962, 'improvisation': 33963, 'in-jokes': 33964, 'in:': 33965, 'inaccurate.': 33966, 'inane.': 33967, 'incident.': 33968, 'inclination': 33969, 'incompatible': 33970, 'incongruity': 33971, 'incredulity': 33972, 'independence,': 33973, 'individuality': 33974, 'indonesian': 33975, 'induces': 33976, 'indulged': 33977, 'indulgence': 33978, 'industry.<br': 33979, 'infection': 33980, 'infectious.': 33981, 'inferiority': 33982, 'infest': 33983, 'influence.': 33984, 'information.<br': 33985, 'infuse': 33986, 'ingeniously': 33987, 'ingredients,': 33988, 'ingénue': 33989, 'inhibitions': 33990, 'innuendo,': 33991, 'innuendos': 33992, 'insecurity': 33993, 'insensitive,': 33994, 'inseparable': 33995, 'insidious': 33996, 'insincere': 33997, 'inspirational.': 33998, 'install': 33999, 'instant,': 34000, 'instincts.': 34001, 'instruct': 34002, 'instructs': 34003, 'insufficiently': 34004, 'insult.': 34005, 'insulting,': 34006, 'insure': 34007, 'int': 34008, 'intelligence.<br': 34009, 'intended),': 34010, 'intentional,': 34011, 'intently': 34012, 'interface': 34013, 'intermittent': 34014, 'interrogating': 34015, 'intervenes': 34016, 'intestines,': 34017, 'intimately': 34018, 'intimidated': 34019, 'into.<br': 34020, 'intro,': 34021, 'introverted': 34022, 'intruding': 34023, 'intuitive': 34024, 'invention.': 34025, 'invents': 34026, 'investment.': 34027, 'invoke': 34028, 'involvement.': 34029, 'involving.': 34030, 'invulnerable': 34031, 'irish,': 34032, 'irresistibly': 34033, 'isabella': 34034, "island's": 34035, 'it!!!!!': 34036, 'it!).': 34037, 'it",': 34038, 'it,"': 34039, 'it...and': 34040, 'it...i': 34041, 'it?!': 34042, 'italian-american': 34043, 'item.': 34044, 'jackets': 34045, 'jackman,': 34046, 'jagged': 34047, 'jake,': 34048, 'jamming': 34049, 'janis': 34050, 'jaq': 34051, 'jarmusch': 34052, 'jarndyce': 34053, 'jasper': 34054, 'jay,': 34055, "jeff's": 34056, 'jekyll': 34057, 'jenkins': 34058, 'jermaine': 34059, 'jesse,': 34060, 'jewel.': 34061, 'jews,': 34062, 'joan,': 34063, 'job"': 34064, 'jodi': 34065, 'johny': 34066, 'jokers': 34067, 'jolting': 34068, 'josephine': 34069, 'journals': 34070, 'jovial': 34071, 'jox': 34072, 'juarez': 34073, 'judgment,': 34074, 'judgment.': 34075, 'juggling': 34076, 'junkyard': 34077, 'kangwon': 34078, 'kapur': 34079, 'karaoke': 34080, 'kargil': 34081, 'karma': 34082, 'karyn': 34083, 'katina': 34084, 'keeper.': 34085, 'keitel,': 34086, 'key"': 34087, 'keyes': 34088, 'khan,': 34089, 'kidding.<br': 34090, "kidman's": 34091, 'kidman,': 34092, 'kids?': 34093, 'kikuno': 34094, 'kill",': 34095, 'kindred': 34096, 'king?': 34097, 'kitamura': 34098, 'kitt': 34099, 'klein,': 34100, 'klingon': 34101, 'knockoff': 34102, 'koko': 34103, "kolchak's": 34104, "kong's": 34105, "korda's": 34106, 'kristel': 34107, 'kristi': 34108, 'ku': 34109, 'kumar,': 34110, 'kumari': 34111, 'laboratory.': 34112, 'laborious': 34113, 'lace': 34114, 'lackluster,': 34115, 'lamenting': 34116, 'lamm': 34117, 'lamour': 34118, 'lampooned': 34119, 'lampoons': 34120, "lane's": 34121, 'langley': 34122, 'lanisha': 34123, 'lanza,': 34124, "larry's": 34125, 'lass': 34126, 'lassalle': 34127, 'last)': 34128, 'lastly': 34129, 'latch': 34130, 'latent': 34131, 'later!': 34132, 'later).': 34133, 'latham': 34134, 'laws,': 34135, 'laws.': 34136, 'leaders,': 34137, 'league.': 34138, 'leaned': 34139, 'lear': 34140, 'learned.': 34141, 'least).': 34142, 'leatherface': 34143, 'leaud': 34144, 'lectured': 34145, 'lecturing': 34146, 'ledger,': 34147, 'left.<br': 34148, 'leguizamo': 34149, 'leigh,': 34150, "lena's": 34151, 'length.<br': 34152, 'lengthy,': 34153, 'lesley': 34154, 'less!': 34155, 'let-down.': 34156, 'level;': 34157, 'levels.<br': 34158, 'levin': 34159, 'levine': 34160, 'librarian.': 34161, 'license,': 34162, 'life-affirming': 34163, 'lifshitz': 34164, 'lightly,': 34165, 'like!': 34166, 'like"': 34167, 'like...': 34168, 'liliom': 34169, 'limbs,': 34170, 'lincoln.': 34171, 'lines!': 34172, 'lines).': 34173, 'lineup': 34174, "linklater's": 34175, "lisa's": 34176, 'listed,': 34177, 'listeners': 34178, 'lithgow,': 34179, 'lmn': 34180, 'lobotomy': 34181, 'locally': 34182, 'location.<br': 34183, 'lock,': 34184, 'lodged': 34185, 'lodoss': 34186, 'logan,': 34187, 'logical.': 34188, 'london)': 34189, 'lonely.': 34190, 'long-haired': 34191, 'long?': 34192, 'look!': 34193, 'looking.<br': 34194, 'looms': 34195, 'loosen': 34196, 'lopez.': 34197, "loren's": 34198, 'lorre,': 34199, 'lost"': 34200, 'loud!': 34201, 'loud.<br': 34202, 'love:': 34203, 'lovelace': 34204, 'loving.': 34205, 'low-key,': 34206, 'loyal,': 34207, 'loyalties': 34208, 'lt': 34209, 'lucci': 34210, 'lulls': 34211, 'luna': 34212, 'lunch,': 34213, 'luster': 34214, 'lynched': 34215, 'léaud': 34216, 'macha': 34217, 'machaty': 34218, 'machiavellian': 34219, 'machinery,': 34220, 'maclean,': 34221, 'macmahon': 34222, 'maddening': 34223, 'maddeningly': 34224, 'madhubala': 34225, 'madhuri': 34226, 'madmen': 34227, 'madrid': 34228, 'madrid,': 34229, 'magazines,': 34230, 'mainstream.': 34231, 'makeover': 34232, 'makers.<br': 34233, 'mala': 34234, 'malefique': 34235, 'maligned': 34236, "malone's": 34237, 'mama,': 34238, 'mammy': 34239, "man'.": 34240, 'manga.': 34241, 'manipulative.': 34242, 'mantra': 34243, 'mara': 34244, 'march,': 34245, 'marcus,': 34246, 'margaux': 34247, 'margo': 34248, 'marlowe': 34249, 'marquee': 34250, 'martine': 34251, 'marvel.': 34252, "mask'": 34253, 'massacre"': 34254, 'massacres': 34255, 'massimo': 34256, 'mastroianni,': 34257, 'masturbates': 34258, 'masturbation,': 34259, 'mata': 34260, 'matches,': 34261, 'mathematics': 34262, "mathieu's": 34263, 'matriarch': 34264, 'matrix"': 34265, 'matt,': 34266, 'matters.<br': 34267, 'mature.': 34268, 'maturity.': 34269, 'may.': 34270, 'mcadam': 34271, 'mccallum': 34272, 'mcclure,': 34273, 'mcdermott,': 34274, 'mcgraw': 34275, 'mcgregor,': 34276, 'mcnally,': 34277, 'me.)': 34278, 'mean)': 34279, 'medals': 34280, 'meek,': 34281, 'mellow': 34282, 'melody.': 34283, 'melting.': 34284, 'memoir': 34285, 'men,"': 34286, 'men;': 34287, 'menaced': 34288, 'mentioning,': 34289, 'mentioning.': 34290, 'mentor,': 34291, 'mercy.': 34292, 'message?': 34293, 'metallic': 34294, 'metaphoric': 34295, 'method,': 34296, 'metropolis,': 34297, 'metropolis.': 34298, 'mexicans': 34299, 'mice,': 34300, "mid-80's": 34301, 'midnight.': 34302, "mildred's": 34303, "miles'": 34304, 'milk,': 34305, 'millennium.': 34306, 'miller)': 34307, 'millie': 34308, 'millionaires': 34309, 'mimics': 34310, 'mind!': 34311, 'mind:': 34312, 'minded,': 34313, 'mindy': 34314, 'minelli': 34315, 'mini-series,': 34316, 'minimal,': 34317, 'minimalistic': 34318, 'minimally': 34319, 'miniseries.': 34320, "minnelli's": 34321, 'minnelli,': 34322, 'minutes...': 34323, 'miracle.': 34324, 'miraculously,': 34325, 'mired': 34326, 'mirroring': 34327, 'miserable,': 34328, 'misgivings': 34329, 'mishap': 34330, 'mishaps,': 34331, 'misinterpreted': 34332, 'misogyny,': 34333, 'missed.<br': 34334, 'missile.': 34335, 'mistaking': 34336, 'mixed.': 34337, 'mjh': 34338, 'modernized': 34339, 'modesty,': 34340, 'modified': 34341, 'momentous': 34342, 'moniker': 34343, 'monkey"': 34344, "monkeys'": 34345, 'monkeys.': 34346, 'monotony': 34347, 'monster)': 34348, "montana's": 34349, 'mood.<br': 34350, 'moon",': 34351, 'moonlight': 34352, 'moonshine': 34353, 'moran,': 34354, 'morgana.': 34355, 'morley': 34356, 'moron.': 34357, 'morphin': 34358, 'mortgage,': 34359, 'moss,': 34360, 'mother-daughter': 34361, 'mother;': 34362, 'mother?': 34363, 'motherhood': 34364, 'motherly': 34365, 'motions,': 34366, 'moulin': 34367, 'mountainous': 34368, 'mounties': 34369, 'moustache,': 34370, 'mousy': 34371, 'movie,but': 34372, 'movie-maker': 34373, 'movie?"': 34374, 'mph.': 34375, 'mst3000': 34376, 'mst3k.': 34377, 'much:': 34378, 'mud,': 34379, 'mugs': 34380, 'mummy,': 34381, 'munchie': 34382, 'mundane,': 34383, 'murderers,': 34384, 'murphy.': 34385, 'murray,': 34386, 'mush.': 34387, 'musings': 34388, 'mustache,': 34389, 'mutants.': 34390, 'mutates': 34391, "myers'": 34392, 'myers.': 34393, "myrtle's": 34394, "n'dour": 34395, 'nabors': 34396, 'nada.': 34397, 'naively': 34398, 'name),': 34399, 'name?': 34400, 'nancy.': 34401, 'nap.': 34402, 'narcissism': 34403, 'narnia': 34404, 'narrows': 34405, 'nathaniel': 34406, 'natives,': 34407, 'nauseous': 34408, 'nayland': 34409, "ne'er-do-well": 34410, 'nea': 34411, 'necessary?': 34412, 'necrophilia': 34413, 'ned.': 34414, 'neeson,': 34415, 'negates': 34416, 'nelson)': 34417, "nephew's": 34418, 'nephew.': 34419, 'nervous,': 34420, 'nervously': 34421, 'newhart,': 34422, 'newspaper.': 34423, 'nichols': 34424, 'nicknamed': 34425, 'nicola': 34426, 'nietzsche': 34427, "night'": 34428, 'nightclub,': 34429, 'nightclub.': 34430, 'nightmare.<br': 34431, 'nights,': 34432, 'nihilism': 34433, 'ninjas.': 34434, 'niven,': 34435, 'nobody,': 34436, 'noire': 34437, 'noises.': 34438, 'nolte,': 34439, 'nomination,': 34440, 'non-related': 34441, 'non-sense': 34442, 'norms': 34443, 'northwest,': 34444, "norton's": 34445, 'not:': 34446, 'notches': 34447, 'noticeable,': 34448, 'november,': 34449, 'now),': 34450, 'now;': 34451, 'nowadays.<br': 34452, 'nugget': 34453, 'nuit': 34454, 'nunn': 34455, 'nuremberg': 34456, 'nurse.': 34457, 'nurture': 34458, 'nyc.': 34459, 'nymphs': 34460, "o'hearn": 34461, 'oasis': 34462, 'oates': 34463, 'oberon,': 34464, 'obi': 34465, 'obscenities': 34466, 'obscured': 34467, 'obstacles.': 34468, 'oc': 34469, 'occurrences.': 34470, 'oddities': 34471, 'odyssey,': 34472, 'oeuvre': 34473, 'off),': 34474, 'off-beat': 34475, 'offended,': 34476, 'offended.': 34477, 'offering.': 34478, "officer's": 34479, 'officers,': 34480, 'offices,': 34481, 'official,': 34482, 'oftentimes': 34483, 'ogden': 34484, 'ok!': 34485, 'okay!': 34486, 'old!': 34487, "old's": 34488, 'oldies': 34489, 'on),': 34490, "one'": 34491, 'one.)': 34492, 'one..': 34493, 'one?)': 34494, 'ones?': 34495, 'onion': 34496, 'onstage': 34497, 'ooh,': 34498, 'ooze': 34499, 'opaque': 34500, 'open-air': 34501, 'opened.': 34502, 'opera.<br': 34503, 'operative.': 34504, 'ophelia': 34505, 'opportunistic': 34506, 'opportunities.': 34507, 'opt': 34508, 'optimistic,': 34509, 'ordeal,': 34510, 'organizes': 34511, 'originals,': 34512, 'orwellian': 34513, 'oscar.<br': 34514, 'othello.': 34515, 'others;': 34516, 'others?': 34517, 'out",': 34518, 'out-of-control': 34519, 'outcasts': 34520, 'outcomes': 34521, 'outings.': 34522, 'outlook,': 34523, 'outrun': 34524, 'outset.': 34525, 'outskirts': 34526, 'outweighed': 34527, 'outwit': 34528, 'over:': 34529, 'overdrive': 34530, 'overkill.': 34531, 'overplay': 34532, 'overshadow': 34533, 'overwhelms': 34534, 'own;': 34535, 'pabst': 34536, 'paean': 34537, 'page.<br': 34538, 'pages.': 34539, 'painstaking': 34540, 'palestinians': 34541, 'palette,': 34542, 'palmer': 34543, 'panders': 34544, 'panic,': 34545, 'panzram': 34546, 'papers,': 34547, 'parading': 34548, 'paradise"': 34549, 'paradise.': 34550, 'parents.<br': 34551, 'paris"': 34552, 'parminder': 34553, 'parted': 34554, 'passively': 34555, 'pasta': 34556, 'paternal': 34557, 'patience,': 34558, 'patients,': 34559, 'patronising': 34560, 'patten': 34561, "paula's": 34562, 'paula,': 34563, 'paulie,': 34564, 'paulie.': 34565, 'paulo': 34566, 'paused': 34567, 'paychecks': 34568, "payne's": 34569, 'peace.<br': 34570, 'peanuts': 34571, 'pearls': 34572, 'peddler': 34573, 'peed': 34574, 'peeled': 34575, 'peep': 34576, 'pegg,': 34577, 'pegged': 34578, 'penal': 34579, 'penalty.': 34580, 'penny.': 34581, 'pension': 34582, 'people).': 34583, 'people."': 34584, 'people...': 34585, 'pepsi': 34586, 'perception.': 34587, 'perched': 34588, 'peretti': 34589, 'perfection.<br': 34590, 'performance?': 34591, 'peril,': 34592, 'perished': 34593, 'pernell': 34594, 'persists': 34595, 'personal.': 34596, 'personifies': 34597, 'perspective.<br': 34598, 'pertaining': 34599, 'pervert.': 34600, 'perverts': 34601, 'pet.': 34602, 'peta': 34603, 'petrol': 34604, 'pets,': 34605, 'petty,': 34606, 'phase,': 34607, "philip's": 34608, 'philosophically': 34609, 'phoney': 34610, 'physicists': 34611, 'physics,': 34612, 'physique': 34613, 'picture:': 34614, 'pierced': 34615, 'pies': 34616, 'pills.': 34617, 'pilot.<br': 34618, 'pilots,': 34619, 'pious': 34620, 'pitch.': 34621, 'pitches': 34622, 'pitifully': 34623, 'pitt.': 34624, 'pitted': 34625, 'place).': 34626, 'place;': 34627, 'placid': 34628, 'plausibility.': 34629, 'playboy,': 34630, 'plenty"': 34631, 'plot-wise': 34632, 'plotlines': 34633, 'pluck': 34634, 'poehler': 34635, "point'": 34636, 'point).': 34637, 'point...': 34638, 'poison,': 34639, 'poitier': 34640, 'poldi': 34641, 'policemen,': 34642, 'political,': 34643, 'polluting': 34644, 'ponderosa': 34645, 'pontificating': 34646, 'poppins.': 34647, 'populace.': 34648, 'populations': 34649, 'populist': 34650, 'pork': 34651, 'portal': 34652, 'porter,': 34653, 'portray.': 34654, 'portrayal.<br': 34655, 'portrayed.<br': 34656, 'portrays.': 34657, 'positioned': 34658, 'possibility.': 34659, 'post-wwii': 34660, 'praise.<br': 34661, 'prances': 34662, "preacher's": 34663, 'precarious': 34664, 'precinct': 34665, 'preconceptions': 34666, 'predates': 34667, 'predator.': 34668, 'predicaments': 34669, 'premiere.': 34670, 'premises,': 34671, 'premium': 34672, 'prequel,': 34673, 'presence.<br': 34674, 'preserves': 34675, 'presidency': 34676, 'presses': 34677, 'pretenses': 34678, 'prettier': 34679, 'prevail': 34680, 'preview.': 34681, 'prices,': 34682, "priest's": 34683, 'primer': 34684, 'primitive.': 34685, 'principles.': 34686, 'prior,': 34687, 'priorities': 34688, 'priscilla': 34689, 'prison.<br': 34690, 'prize.': 34691, 'prized': 34692, 'probability': 34693, 'procedures': 34694, 'producer)': 34695, 'producers:': 34696, 'productions.<br': 34697, 'products.': 34698, 'profession,': 34699, 'profound.': 34700, 'progresses.<br': 34701, 'projectionist': 34702, 'promisingly,': 34703, 'prompt': 34704, 'prompts': 34705, 'propels': 34706, 'prosecuted': 34707, 'prosecution': 34708, 'prosthetics': 34709, 'prostitution,': 34710, 'protesting': 34711, 'protégé': 34712, 'provide.': 34713, 'prowling': 34714, 'ps2': 34715, 'pseudo-scientific': 34716, 'psychology.': 34717, 'psychopath.': 34718, 'pub.': 34719, 'pubescent': 34720, 'pudding': 34721, 'puking': 34722, 'punishes': 34723, 'pup': 34724, 'purchases': 34725, 'purgatory': 34726, 'puritan': 34727, 'purpose?': 34728, 'pussy': 34729, 'pyle': 34730, 'quaint,': 34731, 'quarterback': 34732, 'quebec': 34733, 'queens,': 34734, 'quirkiness': 34735, 'quite,': 34736, 'quivering': 34737, 'quote,': 34738, 'quotient': 34739, 'r2': 34740, 'races,': 34741, 'racing.': 34742, 'racks': 34743, 'rad': 34744, 'rai': 34745, 'rake': 34746, 'ramp': 34747, 'ran,': 34748, 'rank,': 34749, 'rap.': 34750, 'rapist,': 34751, 'raptors': 34752, 'rationality': 34753, 'ratso,': 34754, 'rattle': 34755, 'rays': 34756, 'razor-sharp': 34757, 're-used': 34758, 're-written': 34759, 'reach.': 34760, 'reader.': 34761, 'ready,': 34762, 'real!': 34763, 'real-time': 34764, 'realised.': 34765, 'realizes,': 34766, 'rebellion,': 34767, 'rebellion.': 34768, 'rebellious,': 34769, 'rebuilt': 34770, 'recapturing': 34771, 'receptive': 34772, 'recesses': 34773, 'recital': 34774, 'reckoned': 34775, 'recognizably': 34776, 'reconciled': 34777, 'record.': 34778, 'recorded.': 34779, 'records.': 34780, 'recreations': 34781, 'redefines': 34782, "redford's": 34783, 'rednecks': 34784, 'reducing': 34785, 'reeking': 34786, "reeves'": 34787, 'reference.': 34788, 'referencing': 34789, 'reg': 34790, 'regained': 34791, 'regains': 34792, 'regressive': 34793, 'regret.': 34794, 'regrettable': 34795, 'regrettably,': 34796, 'rehabilitation': 34797, 'rehearsed': 34798, 'reich': 34799, 'reid.': 34800, 'reigns': 34801, 'rejuvenation': 34802, 'relation.': 34803, 'relaxed,': 34804, 'reliant': 34805, 'religious,': 34806, 'remarkable.<br': 34807, 'remember?': 34808, 'rendezvous': 34809, 'rendition.': 34810, 'renew': 34811, 'rentals': 34812, 'rené': 34813, 'renée': 34814, 'repartee': 34815, 'repeat.': 34816, 'replica': 34817, 'replied,': 34818, 'repo': 34819, 'requiem': 34820, 'rescue.<br': 34821, 'resents': 34822, 'reservoir': 34823, 'resolved,': 34824, 'resolved.': 34825, 'resonance.': 34826, 'respectfully': 34827, 'responsibility.': 34828, 'responsible.': 34829, 'restraint.': 34830, 'resurrects': 34831, 'retirement.': 34832, 'retrieves': 34833, 'revamped': 34834, 'revealed.<br': 34835, 'revelatory': 34836, 'reverse.': 34837, 'reversing': 34838, 'revert': 34839, 'review:': 34840, 'reviled': 34841, 'rewatched': 34842, "reynolds'": 34843, 'rhine': 34844, 'rhine"': 34845, 'rhythm.': 34846, 'rhythmic': 34847, 'rice.': 34848, 'rickety': 34849, 'ride!': 34850, 'riffs': 34851, 'rigg': 34852, 'right"': 34853, 'right?!': 34854, 'right?<br': 34855, 'rigors': 34856, 'ringu': 34857, 'riot,': 34858, 'rip-roaring': 34859, 'risk,': 34860, 'risked': 34861, 'rites': 34862, 'roads.': 34863, 'roadside': 34864, 'roasted': 34865, 'robbins,': 34866, 'roberts.': 34867, 'rockers': 34868, 'roger,': 34869, 'rolled.': 34870, 'rollin': 34871, 'rolling,': 34872, 'romance"': 34873, 'romantic-comedy': 34874, 'rome.': 34875, 'roots.': 34876, 'roped': 34877, 'rosco': 34878, 'rosenlski': 34879, 'roshan': 34880, 'ross"': 34881, 'rossellini': 34882, 'rosy': 34883, 'rouge': 34884, 'rudd,': 34885, 'rudely': 34886, 'rudolf': 34887, 'ruined.': 34888, 'ruiz': 34889, 'rulers': 34890, 'runyon': 34891, 'rush.': 34892, 'ruth,': 34893, 'rüdiger': 34894, 's&m,': 34895, 's.s.': 34896, 'sa': 34897, 'sabella': 34898, 'sabre': 34899, 'sabrina.': 34900, 'sacks': 34901, 'saddens': 34902, 'sadistic,': 34903, 'sado-masochistic': 34904, 'safety,': 34905, 'sag': 34906, 'said...': 34907, 'sails': 34908, "sammo's": 34909, 'samples': 34910, "sandra's": 34911, 'sandwich': 34912, 'sandwiched': 34913, 'sandy,': 34914, 'santiago': 34915, 'sarandon)': 34916, 'satirizing': 34917, 'satisfied,': 34918, 'saul': 34919, 'savages': 34920, 'scams': 34921, 'scarier.': 34922, 'scarwid': 34923, 'scenarios,': 34924, 'scene"': 34925, 'schemes.': 34926, 'schneider,': 34927, 'schoolgirl': 34928, 'schools,': 34929, 'schrader': 34930, 'scintillating': 34931, 'scooter': 34932, 'scorn': 34933, 'scorned': 34934, 'scowl': 34935, 'scowls': 34936, 'scraggly': 34937, 'scraps': 34938, 'screeches': 34939, 'scriptwriting': 34940, 'scuffle': 34941, 'seals': 34942, 'sean,': 34943, 'search.': 34944, 'seats,': 34945, 'second-tier': 34946, 'sect': 34947, 'security,': 34948, 'seductress': 34949, "see's": 34950, 'see)': 34951, 'see:': 34952, 'seedier': 34953, 'seem.': 34954, 'seems.<br': 34955, 'seen;': 34956, 'seize': 34957, 'seizure': 34958, 'self-consciousness': 34959, 'self-inflicted': 34960, 'selfishness': 34961, 'semen': 34962, 'semi-autobiographical': 34963, 'seminar': 34964, 'senile': 34965, 'sennett': 34966, 'sensationalistic': 34967, 'sense?': 34968, 'sensed': 34969, 'sensibilities.': 34970, 'sentinel.': 34971, 'serials.': 34972, 'seriously!': 34973, 'servo': 34974, 'session,': 34975, 'seventy': 34976, 'sewers': 34977, 'sewn': 34978, 'sexless': 34979, 'sexo': 34980, 'sexpot': 34981, 'sg-1.': 34982, 'sg1': 34983, 'shabbily': 34984, 'shaft': 34985, 'shaft.': 34986, 'shambling': 34987, 'shamed': 34988, 'shape-shifting': 34989, 'shapes,': 34990, 'sharpe': 34991, 'shaw,': 34992, 'sheeta,': 34993, 'sheldon': 34994, 'shells': 34995, 'shelter,': 34996, "sheridan's": 34997, 'shinjuku': 34998, 'shirtless': 34999, 'shirts,': 35000, 'shogunate': 35001, 'shortcoming': 35002, 'shortest': 35003, 'shot-on-video': 35004, 'shot?': 35005, 'shotgun,': 35006, 'show!<br': 35007, 'show;': 35008, 'showed.': 35009, 'showgirl': 35010, 'showgirls': 35011, 'shredder': 35012, 'shrewdly': 35013, 'shtick.': 35014, 'shu': 35015, 'siberian': 35016, 'sick.<br': 35017, 'sicko': 35018, 'sideshow': 35019, 'siege,': 35020, 'significance,': 35021, 'significant,': 35022, 'signifying': 35023, 'silas': 35024, 'silence,': 35025, 'sillier': 35026, 'silva': 35027, 'simmons)': 35028, 'simple.<br': 35029, "simpson's": 35030, 'simultaneous': 35031, 'simultaneously,': 35032, 'simultaneously.': 35033, 'sinatra.': 35034, 'sinclair': 35035, 'singlehandedly': 35036, 'sins,': 35037, 'sipping': 35038, 'sirk,': 35039, 'sitter': 35040, 'sittings': 35041, 'six,': 35042, 'skepticism': 35043, 'sketches,': 35044, 'skirt,': 35045, 'skits,': 35046, 'skye': 35047, 'slant': 35048, 'slender': 35049, 'slightly,': 35050, 'slow-paced,': 35051, 'smiles.': 35052, 'smirking': 35053, 'smoking.': 35054, 'smother': 35055, 'smuggle': 35056, 'smugness': 35057, 'snakes,': 35058, 'snakes.': 35059, 'snatches': 35060, 'so),': 35061, 'so:': 35062, 'so?': 35063, 'soak': 35064, 'soar': 35065, 'soccer.': 35066, 'sociological': 35067, 'soda': 35068, 'soft-porn': 35069, 'soft-spoken': 35070, 'soft.': 35071, 'sogo': 35072, 'solemn': 35073, 'solidifies': 35074, "solomon's": 35075, 'solos': 35076, 'som': 35077, 'somber,': 35078, 'something),': 35079, 'somewhat.': 35080, 'songs)': 35081, 'soporific': 35082, 'sopranos,': 35083, 'sort-of': 35084, 'sortie': 35085, 'sorvino,': 35086, 'soul"': 35087, 'soul.<br': 35088, 'sound.<br': 35089, 'soundstage': 35090, 'soutendijk': 35091, 'sox,': 35092, 'spanky': 35093, 'spares': 35094, 'sparing': 35095, 'spate': 35096, 'speaks,': 35097, 'special"': 35098, 'species.': 35099, 'specific,': 35100, 'specified': 35101, 'specter': 35102, 'spectre': 35103, 'speculation': 35104, 'spell.': 35105, 'spenny': 35106, 'spices': 35107, 'spike.': 35108, 'spiked': 35109, 'spin-offs': 35110, 'spine,': 35111, 'spine.': 35112, 'spiteful': 35113, 'splatter,': 35114, 'spoilers**<br': 35115, 'spontaneity': 35116, 'spores': 35117, 'spouse,': 35118, 'spouses': 35119, 'sprays': 35120, 'sprightly': 35121, 'springsteen': 35122, 'spunk': 35123, 'spurned': 35124, 'spy.': 35125, 'squeamish,': 35126, 'squeezed': 35127, 'squirrel': 35128, 'stability': 35129, 'stadium,': 35130, 'stag': 35131, 'stages,': 35132, 'stain': 35133, 'stake,': 35134, 'stall': 35135, 'star)': 35136, 'starbuck': 35137, "state's": 35138, 'stations,': 35139, 'stature,': 35140, 'steak': 35141, 'steel,': 35142, 'steel.': 35143, 'stepsisters.': 35144, 'stern,': 35145, 'sternberg': 35146, "stevenson's": 35147, 'stewardess': 35148, 'still...': 35149, 'stimulated': 35150, 'stinging': 35151, 'stinker!': 35152, 'stinks!': 35153, 'stinks,': 35154, 'stitched': 35155, 'stock,': 35156, 'stodgy': 35157, 'stoltz,': 35158, 'stomach.<br': 35159, 'stone)': 35160, 'stooges,': 35161, 'stool': 35162, 'stores.': 35163, "story'.": 35164, 'story?<br': 35165, 'storyteller.': 35166, 'straight-faced': 35167, 'straightened': 35168, 'straightforward.': 35169, 'strategically': 35170, 'strategies': 35171, 'strayed': 35172, 'strayer': 35173, 'strikes.': 35174, 'strings,': 35175, 'strings.': 35176, 'stripes': 35177, 'striptease': 35178, 'structures': 35179, 'stubbornly': 35180, 'stuff:': 35181, 'stuff;': 35182, 'stuffing': 35183, 'stun': 35184, 'stung': 35185, 'stunted': 35186, 'sturges,': 35187, 'style)': 35188, 'style),': 35189, 'styles.': 35190, 'stylings': 35191, 'stylish.': 35192, 'stylistically,': 35193, 'sub-par.': 35194, 'sub-plots,': 35195, "subject's": 35196, 'subjects.': 35197, 'sublimely': 35198, 'submerged': 35199, 'subplot.': 35200, 'subterranean': 35201, 'succeeded.<br': 35202, 'success!': 35203, 'succinctly': 35204, 'sucked!': 35205, 'suleiman': 35206, 'sullivan)': 35207, 'sultan': 35208, 'summarily': 35209, 'summer"': 35210, 'summer.<br': 35211, 'summit': 35212, 'sun"': 35213, 'superintendent': 35214, 'superiors,': 35215, 'supporter,': 35216, 'suppression': 35217, 'surefire': 35218, 'surroundings,': 35219, 'survives,': 35220, 'swearing.': 35221, 'sweethearts': 35222, 'swing,': 35223, 'switzerland.': 35224, 'sxsw': 35225, "syberberg's": 35226, 'syfy': 35227, 'sympathized': 35228, 'sympathy.': 35229, 'symphonic': 35230, 'syndication': 35231, 'synth': 35232, 'system.<br': 35233, 'szifron': 35234, 'são': 35235, "t'pol": 35236, 't,': 35237, 't.v.,': 35238, 'tabloids': 35239, 'taciturn': 35240, 'tacky.': 35241, 'tactics,': 35242, 'tadashi': 35243, 'tagging': 35244, 'tahiti': 35245, 'taiwan': 35246, 'takeover': 35247, 'tale.<br': 35248, 'talespin': 35249, "talking'": 35250, 'tammy': 35251, 'tantrums': 35252, 'tap.': 35253, 'tas': 35254, 'task.<br': 35255, 'taste.<br': 35256, 'tasting': 35257, 'te': 35258, "teacher's": 35259, 'teachers.': 35260, "teal'c": 35261, 'teams,': 35262, 'technicalities': 35263, 'technicolour': 35264, 'techniques.<br': 35265, 'tedium.': 35266, 'teen-aged': 35267, 'teeters': 35268, 'templars': 35269, 'temples': 35270, 'tense.': 35271, 'tents,': 35272, 'tepper': 35273, 'terrace': 35274, 'terrence': 35275, 'terribly,': 35276, 'terrified,': 35277, 'terrorist,': 35278, 'terrorists.': 35279, 'testament.': 35280, 'tetsuo': 35281, 'tetsurô': 35282, 'teutonic': 35283, 'thanking': 35284, 'thanks.': 35285, 'that).<br': 35286, 'that."': 35287, 'that...<br': 35288, 'theaters.<br': 35289, "their's": 35290, 'them?<br': 35291, 'then:': 35292, 'theological': 35293, 'theres': 35294, 'thhe': 35295, 'thickens': 35296, 'thicker': 35297, 'thieves,': 35298, 'thing...': 35299, 'things...': 35300, 'thinnes': 35301, 'this!<br': 35302, 'this."': 35303, 'this?"': 35304, 'thom': 35305, 'thoroughly.': 35306, 'those.<br': 35307, 'though!': 35308, 'thoughtless': 35309, 'threatening,': 35310, 'three:': 35311, 'thrive': 35312, 'through-out': 35313, 'thug.': 35314, 'thumb.': 35315, 'tickets,': 35316, 'tickle': 35317, 'tidbits': 35318, 'tier': 35319, 'tight.': 35320, 'tilt': 35321, 'tilted': 35322, 'timberlake,': 35323, 'time).<br': 35324, 'time-lapse': 35325, 'tinny': 35326, 'tint': 35327, 'tipping': 35328, 'tirade': 35329, 'titans': 35330, 'titillate': 35331, 'titillating': 35332, 'title).': 35333, 'tits.': 35334, 'tmtm': 35335, "to's": 35336, 'together;': 35337, 'toilet,': 35338, 'tokyo.': 35339, 'toothless': 35340, 'top-secret': 35341, 'tops,': 35342, 'tori': 35343, 'tormenting': 35344, 'tortured.': 35345, 'tory': 35346, 'tournament,': 35347, 'town"': 35348, 'toy,': 35349, 'tracker': 35350, 'traded': 35351, 'traders': 35352, 'traffic.': 35353, 'trail,': 35354, 'trailers,': 35355, 'train.<br': 35356, 'traits.': 35357, 'trajectory': 35358, 'trampled': 35359, 'trapper': 35360, 'trauma.': 35361, 'travel.': 35362, 'travesty,': 35363, 'treasure.<br': 35364, 'trenches': 35365, 'trepidation': 35366, 'trials,': 35367, 'tried.<br': 35368, 'trigger-happy': 35369, 'trigger.': 35370, 'trip.<br': 35371, 'trivial,': 35372, 'trooper': 35373, 'trudge': 35374, 'true"': 35375, 'true-crime': 35376, 'true-life': 35377, 'trusts': 35378, 'truths.': 35379, 'try.<br': 35380, 'tryst': 35381, 'tunnel.': 35382, 'tutor': 35383, 'tv?': 35384, 'twain': 35385, 'twelve,': 35386, 'twice.<br': 35387, 'twins.': 35388, 'twisted.': 35389, 'twister': 35390, 'type.<br': 35391, 'tyra': 35392, 'tyrant': 35393, 'u-boat': 35394, 'u-turn': 35395, 'u.s': 35396, 'ugly"': 35397, 'ulises': 35398, 'ultimatum"': 35399, 'umberto': 35400, 'umbrella': 35401, 'umpteen': 35402, 'unadulterated': 35403, 'unaffected': 35404, 'unafraid': 35405, 'unapologetic': 35406, 'unapologetically': 35407, 'unashamed': 35408, 'unassuming': 35409, 'uncommonly': 35410, 'unconvincingly': 35411, 'under,': 35412, 'under.': 35413, 'underscore': 35414, 'understandable,': 35415, 'understated.': 35416, 'understood,': 35417, 'undertake': 35418, 'undertones.': 35419, 'une': 35420, 'unending': 35421, 'unexplained.': 35422, 'unfit': 35423, 'unfolds.<br': 35424, 'unforgivably': 35425, 'unforgiving': 35426, 'ungrateful': 35427, 'unhappy,': 35428, 'uniform,': 35429, 'unimaginably': 35430, 'uninspiring,': 35431, 'unintentional.': 35432, 'universe.<br': 35433, 'universities': 35434, 'unmarried': 35435, 'unmatched': 35436, 'unnatural.': 35437, 'unobtrusive': 35438, 'unparalleled': 35439, 'unprotected': 35440, 'unrelentingly': 35441, 'unrepentant': 35442, 'unrest': 35443, 'unscripted': 35444, 'unsentimental': 35445, 'unsurpassed': 35446, 'unsurprisingly,': 35447, 'unveiled': 35448, 'unwillingly': 35449, 'unwitting': 35450, 'up;': 35451, 'updates': 35452, 'uproariously': 35453, 'upstaged': 35454, 'upstart': 35455, 'upwards': 35456, 'us;': 35457, "ustinov's": 35458, 'utopian': 35459, 'vacationing': 35460, 'vader.': 35461, 'vainly': 35462, 'valid,': 35463, 'valjean': 35464, 'vallee': 35465, 'valley.': 35466, 'vapid,': 35467, 'vaults': 35468, 'vehicles,': 35469, 'velma': 35470, 'vengeance.<br': 35471, 'venture.': 35472, 'verbatim': 35473, 'verisimilitude': 35474, 'verma': 35475, 'vernon,': 35476, 'version!': 35477, 'vida': 35478, 'viel': 35479, 'vienna.': 35480, 'viewer)': 35481, 'viewing!': 35482, 'vigalondo': 35483, 'vile.': 35484, 'villainy': 35485, 'villians': 35486, 'viola': 35487, 'violation': 35488, 'violence)': 35489, 'violence?': 35490, 'virgil': 35491, 'virtues,': 35492, 'virtuoso': 35493, 'visible.': 35494, 'visual,': 35495, 'vittorio': 35496, 'vodka': 35497, 'voice-over,': 35498, 'voight)': 35499, 'volckman': 35500, 'volume.': 35501, 'vote.': 35502, 'voyager.': 35503, 'voyeur': 35504, 'voyeurism': 35505, 'wafer': 35506, 'wafer-thin': 35507, 'waif': 35508, 'wait"': 35509, 'waitress.': 35510, 'wake-up': 35511, 'wake.': 35512, 'wal-mart.': 35513, 'walkers': 35514, "walkin'": 35515, 'wallace.': 35516, 'wandering,': 35517, 'want.<br': 35518, 'war)': 35519, 'warburton': 35520, 'wargames': 35521, 'warmth.': 35522, 'warriors.': 35523, "was'nt": 35524, 'watch)': 35525, 'watch...': 35526, 'watch?': 35527, "water's": 35528, 'waterfall"': 35529, 'watering': 35530, 'waterloo': 35531, 'wavering': 35532, 'way).<br': 35533, 'weakling': 35534, 'weary,': 35535, 'webber': 35536, "week's": 35537, 'weighs': 35538, 'well!.': 35539, 'well-told': 35540, 'well..': 35541, 'wellington': 35542, 'wembley': 35543, 'werewolves,': 35544, 'whale,': 35545, 'what?!': 35546, 'whatever)': 35547, 'whatsoever!': 35548, 'wheelchair,': 35549, 'wheelchair-bound': 35550, 'whining,': 35551, 'whirling': 35552, 'whispering': 35553, 'whistler': 35554, 'white"': 35555, "who're": 35556, 'whodunnit': 35557, 'whom.': 35558, 'wichita': 35559, 'widespread': 35560, 'wields': 35561, 'wife),': 35562, 'wilford': 35563, 'willful': 35564, 'williamson,': 35565, "willy's": 35566, 'wim': 35567, 'wind",': 35568, 'wing,': 35569, 'winged': 35570, 'winningham': 35571, 'winningly': 35572, "winter's": 35573, 'wired': 35574, 'wishes,': 35575, 'with)': 35576, 'with).': 35577, 'with;': 35578, 'wives.': 35579, 'wizards': 35580, "wodehouse's": 35581, 'wolf,': 35582, "won't,": 35583, 'wonder...': 35584, 'wonders,': 35585, 'woody,': 35586, 'woos': 35587, 'workshop': 35588, 'world".': 35589, 'worlds"': 35590, 'worry.': 35591, 'worth.<br': 35592, 'worthwhile.<br': 35593, 'wrathful': 35594, 'wreaks': 35595, 'wreckage': 35596, 'wrestles': 35597, 'wrestling,': 35598, 'wrestling.': 35599, 'wrist.': 35600, "wu's": 35601, 'wuss': 35602, 'ww1': 35603, 'ww2.': 35604, 'xu': 35605, 'yada.': 35606, 'yank': 35607, 'yasmin': 35608, 'year"': 35609, 'years"': 35610, 'years...': 35611, 'years:': 35612, 'years;': 35613, 'yells,': 35614, 'yep!': 35615, 'yet)': 35616, "yeti's": 35617, 'you",': 35618, 'you;': 35619, 'you?<br': 35620, 'youngsters,': 35621, 'yours,': 35622, 'yuck!': 35623, 'yugoslavia': 35624, 'yves': 35625, 'z,': 35626, 'z.': 35627, "zane's": 35628, 'zap': 35629, 'zealand,': 35630, 'zealous': 35631, 'zoo,': 35632, 'zorak': 35633, 'zorro,': 35634, "\x8ei\x9eek's": 35635, '£1': 35636, '!!!!!!!': 35637, '".': 35638, '"...': 35639, '"20': 35640, '"24"': 35641, '"28': 35642, '"3': 35643, '"accidentally"': 35644, '"action': 35645, '"adult"': 35646, '"airplane!"': 35647, '"alice': 35648, '"army': 35649, '"arthur"': 35650, '"best"': 35651, '"birth': 35652, '"blade': 35653, '"blind': 35654, '"bomb"': 35655, '"boom"': 35656, '"boss"': 35657, '"breakfast': 35658, '"brother': 35659, '"california': 35660, '"cama': 35661, '"cannibal': 35662, '"carrie"': 35663, '"carriers"': 35664, '"change': 35665, '"che"': 35666, '"christian"': 35667, '"classic': 35668, '"clean"': 35669, '"clever"': 35670, '"close': 35671, '"cocktails': 35672, '"cop': 35673, '"creep"': 35674, '"criminally': 35675, '"cross': 35676, '"crouching': 35677, '"cult"': 35678, '"dahmer"': 35679, '"danger': 35680, '"day': 35681, '"deathstalker"': 35682, '"different"': 35683, '"dracula"': 35684, '"drama"': 35685, '"dramatic"': 35686, '"dude,': 35687, '"dumb': 35688, '"earth"': 35689, '"earth,': 35690, '"eddie': 35691, '"enter': 35692, '"escape': 35693, '"european': 35694, '"everyone': 35695, '"extreme"': 35696, '"falling': 35697, '"fast': 35698, '"fido"': 35699, '"flying': 35700, '"footlight': 35701, '"free"': 35702, '"general': 35703, '"genius"': 35704, '"george': 35705, '"gespenster"': 35706, '"global': 35707, '"grease': 35708, '"heavy"': 35709, '"holy': 35710, '"home"': 35711, '"honeymoon': 35712, '"howard': 35713, '"human': 35714, '"human"': 35715, '"imitation': 35716, '"in"': 35717, '"independent"': 35718, '"invasion': 35719, '"isn\'t': 35720, '"jake': 35721, '"kentucky': 35722, '"kingdom': 35723, '"lisa': 35724, '"living': 35725, '"look"': 35726, '"los': 35727, '"major': 35728, '"mark': 35729, '"meatball': 35730, '"million': 35731, '"missing': 35732, '"moon': 35733, '"movie",': 35734, '"mysterious': 35735, '"next': 35736, '"niki': 35737, '"no"': 35738, '"nothing".': 35739, '"offside"': 35740, '"old"': 35741, '"oliver!"': 35742, '"original"': 35743, '"othello"': 35744, '"paulie"': 35745, '"point"': 35746, '"problem': 35747, '"promise': 35748, '"pure': 35749, '"quartier': 35750, '"radium': 35751, '"rain': 35752, '"roman': 35753, '"rough': 35754, '"save': 35755, '"seinfeld"': 35756, '"sexy"': 35757, '"shaun': 35758, '"shock': 35759, '"shock"': 35760, '"short': 35761, '"shower"': 35762, '"shrek"': 35763, '"sky': 35764, '"small"': 35765, '"southern"': 35766, '"stardust"': 35767, '"starship': 35768, '"strangers': 35769, '"stupid"': 35770, '"style"': 35771, '"taboo"': 35772, '"talent"': 35773, '"thanks': 35774, '"these': 35775, '"thin': 35776, '"titanic",': 35777, '"video': 35778, '"voyage': 35779, '"winchester': 35780, '"would': 35781, '"wow!': 35782, '"yes"': 35783, '#3': 35784, '$1.50': 35785, '$50': 35786, '$6': 35787, '$8': 35788, "'12": 35789, "'40's": 35790, "'80s,": 35791, "'80s.": 35792, "'90": 35793, "'90's": 35794, "'actors'": 35795, "'american": 35796, "'back": 35797, "'cut'": 35798, "'dead": 35799, "'dillinger'": 35800, "'dr.": 35801, "'evil": 35802, "'finding": 35803, "'friends'": 35804, "'full": 35805, "'get'": 35806, "'great'": 35807, "'gung": 35808, "'halloween'": 35809, "'hey,": 35810, "'it's": 35811, "'joe'": 35812, "'la": 35813, "'let's": 35814, "'murder": 35815, "'must": 35816, "'national": 35817, "'oh,": 35818, "'ol": 35819, "'old'": 35820, "'presque": 35821, "'red": 35822, "'return": 35823, "'road": 35824, "'sixteen": 35825, "'that's": 35826, "'they": 35827, "'what's": 35828, "'where": 35829, '("my': 35830, '(10': 35831, '(1933).': 35832, '(1940)': 35833, '(1942)': 35834, '(1944)': 35835, '(1945)': 35836, '(1948)': 35837, '(1959)': 35838, '(1971),': 35839, '(1976)': 35840, '(1976),': 35841, '(1978)': 35842, '(1992)': 35843, '(2004),': 35844, '(2008)': 35845, '(`the': 35846, '(adapted': 35847, '(alec': 35848, '(although,': 35849, '(amitabh': 35850, '(andrew': 35851, '(any': 35852, '(anyone': 35853, '(apparently)': 35854, '(author': 35855, '(be': 35856, '(bela': 35857, '(brenda': 35858, '(brigitte': 35859, '(brilliant': 35860, '(brilliantly': 35861, '(brittany': 35862, '(btw,': 35863, '(but,': 35864, '(called': 35865, '(colin': 35866, '(dare': 35867, '(debbie': 35868, '(directed': 35869, '(elisha': 35870, '(emmanuelle': 35871, '(eva': 35872, '(everett': 35873, '(everyone': 35874, '(far': 35875, '(father': 35876, '(frances': 35877, '(give': 35878, '(go': 35879, '(golden': 35880, '(gordon': 35881, '(hardly': 35882, '(highly': 35883, '(however': 35884, '(ie:': 35885, '(involving': 35886, '(jackie': 35887, '(jan': 35888, '(jeroen': 35889, '(juliette': 35890, '(justin': 35891, '(karl': 35892, '(keira': 35893, '(known': 35894, '(kurt': 35895, '(lara': 35896, '(larry': 35897, '(last': 35898, '(lauren': 35899, '(leaving': 35900, '(led': 35901, '(less': 35902, '(lucy': 35903, '(making': 35904, '(max': 35905, '(me': 35906, '(meaning': 35907, '(meryl': 35908, '(miranda': 35909, '(morgan': 35910, '(must': 35911, '(nice': 35912, '(nicely': 35913, '(nina': 35914, '(original': 35915, '(please': 35916, '(poor': 35917, '(presumably)': 35918, '(raymond': 35919, '(rita': 35920, '(roger': 35921, '(roman': 35922, '(rupert': 35923, '(sadly)': 35924, '(sadly,': 35925, '(sandra': 35926, '(scatman': 35927, '(season': 35928, '(shirley': 35929, '(someone': 35930, '(sorry)': 35931, '(supposedly)': 35932, '(surely': 35933, '(sylvia': 35934, '(typical': 35935, '(uma': 35936, '(warren': 35937, '(way': 35938, '(who?)': 35939, '(wow,': 35940, '**possible': 35941, '*this*': 35942, '*was*': 35943, ',it': 35944, ',who': 35945, '-10': 35946, '..."': 35947, '...this': 35948, '/>"there': 35949, '/>*******': 35950, '/>.': 35951, '/>0': 35952, '/>2/10.': 35953, '/>above': 35954, '/>adam': 35955, '/>admittedly,': 35956, '/>always': 35957, '/>apparently,': 35958, '/>barbara': 35959, '/>believe': 35960, '/>besides,': 35961, '/>branagh': 35962, '/>btw,': 35963, '/>but...': 35964, '/>canto': 35965, '/>clark': 35966, '/>could': 35967, '/>danny': 35968, '/>disney': 35969, '/>donald': 35970, '/>dr.': 35971, '/>election': 35972, '/>end': 35973, '/>enterprise': 35974, '/>everybody': 35975, '/>evil': 35976, '/>fast': 35977, '/>funny': 35978, '/>got': 35979, '/>helen': 35980, '/>holly': 35981, '/>imdb': 35982, '/>interesting': 35983, '/>interestingly,': 35984, "/>isn't": 35985, '/>item:': 35986, '/>jackie': 35987, '/>jay': 35988, '/>jeremy': 35989, '/>joseph': 35990, '/>kenneth': 35991, '/>kim': 35992, '/>kind': 35993, '/>knowing': 35994, '/>main': 35995, '/>man,': 35996, '/>michelle': 35997, '/>naturally,': 35998, '/>nicholas': 35999, '/>open': 36000, '/>others': 36001, '/>out': 36002, '/>pure': 36003, '/>rachel': 36004, '/>regarding': 36005, '/>seemingly': 36006, '/>seen': 36007, '/>seven': 36008, '/>should': 36009, '/>simon': 36010, '/>somehow': 36011, '/>soon,': 36012, '/>steer': 36013, '/>stewart': 36014, '/>strangely': 36015, '/>surely': 36016, '/>terrific': 36017, '/>thirdly,': 36018, '/>time': 36019, '/>totally': 36020, '/>up': 36021, '/>vote:': 36022, "/>we've": 36023, '/>williams': 36024, '/>within': 36025, '/>wonderful': 36026, '/>writer': 36027, '/>writer/director': 36028, '/>zombie': 36029, '1!': 36030, '1-10': 36031, '1.)': 36032, '10).': 36033, '104': 36034, '108': 36035, '11th,': 36036, '135': 36037, '15-20': 36038, '15-minute': 36039, '15-year-old': 36040, '15th': 36041, '16,': 36042, '1920s.': 36043, '1926': 36044, '1928,': 36045, "1930's,": 36046, '1931,': 36047, '1936.': 36048, '1938.': 36049, "1940's.": 36050, '1944,': 36051, '1950s.<br': 36052, '1956,': 36053, "1960's,": 36054, '1964,': 36055, '1968.': 36056, '1971,': 36057, '1974.': 36058, '1977.': 36059, '1981.': 36060, '1992.': 36061, '2+': 36062, '2,000': 36063, '2-disc': 36064, '2.)': 36065, '20,000': 36066, '20-year-old': 36067, '2001.<br': 36068, '2007.<br': 36069, '23,': 36070, '3,000': 36071, '3.5': 36072, '3.<br': 36073, '3/10<br': 36074, '30+': 36075, '30,000': 36076, '30-minute': 36077, '4-5': 36078, '40%': 36079, '40+': 36080, '40s.': 36081, '5,000': 36082, '5/5<br': 36083, '7/10.<br': 36084, '70%': 36085, '77': 36086, '78': 36087, '80s.<br': 36088, '9-11': 36089, '91': 36090, ':=8p': 36091, ':o)': 36092, '_the': 36093, '`black': 36094, '`dirty': 36095, 'a$$': 36096, 'aapke': 36097, 'abc.': 36098, 'abel': 36099, 'ability.<br': 36100, 'aborigines,': 36101, 'abortions': 36102, 'abraham,': 36103, 'abrupt.': 36104, 'absorbs': 36105, 'abundance.': 36106, 'abusive,': 36107, 'accelerated': 36108, 'accent!': 36109, 'accepted,': 36110, 'accessibility': 36111, 'accessible,': 36112, 'acclaim,': 36113, 'accolade': 36114, 'accomplishing': 36115, 'accountable': 36116, 'accurately,': 36117, 'accusation': 36118, 'accusing': 36119, 'ace"': 36120, 'acharya': 36121, 'achievements,': 36122, 'ackland': 36123, 'acme': 36124, 'acquires': 36125, 'acquiring': 36126, 'acre"': 36127, 'act)': 36128, 'acting-': 36129, 'active,': 36130, 'activities,': 36131, 'actors),': 36132, 'actress),': 36133, 'actress).': 36134, "adams'": 36135, 'adaption.': 36136, 'add)': 36137, 'added,': 36138, 'addict.': 36139, 'addition.': 36140, 'additions,': 36141, 'address,': 36142, 'adjusted': 36143, 'admirably.': 36144, 'admiration,': 36145, 'adorned': 36146, 'adulteress': 36147, 'affirmed': 36148, 'affleck,': 36149, 'affliction': 36150, 'afghan': 36151, 'afghanistan,': 36152, 'afraid.<br': 36153, 'africans,': 36154, 'after-school': 36155, 'afterall,': 36156, 'aftertaste': 36157, 'again".': 36158, 'again..': 36159, 'against.': 36160, 'aged,': 36161, 'agencies': 36162, 'agnostic': 36163, 'ago),': 36164, 'aiello,': 36165, 'aint': 36166, 'air"': 36167, 'airliner': 36168, 'airplane,': 36169, 'aj': 36170, 'ajax': 36171, 'akki': 36172, 'al)': 36173, 'alan,': 36174, 'alarmed': 36175, 'alba,': 36176, 'albino': 36177, 'albums,': 36178, 'albums.': 36179, 'alerted': 36180, "alexander's": 36181, 'alienation.': 36182, 'aliens.<br': 36183, 'alisan': 36184, 'alive"': 36185, 'alive?': 36186, 'all!!': 36187, 'all-encompassing': 36188, 'all-powerful': 36189, 'all-round': 36190, 'all-too': 36191, 'all...<br': 36192, 'all.the': 36193, 'allegations': 36194, 'allen)': 36195, 'allende': 36196, 'allot': 36197, 'alludes': 36198, 'alluding': 36199, 'almodovar': 36200, "almodovar's": 36201, 'alphabet': 36202, 'alternative.': 36203, 'always.<br': 36204, 'ambiguity,': 36205, 'ambling': 36206, 'amendment': 36207, 'america!': 36208, "amitabh's": 36209, 'amplified': 36210, 'amsterdam': 36211, 'analyst': 36212, 'anarchic': 36213, 'android,': 36214, 'ands': 36215, 'anesthesia': 36216, 'anguish,': 36217, 'angus': 36218, 'animals)': 36219, 'animation?': 36220, 'animator': 36221, 'animators.': 36222, 'ankush': 36223, 'annabel': 36224, 'annette': 36225, 'annie.': 36226, 'annoying)': 36227, 'anomaly': 36228, 'another?': 36229, 'anouska': 36230, 'ans': 36231, 'anti-christian': 36232, 'anti-climatic': 36233, 'anti-climatic.': 36234, 'anticlimactic.': 36235, 'antihero': 36236, 'antwerp,': 36237, 'anxieties': 36238, 'anxiety,': 36239, 'anxiety.': 36240, 'anymore?': 36241, 'anything;': 36242, 'anyway).<br': 36243, 'anywhere;': 36244, 'ape-like': 36245, 'aplenty': 36246, 'appealingly': 36247, 'applauded.': 36248, 'appliances': 36249, 'apprentice"': 36250, 'approach.<br': 36251, 'approaches,': 36252, 'arabia': 36253, 'arabic,': 36254, 'arc.': 36255, 'architectural': 36256, 'are!': 36257, 'arias': 36258, "ariel's": 36259, 'arizona,': 36260, "arkin's": 36261, 'armin': 36262, 'armor.': 36263, 'arousing': 36264, 'arrest,': 36265, 'arrested.': 36266, 'arrests': 36267, 'arrow,': 36268, 'art!': 36269, 'art?': 36270, 'artemisia,': 36271, 'artifact': 36272, 'artifice,': 36273, 'artistic.': 36274, 'artistry.': 36275, 'arturo': 36276, 'ascension': 36277, 'ash,': 36278, 'asides': 36279, 'asimov': 36280, 'asin': 36281, "ask's": 36282, "askey's": 36283, 'ass!': 36284, 'assassination,': 36285, 'assassins,': 36286, 'assembles': 36287, 'assertive': 36288, 'assign': 36289, 'associates.': 36290, 'assuredly': 36291, 'astonishing,': 36292, 'astonishing.': 36293, 'at<br': 36294, 'atlantians': 36295, 'atone': 36296, 'attachments': 36297, 'attacked,': 36298, 'attitude.<br': 36299, 'attorney.': 36300, "audiard's": 36301, "audiences'": 36302, 'auditorium': 36303, 'auteurs': 36304, 'authority.': 36305, 'autopilot': 36306, 'avatar': 36307, 'avery,': 36308, 'avi': 36309, 'awarding': 36310, 'aware,': 36311, 'aware.': 36312, "away'": 36313, 'away)': 36314, 'away."': 36315, 'aweigh,': 36316, 'awesomeness': 36317, 'awoke': 36318, 'axed': 36319, 'b-film': 36320, 'b-horror': 36321, 'babu': 36322, 'babysit': 36323, "bach's": 36324, 'back",': 36325, 'back-up': 36326, 'backdrops,': 36327, 'backfires': 36328, 'backside': 36329, 'badly?': 36330, 'bagdad"': 36331, 'baggy': 36332, 'bajpai': 36333, "bake's": 36334, 'baking': 36335, "baldwin's": 36336, 'balkans': 36337, "ball's": 36338, 'baloney': 36339, 'balsam': 36340, 'balsam,': 36341, 'band"': 36342, 'banjo': 36343, 'bankruptcy': 36344, 'banned,': 36345, 'baptism': 36346, 'bar.<br': 36347, 'barbeau': 36348, 'barbecue': 36349, 'barber': 36350, 'barbera': 36351, 'barbs': 36352, 'barricade': 36353, 'barring': 36354, 'barrister': 36355, 'bashki': 36356, "basinger's": 36357, 'basketball,': 36358, 'bassinger': 36359, 'bastion': 36360, 'bathroom.<br': 36361, 'bathtub,': 36362, 'batting': 36363, 'battleship': 36364, 'batwoman,': 36365, 'bazza': 36366, 'be).': 36367, 'beach"': 36368, 'bean.': 36369, 'beard.': 36370, 'beastly': 36371, 'beaten.': 36372, 'beating.': 36373, 'beaton': 36374, 'beautiful;': 36375, 'bedside': 36376, "beery's": 36377, 'befalls': 36378, 'before)': 36379, 'before),': 36380, 'beginning?': 36381, 'beguiling': 36382, 'begun.': 36383, 'behavior.<br': 36384, 'belgium.': 36385, 'belgrade': 36386, 'believe"': 36387, 'believed,': 36388, 'believes,': 36389, 'belittle': 36390, 'belle,': 36391, 'belligerent': 36392, 'belting': 36393, 'bendix': 36394, "bennett's": 36395, 'beowulf,': 36396, "berkowitz's": 36397, 'berlin.': 36398, 'bernice': 36399, 'berth': 36400, 'best"': 36401, 'best).': 36402, 'best-ever': 36403, 'best-known': 36404, 'best:': 36405, 'best;': 36406, 'better),': 36407, 'bettina': 36408, 'beulah': 36409, 'bewilderment': 36410, 'bewitching': 36411, 'bg': 36412, 'bi-sexual': 36413, 'big-city': 36414, 'bigas': 36415, 'biggest,': 36416, 'bikinis': 36417, 'bille': 36418, 'billionaire': 36419, 'bind': 36420, 'binding': 36421, 'binds': 36422, 'biography.': 36423, 'bios': 36424, 'birds"': 36425, 'bit:': 36426, 'bitches': 36427, 'bitchy,': 36428, 'bizarrely,': 36429, 'black)': 36430, 'blacked': 36431, 'bladerunner,': 36432, "blair's": 36433, 'blake,': 36434, 'blanche': 36435, 'blank.': 36436, 'blasphemous': 36437, 'blaze': 36438, 'blindfolded': 36439, 'bloated,': 36440, 'blob,': 36441, 'bloch': 36442, 'blocker': 36443, 'blond,': 36444, 'blood".': 36445, 'bloodbath.': 36446, 'bloodletting': 36447, 'bloodsucker': 36448, 'blooper': 36449, 'blowing.': 36450, 'blu': 36451, 'blu-ray': 36452, 'boardroom': 36453, 'boards,': 36454, 'bobbing': 36455, 'bogarde': 36456, 'bogayevicz': 36457, 'boggling': 36458, 'bolivia.': 36459, 'bono': 36460, 'bony': 36461, 'book),': 36462, 'book:': 36463, 'bookish': 36464, 'boosted': 36465, 'boot!': 36466, 'booth.': 36467, 'boots.': 36468, 'booze.': 36469, 'borel': 36470, 'born-again': 36471, 'bosom': 36472, 'bosses.': 36473, 'bounced': 36474, 'bow,': 36475, 'bow.': 36476, 'bowel': 36477, 'bowen': 36478, 'bowled': 36479, 'bowser': 36480, 'boxers': 36481, 'boy!': 36482, 'boyfriend.<br': 36483, 'boyfriends,': 36484, 'bragging': 36485, 'brains,': 36486, 'brainwash': 36487, 'brak': 36488, 'brandishing': 36489, "brashear's": 36490, 'brashear,': 36491, 'brassy': 36492, 'brat.': 36493, 'brats': 36494, 'brave.': 36495, 'bravo.': 36496, 'breadth': 36497, 'breakfast,': 36498, 'breaks,': 36499, 'breathlessly': 36500, 'brettschneider': 36501, 'bride.': 36502, "bridget's": 36503, 'brightness': 36504, 'brilliance.<br': 36505, 'bristles': 36506, 'brodie': 36507, 'brokeback': 36508, 'brood': 36509, 'brooding,': 36510, 'brutality,': 36511, 'buckle': 36512, 'budget),': 36513, 'buds': 36514, 'buffoon': 36515, 'buffoonery': 36516, 'buffoonish': 36517, 'bugle': 36518, 'bugs.': 36519, 'built-in': 36520, 'bulky': 36521, 'bullies,': 36522, 'bullshit.': 36523, 'bullying,': 36524, 'bundle': 36525, 'burglar': 36526, 'buried,': 36527, 'burke)': 36528, 'burke,': 36529, 'burnett,': 36530, 'burning"': 36531, 'burnt-out': 36532, 'bushes': 36533, 'but..': 36534, 'but...<br': 36535, 'but:': 36536, "buttgereit's": 36537, 'buyers': 36538, 'buying.': 36539, 'buzz.': 36540, 'by"': 36541, 'by-the-numbers,': 36542, 'by:': 36543, 'byington': 36544, 'byproduct': 36545, 'byrne,': 36546, 'cabbage': 36547, 'cabell': 36548, 'cacophony': 36549, 'cactus': 36550, 'cadence': 36551, 'cady': 36552, "caesar's": 36553, 'calamai': 36554, 'calhoun': 36555, 'came.<br': 36556, 'camera"': 36557, "cameraman's": 36558, 'cameraman,': 36559, 'cameroon,': 36560, 'camouflaged': 36561, 'camp.<br': 36562, 'camper': 36563, 'camps.': 36564, 'canadian,': 36565, 'candace': 36566, 'cantankerous': 36567, 'cap.': 36568, 'capano': 36569, 'capitalism.': 36570, 'capitalizes': 36571, 'capote,': 36572, 'capshaw,': 36573, "captain's": 36574, 'captions': 36575, 'care!': 36576, 'career).': 36577, 'carefree,': 36578, 'caricature,': 36579, 'carlo,': 36580, 'carnage,': 36581, 'caron.': 36582, 'carre': 36583, 'cart': 36584, 'casablanca.': 36585, 'case).': 36586, 'casing': 36587, 'cast...': 36588, 'casted,': 36589, 'castles': 36590, 'catatonic': 36591, 'categories,': 36592, 'cattle,': 36593, 'catty': 36594, 'caustic': 36595, 'cbs.': 36596, 'ceiling,': 36597, 'ceiling.': 36598, 'celebrities,': 36599, 'celebs': 36600, "celie's": 36601, 'censors.': 36602, 'censorship.': 36603, 'central,': 36604, 'ceremonial': 36605, 'ceremonies,': 36606, "chabrol's": 36607, 'chain,': 36608, 'chains,': 36609, 'chairs,': 36610, 'chalkboard': 36611, 'challenged.': 36612, 'chambara': 36613, 'chamber,': 36614, 'championship.': 36615, 'chancery': 36616, 'changing.': 36617, 'characterisations': 36618, 'characters).': 36619, 'charger': 36620, 'chariot': 36621, 'charles.': 36622, 'charmless': 36623, 'chattering': 36624, 'cheap-looking': 36625, 'cheaper,': 36626, 'checklist': 36627, 'checkpoint': 36628, 'cheeseball': 36629, 'cheezy.': 36630, 'cheney': 36631, 'cheri': 36632, 'chewbacca': 36633, 'chiba,': 36634, 'chicken.': 36635, 'chickens': 36636, 'chiefs': 36637, 'chikatilo.': 36638, 'chiles': 36639, 'chimney,': 36640, 'chinese.': 36641, 'chivalry': 36642, 'chock-full': 36643, 'chomping': 36644, 'choppy.': 36645, 'choreographer,': 36646, 'christ"': 36647, 'christ-like': 36648, 'christie.': 36649, 'chronicles.': 36650, 'chronology': 36651, 'chucked': 36652, 'chum': 36653, 'church.<br': 36654, 'chute': 36655, 'chynna': 36656, 'cinemascope': 36657, 'cinematic.': 36658, 'cinematically': 36659, 'circle.': 36660, 'circus.': 36661, 'city",': 36662, 'civilisation': 36663, 'claimed.': 36664, "claire's": 36665, 'claire,': 36666, 'clairvoyance': 36667, 'clarity,': 36668, 'classic"': 36669, 'classics.<br': 36670, 'classy,': 36671, 'clean-cut': 36672, 'clean.': 36673, 'clearing': 36674, 'cleavage.': 36675, 'clenched': 36676, 'cleopatra': 36677, 'cleverest': 36678, 'cleverness.': 36679, 'cliche-ridden': 36680, 'cliched,': 36681, 'click.': 36682, 'clicking': 36683, 'client,': 36684, 'cliffhanger,': 36685, 'cliffhangers': 36686, 'clinging': 36687, 'clinic,': 36688, 'clips.': 36689, 'clock-': 36690, 'clock.': 36691, 'clone,': 36692, 'cloning': 36693, 'close-up.': 36694, 'close-ups.': 36695, 'closer.': 36696, 'closet"': 36697, 'cloth,': 36698, 'clouded': 36699, 'clovis': 36700, 'cluster': 36701, 'clyde,': 36702, 'coaches': 36703, 'coast.': 36704, 'coat,': 36705, 'coated': 36706, 'coburn,': 36707, 'cocaine.': 36708, 'coerced': 36709, 'coincides': 36710, 'colagrande': 36711, 'coldest': 36712, 'collapse.': 36713, 'collapses.': 36714, 'collars': 36715, 'colleagues.': 36716, 'collie': 36717, 'colony,': 36718, 'colourful,': 36719, 'come!': 36720, 'comedy".': 36721, 'comedy).': 36722, 'comedy:': 36723, 'coming.<br': 36724, 'command.': 36725, 'commanded': 36726, 'commander.': 36727, 'commandments,': 36728, 'comme': 36729, 'commendable.': 36730, 'commitment.': 36731, 'commodore': 36732, 'communion': 36733, 'compare,': 36734, 'compass': 36735, 'compassionate,': 36736, 'compensating': 36737, 'competency': 36738, 'complaining,': 36739, 'complete.<br': 36740, 'completists.': 36741, 'complicity': 36742, 'complimentary': 36743, 'composes': 36744, 'composure': 36745, 'compound.': 36746, 'comprehending': 36747, 'comprising': 36748, 'computers.': 36749, 'comrade': 36750, 'conceals': 36751, 'conceits': 36752, 'conceivably': 36753, 'concept:': 36754, 'concepts,': 36755, 'concepts.': 36756, 'concerts,': 36757, 'concessions': 36758, 'concierge': 36759, 'concoct': 36760, 'condon': 36761, 'condone': 36762, 'conduce': 36763, 'conductor,': 36764, 'coney': 36765, 'confessing': 36766, 'confidently': 36767, 'confides': 36768, 'confirmation': 36769, 'confounding': 36770, 'confuses': 36771, 'congregation': 36772, 'congressman': 36773, 'conman': 36774, 'connections,': 36775, 'connelly,': 36776, 'connery.': 36777, 'conniving,': 36778, 'conquering': 36779, 'cons,': 36780, 'conservative.': 36781, 'considering.': 36782, 'consigned': 36783, 'consolation': 36784, 'conspired': 36785, 'constable': 36786, 'constantly,': 36787, 'constellation': 36788, 'consternation': 36789, 'constructed.': 36790, 'contagious': 36791, 'contemporary,': 36792, 'contemptible': 36793, 'contestants,': 36794, 'contracts': 36795, 'contrary.': 36796, 'contrivance': 36797, 'controversy,': 36798, 'convent.': 36799, 'convey.': 36800, 'convicted.': 36801, 'convoluted.': 36802, 'cook)': 36803, 'cook.': 36804, 'cookbook': 36805, 'cookie-cutter': 36806, 'cooking.': 36807, 'cooper)': 36808, 'coordinate': 36809, 'cop-out': 36810, "coppola's": 36811, 'copycat': 36812, 'corp': 36813, 'corpulent': 36814, 'corrine': 36815, 'cosmopolitan': 36816, 'cost!': 36817, 'costuming,': 36818, "couldn't,": 36819, 'couldn`t': 36820, 'couldnt': 36821, 'couleur': 36822, 'counseling': 36823, 'counter.': 36824, 'countered': 36825, 'counterparts,': 36826, 'country?': 36827, 'countrymen': 36828, 'course:': 36829, 'course;': 36830, 'courses': 36831, 'cousins,': 36832, 'cover-up': 36833, 'covers.': 36834, "coward's": 36835, 'cowardice': 36836, 'cowardly,': 36837, 'crab': 36838, 'crackers': 36839, 'cracking,': 36840, 'craft,': 36841, 'crafted.': 36842, 'craig)': 36843, 'cramer': 36844, 'crappiest': 36845, "crawford's": 36846, 'crazy"': 36847, 'creaking': 36848, 'creations,': 36849, 'creators.': 36850, 'creatures"': 36851, 'credible,': 36852, 'credibly': 36853, 'creed,': 36854, 'crib': 36855, 'cringeworthy': 36856, 'crippling': 36857, "cristina's": 36858, 'criticisms,': 36859, 'critiques': 36860, 'croatian': 36861, 'crocodile,': 36862, 'crocodile.': 36863, 'cronenberg': 36864, "cronenberg's": 36865, 'crosby,': 36866, 'cross,': 36867, 'cross-eyed': 36868, 'crotch,': 36869, "cruella's": 36870, 'cruises': 36871, 'crumble': 36872, 'crumbles': 36873, 'cry!': 36874, 'crystina': 36875, 'cub': 36876, 'cult-classic': 36877, 'cultural,': 36878, 'cure.': 36879, 'currency': 36880, 'currents': 36881, 'curriculum': 36882, 'cursed.': 36883, 'curtis)': 36884, 'curtis.': 36885, 'curves': 36886, 'customs,': 36887, 'cut.<br': 36888, 'cute.<br': 36889, 'cuthbert': 36890, 'cutie': 36891, 'cuties': 36892, 'cutout': 36893, 'cutting-edge': 36894, 'cw': 36895, 'cybil': 36896, "d'abo": 36897, 'dad)': 36898, 'dahmer,': 36899, 'damne': 36900, 'damon,': 36901, "dana's": 36902, 'danger.<br': 36903, 'dangerously"': 36904, "daniel's": 36905, 'danza,': 36906, 'dare,': 36907, 'daringly': 36908, "dark'": 36909, 'darned': 36910, 'darshan': 36911, "dassin's": 36912, 'database': 36913, 'daughter?': 36914, 'dawn"': 36915, 'day".': 36916, 'day;': 36917, 'daydream': 36918, "dead's": 36919, 'dead),': 36920, 'deadly,': 36921, 'dearth': 36922, 'debatable.': 36923, 'debate,': 36924, 'debauchery': 36925, 'debt,': 36926, 'debunk': 36927, 'debutante': 36928, 'decade.<br': 36929, 'december,': 36930, 'deception.': 36931, 'decision.<br': 36932, 'declines': 36933, 'deconstructed': 36934, 'deed,': 36935, 'deeds,': 36936, 'deep-seated': 36937, 'deepens': 36938, 'defects': 36939, 'definitions': 36940, 'delhi': 36941, 'deliberate,': 36942, 'delicate,': 36943, 'delicious,': 36944, 'delinquents': 36945, 'delirious.': 36946, 'deliriously': 36947, 'delirium': 36948, 'deliverance,': 36949, 'delivers,': 36950, 'delmar': 36951, 'delores': 36952, 'deluise,': 36953, 'demeanor.': 36954, 'dementia.': 36955, "demme's": 36956, 'demolished': 36957, 'denial.': 36958, "denis's": 36959, 'denison': 36960, 'depardieu,': 36961, 'dependence': 36962, 'deported': 36963, 'dept.': 36964, 'desai': 36965, 'deserves.<br': 36966, 'designer,': 36967, 'designs.': 36968, 'desire"': 36969, 'desired.<br': 36970, 'desiring': 36971, 'desk.': 36972, 'desolation': 36973, 'destination,': 36974, 'destinations': 36975, 'destinies': 36976, 'detached,': 36977, 'detective.<br': 36978, 'detroit.': 36979, 'devastatingly': 36980, 'develop.<br': 36981, 'development?': 36982, 'devotion,': 36983, 'dewaere': 36984, 'dialect,': 36985, 'dialouge': 36986, 'diamond,': 36987, 'diana,': 36988, 'diarrhea': 36989, 'dickie': 36990, 'dictator.': 36991, 'did...': 36992, 'didactic': 36993, 'die?': 36994, 'died.<br': 36995, 'diego,': 36996, "dietrich's": 36997, 'digress': 36998, 'digress.': 36999, 'dilemmas': 37000, 'dillinger.': 37001, 'dimly': 37002, 'diner,': 37003, 'dingy': 37004, "dino's": 37005, 'diplomat': 37006, 'dips': 37007, 'direct-to-dvd': 37008, 'direct.': 37009, 'direction...': 37010, 'direction;': 37011, 'director"': 37012, 'director).': 37013, 'director;': 37014, 'directors)': 37015, 'disadvantage': 37016, 'disappears,': 37017, 'disappoint.<br': 37018, 'disarmed': 37019, 'disarming': 37020, 'disasters.': 37021, 'disc,': 37022, 'disclose': 37023, 'discomforting': 37024, 'discontent': 37025, 'discourages': 37026, 'discussion,': 37027, 'discussions.': 37028, 'disenchanted': 37029, 'disgust.<br': 37030, 'disgusts': 37031, 'disintegration': 37032, 'dismally': 37033, 'dismembering': 37034, 'dismissal': 37035, 'disoriented': 37036, 'dispelled': 37037, 'dispenses': 37038, 'dispensing': 37039, 'disposes': 37040, 'disprove': 37041, 'disqualification': 37042, 'disrupt': 37043, 'dissimilar': 37044, 'dissolve': 37045, 'distances': 37046, 'distancing': 37047, 'distasteful.': 37048, 'distorted.': 37049, 'distracting.<br': 37050, 'distractions': 37051, 'distraught,': 37052, 'distributed.': 37053, 'diver,': 37054, 'diversity.': 37055, 'diverting': 37056, 'dix': 37057, 'dixon.': 37058, 'dj,': 37059, 'do-': 37060, 'do?"': 37061, 'dobson': 37062, 'doco': 37063, 'doctor.<br': 37064, 'doctrine': 37065, 'docu-drama': 37066, 'documentary-like': 37067, 'does:': 37068, "dog'": 37069, 'dolemite': 37070, 'donning': 37071, "donnison's": 37072, 'doody': 37073, 'doomed.': 37074, 'door"': 37075, 'dorn': 37076, 'dornhelm': 37077, 'dos': 37078, 'double-crosses': 37079, 'doves': 37080, 'down)': 37081, 'downstairs': 37082, 'downstairs,': 37083, 'downwards': 37084, 'doze': 37085, 'drab.': 37086, 'drago': 37087, 'dragon"': 37088, 'dramas.<br': 37089, 'drapes': 37090, 'drawbacks': 37091, 'drawings.': 37092, 'drawn-out,': 37093, 'dread.': 37094, 'dreamgirls': 37095, 'dreams"': 37096, 'dreamscapes': 37097, 'dreamt': 37098, 'dreck,': 37099, 'drew.': 37100, 'drive-by': 37101, 'driver"': 37102, 'droned': 37103, 'drugstore': 37104, 'druids': 37105, 'dry.<br': 37106, 'dryer': 37107, 'duane': 37108, 'duckling': 37109, 'dugan': 37110, 'dukakis,': 37111, 'dull!': 37112, 'dullness': 37113, 'dump.': 37114, 'dumpster': 37115, 'dumpy': 37116, 'duration,': 37117, 'dushku': 37118, 'dustbin': 37119, 'duties,': 37120, 'dynamic,': 37121, 'dynamics,': 37122, 'dynasty': 37123, 'díaz': 37124, 'e.t.': 37125, 'eagle.': 37126, 'ear,': 37127, 'earl,': 37128, "early's": 37129, 'earmarks': 37130, 'earnest,': 37131, 'earnings': 37132, 'earth)': 37133, 'ease,': 37134, 'easy-going': 37135, 'eddie.': 37136, "edie's": 37137, 'editing?': 37138, 'edits,': 37139, 'educational.': 37140, 'effect;': 37141, 'effectiveness.': 37142, 'effects)': 37143, 'effects:': 37144, 'eg.': 37145, 'egocentric': 37146, 'egyptologist': 37147, 'eh,': 37148, 'either).': 37149, 'ejected': 37150, 'elaborate.': 37151, 'election,': 37152, 'election.': 37153, 'elections': 37154, 'electricity.': 37155, 'electrocutes': 37156, 'electrocution': 37157, 'elegance.': 37158, 'elements.<br': 37159, 'elevators': 37160, "ellen's": 37161, 'elliott,': 37162, 'elliptical': 37163, 'elongated': 37164, 'else)': 37165, 'eluded': 37166, "elvis's": 37167, 'emanating': 37168, 'embezzled': 37169, 'emoting.': 37170, 'empathy,': 37171, 'employers': 37172, 'employment.': 37173, 'empower': 37174, 'enacted': 37175, 'end".': 37176, 'endeavor.': 37177, 'ended.<br': 37178, 'ended?': 37179, 'endemic': 37180, 'ending).': 37181, 'endlessly,': 37182, 'endlessly.': 37183, 'enemy"': 37184, 'energies': 37185, 'enfants': 37186, 'enforced': 37187, 'engine,': 37188, 'england)': 37189, 'engrossing,': 37190, 'enjoyable!': 37191, 'enlightenment.': 37192, 'enlisting': 37193, 'enlistment': 37194, 'enlivened': 37195, 'enough!': 37196, 'ensured': 37197, 'enterprising': 37198, 'entertaining;': 37199, 'entertainingly': 37200, 'entertainments': 37201, 'entertains,': 37202, 'entertains.': 37203, 'enthusiastic,': 37204, 'enthusiasts,': 37205, 'enthusiasts.': 37206, 'entrusted': 37207, 'enveloped': 37208, 'enveloping': 37209, 'envy.': 37210, 'enzo': 37211, 'epics,': 37212, 'episodic,': 37213, 'era)': 37214, 'erm': 37215, 'erotica': 37216, 'errand': 37217, 'erupting': 37218, 'escapism.': 37219, 'escorting': 37220, 'escorts': 37221, 'essaying': 37222, 'essential,': 37223, 'estonian': 37224, 'estrangement': 37225, 'et.': 37226, 'etc;': 37227, 'eternity.<br': 37228, 'ethic': 37229, 'ethnicity': 37230, 'europa,': 37231, 'europa.': 37232, 'european,': 37233, 'european.': 37234, 'euros': 37235, 'eurovision': 37236, "eva's": 37237, 'evacuation': 37238, 'evacuee': 37239, 'evading': 37240, 'evangelion': 37241, 'even-handed': 37242, 'evening.<br': 37243, 'eventful': 37244, 'evolution.': 37245, 'evp': 37246, 'ewoks.': 37247, 'ex-girlfriend,': 37248, 'exactly?': 37249, 'exaggeratedly': 37250, 'example.)': 37251, 'excelled': 37252, 'excellence,': 37253, 'excellently.': 37254, 'excepting': 37255, 'excised': 37256, 'excuse,': 37257, 'executioner': 37258, 'exemplify': 37259, 'exercises': 37260, 'exerted': 37261, 'exhilarating.': 37262, 'existent,': 37263, 'existentialist': 37264, 'exit,': 37265, 'exit.': 37266, 'exited': 37267, 'exorcist"': 37268, 'expedition,': 37269, 'expenses': 37270, 'experience;': 37271, 'explain.<br': 37272, 'explains,': 37273, 'explanation:': 37274, 'export': 37275, 'exposition,': 37276, 'exposure.': 37277, 'expressionism,': 37278, 'expulsion': 37279, 'extensively': 37280, 'extracted': 37281, 'extraterrestrial': 37282, 'extreme.<br': 37283, 'eye-opener': 37284, 'eye-opening': 37285, 'ezra': 37286, 'f*cking': 37287, 'fabian': 37288, 'face-to-face': 37289, 'facially': 37290, 'faction': 37291, 'fagin,': 37292, 'failing.': 37293, 'failures.': 37294, 'fainting': 37295, 'faintly': 37296, 'fallacy': 37297, 'fame),': 37298, 'family-friendly': 37299, 'famine,': 37300, 'fan)': 37301, 'fanatic.': 37302, 'fanaticism': 37303, 'fans:': 37304, 'fans?': 37305, 'far)': 37306, 'fardeen': 37307, 'farlan': 37308, 'farmhouse': 37309, 'farming': 37310, "farnsworth's": 37311, 'farrell.': 37312, 'farts': 37313, 'fascism,': 37314, 'fat.': 37315, 'fatale"': 37316, 'fatale.': 37317, 'fated': 37318, 'fathered': 37319, 'favorites)': 37320, "fawcett's": 37321, 'fbi.': 37322, 'feats': 37323, 'featurette;': 37324, 'feelings.<br': 37325, "feinstone's": 37326, 'felicity': 37327, 'fellas': 37328, 'fellow.': 37329, 'fellowes': 37330, 'feminism,': 37331, 'feminists': 37332, 'fences': 37333, 'feral': 37334, 'ferdinand': 37335, 'ferry,': 37336, 'fervently': 37337, 'fetishes': 37338, 'fetus': 37339, 'fiasco.': 37340, 'fiction.<br': 37341, 'fidelity,': 37342, 'fiends': 37343, 'filled,': 37344, "film'": 37345, 'film,but': 37346, 'film-maker.': 37347, 'film.it': 37348, 'film:<br': 37349, 'filmgoers': 37350, 'filmy': 37351, 'filth.': 37352, 'finals': 37353, 'finch,': 37354, 'find.<br': 37355, 'finger,': 37356, 'fingers.': 37357, 'finish!': 37358, "finney's": 37359, 'finney)': 37360, 'firefly': 37361, 'fireman': 37362, 'first-rate,': 37363, 'first-rate.': 37364, 'fishing,': 37365, 'fitting,': 37366, 'fitting.': 37367, 'fittingly': 37368, 'five-year': 37369, 'fixated': 37370, 'flagrantly': 37371, 'flagship': 37372, 'flak': 37373, 'flame.': 37374, 'flames,': 37375, 'flats,': 37376, 'flaunting': 37377, 'fledgling': 37378, 'fleshed-out': 37379, 'fleshes': 37380, 'fleshing': 37381, 'flicking': 37382, 'flicks)': 37383, 'flies,': 37384, 'flings': 37385, 'flo': 37386, 'flock.': 37387, 'flocked': 37388, 'flocking': 37389, 'floozy': 37390, "floriane's": 37391, 'florinda': 37392, 'flourish': 37393, 'flows,': 37394, 'fluid.': 37395, 'fluidity': 37396, 'flushing': 37397, 'focussing': 37398, 'foil.': 37399, 'folding': 37400, 'folds': 37401, 'foley,': 37402, 'folks.<br': 37403, 'followers,': 37404, 'follows.<br': 37405, 'follows:<br': 37406, "fontaine's": 37407, 'fontaine,': 37408, 'footing': 37409, 'footnote': 37410, 'for"': 37411, 'for;': 37412, 'forays': 37413, 'foreseeable': 37414, 'forgiveness,': 37415, 'forgot.': 37416, 'forgotten.<br': 37417, 'forlani': 37418, 'form)': 37419, 'formats': 37420, 'former.': 37421, 'forte': 37422, 'forth.<br': 37423, 'forward"': 37424, 'forward.<br': 37425, 'fosters': 37426, 'four-letter': 37427, 'foursome.': 37428, 'fox).': 37429, 'fragasso': 37430, 'fraggle': 37431, 'frame.<br': 37432, 'frames,': 37433, 'frames.': 37434, 'framework,': 37435, 'framework.': 37436, 'franciosa': 37437, "frank's": 37438, 'frank.': 37439, 'frankenstein.': 37440, 'fraud,': 37441, 'freaks,': 37442, 'free!': 37443, 'freedom.<br': 37444, 'freeman.': 37445, 'freeze.': 37446, 'freezer': 37447, 'frenzy.': 37448, 'frequents': 37449, 'fresnay': 37450, 'frewer': 37451, 'friar': 37452, 'friday.': 37453, 'friends"': 37454, 'friends:': 37455, 'friends;': 37456, 'frightening.<br': 37457, 'frogs': 37458, 'frolics': 37459, 'frontiers': 37460, 'fruition.': 37461, 'fruits': 37462, 'frumpy': 37463, 'frustrated.': 37464, 'frustrating,': 37465, 'fudge': 37466, 'fueled': 37467, 'full,': 37468, 'fullest': 37469, 'fumbled': 37470, 'fun)': 37471, 'fun;': 37472, 'funding.': 37473, 'funniest.': 37474, 'funny.i': 37475, 'funny;': 37476, "fuqua's": 37477, 'further.<br': 37478, 'future"': 37479, "future'": 37480, 'gabriella': 37481, 'gadget"': 37482, 'gagged': 37483, 'gailard': 37484, 'gain.': 37485, 'gal,': 37486, 'galactica,': 37487, 'gallagher': 37488, 'galling': 37489, 'galore': 37490, 'galore.': 37491, 'gamera,': 37492, "games'": 37493, 'gang.<br': 37494, 'gant': 37495, 'garbage?': 37496, 'garbo,': 37497, 'garcia,': 37498, 'garcía': 37499, 'garden.': 37500, 'gasped': 37501, 'gasps': 37502, 'gawking': 37503, 'gay)': 37504, 'gaylord': 37505, 'geeks,': 37506, 'geishas': 37507, 'generals,': 37508, 'genial': 37509, 'geniuses.': 37510, 'genre!': 37511, 'gentleman.': 37512, 'gentlemanly': 37513, 'gentlemen"': 37514, 'gentleness': 37515, 'geoff': 37516, "gerard's": 37517, 'germ': 37518, 'germans,': 37519, 'germany.<br': 37520, 'geronimo': 37521, 'gervais': 37522, 'gestures.': 37523, 'get!': 37524, 'getting.': 37525, 'gft,': 37526, 'ghastly,': 37527, 'ghetto,': 37528, 'giamatti,': 37529, 'giannini': 37530, 'giants,': 37531, 'gifts,': 37532, 'gigli': 37533, 'gillian,': 37534, 'gimmick.': 37535, 'gimmicks.': 37536, "gino's": 37537, 'ginty': 37538, 'giovanna.': 37539, 'girl".': 37540, 'girl:': 37541, 'girls)': 37542, 'girly': 37543, 'gis': 37544, 'giveaway': 37545, 'glacial': 37546, 'glamorized': 37547, 'glamorous,': 37548, 'glances,': 37549, 'glandular': 37550, 'glasses.': 37551, 'glenn,': 37552, 'glitch': 37553, 'globe.': 37554, 'globes': 37555, 'glow.': 37556, 'goals,': 37557, 'goers,': 37558, 'goes.<br': 37559, 'goes:': 37560, 'goggles': 37561, 'going?': 37562, 'goldfish': 37563, "goldsmith's": 37564, 'golem"': 37565, 'gonzález': 37566, 'good-bye': 37567, 'good<br': 37568, 'goofy.': 37569, 'gormless': 37570, 'gosford': 37571, 'gossett': 37572, 'governmental': 37573, 'grable,': 37574, 'graceful,': 37575, 'gracia': 37576, 'gracious': 37577, 'grading': 37578, 'gradually,': 37579, 'grail.': 37580, 'graphic.': 37581, 'graphical': 37582, 'grated': 37583, 'grates': 37584, 'gratuitously': 37585, 'gravedigger': 37586, 'graves,': 37587, 'grayce': 37588, 'great...': 37589, 'greatness,': 37590, 'greatness.<br': 37591, 'greeks': 37592, 'greene,': 37593, 'greenlight': 37594, 'gregg': 37595, 'grins': 37596, 'gripes': 37597, 'grizzly': 37598, 'groaned': 37599, 'groom': 37600, 'grow.': 37601, 'grown,': 37602, 'grudge"': 37603, 'gruff,': 37604, 'grunt': 37605, 'guaranteed.': 37606, 'guernsey': 37607, 'guerrillas': 37608, 'guest,': 37609, 'guillotines': 37610, 'guinevere': 37611, 'guinness.': 37612, 'gundam,': 37613, 'gundams': 37614, 'gunplay': 37615, 'gusto.': 37616, 'gut-busting': 37617, 'gut.': 37618, 'guy,"': 37619, 'guy...': 37620, 'gwynne,': 37621, 'gymnastic': 37622, "gypo's": 37623, 'gypsies': 37624, 'habit.': 37625, 'hack,': 37626, 'hackneyed,': 37627, "hadley's": 37628, 'hadley,': 37629, 'hag': 37630, "hagar's": 37631, 'haha': 37632, 'haines.': 37633, 'halestorm': 37634, 'half-naked': 37635, 'hall"': 37636, "hall's": 37637, 'hallucinations,': 37638, 'hallucinations.': 37639, 'hallways,': 37640, 'halt.': 37641, "hamlet's": 37642, 'hammers': 37643, 'hammy.': 37644, 'hand"': 37645, 'handcuffed': 37646, 'handedly': 37647, 'handicap': 37648, 'handsomely': 37649, 'handwriting': 37650, 'hanif': 37651, 'hank,': 37652, 'hankies': 37653, 'happened!': 37654, 'happens!': 37655, 'happens?': 37656, 'hard-hitting': 37657, 'harder,': 37658, 'hardwicke,': 37659, 'harlem,': 37660, 'harlen': 37661, 'harley': 37662, "harm's": 37663, 'harm,': 37664, 'harmony.': 37665, 'harrer': 37666, 'harris),': 37667, 'harrold': 37668, 'harsh.': 37669, "hartnett's": 37670, 'harvested': 37671, 'harvey.': 37672, 'hassle': 37673, 'hatcher,': 37674, 'haughty': 37675, 'haunted,': 37676, 'haunted.': 37677, 'haver': 37678, 'hawaii,': 37679, 'hawaii.': 37680, 'hawkins': 37681, 'hawthorne': 37682, "hbo's": 37683, 'headaches': 37684, 'headed,': 37685, 'heading,': 37686, 'headstrong,': 37687, 'healthy,': 37688, 'hearings': 37689, 'heart!': 37690, 'heart;': 37691, 'heartfelt,': 37692, 'heartrending': 37693, 'hearts.': 37694, 'hearts.<br': 37695, 'heat"': 37696, 'heavens,': 37697, 'heels,': 37698, 'held.': 37699, "helen's": 37700, 'hell!': 37701, 'hells': 37702, 'helming': 37703, 'helps,': 37704, 'hemo': 37705, 'henchman,': 37706, 'henchmen,': 37707, 'henry.': 37708, 'her...<br': 37709, 'here!"': 37710, 'here?<br': 37711, 'heretofore': 37712, 'herrings.': 37713, 'hf': 37714, 'hhh': 37715, 'hickory': 37716, 'hickox': 37717, 'hide,': 37718, 'hierarchy': 37719, 'higgins': 37720, 'high-class': 37721, 'high-rise': 37722, 'highbrow': 37723, 'highlights,': 37724, 'hill.<br': 37725, "hillyer's": 37726, 'hilt,': 37727, 'himalayan': 37728, 'himalayas': 37729, 'himself).': 37730, 'hip.': 37731, 'hiralal': 37732, 'his.<br': 37733, 'his<br': 37734, 'historically.': 37735, 'histories': 37736, 'history!!': 37737, 'hit!': 37738, 'hit-man.': 37739, 'hit.<br': 37740, 'hitching': 37741, 'hitherto': 37742, 'ho,': 37743, 'hoax': 37744, 'hobbit': 37745, 'hobos': 37746, 'hodder': 37747, 'hoe': 37748, 'hoffman),': 37749, 'hohl': 37750, 'holidays.': 37751, 'holliday': 37752, 'hollywood-style': 37753, 'homage.': 37754, 'home?': 37755, 'homeland,': 37756, 'homeless,': 37757, 'homeless.': 37758, 'homes.': 37759, 'homespun': 37760, 'homogenized': 37761, 'homophobia': 37762, 'honest:': 37763, 'honoring': 37764, "hood's": 37765, 'hook.': 37766, 'hooker,': 37767, 'hope"': 37768, 'hoped,': 37769, 'hopeful,': 37770, "hopkins'": 37771, 'hormone': 37772, "hornby's": 37773, 'horrible...': 37774, 'horrifying.': 37775, 'horror-movie': 37776, "horse's": 37777, 'horstachio': 37778, 'hoshi': 37779, 'hospital"': 37780, 'hostage.': 37781, 'hostages,': 37782, 'hots': 37783, 'hounding': 37784, 'house!': 37785, 'households': 37786, 'how.<br': 37787, 'howell': 37788, 'however;': 37789, 'hsiao': 37790, 'hull': 37791, 'humanist': 37792, 'humanity.<br': 37793, 'humans.<br': 37794, 'humiliation,': 37795, 'humour.<br': 37796, 'humourous': 37797, 'hunk,': 37798, 'husband;': 37799, 'husbands.': 37800, 'hutch': 37801, 'hysteria,': 37802, 'i"': 37803, 'ice"': 37804, 'icky': 37805, 'icon.': 37806, 'identical.': 37807, 'identity.<br': 37808, 'idol,': 37809, 'ii,"': 37810, 'ii.<br': 37811, 'ilias': 37812, 'ill-fitting': 37813, 'illegal.': 37814, 'illiteracy': 37815, 'illnesses': 37816, 'illuminates': 37817, 'images.<br': 37818, 'imagination?': 37819, 'imaging': 37820, 'imitation,': 37821, 'immeasurably': 37822, 'immersing': 37823, 'impactful': 37824, 'impeccable,': 37825, 'imperfections': 37826, 'impersonal': 37827, 'impersonators': 37828, 'implant': 37829, 'implemented': 37830, 'implicate': 37831, 'implicated': 37832, 'importance,': 37833, 'impression.<br': 37834, 'improper': 37835, 'improved,': 37836, 'improvement,': 37837, 'improvising': 37838, 'in-joke': 37839, 'in;': 37840, 'in<br': 37841, 'inaccuracy': 37842, 'inadequacy': 37843, 'inadvertent': 37844, 'inarritu': 37845, 'inarticulate': 37846, 'inaudible': 37847, 'incarcerated': 37848, 'incentive': 37849, 'incidental.': 37850, 'including,': 37851, 'inclusive': 37852, 'incoherence': 37853, 'incompetence.': 37854, 'incompetent,': 37855, 'index': 37856, 'indifferent,': 37857, 'indignant': 37858, 'indirect': 37859, 'individuality,': 37860, 'individuals.<br': 37861, 'industries': 37862, 'inexorable': 37863, 'inexpensive': 37864, 'inexplicable,': 37865, 'inexplicable.': 37866, 'infects': 37867, 'inflections': 37868, 'inflicts': 37869, 'influences,': 37870, 'info,': 37871, 'infomercial': 37872, 'infrequent': 37873, 'infuriated': 37874, 'ingenuity,': 37875, 'inger': 37876, 'inhabit.': 37877, 'inheritance.': 37878, 'inhumane': 37879, 'initiate': 37880, 'injuries,': 37881, 'injuries.': 37882, 'innovations': 37883, 'inordinate': 37884, 'insiders': 37885, 'insides': 37886, 'insinuate': 37887, 'inspect': 37888, 'inspired.<br': 37889, 'instead?': 37890, 'instinct.': 37891, 'institutions': 37892, 'instruments.': 37893, 'insurance.': 37894, 'integration': 37895, 'inter': 37896, 'inter-cut': 37897, 'interact,': 37898, 'interactive': 37899, 'interchangeable': 37900, 'interesting!': 37901, 'interesting)': 37902, 'intermittently': 37903, 'internally': 37904, 'interpol': 37905, 'interpreting': 37906, 'interrogates': 37907, 'intertitles': 37908, 'interval': 37909, 'interviewed,': 37910, 'interviewees': 37911, 'intestines.': 37912, 'intimate,': 37913, 'intimidate': 37914, 'intoxicated,': 37915, 'intrigued,': 37916, 'intruder,': 37917, 'intrusive.': 37918, 'intuitively': 37919, 'invasion,': 37920, 'invasion.': 37921, 'irate': 37922, 'ireland.': 37923, "iris'": 37924, 'irishman': 37925, 'irony.<br': 37926, 'irredeemable': 37927, 'irrefutable': 37928, 'irrepressible': 37929, 'irresponsible,': 37930, 'irritable': 37931, 'ishq': 37932, "isn't?": 37933, 'isolation.': 37934, 'issue.<br': 37935, "it's,": 37936, 'it??': 37937, 'itchy,': 37938, 'itself!': 37939, 'itv': 37940, 'iv.': 37941, 'jacked': 37942, 'jaco': 37943, 'jacobi,': 37944, 'jane.<br': 37945, 'japp': 37946, 'jarring.': 37947, 'jealousy.': 37948, 'jean,': 37949, 'jenkins,': 37950, "jenna's": 37951, 'jennifer,': 37952, "jenny's": 37953, 'jerking': 37954, 'jerky,': 37955, 'jessica,': 37956, 'jettisoned': 37957, 'jewish,': 37958, 'jews.': 37959, 'jobson': 37960, 'jockey': 37961, 'joked': 37962, 'joking,': 37963, 'jokingly': 37964, 'jolts': 37965, 'jordana': 37966, 'josef': 37967, 'joshi': 37968, 'journalist.': 37969, 'jox"': 37970, 'joy.<br': 37971, 'joyless': 37972, "jr's": 37973, 'jt': 37974, 'juanita': 37975, "judge's": 37976, 'judge.': 37977, 'judgement,': 37978, 'judgments': 37979, 'judicial': 37980, 'juggle': 37981, 'juices': 37982, 'julie,': 37983, 'julie.': 37984, 'julien': 37985, 'juliet.': 37986, 'julio': 37987, 'jumpy,': 37988, 'jung': 37989, 'jungle.<br': 37990, 'junior,': 37991, 'junkies.': 37992, 'just.': 37993, 'juvenile,': 37994, 'kaakha': 37995, 'kader': 37996, 'kaiju': 37997, 'kaleidoscope': 37998, 'kallio': 37999, 'kanin': 38000, 'kansas.': 38001, 'kapadia': 38002, "kapoor's": 38003, 'kapoor),': 38004, 'karen,': 38005, 'kasem': 38006, 'katana': 38007, 'katie,': 38008, 'kazuo': 38009, 'keeler,': 38010, 'keenly': 38011, 'keeper,': 38012, 'keggs': 38013, 'kells,': 38014, 'kelly)': 38015, "kennedy's": 38016, 'kennedy.': 38017, 'kenobi': 38018, 'kernel': 38019, 'kershaw': 38020, 'keusch': 38021, 'kid",': 38022, 'kid).': 38023, 'kida': 38024, 'kidd': 38025, 'kidnapping,': 38026, 'kids"': 38027, 'kids:': 38028, "killer'": 38029, 'kim,': 38030, 'kimble': 38031, 'king!': 38032, 'kingdom.': 38033, "kinnear's": 38034, 'kirby': 38035, 'kirsten,': 38036, 'kitty,': 38037, 'kkk': 38038, 'klara': 38039, 'klaw': 38040, 'klein': 38041, 'kleinman': 38042, 'klingons': 38043, 'klondike': 38044, 'klowns': 38045, 'klux': 38046, 'knee': 38047, 'knew?': 38048, "knight's": 38049, 'knightley)': 38050, 'knives,': 38051, 'know).': 38052, 'know-it-all': 38053, 'knowles': 38054, 'knows!': 38055, 'knox,': 38056, 'knuckle': 38057, 'kober': 38058, 'komizu': 38059, 'kosovo': 38060, 'kotto': 38061, 'koyaanisqatsi': 38062, "kramer's": 38063, 'krista': 38064, 'kristine': 38065, 'kristofferson)': 38066, 'kudos.': 38067, "kumar's": 38068, "kundera's": 38069, 'kurtwood': 38070, 'kurtz': 38071, 'laboratory,': 38072, 'laboured': 38073, 'lacerations': 38074, 'lackey': 38075, 'ladd': 38076, 'ladder.': 38077, "lady'": 38078, 'lagging': 38079, 'lago': 38080, 'lahr': 38081, 'lain': 38082, 'lajos': 38083, 'lake.<br': 38084, 'lama': 38085, 'lamar': 38086, 'lamarr,': 38087, 'lameness': 38088, 'lamont': 38089, 'lane)': 38090, 'language)': 38091, "lanza's": 38092, 'lark': 38093, 'last!': 38094, 'lata': 38095, 'latches': 38096, 'later),': 38097, 'laughs)': 38098, 'laundry,': 38099, 'law.<br': 38100, "lawrence's": 38101, 'lawrence)': 38102, 'lawson': 38103, 'lawsuit': 38104, 'lazily': 38105, 'lbs': 38106, "lead's": 38107, 'leaky': 38108, 'leanings': 38109, 'learn?': 38110, 'learning.': 38111, 'leatrice': 38112, 'lebrun': 38113, 'leeway': 38114, 'left?': 38115, 'legend.<br': 38116, 'lembach': 38117, 'lemercier': 38118, 'lemmon.': 38119, 'lens.': 38120, 'leona': 38121, 'leonard,': 38122, 'leonor': 38123, 'leprechaun': 38124, 'lesbianism,': 38125, 'lesbians,': 38126, 'less!)': 38127, 'lester,': 38128, 'letdown,': 38129, "levant's": 38130, 'levant,': 38131, 'leveled': 38132, 'levy,': 38133, 'lewis)': 38134, "lex's": 38135, 'lexi': 38136, 'liable': 38137, 'liar,': 38138, 'libby': 38139, 'librarians': 38140, 'libre': 38141, 'licence': 38142, 'lid': 38143, 'life.)': 38144, 'lifes': 38145, 'light-hearted,': 38146, 'likeness': 38147, 'likes,': 38148, 'liking,': 38149, 'lil"': 38150, 'limit.': 38151, 'limitations.': 38152, 'limiting': 38153, 'lineup.': 38154, 'lingerie': 38155, 'liquor.': 38156, 'lisa.': 38157, 'lise': 38158, 'lisp': 38159, 'listening,': 38160, 'lit.': 38161, 'littering': 38162, 'little)': 38163, 'livelier': 38164, 'livesey': 38165, "lloyd's": 38166, 'lloyd)': 38167, 'loc': 38168, 'lofty': 38169, "lohan's": 38170, 'lohman': 38171, 'loincloth': 38172, 'lol<br': 38173, "lommel's": 38174, 'lonette': 38175, "long's": 38176, 'long).': 38177, 'long-term': 38178, 'long;': 38179, 'lonnie': 38180, 'looked,': 38181, 'looked.': 38182, 'looped': 38183, 'loopholes': 38184, 'loosest': 38185, 'loot,': 38186, 'lore,': 38187, 'lorry': 38188, 'lot).': 38189, 'lotr.': 38190, 'lotta': 38191, "lou's": 38192, 'lou,': 38193, 'lou:': 38194, 'loudest': 38195, "louis'": 38196, "love'": 38197, "love',": 38198, 'love-making': 38199, 'love;': 38200, 'lover"': 38201, 'low-cut': 38202, 'low.<br': 38203, 'lowe,': 38204, 'lowering': 38205, 'loyalist': 38206, 'lucas.': 38207, 'luck!': 38208, 'luck.<br': 38209, 'lucy"': 38210, 'lucy,': 38211, 'luggage': 38212, 'luke)': 38213, 'lumberjack': 38214, 'lumière': 38215, 'lumpy': 38216, 'lunar': 38217, 'lunch.': 38218, 'lundgren.': 38219, 'lurid,': 38220, 'lust.': 38221, 'lv2': 38222, 'léo': 38223, 'm-g-m': 38224, 'm.c.': 38225, 'macabre,': 38226, 'macgraw': 38227, 'macintosh': 38228, 'made."': 38229, 'madness.<br': 38230, 'maes': 38231, 'mafioso': 38232, 'mags': 38233, 'maid.': 38234, 'maidens': 38235, 'maids': 38236, 'main,': 38237, 'mainland,': 38238, 'majorly': 38239, 'make?': 38240, 'makepeace': 38241, "maker's": 38242, 'makeup.<br': 38243, 'malaria': 38244, 'malcom': 38245, 'males,': 38246, 'malleson': 38247, 'mameha': 38248, 'mamoru': 38249, 'man),': 38250, "man,'": 38251, 'man-child': 38252, 'man...': 38253, 'management,': 38254, 'managers': 38255, 'manhunt': 38256, 'maniac.': 38257, 'maniacally': 38258, 'manicured': 38259, 'manmohan': 38260, 'mann.': 38261, 'manned': 38262, 'manners:': 38263, 'manning': 38264, 'manor,': 38265, 'manslaughter': 38266, 'manure': 38267, 'marble': 38268, 'marcel,': 38269, 'march.': 38270, 'marched': 38271, 'margarethe': 38272, 'maria,': 38273, 'marian': 38274, 'marie.<br': 38275, 'mariner': 38276, "marion's": 38277, 'markedly': 38278, 'marker': 38279, 'markham': 38280, 'markov': 38281, 'marquez': 38282, 'marrow': 38283, 'martians.': 38284, 'martin.': 38285, 'marty.': 38286, 'marvellously': 38287, 'maryland': 38288, 'mascara': 38289, 'mash': 38290, 'massage': 38291, 'masse': 38292, 'masterful,': 38293, 'masterful.': 38294, 'masterfully.': 38295, 'mastermind,': 38296, "masterson's": 38297, 'masterwork.': 38298, 'matches.': 38299, 'mate"': 38300, "matheson's": 38301, 'mathieu,': 38302, "mattei's": 38303, 'matter;': 38304, 'maximilian': 38305, 'maxx': 38306, 'mayeda': 38307, 'mayhem.<br': 38308, 'mcbride': 38309, 'mccord': 38310, 'mccormack': 38311, 'mccormick': 38312, 'mcdowall': 38313, 'mcdowell,': 38314, 'mcintire,': 38315, 'mcnamara': 38316, 'mcphillip': 38317, 'meagre': 38318, 'mean).': 38319, 'meanest': 38320, 'means.<br': 38321, 'meat,': 38322, 'mecca': 38323, 'mechanic,': 38324, 'mechanical,': 38325, 'mediums.': 38326, 'megalomaniacal': 38327, 'megazone': 38328, 'mellisa': 38329, 'meloni': 38330, 'melrose': 38331, "melville's": 38332, 'members.<br': 38333, 'menacingly': 38334, 'mentality,': 38335, 'mercenaries': 38336, 'mercer': 38337, 'mercifully,': 38338, 'merited': 38339, 'mermaid,': 38340, 'mervyn': 38341, 'mess!': 38342, 'messaging': 38343, 'messed-up': 38344, 'metaphysics': 38345, 'meteor.': 38346, 'meteoric': 38347, "mexico's": 38348, "meyer's": 38349, 'meyerling': 38350, 'miami.': 38351, 'micheaux': 38352, 'microcosm': 38353, 'microsoft': 38354, 'mid-way': 38355, "midler's": 38356, 'midnight,': 38357, 'miike,': 38358, 'miki': 38359, 'milan': 38360, 'mileage': 38361, 'millar': 38362, 'millionaire,': 38363, 'millions,': 38364, 'mimes': 38365, 'mind-bending': 38366, 'mined': 38367, 'ming-liang': 38368, 'minimal.': 38369, 'minimum,': 38370, 'minions,': 38371, "minister's": 38372, 'minorities': 38373, "miraglia's": 38374, 'misconception': 38375, 'misdirected': 38376, 'mise-en-scene': 38377, 'miserably.<br': 38378, 'misfire.': 38379, 'mishandled': 38380, 'misses.': 38381, 'missions.': 38382, 'missouri,': 38383, 'mitchum,': 38384, 'mitzi': 38385, 'miyoshi': 38386, 'mma': 38387, 'mob,': 38388, 'modest,': 38389, 'modestly': 38390, "moe's": 38391, 'molasses': 38392, 'molina,': 38393, 'moments:': 38394, 'momsen': 38395, 'mondo': 38396, 'moneys': 38397, 'monitoring': 38398, 'mono<br': 38399, 'monogram': 38400, 'monologue,': 38401, 'monotonous.': 38402, 'monsieur': 38403, 'monstervision': 38404, 'monstrous,': 38405, 'monstrously': 38406, 'montague': 38407, 'montalban': 38408, 'montano': 38409, 'montford': 38410, "month's": 38411, 'moore)': 38412, 'mop': 38413, 'moral.': 38414, 'morality.': 38415, 'more).': 38416, 'more:': 38417, 'more;': 38418, 'more<br': 38419, 'moreno': 38420, 'moreso': 38421, 'morning.<br': 38422, 'moron!': 38423, 'moron,': 38424, 'morons,': 38425, 'morse,': 38426, 'moscow': 38427, 'moslems': 38428, 'mostel,': 38429, 'mostly.': 38430, 'mother-in-law': 38431, 'motif.': 38432, 'motionless': 38433, 'motorist': 38434, 'motorized': 38435, 'motto': 38436, 'mould': 38437, 'mournful': 38438, 'mouth"': 38439, 'mouthing': 38440, 'move.<br': 38441, 'moved,': 38442, 'movie!!!!': 38443, 'movie!"': 38444, "movie'.": 38445, 'movie).<br': 38446, 'movie.it': 38447, "movie.it's": 38448, 'movie.there': 38449, 'movie???': 38450, 'moviegoer': 38451, 'moynahan': 38452, 'much).': 38453, 'much-loved': 38454, 'muddle': 38455, 'mugged': 38456, 'mulroney': 38457, 'multi-ethnic': 38458, 'multi-layered': 38459, 'multi-millionaire': 38460, 'multimedia': 38461, "mum's": 38462, 'mumble': 38463, 'munster': 38464, 'muppets.': 38465, 'murder?': 38466, 'murdered.<br': 38467, 'murderer.<br': 38468, "murray's": 38469, 'muscled': 38470, 'mush': 38471, 'music?': 38472, 'musician.': 38473, 'musicians.': 38474, 'muslims,': 38475, 'must-see!': 38476, 'must-see,': 38477, "mustn't": 38478, 'mutt': 38479, 'mutually': 38480, 'myron': 38481, 'myself:': 38482, 'mystery/thriller': 38483, 'mystery:': 38484, 'mystifying': 38485, 'nabbed': 38486, 'nah,': 38487, 'nair': 38488, 'naive.': 38489, 'nakedness': 38490, 'name).': 38491, 'names)': 38492, 'narcotics': 38493, 'narrative.<br': 38494, 'nasa,': 38495, 'nation.<br': 38496, 'naturalness': 38497, 'nauseating,': 38498, 'nauseous.': 38499, 'near.': 38500, 'nearby,': 38501, 'neatly.': 38502, 'necessity,': 38503, 'necklace': 38504, 'necromancy': 38505, 'needs.<br': 38506, 'negativity': 38507, 'negotiating': 38508, 'neha': 38509, 'neighbourhood': 38510, 'neighbours,': 38511, 'neill,': 38512, 'neither.<br': 38513, 'nemec': 38514, 'nemo': 38515, 'neorealism': 38516, 'nestled': 38517, 'netherlands': 38518, 'neuroses': 38519, 'newman,': 38520, 'ni': 38521, 'nibelungen': 38522, 'nicest': 38523, 'nicholson,': 38524, 'nieces': 38525, 'nielson': 38526, 'night;': 38527, 'nine.': 38528, 'nip': 38529, 'nipples': 38530, 'nit': 38531, 'nite': 38532, 'nitwit': 38533, 'no.2': 38534, 'nobodies': 38535, 'noir"': 38536, 'noll': 38537, 'nomadic': 38538, 'non-': 38539, 'non-actors,': 38540, 'non-fans': 38541, 'non-sensical': 38542, 'nonsense.<br': 38543, 'nordic': 38544, 'norliss': 38545, "norman's": 38546, 'north.': 38547, 'nostalgic,': 38548, 'not!<br': 38549, 'not).<br': 38550, 'not...': 38551, 'notable,': 38552, 'notebook': 38553, 'nothingness.': 38554, 'novak.': 38555, 'novel?': 38556, 'novela': 38557, 'now".': 38558, 'now).': 38559, 'nudity),': 38560, 'nuff': 38561, 'numb,': 38562, 'numbed': 38563, 'numbers"': 38564, 'nuns,': 38565, 'nursed': 38566, 'nutcracker': 38567, 'nuts,': 38568, 'nymph': 38569, 'nz': 38570, "o'brien,": 38571, "o'brien.": 38572, 'oaf': 38573, 'oakie': 38574, 'oatmeal': 38575, 'obi-wan': 38576, 'objectivity': 38577, 'obligation.': 38578, 'observe,': 38579, 'observe.': 38580, 'observed,': 38581, 'obsessively': 38582, 'obstacles,': 38583, 'obtuse': 38584, 'obvious)': 38585, 'obvious:': 38586, 'occasionally.': 38587, 'occurred.<br': 38588, 'octopus': 38589, 'odds,': 38590, "of'": 38591, "off'": 38592, 'off-limits': 38593, 'off-screen,': 38594, 'off-screen.': 38595, 'offal': 38596, 'offend,': 38597, 'offered.': 38598, 'offering,': 38599, 'offhand': 38600, 'oil,': 38601, 'okada': 38602, 'okay;': 38603, 'ol': 38604, 'old-fashioned,': 38605, 'old-time': 38606, 'olds.': 38607, 'olin': 38608, 'omit': 38609, 'omnipotent': 38610, 'on!!!': 38611, 'on....': 38612, 'once)': 38613, 'one!<br': 38614, 'one".': 38615, 'one-night': 38616, 'one-on-one': 38617, 'one...<br': 38618, 'oozed': 38619, 'operas.': 38620, 'opinions,': 38621, 'opponents.': 38622, 'opposite:': 38623, 'oppression,': 38624, 'opus,': 38625, 'or...': 38626, 'or:': 38627, 'orbach': 38628, 'orchestra.': 38629, 'organization.': 38630, 'orgasmic': 38631, 'orgies': 38632, 'original).': 38633, 'orla': 38634, 'osborne': 38635, 'oscar)': 38636, 'other!': 38637, 'other).': 38638, 'other;': 38639, 'ott,': 38640, 'outcast.': 38641, 'outdoors.': 38642, 'outerspace': 38643, 'outfield"': 38644, 'outgoing': 38645, 'outlawed': 38646, 'outlined': 38647, 'outlived': 38648, 'outrage,': 38649, 'outsmarted': 38650, 'over!': 38651, 'over-acted': 38652, 'over-acting.': 38653, 'over-hyped,': 38654, 'over-reliance': 38655, 'over-used': 38656, 'over?': 38657, 'overact.': 38658, 'overacted,': 38659, 'overall.<br': 38660, 'overcome.': 38661, 'overheard': 38662, 'overloaded': 38663, 'overplays': 38664, 'overpopulation': 38665, 'overwhelming,': 38666, 'owens': 38667, 'p.c.': 38668, "pabst's": 38669, 'pacino)': 38670, 'pacula': 38671, 'paint,': 38672, 'painterly': 38673, 'pair.': 38674, 'palace.': 38675, "palance's": 38676, 'palme': 38677, 'palms': 38678, 'palpable.': 38679, 'palpatine': 38680, 'panels': 38681, 'panic.': 38682, 'panicked': 38683, 'panorama': 38684, 'panting': 38685, 'pants.<br': 38686, 'para': 38687, 'paraded': 38688, 'paradigm': 38689, 'paradise,': 38690, 'parador': 38691, 'paradox': 38692, 'paradoxes': 38693, 'paradoxical': 38694, 'paragon': 38695, 'paramount,': 38696, 'paramour': 38697, 'paranoid,': 38698, 'parents)': 38699, 'parkins': 38700, 'parks,': 38701, 'parlor': 38702, 'parnell': 38703, "parsons'": 38704, 'part!': 38705, 'part)': 38706, 'part),': 38707, 'partake': 38708, 'parts:': 38709, 'partying,': 38710, 'passenger,': 38711, 'passes,': 38712, 'passing.': 38713, 'past?': 38714, 'pastel': 38715, 'pastor,': 38716, 'pasts': 38717, 'pathetic!': 38718, "patient's": 38719, 'pattern.': 38720, 'patterson': 38721, 'patting': 38722, 'patton,': 38723, 'pawns': 38724, 'pay.': 38725, 'paycheck.': 38726, 'payoff,': 38727, 'pazu,': 38728, 'peaches': 38729, 'peak,': 38730, 'peck,': 38731, 'peddle': 38732, 'pei': 38733, 'penn,': 38734, 'penny,': 38735, "people'": 38736, 'perabo': 38737, 'perform,': 38738, 'performance:': 38739, 'performing,': 38740, 'perfume': 38741, 'perfunctory': 38742, 'peril.<br': 38743, 'periodic': 38744, 'periphery': 38745, 'perk': 38746, 'permeated': 38747, 'perpetuating': 38748, 'person)': 38749, 'personable': 38750, 'personable,': 38751, 'persuading': 38752, 'persuasion': 38753, 'persuasive': 38754, 'persuasive.': 38755, 'perturbed': 38756, 'pervades': 38757, 'pervading': 38758, 'perversion.': 38759, 'petra': 38760, 'petulant': 38761, 'pg.': 38762, "pharaoh's": 38763, 'phd': 38764, 'phelps': 38765, 'philadelphia.': 38766, 'phillips)': 38767, 'philosophy.<br': 38768, 'phoenix,': 38769, 'phony.': 38770, 'photographs,': 38771, 'physicality': 38772, 'pi': 38773, 'picasso': 38774, 'pictorial': 38775, 'pictures.<br': 38776, 'piece?': 38777, 'pieces.<br': 38778, 'pig,': 38779, 'pig.': 38780, 'pigs"': 38781, 'pilate': 38782, 'pill,': 38783, 'pillar': 38784, "pilot's": 38785, 'pinpoint': 38786, 'pirates.': 38787, 'pisses': 38788, 'pistol,': 38789, 'pistols': 38790, 'pitching': 38791, 'pits.': 38792, 'pixar,': 38793, 'placed.': 38794, 'plain.': 38795, 'planet?': 38796, 'planned,': 38797, 'planning.': 38798, 'playwright.': 38799, 'please!<br': 38800, 'pleased,': 38801, 'pledged': 38802, 'plenty.': 38803, 'plight,': 38804, 'plot),': 38805, 'plot-': 38806, 'plotting.': 38807, 'plowright': 38808, 'plugged': 38809, 'plugging': 38810, 'plummets': 38811, 'plz': 38812, 'po': 38813, 'poe.': 38814, 'poetic.': 38815, 'poetical': 38816, 'point)': 38817, 'points?': 38818, 'pointy': 38819, 'poised': 38820, 'pokemon.': 38821, 'polanski.': 38822, 'police.<br': 38823, 'police?': 38824, 'policewoman': 38825, 'pollak,': 38826, 'pollute': 38827, 'poltergeist': 38828, 'polynesian': 38829, 'pond,': 38830, 'poor!': 38831, 'pope,': 38832, 'popularity.': 38833, 'porch': 38834, 'porn.<br': 38835, 'porno.': 38836, 'portly': 38837, 'portobello': 38838, 'portraying.': 38839, 'portrays,': 38840, 'positive.<br': 38841, 'posits': 38842, 'posses': 38843, 'possession,': 38844, 'possible?': 38845, 'post-production.': 38846, 'post-world': 38847, 'post.': 38848, 'pounds,': 38849, 'powers-that-be': 38850, 'praiseworthy': 38851, 'pratt': 38852, 'pre-pubescent': 38853, 'precautions': 38854, 'predictable)': 38855, 'predictions': 38856, 'predicts': 38857, 'predilection': 38858, 'pregnancy,': 38859, 'preoccupied': 38860, 'preppie': 38861, 'pres.': 38862, 'presented.<br': 38863, 'presenters': 38864, 'presently': 38865, 'presents.': 38866, 'preserving': 38867, 'presidents': 38868, 'presumes': 38869, 'pretentiousness.': 38870, 'prevailed': 38871, 'previews.': 38872, 'priceless,': 38873, 'priestess': 38874, 'priests,': 38875, 'prime,': 38876, 'primed': 38877, 'printer': 38878, 'prior.': 38879, 'prisoner.': 38880, 'prize-winning': 38881, 'pro.': 38882, 'probably.': 38883, 'probe': 38884, 'problem...': 38885, 'processes': 38886, 'processing': 38887, 'prodigious': 38888, 'professes': 38889, 'professing': 38890, 'professionals,': 38891, "professor's": 38892, 'profitable': 38893, 'profundity': 38894, 'prologues': 38895, 'promise.<br': 38896, 'promises,': 38897, 'promisingly': 38898, 'pronouncing': 38899, 'proofs': 38900, 'propagandistic': 38901, 'prophecy,': 38902, 'prophet.': 38903, 'prosaic': 38904, 'prototypical': 38905, 'prowess,': 38906, 'ps1': 38907, 'psychoanalyst': 38908, 'pub,': 38909, 'publication': 38910, 'publicize': 38911, 'publishers': 38912, 'puerile,': 38913, 'pulpy': 38914, 'pumba': 38915, 'pummel': 38916, 'pun,': 38917, 'punches,': 38918, 'punchlines': 38919, 'punctuate': 38920, 'purchased.': 38921, 'puritanical': 38922, 'purple,': 38923, 'purposes.<br': 38924, 'pursuer': 38925, 'pursuits': 38926, 'puss': 38927, 'puzzle,': 38928, 'pygmies': 38929, "pym's": 38930, "python's": 38931, "pyun's": 38932, 'q,': 38933, 'qualm': 38934, 'quantities': 38935, 'quatermass': 38936, 'quieter': 38937, 'quirk': 38938, 'quirks,': 38939, 'quite.': 38940, 'quota': 38941, 'quote:': 38942, 'quotes,': 38943, 'quotes:': 38944, 'r,': 38945, 'r1': 38946, 'race.<br': 38947, 'raced': 38948, 'rachel,': 38949, 'radar,': 38950, 'radiation,': 38951, 'radioactivity': 38952, 'rage.': 38953, 'ragtag': 38954, 'raiding': 38955, 'rain".': 38956, 'raised,': 38957, 'raison': 38958, 'ramming': 38959, 'ran.': 38960, 'randomly,': 38961, 'rapist.': 38962, 'rapists.': 38963, 'rappaport': 38964, 'rated,': 38965, 'rating)': 38966, 'rating?': 38967, 'ratings.<br': 38968, 'rats.': 38969, "ratso's": 38970, 'raunchy,': 38971, 'ravages': 38972, 'raven,': 38973, 'ravens': 38974, 'rca': 38975, 're-editing': 38976, 're-enacting': 38977, 're-enactment': 38978, 're-imagining': 38979, 're-made': 38980, 're-makes': 38981, 're-united': 38982, 're:': 38983, "rea's": 38984, 'reach,': 38985, 'reactions,': 38986, 'readers,': 38987, 'real"': 38988, 'real-world': 38989, 'realities,': 38990, 'reality;': 38991, 'realize,': 38992, 'reams': 38993, 'reappear': 38994, 'rearranging': 38995, 'reason).': 38996, 'reboot': 38997, 'receptionist': 38998, 'recognises': 38999, 'recognising': 39000, 'recollect': 39001, 'recollections': 39002, 'recommend.<br': 39003, 'record.<br': 39004, 'records,': 39005, 'recruitment': 39006, 'recurrent': 39007, 'redefine': 39008, 'reenactment': 39009, 'regeneration': 39010, 'regent': 39011, 'regiment': 39012, 'registering': 39013, 'regret,': 39014, 'regrets,': 39015, 'regulation': 39016, 'rehashes': 39017, 'reid)': 39018, 'reisert': 39019, 'reiterate': 39020, 'rejected.': 39021, 'rejoice': 39022, 'rejoicing': 39023, 'relative.': 39024, 'relayed': 39025, 'release),': 39026, 'release).': 39027, 'relentless,': 39028, 'relevance.': 39029, 'reliably': 39030, 'reluctant,': 39031, 'reluctantly,': 39032, 'remarked,': 39033, 'remedy': 39034, 'remnants': 39035, 'remote.': 39036, 'repeat,': 39037, 'repeatedly.': 39038, 'repellent,': 39039, 'replaced.': 39040, 'represented.': 39041, 'reproduced': 39042, 'reruns,': 39043, 'resemblances': 39044, 'resident,': 39045, 'resistance,': 39046, 'resisted': 39047, 'resisting': 39048, 'resolutely': 39049, 'respectability': 39050, 'respecting': 39051, 'restart': 39052, 'restored,': 39053, 'restrained.': 39054, 'restraint,': 39055, 'restrictions,': 39056, 'restroom': 39057, 'resurrecting': 39058, 'reticent': 39059, 'retiring': 39060, 'retold': 39061, "return'": 39062, 'returned.': 39063, 'returns"': 39064, 'reveal,': 39065, 'revealing,': 39066, 'revenue': 39067, 'reverting': 39068, 'reverts': 39069, 'review)': 39070, 'revisionist': 39071, 'revolting.': 39072, 'revolutions': 39073, 'rewarded.': 39074, 'rewinding': 39075, 'rewrote': 39076, 'rhyming': 39077, 'ribisi': 39078, 'ricans': 39079, 'ricci,': 39080, 'rick,': 39081, 'riddler': 39082, 'riddles': 39083, 'ridge,': 39084, 'riemann': 39085, "rien'": 39086, 'rigorous': 39087, 'rip-off,': 39088, 'ripner': 39089, 'ripper,': 39090, 'rise.': 39091, 'rishi': 39092, 'risible': 39093, 'rising,': 39094, 'rising.': 39095, 'ritter.': 39096, 'ritual.': 39097, 'ritualistic': 39098, 'rituals.': 39099, 'roach.': 39100, 'roadie': 39101, 'roasting': 39102, 'robards': 39103, "robin's": 39104, 'robotech': 39105, 'rocco': 39106, 'rocks.': 39107, 'rodent': 39108, 'roeper': 39109, 'rohm': 39110, 'roll!': 39111, 'rolled,': 39112, 'rom-com': 39113, 'romances.': 39114, 'romania.': 39115, 'romano,': 39116, 'romantics': 39117, 'roofs': 39118, 'room)': 39119, 'rooster': 39120, 'ropes,': 39121, 'rotating': 39122, 'rothrock': 39123, 'rotted': 39124, 'rotten.': 39125, 'roughed': 39126, 'roulette': 39127, 'roundabout': 39128, 'rounds,': 39129, 'rows': 39130, 'roy,': 39131, 'royals': 39132, 'ruby,': 39133, "rule's": 39134, 'rules!': 39135, 'rules.<br': 39136, 'rummaging': 39137, 'rumoured': 39138, 'run)': 39139, 'runners': 39140, 'running.<br': 39141, 'runs.': 39142, 'runtime.': 39143, 'runway': 39144, 'russell.': 39145, 'russians,': 39146, 'rustic': 39147, 'ruthlessness': 39148, 's.i.c.k.': 39149, 'sabina': 39150, 'sabotages': 39151, 'sabriye': 39152, "sabu's": 39153, 'sacrifice.': 39154, 'sacrifice.<br': 39155, 'sadie': 39156, 'sadist': 39157, 'sahara': 39158, 'sailors,': 39159, 'saint,': 39160, 'saintly': 39161, 'saints,': 39162, 'saki': 39163, 'salesman.': 39164, 'salles': 39165, "sally's": 39166, 'salvaged': 39167, 'samira': 39168, 'sampling': 39169, 'samurai"': 39170, 'sanctioned': 39171, 'sanctuary': 39172, 'sandhya': 39173, 'sandler.': 39174, 'sandu': 39175, 'sandwich.': 39176, 'sanity,': 39177, 'sant,': 39178, "sara's": 39179, 'sarcastic,': 39180, 'sarne,': 39181, 'satan"': 39182, 'satanists': 39183, 'satirize': 39184, 'satisfied.<br': 39185, 'satisfies': 39186, 'satisfying.<br': 39187, 'saturation': 39188, 'sauce': 39189, 'savant': 39190, 'saved.': 39191, 'scaffolding': 39192, 'scale.<br': 39193, 'scalpel': 39194, 'scanned': 39195, 'scarecrows.': 39196, 'scares.<br': 39197, 'scarface.': 39198, 'scat': 39199, 'scathingly': 39200, 'scatological': 39201, 'scavenger': 39202, "scene'": 39203, 'schedule.': 39204, 'scheduling': 39205, 'schiavelli': 39206, 'schlocky,': 39207, 'schmaltz': 39208, "schneebaum's": 39209, "schneider's": 39210, 'school...': 39211, 'schtick.': 39212, 'schwartzman': 39213, 'schwimmer': 39214, 'sci/fi': 39215, 'science"': 39216, 'sciences': 39217, 'scoff': 39218, "scola's": 39219, 'scope,': 39220, 'score?': 39221, 'scorsese,': 39222, 'scoundrel': 39223, 'scourge': 39224, 'scrambled': 39225, 'scrambling': 39226, 'scrat': 39227, 'screamingly': 39228, 'screen-time': 39229, 'screen...': 39230, 'screenwriting': 39231, 'screweyes': 39232, 'screwfly': 39233, 'scribe': 39234, 'script)': 39235, 'script;': 39236, "scrooge's": 39237, 'scuddamore': 39238, 'sea.<br': 39239, 'seagal.': 39240, 'seagals': 39241, 'seam': 39242, 'seamed': 39243, 'secondary,': 39244, 'secrecy': 39245, 'secret.<br': 39246, 'security.': 39247, 'see!!!': 39248, 'seedy,': 39249, 'seeing!': 39250, 'seekers': 39251, 'seemed,': 39252, 'seems)': 39253, 'seen!!': 39254, 'seen?': 39255, 'seeps': 39256, 'sees,': 39257, 'sees.': 39258, 'seftel': 39259, 'sega': 39260, 'segregation': 39261, 'seinfeld,': 39262, 'seizing': 39263, 'self-': 39264, 'self-aware': 39265, 'self-destruction.': 39266, 'self-imposed': 39267, 'self-parody': 39268, 'self-referential': 39269, 'semester': 39270, 'seniors': 39271, 'sense"': 39272, 'senselessly': 39273, 'sensitive.': 39274, 'sensitivity,': 39275, 'sensuality,': 39276, 'sentimentality,': 39277, 'sentiments.': 39278, 'serenity': 39279, 'serials,': 39280, 'series),': 39281, 'serious!': 39282, 'serious.<br': 39283, 'serpentine': 39284, 'serum.': 39285, 'servants.': 39286, 'served.': 39287, 'sessions,': 39288, 'set-pieces,': 39289, 'setbacks': 39290, 'setting:': 39291, 'setting;': 39292, 'settlement': 39293, 'setups': 39294, "seuss'": 39295, 'sex!': 39296, 'sex-crazed': 39297, 'sexed': 39298, 'sexes.': 39299, 'shaadi': 39300, 'shades,': 39301, 'shadows.': 39302, 'shadyac': 39303, 'shagged': 39304, 'shaka': 39305, 'shaking,': 39306, 'shame!': 39307, 'shame...': 39308, "shan't": 39309, 'shani': 39310, 'shanks': 39311, 'shapeless': 39312, 'shards': 39313, 'shark,': 39314, 'sharks,': 39315, 'shatner,': 39316, 'shaves': 39317, "sheedy's": 39318, 'sheep,': 39319, 'sheffield': 39320, 'sheik': 39321, "shelley's": 39322, "shemp's": 39323, "shepard's": 39324, 'sheridan,': 39325, 'shield.': 39326, 'shimizu': 39327, 'shin': 39328, 'shinji': 39329, "shirley's": 39330, "sho's": 39331, 'shoddiness': 39332, 'shoddy,': 39333, 'shoe,': 39334, 'shogun': 39335, 'shootout,': 39336, 'short;': 39337, 'show",': 39338, 'show,"': 39339, 'show."': 39340, 'show...': 39341, 'showers': 39342, 'showman': 39343, 'shreds.': 39344, 'shrek,': 39345, 'shrieks': 39346, 'shrinks': 39347, 'shuddering': 39348, 'shug': 39349, 'siamese': 39350, 'sick!': 39351, 'sickened': 39352, 'sickens': 39353, 'sickness,': 39354, 'sidewalk,': 39355, 'sighing': 39356, 'sighting': 39357, 'signs,': 39358, 'silicone': 39359, 'silver,': 39360, 'silverstein': 39361, "simmons'": 39362, 'simpering': 39363, 'simple;': 39364, 'simpleton': 39365, 'simplified': 39366, 'simpson,': 39367, 'simpsons,': 39368, 'sinatra)': 39369, 'sincerity,': 39370, "singer's": 39371, "singleton's": 39372, 'sink.': 39373, 'sister-in-law': 39374, 'sites.': 39375, 'siu-tung': 39376, 'six-year-old': 39377, 'size,': 39378, 'sizes,': 39379, 'skagway,': 39380, 'skinheads': 39381, 'skinny,': 39382, 'skip.': 39383, 'skit.': 39384, 'skyline': 39385, 'slamming': 39386, 'slanted': 39387, 'slashers.': 39388, 'slater,': 39389, 'slaughter.': 39390, 'slavery.': 39391, 'sleeping,': 39392, 'sleepwalk': 39393, 'sleepwalkers,': 39394, 'sleepy,': 39395, 'sleeve': 39396, 'sleuth.': 39397, 'slicker': 39398, 'sling': 39399, 'slipper': 39400, 'slipshod': 39401, 'slop': 39402, 'sloppiness': 39403, 'slovik': 39404, 'slowest': 39405, 'sludge': 39406, 'sluttish': 39407, 'smashed,': 39408, 'smelling': 39409, 'smelly': 39410, 'smoldering': 39411, 'snacks': 39412, 'snickering': 39413, 'snobbery': 39414, 'snoozer.': 39415, 'snoozing': 39416, 'snore': 39417, 'snowball': 39418, 'snuff.': 39419, 'soapdish': 39420, 'sobering': 39421, 'soccer,': 39422, 'socialism': 39423, 'society"': 39424, 'soderbergh,': 39425, 'sofia,': 39426, 'softer': 39427, 'soggy': 39428, 'soil,': 39429, 'soldier:': 39430, 'soliloquies': 39431, 'solution,': 39432, 'something!': 39433, 'sometime.': 39434, 'somewhere.<br': 39435, 'somewhere?': 39436, 'sommer': 39437, 'son"': 39438, 'songs!': 39439, 'sontee': 39440, 'soon!': 39441, 'sophisticated.': 39442, 'sophistication,': 39443, 'soppy': 39444, 'sorrowful': 39445, 'sorry!': 39446, 'sort.<br': 39447, "sorvino's": 39448, 'soundtrack)': 39449, 'souped': 39450, 'source.': 39451, 'southeast': 39452, 'southerners': 39453, "sow's": 39454, 'spaceships': 39455, "spade's": 39456, 'spades,': 39457, 'spandex': 39458, 'spaniard': 39459, 'sparkle,': 39460, 'spawns': 39461, 'speak.<br': 39462, 'speaker,': 39463, 'spears,': 39464, 'speeches.': 39465, 'speechless,': 39466, 'spend.': 39467, 'spent,': 39468, 'spewed': 39469, 'spheres': 39470, 'spidey': 39471, 'spielberg.': 39472, 'spies.': 39473, 'spine-chilling': 39474, 'spirituality,': 39475, 'spitfire': 39476, 'splashing': 39477, 'splattering': 39478, 'splendid,': 39479, 'splice': 39480, 'splicing': 39481, 'spoiler.<br': 39482, 'spoilers)<br': 39483, 'spoken.': 39484, 'sponsors': 39485, 'spoofs.': 39486, 'spooked': 39487, 'spooky.': 39488, 'spoon-fed': 39489, 'spot-on.': 39490, 'spot.<br': 39491, 'sprawling,': 39492, "springer's": 39493, 'spurting': 39494, 'spurts': 39495, 'squalid': 39496, 'squander': 39497, 'square.': 39498, 'squirm.': 39499, 'squirting': 39500, 'sr.,': 39501, 'stacked': 39502, 'stacks': 39503, 'stadium.': 39504, 'stage.<br': 39505, 'staged.': 39506, 'staid': 39507, 'stake.': 39508, 'stallone,': 39509, 'stalwarts': 39510, 'stamos': 39511, "stan's": 39512, 'standard-issue': 39513, 'standing.': 39514, 'staples': 39515, 'stapleton,': 39516, 'star?': 39517, 'starewicz': 39518, 'starr,': 39519, 'stars<br': 39520, 'steamer': 39521, 'steckert': 39522, 'steele.': 39523, 'steiger': 39524, 'stepmother,': 39525, 'stereotyping.': 39526, 'stevens)': 39527, 'stevenson,': 39528, 'stick,': 39529, 'stig': 39530, 'stiles.': 39531, 'stilted.': 39532, 'stimulates': 39533, 'stimulating,': 39534, 'stimulation': 39535, 'stocked': 39536, 'stockholm': 39537, 'stockler': 39538, 'stolid': 39539, 'stomps': 39540, 'stoops': 39541, 'stop!': 39542, 'stops,': 39543, 'story-line,': 39544, 'story-lines': 39545, 'story-wise,': 39546, 'storyboard': 39547, 'storybook': 39548, 'straightforward,': 39549, 'strangeness.': 39550, 'stranger.': 39551, 'strangles': 39552, 'strawberry': 39553, 'straws': 39554, 'stream,': 39555, 'streep)': 39556, 'street",': 39557, 'street".': 39558, "streets'": 39559, 'streets.<br': 39560, 'strengthens': 39561, 'stroking': 39562, 'strong.<br': 39563, 'struts': 39564, 'stuffs': 39565, 'stupid!"': 39566, 'stupid;': 39567, 'stupidities': 39568, 'stupor': 39569, 'style).': 39570, 'stéphane': 39571, 'subconsciously': 39572, 'subdue': 39573, 'subgenre': 39574, 'sublime,': 39575, 'submarine.': 39576, 'subservient': 39577, 'subtext.': 39578, 'subtract': 39579, 'successors': 39580, 'suchet': 39581, 'sucker.': 39582, 'sucks"': 39583, 'sucks.<br': 39584, 'suffering,': 39585, 'sufferings': 39586, 'suffice.': 39587, 'suffocates': 39588, 'suit.<br': 39589, 'sumitra': 39590, 'summarizes': 39591, 'sumpter': 39592, 'sundry': 39593, 'sunrise,': 39594, 'sunset,': 39595, 'super-human': 39596, 'superdome': 39597, 'supermarket.': 39598, 'superpowers.': 39599, 'supportive,': 39600, 'supremacy.': 39601, 'sure).': 39602, 'surfaces': 39603, 'surrealism,': 39604, 'surrendered': 39605, 'survived,': 39606, 'susceptible': 39607, 'suspecting': 39608, 'suzanne,': 39609, 'swallow,': 39610, 'swastika': 39611, 'sweets': 39612, 'swells': 39613, 'sweltering': 39614, 'swim,': 39615, 'swimmer': 39616, 'swimsuit': 39617, 'swinton': 39618, 'swipe': 39619, 'sycophantic': 39620, "sydow's": 39621, 'sylvain': 39622, 'symbolize': 39623, 'symbolized': 39624, 'symbolizing': 39625, 'sympathetically': 39626, 'synapse': 39627, 'synergy': 39628, 'synopsis,': 39629, 'syriana': 39630, 'systematic': 39631, 't&a.': 39632, 't-shirt.': 39633, 'tab': 39634, 'tableaux': 39635, 'tabu': 39636, 'tacked-on': 39637, 'tactical': 39638, 'tactics.': 39639, 'taffy': 39640, 'taka': 39641, 'talalay': 39642, 'talents.<br': 39643, 'tangent': 39644, 'tangentially': 39645, 'tank,': 39646, 'tanked': 39647, 'tantamount': 39648, 'tantrum': 39649, 'tanushree': 39650, 'tap-dancing': 39651, 'tapes"': 39652, 'tarantino.': 39653, "tarkovsky's": 39654, 'tasked': 39655, 'tate': 39656, 'tatooine': 39657, 'taught,': 39658, 'taylor)': 39659, "tchaikovsky's": 39660, 'tcm.': 39661, 'teammates': 39662, 'teary': 39663, 'tease.': 39664, 'teasers': 39665, 'tee': 39666, 'teen-age': 39667, "teenager's": 39668, 'teenagers.<br': 39669, 'tehran': 39670, 'telepathic': 39671, 'teleplay': 39672, 'teleportation': 39673, 'television)': 39674, 'temp': 39675, 'tempers': 39676, 'tempts': 39677, 'tenacity': 39678, 'tenderness,': 39679, 'tension?': 39680, 'tenure': 39681, 'terminology': 39682, 'terms.<br': 39683, 'terrain,': 39684, 'terrific.<br': 39685, 'terrify': 39686, 'tessari': 39687, "tet's": 39688, 'textured': 39689, 'thade': 39690, 'thailand,': 39691, 'thakur': 39692, 'than)': 39693, 'that!)': 39694, "thaw's": 39695, 'the.': 39696, 'theatrics': 39697, 'theft,': 39698, 'themes.<br': 39699, 'themselves?': 39700, 'theory.<br': 39701, 'therapy,': 39702, 'therapy.': 39703, "there'll": 39704, 'thereof': 39705, 'thewlis': 39706, 'things"': 39707, 'third-rate': 39708, 'third-world': 39709, 'thirty-something': 39710, 'this!!!': 39711, 'this!.': 39712, 'this).<br': 39713, 'this..': 39714, "thomas'": 39715, 'thomas)': 39716, 'thompson.': 39717, 'thomson': 39718, 'thorne': 39719, 'thrashing': 39720, 'threaded': 39721, 'threat,': 39722, 'thrills.<br': 39723, 'throats.': 39724, 'through!': 39725, 'throw-away': 39726, 'thrusting': 39727, 'thrusts': 39728, 'thug,': 39729, 'thuggee': 39730, 'thumps': 39731, "thurman's": 39732, 'tickets.': 39733, 'ticks': 39734, 'tides': 39735, 'tie-in': 39736, 'tiff': 39737, "timberlake's": 39738, 'time!!': 39739, 'time",': 39740, 'time...<br': 39741, 'timelessness': 39742, 'times),': 39743, 'times...': 39744, 'tinker': 39745, 'title?': 39746, 'to;': 39747, 'toes.': 39748, 'together?': 39749, 'told.<br': 39750, "tom'": 39751, 'tomb.': 39752, 'tommy,': 39753, 'tonic': 39754, 'tonnes': 39755, 'too!<br': 39756, 'tool.': 39757, 'toots': 39758, 'top"': 39759, 'tormentors.': 39760, "toro's": 39761, 'toro,': 39762, 'total)': 39763, 'touched.': 39764, 'touchingly': 39765, 'touchstone': 39766, 'tour.': 39767, 'touting': 39768, 'towne': 39769, 'tp': 39770, 'tr': 39771, 'trace.': 39772, 'trademark.': 39773, 'traditional,': 39774, 'trainspotting': 39775, 'trainspotting,': 39776, 'tranquility': 39777, 'transcended': 39778, 'transcendent': 39779, 'transfer,': 39780, 'transference': 39781, 'transformation.': 39782, 'transitional': 39783, 'translations': 39784, 'transmit': 39785, 'transmitting': 39786, 'transpired': 39787, 'transporter': 39788, 'transposed': 39789, 'trapped.': 39790, 'trauma,': 39791, 'travails': 39792, 'travers': 39793, 'treading': 39794, 'treason': 39795, 'treasure"': 39796, 'tremaine': 39797, 'trenholm': 39798, 'triangular': 39799, 'trident': 39800, 'trilogy.<br': 39801, 'trini': 39802, 'tripods': 39803, 'trish,': 39804, 'triumphing': 39805, 'trnka': 39806, 'trots': 39807, 'trotted': 39808, 'truckload': 39809, 'trudy': 39810, 'truth:': 39811, 'tugged': 39812, 'tugging': 39813, 'tully),': 39814, 'tumble': 39815, 'tuneful': 39816, 'turd,': 39817, 'turf': 39818, 'turmoil.': 39819, 'turned,': 39820, 'turtle,': 39821, 'twenty-somethings': 39822, 'twice!': 39823, 'twin,': 39824, 'two-timing': 39825, 'tykwer': 39826, 'typecasting': 39827, 'uc': 39828, 'ueto': 39829, 'uli': 39830, 'ultra-low': 39831, 'umbrellas': 39832, 'ummm,': 39833, 'unanimous': 39834, 'unappreciated': 39835, 'unavoidably': 39836, 'unbreakable': 39837, 'unconditional': 39838, 'unconscious,': 39839, 'uncontrollably': 39840, 'uncredited,': 39841, 'uncritical': 39842, 'underappreciated': 39843, 'undercuts': 39844, 'underline': 39845, 'underlined': 39846, 'underpinned': 39847, 'underplays': 39848, 'understandable.<br': 39849, 'undertaking': 39850, 'underused.': 39851, 'underwhelmed': 39852, 'underworld.': 39853, 'undesirable': 39854, 'undo': 39855, 'undoing': 39856, 'undoubted': 39857, 'uneducated,': 39858, 'unemotional': 39859, 'unethical': 39860, 'uneventful,': 39861, 'unfolded.': 39862, 'unforgettably': 39863, 'unharmed': 39864, 'unharmed.': 39865, 'unhinged,': 39866, 'uni': 39867, 'uniform.': 39868, 'uniformed': 39869, 'unimpressed': 39870, 'unimpressive.': 39871, 'uninformed': 39872, 'unisols': 39873, 'unjustified': 39874, 'unkind': 39875, 'unknowns,': 39876, 'unlikely,': 39877, 'unlocked': 39878, 'unmasking': 39879, 'unmissable': 39880, 'unnoticed.': 39881, 'unpleasant.': 39882, 'unpleasantness': 39883, 'unpredictability': 39884, 'unquestionable': 39885, 'unrelated,': 39886, 'unrest,': 39887, 'unsatisfied,': 39888, 'unsettling.<br': 39889, 'unstable,': 39890, 'unsure,': 39891, 'unsympathetic,': 39892, 'unwatched': 39893, 'unwritten': 39894, 'up!!': 39895, 'up).': 39896, 'up?"': 39897, 'upbringing.': 39898, 'uphold': 39899, 'uplift': 39900, 'upping': 39901, 'uppity': 39902, 'upstage': 39903, 'upwardly': 39904, 'us".': 39905, 'us:': 39906, 'use.<br': 39907, 'useful.': 39908, 'user,': 39909, 'ustinov,': 39910, 'utah,': 39911, 'utopia': 39912, 'v.s.': 39913, 'vacation"': 39914, 'vacation.<br': 39915, 'vadar': 39916, 'valco': 39917, "vampire's": 39918, 'vampiric': 39919, 'vancouver,': 39920, 'vargas"': 39921, 'vase': 39922, 'vat': 39923, 'vaughn,': 39924, 'veer': 39925, 'vega)': 39926, 'vehemently': 39927, 'vehicles.': 39928, 'venantini': 39929, 'venantino': 39930, 'venom,': 39931, "vera-ellen's": 39932, 'veracity': 39933, 'verges': 39934, 'verhoeven,': 39935, 'vermin': 39936, 'vermont': 39937, 'versed': 39938, 'vested': 39939, 'vial': 39940, 'vibe.': 39941, 'vicarious': 39942, 'vicariously': 39943, 'victims;': 39944, 'video)': 39945, 'video?': 39946, 'videotapes': 39947, 'viewing:': 39948, 'vil': 39949, 'villages,': 39950, 'villains.<br': 39951, 'villaronga': 39952, 'villian': 39953, 'vin': 39954, 'violates': 39955, 'virgins,': 39956, 'virile': 39957, 'virtuosity': 39958, 'viscera': 39959, 'visible,': 39960, 'visible.<br': 39961, 'visit,': 39962, 'visitors,': 39963, 'visualize': 39964, 'vividly,': 39965, 'vividly.': 39966, 'vivre': 39967, 'voice)': 39968, 'volcanic': 39969, 'volcano': 39970, "volckman's": 39971, 'volunteering': 39972, 'vomit,': 39973, 'vosloo': 39974, 'vowed': 39975, 'vue': 39976, 'wachowski': 39977, 'wagnerian': 39978, 'wall-to-wall': 39979, 'wallace,': 39980, 'wallowing': 39981, 'wallows': 39982, 'walsh,': 39983, 'walsh.': 39984, "war's": 39985, 'warhols.': 39986, 'warlock': 39987, 'warner,': 39988, 'warning!': 39989, 'wars",': 39990, 'wars:': 39991, 'was).': 39992, 'was?': 39993, 'washed-up': 39994, 'wasp': 39995, 'wasteful': 39996, 'water.<br': 39997, 'waterfall,': 39998, 'waterfront,': 39999, 'watts,': 40000, 'waved': 40001, 'waxes': 40002, 'waxing': 40003, 'way".': 40004, 'weaken': 40005, 'weakened': 40006, 'weaker.': 40007, 'weather.': 40008, 'web.': 40009, 'week-end': 40010, 'weinstein': 40011, 'well-crafted,': 40012, 'well-designed,': 40013, 'well-drawn': 40014, 'well-paced': 40015, 'well-played': 40016, 'well-suited': 40017, "wellington's": 40018, 'wench:': 40019, 'wendigo,': 40020, 'were)': 40021, "weren't.": 40022, 'westernized': 40023, 'weston': 40024, 'what!': 40025, 'what.<br': 40026, 'what?"': 40027, 'whatnot,': 40028, 'whatnot.': 40029, 'whence': 40030, 'whereupon': 40031, 'whew!': 40032, 'whirl': 40033, 'whisks': 40034, 'whistle': 40035, 'wholesale': 40036, 'why??': 40037, 'wich': 40038, 'widescreen,': 40039, 'wierd': 40040, 'wig.': 40041, 'wilds': 40042, 'wilfully': 40043, 'willed': 40044, 'winch': 40045, 'wind".': 40046, 'window.<br': 40047, 'winner.<br': 40048, 'winning.': 40049, 'winninger,': 40050, "winters'": 40051, 'wirework': 40052, 'wisdom,': 40053, 'witchery': 40054, 'witching': 40055, 'with!': 40056, 'withholding': 40057, 'within.<br': 40058, 'wittiest': 40059, 'wives.<br': 40060, "wolfe's": 40061, 'womanizing,': 40062, 'women).': 40063, 'wonderland.': 40064, "wong's": 40065, 'woo,': 40066, 'wood.<br': 40067, 'woody.': 40068, 'word.<br': 40069, 'worker.': 40070, "workers'": 40071, 'workers.': 40072, "world'": 40073, 'world-class': 40074, 'worms.': 40075, 'woronov,': 40076, 'worried,': 40077, 'worsens': 40078, 'worship.': 40079, 'worst).': 40080, 'wound,': 40081, 'wound.': 40082, 'wounding': 40083, 'wow!<br': 40084, 'wowed': 40085, 'wright,': 40086, 'writers.<br': 40087, 'writhe': 40088, 'wrong...': 40089, 'wussy': 40090, "wwe's": 40091, 'wwi,': 40092, 'wwii.<br': 40093, 'xavier': 40094, 'ya.': 40095, 'yakima': 40096, 'yashraj': 40097, 'yell.': 40098, 'yellow,': 40099, 'yes;': 40100, 'yet!': 40101, 'yet).': 40102, 'yeung': 40103, 'yields': 40104, 'yikes.': 40105, 'yimou': 40106, 'yin': 40107, 'yoga': 40108, 'yokozuna': 40109, 'york"': 40110, 'yorker,': 40111, 'yorkshire': 40112, 'you),': 40113, 'you,"': 40114, 'you`ve': 40115, 'youtube,': 40116, 'yun': 40117, 'yup': 40118, 'zabalza': 40119, 'zandt': 40120, 'zane)': 40121, 'zappa': 40122, 'zechs': 40123, 'zeenat': 40124, 'zeitgeist': 40125, 'zenith': 40126, 'zeon': 40127, 'zippy': 40128, 'zizek,': 40129, 'zombie",': 40130, 'zombie-like': 40131, "zombies'": 40132, '!!!!!': 40133, '!!!!!!!!!': 40134, '!!!<br': 40135, '"10."': 40136, '"3"': 40137, '"absolute': 40138, '"actress"': 40139, '"airplane"': 40140, '"almost': 40141, '"anchors': 40142, '"another': 40143, '"anything': 40144, '"aqua': 40145, '"aren\'t': 40146, '"art".': 40147, '"artist"': 40148, '"artistic"': 40149, '"artsy"': 40150, '"arty"': 40151, '"atomic': 40152, '"audition"': 40153, '"b': 40154, '"battlestar': 40155, '"beowulf': 40156, '"birthday': 40157, '"blithe': 40158, '"blue"': 40159, '"boring"': 40160, '"brain': 40161, '"bright': 40162, '"buddy"': 40163, '"camp"': 40164, '"campy"': 40165, '"cannonball': 40166, '"carnosaur"': 40167, '"chicken': 40168, '"chinese': 40169, '"chosen': 40170, '"comedy': 40171, '"common': 40172, '"cowboy"': 40173, '"crash"': 40174, '"crime': 40175, '"crocodile': 40176, '"cuckoo\'s': 40177, '"dahlia"': 40178, '"david': 40179, '"diary': 40180, '"dick"': 40181, '"director\'s': 40182, '"doctor"': 40183, '"dukes"': 40184, '"eating': 40185, '"edgy"': 40186, '"edison"': 40187, '"elephant': 40188, '"empire': 40189, '"erendira"': 40190, '"erotic"': 40191, '"everybody\'s': 40192, '"executive': 40193, '"extras"': 40194, '"eyes': 40195, '"fantasy': 40196, '"find': 40197, '"flavia': 40198, '"flesh': 40199, '"forrest': 40200, '"frankenstein"': 40201, '"freddy': 40202, '"freddy\'s': 40203, '"fresh': 40204, '"galaxy': 40205, '"game"': 40206, '"gandhi",': 40207, '"gee': 40208, '"gladiator"': 40209, '"goldeneye"': 40210, '"grosse': 40211, '"guess': 40212, '"guinea': 40213, '"gymkata"': 40214, '"ha': 40215, '"hatred': 40216, '"haunted': 40217, '"heart': 40218, '"heaven\'s': 40219, '"heavy': 40220, '"hell': 40221, '"heroic"': 40222, '"hey!': 40223, '"hi': 40224, '"higher': 40225, '"history': 40226, '"hitler:': 40227, '"hooray': 40228, '"im': 40229, '"inside': 40230, '"intelligent"': 40231, '"jump"': 40232, '"kids': 40233, '"l.a.': 40234, '"late': 40235, '"laura"': 40236, '"legend': 40237, '"leonard': 40238, '"light"': 40239, '"lion': 40240, '"lone': 40241, '"long': 40242, '"look!': 40243, '"love,': 40244, '"magic"': 40245, '"malcolm': 40246, '"man,': 40247, '"master': 40248, '"matrix': 40249, '"me': 40250, '"mean': 40251, '"method': 40252, '"monsters"': 40253, '"movie".': 40254, '"music': 40255, '"nacho': 40256, '"noir"': 40257, '"nouvelle': 40258, '"opening': 40259, '"ordinary': 40260, '"pal': 40261, '"paper': 40262, '"paths': 40263, '"phantasm"': 40264, '"pick': 40265, '"political"': 40266, '"psychological': 40267, '"raiders': 40268, '"rambo"': 40269, '"real".': 40270, '"really': 40271, '"remember': 40272, '"restored"': 40273, '"reviewers"': 40274, '"rich': 40275, '"romeo': 40276, '"sense': 40277, '"serial': 40278, '"sexual': 40279, '"shaggy': 40280, '"shark': 40281, '"silly': 40282, '"singin\'': 40283, '"single': 40284, '"slackers"': 40285, '"slaughterhouse': 40286, '"sleeping': 40287, '"slow"': 40288, '"snow': 40289, '"so-bad-it\'s-good"': 40290, '"sometimes': 40291, '"son': 40292, '"speed': 40293, '"spot': 40294, '"spring': 40295, '"state': 40296, '"steve,': 40297, '"straightheads"': 40298, '"street': 40299, '"succubus"': 40300, '"such': 40301, '"superman"': 40302, '"sweets': 40303, '"tea': 40304, '"teenage': 40305, '"tell': 40306, '"ten': 40307, '"terminator': 40308, '"texas': 40309, '"they"': 40310, '"think"': 40311, '"tough': 40312, '"toxic': 40313, '"transformers"': 40314, '"trick': 40315, '"triumph': 40316, '"troll': 40317, '"troy"': 40318, '"tv': 40319, '"twin': 40320, '"twister"': 40321, '"twists"': 40322, '"undead"': 40323, '"users"': 40324, '"vacation"': 40325, '"vanishing': 40326, '"vertigo"': 40327, '"victim"': 40328, '"walk': 40329, '"watch"': 40330, '"west': 40331, '"western"': 40332, '"which': 40333, '"without': 40334, '"wizards': 40335, '"women\'s': 40336, '"yes."': 40337, '"young"': 40338, '#1.': 40339, '#2,': 40340, '#4': 40341, '#5': 40342, '$1,000': 40343, '$1,000,000': 40344, '$1.00': 40345, '$15': 40346, '$3.99': 40347, '$50,000': 40348, '$7': 40349, "'10'": 40350, "'50s.": 40351, "'68": 40352, '\'73"': 40353, "'73,": 40354, "'77": 40355, "'8": 40356, "'83": 40357, "'act'": 40358, "'acting'": 40359, "'art'": 40360, "'arthur'": 40361, "'boy": 40362, "'clean'": 40363, "'cute'": 40364, "'dark": 40365, "'dead'": 40366, "'die": 40367, "'dirty": 40368, "'do": 40369, "'earth'": 40370, "'em.": 40371, "'father": 40372, "'flight": 40373, "'forbidden'": 40374, "'from": 40375, "'funny'": 40376, "'futuristic'": 40377, "'happy": 40378, "'henry": 40379, "'hilarious'": 40380, "'hollow": 40381, "'hollywood": 40382, "'home": 40383, "'i'll": 40384, "'jane": 40385, "'jokes'": 40386, "'lost'": 40387, "'make": 40388, "'men": 40389, "'moon": 40390, "'movie": 40391, "'mr": 40392, "'mystery": 40393, "'natural": 40394, "'on": 40395, "'opening": 40396, "'other'": 40397, "'our": 40398, "'paris": 40399, "'paris'": 40400, "'pickup": 40401, "'ratso'": 40402, "'scoop'": 40403, "'some": 40404, "'something": 40405, "'speak": 40406, "'spirited": 40407, "'straight'": 40408, "'tarzan": 40409, "'there": 40410, "'things": 40411, "'till": 40412, "'too": 40413, "'un": 40414, "'white": 40415, "'who's": 40416, "'young": 40417, "'zombie'": 40418, '(10)': 40419, '(1939)': 40420, '(1946)': 40421, '(1948),': 40422, '(1958)': 40423, '(1966)': 40424, '(1969)': 40425, '(1973),': 40426, '(1979),': 40427, '(1984)': 40428, '(1995)': 40429, '(1996),': 40430, '(2003),': 40431, '(2003).': 40432, "(2007)'": 40433, '(4-3': 40434, '(7': 40435, '(9': 40436, '(=': 40437, '(?).': 40438, '(admittedly': 40439, '(akshay': 40440, '(alex': 40441, '(already': 40442, '(ana': 40443, '(antonio': 40444, '(assuming': 40445, '(back': 40446, '(blood': 40447, '(bob': 40448, '(boris': 40449, '(boy': 40450, '(briefly)': 40451, '(chuck': 40452, '(clearly': 40453, '(co-writer': 40454, '(completely': 40455, '(cristina': 40456, '(cut': 40457, '(dale': 40458, '(dawn': 40459, '(deborah': 40460, '(denholm': 40461, '(denise': 40462, '(diane': 40463, '(doris': 40464, '(doug': 40465, '(each': 40466, '(eg.': 40467, '(emma': 40468, '(english)': 40469, '(example:': 40470, '(excluding': 40471, '(finally)': 40472, '(georges': 40473, '(good)': 40474, '(guess': 40475, '(ha': 40476, '(harvey': 40477, '(hey': 40478, '(ida': 40479, '(indeed,': 40480, '(interesting': 40481, '(ironically': 40482, '(janeane': 40483, '(japanese': 40484, '(jesse': 40485, '(julie': 40486, '(karen': 40487, '(kathleen': 40488, '(kathryn': 40489, '(kathy': 40490, '(ken': 40491, '(les': 40492, '(lewis': 40493, '(like,': 40494, '(lionel': 40495, '(literally': 40496, '(lloyd': 40497, '(male': 40498, '(massimo': 40499, '(megan': 40500, '(micheal': 40501, '(mickey': 40502, '(mike': 40503, '(mind': 40504, '(miss': 40505, '(natalie': 40506, '(naturally)': 40507, '(neither': 40508, '(new': 40509, '(obviously)': 40510, '(oddly': 40511, '(ok': 40512, '(originally': 40513, '(outside': 40514, '(overall': 40515, '(pamela': 40516, '(parker': 40517, '(post': 40518, '(ralph': 40519, '(red': 40520, '(regina': 40521, '(relatively)': 40522, '(roy': 40523, '(salman': 40524, '(second': 40525, '(see:': 40526, '(similar': 40527, '(sister': 40528, '(somehow': 40529, '(sondra': 40530, '(stewart)': 40531, '(straight': 40532, '(surprisingly': 40533, '(ted': 40534, '(thankfully': 40535, '(thats': 40536, '(thelma': 40537, '(try': 40538, '(uk)': 40539, '(unfortunately': 40540, '(unfortunately,': 40541, '(wait': 40542, '(were': 40543, '(whoopi': 40544, '(within': 40545, '(yawn)': 40546, '(yellow)': 40547, '****ing': 40548, '**spoilers**': 40549, '*<br': 40550, '*and*': 40551, '*another*': 40552, '*any*': 40553, '*crocodile': 40554, '*may': 40555, '+/-': 40556, ',i': 40557, ',in': 40558, '-,': 40559, '-i': 40560, '-like': 40561, '-no': 40562, '.........': 40563, '/>"scoop"': 40564, '/>()': 40565, '/>********': 40566, '/>*spoiler*': 40567, '/>--': 40568, '/>...and': 40569, '/>11.': 40570, '/>12.': 40571, '/>13.': 40572, '/>6)': 40573, '/>7/10.': 40574, '/>8/10.': 40575, '/>>': 40576, '/>a)': 40577, '/>action': 40578, '/>again': 40579, '/>alex': 40580, '/>alexandra': 40581, '/>amidst': 40582, '/>amongst': 40583, '/>ann': 40584, '/>antwone': 40585, '/>beautifully': 40586, '/>beside': 40587, '/>boring': 40588, '/>brando': 40589, '/>briefly,': 40590, '/>brilliant': 40591, '/>bruce': 40592, '/>carla': 40593, '/>cheers': 40594, '/>clint': 40595, '/>compared': 40596, '/>cypher': 40597, '/>dark': 40598, '/>dean': 40599, '/>detective': 40600, '/>done': 40601, '/>dressed': 40602, '/>drew': 40603, '/>due': 40604, '/>easily': 40605, '/>ed': 40606, '/>emily': 40607, '/>emma': 40608, '/>enough': 40609, '/>find': 40610, '/>further,': 40611, '/>generally': 40612, '/>gerard': 40613, '/>getting': 40614, '/>glenn': 40615, '/>god': 40616, '/>half': 40617, '/>helena': 40618, '/>hugh': 40619, '/>incidentally,': 40620, '/>ironically': 40621, '/>jamie': 40622, '/>jane': 40623, '/>judging': 40624, '/>kate': 40625, '/>keaton': 40626, '/>les': 40627, '/>lest': 40628, '/>looks': 40629, '/>loretta': 40630, '/>louis': 40631, '/>luckily': 40632, '/>lucy': 40633, '/>mark': 40634, '/>matthau:': 40635, '/>meryl': 40636, '/>mike': 40637, '/>moving': 40638, '/>new': 40639, '/>nicolas': 40640, '/>nolte': 40641, '/>notable': 40642, '/>obviously,': 40643, '/>oddly,': 40644, '/>otherwise': 40645, '/>pacino': 40646, '/>paulie': 40647, '/>philip': 40648, '/>point': 40649, '/>polanski': 40650, '/>prince': 40651, '/>produced': 40652, '/>quartier': 40653, '/>randolph': 40654, '/>recently': 40655, '/>review:': 40656, '/>robin': 40657, '/>rock': 40658, '/>sad': 40659, '/>sarah': 40660, '/>saying': 40661, '/>scene': 40662, '/>scenes': 40663, '/>script': 40664, "/>she's": 40665, '/>short': 40666, '/>shortly': 40667, '/>sinatra': 40668, '/>stanley': 40669, '/>stardust': 40670, '/>stupid': 40671, '/>suffice': 40672, '/>summer': 40673, '/>sunday,': 40674, "/>they're": 40675, '/>thinking': 40676, '/>third': 40677, '/>thus,': 40678, '/>timberlake': 40679, '/>today,': 40680, '/>total': 40681, '/>trying': 40682, '/>under': 40683, '/>until': 40684, '/>unusual': 40685, '/>veteran': 40686, '/>viewing': 40687, '/>welcome': 40688, '/>whats': 40689, '/>whenever': 40690, '/>why,': 40691, '/>why?': 40692, '/>woody': 40693, '/>wow!': 40694, '/>wtf:': 40695, "/>you're": 40696, '/>your': 40697, '/>zombi': 40698, '/>\uf0b7': 40699, '01': 40700, '1).': 40701, '1.85:1': 40702, '1/2"': 40703, '1/5': 40704, '10"': 40705, "10's": 40706, '10)<br': 40707, '10-12': 40708, '10...': 40709, '10/10!': 40710, '100)': 40711, '103': 40712, '106': 40713, '10s': 40714, '11-year-old': 40715, '112': 40716, '116': 40717, '11th.': 40718, '14-year': 40719, "1800's": 40720, "1800's.": 40721, '1800s': 40722, '1840': 40723, '1900s': 40724, '1915': 40725, '1922,': 40726, '1924': 40727, '1925': 40728, '1934,': 40729, '1937.': 40730, '1938,': 40731, '1940.': 40732, '1946,': 40733, "1950's,": 40734, '1950.': 40735, '1951,': 40736, '1953,': 40737, '1958,': 40738, '1961': 40739, '1963,': 40740, '1967,': 40741, '1973),': 40742, '1980s.<br': 40743, '1982,': 40744, "1983's": 40745, '1997.': 40746, '1<br': 40747, '2-': 40748, '2-dimensional': 40749, '2-hour': 40750, '2.0': 40751, '2.35:1': 40752, '2/10,': 40753, '20)': 40754, '20-something': 40755, '2000)': 40756, '2000.<br': 40757, '2006)': 40758, '2009"': 40759, '2010': 40760, '2?': 40761, '2pac': 40762, '3",': 40763, '3".': 40764, '3-d,': 40765, '3/10.<br': 40766, '30-something': 40767, '30.': 40768, '300.': 40769, '34th': 40770, '35,': 40771, '36th': 40772, '37': 40773, '38': 40774, '4-(bad)': 40775, '4.5/10': 40776, "40's,": 40777, "40's.": 40778, '40s,': 40779, '5%': 40780, '5-6': 40781, '5-year': 40782, '5/5': 40783, '50+': 40784, '6.5': 40785, '61': 40786, '666:': 40787, '67': 40788, '69': 40789, '7"': 40790, '7.3': 40791, '7:': 40792, '8)': 40793, '8.1': 40794, '8.5': 40795, '9/10<br': 40796, '911.': 40797, '98%': 40798, ':-(': 40799, '?"': 40800, '???': 40801, '_a': 40802, '`i': 40803, '`mystery': 40804, 'a**': 40805, 'a.i.': 40806, 'a.k.a': 40807, 'aaa': 40808, "aaron's": 40809, 'abbreviated': 40810, 'abduct': 40811, "abigail's": 40812, 'able.': 40813, 'abomination,': 40814, 'abominations': 40815, 'abraham.': 40816, 'abrahams': 40817, 'abroad.': 40818, 'absence.': 40819, 'absentee': 40820, 'absolutly': 40821, 'abu,': 40822, 'accent)': 40823, 'accent),': 40824, 'accents?': 40825, 'accepts.': 40826, 'accident.<br': 40827, 'accidentally,': 40828, 'accidently': 40829, 'accordance': 40830, 'accountant,': 40831, 'accumulated': 40832, 'accusations,': 40833, 'ace.': 40834, 'achievements.': 40835, 'acidic': 40836, 'ackroyd': 40837, 'acquitted': 40838, 'acres': 40839, 'act).': 40840, 'acting--': 40841, 'action-oriented': 40842, 'action-packed,': 40843, 'action/comedy': 40844, 'action?': 40845, 'actioner,': 40846, 'activism': 40847, 'actor/director': 40848, "actress'": 40849, "actresses'": 40850, 'actresses.<br': 40851, 'actually),': 40852, 'addicted,': 40853, 'addressed.': 40854, 'adelaide,': 40855, 'adheres': 40856, 'adjectives': 40857, 'adjustments': 40858, 'administered': 40859, 'admirers.': 40860, 'admires.': 40861, 'adopted.': 40862, 'adore,': 40863, 'adrift': 40864, 'adroit': 40865, 'ads,': 40866, 'adulthood.': 40867, 'adventure"': 40868, 'adventurous,': 40869, 'advertising,': 40870, 'adverts': 40871, 'advice?': 40872, 'advisors': 40873, 'aerobics': 40874, 'afar.': 40875, 'affections.': 40876, 'affiliation': 40877, 'affirm': 40878, 'affirmation': 40879, 'affront': 40880, 'africa.<br': 40881, 'after"': 40882, 'afternoon"': 40883, 'afterthought,': 40884, 'ag': 40885, 'again!!': 40886, 'again).': 40887, 'again,"': 40888, 'age!': 40889, 'age)': 40890, 'age:': 40891, 'age;': 40892, 'ageless': 40893, 'agendas': 40894, 'aggression,': 40895, 'agonized': 40896, 'agree.<br': 40897, 'agreeable': 40898, 'agreeably': 40899, 'agreement.': 40900, 'agrees,': 40901, 'agricultural': 40902, 'ahead#########': 40903, 'ahead)': 40904, 'ahead.<br': 40905, 'ahh,': 40906, 'ahista': 40907, 'ahmad,': 40908, 'aides': 40909, 'aiding': 40910, 'air!': 40911, 'airborne': 40912, 'airing,': 40913, 'airlines': 40914, 'airplane!': 40915, 'airplane.': 40916, "aja's": 40917, 'alabama': 40918, 'alan.': 40919, 'alarmingly': 40920, 'alarmist': 40921, 'alarms': 40922, 'alarms.': 40923, 'alaskan': 40924, 'albert)': 40925, 'albright': 40926, "alcohol'": 40927, 'alda': 40928, 'alert:': 40929, 'alex.': 40930, "alexandre's": 40931, 'alice.': 40932, 'alida': 40933, 'alienates': 40934, 'alienating,': 40935, 'align': 40936, 'alignment': 40937, 'all).<br': 40938, 'all,the': 40939, 'all-girl': 40940, 'all-time,': 40941, 'allen.<br': 40942, 'allies.': 40943, 'alligator.': 40944, 'allowed,': 40945, 'allyson': 40946, 'almighty,': 40947, 'along),': 40948, 'alonzo': 40949, 'aloof,': 40950, 'alot.': 40951, 'alphonse': 40952, 'already?': 40953, 'alright.<br': 40954, 'altar,': 40955, 'alternatively': 40956, 'altitude': 40957, 'altman,': 40958, 'altogether.<br': 40959, "alzheimer's": 40960, 'amalgamation': 40961, "amanda's": 40962, 'amateurism': 40963, 'ambitious.': 40964, 'ambushed': 40965, 'amelia': 40966, "amenabar's": 40967, 'americana.': 40968, 'americans.<br': 40969, 'americas': 40970, 'amick': 40971, 'amigos': 40972, 'amnesiac': 40973, 'amoral,': 40974, 'amplify': 40975, 'amrapurkar': 40976, 'amrohi': 40977, 'amusement.': 40978, "an'": 40979, 'anachronisms,': 40980, 'analysis.<br': 40981, "anand's": 40982, 'ancestral': 40983, 'ancestry.': 40984, 'anders.': 40985, 'anderson)': 40986, "andie's": 40987, 'andrew,': 40988, 'andrews)': 40989, 'andrews.': 40990, 'andromeda': 40991, 'andy.': 40992, "angel's": 40993, 'angel.<br': 40994, 'angelica': 40995, 'angels.': 40996, 'angkor': 40997, 'angle.<br': 40998, 'angled': 40999, 'anglo': 41000, 'angst-ridden': 41001, 'angular': 41002, 'animals.<br': 41003, 'anisio': 41004, "aniston's": 41005, 'aniston,': 41006, 'ann.': 41007, 'anna.': 41008, 'annihilate': 41009, 'annik': 41010, 'anniversary,': 41011, 'anomalies': 41012, 'anonymity': 41013, 'anonymously': 41014, 'anselmo': 41015, 'antagonistic': 41016, 'ante': 41017, 'anti-communist': 41018, 'anti-semitism': 41019, 'antitrust': 41020, 'anton,': 41021, 'antony': 41022, 'antz,': 41023, 'anu': 41024, 'anyone?<br': 41025, 'anything?': 41026, 'anyways)': 41027, 'aoki': 41028, 'apart?': 41029, 'apes"': 41030, 'apes.': 41031, 'apologize.': 41032, 'appalled.': 41033, 'appalling!': 41034, 'apparently)': 41035, 'apparition': 41036, 'appearance.<br': 41037, 'appears.<br': 41038, 'applauds': 41039, 'applegate,': 41040, 'apply.': 41041, 'appointment': 41042, 'appreciable': 41043, 'appreciated.<br': 41044, 'apprehended': 41045, 'apprehension': 41046, 'appropriated': 41047, 'apron': 41048, 'aquatic': 41049, 'arbitrarily': 41050, 'archaeologist,': 41051, 'archer,': 41052, 'are),': 41053, 'aretha': 41054, 'argentina,': 41055, 'argentinean': 41056, 'arguably,': 41057, 'argue.': 41058, 'arguments,': 41059, 'ariauna': 41060, 'aristotelian': 41061, 'arkansas': 41062, 'armistead': 41063, 'armored': 41064, 'arms.<br': 41065, 'arne': 41066, 'arness': 41067, "arnie's": 41068, 'arnold.': 41069, 'aro': 41070, 'arrangements.': 41071, 'arrive.': 41072, 'arrogantly': 41073, 'arson': 41074, 'art"': 41075, 'art-film': 41076, "artemisia's": 41077, 'articulate,': 41078, 'artificiality': 41079, 'artillery': 41080, 'arty,': 41081, 'as...': 41082, 'asagoro': 41083, 'ashford': 41084, "asimov's": 41085, 'ask),': 41086, 'ask).': 41087, 'askey,': 41088, 'asking,': 41089, 'aspect.<br': 41090, 'aspired': 41091, 'assailant': 41092, 'assailants': 41093, 'assassin.': 41094, 'assassinates': 41095, 'asserted': 41096, 'asset,': 41097, 'assimilate': 41098, 'assumptions.': 41099, 'astin': 41100, 'at!': 41101, 'atheists': 41102, 'atom': 41103, 'attacked.': 41104, 'attal': 41105, 'attempt.<br': 41106, 'attenborough.': 41107, 'attendance.': 41108, 'attendant,': 41109, 'attractively': 41110, 'attributes.': 41111, 'audie': 41112, 'audience),': 41113, 'audience:': 41114, 'audition.': 41115, 'auditioned': 41116, 'audrie': 41117, 'augusto': 41118, 'augustus': 41119, 'auschwitz,': 41120, 'auspicious': 41121, 'aussies': 41122, 'austen,': 41123, 'auteuil': 41124, 'auteur.': 41125, 'authored': 41126, 'authoritarian': 41127, 'autobiography,': 41128, 'autograph': 41129, 'automakers': 41130, 'autry': 41131, 'avalon,': 41132, 'avaricious': 41133, 'avengers': 41134, 'avenges': 41135, 'avenues': 41136, 'averse': 41137, 'avidly': 41138, 'avoided.<br': 41139, 'awakening,': 41140, 'awareness,': 41141, 'awe,': 41142, 'awful;': 41143, 'awfulness.<br': 41144, 'awry.<br': 41145, 'axe.': 41146, 'b.i.g.': 41147, 'b.j.': 41148, 'babel': 41149, 'baby!"': 41150, "bacall's": 41151, 'bachelors': 41152, "back'": 41153, 'back,"': 41154, 'back-stabbing': 41155, 'back."': 41156, 'background)': 41157, 'background?': 41158, 'backwater': 41159, 'bad-movie': 41160, 'bad<br': 41161, 'badass,': 41162, 'baddie,': 41163, 'badly!': 41164, 'baffled.': 41165, 'baiting': 41166, 'bakewell': 41167, 'bakhtiari': 41168, 'balcony,': 41169, 'baldrick': 41170, 'ball)': 41171, 'ballad,': 41172, 'ballads,': 41173, 'balloons': 41174, 'ballpark': 41175, 'balsa': 41176, 'baltar': 41177, 'bambi': 41178, "bambi's": 41179, 'bancroft': 41180, 'banks,': 41181, 'banter,': 41182, 'baptists': 41183, 'baptized': 41184, 'barb': 41185, 'barbet': 41186, 'barcelona': 41187, 'bardot': 41188, 'barf': 41189, 'bargaining': 41190, 'barge': 41191, "barjatya's": 41192, 'barks': 41193, 'barn,': 41194, "barney's": 41195, 'barnyard': 41196, "baron's": 41197, 'barrels': 41198, 'barrymore,': 41199, 'bart,': 41200, 'basement.<br': 41201, 'basking': 41202, 'bastardized': 41203, 'bastards': 41204, 'batgirl': 41205, 'bathsheba,': 41206, 'batteries': 41207, 'battlefields': 41208, 'baxter,': 41209, 'bbc,': 41210, 'bbc1': 41211, 'be"': 41212, 'bea': 41213, 'beaches,': 41214, 'beale': 41215, 'beals': 41216, 'beans,': 41217, 'bearable,': 41218, 'beards': 41219, 'beast",': 41220, 'beast?': 41221, 'beatles,': 41222, 'beats.': 41223, 'beatty)': 41224, 'beaumont': 41225, 'beautiful)': 41226, 'beavers': 41227, "beckinsale's": 41228, 'beckinsale,': 41229, 'become.<br': 41230, 'bed"': 41231, 'bedding': 41232, 'bedlam': 41233, 'bedrooms': 41234, 'beech': 41235, 'beethoven': 41236, 'beetles': 41237, 'befall': 41238, 'began.<br': 41239, 'beginners"': 41240, 'beginning),': 41241, 'beginning).': 41242, 'behalf,': 41243, 'behave.': 41244, 'behr': 41245, 'beings.<br': 41246, "bela's": 41247, 'belabored': 41248, 'belatedly': 41249, 'belching': 41250, 'believes.': 41251, 'bell)': 41252, 'bellicose': 41253, 'bellowing': 41254, 'below)': 41255, 'benefactor': 41256, 'benjamin)': 41257, 'benjamin,': 41258, 'bennett.': 41259, 'benward': 41260, 'bergin': 41261, 'berkoff': 41262, "bernsen's": 41263, 'bernsen,': 41264, 'berserk"': 41265, 'berserkers': 41266, 'bertrand': 41267, 'best),': 41268, 'best-looking': 41269, 'best...': 41270, 'best/worst': 41271, 'bestiality,': 41272, 'betrayal.': 41273, 'beverages': 41274, 'beware!': 41275, 'beware.': 41276, 'beware:': 41277, 'bhai': 41278, 'bianca': 41279, 'biases': 41280, 'bicycle,': 41281, 'bicycles': 41282, 'bidding': 41283, 'biff': 41284, 'big-wave': 41285, 'biggie': 41286, 'biker.': 41287, 'bilal': 41288, 'bills,': 41289, 'billy,': 41290, 'bimbos': 41291, 'binoche,': 41292, 'bins': 41293, 'biologically': 41294, 'birdie': 41295, 'bislane': 41296, 'bison': 41297, 'bit)': 41298, 'bite.': 41299, 'bites,': 41300, 'bitter.': 41301, 'bittersweet,': 41302, 'bitty': 41303, 'bixby': 41304, 'black"': 41305, 'black-clad': 41306, 'black/white': 41307, 'blackie,': 41308, 'blade.': 41309, 'blah.<br': 41310, 'blaine,': 41311, 'blaise,': 41312, 'blame,': 41313, 'blanca': 41314, "blandings'": 41315, 'blanks,': 41316, 'blanks.': 41317, 'blast,': 41318, 'blatant.': 41319, 'bleakness': 41320, 'bleed,': 41321, 'bleeding.': 41322, 'bleep': 41323, 'bleeth': 41324, 'blender': 41325, 'blight': 41326, 'blindingly': 41327, 'blinds': 41328, 'bling': 41329, 'bliss,': 41330, 'blissful': 41331, 'blonder': 41332, 'blood),': 41333, 'blood-curdling': 41334, 'blood;': 41335, 'bloodbath,': 41336, 'bloodlust': 41337, 'blouses': 41338, 'bludgeoning': 41339, 'blue"': 41340, 'blue.<br': 41341, 'blush': 41342, 'blush.': 41343, 'blustering': 41344, "bluth's": 41345, 'boatload': 41346, 'bobs': 41347, 'body"': 41348, 'body-builder': 41349, 'bodyguard,': 41350, 'bogart,': 41351, 'bolster': 41352, 'bombard': 41353, 'bombardier': 41354, 'bombay': 41355, 'bombings': 41356, 'bombs.': 41357, 'bond)': 41358, 'bondarchuk': 41359, 'bones.': 41360, 'bonfire': 41361, 'bonkers,': 41362, 'bonnet': 41363, 'bonnie,': 41364, 'bonuses': 41365, 'bookended': 41366, 'boomer': 41367, 'booming': 41368, 'boosts': 41369, 'booted': 41370, 'borat': 41371, 'boreanaz': 41372, 'boreanaz,': 41373, 'born.<br': 41374, 'boromir': 41375, 'borough': 41376, 'boss"': 41377, 'botches': 41378, 'both!': 41379, 'both).': 41380, 'both?': 41381, 'bother,': 41382, 'bottomless': 41383, 'bought.': 41384, 'bound,': 41385, 'bound:': 41386, 'bouzaglo,': 41387, 'bowden': 41388, 'bowie,': 41389, "boy'": 41390, 'boyfriend;': 41391, 'boyfriends.': 41392, 'boys.<br': 41393, 'bozo': 41394, 'brace': 41395, 'braces': 41396, 'bradbury': 41397, "brady's": 41398, 'braga,': 41399, 'bragana': 41400, 'brain.<br': 41401, 'brainchild': 41402, 'brainless,': 41403, 'brake': 41404, 'brand,': 41405, 'brandon,': 41406, 'brashear.': 41407, 'braves': 41408, 'brazenly': 41409, 'brazil.': 41410, 'break!<br': 41411, 'break-out': 41412, 'breaking.': 41413, 'breakneck': 41414, 'breathe,': 41415, 'breathing.': 41416, 'breathless.': 41417, 'breeze,': 41418, 'brenda,': 41419, 'brent.': 41420, 'brews': 41421, 'bribed': 41422, 'bride-to-be': 41423, 'brides.': 41424, 'bridge"': 41425, 'bridges)': 41426, 'bridget,': 41427, 'briefly.': 41428, 'briers': 41429, 'brigante': 41430, 'brightens': 41431, 'brilliant;': 41432, 'brimmer': 41433, 'bring.': 41434, 'brisk,': 41435, 'briskly': 41436, 'britain.<br': 41437, 'brits.': 41438, 'britton': 41439, 'bronson.': 41440, 'bronx,': 41441, "brook's": 41442, 'brothers.<br': 41443, 'browder': 41444, 'brown"': 41445, 'bruce.': 41446, 'bruhl': 41447, 'bruises': 41448, 'brutalized': 41449, 'buchfellner': 41450, 'bucolic': 41451, 'bud.': 41452, 'budapest,': 41453, 'buenos': 41454, 'buffoon.': 41455, 'bug,': 41456, 'bugging': 41457, 'build.': 41458, 'building?': 41459, 'bulgaria': 41460, 'bulimic': 41461, 'bulldog,': 41462, 'bulletin': 41463, 'bumble': 41464, 'bumpy': 41465, 'bungling': 41466, 'bunnies': 41467, 'bunuel,': 41468, 'burbank': 41469, 'burial,': 41470, 'burn,': 41471, 'burns)': 41472, "burroughs'": 41473, "burt's": 41474, 'buses,': 41475, "bush's": 41476, 'bushwhackers': 41477, 'business"': 41478, 'businessman.': 41479, "buster's": 41480, 'bustling': 41481, 'butchered,': 41482, 'butler.': 41483, 'bye!': 41484, 'bye,': 41485, 'bynes': 41486, "byron's": 41487, 'bystanders': 41488, "c'est": 41489, 'c,': 41490, 'c3po': 41491, 'ca.': 41492, 'cab,': 41493, 'cables': 41494, 'cage"': 41495, 'cage),': 41496, 'cahn': 41497, 'cahoots': 41498, 'cahulawassee': 41499, 'cain,': 41500, 'cake,': 41501, 'cake.<br': 41502, 'calf.': 41503, 'california.<br': 41504, 'call"': 41505, 'calson': 41506, 'calvert': 41507, 'calvet': 41508, 'camazotz': 41509, 'cambodia,': 41510, 'cameo).': 41511, 'camera!': 41512, 'camp)': 41513, 'campaign.': 41514, 'can`t': 41515, 'canceling': 41516, 'cancelled,': 41517, 'candidate,': 41518, 'candidates,': 41519, 'candidates.': 41520, 'candle"': 41521, 'cannon.': 41522, 'canon.': 41523, 'canonical': 41524, 'canvases': 41525, 'capable,': 41526, 'capitalized': 41527, "capra's": 41528, 'captivity': 41529, "car's": 41530, 'car)': 41531, 'car;': 41532, 'carax': 41533, 'carcass': 41534, 'care"': 41535, 'care)': 41536, 'cared.': 41537, 'career)': 41538, 'career),': 41539, 'career?': 41540, 'carefully.': 41541, 'caretaker.': 41542, 'caribou': 41543, 'caricatured': 41544, 'carlson': 41545, 'carmichael': 41546, 'carnby': 41547, 'carol.': 41548, 'carousel,': 41549, 'carpathian': 41550, 'carradine)': 41551, 'carrie,': 41552, 'carriers': 41553, "carroll's": 41554, 'cartoon!': 41555, 'cartoonish.': 41556, "caruso's": 41557, 'carver': 41558, 'case"': 41559, 'case),': 41560, "casper's": 41561, "cassavettes's": 41562, 'cassidy.': 41563, "cassie's": 41564, 'cassie,': 41565, 'cassio': 41566, "castro's": 41567, 'castro,': 41568, 'casts,': 41569, 'casualties': 41570, 'cataclysmic': 41571, 'catching.': 41572, "cate's": 41573, 'catholicism': 41574, 'caton-jones': 41575, 'causes,': 41576, 'cavanagh': 41577, 'cavern': 41578, 'caves.': 41579, 'cccc': 41580, 'ceasar': 41581, 'ceaseless': 41582, 'celine,': 41583, 'cellar,': 41584, 'cells,': 41585, 'cells.': 41586, 'celluloid,': 41587, 'celluloid.<br': 41588, 'century"': 41589, "century's": 41590, 'ceremony,': 41591, 'certain.': 41592, 'cetera': 41593, 'cetera.': 41594, 'cg,': 41595, 'cgi)': 41596, 'chace': 41597, "chahine's": 41598, 'chainsaw,': 41599, 'challenge,': 41600, 'challenged,': 41601, 'challenges.': 41602, 'challenging.': 41603, 'chamber"': 41604, 'chamber.': 41605, 'champion.': 41606, 'champions"': 41607, 'chan-wook': 41608, 'chance?': 41609, 'chances,': 41610, "chandler's": 41611, 'chandni': 41612, 'chaney,': 41613, "chang's": 41614, 'change?': 41615, 'changeling': 41616, 'changing,': 41617, 'channel"': 41618, 'chants': 41619, 'chapter.': 41620, 'characteristically': 41621, 'characterize': 41622, 'characterizes': 41623, 'charged,': 41624, 'charges.': 41625, 'charlie.': 41626, 'chart': 41627, 'chats': 41628, 'chauvinist': 41629, 'chazz': 41630, 'cheapie': 41631, 'cheated,': 41632, 'check,': 41633, 'checkered': 41634, 'cheers.': 41635, 'cheesey': 41636, 'cheesier': 41637, 'cheeta': 41638, 'chef,': 41639, 'chefs': 41640, "cheh's": 41641, 'chemically': 41642, 'chemistry;': 41643, 'cherishes': 41644, 'chess,': 41645, 'chess.': 41646, 'chew.': 41647, 'chewbacca,': 41648, 'chick-flick': 41649, 'child?': 41650, 'childbirth.': 41651, 'childhood.<br': 41652, 'children!': 41653, 'childress': 41654, 'chimes': 41655, 'chimney.': 41656, 'chimp,': 41657, 'chimpanzee': 41658, 'chimpanzees': 41659, 'chimps,': 41660, 'chirping': 41661, 'chloe,': 41662, 'choir.': 41663, "chomsky's": 41664, 'chose.': 41665, "chris's": 41666, 'christie"': 41667, 'christmas",': 41668, "christmas'": 41669, 'christmas.<br': 41670, 'christophe': 41671, "christopher's": 41672, 'christopher,': 41673, 'christy.': 41674, 'chronicled': 41675, 'chrysler': 41676, 'chubby,': 41677, 'chump': 41678, 'churches,': 41679, 'churchill': 41680, 'churchill.': 41681, 'château': 41682, 'ciannelli': 41683, 'cigarette.': 41684, 'cine': 41685, 'cinematography:': 41686, 'cinematography;': 41687, 'cinephiles': 41688, 'circumstance,': 41689, 'circumstantial': 41690, 'citizenry': 41691, 'city?': 41692, 'cj': 41693, 'claim.': 41694, 'claimed,': 41695, 'claims.': 41696, 'clan.': 41697, 'clans': 41698, 'clarissa': 41699, 'clarke.': 41700, 'clarkson,': 41701, 'classic)': 41702, 'classic-era': 41703, 'claus"': 41704, 'clause.': 41705, 'claustrophobic.': 41706, 'clawing': 41707, 'clay,': 41708, 'cleaning,': 41709, 'cleaver': 41710, 'clemens': 41711, 'clever.<br': 41712, "cliche's": 41713, "cliché'": 41714, "cliché's": 41715, 'clichés.<br': 41716, 'click,': 41717, 'climaxing': 41718, 'clinically': 41719, 'clip.': 41720, 'cliver': 41721, 'cloaked': 41722, 'clones,': 41723, 'close-knit': 41724, 'closets,': 41725, 'cloth.': 41726, 'clothes)': 41727, 'clothes.<br': 41728, 'cloud,': 41729, 'clout': 41730, 'club.<br': 41731, 'clunkers': 41732, 'clutch': 41733, 'co-director': 41734, 'co-exist': 41735, 'coach.': 41736, 'coax': 41737, 'coaxed': 41738, 'cobb,': 41739, 'codger': 41740, 'cody,': 41741, 'coed': 41742, 'coffin,': 41743, 'coffy,': 41744, 'cohen.': 41745, 'coherent.': 41746, 'cohesion': 41747, 'coiffed': 41748, 'coincidence.<br': 41749, 'coincidences,': 41750, 'coke,': 41751, 'coke.': 41752, 'cold-war': 41753, 'cole)': 41754, 'collaborate': 41755, 'collaborations,': 41756, 'collar.': 41757, 'collector.': 41758, 'college)': 41759, "collette's": 41760, 'collide.': 41761, 'colonized': 41762, 'colony.': 41763, 'coloring': 41764, 'columns': 41765, 'coma,': 41766, 'comb': 41767, 'combinations': 41768, 'combined,': 41769, "combs'": 41770, 'come"': 41771, 'comedic.': 41772, 'comedienne.': 41773, 'comedy...': 41774, 'comers,': 41775, 'comeuppance.': 41776, 'comfort,': 41777, 'comfy': 41778, 'comic-strip': 41779, 'commandments': 41780, 'commando,': 41781, 'comment...': 41782, 'comment?': 41783, 'commercialism': 41784, 'commies': 41785, 'common.<br': 41786, 'common:': 41787, 'communism,': 41788, 'communities.': 41789, 'community?': 41790, 'companies,': 41791, 'companions,': 41792, 'compared.': 41793, 'compatible': 41794, 'competitions,': 41795, 'complacent': 41796, 'complain.': 41797, 'complementary': 41798, 'completed.<br': 41799, 'completely.<br': 41800, 'complicates': 41801, 'complicit': 41802, 'composed,': 41803, 'composition,': 41804, 'comprehend,': 41805, 'comprehensively': 41806, 'compulsively': 41807, 'comradeship': 41808, 'concealing': 41809, 'conceiving': 41810, 'concentration,': 41811, 'conceptions': 41812, 'concerted': 41813, 'conclusion?': 41814, 'conclusions.<br': 41815, 'concur': 41816, 'condensing': 41817, 'condition.<br': 41818, 'cone': 41819, 'confection': 41820, 'confessions,': 41821, 'confidant': 41822, 'confidence,': 41823, 'conflicts.': 41824, 'confusing.<br': 41825, 'congo': 41826, 'congratulations,': 41827, 'congressional': 41828, 'connected.': 41829, 'connected.<br': 41830, 'connecticut.': 41831, 'consenting': 41832, 'consequences,': 41833, 'conservatives': 41834, 'considerably.': 41835, 'consolation.': 41836, 'consoling': 41837, 'conspiring': 41838, 'constant,': 41839, 'constructs': 41840, 'consumerism,': 41841, 'contained,': 41842, 'contemplation': 41843, 'contemporary.': 41844, 'contenders': 41845, 'content.<br': 41846, 'contextual': 41847, 'continents': 41848, 'continued,': 41849, 'continuum': 41850, 'contradiction,': 41851, 'contradiction.': 41852, 'contributions.': 41853, 'contributor': 41854, 'contrived.<br': 41855, 'controls.': 41856, 'controversy.': 41857, 'conveniently,': 41858, 'convent"': 41859, 'convent,': 41860, 'conventional,': 41861, 'converge': 41862, 'conversely,': 41863, 'conversing': 41864, 'converting': 41865, 'cookies': 41866, 'cooler,': 41867, 'coordinated': 41868, 'cop)': 41869, 'copper,': 41870, 'coppers': 41871, 'copping': 41872, 'copy.<br': 41873, 'corbett.': 41874, 'core.<br': 41875, 'coronets"': 41876, 'corps': 41877, 'corpses.': 41878, 'corral': 41879, 'correctness,': 41880, 'corregidor': 41881, 'correlation': 41882, 'correspondent': 41883, 'corsaut)': 41884, 'cosette': 41885, 'costa': 41886, 'costas': 41887, 'cough': 41888, 'coughed': 41889, 'coughs': 41890, 'coulda': 41891, 'counselor': 41892, 'counselor,': 41893, 'counters': 41894, 'country"': 41895, 'country;': 41896, 'county,': 41897, 'county.': 41898, 'coup,': 41899, 'courier': 41900, 'course!)': 41901, 'course),': 41902, "court's": 41903, 'court.<br': 41904, 'cousins.': 41905, 'coworkers': 41906, 'cr*p.': 41907, 'crack.': 41908, 'craft.<br': 41909, "crain's": 41910, 'cramp': 41911, 'crapfest.': 41912, 'crashers,': 41913, 'crashes,': 41914, 'cratchit,': 41915, 'crazily': 41916, 'crazy!': 41917, 'cream.': 41918, 'created.<br': 41919, 'creates,': 41920, "creators'": 41921, 'credible.<br': 41922, "credit's": 41923, 'credit.<br': 41924, 'credit:': 41925, 'credited.': 41926, "creed's": 41927, 'creek.': 41928, 'creepers': 41929, 'creepiness,': 41930, 'creepiness.': 41931, 'crenna,': 41932, 'crime"': 41933, 'crime-fighting': 41934, 'crimes?': 41935, 'criminality': 41936, 'cringe-inducing': 41937, 'crippled,': 41938, 'crises': 41939, 'crocodiles,': 41940, 'crook,': 41941, 'crooks.': 41942, 'croons': 41943, 'cropped': 41944, 'crosby.': 41945, 'crothers,': 41946, "crouse's": 41947, 'crowd.<br': 41948, 'crowds,': 41949, 'crown.': 41950, 'crud.': 41951, 'crudeness': 41952, 'crumbled': 41953, 'crusading': 41954, 'crust': 41955, 'crutches': 41956, 'crystals': 41957, 'cs': 41958, 'cubic': 41959, 'cubitt': 41960, 'cuckoo': 41961, 'cues,': 41962, 'cummings': 41963, "cunningham's": 41964, 'curator,': 41965, 'cure,': 41966, 'curled': 41967, 'curley': 41968, 'curls': 41969, "curly's": 41970, 'curtains,': 41971, "curtis's": 41972, "curtiz's": 41973, 'cushing)': 41974, 'cushion': 41975, 'custody.': 41976, 'cut-out': 41977, 'cutting.': 41978, 'cv.': 41979, 'cylons.': 41980, 'cynicism,': 41981, 'czechoslovakia': 41982, 'czechs': 41983, "d'": 41984, 'd-wars': 41985, 'd.c.,': 41986, 'd:': 41987, 'dab': 41988, 'dad!': 41989, 'dad.<br': 41990, "dafoe's": 41991, 'daft.': 41992, 'dahlia': 41993, 'daisy,': 41994, 'dalmar': 41995, 'dalmations': 41996, 'damaged,': 41997, 'damages': 41998, 'damme,': 41999, 'damme.': 42000, 'damon)': 42001, 'damon.': 42002, 'damp': 42003, "dandy's": 42004, "dangerfield's": 42005, 'dank': 42006, 'danse': 42007, 'daphne,': 42008, 'dare.': 42009, 'darian': 42010, 'dark",': 42011, 'dark.<br': 42012, 'darker.': 42013, 'darkest,': 42014, 'darkness"': 42015, 'darwin': 42016, 'dates"': 42017, 'dates.': 42018, 'dating.': 42019, 'daughter)': 42020, 'daughter),': 42021, 'daunting': 42022, 'dauphine,': 42023, 'david.': 42024, 'dawkins': 42025, 'dawned': 42026, 'dawning': 42027, 'day-glo': 42028, 'day...': 42029, 'day:': 42030, 'days".': 42031, 'days)': 42032, 'dazzles': 42033, 'dead-pan': 42034, 'deadly.': 42035, 'deadpan,': 42036, "deanna's": 42037, 'dearest': 42038, "death'": 42039, 'deathtrap,': 42040, 'debate.': 42041, 'debut)': 42042, 'decade!': 42043, 'decade:': 42044, 'decay.': 42045, 'deceitful': 42046, 'deceiving': 42047, 'decent.<br': 42048, 'decide,': 42049, 'decided,': 42050, 'decisive': 42051, 'deck.': 42052, 'decorating': 42053, 'decorations': 42054, 'dedication,': 42055, 'dedlock': 42056, 'deduced': 42057, 'dee,': 42058, 'deeds.': 42059, 'deems': 42060, 'deepening': 42061, 'deeper.': 42062, 'deepti': 42063, 'defeated.': 42064, 'defenses': 42065, 'definetely': 42066, 'defuse': 42067, 'degrading,': 42068, 'degrees,': 42069, 'deign': 42070, 'deity': 42071, "delia's": 42072, 'deliberate.': 42073, 'delicacy': 42074, 'delight!': 42075, 'delight.<br': 42076, 'delinquency': 42077, 'deliver.<br': 42078, 'deliverance.': 42079, 'dell': 42080, 'dell\'orco"': 42081, 'dello': 42082, 'demeaned': 42083, 'demeanour': 42084, 'demise.<br': 42085, 'democracy.': 42086, 'democratically': 42087, 'demons"': 42088, 'demonstrations': 42089, 'denied.': 42090, 'denigrate': 42091, 'denmark.': 42092, 'denotes': 42093, 'density': 42094, 'denver,': 42095, 'depalma,': 42096, 'deployment': 42097, 'depresses': 42098, 'depression-era': 42099, 'deranged,': 42100, 'descent.': 42101, 'deschanel': 42102, 'described.': 42103, 'descriptive': 42104, 'desecration': 42105, 'desert.<br': 42106, 'deserving.': 42107, 'design.<br': 42108, 'desk,': 42109, 'despairing': 42110, 'despicable,': 42111, 'dessert': 42112, 'desserts.': 42113, 'destroyer': 42114, 'detach': 42115, 'detection': 42116, 'detectives,': 42117, 'deteriorate': 42118, 'deteriorates': 42119, 'determination,': 42120, 'determination.': 42121, 'determined,': 42122, 'determined.': 42123, 'detest': 42124, 'developed.<br': 42125, 'developers': 42126, 'developments,': 42127, 'develops.': 42128, 'devices.': 42129, 'devolve': 42130, 'devos)': 42131, 'devotees': 42132, 'devours': 42133, 'dexter,': 42134, 'dialectic': 42135, 'dialogue?': 42136, 'diametrically': 42137, 'diamond.': 42138, 'diaries': 42139, 'diary,': 42140, 'diatribes': 42141, 'dickinson,': 42142, 'did!<br': 42143, "did't": 42144, "didn't!": 42145, "didn't)": 42146, "didn't).": 42147, 'die."': 42148, 'died!': 42149, 'differed': 42150, 'difference?': 42151, 'differences.<br': 42152, 'differentiated': 42153, 'differently.<br': 42154, 'digest,': 42155, 'digest.': 42156, 'digestible': 42157, 'digi': 42158, 'digress...': 42159, 'diligent': 42160, "dillon's": 42161, 'diluted.': 42162, 'diluting': 42163, 'dime.': 42164, 'dimensions,': 42165, 'dinosaur.': 42166, 'dippy': 42167, 'dir.': 42168, 'directed.<br': 42169, 'direction!': 42170, 'direction:': 42171, 'direction?': 42172, 'dirtier': 42173, 'disability.': 42174, 'disabled,': 42175, 'disappearing,': 42176, 'disappointingly,': 42177, 'disarm': 42178, 'disc.': 42179, 'discharged': 42180, 'disciple': 42181, 'disciples': 42182, 'disconnect': 42183, 'discrepancies': 42184, 'discrepancy': 42185, 'discussed.': 42186, 'diseases,': 42187, 'disgrace,': 42188, 'disheartening': 42189, 'dished': 42190, 'dishonor': 42191, 'disillusion': 42192, 'dismantling': 42193, 'dismissing': 42194, 'disney"': 42195, 'disobey': 42196, 'dispatching': 42197, 'dispersed': 42198, 'displayed.': 42199, 'disqualified': 42200, 'disregarding': 42201, 'disrobe': 42202, 'disruptive': 42203, 'disrupts': 42204, 'dissection': 42205, 'dissuade': 42206, 'distaff': 42207, 'distanced': 42208, 'distort': 42209, 'distorting': 42210, 'distributor.': 42211, 'district,': 42212, 'dithering': 42213, 'divas': 42214, 'diverges': 42215, 'diverts': 42216, 'dividing': 42217, 'divorces': 42218, 'django': 42219, 'do!"': 42220, 'do-gooder': 42221, 'do-yeon': 42222, 'doc.': 42223, 'docked': 42224, 'doctor)': 42225, 'documentary-style': 42226, 'dodged': 42227, 'dodges': 42228, 'does!': 42229, 'does),': 42230, 'doesn´t': 42231, 'dog.<br': 42232, 'dog?': 42233, 'doggedly': 42234, 'dogmatic': 42235, 'doings': 42236, "domergue's": 42237, 'domination.': 42238, 'dominic,': 42239, 'dominion': 42240, 'domino,': 42241, 'domino.<br': 42242, 'don,': 42243, 'donaggio': 42244, 'donates': 42245, 'donation': 42246, 'done:': 42247, 'done;': 42248, 'donnelly': 42249, 'donor': 42250, 'doo.': 42251, 'doppelganger,': 42252, 'dorff,': 42253, 'dormael': 42254, 'double-bill': 42255, 'double-edged': 42256, 'double-feature': 42257, 'double.': 42258, "douglas's": 42259, 'douglass': 42260, 'doused': 42261, 'dovetails': 42262, "down'": 42263, 'down-on-his-luck': 42264, 'down-right': 42265, 'down-to-earth,': 42266, 'downer.': 42267, 'downgrade': 42268, 'downhill,': 42269, 'downplayed': 42270, 'downsides': 42271, 'dowry': 42272, 'drags,': 42273, 'drama;': 42274, 'dramatically,': 42275, 'dramatisation': 42276, 'dramaturgy': 42277, 'dramedy': 42278, 'draped': 42279, 'dratch': 42280, 'drawing,': 42281, 'dreading': 42282, 'drearily': 42283, 'dreck.<br': 42284, "dressler's": 42285, 'dressler,': 42286, 'drifter,': 42287, 'drills': 42288, 'drippy': 42289, 'drips': 42290, 'driveway': 42291, 'droids': 42292, 'dropped,': 42293, 'droppingly': 42294, 'droves': 42295, 'drug-addicted': 42296, 'drug-dealing': 42297, 'drums.': 42298, "duchovny's": 42299, 'duck"': 42300, 'dud,': 42301, "dude's": 42302, 'dullard': 42303, 'dumb!': 42304, 'dumbed-down': 42305, 'dumbrille': 42306, 'dumbs': 42307, 'dunes': 42308, 'dunno,': 42309, 'dupe': 42310, 'duplicated': 42311, 'duquenne': 42312, 'durante,': 42313, 'durning': 42314, 'dusenberry': 42315, 'dutta': 42316, 'dvd:': 42317, 'dvds,': 42318, 'dw': 42319, 'dwarfed': 42320, 'dwellers': 42321, 'dwivedi': 42322, 'dying.<br': 42323, "dyke's": 42324, 'dyke,': 42325, 'dynamics.': 42326, 'e-mail.': 42327, 'eagerness': 42328, 'eagle,': 42329, 'earle': 42330, 'ears.<br': 42331, 'earthlings': 42332, 'easily"': 42333, 'easily.<br': 42334, 'eastman': 42335, 'eater,': 42336, 'ebb': 42337, 'ebert,': 42338, 'ec': 42339, 'eccentric.': 42340, 'eccentricity': 42341, 'echelons': 42342, 'economically': 42343, 'edge-of-the-seat': 42344, 'edge-of-your-seat': 42345, 'edited.<br': 42346, 'edition.': 42347, "edmund's": 42348, 'educational,': 42349, 'edwards.': 42350, 'edwige': 42351, 'eerie.': 42352, 'eeriness': 42353, 'effect"': 42354, 'effecting': 42355, 'effervescent': 42356, 'efficient,': 42357, 'effortlessly.': 42358, 'efx': 42359, 'eg': 42360, 'egged': 42361, 'eggs,': 42362, 'ego.': 42363, 'egypt,': 42364, 'egypt.': 42365, 'eh': 42366, 'eh.': 42367, 'eight,': 42368, 'eisenhower': 42369, 'eisenstein': 42370, 'eisner': 42371, 'elaborately': 42372, 'elam': 42373, 'elbow': 42374, 'elderly,': 42375, 'electrified': 42376, 'electrocuted.': 42377, 'element.<br': 42378, 'elevating': 42379, 'elevator.': 42380, 'elias': 42381, 'eliciting': 42382, 'eliminated.': 42383, 'elites': 42384, 'elixir': 42385, 'ellington': 42386, 'elliott)': 42387, 'eloquence': 42388, 'elsa,': 42389, 'elsewhere.<br': 42390, 'elude': 42391, 'emancipation': 42392, 'emasculated': 42393, 'embarking': 42394, 'embarrassed,': 42395, 'embellished': 42396, 'embellishments': 42397, 'emerald': 42398, 'emerge.': 42399, 'emerges,': 42400, 'emerges.': 42401, 'emotions:': 42402, 'emphatically': 42403, "empire's": 42404, 'employee,': 42405, 'employer,': 42406, 'empress': 42407, 'emptiness.': 42408, 'emran': 42409, 'enchant': 42410, 'enchantment': 42411, 'encompass': 42412, 'encrypted': 42413, 'encyclopedia': 42414, 'ended"': 42415, 'ending)': 42416, 'ending....': 42417, 'ends"': 42418, 'endured.': 42419, 'energy.<br': 42420, 'enforce': 42421, 'enforcer"': 42422, 'engagingly': 42423, 'engine.': 42424, 'england?': 42425, 'english).': 42426, 'engrossing.': 42427, 'engulfs': 42428, 'enhanced.': 42429, 'enjoy...': 42430, 'enlightening,': 42431, 'enlightenment,': 42432, 'enough;': 42433, 'enrage': 42434, 'enraptured': 42435, 'enriched': 42436, 'enriching': 42437, 'ensconced': 42438, 'ensemble,': 42439, 'ensue.<br': 42440, 'entertainment:': 42441, 'enthralling.': 42442, 'enthused': 42443, 'entity,': 42444, 'envious': 42445, 'environmentalist': 42446, 'environmentally': 42447, 'environments.': 42448, 'envy,': 42449, 'epically': 42450, 'epics.': 42451, 'epidemic.': 42452, 'episode).': 42453, 'episode?': 42454, 'episodes).': 42455, 'episodes...': 42456, 'epos': 42457, 'eppes': 42458, 'epps,': 42459, 'equal,': 42460, 'equaled': 42461, 'equates': 42462, 'eraserhead': 42463, 'erendira': 42464, 'erm,': 42465, 'eroticism,': 42466, 'erroneously': 42467, 'error,': 42468, 'errors.<br': 42469, 'escape?': 42470, 'escapee': 42471, 'escaping.': 42472, 'especially)': 42473, 'especially),': 42474, 'essence.': 42475, 'essex': 42476, 'estimated': 42477, 'eugene,': 42478, 'eulogy': 42479, "euripides'": 42480, 'euro-trash': 42481, 'europe)': 42482, "eustache's": 42483, 'euthanasia': 42484, 'eva,': 42485, 'evangelist': 42486, 'evans,': 42487, "evelyn's": 42488, 'ever!<br': 42489, 'ever"': 42490, 'ever),': 42491, 'ever...': 42492, 'everybody.<br': 42493, 'everyone!': 42494, 'everyones': 42495, 'everything:': 42496, 'everything;': 42497, 'evinced': 42498, 'ewoks,': 42499, 'ex-army': 42500, 'ex-con,': 42501, 'ex-lover': 42502, 'exaggeration,': 42503, 'exaggeration.': 42504, 'examined.': 42505, 'exasperating': 42506, 'excited.<br': 42507, 'excrement,': 42508, 'exhaust': 42509, 'exhausted,': 42510, 'exhausting.': 42511, 'exhibit.': 42512, 'exist?': 42513, 'existent.': 42514, 'existentially': 42515, 'expectable': 42516, 'expected)': 42517, 'experiment"': 42518, 'experimental,': 42519, 'experimented': 42520, 'expertise.': 42521, 'explanation.<br': 42522, 'explanatory': 42523, 'exploitative.': 42524, 'exploited,': 42525, 'explosions.<br': 42526, 'expository': 42527, 'expressed,': 42528, 'extension,': 42529, 'extermination': 42530, 'extinguisher': 42531, 'extortion': 42532, 'extremes.': 42533, 'extremists': 42534, 'eye)': 42535, 'eye;': 42536, 'eyeballs.': 42537, 'eyelids': 42538, "eyes'": 42539, 'eyewitness': 42540, 'f.r.a.t.': 42541, 'f/x,': 42542, 'fabio': 42543, 'fables': 42544, 'fabric,': 42545, 'fabricated.': 42546, 'factories': 42547, 'facts.<br': 42548, 'factual,': 42549, 'faerie': 42550, 'fahey,': 42551, 'fairytale,': 42552, 'falco,': 42553, 'falk)': 42554, 'falken': 42555, 'fallwell,': 42556, 'family".': 42557, 'family...': 42558, 'fanfare': 42559, 'fangs': 42560, "fans'": 42561, 'fans;': 42562, 'far!': 42563, 'farewell.': 42564, 'farrel': 42565, 'fascist,': 42566, 'fashions.': 42567, 'fast-moving,': 42568, 'fast-paced.': 42569, 'faster.': 42570, 'fastway': 42571, 'father;': 42572, 'fatuous': 42573, 'faucet': 42574, 'faulted': 42575, 'faults.<br': 42576, 'faust': 42577, 'favorites:': 42578, 'favors.': 42579, 'favour.': 42580, 'favourable': 42581, 'favourite.': 42582, 'fdr': 42583, 'feathers': 42584, 'feces': 42585, 'feedback': 42586, 'feel-good,': 42587, 'feelings...': 42588, 'feet.<br': 42589, 'feinstone.': 42590, 'fells': 42591, 'felt.<br': 42592, 'fem': 42593, 'fending': 42594, 'fenech': 42595, 'fenton,': 42596, 'feore': 42597, 'ferguson': 42598, 'ferland': 42599, 'fernandez': 42600, 'ferrel': 42601, "ferrell's": 42602, 'ferrot': 42603, 'fertility': 42604, 'fest.<br': 42605, 'festive': 42606, 'festivities': 42607, 'fetid': 42608, 'fffc': 42609, 'fiancée.': 42610, 'fiction?': 42611, 'fictionalization': 42612, "fido's": 42613, "field's": 42614, 'fiennes,': 42615, 'fight"': 42616, 'figurative': 42617, 'filipinos': 42618, 'film!!!!': 42619, 'film--it': 42620, 'film-goer': 42621, 'film-goers': 42622, 'film-going': 42623, 'film-makers,': 42624, 'film-making!': 42625, 'film-school': 42626, 'film?"': 42627, 'filming)': 42628, 'filmmaker.<br': 42629, 'finances': 42630, 'finder': 42631, 'finest.<br': 42632, 'finished.<br': 42633, 'fire!': 42634, 'fireplace.': 42635, 'fireworks.': 42636, 'firm.': 42637, 'first),': 42638, 'first).': 42639, 'first-hand': 42640, 'fist,': 42641, 'fistful': 42642, 'fitch': 42643, 'fits.': 42644, 'five-minute': 42645, 'fizzled': 42646, 'fizzles': 42647, 'flagging': 42648, 'flair,': 42649, 'flamboyantly': 42650, 'flamed': 42651, 'flames.': 42652, 'flanders': 42653, 'flannery': 42654, 'flap': 42655, 'flash-back': 42656, 'flash-backs': 42657, 'flashpoint': 42658, 'flatmate': 42659, 'flats': 42660, 'flavor.': 42661, 'fledged': 42662, 'flex': 42663, 'flexibility': 42664, 'flick).': 42665, 'flick?': 42666, 'flighty': 42667, 'flimsiest': 42668, 'flimsy,': 42669, 'floated': 42670, 'floors,': 42671, 'floriane,': 42672, 'flounders': 42673, 'flowers.': 42674, "floyd's": 42675, 'fluffy,': 42676, 'fluid,': 42677, 'flushes': 42678, 'flustered': 42679, 'flute,': 42680, 'fluttering': 42681, 'flyer': 42682, 'fodder.': 42683, 'foetus': 42684, 'foiled': 42685, 'foils': 42686, 'foisted': 42687, 'fold.': 42688, "foley's": 42689, 'folks!': 42690, 'follow-up,': 42691, 'follow-up.': 42692, 'followers.': 42693, 'fondle': 42694, 'fondling': 42695, 'font': 42696, 'fontaine.': 42697, 'foolish,': 42698, 'footages': 42699, 'footsteps,': 42700, 'footsteps.': 42701, 'force"': 42702, 'forced.<br': 42703, 'forces.<br': 42704, 'foregoing': 42705, 'foregone': 42706, 'foreground,': 42707, 'foreshadowed': 42708, 'foreshadows': 42709, 'foresight': 42710, 'forest"': 42711, 'foretelling': 42712, 'forgivable,': 42713, 'forman': 42714, 'format.<br': 42715, 'formula:': 42716, 'forte.': 42717, 'fortitude': 42718, 'forum.': 42719, 'forums': 42720, 'forums,': 42721, 'foster)': 42722, 'four)<br': 42723, 'fox.<br': 42724, "franchise's": 42725, "francis'": 42726, 'francis.': 42727, 'francisca': 42728, 'franco.': 42729, 'franklin,': 42730, 'françoise': 42731, 'fraternal': 42732, 'freakishly': 42733, 'freed,': 42734, 'freedoms': 42735, 'freeman)': 42736, 'freeze,': 42737, 'freeze-frame': 42738, 'frequently.': 42739, 'frida': 42740, 'friday"': 42741, 'fridge.': 42742, 'friend?': 42743, 'friendly.': 42744, 'friendship.<br': 42745, 'frightening!': 42746, 'frightfully': 42747, 'frock': 42748, 'frog,': 42749, 'from!': 42750, 'front.<br': 42751, 'frontier,': 42752, 'fronts,': 42753, 'frost.': 42754, 'frowned': 42755, 'fruit,': 42756, 'frye.': 42757, 'fu.': 42758, 'fulci.': 42759, 'fulfilled.': 42760, 'full-blooded': 42761, 'fullest.': 42762, 'fumble': 42763, 'fuming': 42764, 'functional,': 42765, 'fundamentalists': 42766, 'funerals,': 42767, 'funnest': 42768, 'funnier!': 42769, 'funny!!': 42770, 'funny),': 42771, 'funny).<br': 42772, 'furious.': 42773, 'furthering': 42774, 'fury"': 42775, 'fuses': 42776, 'fuzzy,': 42777, 'g,': 42778, "gable's": 42779, 'gable,': 42780, "gabriel's": 42781, 'gadgets,': 42782, 'gael': 42783, 'gainax': 42784, 'galaxy.': 42785, 'gallery,': 42786, 'gallery.': 42787, 'gallico': 42788, 'gallon': 42789, "game'": 42790, 'gamely': 42791, 'gameplay.': 42792, 'garfield,': 42793, 'garner,': 42794, 'garnering': 42795, 'garth': 42796, 'gate"': 42797, 'gato"': 42798, 'gazarra': 42799, 'geeks.': 42800, 'gems.': 42801, 'generations,': 42802, 'geniuses,': 42803, 'gens': 42804, 'gentile': 42805, 'geometric': 42806, 'geometrical': 42807, 'georges,': 42808, 'german.': 42809, 'gert': 42810, 'get-go': 42811, 'get-go,': 42812, "ghost's": 42813, 'ghulam': 42814, 'gianfranco': 42815, 'giants.': 42816, 'giardello': 42817, 'gielgud,': 42818, 'giggle.': 42819, 'giggled': 42820, 'gilberte': 42821, 'gilchrist': 42822, 'gilles': 42823, 'gilson': 42824, 'gin': 42825, "gina's": 42826, 'gina,': 42827, "ginger's": 42828, 'girardot': 42829, 'girl),': 42830, 'girl-next-door': 42831, 'girl."': 42832, 'girlfriends.': 42833, 'girls",': 42834, 'giuseppe': 42835, 'give.': 42836, 'glamour,': 42837, 'glance.': 42838, 'glean': 42839, 'glories': 42840, 'glory"': 42841, 'glosses': 42842, 'glossy,': 42843, 'glove,': 42844, 'glut': 42845, 'gnarly': 42846, 'go,"': 42847, "god'": 42848, 'godfather.': 42849, 'godless': 42850, 'goebbels,': 42851, 'gold"': 42852, "goldberg's": 42853, 'goldeneye': 42854, 'gonzales': 42855, 'good-': 42856, 'good--but': 42857, 'good.i': 42858, 'goodrich': 42859, 'gordon-levitt': 42860, 'gore!': 42861, "gore's": 42862, 'gorier': 42863, 'goriest': 42864, 'gorillas': 42865, 'gossip,': 42866, 'gossiping': 42867, 'got.<br': 42868, 'gothic,': 42869, 'gown.': 42870, 'grade-z': 42871, 'graded': 42872, 'grades': 42873, 'grades.': 42874, 'graduating': 42875, 'graduation,': 42876, 'grand.': 42877, 'grandeur.': 42878, "grandma's": 42879, "grandpa's": 42880, "granger's": 42881, 'grape': 42882, 'grappling': 42883, 'grasp,': 42884, 'gravel': 42885, 'gravely': 42886, 'graveyard,': 42887, 'gravy.': 42888, "gray's": 42889, 'grayson)': 42890, "green's": 42891, 'greenstreet': 42892, 'greenwood,': 42893, 'grey"': 42894, 'grievances': 42895, 'grieves': 42896, 'griffith,': 42897, 'griffith.': 42898, 'grim"': 42899, 'grimaces': 42900, 'grinch"': 42901, 'groan.': 42902, 'groaning': 42903, 'groceries': 42904, "grot'": 42905, 'grouch': 42906, 'grouchy': 42907, 'grounded,': 42908, 'grown-ups.': 42909, 'grudge.': 42910, 'grunting': 42911, 'guards.': 42912, 'guesses': 42913, 'guevara,': 42914, 'guilty,': 42915, "guinness'": 42916, 'guitar.': 42917, 'guitars': 42918, 'gulp': 42919, 'gump,': 42920, 'gun.<br': 42921, 'gunn': 42922, 'gunnar': 42923, 'gunslingers': 42924, 'guru,': 42925, 'gustav': 42926, 'gusto,': 42927, 'gyllenhaal,': 42928, 'gymnastics': 42929, 'gypo,': 42930, 'gyrating': 42931, 'habitual': 42932, 'hackers': 42933, "hackman's": 42934, 'hackneyed.': 42935, 'had:': 42936, 'hagan': 42937, 'hagen,': 42938, 'haig': 42939, 'hair!': 42940, 'hairdo.': 42941, 'hak': 42942, 'half-an-hour': 42943, 'half-truths': 42944, 'half-wit': 42945, 'hallen': 42946, 'hallorann': 42947, 'halloway': 42948, 'halloween.<br': 42949, 'hallucinates': 42950, 'hallucinating': 42951, 'hallucination,': 42952, 'hallucinogenic': 42953, 'hallway,': 42954, 'halo': 42955, 'hamburger': 42956, 'hamilton)': 42957, 'hammerstein': 42958, 'hamptons': 42959, 'hamstrung': 42960, 'handbook': 42961, 'handguns': 42962, 'handicapped.': 42963, 'handle,': 42964, 'handy.': 42965, 'hanger': 42966, 'hanks)': 42967, 'happened:': 42968, 'happened?"': 42969, 'happens:': 42970, 'happily.': 42971, 'harbinger': 42972, 'harbor.': 42973, 'harbour': 42974, 'hardened,': 42975, 'harding': 42976, 'harness': 42977, 'harrison,': 42978, "harry'": 42979, 'hart.': 42980, 'hartman,': 42981, 'hash': 42982, 'hat.<br': 42983, 'hatchet,': 42984, 'hateful,': 42985, 'hateful.': 42986, 'hater': 42987, 'haunting"': 42988, "hawke's": 42989, "hawks'": 42990, 'hawn,': 42991, 'hay,': 42992, 'hazing': 42993, 'hazing"': 42994, "head's": 42995, 'head:': 42996, 'head?': 42997, 'headache,': 42998, 'headache-inducing': 42999, 'headlined': 43000, 'healing.': 43001, 'heap.': 43002, 'hearkens': 43003, 'heartbeat': 43004, 'heathcliff': 43005, 'heave': 43006, 'heaven.<br': 43007, 'heavy-duty': 43008, 'heavy.': 43009, 'heavyweights': 43010, 'hebrews': 43011, 'hedge': 43012, 'hedonistic': 43013, "heflin's": 43014, 'heflin,': 43015, 'hehe': 43016, 'heidi': 43017, 'heigl': 43018, 'heir,': 43019, 'helge': 43020, 'helgeland': 43021, 'hell",': 43022, 'hell-bent': 43023, 'hell?"': 43024, 'hellman,': 43025, 'hello,': 43026, 'hello.': 43027, 'helm,': 43028, 'helmets': 43029, 'help?': 43030, 'helplessness,': 43031, 'henceforth': 43032, 'hennessy': 43033, "henson's": 43034, 'here!<br': 43035, 'here.)': 43036, 'here?"': 43037, 'heretical': 43038, 'herge': 43039, 'hergé': 43040, 'heritage.': 43041, "herman's": 43042, "hero'": 43043, 'heroin,': 43044, 'heroin.': 43045, 'herring.': 43046, 'herself)': 43047, 'herself...': 43048, 'herself?': 43049, 'hersholt': 43050, 'hesseman': 43051, 'heston.': 43052, 'heyday.': 43053, 'hi,': 43054, 'hiatus': 43055, 'hickock,': 43056, 'hidden,': 43057, 'hidden.': 43058, 'hiding.': 43059, 'high-brow': 43060, 'high-powered': 43061, 'high-priced': 43062, 'high.<br': 43063, "higher'": 43064, 'highland': 43065, 'highlands': 43066, 'highway.': 43067, 'hilarity,': 43068, 'him!<br': 43069, 'him/herself': 43070, 'hindus': 43071, 'hippies,': 43072, 'hirsute': 43073, 'hisaishi': 43074, 'hissing': 43075, 'hissy': 43076, 'history?': 43077, 'hitchhikes': 43078, 'hoary': 43079, 'hobo': 43080, 'hogan,': 43081, 'hokey,': 43082, 'hokum,': 43083, 'hold.': 43084, 'holds.': 43085, 'holland,': 43086, 'hollow.': 43087, 'hollywood)': 43088, "holm's": 43089, 'holm,': 43090, 'holographic': 43091, 'holt,': 43092, 'home).': 43093, 'home-made': 43094, 'homer.': 43095, 'homicide,': 43096, 'homo-erotic': 43097, 'homosexual.': 43098, 'hoodlums,': 43099, 'hooked,': 43100, 'hooker.': 43101, 'hooligan': 43102, 'hooligans.': 43103, 'hooray': 43104, 'hoot!': 43105, 'hoot,': 43106, 'hop,': 43107, 'hoped.': 43108, 'hoping,': 43109, 'hops': 43110, 'hornblower': 43111, 'horne': 43112, 'horner': 43113, 'horrified,': 43114, 'horror)': 43115, 'horror/comedy': 43116, 'horror/gore': 43117, 'horrors.': 43118, 'horse.<br': 43119, 'horseback,': 43120, 'hortense': 43121, 'hostage,': 43122, 'hostel,': 43123, 'hostel.': 43124, 'hotel?': 43125, 'hounded': 43126, 'hounds': 43127, 'hour)': 43128, 'house,"': 43129, 'house-': 43130, 'house;': 43131, 'housewife.': 43132, 'howard)': 43133, 'however...': 43134, 'howler': 43135, 'hp': 43136, 'hsiao-hsien': 43137, 'http://www.petitiononline.com/gh1215/petition.html': 43138, "hubby's": 43139, "hughes'": 43140, 'huh.': 43141, 'huh?<br': 43142, 'hula': 43143, "human's": 43144, 'humanizes': 43145, 'humanizing': 43146, 'hume': 43147, 'humor...': 43148, 'humor:': 43149, 'hunter)': 43150, 'hunter:': 43151, 'hunters.': 43152, "huppert's": 43153, 'hur': 43154, 'hurst': 43155, 'hurtling': 43156, 'hurts,': 43157, 'husband?': 43158, 'hutt': 43159, 'hyped,': 43160, 'hypothesis': 43161, 'hypothetical': 43162, 'hyuck': 43163, 'iberia': 43164, 'ice-cream': 43165, 'ideals.': 43166, 'ideas?': 43167, 'identify,': 43168, 'identities.': 43169, 'idiot.<br': 43170, 'idol.': 43171, 'idolize': 43172, 'ie.': 43173, 'if...': 43174, 'ifans': 43175, 'ignited': 43176, 'ignorantly': 43177, 'ignore.': 43178, 'igor,': 43179, 'ike': 43180, 'ill-at-ease': 43181, 'ill-conceived.': 43182, 'illiterate,': 43183, 'illusion.': 43184, "imamura's": 43185, 'imbecile': 43186, 'imbeciles': 43187, 'imelda': 43188, 'imho.': 43189, 'immature.': 43190, 'immediacy': 43191, 'immersive': 43192, 'immoral,': 43193, 'immortality,': 43194, 'immortality.': 43195, 'imperioli': 43196, 'impersonations': 43197, 'impervious': 43198, 'impetuous': 43199, 'implementation': 43200, 'implies,': 43201, 'implies.': 43202, 'important.<br': 43203, 'impostor': 43204, 'impregnated': 43205, 'impresario': 43206, 'imprinted': 43207, 'improvisational': 43208, 'improvised,': 43209, 'improvised.': 43210, 'in-': 43211, 'inaccessible': 43212, 'inappropriate,': 43213, 'inappropriate.': 43214, 'inauthentic': 43215, 'inbreed': 43216, 'inc."': 43217, 'incensed': 43218, 'incites': 43219, 'inciting': 43220, 'includes:': 43221, 'including:': 43222, 'incoming': 43223, 'inconsistent.': 43224, 'increased,': 43225, 'incredulous,': 43226, 'incurable': 43227, 'indeed!<br': 43228, 'indemnity"': 43229, 'independents': 43230, 'indifference,': 43231, 'individual.<br': 43232, 'individualism': 43233, 'indoors': 43234, 'inducing,': 43235, 'industry)': 43236, 'ineffective.': 43237, 'inequality': 43238, 'inexpressive': 43239, 'infallible': 43240, 'infamously': 43241, 'infancy': 43242, 'inference': 43243, 'infomercials': 43244, 'informer,': 43245, 'infuriating.': 43246, 'infuriatingly': 43247, 'infusing': 43248, 'ingratiating': 43249, 'injustice.': 43250, 'inmates.': 43251, 'innards': 43252, 'innocence.<br': 43253, 'innovation,': 43254, 'innovative.': 43255, 'inopportune': 43256, 'inordinately': 43257, 'inquiring': 43258, 'inquiry': 43259, 'insane?': 43260, 'insanity,': 43261, 'inscrutable': 43262, 'insecurities,': 43263, 'insinuating': 43264, 'insomniacs': 43265, 'inspire.': 43266, 'inspite': 43267, 'instability': 43268, 'installation': 43269, 'instances,': 43270, 'instantly,': 43271, 'instigated': 43272, 'instilled': 43273, 'instills': 43274, 'instincts,': 43275, 'institutionalised': 43276, 'instructional': 43277, 'instructor,': 43278, 'instruments,': 43279, 'insult,': 43280, 'insulted.': 43281, 'insults.': 43282, 'insured': 43283, 'insurgents': 43284, 'integrates': 43285, 'integrating': 43286, 'intellect,': 43287, 'intellectual.': 43288, 'intellectually,': 43289, 'intentional.': 43290, 'intentioned': 43291, 'interactions,': 43292, 'interactions.': 43293, 'interfered': 43294, 'interject': 43295, 'intern': 43296, 'interns': 43297, 'interpretations,': 43298, 'interrogate': 43299, 'interruptions,': 43300, 'interstate': 43301, 'intervals.': 43302, 'intolerant': 43303, 'intricate,': 43304, 'introspective,': 43305, 'intrusions': 43306, 'intrusive,': 43307, 'invades': 43308, 'invasions': 43309, 'invented,': 43310, 'invented.': 43311, 'invincible"': 43312, 'invoked': 43313, 'involuntary': 43314, 'involved?': 43315, 'involvement,': 43316, 'involving,': 43317, 'iphigenia,': 43318, 'iq,': 43319, 'irak': 43320, "iran's": 43321, 'irene,': 43322, 'irked': 43323, 'irks': 43324, 'irons,': 43325, 'irrational,': 43326, 'irrelevant.<br': 43327, 'irreplaceable': 43328, 'irs.': 43329, 'irwin,': 43330, 'is!!': 43331, 'is).<br': 43332, 'is."': 43333, 'is....': 43334, 'ishibashi': 43335, 'ishtar': 43336, 'island")': 43337, 'island)': 43338, 'island.<br': 43339, "it'.": 43340, 'it.)<br': 43341, 'it?),': 43342, 'italian-americans': 43343, "italy's": 43344, 'itself;': 43345, 'ittenbach': 43346, "iturbi's": 43347, 'iturbi,': 43348, 'i´m': 43349, 'j,': 43350, 'j.p.': 43351, 'jacksons': 43352, 'jafri': 43353, 'jake.': 43354, 'jam.': 43355, 'jameson,': 43356, 'jane"': 43357, 'janitor,': 43358, 'japs': 43359, 'jarada': 43360, 'jarringly': 43361, "jason's": 43362, 'javier': 43363, 'jaws.': 43364, 'jennie': 43365, 'jerusalem': 43366, "jesus's": 43367, 'jethro': 43368, 'jew,': 43369, 'jiang': 43370, 'jin': 43371, 'jingle': 43372, 'jingoistic': 43373, 'jnr': 43374, 'joanne': 43375, 'job).': 43376, 'joel,': 43377, "johnsons'": 43378, 'jokes?': 43379, 'jokey': 43380, 'jolson': 43381, 'jonas': 43382, "josh's": 43383, 'journey"': 43384, "journey'": 43385, "joyce's": 43386, 'judd,': 43387, 'judges.': 43388, 'juliet,': 43389, 'jumper': 43390, 'jumping,': 43391, 'junked': 43392, 'junkermann': 43393, 'jurgen': 43394, 'justifiable': 43395, 'juxtapose': 43396, 'kabal': 43397, 'kafka': 43398, 'kaley': 43399, 'kalifornia.': 43400, 'karishma': 43401, 'karloff)': 43402, 'karzis': 43403, 'kasturba': 43404, 'kate.': 43405, 'katey': 43406, 'katharina': 43407, 'kathmandu': 43408, 'katja': 43409, 'kato': 43410, "katsu's": 43411, "kattan's": 43412, 'katy': 43413, 'katya': 43414, 'katzir': 43415, 'kazakh': 43416, 'kazuhiro': 43417, 'keifer': 43418, 'kenji': 43419, 'kerry,': 43420, 'keyboard,': 43421, 'keys,': 43422, 'keys.': 43423, 'kibbutz,': 43424, 'kick.': 43425, 'kicks.': 43426, "kid'": 43427, 'kid)': 43428, 'kid?': 43429, 'kiddies,': 43430, 'kidding!': 43431, 'kier': 43432, 'kieron': 43433, 'kiki,': 43434, 'kill!': 43435, "kill's": 43436, 'killers"': 43437, 'kilmer,': 43438, 'kimiko': 43439, 'kimmy': 43440, 'kindly,': 43441, 'kingdom,': 43442, 'kings,': 43443, 'kinnear),': 43444, 'kinski,': 43445, 'kirstie': 43446, 'kittens': 43447, 'kitty.': 43448, 'klaang': 43449, 'klan': 43450, 'klugman': 43451, 'knee-jerk': 43452, 'knees,': 43453, 'knees.': 43454, 'knight.': 43455, 'knightley.': 43456, 'knitting': 43457, 'knock-off.': 43458, 'knots': 43459, 'know),': 43460, 'knowledge.<br': 43461, 'knows.<br': 43462, 'koch': 43463, 'koen': 43464, 'koji': 43465, 'korda,': 43466, 'korea.': 43467, 'kosher': 43468, 'kosleck': 43469, 'kosugi': 43470, "kriemhild's": 43471, 'krimi': 43472, 'kruger': 43473, 'kruger,': 43474, 'krupa': 43475, 'kudisch': 43476, 'kunal': 43477, 'kundera': 43478, 'kurasowa': 43479, 'kurdish': 43480, 'kwon': 43481, 'kwouk': 43482, "l'engle's": 43483, 'labeling': 43484, 'laboratories': 43485, 'laboriously': 43486, 'laces': 43487, 'lackadaisical': 43488, 'lacks,': 43489, 'lad,': 43490, 'lad.': 43491, 'laine': 43492, 'lair,': 43493, 'lamas,': 43494, 'lambs"': 43495, 'laments': 43496, 'lampoon,': 43497, "lancaster's": 43498, 'land"': 43499, 'landau,': 43500, 'landfill': 43501, 'landlords': 43502, 'landon,': 43503, 'landowner': 43504, 'lands,': 43505, 'langella': 43506, 'language.<br': 43507, 'languorous': 43508, 'lanky,': 43509, 'lap,': 43510, 'large-scale': 43511, 'lasalle': 43512, 'lassick': 43513, "later'": 43514, 'later?': 43515, 'laugh...': 43516, 'laughing.<br': 43517, 'launched.': 43518, 'lavished': 43519, 'lawn,': 43520, 'lawsuits': 43521, 'layering': 43522, 'lazerov': 43523, 'laziness,': 43524, 'lb': 43525, 'lead)': 43526, 'leads;': 43527, 'leaked': 43528, 'lean,': 43529, 'leaped': 43530, 'least),': 43531, 'leather,': 43532, 'leaves.<br': 43533, 'lee-hom': 43534, 'legends:': 43535, 'legit': 43536, 'legolas': 43537, 'leia,': 43538, 'leibman': 43539, 'leif': 43540, 'leiji': 43541, 'lennon,': 43542, 'lennon.': 43543, 'lenz': 43544, 'leon.': 43545, 'leoni': 43546, "leonora's": 43547, 'leroy': 43548, 'lesbian,': 43549, 'lesbians.': 43550, 'lessen': 43551, 'lessens': 43552, 'lesson:': 43553, 'lethargic,': 43554, 'letourneau': 43555, 'letterman': 43556, 'level?': 43557, 'leverage': 43558, "levinson's": 43559, 'lewd': 43560, "lewton's": 43561, 'liar.': 43562, 'liberty,': 43563, 'liberty.': 43564, 'licks': 43565, 'liebman': 43566, 'life!!': 43567, 'life),': 43568, 'life-changing': 43569, 'life...<br': 43570, 'life.it': 43571, 'lifeboat': 43572, 'lifestyles.': 43573, 'light"': 43574, 'lightened': 43575, 'lightly.': 43576, 'liked.<br': 43577, 'limp,': 43578, 'line".': 43579, 'liners.': 43580, 'lion,': 43581, 'lion.': 43582, 'lips"': 43583, 'lisa,': 43584, 'lite.': 43585, 'literal,': 43586, 'literally.<br': 43587, 'literate,': 43588, 'littlefield': 43589, 'lives!': 43590, 'lives;': 43591, "livien's": 43592, 'lizard,': 43593, 'lizard.': 43594, 'lizards': 43595, 'load.': 43596, 'loaned': 43597, 'locale,': 43598, 'locating': 43599, "locke's": 43600, 'locked.': 43601, 'locker.': 43602, 'lockers': 43603, 'locust': 43604, 'locusts': 43605, 'lodger': 43606, "loesser's": 43607, 'loggia,': 43608, 'lol.<br': 43609, 'long)': 43610, 'long-awaited': 43611, 'long-dead': 43612, 'long-forgotten': 43613, 'long-standing': 43614, 'longer!': 43615, 'longing,': 43616, 'look-a-like': 43617, 'lookalike,': 43618, 'loooong': 43619, 'loos': 43620, 'lord"': 43621, 'lords.': 43622, 'lore.': 43623, "loretta's": 43624, 'loses,': 43625, 'lotr,': 43626, 'lotus': 43627, 'lou.': 43628, 'loud-mouthed': 43629, 'louise,': 43630, 'lounging': 43631, 'love-interest': 43632, 'love-sick': 43633, 'loved.<br': 43634, 'lovelier': 43635, 'lovell': 43636, 'lovelorn': 43637, 'lover.<br': 43638, "lovers'": 43639, 'lovers.<br': 43640, 'low-class': 43641, 'lows.': 43642, 'lta': 43643, 'lucian': 43644, 'luciana': 43645, 'lucy.': 43646, 'ludlum': 43647, 'lugia': 43648, 'lugosi)': 43649, 'lugubrious': 43650, "lukas's": 43651, 'lumbered': 43652, 'luminescent': 43653, 'lumley': 43654, 'lumps': 43655, 'lunatic,': 43656, 'lunatics': 43657, 'lurch': 43658, 'lurk': 43659, 'lushness': 43660, 'lustig': 43661, 'm&m': 43662, 'm.r.': 43663, 'macarthur,': 43664, 'macbeth.': 43665, 'macek': 43666, 'mache': 43667, 'machine-gun': 43668, 'machine?': 43669, 'machinery.': 43670, 'maclaine.': 43671, "maclean's": 43672, 'macmahon,': 43673, 'macy)': 43674, 'mad?': 43675, 'madcap': 43676, 'madchen': 43677, 'made...': 43678, 'made?"': 43679, 'madonna.': 43680, 'maelstrom': 43681, 'mafia.': 43682, 'magda': 43683, 'magdalene': 43684, 'magician"': 43685, 'magnate': 43686, 'maguire,': 43687, "maher's": 43688, 'mahoney,': 43689, 'mail"': 43690, 'mailman': 43691, 'mails': 43692, 'maison': 43693, 'majors.': 43694, 'make-believe': 43695, 'make-shift': 43696, 'makes.': 43697, 'male-dominated': 43698, 'malignant': 43699, 'malone.': 43700, "mama's": 43701, 'mambo': 43702, 'mammoth,': 43703, 'man).': 43704, 'man-hating': 43705, 'mandel': 43706, 'manfred': 43707, 'manga,': 43708, 'mange': 43709, 'manhandled': 43710, 'maniacs': 43711, 'manically': 43712, 'manifests': 43713, 'manipulations': 43714, 'manipulator': 43715, 'manners.': 43716, 'manos': 43717, 'manos:': 43718, "mansion's": 43719, 'mantle': 43720, 'marcella': 43721, 'marchand': 43722, 'margaret,': 43723, 'margaret.': 43724, 'marge': 43725, 'margin': 43726, 'maria.': 43727, 'mariah': 43728, 'mariana': 43729, 'marijuana,': 43730, 'marines.': 43731, "marjorie's": 43732, 'marketing.': 43733, 'marketplace': 43734, 'marketplace,': 43735, 'marks,': 43736, 'marriage)': 43737, 'marriages,': 43738, 'married.<br': 43739, "marshall's": 43740, 'marshall.': 43741, 'marthe': 43742, 'martial-arts': 43743, 'marty,': 43744, 'marvel,': 43745, 'marveled': 43746, 'masako': 43747, 'mask"': 43748, 'masochist,': 43749, 'mass,': 43750, 'massive,': 43751, 'mastrantonio': 43752, 'mastroianni.': 43753, 'mater': 43754, 'material;': 43755, 'materialize': 43756, 'materialized': 43757, 'math.': 43758, 'matheson,': 43759, 'mathis': 43760, 'maths': 43761, 'matt.': 43762, 'matter-of-fact': 43763, 'matures': 43764, 'mavericks': 43765, 'mawkish,': 43766, 'maybe...': 43767, 'mayoral': 43768, 'mcadams,': 43769, 'mcbeal': 43770, "mcgavin's": 43771, 'mcgrath': 43772, "mckee's": 43773, 'mckinney': 43774, 'mcleod': 43775, 'me!)': 43776, 'me!<br': 43777, 'me."<br': 43778, 'me...i': 43779, 'meadow': 43780, "meadows'": 43781, 'meadows.': 43782, 'mean-spirited,': 43783, 'mean:': 43784, 'meander': 43785, 'meant,': 43786, 'measure.<br': 43787, 'meatballs': 43788, 'mechanic.': 43789, 'mechanics,': 43790, 'media.<br': 43791, 'meditative': 43792, 'mediums': 43793, 'medusan': 43794, 'meerkats': 43795, 'meets.': 43796, "meg's": 43797, 'megha': 43798, 'meiji': 43799, 'melba': 43800, 'melds': 43801, 'melle': 43802, 'melodies,': 43803, 'melodramatics': 43804, 'melville': 43805, 'men).': 43806, 'men?': 43807, "mencia's": 43808, 'mentioned)': 43809, 'mentioned.<br': 43810, 'mentor.': 43811, 'menu,': 43812, 'merchandising': 43813, 'mercurial': 43814, "meredith's": 43815, 'merrill)': 43816, 'mesmerize': 43817, 'mess?': 43818, 'metaphorically': 43819, 'metaphors,': 43820, 'meter,': 43821, 'mettle': 43822, 'mexican,': 43823, 'meyers,': 43824, 'meysels': 43825, 'michelangelo': 43826, 'michelle,': 43827, 'microwave': 43828, 'middle-age': 43829, 'middle.<br': 43830, 'mifune': 43831, 'migrating': 43832, 'mike.': 43833, 'mikes': 43834, 'mila': 43835, 'mildly.': 43836, 'milestones': 43837, 'milieu.': 43838, 'militaristic': 43839, "milligan's": 43840, 'millionaire.': 43841, 'millions.': 43842, 'mills,': 43843, 'mimi': 43844, 'mind,"': 43845, 'mind-bogglingly': 43846, 'mind-control': 43847, 'mind;': 43848, 'minded.': 43849, 'mine!': 43850, 'mine)': 43851, 'miniatures': 43852, 'minimalism': 43853, 'minis': 43854, 'miniseries,': 43855, 'mink': 43856, 'minnesota': 43857, 'minogue': 43858, 'minorities.': 43859, 'minority.': 43860, 'minton': 43861, 'minuets': 43862, 'minute"': 43863, 'minutiae': 43864, 'mirror.<br': 43865, 'mirrors.': 43866, 'misanthropic': 43867, 'miscast;': 43868, 'misconceptions': 43869, 'mise': 43870, 'miser': 43871, 'misfortunes': 43872, 'misguided.': 43873, 'misjudged': 43874, 'misses,': 43875, 'missteps': 43876, 'mistake:': 43877, "mitchell's": 43878, 'mitchell)': 43879, 'miz': 43880, "mj's": 43881, 'mobility': 43882, 'modelled': 43883, 'modernist': 43884, 'modernization': 43885, 'module': 43886, 'modus': 43887, 'mohammed': 43888, 'mohandas': 43889, 'molded': 43890, 'moldy': 43891, 'molestation': 43892, "molina's": 43893, 'momentum,': 43894, 'momentum.': 43895, 'momma': 43896, 'momo': 43897, "monastery's": 43898, 'money)': 43899, 'monitored': 43900, "monkey's": 43901, 'monks,': 43902, 'monks.': 43903, 'monologues.': 43904, 'monotonous,': 43905, 'monson': 43906, 'monster.<br': 43907, 'monstrosity.': 43908, 'montand': 43909, 'montreal': 43910, 'moods,': 43911, 'moon".': 43912, 'moonlighting': 43913, 'moor': 43914, "morbius'": 43915, 'more."': 43916, 'more...': 43917, 'more?,': 43918, 'morgue.': 43919, 'moritz': 43920, 'mortals': 43921, 'mortgage': 43922, 'moslem': 43923, 'moss)': 43924, "mostel's": 43925, 'moth': 43926, 'mother!': 43927, 'mother).': 43928, 'mother/daughter': 43929, 'motivation?': 43930, 'motives.': 43931, 'mound': 43932, 'mouthful': 43933, 'mouths,': 43934, 'mouton': 43935, 'movie!!!!!': 43936, 'movie,i': 43937, 'movie,it': 43938, 'movie-makers': 43939, 'movie."<br': 43940, 'movie.)<br': 43941, 'movie.....': 43942, 'movie...it': 43943, 'mowbray': 43944, 'muccino': 43945, 'much...': 43946, 'mud.': 43947, 'muddy,': 43948, 'mule': 43949, 'multi-player': 43950, 'multi-talented': 43951, 'multifaceted': 43952, 'multinational': 43953, 'multiplexes': 43954, 'mummies': 43955, 'muni.': 43956, 'munkar': 43957, 'murders"': 43958, 'murphy)': 43959, 'muscles.': 43960, 'museums': 43961, 'mushroom': 43962, 'music!!': 43963, "music's": 43964, 'muska': 43965, 'mussolini': 43966, 'mustache.': 43967, 'mustang': 43968, 'mutation': 43969, 'mute,': 43970, 'mutters': 43971, 'my.': 43972, 'myron,': 43973, 'myrtle,': 43974, 'myself!': 43975, 'myself"': 43976, 'mystery?': 43977, 'mysticism,': 43978, 'n.y.': 43979, 'nab': 43980, 'nablus.': 43981, 'nabokov': 43982, 'nada': 43983, 'nah.': 43984, 'nail.': 43985, 'nailing': 43986, 'name!).': 43987, 'name"': 43988, 'namesake': 43989, 'nanavati': 43990, 'napalm"': 43991, 'napolean': 43992, 'naschy)': 43993, 'nasties': 43994, 'nastiest': 43995, 'natascha': 43996, "nathan's": 43997, 'nation"': 43998, 'nationalism': 43999, 'nations,': 44000, 'natives.': 44001, 'naughty,': 44002, 'nausea': 44003, 'navigating': 44004, 'nay': 44005, 'nears': 44006, 'nebulous': 44007, 'necessities': 44008, 'necklaces': 44009, 'negatives.': 44010, 'neighborhood.<br': 44011, 'nekron': 44012, 'neo-nazi': 44013, 'neo-nazis': 44014, 'neo-realism': 44015, 'neo-realistic': 44016, 'nerd.': 44017, 'nerve.': 44018, 'nest.': 44019, 'nestor': 44020, 'net,': 44021, 'networks.': 44022, 'neutrality': 44023, "newcombe's": 44024, 'newlywed': 44025, 'newport': 44026, 'next!': 44027, 'nicely.<br': 44028, "niece's": 44029, 'niemann': 44030, 'night".': 44031, 'night),': 44032, 'nightmarish,': 44033, 'nikolai': 44034, 'nikolaj': 44035, 'nimble': 44036, 'nineties,': 44037, 'ninja.': 44038, 'ninjas,': 44039, 'nitro': 44040, "nixon's": 44041, "noam's": 44042, 'nobility.': 44043, 'nobly': 44044, 'noirs.': 44045, "nolan's": 44046, 'noll,': 44047, 'nomad': 44048, 'nominating': 44049, 'nomination.<br': 44050, 'non-horror': 44051, 'normality': 44052, 'norris,': 44053, 'north"': 44054, 'norton,': 44055, 'noses.': 44056, 'nostalgia.': 44057, 'notable.': 44058, 'notably,': 44059, 'note.<br': 44060, 'noteworthy.': 44061, 'nothing"': 44062, 'nothing?': 44063, 'noticeable.': 44064, 'notoriety,': 44065, 'notte': 44066, 'nova': 44067, 'novak,': 44068, 'novels:': 44069, 'novices': 44070, "now'": 44071, 'now?"': 44072, 'nr.': 44073, 'nu': 44074, 'nuanced.': 44075, 'nuances,': 44076, 'nudges': 44077, 'nudity!': 44078, 'nudity.<br': 44079, 'nuggets': 44080, "nun's": 44081, 'nuns.': 44082, 'nunsploitation': 44083, "nurse's": 44084, 'nurturing': 44085, 'nutshell.': 44086, 'nutshell.<br': 44087, "o'connell": 44088, "o'neill's": 44089, "o'toole's": 44090, "o'toole,": 44091, 'o.k.,': 44092, 'oakland,': 44093, 'oav': 44094, 'obedient': 44095, 'obeying': 44096, 'obeys': 44097, 'obliges': 44098, 'obliterated': 44099, 'obscenity': 44100, 'obscura': 44101, 'obscurity,': 44102, 'obtains': 44103, 'obvious;': 44104, 'obviousness': 44105, 'occurs.<br': 44106, 'oceanic': 44107, 'octogenarian': 44108, 'oddity,': 44109, 'of!': 44110, 'off).': 44111, 'off-': 44112, 'off-camera': 44113, 'offenders.': 44114, 'offense,': 44115, 'offensive.<br': 44116, 'offerings.<br': 44117, "office'": 44118, 'officials,': 44119, 'offscreen': 44120, 'offspring.': 44121, 'oh...': 44122, 'oiled': 44123, 'ojibway': 44124, 'ok?': 44125, 'okay.<br': 44126, 'oklahoma,': 44127, 'old-style': 44128, 'old?': 44129, 'oldie': 44130, 'oldman': 44131, 'olivier.': 44132, 'olympics.': 44133, 'omaha': 44134, 'omen,': 44135, 'omissions': 44136, 'omitted.': 44137, 'omitting': 44138, 'omnibus': 44139, 'on-line': 44140, 'ona': 44141, 'once!': 44142, 'once;': 44143, 'once?': 44144, 'oncoming': 44145, 'ondi': 44146, 'one-eyed': 44147, 'one-minute': 44148, 'one-note.': 44149, 'one-off': 44150, 'one-star': 44151, 'one-trick': 44152, "ones'": 44153, 'ones;': 44154, 'oneself,': 44155, 'online,': 44156, 'only.<br': 44157, 'oodles': 44158, 'open-ended': 44159, 'open-minded,': 44160, 'operandi': 44161, 'operas,': 44162, 'operatives': 44163, 'operetta': 44164, 'opinion:': 44165, 'opinionated': 44166, 'oppressive,': 44167, 'ops': 44168, 'optimus': 44169, 'option,': 44170, 'option.<br': 44171, 'options.': 44172, 'oracle': 44173, 'orange-tinted': 44174, 'orangutan': 44175, 'orbit.': 44176, 'orbiting': 44177, 'orcas': 44178, 'orchestra,': 44179, 'orders.': 44180, 'organizing': 44181, 'orgasm': 44182, 'ori': 44183, 'orientated': 44184, 'original),': 44185, 'originality.<br': 44186, 'originate': 44187, 'ornery': 44188, 'osa': 44189, 'oskar': 44190, 'ossessione,': 44191, 'otaku': 44192, "othello's": 44193, 'out!!!': 44194, 'out!"': 44195, 'out),': 44196, 'out--': 44197, 'out-acted': 44198, 'out-do': 44199, 'out...<br': 44200, 'outcomes.': 44201, 'outcry': 44202, 'outgrown': 44203, 'outlandish,': 44204, 'outlaws.': 44205, 'output,': 44206, 'outrage.': 44207, 'outside.<br': 44208, 'outstanding.<br': 44209, 'outstay': 44210, 'outtake': 44211, 'ovation': 44212, 'over-': 44213, 'over-all': 44214, 'over-produced': 44215, 'over-simplified': 44216, 'overabundance': 44217, 'overblown.': 44218, 'overdoing': 44219, 'overdone.<br': 44220, 'overflowing': 44221, 'overlaid': 44222, 'overlook,': 44223, 'overlooks': 44224, 'overpower': 44225, 'overpowered': 44226, 'override': 44227, 'overseas.': 44228, 'oversee': 44229, 'oversight': 44230, 'overstay': 44231, 'overtaken': 44232, 'overtime': 44233, 'overtones.': 44234, 'own!': 44235, 'oxford': 44236, 'p.g.': 44237, 'pabst,': 44238, 'pacific,': 44239, 'pack.': 44240, 'paco': 44241, 'pad,': 44242, 'pain.<br': 44243, 'pakistanis': 44244, 'palatable.': 44245, 'palestine': 44246, 'palmer,': 44247, 'pals,': 44248, 'palsy.': 44249, 'paltrow.': 44250, 'pampered': 44251, 'pan,': 44252, 'pan-and-scan': 44253, 'panache.': 44254, 'panavision': 44255, 'panicking': 44256, 'panics': 44257, 'panthers': 44258, 'pants,': 44259, 'pappas,': 44260, 'paquin,': 44261, 'parachute': 44262, 'parade"': 44263, 'parade.': 44264, 'parallel,': 44265, 'parallels,': 44266, 'paraphrasing': 44267, 'parcel': 44268, 'parents"': 44269, 'parents;': 44270, 'park",': 44271, 'parrot,': 44272, 'parrots': 44273, 'participates': 44274, 'particle': 44275, 'partnered': 44276, 'parts)': 44277, 'party!': 44278, 'party"': 44279, 'party",': 44280, 'passes.': 44281, 'passing,': 44282, 'passion.<br': 44283, 'passions,': 44284, 'passworthy': 44285, 'past)': 44286, 'pat.': 44287, 'patent': 44288, 'path.<br': 44289, 'patil': 44290, 'patinkin,': 44291, 'patriot,': 44292, 'patriotism.': 44293, 'patriots': 44294, 'patrolling': 44295, 'patron,': 44296, 'paulin': 44297, 'paulo,': 44298, 'pause,': 44299, "pavarotti's": 44300, 'paws': 44301, "paxton's": 44302, 'paxton)': 44303, 'pay-off': 44304, 'paycheck,': 44305, 'payments.': 44306, 'pc.': 44307, 'peacefully': 44308, 'peaks,': 44309, 'pear': 44310, 'pearl,': 44311, 'pecked': 44312, 'pedantic': 44313, 'pedestrian,': 44314, 'peeking': 44315, 'peel': 44316, 'peking': 44317, 'pendleton,': 44318, 'penetrated': 44319, 'penis,': 44320, 'penis.': 44321, 'pens': 44322, 'pensive': 44323, 'peopled': 44324, 'peoples,': 44325, 'peoples.': 44326, 'pepper,': 44327, 'perfect!': 44328, 'perfection!': 44329, 'performance).': 44330, 'performances)': 44331, 'performances:': 44332, 'performances;': 44333, 'period),': 44334, 'perkins,': 44335, 'perla': 44336, 'permutations': 44337, 'perseverance': 44338, 'perseverance,': 44339, 'persistence': 44340, 'personnel,': 44341, 'peru.': 44342, 'pestilence': 44343, 'peterson)': 44344, "petiot's": 44345, 'petrifying': 44346, 'petto': 44347, 'pfeiffer,': 44348, 'pg-13.': 44349, 'phase.': 44350, 'phat': 44351, 'phelps,': 44352, 'philip,': 44353, 'phillipe': 44354, 'phillippe': 44355, 'phobia': 44356, 'phoenix.': 44357, 'phones.': 44358, 'photo,': 44359, 'photographs.': 44360, 'photos,': 44361, 'phrase.': 44362, 'phyllida': 44363, "pia's": 44364, 'pianists': 44365, 'picaresque': 44366, 'picnic,': 44367, 'picture;': 44368, "pictures'": 44369, 'pieuvres"': 44370, 'pig"': 44371, 'pig:': 44372, 'pigs,': 44373, 'pigs.': 44374, 'pile,': 44375, 'pillow.': 44376, 'pimping': 44377, 'pin.': 44378, 'pinched': 44379, 'pineapple': 44380, 'ping-pong': 44381, 'pinky': 44382, 'pinter': 44383, 'pioneered': 44384, 'pitchfork': 44385, 'pithy': 44386, 'pitiful,': 44387, 'pitt).': 44388, 'pity.<br': 44389, 'pizza,': 44390, 'pizza.': 44391, 'place)': 44392, 'plagiarism': 44393, 'plagiarism.': 44394, 'plague!': 44395, 'plane.<br': 44396, 'planet",': 44397, "planet'": 44398, 'planet)': 44399, 'planets.': 44400, 'planning,': 44401, 'plantation.': 44402, 'planting': 44403, 'plateau': 44404, "plato's": 44405, 'platonic': 44406, 'plaudits': 44407, 'play;': 44408, 'playback': 44409, "player's": 44410, 'players.<br': 44411, 'playfulness': 44412, 'playground': 44413, 'playmate': 44414, 'playstation': 44415, 'plaything': 44416, 'playwrights': 44417, 'pleasuring': 44418, 'plesiosaur': 44419, 'plot-holes': 44420, 'plotline.': 44421, 'plotted,': 44422, 'plumb': 44423, 'plummeted': 44424, 'plump,': 44425, 'plunged': 44426, 'plunging': 44427, 'plus.<br': 44428, 'pocasni': 44429, 'pod,': 44430, 'podge': 44431, 'poems': 44432, 'point),': 44433, 'points;': 44434, 'poise': 44435, 'poisoning': 44436, 'poisoning,': 44437, 'pole,': 44438, 'polemic': 44439, 'polemic,': 44440, 'policemen.': 44441, 'policy,': 44442, 'policy.': 44443, 'polished.': 44444, 'politicians.': 44445, 'pollution,': 44446, 'polygraph': 44447, 'pomp': 44448, 'pompous,': 44449, 'poodle,': 44450, 'pooja': 44451, 'poor)': 44452, 'poppins,': 44453, 'pornographic,': 44454, 'porter)': 44455, 'portrait.': 44456, 'pos': 44457, 'poses,': 44458, 'posey,': 44459, 'possess.': 44460, 'possessed,': 44461, 'possession.': 44462, 'possible!': 44463, 'post-production,': 44464, 'posted,': 44465, 'posted.': 44466, 'posterior': 44467, 'postures': 44468, 'potente': 44469, 'potential!': 44470, "potter's": 44471, 'potter,': 44472, 'potter.': 44473, 'pounds.': 44474, 'poverty-stricken': 44475, 'power."': 44476, 'powerhouse.': 44477, 'powers.<br': 44478, 'powers?': 44479, 'practices,': 44480, 'practise': 44481, 'praised.': 44482, 'praises,': 44483, 'prance': 44484, 'prank,': 44485, 'pranks,': 44486, 'prankster': 44487, 'pre-adolescent': 44488, 'pre-screening': 44489, 'precedent': 44490, 'precise.': 44491, 'preclude': 44492, 'predicament.': 44493, 'prefer.': 44494, 'prejudice"': 44495, 'prejudices,': 44496, 'premeditated': 44497, 'premiere,': 44498, 'premiered,': 44499, 'premiered.': 44500, 'preposterously': 44501, 'presences': 44502, 'press.': 44503, 'pressuring': 44504, "preston's": 44505, 'pretensions,': 44506, 'pretentiously': 44507, 'prettier,': 44508, 'prettiest': 44509, 'prevail.': 44510, 'previous,': 44511, 'previous.': 44512, 'prey,': 44513, 'price)': 44514, 'priestley': 44515, 'primitive,': 44516, 'primo': 44517, 'primordial': 44518, 'principal.': 44519, 'prison;': 44520, 'privates': 44521, 'pro,': 44522, 'probes': 44523, 'procedural': 44524, 'prod': 44525, 'prods': 44526, 'producers)': 44527, 'producing,': 44528, 'product.<br': 44529, 'production),': 44530, 'profess': 44531, 'professionalism,': 44532, 'profit,': 44533, 'profit.': 44534, 'program.<br': 44535, 'programme.': 44536, 'programming,': 44537, 'prohibition,': 44538, 'projects.<br': 44539, 'prolly': 44540, 'prolong': 44541, 'prom,': 44542, 'promiscuity': 44543, 'promiscuity,': 44544, 'promised.': 44545, 'pronunciation': 44546, 'prop.': 44547, 'propelling': 44548, 'properly.<br': 44549, 'prophecy"': 44550, 'proponent': 44551, 'proposing': 44552, 'prosaic,': 44553, 'prosper': 44554, 'prostitute.<br': 44555, 'prostitution.': 44556, 'protest,': 44557, 'protestants': 44558, 'protesters': 44559, 'proud,': 44560, 'proust': 44561, 'proverb': 44562, 'proves.': 44563, 'provided.': 44564, 'provocation': 44565, 'provocative.': 44566, 'prurient': 44567, 'psychiatrist.': 44568, 'psychical': 44569, 'psychically': 44570, 'psychoanalytic': 44571, 'psychopath,': 44572, 'psychosis.': 44573, 'pt': 44574, 'pu': 44575, 'puberty,': 44576, 'pubic': 44577, 'publicity,': 44578, 'publicized': 44579, 'puddle.': 44580, 'pudgy': 44581, 'puertorican': 44582, 'puffing': 44583, 'pulley': 44584, 'pulp.': 44585, 'pumbaa,': 44586, 'pun).': 44587, 'punch-drunk': 44588, 'pungent': 44589, 'puns,': 44590, 'puppet.': 44591, 'puppets,': 44592, 'purist': 44593, 'purist,': 44594, 'purported': 44595, 'pursuit.': 44596, 'purveyor': 44597, 'pushy': 44598, 'putnam': 44599, 'pym,': 44600, 'python,': 44601, 'q.': 44602, 'quadruple': 44603, 'quaien': 44604, 'qualifications': 44605, 'quandary': 44606, 'quarters.': 44607, 'quartet,': 44608, 'quartier': 44609, 'queen.<br': 44610, 'questions:': 44611, 'quintessentially': 44612, 'quintet': 44613, 'quirky.': 44614, 'r.d.': 44615, 'rabies': 44616, 'rabies,': 44617, 'raccoon': 44618, 'raccoons': 44619, 'racer': 44620, 'races.': 44621, 'racing,': 44622, 'racked': 44623, 'racking': 44624, 'radiating': 44625, 'radiation.': 44626, 'radio"': 44627, 'rafting': 44628, 'railly,': 44629, 'raj.': 44630, 'rallying': 44631, 'ralphie': 44632, 'rambo:': 44633, 'ramirez': 44634, 'ramis': 44635, 'ramu': 44636, 'ramón': 44637, 'randell': 44638, 'ransom.': 44639, 'rapes,': 44640, 'rapids': 44641, 'rapp': 44642, 'raspy': 44643, 'rational,': 44644, 'rationalization': 44645, 'rationally': 44646, 'rattlesnake': 44647, 'rawlins': 44648, 'raye': 44649, 're-created': 44650, 're-do': 44651, 're-evaluate': 44652, 're-shoot': 44653, 're-shot': 44654, 'rea.': 44655, 'read)': 44656, 'reagan,': 44657, 'real...': 44658, 'realistic!': 44659, 'realistically.': 44660, 'realities.': 44661, 'reality),': 44662, 'really...': 44663, 'reappearing': 44664, 'reared': 44665, 'reasoning.': 44666, 'reassuring': 44667, 'rebane': 44668, 'rebel,': 44669, 'rebels.': 44670, 'rebuilding': 44671, 'receive.': 44672, 'recklessness': 44673, 'recoil': 44674, 'recommendations': 44675, 'recommends': 44676, 'reconnect': 44677, 'recording,': 44678, 'recycles': 44679, 'red-blooded': 44680, 'redemption.<br': 44681, 'rediscover': 44682, 'rediscovering': 44683, 'rednecks.': 44684, 'redo': 44685, 'reed.': 44686, 'reef': 44687, 'reeked': 44688, 'reel,': 44689, 'reels,': 44690, 'reenact': 44691, "reeve's": 44692, 'reeve)': 44693, 'reference,': 44694, 'refined,': 44695, 'reformed': 44696, 'refund.': 44697, 'regretfully': 44698, 'regretting': 44699, 'regularly.': 44700, 'rehearsals': 44701, 'reigning': 44702, 'reins': 44703, 'relationships.<br': 44704, 'relative,': 44705, 'relay': 44706, 'release!': 44707, 'release?': 44708, 'relieving': 44709, 'religion?': 44710, 'reload': 44711, 'relocate': 44712, 'remains"': 44713, 'remains.': 44714, 'remains?': 44715, 'remake.<br': 44716, 'remark,': 44717, 'remarking': 44718, 'remedial': 44719, 'remembered.<br': 44720, 'rendition,': 44721, "renoir's": 44722, 'rentals.': 44723, 'renter': 44724, 'renting,': 44725, 'reoccurring': 44726, 'repelled': 44727, 'repertoire,': 44728, 'repetitions': 44729, 'reportedly,': 44730, 'represented,': 44731, 'represents.': 44732, 'repressed,': 44733, 'repression,': 44734, 'repressive': 44735, 'reproductive': 44736, 'republic,': 44737, 'required.<br': 44738, 'requires,': 44739, 'reserves': 44740, 'reset': 44741, 'resign': 44742, 'resilient': 44743, 'resolute': 44744, 'resolutions': 44745, 'resolve,': 44746, 'resort.': 44747, 'respectably': 44748, 'respectful,': 44749, 'respectively)': 44750, 'respond.': 44751, 'responsibility.<br': 44752, 'restaurants.': 44753, 'restricting': 44754, 'restroom.': 44755, 'resurrection.': 44756, 'retriever': 44757, 'reunion.<br': 44758, 'reuse': 44759, 'reveal.': 44760, 'revelers': 44761, 'revenge?': 44762, 'revenues': 44763, 'revere': 44764, 'reversals': 44765, 'reverted': 44766, 'reviewer.': 44767, "reviewers'": 44768, 'revisionism': 44769, 'revisited': 44770, 'revisits': 44771, 'revival.': 44772, 'revolution"': 44773, 'revolutionize': 44774, 'revolver.': 44775, 'rey': 44776, 'reynolds.': 44777, 'rhetoric,': 44778, 'rhythms': 44779, 'rib': 44780, 'ribbons': 44781, "richards'": 44782, 'richards.': 44783, "richardson's": 44784, "richie's": 44785, 'riddle,': 44786, 'rideau': 44787, 'riders.': 44788, 'ridgemont': 44789, 'ridicule.': 44790, 'right),': 44791, 'right-hand': 44792, 'rigid,': 44793, 'ring"': 44794, 'ringu,': 44795, 'rip-offs,': 44796, 'ripoff,': 44797, 'ripoff.': 44798, 'ritter)': 44799, 'rivaled': 44800, 'rivalry,': 44801, 'river.<br': 44802, 'riverside': 44803, "roach's": 44804, 'road"': 44805, 'roald': 44806, 'roars': 44807, "robbin's": 44808, 'robbins)': 44809, "roberts'": 44810, 'robin.': 44811, 'robotboy': 44812, 'rock!': 44813, 'rocked!': 44814, 'rocky,': 44815, "rodney's": 44816, 'rodriguez.': 44817, 'rogen': 44818, 'rogen,': 44819, 'role!': 44820, 'roles:': 44821, 'romp.<br': 44822, "rooker's": 44823, 'room).': 44824, 'roommates.': 44825, 'rooney.': 44826, 'rope.': 44827, 'roses"': 44828, 'rotoscoping': 44829, 'round"': 44830, 'rounded,': 44831, 'roundly': 44832, 'rourke,': 44833, 'route,': 44834, 'rovers': 44835, 'roy.': 44836, 'royally': 44837, 'roz': 44838, "roz's": 44839, 'roz,': 44840, 'rozsa': 44841, 'rubbish?': 44842, 'rubell': 44843, 'rudi': 44844, 'rugby': 44845, 'ruggedly': 44846, 'ruin.': 44847, 'ruined,': 44848, "rules'": 44849, 'runaways': 44850, 'runtime,': 44851, 'rush,': 44852, 'russel.': 44853, 'russia.': 44854, 'rutger': 44855, 'ryan)': 44856, 'ryu': 44857, 'ryuhei': 44858, 's**t,': 44859, 's/m': 44860, 'saban': 44861, 'sabato': 44862, 'sabotaging': 44863, 'sachar': 44864, 'sad)': 44865, 'sadashiv': 44866, 'saddles,': 44867, "sadie's": 44868, 'sadistic.': 44869, 'sadists': 44870, 'sadly.': 44871, 'safe?': 44872, 'sagas': 44873, 'sahan': 44874, 'said)': 44875, 'said?': 44876, 'sailor.': 44877, 'saks': 44878, 'salazar': 44879, 'sales.': 44880, 'salt.': 44881, 'salty': 44882, 'salva': 44883, 'salvation,': 44884, 'same-old': 44885, 'same:': 44886, 'samhain': 44887, "sammi's": 44888, 'sanctity': 44889, 'sand,': 44890, 'santa.': 44891, 'santo': 44892, 'sappy.': 44893, 'sarandon,': 44894, 'sargeant': 44895, 'sasquatch,': 44896, 'satellite,': 44897, 'satisfactory.': 44898, 'sato': 44899, 'saudi': 44900, 'savaged': 44901, 'savalas,': 44902, 'savvy,': 44903, 'sawa': 44904, 'sawa,': 44905, 'saying.<br': 44906, 'saying?': 44907, 'says.<br': 44908, 'sbs': 44909, 'scam.': 44910, 'scammed': 44911, 'scandal.': 44912, 'scapinelli': 44913, 'scarcity': 44914, 'scare,': 44915, 'scary?': 44916, 'scene-stealing': 44917, 'scenes),': 44918, 'scenes).<br': 44919, "schepisi's": 44920, 'scholarly': 44921, 'school)': 44922, 'school),': 44923, 'schoolers': 44924, "schwartzman's": 44925, 'schweiger': 44926, 'science-fiction,': 44927, 'scientist:': 44928, 'scientists.': 44929, 'scold': 44930, 'scoop.': 44931, 'scooter,': 44932, 'scope.<br': 44933, 'scores,': 44934, 'scores.': 44935, 'scot': 44936, "scotland's": 44937, 'scramble': 44938, 'scratch,': 44939, 'scratchy': 44940, 'screamer': 44941, 'screenwriters,': 44942, 'screenwriters.': 44943, 'script),': 44944, 'script...': 44945, 'scrupulously': 44946, 'scuddamore)': 44947, 'seagal,': 44948, 'seamy': 44949, 'searchers': 44950, 'seas.': 44951, "season's": 44952, 'season),': 44953, 'seaton': 44954, 'secombe': 44955, 'seconds"': 44956, 'secretaries': 44957, 'secrets,': 44958, "seduction'": 44959, 'seductress,': 44960, 'see."': 44961, "seed's": 44962, 'seed,': 44963, 'seeker': 44964, 'seeley': 44965, 'seen!<br': 44966, 'self-absorbed,': 44967, 'self-appointed': 44968, 'self-control': 44969, 'self-deprecating': 44970, 'self-important': 44971, 'self-made': 44972, 'self-obsessed': 44973, 'self-pity': 44974, 'self-sacrificing': 44975, 'selves': 44976, 'selves,': 44977, 'sematary,': 44978, 'semen.': 44979, 'semester.': 44980, 'semi-documentary': 44981, 'sense),': 44982, 'sense).': 44983, 'senseless.': 44984, 'sensibilities,': 44985, 'sensible,': 44986, 'sensing': 44987, 'sensitivity.': 44988, 'sensually': 44989, 'sentai': 44990, 'sentence.<br': 44991, 'sentiment,': 44992, 'sept': 44993, 'sept.': 44994, 'september.': 44995, 'sequel)': 44996, 'sequels.<br': 44997, 'sequences:': 44998, 'serendipity': 44999, 'sergeant,': 45000, 'serio-comic': 45001, 'seriousness.': 45002, 'serrano': 45003, 'servant.': 45004, 'served,': 45005, 'services.': 45006, 'set)': 45007, 'setback': 45008, 'seth,': 45009, 'seuss.': 45010, 'seven,': 45011, 'seven.': 45012, 'sexes,': 45013, 'sexist,': 45014, 'sf,': 45015, 'sg-1"': 45016, 'sgt': 45017, 'sh*t.': 45018, 'shagging': 45019, 'shake.': 45020, 'shaky.': 45021, 'shamble': 45022, 'shameful.': 45023, 'shanghai,': 45024, 'shaquille': 45025, 'shark-man': 45026, 'sharma,': 45027, 'sharon,': 45028, 'sharpened': 45029, 'sharper': 45030, 'sharpest': 45031, "shatner's": 45032, 'shatter': 45033, 'sheen)': 45034, 'shelved': 45035, 'shemp,': 45036, 'shenanigans,': 45037, 'shenar': 45038, 'shepard)': 45039, "shepherd's": 45040, 'sheppard,': 45041, "sherry's": 45042, 'shetty': 45043, 'shimmering': 45044, 'shined': 45045, 'shining"': 45046, 'shipley': 45047, 'shivering': 45048, 'shocking!': 45049, 'shocking.<br': 45050, 'shocks,': 45051, 'shoddily': 45052, 'shoehorn': 45053, 'shogo': 45054, 'sholay,': 45055, 'shorn': 45056, 'shortages': 45057, 'shortening': 45058, 'shot),': 45059, 'shotgun.': 45060, 'shotguns': 45061, 'shoulda': 45062, 'shoveler': 45063, 'shoveller': 45064, 'showed,': 45065, 'showered': 45066, 'showgirls.': 45067, 'showings': 45068, 'shown.<br': 45069, 'shows!': 45070, 'shows"': 45071, 'showtime.': 45072, 'shrimp': 45073, 'shrugs': 45074, 'shtick,': 45075, 'shun': 45076, 'shut,': 45077, 'siam': 45078, 'sibling.': 45079, 'sicily': 45080, 'side!': 45081, 'side"': 45082, 'sidelines': 45083, 'sidetracked': 45084, 'sidney,': 45085, 'sidney.': 45086, 'siegel': 45087, 'sighs': 45088, 'sight!': 45089, 'sights.': 45090, 'sign:': 45091, 'significantly,': 45092, 'signify': 45093, 'sikes': 45094, 'silenced': 45095, 'silents,': 45096, 'silents.': 45097, 'silhouette.': 45098, "silver's": 45099, 'simba,': 45100, 'similarities,': 45101, 'sims': 45102, 'sincerity.': 45103, "sinclair's": 45104, 'sing!': 45105, 'singh,': 45106, 'sings.': 45107, 'sinise': 45108, 'sinister.': 45109, 'sink,': 45110, 'sins.': 45111, 'sinus': 45112, 'siobhan': 45113, 'sioux': 45114, 'sirico': 45115, 'sirtis': 45116, 'sissi': 45117, 'sister!': 45118, 'sister;': 45119, 'sit,': 45120, 'sitcoms,': 45121, 'sites,': 45122, 'sitting.': 45123, 'situation;': 45124, 'situation?': 45125, 'sixteen,': 45126, 'skate': 45127, 'skater.': 45128, 'skates': 45129, 'skating,': 45130, 'skerritt': 45131, 'sketch,': 45132, 'skewered': 45133, 'skids': 45134, 'skies.': 45135, 'skills.<br': 45136, 'skin.<br': 45137, 'skinner': 45138, 'skinning': 45139, 'skirt-chasing': 45140, 'skull"': 45141, 'skullduggery': 45142, "sky'": 45143, 'slack-jawed': 45144, 'slade': 45145, "slater's": 45146, 'slaver': 45147, 'slayer"': 45148, 'sleeping.': 45149, 'slesinger': 45150, 'sleuthing': 45151, 'slim,': 45152, 'slinky': 45153, 'sliver': 45154, 'sloan': 45155, 'slotted': 45156, 'slovenia,': 45157, 'slow-mo': 45158, 'slower,': 45159, 'slugs.': 45160, 'slumped': 45161, 'slurping': 45162, 'sly,': 45163, 'slyly': 45164, 'smacked': 45165, 'small-scale': 45166, 'smidgen': 45167, 'smiley': 45168, 'smirk.': 45169, 'smokey': 45170, 'smooth-talking': 45171, 'smoother': 45172, 'smothers': 45173, 'smugly': 45174, 'smurfs': 45175, 'snails': 45176, 'snatchers': 45177, 'sniffs': 45178, 'snipes.': 45179, "snitch'd": 45180, 'snob,': 45181, 'snooze': 45182, 'snoring': 45183, 'snorting': 45184, 'snow.<br': 45185, 'snowman,': 45186, 'snugly': 45187, "so-bad-it's-good": 45188, 'soaps,': 45189, 'soars': 45190, 'sober.': 45191, 'social,': 45192, 'societies,': 45193, 'sockets': 45194, 'softened': 45195, 'sohail': 45196, 'solo.': 45197, 'solvang,': 45198, 'solve.': 45199, 'some.<br': 45200, 'someone.<br': 45201, 'something)': 45202, 'son-in-law': 45203, 'son...': 45204, 'sondra,': 45205, "song's": 45206, 'soon?': 45207, 'soothe': 45208, 'soothing': 45209, 'soprano.': 45210, 'sorcerer,': 45211, 'sounding.': 45212, 'sounds.<br': 45213, 'southerner': 45214, 'space)': 45215, 'space?': 45216, 'spaces.': 45217, 'spaceship,': 45218, 'spacious': 45219, 'spader,': 45220, 'spades': 45221, 'span,': 45222, 'span.': 45223, 'spare,': 45224, 'spark.': 45225, 'spasm': 45226, 'special!': 45227, 'specials.': 45228, 'speed"': 45229, 'spell,': 45230, 'spider,': 45231, 'spin,': 45232, 'spinster,': 45233, 'spiral.': 45234, 'spiralling': 45235, 'spirit:': 45236, 'spirited,': 45237, 'spirits.': 45238, 'splinter': 45239, 'spock,': 45240, 'spoiler!': 45241, 'spoiler)': 45242, 'spontaneous,': 45243, 'spoofed': 45244, 'spot!': 45245, 'spot-on,': 45246, 'spotlight.': 45247, 'springboard': 45248, 'springfield': 45249, 'springtime': 45250, 'sprinkling': 45251, 'spurious': 45252, 'spurred': 45253, 'squabble': 45254, 'squalor.': 45255, 'squanders': 45256, 'squares': 45257, 'squealing': 45258, 'staff.': 45259, 'staggered': 45260, 'staging.': 45261, 'stakes.': 45262, 'stalkers': 45263, 'stalled': 45264, 'stalls': 45265, 'stammer': 45266, 'stammering': 45267, 'stampede': 45268, 'stan,': 45269, 'stances': 45270, 'standout.': 45271, 'stands.': 45272, 'stanford': 45273, 'star:': 45274, 'starbase': 45275, 'stare,': 45276, 'stargate.': 45277, 'starlift': 45278, 'starry': 45279, 'startling,': 45280, 'starvation': 45281, 'state.<br': 45282, 'stated.': 45283, 'statement.<br': 45284, 'static.': 45285, "station's": 45286, 'stationary': 45287, 'stations.': 45288, 'statistic': 45289, 'statuesque': 45290, 'stature.': 45291, 'steadfastly': 45292, 'steal,': 45293, 'steam.': 45294, "steele's": 45295, 'steered': 45296, 'stefano': 45297, 'stephanie.': 45298, 'steps.': 45299, 'stepson': 45300, 'stereotypes.<br': 45301, 'stereotyping,': 45302, 'sterile.': 45303, 'stern.': 45304, 'steward': 45305, 'sticker': 45306, 'stickers': 45307, 'stiffly': 45308, 'stifled': 45309, 'stigmata': 45310, 'stiles,': 45311, 'stinker.<br': 45312, "stirba's": 45313, 'stirling': 45314, 'stix': 45315, 'stoicism': 45316, 'stoker': 45317, 'stone),': 45318, 'stoners': 45319, 'stony': 45320, "stooges'": 45321, 'stoolie': 45322, 'stooped': 45323, 'stooping': 45324, 'stored': 45325, 'stormed': 45326, 'storming': 45327, 'story".': 45328, 'story-line.': 45329, 'story-telling.': 45330, 'story..': 45331, 'story...<br': 45332, 'story<br': 45333, 'straddling': 45334, 'straight-forward': 45335, 'straight-laced': 45336, 'straight.<br': 45337, 'straighten': 45338, 'straightheads': 45339, 'strain,': 45340, 'strained,': 45341, 'strange.<br': 45342, 'strangelove,': 45343, 'strap': 45344, 'strategic': 45345, 'straying': 45346, 'streep.': 45347, 'streisand,': 45348, 'streisand.': 45349, 'stress,': 45350, 'stress.': 45351, 'strewn': 45352, 'strickland': 45353, 'stride.': 45354, 'striking.': 45355, 'strindberg': 45356, 'stroheim': 45357, 'strolls': 45358, 'strong)': 45359, 'strongly.': 45360, 'strove': 45361, 'structurally': 45362, 'stryker': 45363, 'stubborn,': 45364, 'stud,': 45365, 'studies,': 45366, 'stuff)': 45367, 'stuff...': 45368, 'stunner': 45369, 'stuns': 45370, 'stunt.': 45371, 'stupefying': 45372, 'stupid)': 45373, 'stupid?': 45374, 'sturges': 45375, 'stutter': 45376, 'style;': 45377, 'styne': 45378, 'su': 45379, 'suave,': 45380, 'subdued.': 45381, 'subject:': 45382, 'subjugated': 45383, 'sublime.': 45384, 'submission,': 45385, 'subs,': 45386, 'subterfuge': 45387, 'subtler': 45388, 'subtleties.': 45389, 'subtracted': 45390, 'suburbia,': 45391, 'subversion': 45392, 'subverting': 45393, 'subway.': 45394, 'subzero': 45395, 'succeeding.': 45396, 'successful.<br': 45397, 'succinct': 45398, 'succumbing': 45399, 'suck?': 45400, 'sufficient.': 45401, 'suggest,': 45402, 'suggests.': 45403, 'suicide.<br': 45404, 'summer!': 45405, 'summerslam': 45406, 'sun",': 45407, "sun's": 45408, 'sundance.': 45409, 'sunday.': 45410, 'sunk.': 45411, 'sunlight.': 45412, 'superfluous.': 45413, 'superfriends': 45414, 'superhero.': 45415, 'superiors.': 45416, 'supermodels': 45417, 'supernova': 45418, 'supervision': 45419, 'support.<br': 45420, 'supporters,': 45421, 'sur': 45422, 'surfed': 45423, 'surgeon,': 45424, 'surname': 45425, 'surprise:': 45426, 'surprised!': 45427, 'surprises.<br': 45428, 'surprising.<br': 45429, 'surrender.': 45430, 'survivors"': 45431, 'suspicious,': 45432, 'suspicious.': 45433, 'sustaining': 45434, 'suzanna': 45435, 'sven': 45436, 'svenson': 45437, 'swamped': 45438, 'swapped': 45439, 'swatch': 45440, 'sweater': 45441, 'sweeney': 45442, 'sweet"': 45443, 'sweeter': 45444, "swift's": 45445, 'swine': 45446, 'swipes': 45447, 'swirls': 45448, 'switchblade': 45449, 'swoops': 45450, 'sword,': 45451, 'sword-and-sorcery': 45452, 'swordfights': 45453, 'swords.': 45454, 'swung': 45455, 'syd': 45456, 'sydney,': 45457, 'syllable': 45458, 'symbolism.<br': 45459, 'symbols,': 45460, 'symbols.': 45461, 'sympathies.': 45462, 'sympathizers': 45463, 'symptomatic': 45464, 'syndicate': 45465, 'synthesized': 45466, 'systematically': 45467, 'systems,': 45468, 'systems.': 45469, 'séance': 45470, 't.rex': 45471, 'tableau': 45472, 'tachiguishi': 45473, 'taco': 45474, "tadashi's": 45475, 'taekwondo': 45476, 'tagge': 45477, 'taint': 45478, 'take.<br': 45479, 'take:': 45480, 'taking,': 45481, 'taking.': 45482, 'talbot': 45483, 'talent;': 45484, 'talkies.': 45485, 'talking.<br': 45486, 'talky.': 45487, 'tall"': 45488, 'tamara': 45489, 'tambor': 45490, 'tanaka': 45491, 'tanaka,': 45492, 'tangle': 45493, 'tanker': 45494, 'tanner': 45495, 'target.<br': 45496, 'targets.': 45497, 'tarnish': 45498, "tarr's": 45499, 'tarrentino': 45500, 'tart': 45501, 'tashan,': 45502, 'tasteful.': 45503, 'tattered': 45504, 'taunt': 45505, 'taxi,': 45506, 'tbn': 45507, 'tbs': 45508, "teal'c,": 45509, 'technical.': 45510, 'technicolor)': 45511, 'technique.<br': 45512, 'technology.<br': 45513, 'ted,': 45514, "teen's": 45515, 'teetering': 45516, 'telecast': 45517, 'telegraph': 45518, 'telegraphed.': 45519, 'telepathically': 45520, "television's": 45521, 'temerity': 45522, 'temper,': 45523, 'temper.': 45524, 'temperatures': 45525, 'temps': 45526, 'temptation,': 45527, 'temptations': 45528, 'ten-year-old': 45529, 'tenacious': 45530, "tenant's": 45531, 'tenants.': 45532, 'tendencies.': 45533, 'tenderly': 45534, 'tenement': 45535, 'tension"': 45536, 'tension-filled': 45537, 'tentacle': 45538, 'terrestrial': 45539, 'terrier': 45540, 'territories': 45541, 'terror)': 45542, 'terse': 45543, 'testament,': 45544, 'testifies': 45545, 'texans': 45546, 'texture,': 45547, 'texture.': 45548, 'thames': 45549, 'that".': 45550, 'that..': 45551, 'that<br': 45552, 'that?)': 45553, 'theater"': 45554, "theater's": 45555, 'them".': 45556, 'them-': 45557, 'them."': 45558, 'them.)': 45559, 'them...<br': 45560, 'theories.': 45561, 'there?"': 45562, 'therein.': 45563, 'theses': 45564, 'thierry': 45565, 'thing!<br': 45566, "thing'": 45567, 'thing,"': 45568, 'thing."': 45569, 'things!': 45570, 'thingy': 45571, 'think;': 45572, 'thinking.<br': 45573, 'thinks.': 45574, 'thirteenth': 45575, 'thomas.': 45576, 'thomerson': 45577, 'thor': 45578, 'thornfield': 45579, 'though),': 45580, 'thoughts;': 45581, 'thousands.': 45582, 'thrash': 45583, 'threads.': 45584, 'threatened,': 45585, 'threatening.': 45586, 'thrift': 45587, 'thriller/horror': 45588, 'thriller;': 45589, 'thrived': 45590, 'throne,': 45591, 'throngs': 45592, 'throughout)': 45593, 'thumbs,': 45594, 'thunder"': 45595, 'thunderbirds,': 45596, 'thunderous': 45597, 'thunderstorm': 45598, 'thurman)': 45599, 'thursby': 45600, 'ti': 45601, 'tics': 45602, 'tidal': 45603, 'tide"': 45604, 'tierney).': 45605, 'ties"': 45606, 'ties,': 45607, 'tiffany': 45608, 'tighten': 45609, 'tightening': 45610, 'timberlake.': 45611, 'time-frame': 45612, 'time-line.<br': 45613, 'time-travel': 45614, 'time..': 45615, 'timers': 45616, 'timon,': 45617, 'timoner': 45618, 'tinged': 45619, 'tinseltown': 45620, 'tinted': 45621, 'tiring.': 45622, 'tit': 45623, 'titan': 45624, "titanic's": 45625, 'title!': 45626, 'title),': 45627, 'title...': 45628, 'title;': 45629, 'titled,': 45630, 'tng.': 45631, 'tnt': 45632, 'toast.': 45633, 'tobin': 45634, 'tod': 45635, 'today:': 45636, 'todd.': 45637, 'todesking"': 45638, 'todos"': 45639, 'togan': 45640, 'toilet!': 45641, 'tolerable,': 45642, 'tolerance.': 45643, 'tollinger': 45644, 'tolstoy': 45645, "tolstoy's": 45646, 'tolstoy,': 45647, 'tomba': 45648, 'tomei)': 45649, "tommy's": 45650, 'tommy.': 45651, 'tomorrow,': 45652, 'tonk': 45653, 'toons': 45654, 'tooth,': 45655, 'tops.': 45656, 'tor': 45657, "torrance's": 45658, 'tortured,': 45659, 'toru': 45660, 'tosh': 45661, 'tots': 45662, 'touch.<br': 45663, 'toupee': 45664, "tourneur's": 45665, 'tow.': 45666, "townsend's": 45667, 'trackers/journeymen!!': 45668, 'tragedies,': 45669, 'trail.': 45670, 'trailer)': 45671, 'trained.': 45672, 'trains.': 45673, 'trainwreck': 45674, 'traitor,': 45675, 'traitorous': 45676, 'traits,': 45677, 'trance,': 45678, 'transformative': 45679, 'transition.': 45680, 'translator': 45681, 'transparent.': 45682, 'transpires,': 45683, 'transplant,': 45684, 'transplanting': 45685, 'transportation': 45686, 'trap,': 45687, 'trapped,': 45688, 'traps,': 45689, 'traps.': 45690, 'trash.<br': 45691, 'trash?': 45692, 'traudl': 45693, 'traverse': 45694, 'tray': 45695, 'trce': 45696, 'treatise': 45697, 'treatment.<br': 45698, "trelkovsky's": 45699, 'tremor': 45700, 'trenchant': 45701, "trent's": 45702, 'trepidation.': 45703, 'tribute.': 45704, 'tricks.<br': 45705, 'trimming': 45706, 'trinity,': 45707, "tristan's": 45708, 'triumphantly': 45709, 'trois': 45710, 'trolls': 45711, 'troopers.': 45712, 'troupe,': 45713, 'troupe.': 45714, 'trucker': 45715, 'true?': 45716, "truman's": 45717, 'trumped': 45718, 'trumpets': 45719, 'trusted.': 45720, 'trustworthy': 45721, 'trys': 45722, 'tu': 45723, 'tube,': 45724, 'tucci,': 45725, 'tuck': 45726, 'tucker,': 45727, 'tumor': 45728, 'tupac': 45729, 'turn-of-the-century': 45730, 'tuvok': 45731, 'tv)': 45732, 'tv-shows': 45733, 'tv;': 45734, 'twang': 45735, 'tweak': 45736, 'twee': 45737, 'twenties,': 45738, 'twentysomething': 45739, 'twigs': 45740, 'twisters': 45741, 'twitching': 45742, 'twitchy': 45743, 'two!': 45744, 'two-dimensional,': 45745, 'two-reel': 45746, 'two;': 45747, 'tycoons': 45748, "tykwer's": 45749, 'tyler,': 45750, 'type-cast': 45751, 'typifies': 45752, "tyson's": 45753, 'tyson.': 45754, 'uber': 45755, 'uhm,': 45756, "uk's": 45757, 'ullman,': 45758, 'ulysses': 45759, 'umbrage': 45760, 'unanswered.': 45761, 'unappealing,': 45762, 'unappetizing': 45763, 'unattractive.': 45764, 'unbilled': 45765, 'uncalled': 45766, 'uncannily': 45767, 'uncharismatic': 45768, 'unclear,': 45769, 'uncomplicated': 45770, 'unconvincing.<br': 45771, 'uncooperative': 45772, 'uncouth': 45773, 'underdeveloped,': 45774, 'underestimate': 45775, 'undergraduate': 45776, 'underplayed': 45777, 'undersea': 45778, 'underside': 45779, 'understand:': 45780, 'underused,': 45781, 'undervalued': 45782, 'underway.': 45783, 'underwent': 45784, 'undeveloped.': 45785, 'undies': 45786, 'undresses': 45787, 'undressing': 45788, 'unduly': 45789, 'unease.': 45790, 'uneasiness': 45791, 'unendurable': 45792, 'unequivocal': 45793, 'unevenly': 45794, 'unexciting.': 45795, 'unexpectedly.': 45796, 'unexplored.': 45797, 'unfettered': 45798, 'unfocused,': 45799, 'unforced': 45800, 'unforgivable.': 45801, 'unfortunately.<br': 45802, 'unfounded': 45803, 'unfunniest': 45804, 'ungainly': 45805, 'unglamorous': 45806, 'unheralded': 45807, 'uninspiring.': 45808, 'uninvolving.': 45809, 'uniting': 45810, 'unkempt': 45811, 'unknowns.': 45812, 'unmissable.': 45813, 'unnatural,': 45814, 'unnerving,': 45815, 'unnerving.': 45816, 'unnervingly': 45817, 'unpretentious,': 45818, 'unprofessional': 45819, 'unraveled': 45820, 'unremarkable.': 45821, 'unsatisfying,': 45822, 'unscathed.': 45823, 'unseen"': 45824, 'unseen,': 45825, 'unsettling,': 45826, 'unspecified': 45827, 'unsuited': 45828, 'unthinkable.': 45829, 'untill': 45830, 'untouched.': 45831, 'untrue,': 45832, 'unturned.': 45833, 'unveils': 45834, 'unwatchable.<br': 45835, 'up!!!': 45836, 'up".': 45837, 'up...<br': 45838, 'upbeat,': 45839, 'uphill': 45840, 'upon.<br': 45841, 'upped': 45842, 'upper-middle': 45843, 'uprising': 45844, 'uproar': 45845, 'upstairs,': 45846, 'uptight,': 45847, 'urged': 45848, 'uribe': 45849, 'urich': 45850, 'urinate': 45851, 'us$': 45852, 'us),': 45853, 'used)': 45854, 'used.<br': 45855, 'useless,': 45856, "user's": 45857, 'uses,': 45858, 'usines': 45859, 'uso': 45860, 'utilised': 45861, 'utterly,': 45862, 'v,': 45863, 'valentina': 45864, 'valentine,': 45865, 'valentine.': 45866, 'valiantly': 45867, 'validates': 45868, 'valientes': 45869, 'valium': 45870, 'vallée': 45871, 'valor': 45872, 'valseuses': 45873, 'values;': 45874, 'vampires!': 45875, 'vampiress': 45876, 'vampyres': 45877, 'vance.': 45878, 'vancouver.': 45879, 'vanity,': 45880, 'vaudevillian': 45881, "vaughn's": 45882, 'vault,': 45883, 'vaulting': 45884, 've': 45885, 'veidt,': 45886, 'veins.': 45887, 'venal': 45888, 'ventriloquist': 45889, 'vents': 45890, 'verhoeven.': 45891, 'vernacular': 45892, 'versions)': 45893, 'vertical': 45894, 'verve.': 45895, 'vet,': 45896, 'veterinarian': 45897, 'vets,': 45898, "vic's": 45899, 'vices': 45900, 'vicky': 45901, 'victim.<br': 45902, "victims'": 45903, 'videotape.': 45904, "vidor's": 45905, 'vidya': 45906, 'viewings.<br': 45907, 'views.<br': 45908, 'vigilance': 45909, 'vilified': 45910, 'vincent,': 45911, 'ving': 45912, 'vinson': 45913, 'violins': 45914, 'visionaries': 45915, 'visions,': 45916, 'vista': 45917, 'visualized': 45918, 'vive': 45919, 'vogue,': 45920, 'voice-overs.': 45921, 'voiceover': 45922, 'voltage': 45923, 'voluntarily': 45924, 'vomited': 45925, 'vonnegut,': 45926, 'vorhees': 45927, "voyager's": 45928, 'vulgar.': 45929, 'vulnerability,': 45930, 'vulnerability.': 45931, 'w.c.': 45932, 'waaaaay': 45933, 'waged': 45934, 'wails': 45935, 'wait."': 45936, 'waiting.': 45937, 'wales.': 45938, 'walk"': 45939, 'walken)': 45940, 'walled': 45941, 'wallop.': 45942, 'walmart.': 45943, 'wane': 45944, "wang's": 45945, 'wannabe.': 45946, 'wants.<br': 45947, 'war;': 45948, 'wardrobe.': 45949, 'warlord,': 45950, 'warm.': 45951, 'warming"': 45952, 'warned.<br': 45953, 'warrior"': 45954, 'was/is': 45955, 'was<br': 45956, 'washed-out': 45957, 'wasn`t': 45958, 'wasps': 45959, 'waste.<br': 45960, 'wat': 45961, 'watanabe': 45962, 'watchful': 45963, 'watergate': 45964, "watson's": 45965, 'wave"': 45966, 'wave?': 45967, 'wavers': 45968, 'way!<br': 45969, 'way."': 45970, 'wayan': 45971, 'wayne)': 45972, 'wb,': 45973, 'we.': 45974, 'weak.<br': 45975, 'weakness,': 45976, 'weaponry,': 45977, 'weaponry.': 45978, 'wear,': 45979, 'wears.': 45980, 'weasel': 45981, 'weaved': 45982, 'weaver,': 45983, 'webb,': 45984, 'wedge': 45985, 'wedlock': 45986, 'weed,': 45987, 'week"': 45988, 'weekend"': 45989, "weekend'": 45990, 'weekend.<br': 45991, 'weekends': 45992, 'weird.<br': 45993, 'weisz,': 45994, 'weitz': 45995, "welch's": 45996, 'welch,': 45997, 'welcoming': 45998, 'well-choreographed': 45999, 'well-constructed': 46000, 'well-directed': 46001, 'well-educated': 46002, 'well-known,': 46003, 'well-loved': 46004, 'well-produced': 46005, 'well-received': 46006, 'well-worth': 46007, 'well.)': 46008, 'weller,': 46009, 'welles)': 46010, 'welling': 46011, 'wells,': 46012, "wendt's": 46013, "werner's": 46014, 'westerners,': 46015, 'westerns.<br': 46016, 'wet,': 46017, 'whack.': 46018, 'whacked-out': 46019, 'whacking': 46020, 'whacky': 46021, 'whaling': 46022, 'wham!': 46023, 'whammy': 46024, 'what...': 46025, 'what´s': 46026, 'wheel,': 46027, 'when.': 46028, 'where?': 46029, 'wheres': 46030, 'which.': 46031, 'whiney': 46032, 'whip,': 46033, 'white",': 46034, 'whitewash': 46035, 'whitman': 46036, 'whoa': 46037, 'whoa!': 46038, 'whoa,': 46039, 'whores': 46040, 'whores,': 46041, 'why?!': 46042, 'wide,': 46043, 'wide-screen': 46044, 'widening': 46045, "widow's": 46046, 'widower,': 46047, 'wife!': 46048, 'wife).': 46049, 'wilderness.<br': 46050, 'wiley': 46051, "williams's": 46052, 'williams)': 46053, 'willis)': 46054, 'windmill': 46055, 'windsor': 46056, 'windy': 46057, 'winking': 46058, 'winks': 46059, 'wins.<br': 46060, 'winters)': 46061, 'wintry': 46062, 'wireless': 46063, 'wispy': 46064, 'with...': 46065, 'wither': 46066, "witherspoon's": 46067, 'withnail': 46068, 'witnessed.<br': 46069, 'witnesses,': 46070, 'wits,': 46071, "wolf's": 46072, 'wolfman".': 46073, 'women:': 46074, 'women;': 46075, 'womens': 46076, 'wonder:': 46077, 'wondering:': 46078, 'wonderland,': 46079, 'wonderous': 46080, 'woodwork': 46081, 'words)': 46082, 'work"': 46083, 'work).': 46084, 'works!': 46085, 'works:': 46086, "world'.": 46087, 'world),': 46088, 'world).': 46089, 'worn-out': 46090, 'worse).': 46091, 'worser': 46092, 'worshippers': 46093, 'worst?': 46094, 'would.<br': 46095, 'wove': 46096, 'wowing': 46097, 'wrap-up': 46098, 'wraparound': 46099, 'wretchedly': 46100, 'writing:': 46101, 'wrong"': 46102, 'wrong)': 46103, 'wrong).': 46104, 'wrong-headed': 46105, 'wwe.': 46106, 'wynn': 46107, 'x-files,': 46108, 'x-men,': 46109, 'xxx': 46110, 'yakitate!': 46111, 'yam,': 46112, 'yamada': 46113, 'yarn.': 46114, 'yawn,': 46115, 'yeah...': 46116, 'year).': 46117, 'year?': 46118, 'yearned': 46119, 'years".': 46120, 'yet:': 46121, 'yeti,': 46122, 'yield': 46123, "yoda's": 46124, 'yogi': 46125, 'yokai,': 46126, 'yorkers.': 46127, 'you!!!': 46128, 'you".<br': 46129, 'young"': 46130, 'young.<br': 46131, 'youngest,': 46132, 'youngish': 46133, 'yugoslavia.': 46134, 'yvelines': 46135, 'zanuck': 46136, 'zanuck,': 46137, 'zara': 46138, 'zarabeth': 46139, 'zealot': 46140, 'zealots': 46141, 'zee': 46142, "zeffirelli's": 46143, "zenia's": 46144, 'zero"': 46145, 'ziering': 46146, "zimmer's": 46147, 'zip.': 46148, 'zis': 46149, 'zoe,': 46150, 'zombies"': 46151, 'zombies)': 46152, 'zombified': 46153, 'zone.<br': 46154, 'zoolander': 46155, 'zwick': 46156, '{the': 46157, 'émigré': 46158})
5. 데이터 로더 만들기¶
In [13]:
# train데이터를 다시 8:2로 나누어 검증 데이터 생성 valset
trainset, valset = trainset.split(split_ratio=0.8)
In [14]:
train_iter, val_iter, test_iter = data.BucketIterator.splits(
(trainset, valset, testset), batch_size = BATCH_SIZE,
shuffle=True, repeat=False
)
In [15]:
print('mini_batch_train: ', len(train_iter))
print('mini_batch_test: ', len(test_iter))
print('mini_batch_val: ', len(val_iter))
mini_batch_train: 313 mini_batch_test: 391 mini_batch_val: 79
In [16]:
# 첫번째 미니 배치 크기 확인
batch = next(iter(train_iter)) #첫번째 미니배치
print(batch.text.shape)
torch.Size([64, 457])
In [17]:
# 첫번째 미니 배치 크기 확인
batch = next(iter(train_iter)) #두번째 미니배치
print(batch.text.shape)
torch.Size([64, 903])
In [18]:
# 미니배치를 다시 담기위해 재로드
train_iter, val_iter, test_iter = data.BucketIterator.splits(
(trainset, valset, testset), batch_size=BATCH_SIZE,
shuffle=True, repeat=False)
6. RNN 모델 구현¶
In [19]:
class GRU(nn.Module):
def __init__(self, n_layers, hidden_dim, n_vocab, embed_dim, n_classes, dropout_p=0.2):
super(GRU, self).__init__()
self.n_layers = n_layers
self.hidden_dim = hidden_dim
self.embed = nn.Embedding(n_vocab, embed_dim)
self.dropout = nn.Dropout(dropout_p)
self.gru = nn.GRU(embed_dim, self.hidden_dim,
num_layers = self.n_layers,
batch_first = True)
self.out = nn.Linear(self.hidden_dim, n_classes)
def forward(self, x):
x = self.embed(x)
h_0 = self._init_state(batch_size = x.size(0)) # 첫번째 히든 스테이트를 0 벡터로 초기화
x, _ = self.gru(x, h_0) # GRU의 리턴값은 (배치크기, 시퀀스 길이, 은닉 상태의 크기)
h_t = x[:,-1,:] # (배치 크기, 은닉 상태의 크기)의 텐서로 크기가 변경됨, 즉, 마지막 time-step의 은닉상태만 가져옴
self.dropout(h_t)
logit = self.out(h_t) # (배치 크기, 은닉 상태의 크기) -> (배치 크기, 출력층의 크기)
return logit
def _init_state(self, batch_size=1):
weight = next(self.parameters()).data
return weight.new(self.n_layers, batch_size, self.hidden_dim).zero_()
In [25]:
# 모델 설계
model = GRU(1, 256, vocab_size, 128, n_classes, 0.5).to(DEVICE)
optimizer = torch.optim.Adam(model.parameters(),lr=lr)
In [26]:
def train(model, optimizer, train_iter):
model.train()
for b, batch in enumerate(train_iter):
x, y = batch.text.to(DEVICE), batch.label.to(DEVICE)
y.data.sub_(1) #레이블 값을 0, 1로 변환
optimizer.zero_grad()
logit = model(x)
loss = F.cross_entropy(logit, y)
loss.backward()
optimizer.step()
In [27]:
# 모델 평가 함수
def evaluate(model, val_iter):
"""evaluate model"""
model.eval()
corrects, total_loss = 0,0
for batch in val_iter:
x, y = batch.text.to(DEVICE), batch.label.to(DEVICE)
y.data.sub_(1) #레이블 값을 0, 1로 변환
logit = model(x)
loss = F.cross_entropy(logit, y, reduction='sum')
total_loss += loss.item()
corrects += (logit.max(1)[1].view(y.size()).data == y.data).sum()
size = len(val_iter.dataset)
avg_loss = total_loss / size
avg_accuracy = 100.0 * corrects / size
return avg_loss, avg_accuracy
In [28]:
# 모델 훈련
best_val_loss = None
for e in range(1, EPOCHS+1):
train(model, optimizer, train_iter)
val_loss, val_accuracy = evaluate(model, val_iter)
print("[Epoch: %d] val loss: %5.2f | val accuracy: %5.2f" % (e, val_loss, val_accuracy))
# 검증 오차가 작은 최적의 모델을 저장
if not best_val_loss or val_loss < best_val_loss:
if not os.path.isdir('snapshot'):
os.makedirs('snapshot')
torch.save(model.state_dict(), './snapshot/textclassification.pt')
best_val_loss = val_loss
[Epoch: 1] val loss: 0.70 | val accuracy: 50.50 [Epoch: 2] val loss: 0.69 | val accuracy: 50.86 [Epoch: 3] val loss: 0.69 | val accuracy: 51.68 [Epoch: 4] val loss: 0.70 | val accuracy: 60.18 [Epoch: 5] val loss: 0.48 | val accuracy: 78.08 [Epoch: 6] val loss: 0.33 | val accuracy: 86.54 [Epoch: 7] val loss: 0.33 | val accuracy: 86.14 [Epoch: 8] val loss: 0.38 | val accuracy: 85.68 [Epoch: 9] val loss: 0.42 | val accuracy: 86.42 [Epoch: 10] val loss: 0.46 | val accuracy: 86.24
In [31]:
model.load_state_dict(torch.load('./snapshot/textclassification.pt'))
test_loss, test_acc = evaluate(model, test_iter)
print('테스트 오차: %5.2f | 테스트 정확도: %5.2f' % (test_loss, test_acc))
테스트 오차: 0.33 | 테스트 정확도: 85.90