In this project, you'll generate your own Simpsons TV scripts using RNNs. You'll be using part of the Simpsons dataset of scripts from 27 seasons. The Neural Network you'll build will generate a new TV script for a scene at Moe's Tavern.
The data is already provided for you. You'll be using a subset of the original dataset. It consists of only the scenes in Moe's Tavern. This doesn't include other versions of the tavern, like "Moe's Cavern", "Flaming Moe's", "Uncle Moe's Family Feed-Bag", etc..
In [30]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import helper
data_dir = './data/simpsons/moes_tavern_lines.txt'
text = helper.load_data(data_dir)
# Ignore notice, since we don't use it for analysing the data
text = text[81:]
In [31]:
view_sentence_range = (0, 10)
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import numpy as np
print('Dataset Stats')
print('Roughly the number of unique words: {}'.format(len({word: None for word in text.split()})))
scenes = text.split('\n\n')
print('Number of scenes: {}'.format(len(scenes)))
sentence_count_scene = [scene.count('\n') for scene in scenes]
print('Average number of sentences in each scene: {}'.format(np.average(sentence_count_scene)))
sentences = [sentence for scene in scenes for sentence in scene.split('\n')]
print('Number of lines: {}'.format(len(sentences)))
word_count_sentence = [len(sentence.split()) for sentence in sentences]
print('Average number of words in each line: {}'.format(np.average(word_count_sentence)))
print()
print('The sentences {} to {}:'.format(*view_sentence_range))
print('\n'.join(text.split('\n')[view_sentence_range[0]:view_sentence_range[1]]))
Dataset Stats
Roughly the number of unique words: 11492
Number of scenes: 262
Average number of sentences in each scene: 15.251908396946565
Number of lines: 4258
Average number of words in each line: 11.50164396430249
The sentences 0 to 10:
Moe_Szyslak: (INTO PHONE) Moe's Tavern. Where the elite meet to drink.
Bart_Simpson: Eh, yeah, hello, is Mike there? Last name, Rotch.
Moe_Szyslak: (INTO PHONE) Hold on, I'll check. (TO BARFLIES) Mike Rotch. Mike Rotch. Hey, has anybody seen Mike Rotch, lately?
Moe_Szyslak: (INTO PHONE) Listen you little puke. One of these days I'm gonna catch you, and I'm gonna carve my name on your back with an ice pick.
Moe_Szyslak: What's the matter Homer? You're not your normal effervescent self.
Homer_Simpson: I got my problems, Moe. Give me another one.
Moe_Szyslak: Homer, hey, you should not drink to forget your problems.
Barney_Gumble: Yeah, you should only drink to enhance your social skills.
The first thing to do to any dataset is preprocessing. Implement the following preprocessing functions below:
To create a word embedding, you first need to transform the words to ids. In this function, create two dictionaries:
vocab_to_int
int_to_vocab
Return these dictionaries in the following tuple (vocab_to_int, int_to_vocab)
In [32]:
import numpy as np
import problem_unittests as tests
def create_lookup_tables(text):
"""
Create lookup tables for vocabulary
:param text: The text of tv scripts split into words
:return: A tuple of dicts (vocab_to_int, int_to_vocab)
"""
# TODO: Implement Function
print(text)
print("\n")
from collections import Counter
counts = Counter(text)
print(counts)
print("\n")
vocab = sorted(counts, key=counts.get, reverse=True)
print(vocab[:100])
print("\n")
vocab_to_int = {word: ii for ii, word in enumerate(vocab, 1)}
print(vocab_to_int)
print("\n")
int_to_vocab=dict(enumerate(vocab,1))
print(int_to_vocab)
return vocab_to_int, int_to_vocab
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_create_lookup_tables(create_lookup_tables)
['moe_szyslak', "moe's", 'tavern', 'where', 'the', 'elite', 'meet', 'to', 'drink', 'bart_simpson', 'eh', 'yeah', 'hello', 'is', 'mike', 'there', 'last', 'name', 'rotch', 'moe_szyslak', 'hold', 'on', "i'll", 'check', 'mike', 'rotch', 'mike', 'rotch', 'hey', 'has', 'anybody', 'seen', 'mike', 'rotch', 'lately', 'moe_szyslak', 'listen', 'you', 'little', 'puke', 'one', 'of', 'these', 'days', "i'm", 'gonna', 'catch', 'you', 'and', "i'm", 'gonna', 'carve', 'my', 'name', 'on', 'your', 'back', 'with', 'an', 'ice', 'pick', 'moe_szyslak', 'whats', 'the', 'matter', 'homer', "you're", 'not', 'your', 'normal', 'effervescent', 'self', 'homer_simpson', 'i', 'got', 'my', 'problems', 'moe', 'give', 'me', 'another', 'one', 'moe_szyslak', 'homer', 'hey', 'you', 'should', 'not', 'drink', 'to', 'forget', 'your', 'problems', 'barney_gumble', 'yeah', 'you', 'should', 'only', 'drink', 'to', 'enhance', 'your', 'social', 'skills']
Counter({'moe_szyslak': 5, 'mike': 4, 'rotch': 4, 'you': 4, 'your': 4, 'to': 3, 'drink': 3, 'the': 2, 'yeah': 2, 'name': 2, 'on': 2, 'hey': 2, 'one': 2, "i'm": 2, 'gonna': 2, 'my': 2, 'homer': 2, 'not': 2, 'problems': 2, 'should': 2, "moe's": 1, 'tavern': 1, 'where': 1, 'elite': 1, 'meet': 1, 'bart_simpson': 1, 'eh': 1, 'hello': 1, 'is': 1, 'there': 1, 'last': 1, 'hold': 1, "i'll": 1, 'check': 1, 'has': 1, 'anybody': 1, 'seen': 1, 'lately': 1, 'listen': 1, 'little': 1, 'puke': 1, 'of': 1, 'these': 1, 'days': 1, 'catch': 1, 'and': 1, 'carve': 1, 'back': 1, 'with': 1, 'an': 1, 'ice': 1, 'pick': 1, 'whats': 1, 'matter': 1, "you're": 1, 'normal': 1, 'effervescent': 1, 'self': 1, 'homer_simpson': 1, 'i': 1, 'got': 1, 'moe': 1, 'give': 1, 'me': 1, 'another': 1, 'forget': 1, 'barney_gumble': 1, 'only': 1, 'enhance': 1, 'social': 1, 'skills': 1})
['moe_szyslak', 'mike', 'rotch', 'you', 'your', 'to', 'drink', 'the', 'yeah', 'name', 'on', 'hey', 'one', "i'm", 'gonna', 'my', 'homer', 'not', 'problems', 'should', "moe's", 'tavern', 'where', 'elite', 'meet', 'bart_simpson', 'eh', 'hello', 'is', 'there', 'last', 'hold', "i'll", 'check', 'has', 'anybody', 'seen', 'lately', 'listen', 'little', 'puke', 'of', 'these', 'days', 'catch', 'and', 'carve', 'back', 'with', 'an', 'ice', 'pick', 'whats', 'matter', "you're", 'normal', 'effervescent', 'self', 'homer_simpson', 'i', 'got', 'moe', 'give', 'me', 'another', 'forget', 'barney_gumble', 'only', 'enhance', 'social', 'skills']
{'moe_szyslak': 1, 'mike': 2, 'rotch': 3, 'you': 4, 'your': 5, 'to': 6, 'drink': 7, 'the': 8, 'yeah': 9, 'name': 10, 'on': 11, 'hey': 12, 'one': 13, "i'm": 14, 'gonna': 15, 'my': 16, 'homer': 17, 'not': 18, 'problems': 19, 'should': 20, "moe's": 21, 'tavern': 22, 'where': 23, 'elite': 24, 'meet': 25, 'bart_simpson': 26, 'eh': 27, 'hello': 28, 'is': 29, 'there': 30, 'last': 31, 'hold': 32, "i'll": 33, 'check': 34, 'has': 35, 'anybody': 36, 'seen': 37, 'lately': 38, 'listen': 39, 'little': 40, 'puke': 41, 'of': 42, 'these': 43, 'days': 44, 'catch': 45, 'and': 46, 'carve': 47, 'back': 48, 'with': 49, 'an': 50, 'ice': 51, 'pick': 52, 'whats': 53, 'matter': 54, "you're": 55, 'normal': 56, 'effervescent': 57, 'self': 58, 'homer_simpson': 59, 'i': 60, 'got': 61, 'moe': 62, 'give': 63, 'me': 64, 'another': 65, 'forget': 66, 'barney_gumble': 67, 'only': 68, 'enhance': 69, 'social': 70, 'skills': 71}
{1: 'moe_szyslak', 2: 'mike', 3: 'rotch', 4: 'you', 5: 'your', 6: 'to', 7: 'drink', 8: 'the', 9: 'yeah', 10: 'name', 11: 'on', 12: 'hey', 13: 'one', 14: "i'm", 15: 'gonna', 16: 'my', 17: 'homer', 18: 'not', 19: 'problems', 20: 'should', 21: "moe's", 22: 'tavern', 23: 'where', 24: 'elite', 25: 'meet', 26: 'bart_simpson', 27: 'eh', 28: 'hello', 29: 'is', 30: 'there', 31: 'last', 32: 'hold', 33: "i'll", 34: 'check', 35: 'has', 36: 'anybody', 37: 'seen', 38: 'lately', 39: 'listen', 40: 'little', 41: 'puke', 42: 'of', 43: 'these', 44: 'days', 45: 'catch', 46: 'and', 47: 'carve', 48: 'back', 49: 'with', 50: 'an', 51: 'ice', 52: 'pick', 53: 'whats', 54: 'matter', 55: "you're", 56: 'normal', 57: 'effervescent', 58: 'self', 59: 'homer_simpson', 60: 'i', 61: 'got', 62: 'moe', 63: 'give', 64: 'me', 65: 'another', 66: 'forget', 67: 'barney_gumble', 68: 'only', 69: 'enhance', 70: 'social', 71: 'skills'}
Tests Passed
We'll be splitting the script into a word array using spaces as delimiters. However, punctuations like periods and exclamation marks make it hard for the neural network to distinguish between the word "bye" and "bye!".
Implement the function token_lookup
to return a dict that will be used to tokenize symbols like "!" into "||Exclamation_Mark||". Create a dictionary for the following symbols where the symbol is the key and value is the token:
This dictionary will be used to token the symbols and add the delimiter (space) around it. This separates the symbols as it's own word, making it easier for the neural network to predict on the next word. Make sure you don't use a token that could be confused as a word. Instead of using the token "dash", try using something like "||dash||".
In [19]:
def token_lookup():
"""
Generate a dict to turn punctuation into a token.
:return: Tokenize dictionary where the key is the punctuation and the value is the token
"""
# TODO: Implement Function
punctuation={
'.': '||Period||',
',': '||Comma||',
'"': '||Quotation_Mark||',
';': '||Semicolon||',
'!': '||Exclamation_mark||',
'?': '||Question_mark||',
'(': '||Left_Parentheses||',
')': '||Right_Parentheses||',
'--': '||Dash||',
"\n": '||Return||'
}
return punctuation
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_tokenize(token_lookup)
Tests Passed
In [20]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
# Preprocess Training, Validation, and Testing Data
helper.preprocess_and_save_data(data_dir, token_lookup, create_lookup_tables)
['||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', "moe's", 'tavern', '||period||', 'where', 'the', 'elite', 'meet', 'to', 'drink', '||period||', '||return|', 'bart_simpson:', 'eh', '||comma||', 'yeah', '||comma||', 'hello', '||comma||', 'is', 'mike', 'there', '||question_mark||', 'last', 'name', '||comma||', 'rotch', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'hold', 'on', '||comma||', "i'll", 'check', '||period||', '||left_parentheses||', 'to', 'barflies', '||right_parentheses||', 'mike', 'rotch', '||period||', 'mike', 'rotch', '||period||', 'hey', '||comma||', 'has', 'anybody', 'seen', 'mike', 'rotch', '||comma||', 'lately', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'listen', 'you', 'little', 'puke', '||period||', 'one', 'of', 'these', 'days', "i'm", 'gonna', 'catch', 'you', '||comma||', 'and', "i'm", 'gonna', 'carve', 'my', 'name', 'on', 'your', 'back', 'with', 'an', 'ice', 'pick', '||period||', '||return|', 'moe_szyslak:', "what's", 'the', 'matter', 'homer', '||question_mark||', "you're", 'not', 'your', 'normal', 'effervescent', 'self', '||period||', '||return|', 'homer_simpson:', 'i', 'got', 'my', 'problems', '||comma||', 'moe', '||period||', 'give', 'me', 'another', 'one', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'hey', '||comma||', 'you', 'should', 'not', 'drink', 'to', 'forget', 'your', 'problems', '||period||', '||return|', 'barney_gumble:', 'yeah', '||comma||', 'you', 'should', 'only', 'drink', 'to', 'enhance', 'your', 'social', 'skills', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'ah', '||comma||', "isn't", 'that', 'nice', '||period||', 'now', '||comma||', 'there', 'is', 'a', 'politician', 'who', 'cares', '||period||', '||return|', 'barney_gumble:', 'if', 'i', 'ever', 'vote', '||comma||', "it'll", 'be', 'for', 'him', '||period||', '||left_parentheses||', 'belch', '||right_parentheses||', '||return|', '||return|', '||return|', 'barney_gumble:', 'hey', 'homer', '||comma||', "how's", 'your', "neighbor's", 'store', 'doing', '||question_mark||', '||return|', 'homer_simpson:', 'lousy', '||period||', 'he', 'just', 'sits', 'there', 'all', 'day', '||period||', "he'd", 'have', 'a', 'great', 'job', 'if', 'he', "didn't", 'own', 'the', 'place', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'struggling', 'with', 'corkscrew', '||right_parentheses||', 'crummy', 'right-handed', 'corkscrews', '||exclamation_mark||', 'what', 'does', 'he', 'sell', '||question_mark||', '||return|', 'homer_simpson:', 'uh', '||comma||', 'well', 'actually', '||comma||', 'moe', '||period||', '||period||', '||period||', '||return|', 'homer_', '||left_parentheses||', "cont'd:", 'i', 'dunno', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'looks', 'like', 'this', 'is', 'the', 'end', '||period||', '||return|', 'barney_gumble:', "that's", 'all', 'right', '||period||', 'i', "couldn't", 'have', 'led', 'a', 'richer', 'life', '||period||', '||return|', 'barney_gumble:', 'so', 'the', 'next', 'time', 'somebody', 'tells', 'you', 'county', 'folk', 'are', 'good', '||comma||', 'honest', 'people', '||comma||', 'you', 'can', 'spit', 'in', 'their', 'faces', 'for', 'me', '||exclamation_mark||', '||return|', 'lisa_simpson:', 'i', 'will', '||comma||', 'mr', '||period||', 'gumbel', '||period||', 'but', 'if', "you'll", 'excuse', 'me', '||comma||', "i'm", 'profiling', 'my', 'dad', 'for', 'the', 'school', 'paper', '||period||', 'i', 'thought', 'it', 'would', 'be', 'neat', 'to', 'follow', 'him', 'around', 'for', 'a', 'day', 'to', 'see', 'what', 'makes', 'him', 'tick', '||period||', '||return|', 'barney_gumble:', 'oh', '||comma||', "that's", 'sweet', '||period||', 'i', 'used', 'to', 'follow', 'my', 'dad', 'to', 'a', 'lot', 'of', 'bars', 'too', '||period||', '||left_parentheses||', 'belch', '||right_parentheses||', '||return|', 'moe_szyslak:', 'here', 'you', 'go', '||period||', 'one', 'beer', '||comma||', 'one', 'chocolate', 'milk', '||period||', '||return|', 'lisa_simpson:', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'i', 'have', 'the', 'chocolate', 'milk', '||period||', '||return|', 'moe_szyslak:', 'oh', '||period||', '||return|', 'moe_szyslak:', "what's", 'the', 'matter', '||comma||', 'homer', '||question_mark||', 'the', "depressin'", 'effects', 'of', 'alcohol', 'usually', "don't", 'kick', 'in', "'til", 'closing', 'time', '||period||', '||return|', 'lisa_simpson:', "he's", 'just', 'a', 'little', 'nervous', '||period||', '||left_parentheses||', 'proudly', '||right_parentheses||', 'he', 'has', 'to', 'give', 'a', 'speech', 'tomorrow', 'on', '||quotation_mark||', 'how', 'to', 'keep', 'cool', 'in', 'a', 'crisis', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'what', 'am', 'i', 'gonna', 'do', '||question_mark||', 'what', 'am', 'i', 'gonna', 'do', '||question_mark||', '||return|', 'barney_gumble:', 'hey', '||comma||', 'i', 'had', 'to', 'give', 'a', 'speech', 'once', '||period||', 'i', 'was', 'pretty', 'nervous', '||comma||', 'so', 'i', 'used', 'a', 'little', 'trick', '||period||', 'i', 'pictured', 'everyone', 'in', 'their', 'underwear', '||period||', 'the', 'judge', '||comma||', 'the', 'jury', '||comma||', 'my', 'lawyer', '||comma||', 'everybody', '||period||', '||return|', 'homer_simpson:', 'did', 'it', 'work', '||question_mark||', '||return|', 'barney_gumble:', "i'm", 'a', 'free', 'man', '||comma||', "ain't", 'i', '||question_mark||', '||return|', 'barney_gumble:', 'whoa', '||exclamation_mark||', '||return|', 'barney_gumble:', 'huh', '||question_mark||', 'a', 'pretzel', '||question_mark||', 'wow', '||comma||', 'looks', 'like', 'i', 'pulled', 'a', 'homer', '||exclamation_mark||', '||return|', '||return|', '||return|', 'patrons:', '||left_parentheses||', 'mumbling', '||comma||', 'not', 'in', 'unison', '||right_parentheses||', 'happy', 'thoughts', '||period||', '||period||', '||period||', 'happy', 'thoughts', '||period||', '||period||', '||period||', 'we', 'love', 'that', 'boy', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', "moe's", 'tavern', '||period||', 'hold', 'on', '||comma||', "i'll", 'check', '||period||', '||period||', '||period||', '||period||', '||left_parentheses||', 'loud', '||right_parentheses||', 'hey', 'everybody', '||exclamation_mark||', "i'm", 'a', 'stupid', 'moron', 'with', 'an', 'ugly', 'face', 'and', 'a', 'big', 'butt', '||comma||', 'and', 'my', 'butt', 'smells', '||comma||', 'and', 'i', 'like', 'to', 'kiss', 'my', 'own', 'butt', '||period||', '||return|', 'barney_gumble:', "that's", 'a', 'new', 'one', '||left_parentheses||', 'laughing', '||right_parentheses||', '||period||', '||return|', 'moe_szyslak:', 'now', 'wait', 'a', 'minute', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'hurry', '||comma||', 'moe', '||comma||', 'hurry', '||exclamation_mark||', "i've", 'only', 'got', 'five', 'minutes', 'till', 'the', 'music', 'store', 'closes', '||period||', '||return|', 'moe_szyslak:', 'why', "don't", 'you', 'go', 'there', 'first', '||question_mark||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'do', 'i', 'tell', 'you', 'how', 'to', 'do', 'your', 'job', '||question_mark||', '||return|', 'moe_szyslak:', 'sorry', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'you', 'know', '||comma||', 'if', 'you', 'tip', 'the', 'glass', '||comma||', 'there', "won't", 'be', 'so', 'much', 'foam', 'on', 'top', '||period||', '||return|', 'moe_szyslak:', 'sorry', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'looking', 'at', 'watch', '||right_parentheses||', 'ah', '||period||', 'finished', 'with', 'fifteen', 'seconds', 'to', 'spare', '||period||', '||return|', 'little_man:', '||left_parentheses||', 'concerned', '||right_parentheses||', "what's", 'the', 'matter', '||comma||', 'buddy', '||question_mark||', '||return|', 'homer_simpson:', 'the', 'moron', 'next', 'door', 'closed', 'early', '||exclamation_mark||', '||return|', 'little_man:', '||left_parentheses||', 'stiffening', '||right_parentheses||', 'i', 'happen', 'to', 'be', 'that', 'moron', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'me', 'and', 'my', 'trenchant', 'mouth', '||period||', '||return|', 'homer_simpson:', 'please', '||comma||', "you've", 'got', 'to', 'open', 'that', 'store', '||period||', '||return|', 'little_man:', 'let', 'me', 'think', 'about', 'it', '||period||', '||period||', '||period||', 'eh', '||period||', '||period||', '||period||', 'no', '||period||', '||return|', 'homer_simpson:', 'okay', '||comma||', 'okay', '||period||', 'but', 'i', 'want', 'you', 'to', 'see', 'a', 'picture', 'of', 'the', 'little', 'girl', "you're", 'disappointing', '||period||', '||left_parentheses||', 'goes', 'through', 'his', 'wallet', '||right_parentheses||', 'well', 'i', "don't", 'have', 'one', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'little', 'man', '||right_parentheses||', 'come', 'on', '||comma||', 'jer', '||period||', 'open', 'up', '||period||', 'be', 'a', 'pal', '||period||', 'remember', 'when', 'i', 'pulled', 'you', 'and', 'your', 'wife', 'out', 'of', 'that', 'burning', 'car', '||question_mark||', '||return|', 'little_man:', '||left_parentheses||', 'grudgingly', '||right_parentheses||', 'okay', '||period||', 'okay', '||period||', 'but', 'now', "we're", 'even', '||period||', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', 'so', 'what', 'does', 'your', 'daughter', 'need', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'smoothly', '||right_parentheses||', "i'll", 'have', 'you', 'know', '||comma||', 'i', 'wrote', 'it', 'down', '||period||', '||return|', 'homer_simpson:', 'number', 'four', 'and', 'a', 'half', '||dash||', 'stupid', 'gum', '||exclamation_mark||', '||return|', 'homer_simpson:', 'number', 'four', 'and', 'a', 'half', 'reed', '||exclamation_mark||', 'whoo', 'hoo', '||exclamation_mark||', '||return|', 'little_man:', 'uh-huh', '||period||', 'and', 'what', 'instrument', 'does', 'she', 'play', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sunk', '||right_parentheses||', 'i', 'dunno', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'patrons', '||right_parentheses||', 'figure', 'of', 'speech', '||period||', '||return|', 'moe_szyslak:', 'hiya', '||comma||', 'homer', '||period||', '||left_parentheses||', 'sighs', '||right_parentheses||', '||return|', 'homer_simpson:', "what's", 'the', 'matter', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'business', 'is', 'slow', '||period||', 'people', 'today', 'are', 'healthier', 'and', 'drinking', 'less', '||period||', 'you', 'know', '||comma||', 'if', 'it', "wasn't", 'for', 'the', 'junior', 'high', 'school', 'next', 'door', 'no', 'one', 'would', 'even', 'use', 'the', 'cigarette', 'machine', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'mouth', 'full', '||right_parentheses||', 'yeah', '||comma||', 'things', 'are', 'tough', 'all', 'over', '||period||', '||return|', 'moe_szyslak:', 'increased', 'job', 'satisfaction', 'and', 'family', 'togetherness', 'are', 'poison', 'for', 'a', 'purveyor', 'of', 'mind-numbing', 'intoxicants', 'like', 'myself', '||period||', '||return|', 'homer_simpson:', 'could', 'i', 'get', 'a', 'beer', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'yeah', '||comma||', 'sure', '||period||', '||return|', 'moe_szyslak:', 'oh', 'sorry', '||comma||', 'i', 'forgot', "we're", 'out', 'of', 'beer', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', 'know', '||comma||', 'i', 'got', 'behind', 'on', 'my', 'beer', 'payments', '||period||', 'the', 'distributor', 'cut', 'me', 'off', 'and', 'i', 'spent', 'my', 'last', 'ten', 'grand', 'on', 'the', '||quotation_mark||', 'love', 'tester', '||quotation_mark||', '||period||', '||return|', 'moe_szyslak:', "you're", 'too', 'late', '||comma||', 'homer', '||period||', 'barney', 'sucked', 'it', 'dry', '||period||', 'cut', 'his', 'gums', 'up', 'pretty', 'bad', '||period||', '||return|', 'moe_szyslak:', 'take', 'it', 'easy', '||comma||', 'homer', '||period||', 'i', 'learned', 'how', 'to', 'make', 'other', 'drinks', 'at', "bartender's", 'school', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'unfamiliar', '||right_parentheses||', 'gin', 'and', '||period||', '||period||', '||period||', 'tonic', '||question_mark||', 'do', 'they', 'mix', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'brightening', '||right_parentheses||', 'hey', '||comma||', 'i', 'know', 'a', 'good', 'drink', '||period||', 'really', 'hits', 'the', 'spot', '||period||', 'i', 'invented', 'it', 'myself', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'sorry', '||comma||', 'harv', '||period||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'sounds', 'like', 'one', 'hell', 'of', 'a', 'drink', '||period||', 'what', 'do', 'you', 'call', 'it', '||question_mark||', '||return|', 'homer_simpson:', 'a', '||quotation_mark||', 'flaming', 'homer', '||quotation_mark||', '||period||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'why', "don't", 'you', 'make', 'us', 'up', 'a', 'couple', 'of', '||quotation_mark||', 'flaming', 'homers', '||quotation_mark||', '||question_mark||', '||return|', 'homer_simpson:', 'hey', 'moe', '||comma||', 'you', 'got', 'any', 'cough', 'syrup', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'let', 'me', 'check', 'the', 'lost', 'and', 'found', '||period||', '||return|', 'moe_szyslak:', 'what', 'do', 'we', 'got', 'here', '||comma||', 'bowie', 'knife', '||comma||', 'troll', 'doll', '||comma||', 'glass', 'eye', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'oh', '||period||', 'here', 'we', 'are', '||period||', '||return|', 'moe_szyslak:', "it's", 'not', 'without', 'its', 'charm', '||period||', '||return|', 'homer_simpson:', 'try', 'lighting', 'it', 'on', 'fire', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'smiling', '||right_parentheses||', 'whoa', '||exclamation_mark||', 'homer', '||comma||', "it's", 'like', "there's", 'a', 'party', 'in', 'my', 'mouth', 'and', "everyone's", 'invited', '||period||', '||return|', 'larry:', 'hey', '||comma||', 'your', 'love', "tester's", 'busted', '||period||', 'i', 'want', 'my', 'nickel', 'back', '||period||', '||left_parentheses||', 'coughs', '||right_parentheses||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'buddy', '||period||', 'have', 'one', 'on', 'the', 'house', '||period||', '||return|', 'larry:', 'hey', '||comma||', 'hey', '||comma||', 'this', 'drink', 'is', 'delicious', '||exclamation_mark||', 'and', 'my', 'phlegm', 'feels', 'looser', '||period||', 'what', 'do', 'you', 'call', 'it', '||question_mark||', '||return|', 'homer_simpson:', 'well', '||comma||', "it's", 'called', 'a', '||quotation_mark||', 'flaming', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'moe', '||exclamation_mark||', "it's", 'called', 'a', '||quotation_mark||', 'flaming', 'moe', '||quotation_mark||', '||exclamation_mark||', "that's", 'right', '||comma||', 'a', '||quotation_mark||', 'flaming', 'moe', '||quotation_mark||', '||period||', 'my', 'name', 'is', 'moe', '||comma||', 'and', 'i', 'invented', 'it', '||period||', "that's", 'why', "it's", 'called', 'a', 'flaming', 'moe', '||period||', 'what', '||question_mark||', 'what', 'are', 'you', "lookin'", 'at', '||comma||', 'homer', '||question_mark||', "it's", 'a', 'flaming', 'moe', "i'm", 'moe', '||period||', '||return|', 'barney_gumble:', 'hey', '||comma||', "what's", 'this', '||question_mark||', '||return|', 'moe_szyslak:', 'a', 'sneeze', 'guard', '||period||', '||return|', 'barney_gumble:', 'wow', '||comma||', 'it', 'really', 'works', '||period||', '||return|', 'harv:', '||left_parentheses||', 'chuckling', '||right_parentheses||', "i'll", 'be', 'back', '||period||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'i', "haven't", 'seen', 'the', 'place', 'this', 'crowded', 'since', 'the', 'government', 'cracked', 'down', 'on', 'you', 'for', 'accepting', 'food', 'stamps', '||period||', 'do', 'you', 'think', 'my', 'drink', 'had', 'something', 'to', 'do', 'with', 'it', '||question_mark||', '||return|', 'moe_szyslak:', 'who', 'can', 'say', '||question_mark||', "it's", 'probably', 'a', 'combination', 'of', 'things', '||period||', '||return|', 'patron_#1:', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'another', 'pitcher', 'of', 'those', 'amazing', '||quotation_mark||', 'flaming', "moe's", '||quotation_mark||', '||period||', '||return|', 'patron_#2:', 'boy', '||comma||', 'i', 'hate', 'this', 'joint', '||comma||', 'but', 'i', 'love', 'that', 'drink', '||period||', '||return|', 'collette:', 'barkeep', '||comma||', 'i', "couldn't", 'help', 'noticing', 'your', 'sign', '||period||', '||return|', 'moe_szyslak:', 'the', 'one', 'that', 'says', '||comma||', '||quotation_mark||', 'bartenders', 'do', 'it', "'til", 'you', 'barf', '||quotation_mark||', '||question_mark||', '||return|', 'collette:', 'no', '||comma||', 'above', 'that', 'store-bought', 'drollery', '||period||', '||return|', 'moe_szyslak:', 'oh', 'great', '||exclamation_mark||', 'why', "don't", 'we', 'fill', 'out', 'an', 'application', '||question_mark||', '||left_parentheses||', 'reading', '||right_parentheses||', "i'll", 'need', 'your', 'name', '||comma||', 'measurements', 'and', 'turn', 'ons', '||period||', '||period||', '||return|', 'collette:', 'you', 'really', 'expect', 'me', 'to', 'tell', 'you', 'my', 'measurements', '||question_mark||', '||return|', 'moe_szyslak:', 'you', 'could', '||comma||', 'but', 'i', 'find', 'this', 'way', 'is', 'much', 'more', 'accurate', '||period||', '||period||', '||period||', 'and', 'fun', '||period||', '||return|', 'collette:', '||left_parentheses||', 'disgusted', '||right_parentheses||', 'what', 'do', 'you', 'offer', 'in', 'the', 'way', 'of', 'salary', '||question_mark||', '||return|', 'moe_szyslak:', 'minimum', 'wage', 'and', 'tips', '||period||', '||left_parentheses||', 'meaningfully', '||right_parentheses||', 'of', 'course', 'there', 'are', 'fringe', 'benefits', '||period||', '||return|', 'collette:', 'such', 'as', '||question_mark||', '||return|', 'moe_szyslak:', 'an', 'unforgettable', 'weekend', 'at', 'club', 'moe', '||period||', '||return|', 'collette:', 'i', 'prefer', 'to', 'take', 'my', 'vacations', 'someplace', 'hot', '||period||', '||return|', 'moe_szyslak:', 'i', 'like', 'your', 'moxie', '||comma||', 'kid', '||period||', "you're", 'hired', '||period||', '||return|', 'collette:', 'you', "shan't", 'regret', 'this', '||period||', '||return|', 'moe_szyslak:', 'methinks', 'i', "shan't", '||period||', '||return|', 'harv:', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'pardon', 'me', '||comma||', 'are', 'you', 'the', 'genius', 'behind', 'the', '||quotation_mark||', 'flaming', 'moe', '||quotation_mark||', '||question_mark||', '||return|', 'homer_simpson:', 'why', 'yes', 'i', '||dash||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'cutting', 'him', 'off', '||right_parentheses||', "i'm", 'your', 'man', '||period||', '||return|', 'harv:', 'huh', 'uh', '||period||', 'my', 'name', 'is', 'harv', 'bannister', '||period||', 'i', 'work', 'for', '||quotation_mark||', 'tipsy', "mcstagger's", 'good', 'time', 'drinking', 'and', 'eating', 'emporium', '||quotation_mark||', '||period||', '||return|', 'moe_szyslak:', 'oh', 'yeah', '||question_mark||', 'hey', '||comma||', "what's", 'mr', '||period||', 'mcstagger', 'really', 'like', '||question_mark||', '||return|', 'harv:', 'actually', '||comma||', 'there', 'is', 'no', 'tipsy', 'mcstagger', '||period||', "he's", 'just', 'a', 'composite', 'of', 'other', 'successful', 'logos', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'you', 'tell', 'him', 'from', 'me', 'that', 'he', 'makes', 'one', 'great', 'mozzarella', 'stick', '||period||', '||return|', 'harv:', '||left_parentheses||', 'quickly', '||right_parentheses||', 'yes', '||comma||', 'fine', '||comma||', 'i', 'will', '||period||', 'anyway', '||comma||', "i've", 'got', 'a', 'proposition', 'for', 'you', '||period||', '||return|', 'moe_szyslak:', 'keep', "talkin'", '||period||', '||return|', 'harv:', 'we', 'feel', 'your', '||quotation_mark||', 'flaming', 'moe', '||quotation_mark||', 'is', 'perfect', 'for', 'our', 'restaurant', 'chain', '||period||', 'we', 'want', 'to', 'buy', 'the', 'recipe', '||period||', '||return|', 'moe_szyslak:', 'no', 'dice', '||period||', 'the', '||quotation_mark||', 'flaming', 'moe', '||quotation_mark||', 'is', 'not', 'for', 'sale', '||period||', 'do', 'you', 'know', 'how', 'much', 'of', 'my', 'blood', 'and', 'sweat', 'are', 'in', 'this', 'drink', '||question_mark||', '||return|', 'barney_gumble:', 'good', 'for', 'you', '||comma||', 'moe', '||period||', 'only', 'an', 'idiot', 'would', 'give', 'away', 'a', 'million', 'dollar', 'idea', 'like', 'that', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'harv', '||right_parentheses||', "i'm", 'sorry', '||comma||', 'but', 'the', 'secret', 'ingredient', 'dies', 'with', 'me', '||period||', '||return|', 'delivery_man:', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'thirty', 'cases', 'of', 'cough', 'syrup', '||period||', 'sign', 'here', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'covering', 'nervous', 'laughing', '||right_parentheses||', 'i', 'got', 'hooked', 'on', 'this', 'stuff', 'in', 'the', 'service', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'quietly', '||right_parentheses||', 'hi', '||comma||', 'moe', '||period||', "where's", 'that', 'waitress', 'of', 'yours', '||question_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'she', 'left', 'to', 'pursue', 'a', 'movie', 'career', '||period||', 'frankly', 'i', 'think', 'she', 'was', 'better', 'off', 'here', '||period||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'sorry', 'i', 'lost', 'you', 'hundreds', 'of', 'thousands', 'of', 'dollars', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'hey', '||comma||', 'hey', '||period||', 'maybe', 'some', 'things', 'are', 'too', 'good', 'to', 'be', 'kept', 'a', 'secret', '||period||', '||return|', 'homer_simpson:', 'i', 'guess', 'so', '||period||', '||return|', 'moe_szyslak:', 'compliments', 'of', 'the', 'house', '||period||', '||left_parentheses||', 'warmly', '||right_parentheses||', 'one', '||quotation_mark||', 'flaming', 'homer', '||quotation_mark||', '||period||', '||return|', 'homer_simpson:', 'ahh', '||period||', 'thanks', '||comma||', 'moe', '||period||', "you're", 'the', 'greatest', 'friend', 'a', 'guy', 'could', 'ever', 'have', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'do', 'you', 'think', 'aerosmith', 'will', 'be', 'in', 'tonight', '||question_mark||', '||return|', 'moe_szyslak:', 'i', 'doubt', 'it', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'shocked', '||right_parentheses||', 'are', 'you', 'sure', '||question_mark||', 'cuz', 'once', 'i', 'open', 'the', 'bottle', "there's", 'no', 'refund', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'homer', '||period||', 'wanna', 'duff', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'smoothly', '||right_parentheses||', 'no', '||comma||', "i'd", 'like', 'a', 'bottle', 'of', 'henry', 'k', '||period||', "duff's", 'private', 'reserve', '||period||', '||return|', 'homer_simpson:', 'for', 'your', 'information', '||comma||', 'i', 'just', 'made', 'a', 'cool', 'twenty-five', 'dollars', 'playing', 'the', 'market', '||period||', 'buy', 'low', '||comma||', 'sell', 'high', '||comma||', "that's", 'my', 'motto', '||period||', 'i', 'may', 'just', 'quit', 'my', 'job', 'at', 'the', 'power', 'plant', 'to', 'become', 'a', 'full-time', 'stock', 'market', 'guy', '||period||', '||return|', 'homer_simpson:', 'have', 'a', 'duff', '||comma||', 'boys', '||exclamation_mark||', '||return|', 'hans:', '||left_parentheses||', 'german', 'accent', '||comma||', 'friendly', '||right_parentheses||', 'oh', '||comma||', 'thank', 'you', '||period||', 'my', 'english', 'is', 'not', 'perfect', '||comma||', 'but', 'i', 'have', 'to', 'tell', 'you', 'your', 'beer', 'is', 'like', 'swill', 'to', 'us', '||period||', 'do', 'i', 'have', 'that', 'right', '||question_mark||', 'i', 'am', 'saying', 'that', 'only', 'a', 'swine', 'would', 'drink', 'this', 'beer', '||period||', '||return|', 'fritz:', '||left_parentheses||', 'german', 'accent', '||right_parentheses||', 'yeah', '||comma||', 'but', 'thank', 'you', 'anyway', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'you', 'guys', "aren't", 'from', 'around', 'here', '||comma||', 'are', 'you', '||question_mark||', '||return|', 'hans:', 'ech', '||comma||', 'nein', '||period||', 'we', 'are', 'from', 'germany', '||period||', 'he', 'is', 'from', 'the', 'east', '||period||', 'i', 'am', 'from', 'the', 'west', '||period||', '||return|', 'fritz:', 'i', 'had', 'a', 'big', 'company', 'and', 'he', 'had', 'a', 'big', 'company', '||period||', 'now', 'we', 'have', 'a', 'very', 'big', 'company', '||period||', '||return|', 'hans:', 'we', 'are', 'interested', 'in', 'buying', 'the', 'power', 'plant', '||period||', 'do', 'you', 'think', 'the', 'owner', 'would', 'ever', 'sell', 'it', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'very', 'confident', '||right_parentheses||', 'well', '||comma||', 'i', 'happen', 'to', 'know', 'that', 'he', "won't", 'sell', 'it', 'for', 'less', 'than', '100', 'million', 'dollars', '||period||', '||return|', 'fritz:', 'a', 'hundred', 'million', '||question_mark||', '||return|', 'hans:', 'oh', '||comma||', "don't", 'worry', '||exclamation_mark||', "we'll", 'still', 'have', 'enough', 'left', 'to', 'buy', 'the', 'cleveland', 'browns', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', "moe's", 'tavern', '||period||', 'moe', 'speaking', '||period||', '||return|', 'bart_simpson:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'uh', 'yes', '||comma||', "i'm", 'looking', 'for', 'a', 'mrs', '||period||', "o'problem", '||period||', 'first', 'name', '||period||', '||period||', '||period||', 'bee', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'ah', '||comma||', 'yeah', '||period||', 'just', 'a', 'minute', '||comma||', "i'll", 'check', '||period||', '||left_parentheses||', 'calling', 'out', '||right_parentheses||', 'uh', '||comma||', 'bee', "o'problem", '||period||', 'bee', "o'problem", '||period||', "c'mon", '||comma||', 'guys', '||period||', 'do', 'i', 'have', 'an', "o'problem", 'here', '||question_mark||', '||return|', 'barney_gumble:', 'you', 'sure', 'do', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'realizing', '||right_parentheses||', 'awwww', '||period||', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', "it's", 'you', '||comma||', "isn't", 'it', '||question_mark||', '||return|', 'moe_szyslak:', 'listen', 'you', '||comma||', 'when', 'i', 'get', 'a', 'hold', 'of', 'you', '||comma||', "i'm", 'gonna', 'use', 'your', 'head', 'for', 'a', 'bucket', 'and', 'paint', 'my', 'house', 'with', 'your', 'brains', '||exclamation_mark||', '||return|', 'bart_simpson:', 'excuse', 'me', '||comma||', "i'm", 'looking', 'for', '||dash||', '||return|', 'moe_szyslak:', 'wait', 'a', 'minute', '||period||', 'i', 'know', 'that', 'voice', '||period||', '||return|', 'moe_szyslak:', 'if', 'it', "isn't", 'little', 'bart', 'simpson', '||exclamation_mark||', 'i', "haven't", 'seen', 'you', 'in', 'years', '||period||', '||return|', 'bart_simpson:', "that's", 'right', '||period||', "that's", 'my', 'pop', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'little', 'bart', '||period||', '||period||', '||period||', 'we', 'hear', 'all', 'about', 'your', 'monkeyshines', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'conspiratorial', '||right_parentheses||', 'bet', 'you', 'get', 'into', 'all', 'kinds', 'of', 'trouble', 'he', "don't", 'even', 'know', 'about', '||period||', 'am', 'i', 'right', '||question_mark||', 'huh', '||question_mark||', 'am', 'i', 'right', '||question_mark||', '||return|', 'bart_simpson:', '||left_parentheses||', "can't", 'resist', '||right_parentheses||', 'yeah', '||comma||', 'well', '||comma||', 'i', 'make', 'some', 'crank', 'phone', 'calls', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'musses', "bart's", 'hair', '||right_parentheses||', '||left_parentheses||', 'laughs', '||right_parentheses||', "that's", 'great', '||exclamation_mark||', 'hey', '||comma||', 'would', 'you', 'sing', 'that', 'old', 'song', 'you', 'used', 'to', 'sing', 'for', 'me', '||question_mark||', '||return|', 'bart_simpson:', '||left_parentheses||', 'a', 'little', 'embarrassed', '||right_parentheses||', 'moe', '||comma||', 'for', 'you', '||period||', '||period||', '||period||', 'anything', '||question_mark||', '||return|', 'bart_simpson:', '||left_parentheses||', 'singing', '||right_parentheses||', 'every', 'teddy', 'bear', "who's", 'been', 'good', 'is', 'sure', 'of', 'a', 'treat', 'today/', "there's", 'lots', 'of', 'marvelous', 'things', 'to', 'eat', '||comma||', 'and', 'wonderful', 'games', 'to', 'play/', 'beneath', 'the', 'trees', '||comma||', 'where', 'nobody', 'sees/', "they'll", 'hide', 'and', 'seek', 'as', 'long', 'as', 'they', 'please/', "today's", 'the', 'day', 'the', 'teddy', 'bears', 'have', 'their', 'picnic', '||exclamation_mark||', '||return|', 'moe_szyslak:', "he's", 'a', 'pip', '||comma||', 'this', 'one', 'is', '||exclamation_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', 'ah', '||comma||', 'the', 'mirthless', 'laugh', 'of', 'the', 'damned', '||period||', 'hold', 'your', 'nose', '||comma||', 'smithers', '||comma||', "we're", 'going', 'in', '||exclamation_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', '||left_parentheses||', 'to', 'smithers', '||right_parentheses||', 'watch', 'me', 'blend', 'in', '||period||', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'barkeep', '||comma||', 'some', 'cheap', 'domestic', 'beer', 'for', 'me', 'and', 'my', '||quotation_mark||', 'buddy', '||quotation_mark||', 'here', '||period||', '||return|', 'homer_simpson:', "i'm", 'not', 'your', 'buddy', '||comma||', 'you', 'greedy', 'old', 'reptile', '||exclamation_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', 'smithers', '||comma||', 'who', 'is', 'this', 'saucy', 'fellow', '||question_mark||', '||return|', 'waylon_smithers:', 'homer', 'simpson', '||comma||', 'sir', '||period||', 'sector', 'sieben-gruben', '||dash||', 'i', 'mean', '||comma||', 'sector', '7g', '||period||', 'recently', 'terminated', '||period||', '||return|', 'homer_simpson:', "that's", 'right', '||period||', 'i', 'lost', 'my', 'job', 'so', 'that', 'you', 'could', 'have', 'another', '100', 'million', 'dollars', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'pointed', '||right_parentheses||', 'let', 'me', 'ask', 'you', 'something', '||period||', 'does', 'your', 'money', 'cheer', 'you', 'up', 'when', "you're", 'feeling', 'blue', '||question_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', 'yes', '||period||', '||return|', 'homer_simpson:', 'okay', '||comma||', 'bad', 'example', '||period||', 'so', 'let', 'me', 'ask', 'you', 'this', '||comma||', 'does', 'your', 'money', 'ever', 'hug', 'you', 'when', 'you', 'come', 'home', 'at', 'night', '||question_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', '||left_parentheses||', 'shaken', '||right_parentheses||', 'why', '||comma||', 'no', '||period||', '||return|', 'homer_simpson:', 'and', 'does', 'it', 'ever', 'say', '||comma||', '||quotation_mark||', 'i', 'love', 'you', '||question_mark||', '||quotation_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', '||left_parentheses||', 'shaken', '||right_parentheses||', 'no', '||comma||', 'it', "doesn't", '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sing-song', '||right_parentheses||', 'nobody', 'loves', 'you', '||period||', 'nobody', 'loves', 'you', '||period||', "you're", 'old', 'and', "you're", 'ugly', '||period||', 'nobody', 'loves', 'you', '||period||', 'yea', '||comma||', 'yea', '||comma||', 'yea', 'yea', '||exclamation_mark||', '||return|', 'homer_simpson:', 'nobody', 'loves', 'you', '||period||', '||period||', '||period||', '||return|', 'c', '||period||', '_montgomery_burns:', 'good', 'heavens', '||comma||', 'smithers', '||exclamation_mark||', "they're", 'not', 'afraid', 'of', 'me', 'anymore', '||exclamation_mark||', '||return|', 'bart_simpson:', 'hey', 'mr', '||period||', 'burns', '||comma||', 'did', 'you', 'get', 'that', 'letter', 'i', 'sent', '||question_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', 'letter', '||question_mark||', 'i', "don't", 'recall', 'any', 'letter', '||period||', '||period||', '||period||', '||return|', 'bart_simpson:', "that's", 'because', 'i', 'forgot', 'to', 'stamp', 'it', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'laughing', '||right_parentheses||', 'ah', '||comma||', 'that', 'kid', 'slays', 'me', '||period||', '||return|', 'c', '||period||', '_montgomery_burns:', 'that', 'was', 'no', 'accident', '||period||', "let's", 'get', 'out', 'of', 'here', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'singing', '||right_parentheses||', 'na', 'na', 'na', 'na', '/', 'na', 'na', 'na', 'na', '/', '||return|', 'barflies:', 'hey', 'hey', 'hey', '/', 'goodbye', '||dash||', 'na', 'na', 'na', 'na', '/', 'na', 'na', 'na', 'na', '/', 'hey', 'hey', 'hey', '/', 'goodbye', '||period||', '||period||', '||period||', '||return|', 'c', '||period||', '_montgomery_burns:', 'what', 'good', 'is', 'money', 'if', 'you', "can't", 'inspire', 'terror', 'in', 'your', 'fellow', 'man', '||question_mark||', '||left_parentheses||', 'determined', '||right_parentheses||', "i've", 'got', 'to', 'get', 'my', 'plant', 'back', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', "moe's", 'tavern', '||period||', 'where', 'the', 'peanut', 'bowl', 'is', 'freshened', 'hourly', '||period||', '||return|', 'homer_simpson:', 'moe', '||comma||', "i'd", 'like', 'to', 'bet', 'twenty', 'dollars', 'on', 'denver', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'slyly', '||right_parentheses||', 'i', 'think', 'i', 'can', 'provide', 'that', 'service', '||period||', '||left_parentheses||', 'looking', 'around', '||right_parentheses||', 'um', '||comma||', 'uh', '||comma||', 'chief', 'wiggum', '||comma||', 'could', 'you', 'hand', 'me', 'that', 'little', 'black', 'book', '||question_mark||', '||return|', 'chief_wiggum:', 'oh', '||comma||', 'sure', 'thing', '||comma||', 'moe', '||period||', 'i', 'was', 'just', 'using', 'it', 'as', 'a', 'coaster', '||period||', '||return|', 'homer_simpson:', 'twenty', 'big', 'ones', 'on', 'denver', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'pleasure', 'doing', 'business', 'with', 'you', '||comma||', '||left_parentheses||', 'coyly', '||right_parentheses||', 'h', '||period||', 's', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'tv', '||right_parentheses||', 'all', 'right', '||comma||', 'denver', '||period||', 'justify', 'my', 'love', '||period||', '||return|', 'football_announcer:', 'at', 'the', 'end', 'of', 'thirteen', 'seconds', 'of', 'play', '||comma||', "it's", 'new', 'england', 'seven', '||comma||', 'denver', 'nothing', '||period||', '||return|', 'lisa_simpson:', 'look', '||comma||', 'dad', '||period||', 'i', 'made', 'a', 'modest', 'studio', 'apartment', 'for', 'my', 'malibu', 'stacey', 'doll', '||period||', 'this', 'is', 'the', 'kitchen', '||comma||', 'this', 'is', 'where', 'she', 'prints', 'her', 'weekly', 'feminist', 'newsletter', '||period||', '||period||', '||period||', '||return|', 'lisa_simpson:', 'daaaaad', '||exclamation_mark||', "you're", 'not', 'listening', 'to', 'me', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'grumbling', '||right_parentheses||', 'lousy', '||comma||', 'stupid', 'denver', '||period||', '||return|', 'homer_simpson:', 'the', 'usual', '||comma||', 'moe', '||period||', 'a', 'beer', 'and', 'a', 'wad', 'of', 'bills', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sarcastic', 'laugh', '||right_parentheses||', 'okay', '||comma||', 'ya', 'lucky', 'moron', '||period||', '||return|', 'moe_szyslak:', 'here', 'you', 'go', '||comma||', 'homer', '||period||', 'a', 'hundred', 'and', 'thirty-five', 'dollars', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sagely', '||right_parentheses||', 'i', 'used', 'to', 'hate', 'the', 'smell', 'of', 'your', 'sweaty', 'feet', '||period||', '||left_parentheses||', 'sniffs', 'deeply', '||right_parentheses||', 'now', "it's", 'the', 'smell', 'of', 'victory', '||period||', '||return|', 'moe_szyslak:', 'aw', '||comma||', 'shut', 'up', '||period||', '||return|', 'moe_szyslak:', 'hundred', 'and', 'ten', '||comma||', 'a', 'hundred', 'and', 'twenty', '||period||', '||period||', '||period||', 'you', 'lucky', 'son-of-a', '||period||', '||period||', '||period||', '||return|', 'barney_gumble:', 'hey', 'homer', '||comma||', 'you', 'wanna', 'go', 'bowling', 'next', 'sunday', '||question_mark||', '||return|', 'homer_simpson:', 'barney', '||comma||', 'are', 'you', 'nuts', '||question_mark||', "that's", 'the', 'super', 'bowl', '||period||', 'how', 'about', 'the', 'sunday', 'after', 'that', '||question_mark||', '||return|', 'barney_gumble:', 'well', '||comma||', 'my', "ma's", 'coming', 'in', 'from', 'norway', '||comma||', 'but', '||period||', '||period||', '||period||', 'uh', 'what', 'the', 'hell', '||period||', '||left_parentheses||', 'belches', '||right_parentheses||', '||return|', 'moe_szyslak:', "moe's", 'tavern', '||comma||', 'home', 'of', 'the', 'super', 'sunday', 'brunch', 'spectacular', '||period||', '||return|', 'barney_gumble:', 'oh', '||exclamation_mark||', 'baloney', '||period||', 'bread', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'gotcha', 'ya', 'down', 'for', 'forty', 'bucks', '||period||', 'good', 'luck', 'your', 'eminence', '||period||', '||return|', 'moe_szyslak:', 'sorry', '||comma||', 'homer', '||comma||', 'you', "can't", 'take', 'any', 'more', 'of', 'my', 'money', '||period||', "i'm", '||comma||', 'uh', '||comma||', 'outta', 'the', 'bookie', 'business', '||period||', '||return|', 'barney_gumble:', 'but', 'moe', '||comma||', "you've", 'been', 'taking', 'bets', 'all', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'cutting', 'him', 'off', '||right_parentheses||', 'hey', 'barney', '||comma||', 'how', "'bout", 'a', 'free', 'beer', '||question_mark||', '||return|', 'barney_gumble:', 'wow', '||exclamation_mark||', '||left_parentheses||', 'belch', '||right_parentheses||', '||return|', 'homer_simpson:', "don't", 'worry', '||comma||', 'moe', '||period||', "i'm", 'not', "bettin'", '||period||', '||return|', 'moe_szyslak:', 'what', '||question_mark||', 'gimme', 'that', '||period||', '||return|', 'homer_simpson:', 'i', 'had', 'the', 'greatest', 'gift', 'of', 'all', '||comma||', 'a', 'little', 'girl', 'who', 'could', 'pick', 'football', 'and', 'i', 'ruined', 'it', '||period||', '||return|', 'bret:', 'well', 'sir', '||comma||', "we're", 'two', 'hours', 'and', 'forty-five', 'minutes', 'into', 'the', 'pre-game', 'show', 'and', "we've", 'got', 'ourselves', 'a', 'special', 'guest', '||period||', 'actor', 'troy', 'mcclure', '||comma||', 'whose', 'new', 'sitcom', 'is', 'premiering', 'tonight', '||dash||', 'coincidentally', 'enough', '||comma||', 'right', 'after', 'the', 'game', '||exclamation_mark||', '||return|', 'troy_mcclure:', 'thanks', '||comma||', 'bret', '||period||', 'my', 'new', "show's", 'called', '||quotation_mark||', 'handle', 'with', 'care', '||quotation_mark||', '||period||', 'i', 'play', 'jack', 'handle', '||comma||', 'a', 'retired', 'cop', 'who', 'shares', 'an', 'apartment', 'with', 'a', 'retired', 'criminal', '||period||', "we're", 'the', 'original', 'odd', 'couple', '||exclamation_mark||', '||return|', 'bret:', 'what', 'made', 'you', 'want', 'to', 'do', 'a', 'situation', 'comedy', '||question_mark||', '||return|', 'troy_mcclure:', 'well', '||comma||', 'i', 'fell', 'in', 'love', 'with', 'the', 'script', '||comma||', 'bret', '||comma||', 'and', 'my', 'recent', 'trouble', 'with', 'the', 'irs', 'sealed', 'the', 'deal', '||period||', '||return|', 'bret:', 'could', 'be', 'another', "drexel's", 'class', '||period||', 'ooh', '||comma||', 'looks', 'like', "we're", 'almost', 'ready', 'for', 'the', 'kickoff', '||period||', '||return|', 'football_announcer:', 'dallas', 'kicks', '||dash||', 'oh', '||comma||', "it's", 'a', 'bad', 'kick', '||comma||', 'way', 'too', 'short', '||period||', "buffalo's", 'going', 'to', 'start', 'with', 'excellent', 'field', 'position', '||period||', '||return|', 'homer_simpson:', "buffalo's", 'gonna', 'win', '||period||', 'lisa', 'hates', 'me', '||exclamation_mark||', '||left_parentheses||', 'sobs', '||right_parentheses||', '||return|', 'larry:', 'whatcha', 'got', 'riding', 'on', 'this', 'game', '||question_mark||', '||return|', 'homer_simpson:', 'my', 'daughter', '||period||', '||return|', 'larry:', '||left_parentheses||', 'whistles', '||right_parentheses||', 'what', 'a', 'gambler', '||period||', '||return|', 'football_announcer:', 'that', 'was', 'the', 'score', 'at', 'the', 'half', '||period||', 'buffalo', 'fourteen:', 'dallas', 'seven', '||period||', '||return|', 'barflies:', 'go', '||exclamation_mark||', 'go', '||exclamation_mark||', 'go', '||exclamation_mark||', 'go', '||exclamation_mark||', 'go', '||exclamation_mark||', 'yea', '||exclamation_mark||', '||exclamation_mark||', '||return|', 'duff_announcer:', "it's", 'a', 'touchdown', 'for', 'half-back', 'dan', 'beer-dorf', '||exclamation_mark||', 'duff', 'dry', 'has', 'won', 'the', 'duff', 'bowl', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'they', 'wanted', 'it', 'more', '||period||', '||return|', 'barney_gumble:', 'hey', 'homer', '||comma||', "didn't", 'you', 'say', 'if', 'duff', 'dry', 'wins', '||comma||', 'your', 'daughter', 'loves', 'you', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'aggravated', '||right_parentheses||', 'not', 'duff', 'dry', '||period||', '||period||', '||period||', 'dallas', '||period||', '||return|', 'barney_gumble:', 'okay', '||comma||', 'okay', '||period||', "they're", 'both', 'great', 'teams', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'looking', 'up', '||right_parentheses||', 'huh', '||question_mark||', '||return|', 'football_announcer:', 'touchdown', 'cowboys', '||exclamation_mark||', '||return|', 'homer_simpson:', 'all', 'right', '||comma||', "we're", 'back', 'in', 'business', '||period||', '||return|', 'football_announcer:', 'so', '||comma||', 'with', 'three', 'ticks', 'left', 'on', 'the', 'clock', '||comma||', 'it', 'all', 'comes', 'down', 'to', 'this', 'one', 'play', '||period||', 'if', 'dallas', 'scores', 'here', '||comma||', 'happy', "fans'll", 'be', 'looting', 'and', 'turning', 'over', 'cars', 'in', 'the', 'lone', 'star', 'state', 'tonight', '||period||', "here's", 'the', 'handoff', '||period||', '||return|', 'homer_simpson:', 'please', '||comma||', 'please', '||comma||', 'please', '||period||', '||period||', '||period||', '||return|', 'football_announcer:', 'touchdown', '||exclamation_mark||', 'stick', 'a', 'fork', 'in', 'this', 'one', '||period||', 'it', 'is', 'done', '||period||', 'the', 'dallas', 'cowboys', 'wins', 'super', 'bowl', 'twenty-nine', '||period||', '||return|', 'homer_simpson:', 'yes', '||exclamation_mark||', 'she', 'loves', 'me', '||exclamation_mark||', 'she', 'loves', 'me', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'what', 'are', 'you', 'so', 'happy', 'about', 'homer', '||question_mark||', 'you', "didn't", 'win', 'any', 'money', '||period||', '||return|', 'homer_simpson:', 'money', 'comes', 'and', 'money', 'goes', '||comma||', 'but', 'what', 'i', 'have', 'with', 'my', 'daughter', 'can', 'go', 'on', 'for', 'eight', 'more', 'years', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'hi', 'barney', '||period||', 'thanks', 'for', 'keeping', 'me', 'company', '||period||', '||return|', 'barney_gumble:', 'no', 'problem', '||period||', '||left_parentheses||', 'to', 'maggie', '||right_parentheses||', 'well', '||comma||', 'well', '||comma||', 'if', 'it', "isn't", 'little', 'bart', '||period||', '||left_parentheses||', 'scratching', "maggie's", 'chin', '||right_parentheses||', 'remember', 'your', 'uncle', 'barney', '||question_mark||', 'hey', 'homer', '||comma||', 'let', 'me', 'hold', 'him', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'handing', 'maggie', 'over', '||right_parentheses||', 'all', 'right', '||comma||', 'but', 'just', 'be', 'careful', '||period||', '||return|', 'barney_gumble:', 'whoa', '||period||', '||period||', '||period||', 'someone', 'smells', 'stinky', '||period||', '||left_parentheses||', 'sniffing', 'shirt', '||right_parentheses||', 'oh', '||comma||', "it's", 'me', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', 'and', 'i', 'say', '||comma||', "england's", 'greatest', 'prime', 'minister', 'was', 'lord', 'palmerston', '||period||', '||return|', 'wade_boggs:', 'pit', 'the', 'elder', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'jumps', 'off', 'stool', '||right_parentheses||', 'lord', 'palmerston', '||exclamation_mark||', '||return|', 'wade_boggs:', '||left_parentheses||', 'poking', 'barney', '||right_parentheses||', 'pit', 'the', 'elder', '||exclamation_mark||', '||return|', 'barney_gumble:', 'okay', '||comma||', 'you', 'asked', 'for', 'it', '||comma||', 'boggs', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'scornfully', '||right_parentheses||', 'yeah', '||comma||', "that's", "showin'", 'him', '||comma||', 'barney', '||period||', 'pit', 'the', 'elder', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'in', "moe's", 'face', '||right_parentheses||', 'lord', 'palmerston', '||exclamation_mark||', '||return|', '||return|', '||return|', 'barney_gumble:', '||left_parentheses||', 'amazed', '||right_parentheses||', 'did', 'you', 'say', 'one', 'hundred', 'and', 'thirty', 'million', 'dollars', '||question_mark||', '||return|', 'homer_simpson:', 'yeah', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'pfft', '||comma||', 'the', 'lottery', '||period||', 'exploiter', 'of', 'the', 'poor', 'and', 'ignorant', '||period||', '||return|', 'barney_gumble:', 'you', 'know', '||comma||', 'i', 'heard', 'the', "jackpot's", 'up', 'to', 'one', 'hundred', 'and', 'thirty', 'million', 'dollars', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'spitting', 'out', 'beer', '||right_parentheses||', 'one', 'hundred', 'and', 'thirty', 'million', 'dollars', '||exclamation_mark||', '||return|', 'sadistic_barfly:', "c'mon", 'boozehound', '||exclamation_mark||', 'you', 'want', 'the', 'twenty', 'five', 'cents', '||comma||', "don't", 'you', '||question_mark||', 'keep', "singin'", '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'singing', '||right_parentheses||', 'buffalo', 'gals', "won't", 'you', 'come', 'out', 'tonight', '/', 'come', 'out', 'tonight', '/', 'come', 'out', 'tonight', '||period||', '||period||', '||period||', 'oh', 'buffalo', 'gals', '||period||', '||period||', '||period||', '||return|', 'young_barfly:', "who's", 'that', 'old', 'rummy', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'offended', '||right_parentheses||', 'before', 'his', 'dog', 'got', 'sick', '||comma||', 'that', '||quotation_mark||', 'old', 'rummy', '||quotation_mark||', 'used', 'to', 'be', 'my', 'best', 'customer', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'singing', '||right_parentheses||', 'and', 'dance', 'by', 'the', 'light', 'of', 'the', 'moonnnnnnnn', '||exclamation_mark||', '||return|', 'sadistic_barfly:', 'go', 'get', 'it', '||comma||', 'pal', '||period||', '||return|', 'homer_simpson:', 'my', 'quarter', '||exclamation_mark||', '||exclamation_mark||', '||exclamation_mark||', '||left_parentheses||', 'moan', '||right_parentheses||', '||return|', '||return|', '||return|', 'homer_simpson:', 'oh', '||comma||', 'no', '||period||', 'i', 'went', 'to', 'this', 'bar', 'the', 'other', 'night', '||comma||', 'and', 'they', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'wha', '||period||', '||period||', '||period||', 'wha', '||period||', '||period||', '||period||', 'wait', 'a', 'minute', '||period||', 'you', 'went', 'to', 'another', 'bar', '||question_mark||', '||return|', 'homer_simpson:', 'hey', 'moe', '||comma||', 'you', 'got', 'any', 'fudd', '||question_mark||', '||return|', 'moe_szyslak:', 'fudd', '||question_mark||', 'i', 'thought', 'they', 'took', 'that', 'off', 'the', 'market', 'after', 'all', 'those', 'hillbillies', 'went', 'blind', '||period||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'i', 'was', 'a', 'hundred', 'miles', 'outta', 'town', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sadly', '||right_parentheses||', 'oh', '||comma||', 'homer', '||period||', '||return|', '||return|', '||return|', "smokin'_joe_frazier:", 'keep', 'those', 'pickled', 'eggs', "comin'", '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'you', 'cleaned', 'me', 'out', "smokin'", 'joe', '||period||', "what's", 'the', 'matter', 'homer', '||question_mark||', 'cummerbund', 'too', 'tight', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sadly', '||right_parentheses||', 'i', 'miss', 'my', 'couch', '||period||', '||return|', "smokin'_joe_frazier:", 'i', 'know', 'how', 'you', 'feel', '||period||', 'you', 'lost', 'a', 'couch', '||period||', 'i', 'lost', 'a', 'heavyweight', 'championship', '||period||', '||return|', 'homer_simpson:', 'pfft', '||exclamation_mark||', 'heavyweight', 'championship', '||period||', "there's", 'like', 'three', 'of', 'those', '||period||', 'that', 'couch', 'was', 'one', 'of', 'a', 'kind', '||period||', '||return|', "smokin'_joe_frazier:", 'homer', '||comma||', 'i', 'know', 'things', 'are', 'tough', 'now', '||period||', 'but', 'one', 'day', "you'll", 'be', 'walking', 'along', 'and', "you'll", 'see', 'a', 'piece', 'of', 'furniture', 'that', 'you', 'can', 'love', 'just', 'as', 'much', '||period||', '||return|', 'barney_gumble:', 'hey', '||comma||', 'frazier', '||comma||', 'shut', 'up', '||exclamation_mark||', '||return|', "smokin'_joe_frazier:", 'barney', '||comma||', "you've", 'been', 'riding', 'my', 'back', 'all', 'night', '||period||', '||return|', 'barney_gumble:', 'oh', 'yeah', '||question_mark||', 'care', 'to', 'step', 'outside', '||question_mark||', '||return|', "smokin'_joe_frazier:", "let's", 'do', 'it', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'finishing', 'beer', '||right_parentheses||', 'i', 'think', "i'm", 'gonna', 'take', 'a', 'walk', '||period||', '||return|', 'barney_gumble:', 'all', 'right', '||exclamation_mark||', 'a', 'peanut', '||exclamation_mark||', '||return|', 'barney_gumble:', 'come', 'on', 'washer', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'hits', 'dryer', '||right_parentheses||', 'oh', '||comma||', 'you', 'stupid', 'dryer', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'hello', '||comma||', 'work', '||question_mark||', 'this', 'is', 'homer', 'simpson', '||period||', 'i', "won't", 'be', 'coming', 'in', 'tomorrow', '||dash||', 'religious', 'holiday', '||period||', '||period||', '||period||', 'the', 'uh', '||comma||', 'feast', 'of', '||period||', '||period||', '||period||', '||left_parentheses||', 'looking', 'at', 'sign', '||right_parentheses||', 'maximum', 'occupancy', '||period||', '||return|', 'moe_szyslak:', 'pretty', 'slick', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'you', 'should', 'join', 'my', 'religion', '||comma||', 'moe', '||period||', "it's", 'great', '||period||', 'no', 'hell', '||period||', '||period||', '||period||', 'no', 'kneeling', '||period||', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'sorry', '||comma||', 'homer', '||period||', 'i', 'was', 'born', 'a', 'snake-handler', 'and', "i'll", 'die', 'a', 'snake-handler', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'moe', '||comma||', 'have', 'you', 'ever', 'felt', 'unattractive', '||question_mark||', '||return|', 'moe_szyslak:', 'mmmm', '||period||', '||period||', '||period||', 'no', '||period||', '||return|', 'homer_simpson:', 'how', 'about', 'you', '||comma||', 'barney', '||question_mark||', '||return|', 'barney_gumble:', 'not', 'for', 'a', 'second', '||left_parentheses||', 'belch', '||right_parentheses||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sigh', '||right_parentheses||', 'i', 'need', 'help', '||period||', '||return|', 'tv_father:', '||left_parentheses||', 'with', 'each', 'toss', '||right_parentheses||', 'whee', '||period||', '||period||', '||period||', 'whee', '||period||', '||period||', '||period||', 'whee', '||period||', '||period||', '||period||', '||period||', 'whee', '||period||', '||period||', '||period||', 'wheeeee', '||period||', '||period||', '||period||', '||return|', 'tv_father:', '||left_parentheses||', 'to', 'the', 'camera', '||right_parentheses||', 'i', 'guess', 'every', 'father', 'thinks', 'his', 'daughter', 'is', 'the', 'cutest', '||period||', '||return|', 'jack_larson:', 'well', '||comma||', 'now', '||comma||', "there's", 'a', 'way', 'to', 'prove', 'it', '||period||', '||return|', 'tv_father:', 'wow', '||comma||', 'president', 'of', 'laramie', 'cigarettes', '||comma||', 'jack', 'larson', '||exclamation_mark||', '||return|', 'jack_larson:', 'this', 'year', '||comma||', 'laramie', 'is', 'sponsoring', 'the', 'little', 'miss', 'springfield', 'pageant', '||period||', 'you', 'see', '||comma||', 'government', 'regulations', 'prohibit', 'us', 'from', 'advertising', 'on', 'tv', '||period||', '||left_parentheses||', 'he', 'takes', 'out', 'a', 'cigarette', 'and', 'smokes', 'it', '||right_parentheses||', 'ah', '||comma||', 'that', 'sweet', 'carolina', 'smoke', '||period||', 'but', 'they', "can't", 'prohibit', 'us', 'from', 'holding', 'a', 'beauty', 'pageant', 'for', 'little', 'girls', 'age', 'seven', 'to', 'nine', '||period||', '||return|', 'homer_simpson:', "lisa's", 'age', 'seven', 'to', 'nine', '||exclamation_mark||', '||return|', 'jack_larson:', 'your', 'daughter', 'could', 'be', 'crowned', 'little', 'miss', 'springfield', 'by', 'our', 'host', '||comma||', 'the', 'maitre', "d'", 'of', 'glee', '||comma||', 'krusty', 'the', 'clown', '||exclamation_mark||', '||return|', 'krusty_the_clown:', 'i', 'heartily', 'endorse', 'this', 'event', 'or', 'product', '||period||', '||return|', 'tv_daughter:', 'what', 'a', 'feeling', '||exclamation_mark||', "i'm", 'as', 'happy', 'as', 'a', 'smoker', 'taking', 'that', 'first', 'puff', 'in', 'the', 'morning', '||period||', '||return|', 'homer_simpson:', 'that', 'could', 'be', 'lisa', '||exclamation_mark||', '||return|', 'announcer:', 'the', 'little', 'miss', 'springfield', 'pageant', '||period||', 'only', '250', 'dollars', 'to', 'enter', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'barney', '||comma||', 'will', 'you', 'give', 'me', '250', 'bucks', 'for', 'this', 'blimp', 'ticket', '||question_mark||', '||return|', 'barney_gumble:', 'sure', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasps', '||right_parentheses||', "where'd", 'you', 'get', 'all', 'the', 'money', '||question_mark||', '||return|', 'barney_gumble:', 'from', 'some', 'scientists', '||period||', 'since', 'they', 'stopped', 'testing', 'on', 'animals', '||comma||', 'a', 'guy', 'like', 'me', 'can', 'really', 'clean', 'up', '||period||', '||return|', '||return|', '||return|', 'mrs', '||period||', '_powers:', 'but', 'it', 'says', '||quotation_mark||', 'good', 'for', 'one', 'free', 'beer', 'at', "moe's", '||period||', '||quotation_mark||', 'this', 'is', "moe's", 'tavern', '||comma||', "isn't", 'it', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'lying', '||right_parentheses||', 'no', '||comma||', 'this', 'is', '||period||', '||period||', '||period||', "bo's", 'cavern', '||period||', '||return|', 'mrs', '||period||', '_powers:', '||left_parentheses||', 'disgusted', '||right_parentheses||', 'give', 'me', 'my', 'beer', '||period||', '||return|', 'moe_szyslak:', 'stupid', 'welcome', 'mobile', '||comma||', 'i', 'knew', 'it', 'would', 'ruin', 'me', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'just', 'a', 'sec', '||comma||', "i'll", 'check', '||period||', '||left_parentheses||', 'to', 'everyone', '||right_parentheses||', 'amanda', 'huggenkiss', '||exclamation_mark||', 'hey', '||comma||', "i'm", 'looking', 'for', 'amanda', 'huggenkiss', '||exclamation_mark||', 'why', "can't", 'i', 'find', 'amanda', 'huggenkiss', '||exclamation_mark||', '||return|', 'barney_gumble:', 'maybe', 'your', 'standards', 'are', 'too', 'high', '||period||', '||return|', 'moe_szyslak:', 'you', 'little', 's', '||period||', 'o', '||period||', 'b', '||period||', '||comma||', 'if', 'i', 'ever', 'find', 'out', 'who', 'you', 'are', "i'm", 'gonna', 'shove', 'a', 'sausage', 'down', 'your', 'throat', 'and', 'stick', 'starving', 'dogs', 'in', 'your', 'butt', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'ah-ha', '||comma||', 'big', 'mistake', 'pal', '||exclamation_mark||', '||left_parentheses||', 'to', 'self', '||right_parentheses||', 'i', 'knew', "he'd", 'slip', 'up', 'sooner', 'or', 'later', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'yes', '||period||', 'rusty', 'and', 'dull', '||period||', '||return|', 'moe_szyslak:', 'barney', '||comma||', "don't", 'steal', 'any', 'beer', 'while', "i'm", 'gone', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'shaking', 'his', 'head', '||right_parentheses||', 'what', 'kind', 'of', 'pathetic', 'drunk', 'do', 'you', 'take', 'me', 'for', '||question_mark||', '||left_parentheses||', 'gasp', '||right_parentheses||', 'somebody', 'spilled', 'beer', 'in', 'this', 'ashtray', '||period||', '||left_parentheses||', 'slurps', 'it', '||comma||', 'then', 'sighs', '||right_parentheses||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'homer', '||comma||', 'phone', 'call', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', 'uh-oh', '||period||', 'my', 'heart', 'just', 'stopped', '||period||', '||left_parentheses||', 'long', 'beat', '||right_parentheses||', 'ah', '||comma||', 'there', 'it', 'goes', '||period||', '||return|', 'moe_szyslak:', 'ivana', 'tinkle', '||period||', 'just', 'a', 'sec', '||period||', 'ivana', 'tinkle', '||period||', 'ivana', 'tinkle', '||period||', 'all', 'right', '||comma||', 'everybody', 'put', 'down', 'your', 'glasses', '||period||', 'ivana', 'tinkle', '||period||', '||return|', 'captain:', 'har', '||comma||', 'har', '||comma||', 'har', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'here', 'you', 'go', '||comma||', 'mr', '||period||', 'plow', '||period||', 'a', 'beer', 'on', 'the', 'house', '||period||', '||return|', 'barney_gumble:', 'wow', '||comma||', 'moe', '||comma||', 'you', "didn't", 'even', 'give', 'a', 'beer', 'to', 'those', 'freed', 'iranian', 'hostages', '||period||', '||return|', 'teenage_barney:', 'i', "don't", 'know', '||period||', 'the', "sat's", 'are', 'tomorrow', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'they', "shouldn't", 'have', 'been', 'there', 'in', 'the', 'first', 'place', '||period||', 'but', 'homer', 'is', 'a', 'real', 'hero', '||period||', '||return|', 'barney_gumble:', 'i', 'wish', 'i', 'was', 'a', 'hero', '||period||', '||return|', 'homer_simpson:', 'well', 'wishing', "won't", 'make', 'it', 'so', '||period||', "you've", 'got', 'to', 'pull', 'up', 'your', 'diaper', '||comma||', 'get', 'out', 'there', '||comma||', 'and', 'be', 'the', 'best', 'damn', 'barney', 'you', 'can', 'be', '||period||', '||return|', 'barney_gumble:', 'here', 'i', 'come', 'world', '||exclamation_mark||', '||return|', 'homer_simpson:', 'how', 'do', 'you', 'think', "he'll", 'do', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'proudly', '||right_parentheses||', 'i', 'think', "he'll", 'do', 'just', 'fine', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'barney', '||right_parentheses||', 'linda', 'ronstadt', '||question_mark||', "how'd", 'you', 'get', 'her', '||question_mark||', '||return|', 'barney_gumble:', 'eh', '||comma||', "we've", 'been', "lookin'", 'for', 'a', 'project', 'to', 'do', 'together', 'for', 'a', 'while', '||period||', '||return|', 'linda_ronstadt:', '||left_parentheses||', 'singing', '||right_parentheses||', 'when', 'the', 'snow', 'starts', 'a', "fallin'", '||period||', '||period||', '||period||', "there's", 'a', 'man', 'you', 'should', 'be', "callin'", '||period||', '||period||', '||period||', "that's", 'kl5-4796', '||dash||', 'let', 'it', 'ring', '||semicolon||', '/mr', '||period||', 'plow', 'is', 'a', 'loser', 'and', '/', 'i', 'think', 'he', 'is', 'a', 'boozer', '||period||', '||period||', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'singing', '||right_parentheses||', 'so', 'you', 'better', 'make', 'that', 'call', 'to', 'the', 'plow', 'king', '||period||', '||return|', 'homer_simpson:', 'how', 'could', 'you', '||comma||', 'barney', '||question_mark||', 'after', 'all', "i've", 'done', 'for', 'you', '||period||', '||return|', 'teenage_barney:', '||left_parentheses||', 'intelligent', '||right_parentheses||', 'lachrymose', 'is', 'to', 'dyspeptic', 'as', 'ebullient', 'is', 'to', '||period||', '||period||', '||period||', '||left_parentheses||', 'thinks', '||right_parentheses||', 'effervescent', '||exclamation_mark||', '||left_parentheses||', 'checks', 'answer', '||right_parentheses||', 'all', 'right', '||exclamation_mark||', 'harvard', 'here', 'i', 'come', '||exclamation_mark||', '||return|', 'teenage_barney:', 'all', 'right', '||period||', 'just', 'one', '||dash||', 'if', "it'll", 'get', 'you', 'off', 'my', 'back', '||period||', '||return|', 'teenage_barney:', 'hey', '||comma||', 'where', 'have', '||left_parentheses||', 'belches', '||quotation_mark||', 'you', '||quotation_mark||', '||right_parentheses||', 'been', 'all', 'my', 'life', '||question_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', "let's", 'have', 'a', 'minute', 'of', 'silent', 'prayer', 'for', 'our', 'good', 'friend', 'homer', 'simpson', '||period||', '||return|', 'barney_gumble:', 'how', 'long', 'has', 'it', 'been', '||question_mark||', '||return|', 'moe_szyslak:', 'six', 'seconds', '||period||', '||return|', 'barney_gumble:', 'do', 'we', 'have', 'to', 'start', 'over', '||question_mark||', '||return|', 'moe_szyslak:', 'hell', '||comma||', 'no', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'reading', '||right_parentheses||', '||quotation_mark||', 'to', 'moe', '||dash||', 'from', 'your', 'secret', 'admirer', '||period||', '||quotation_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'gives', 'a', 'little', 'wave', '||right_parentheses||', 'yoo', 'hoo', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'god', '||comma||', 'no', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'snide', '||right_parentheses||', 'well', '||comma||', 'well', 'look', 'who', 'it', 'is', '||period||', 'mr', '||period||', '||quotation_mark||', 'i', "don't", 'need', 'alcohol', 'to', 'enjoy', 'life', '||period||', '||quotation_mark||', 'we', 'hate', 'him', '||comma||', 'right', 'fellas', '||question_mark||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'gimme', 'a', 'beer', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'cheery', '||right_parentheses||', 'hey', 'everybody', '||exclamation_mark||', "homer's", 'back', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'a', 'little', 'too', 'desperate', '||right_parentheses||', "c'mon", 'homer', '||period||', 'do', 'it', 'for', 'your', 'old', 'pal', 'moesy', '||period||', '||return|', 'barney_gumble:', 'but', 'moe', '||period||', 'yesterday', 'you', 'called', 'homer', 'a', 'worthless', 'sack', 'of', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'pipe', 'down', '||comma||', 'rub-a-dub', '||period||', '||return|', 'barney_gumble:', 'ow', '||period||', '||return|', 'homer_simpson:', 'put', 'it', 'in', 'the', 'fridge', '||comma||', 'moe', '||period||', 'i', 'got', 'a', 'date', 'with', 'my', 'wife', '||period||', '||return|', 'moe_szyslak:', "you'll", 'be', 'back', '||period||', '||left_parentheses||', 'pointing', 'around', '||right_parentheses||', 'and', 'so', 'will', 'you', '||period||', '||period||', '||period||', 'and', 'you', '||period||', '||period||', '||period||', 'and', 'you', '||exclamation_mark||', '||return|', 'barney_gumble:', 'of', 'course', "i'll", 'be', 'back', '||period||', 'if', 'you', "didn't", 'close', '||comma||', "i'd", 'never', 'leave', '||period||', '||return|', '||return|', '||return|', 'anthony_kiedis:', 'you', 'told', 'our', 'agent', 'this', 'place', 'holds', 'thirty-thousand', 'people', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'lying', '||right_parentheses||', 'it', 'does', '||period||', 'we', 'had', 'thirty', 'thousand', 'here', 'last', 'night', '||period||', 'now', 'play', '||period||', 'the', 'audience', 'is', "gettin'", 'restless', '||period||', '||return|', 'barney_gumble:', 'we', 'want', 'chilly', 'willy', '||exclamation_mark||', 'we', 'want', 'chilly', 'willy', '||exclamation_mark||', '||return|', 'bart_simpson:', 'hey', '||comma||', 'red', 'hot', 'chili', 'peppers', '||period||', 'would', 'you', 'guys', 'like', 'to', 'appear', 'on', 'a', 'krusty', 'the', 'klown', 'special', '||question_mark||', '||return|', 'flea:', '||left_parentheses||', 'aside', '||right_parentheses||', 'sure', '||dash||', 'if', 'you', 'get', 'us', 'out', 'of', 'this', 'gig', '||period||', '||return|', 'bart_simpson:', 'no', 'problemo', '||period||', '||left_parentheses||', 'points', '||right_parentheses||', 'hey', '||comma||', 'moe', '||exclamation_mark||', 'look', 'over', 'there', '||period||', '||return|', 'moe_szyslak:', 'what', '||question_mark||', '||period||', '||period||', '||period||', 'what', 'am', 'i', "lookin'", 'at', '||question_mark||', 'i', "don't", 'see', "nothin'", '||period||', "i'm", 'gonna', 'stop', 'looking', 'soon', '||period||', '||period||', '||period||', 'what', '||period||', '||period||', '||period||', 'what', '||comma||', 'is', 'that', 'it', '||question_mark||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'moe', '||comma||', 'can', 'i', 'look', 'too', '||question_mark||', '||return|', 'moe_szyslak:', 'sure', '||comma||', 'but', "it'll", 'cost', 'ya', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'excited', '||right_parentheses||', 'my', "wallet's", 'in', 'the', 'car', '||period||', '||return|', 'moe_szyslak:', 'he', 'is', 'so', 'stupid', '||period||', 'and', 'now', '||comma||', 'back', 'to', 'the', 'wall', '||period||', '||period||', '||period||', '||left_parentheses||', 'he', 'stares', '||right_parentheses||', '||return|', 'miss_lois_pennycandy:', "here's", 'that', 'ruby-studded', 'clown', 'nose', 'you', 'ordered', '||comma||', 'krusty', '||period||', '||left_parentheses||', 'holds', 'it', 'up', '||right_parentheses||', '||return|', 'johnny_carson:', 'now', '||comma||', 'krusty', '||comma||', 'i', 'just', 'hope', 'you', 'remembered', 'to', 'save', 'your', 'money', 'this', 'time', '||period||', '||return|', 'moe_szyslak:', 'hey', 'you', "can't", 'come', 'in', 'here', 'dressed', 'like', 'that', '||period||', '||return|', 'dr', '||period||', '_julius_hibbert:', 'get', 'with', 'the', 'times', '||comma||', 'moe', '||period||', '||return|', 'chief_wiggum:', 'yeah', '||period||', 'i', 'say', '||comma||', 'if', 'it', 'feels', 'good', '||comma||', 'do', 'it', '||period||', '||return|', 'dr', '||period||', '_julius_hibbert:', 'all', 'right', '||period||', '||return|', 'chief_wiggum:', "don't", 'snap', 'my', 'undies', '||period||', '||return|', 'krusty_the_clown:', "i'm", 'a', 'star', 'again', '||period||', '||left_parentheses||', 'warmly', '||right_parentheses||', 'i', "don't", 'know', 'how', 'to', 'thank', 'you', 'kids', '||period||', '||return|', 'bart_simpson:', "that's", 'alright', '||comma||', 'krusty', '||period||', '||return|', 'lisa_simpson:', "we're", 'getting', '50%', 'of', 'the', 't-shirt', 'sales', '||period||', '||return|', 'krusty_the_clown:', '||left_parentheses||', 'mad', '||right_parentheses||', 'what', '||exclamation_mark||', '||question_mark||', "that's", 'the', 'sweetest', 'plum', '||period||', 'you', '||period||', '||period||', '||period||', 'little', '||period||', '||period||', '||period||', '||left_parentheses||', 'then', '||right_parentheses||', 'ahh', '||period||', 'what', 'the', 'hell', '||period||', 'you', 'deserve', 'it', '||period||', 'thanks', 'kids', '||period||', '||return|', 'bart_simpson:', 'to', 'krusty', '||period||', 'the', 'greatest', 'entertainer', 'in', 'the', 'world', '||period||', '||left_parentheses||', 'points', '||right_parentheses||', 'except', 'maybe', 'that', 'guy', '||period||', '||return|', 'grampa_simpson:', 'is', 'this', 'the', 'bus', 'to', 'the', 'civic', 'center', '||question_mark||', '||return|', '||return|', '||return|', 'seymour_skinner:', '||left_parentheses||', 'singing', '||right_parentheses||', 'hello', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'singing', '||right_parentheses||', 'hello', '||period||', '||period||', '||period||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'singing', '||right_parentheses||', 'hello', '||period||', '||period||', '||period||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'singing', '||right_parentheses||', 'hello', '||period||', '||period||', '||period||', '||return|', 'all:', '||left_parentheses||', 'singing', '||right_parentheses||', 'hello', '||comma||', 'ma', 'baby', '/', 'hello', '||comma||', 'ma', 'honey', '/', 'hello', '||comma||', 'ma', 'ragtime', '||comma||', 'ragtime', 'gal', '/', 'send', 'me', 'a', 'kiss', 'by', 'wire', '||period||', '||period||', '||period||', 'etc', '||period||', '||return|', 'homer_simpson:', 'every', 'afternoon', 'at', "moe's", '||comma||', 'chief', 'wiggum', '||comma||', 'principal', 'skinner', '||comma||', 'apu', 'and', 'i', 'would', 'get', 'together', 'and', 'sing', '||period||', '||period||', '||period||', 'and', 'the', 'crowds', 'went', 'wild', '||period||', '||return|', 'barney_gumble:', 'yoo', 'hoo', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sings', '||right_parentheses||', 'so', 'goodbye', '||period||', '||period||', '||period||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'sings', '||right_parentheses||', 'farewell', '||period||', '||period||', '||period||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'sings', '||right_parentheses||', 'shop', 'kwik-e-mart', 'and', 'save', '||period||', '||period||', '||period||', '||return|', 'all:', 'goodbye', 'my', 'coney', 'isle', '/', 'goodbye', 'my', 'coney', 'isle', '/', 'goodbye', 'my', 'coney', 'island', 'babe', '||exclamation_mark||', '||return|', 'nigel_bakerbutcher:', 'homer', '||comma||', "i'm", 'a', 'theatrical', 'agent', '||comma||', 'and', 'i', 'want', 'to', 'represent', 'your', 'group', '||period||', '||return|', 'homer_simpson:', 'really', '||question_mark||', '||return|', 'nigel_bakerbutcher:', 'yeah', '||exclamation_mark||', '||return|', 'nigel_bakerbutcher:', "you've", 'got', '||period||', '||period||', '||period||', 'it', '||exclamation_mark||', '||left_parentheses||', 'distaste', '||right_parentheses||', 'all', 'except', 'that', 'police', 'officer', '||period||', '||left_parentheses||', 'disgusted', 'noise', '||right_parentheses||', 'too', 'village', 'people', '||period||', "you'll", 'have', 'to', 'replace', 'him', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sly', '||right_parentheses||', 'just', 'leave', 'it', 'to', 'me', '||period||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'shaking', 'hands', '||right_parentheses||', 'principal', 'seymour', 'skinner', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'apu', 'nahasapeemapetilon', '||period||', '||return|', 'nigel_bakerbutcher:', 'never', 'fit', 'on', 'a', 'marquee', '||comma||', 'luv', '||period||', 'from', 'now', 'on', '||comma||', 'your', 'name', 'is', 'apu', 'du', 'beaumarchais', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'it', 'is', 'a', 'great', 'dishonor', 'to', 'my', 'ancestors', 'and', 'my', 'god', '||comma||', 'but', 'okay', '||period||', '||return|', 'homer_simpson:', 'it', 'was', 'one', 'lousy', 'applicant', 'after', 'another', '||period||', 'and', 'then', '||period||', '||period||', '||period||', '||return|', 'tenor:', '||left_parentheses||', 'singing', '||right_parentheses||', 'over', 'in', 'killarney', '/', 'so', 'many', 'years', 'ago', '||period||', '||period||', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'such', 'a', 'voice', '||exclamation_mark||', '||return|', 'seymour_skinner:', 'who', 'is', 'that', '||question_mark||', '||return|', 'tenor:', '||left_parentheses||', 'singing', '||right_parentheses||', 'me', 'mither', 'sang', 'this', 'song', 'to', 'me', '/', 'in', 'tones', 'so', 'soft', 'and', '||left_parentheses||', 'belch', '||right_parentheses||', '||period||', '||period||', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'barney', '||exclamation_mark||', '||return|', 'crowd:', '||left_parentheses||', 'chanting', '||right_parentheses||', 'wiggum', 'forever', '||comma||', 'barney', 'never', '||exclamation_mark||', 'wiggum', 'forever', '||comma||', 'barney', 'never', '||exclamation_mark||', '||period||', '||period||', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'sings', '||right_parentheses||', 'swe-ee-ee-ee-eet', 'adeleine', '||period||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'sings', '||right_parentheses||', 'sweet', 'adeleine', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'sings', '||right_parentheses||', 'my-y-y-y-y-y', 'adeleine', '||period||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'sings', '||right_parentheses||', 'my', 'adeleine', '||period||', '||period||', '||period||', '||period||', '||return|', 'crowd:', '||left_parentheses||', 'chanting', '||right_parentheses||', 'barney', 'forever', '||comma||', 'wiggum', 'never', '||exclamation_mark||', 'barney', 'forever', '||comma||', 'wiggum', 'never', '||exclamation_mark||', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'those', 'girls', 'you', 'paid', 'to', 'scream', 'are', 'doing', 'a', 'great', 'job', '||period||', '||return|', 'nigel_bakerbutcher:', 'i', "didn't", 'pay', 'any', 'girls', 'to', 'scream', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'too', 'big', '||right_parentheses||', 'hanh', '||question_mark||', '||exclamation_mark||', '||exclamation_mark||', '||exclamation_mark||', '||return|', 'all:', '||left_parentheses||', 'ad', 'lib', '||right_parentheses||', 'look', 'at', 'this', '||period||', '/', 'we', 'sounded', 'great', '||comma||', 'huh', '||question_mark||', '/', 'etc', '||period||', '||return|', 'seymour_skinner:', 'only', 'one', 'question', 'remains', 'gentlemen', '||period||', 'what', 'do', 'we', 'call', 'ourselves', '||question_mark||', '||return|', 'nigel_bakerbutcher:', 'how', 'about', 'handsome', 'homer', 'simpson', 'plus', 'three', '||question_mark||', '||return|', 'barney_gumble:', 'i', 'like', 'it', '||period||', '||return|', 'seymour_skinner:', 'we', 'need', 'a', 'name', "that's", 'witty', 'at', 'first', '||comma||', 'but', 'that', 'seems', 'less', 'funny', 'each', 'time', 'you', 'hear', 'it', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'how', 'about', 'the', 'be', 'sharps', '||exclamation_mark||', '||return|', 'seymour_skinner:', 'perfect', '||period||', '||return|', 'homer_simpson:', 'the', 'be', 'sharps', '||period||', '||return|', 'seymour_skinner:', 'the', 'be', 'sharps', '||period||', '||return|', 'barney_gumble:', 'the', 'be', 'sharps', '||period||', '||return|', 'chief_wiggum:', 'the', 'be', 'sharps', '||period||', '||left_parentheses||', 'nervous', 'chuckle', '||right_parentheses||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'nervous', 'chuckle', '||right_parentheses||', 'well', '||comma||', "can't", 'blame', 'a', 'guy', 'for', 'trying', '||period||', '||left_parentheses||', 'nervous', 'chuckle', '||right_parentheses||', 'aw', '||comma||', "you're", 'all', 'under', 'arrest', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'friendly', '||right_parentheses||', 'hey', '||comma||', 'barney', '||comma||', "what'll", 'it', 'be', '||question_mark||', '||return|', 'barney_gumble:', "i'd", 'like', 'a', 'beer', 'moe', '||period||', '||return|', 'kako:', "i'd", 'like', 'a', 'single', 'plum', 'floating', 'in', 'perfume', '||comma||', 'served', 'in', 'a', "man's", 'hat', '||period||', '||return|', 'moe_szyslak:', 'here', 'you', 'go', '||period||', '||return|', '||return|', '||return|', 'lisa_simpson:', 'we', 'know', "you're", 'the', 'one', 'behind', 'this', '||period||', 'so', 'knock', 'it', 'off', 'or', "we're", 'going', 'to', 'the', 'cops', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'quietly', '||right_parentheses||', 'no', 'no', '||comma||', "i'll", 'take', 'care', 'of', 'it', '||period||', '||return|', 'moe_szyslak:', 'okay', "it's", 'over', '||exclamation_mark||', 'get', "'em", 'out', 'of', 'here', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'bears', '||right_parentheses||', 'all', 'right', '||comma||', 'andalay', '||exclamation_mark||', 'andalay', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'sometimes', 'you', 'gotta', 'go', 'where', 'everybody', 'knows', 'your', 'name', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'very', 'up', '||right_parentheses||', 'hi', 'guys', '||exclamation_mark||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'get', 'the', 'darts', '||period||', 'i', 'want', 'to', 'play', '||period||', '||return|', 'moe_szyslak:', 'no', '||period||', "we're", 'phasing', 'out', 'the', 'games', '||period||', 'people', 'drink', 'less', 'when', "they're", "havin'", 'fun', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'moe', '||comma||', 'i', 'need', 'your', 'advice', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||period||', '||return|', 'homer_simpson:', 'see', '||comma||', 'i', 'got', 'this', 'friend', 'named', '||period||', '||period||', '||period||', '||left_parentheses||', 'pause', '||right_parentheses||', 'joey', 'joe', 'joe', 'junior', '||period||', '||period||', '||period||', '||left_parentheses||', 'pause', '||right_parentheses||', 'schabadoo', '||period||', '||return|', 'moe_szyslak:', "that's", 'the', 'worst', 'name', 'i', 'ever', 'heard', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'calling', 'after', 'him', '||right_parentheses||', 'hey', '||comma||', 'joey', 'joe', 'joe', '||exclamation_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'what', 'the', 'hell', '||comma||', "it's", 'me', '||period||', "i'm", 'attracted', 'to', 'another', 'woman', '||period||', 'what', 'am', 'i', 'going', 'to', 'do', '||question_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'reciting', '||right_parentheses||', '||quotation_mark||', 'your', 'infatuation', 'is', 'based', 'on', 'a', 'physical', 'attraction', '||period||', 'talk', 'to', 'the', 'woman', '||comma||', 'and', "you'll", 'realize', 'you', 'have', 'nothing', 'in', 'common', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', 'barney', '||period||', 'that', 'is', 'so', 'insightful', '||period||', 'how', 'did', 'you', 'come', 'up', 'with', 'that', '||question_mark||', '||return|', 'barney_gumble:', 'it', 'was', 'on', 'one', 'of', 'these', 'bar', 'napkins', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'okay', '||comma||', "we've", 'got', 'the', 'secret', 'vigilante', 'handshake', '||period||', 'now', 'we', 'need', 'code', 'names', '||period||', "i'll", 'be', '||quotation_mark||', 'cueball', '||period||', '||quotation_mark||', 'skinner', 'can', 'be', '||quotation_mark||', 'eightball', '||quotation_mark||', '||comma||', 'barney', 'will', 'be', '||quotation_mark||', 'twelveball', '||comma||', '||quotation_mark||', 'and', 'moe', '||comma||', 'you', 'can', 'be', '||quotation_mark||', 'cueball', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', "you're", 'an', 'idiot', '||period||', '||return|', '||return|', '||return|', 'dr', '||period||', '_babcock:', 'excuse', 'me', '||question_mark||', '||return|', 'homer_simpson:', 'hello', '||comma||', 'is', 'this', 'president', 'clinton', '||question_mark||', 'good', '||period||', 'i', 'figured', 'if', 'anyone', 'knew', 'where', 'to', 'get', 'some', 'tang', "it'd", 'be', 'you', '||period||', '||period||', '||period||', 'shut', 'up', '||exclamation_mark||', '||return|', 'dr', '||period||', '_babcock:', 'are', 'you', 'the', 'person', 'that', 'called', 'nasa', 'yesterday', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasp', '||right_parentheses||', 'no', '||period||', 'it', "wasn't", 'me', '||comma||', 'i', 'swear', '||period||', 'it', 'was', '||period||', '||period||', '||period||', 'him', '||period||', '||return|', 'stillwater:', 'sir', '||comma||', 'how', 'would', 'you', 'like', 'to', 'get', 'higher', 'than', "you've", 'ever', 'been', 'in', 'your', 'life', '||question_mark||', '||return|', 'barney_gumble:', 'be', 'an', 'astronaut', '||question_mark||', 'sure', '||period||', '||return|', 'stillwater:', 'well', '||comma||', 'welcome', 'aboard', '||period||', 'i', 'think', "you'll", 'find', 'that', 'this', 'will', 'win', 'you', 'the', 'respect', 'of', 'your', 'family', 'and', 'friends', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasp', '||right_parentheses||', 'respect', '||question_mark||', '||exclamation_mark||', 'nooo', '||exclamation_mark||', 'it', 'was', 'me', '||exclamation_mark||', 'i', 'made', 'the', 'crank', 'call', '||period||', 'i', 'do', 'it', 'all', 'the', 'time', '||period||', 'check', 'with', 'the', 'fbi', '||comma||', 'i', 'have', 'a', 'file', '||period||', 'i', 'have', 'a', 'fiiiiile', '||period||', '||return|', 'stillwater:', '||left_parentheses||', 'shrugging', '||right_parentheses||', 'eh', '||comma||', 'better', 'take', 'both', 'of', 'them', '||period||', '||return|', 'stillwater:', 'i', "don't", 'really', 'think', 'that', 'was', 'necessary', '||period||', 'they', 'wanted', 'to', 'be', 'astronauts', '||period||', '||return|', 'dr', '||period||', '_babcock:', 'i', 'know', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'hey', 'everyone', '||exclamation_mark||', '||return|', 'homer_simpson:', "i'd", 'like', 'to', 'introduce', 'ned', 'flanders', '||comma||', 'my', 'best', 'friend', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', 'hey', '||comma||', 'i', "don't", 'want', 'no', 'people', 'in', 'here', 'with', 'their', 'evils', 'of', 'alcohol', 'rap', '||period||', '||return|', 'ned_flanders:', 'wait', 'a', 'second', '||period||', "you're", 'the', 'man', 'at', 'the', 'hospital', 'who', 'reads', 'to', 'sick', 'children', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'i', 'think', "you're", 'taking', 'unfair', 'advantage', 'of', 'my', 'generous', 'offer', '||period||', '||return|', 'homer_simpson:', 'shut', 'up', '||period||', '||return|', '||return|', '||return|', 'marge_simpson:', 'i', 'can', 'hit', 'that', 'one', 'pin', 'all', 'right', '||period||', 'but', 'the', 'rest', 'of', 'them', "don't", 'even', 'wobble', '||period||', '||return|', 'moe_szyslak:', 'lemme', 'check', '||period||', '||left_parentheses||', 'to', 'barflies', '||right_parentheses||', 'phone', 'call', 'for', 'al', '||comma||', 'al', 'caholic', '||period||', '/', 'uh', '||comma||', 'jacques', 'strap', '||exclamation_mark||', '/', 'is', 'i', 'pee', 'freely', 'here', '||question_mark||', '/', 'hey', '||comma||', 'is', 'there', 'a', 'butts', 'here', '||question_mark||', 'seymour', 'butts', '||question_mark||', 'uh', '||comma||', 'homer', 'sexual', '/', 'my', 'crotch', '/', 'a', 'amanda', 'huggenkiss', '||question_mark||', '/', 'a', 'huge', 'ass', '/', '||quotation_mark||', 'ivanna', 'tinkle', '||quotation_mark||', '/', "i'm", 'a', 'stupid', 'moron', 'with', 'an', 'ugly', 'face', 'and', 'a', 'big', 'butt', '||comma||', 'and', 'my', 'butt', 'smells', '||comma||', 'and', 'i', 'like', 'to', 'kiss', 'my', 'own', 'butt', '||period||', '||return|', 'marge_simpson:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'no', '||comma||', 'ask', 'your', 'heart', 'what', 'its', 'fondest', 'desire', 'is', '||period||', '||return|', 'homer_simpson:', 'hm', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'mmmm', '||comma||', 'chocolate', '||period||', '||period||', '||period||', '/', 'mmmm', '||comma||', 'invisible', 'cola', '||period||', '/', 'mmmm', '||comma||', 'forbidden', 'donut', '||period||', '/', 'mmmm', 'sacrilicious', '||period||', 'mmmm', '||comma||', '||left_parentheses||', 'indecipherable', '||right_parentheses||', '/', 'mmmm', '||comma||', 'free', 'goo', '||period||', 'mmmm', '||comma||', 'something', '||period||', '||return|', 'marge_simpson:', 'no', '||comma||', 'think', 'about', 'people', '||period||', 'about', 'moments', 'in', 'your', 'life', 'that', 'have', 'been', 'very', 'romantic', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'okay', '||period||', '||return|', 'marge_simpson:', "that's", 'not', 'the', 'idea', 'at', 'all', '||period||', '||left_parentheses||', 'thinks', '||right_parentheses||', 'okay', '||comma||', 'well', 'this', 'story', "isn't", 'ideal', '||comma||', "i've", 'never', 'told', 'it', 'to', 'you', 'before', '||period||', '||return|', 'marge_simpson:', 'i', 'got', 'a', 'very', 'thoughtless', 'birthday', 'present', 'from', 'someone', 'who', 'shall', 'remain', 'nameless', '||period||', '||return|', 'marge_simpson:', 'so', 'i', 'actually', 'went', 'to', 'the', 'bowling', 'alley', 'to', 'spite', 'him', '||comma||', 'or', 'her', '||period||', '||period||', '||period||', '||left_parentheses||', 'more', 'clips', '||right_parentheses||', '||return|', 'marge_simpson:', '||left_parentheses||', 'embarrassed', '||right_parentheses||', 'oh', '||exclamation_mark||', '||return|', 'marge_simpson:', "i'm", 'awfully', 'sorry', '||period||', '||return|', 'jacques:', 'entirely', 'my', 'fault', '||period||', '||left_parentheses||', 'pause', '||right_parentheses||', 'it', 'is', 'nice', 'to', 'meet', 'you', '||period||', '||period||', '||period||', '||left_parentheses||', 'looks', 'at', 'her', 'ball', '||right_parentheses||', '||period||', '||period||', '||period||', 'homer', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'flustered', '||right_parentheses||', 'oh', '||comma||', 'no', '||comma||', 'no', '||period||', 'homer', 'is', 'my', '||period||', '||period||', '||period||', "ball's", 'name', '||period||', "i'm", 'marge', '||period||', '||return|', 'jacques:', 'your', 'fingers', 'are', 'so', 'slender', '||comma||', 'so', 'feminine', '||period||', 'they', 'are', 'far', 'too', 'tapered', 'for', 'the', 'ball', 'you', 'are', 'using', '||period||', 'you', 'need', 'something', 'lighter', '||comma||', 'more', 'delicate', '||period||', 'here', '||comma||', 'use', 'my', 'ball', '||period||', '||return|', 'marge_simpson:', 'no', '||period||', '||period||', '||period||', 'no', '||comma||', 'thank', 'you', '||comma||', 'mr', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', '||left_parentheses||', 'looks', 'at', 'the', 'name', 'on', 'his', 'ball', '||right_parentheses||', '||period||', '||period||', '||period||', 'brunswick', '||period||', '||return|', 'jacques:', 'call', 'me', 'jacques', '||period||', '||return|', 'marge_simpson:', 'jacques', '||period||', '||return|', 'jacques:', 'marge', '||period||', '||return|', 'marge_simpson:', 'hmmm', '||period||', '||return|', 'jacques:', 'may', 'i', 'ask', 'you', 'a', 'bold', 'question', '||question_mark||', '||return|', 'marge_simpson:', 'sure', '||period||', '||return|', 'jacques:', "you've", 'never', 'bowled', 'before', '||question_mark||', '||return|', 'marge_simpson:', 'never', '||period||', '||return|', 'jacques:', 'no', '||question_mark||', '||return|', 'marge_simpson:', 'no', '||period||', '||return|', 'jacques:', 'then', 'i', 'will', 'teach', 'you', '||period||', '||return|', 'marge_simpson:', 'oh', '||comma||', 'i', "don't", 'want', 'to', 'trouble', 'you', '||period||', '||return|', 'jacques:', 'not', 'at', 'all', '||period||', 'i', 'am', 'a', 'professional', '||period||', 'roll', 'the', 'ball', 'for', 'me', '||comma||', 'marge', '||period||', 'let', 'me', 'see', 'your', 'form', '||period||', '||return|', 'marge_simpson:', 'all', 'right', '||period||', 'but', "i'm", 'not', 'very', 'good', '||period||', '||return|', 'jacques:', 'i', 'can', 'help', 'you', '||comma||', 'marge', '||period||', 'pick', 'up', 'the', 'ball', '||period||', 'pick', 'up', 'homer', '||period||', 'pick', 'him', 'up', '||period||', '||return|', 'marge_simpson:', 'oh', '||exclamation_mark||', '||return|', 'jacques:', 'now', '||comma||', 'throw', '||exclamation_mark||', '||return|', 'marge_simpson:', 'but', '||period||', '||period||', '||period||', '||return|', 'jacques:', 'throw', '||comma||', 'damn', 'you', '||exclamation_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'gasps', '||right_parentheses||', "you're", 'a', 'very', 'good', 'teacher', '||exclamation_mark||', '||return|', '||return|', '||return|', 'lenny_leonard:', '||left_parentheses||', 'shifty', 'eyed', '||right_parentheses||', 'hey', '||comma||', 'moe', '||period||', 'you', 'got', 'change', 'for', 'a', 'five', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'sure', 'thing', '||comma||', 'lenny', '||period||', '||return|', 'moe_szyslak:', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ooh', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'a', 'snake', 'in', 'the', 'cash', 'register', '||period||', '||left_parentheses||', 'laughs', '||right_parentheses||', 'great', 'prank', '||comma||', 'fellas', '||comma||', 'great', '||period||', 'oh', '||comma||', "i'm", 'gonna', 'be', 'sick', 'tonight', '||period||', '||return|', 'barney_gumble:', 'hey', 'moe', '||comma||', 'you', 'wanna', 'smell', 'my', 'flower', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'genuinely', 'enthused', '||right_parentheses||', 'do', 'i', '||question_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'laughs', '||comma||', 'patting', 'out', 'flames', '||right_parentheses||', "i'm", "burnin'", 'up', '||comma||', 'here', '||period||', 'ooh', '||comma||', 'ooh', '||comma||', 'taking', 'advantage', 'of', 'my', 'alcohol', 'soaked', 'clothes', '||period||', '||left_parentheses||', 'laughs', '||right_parentheses||', "it's", 'funny', 'and', 'it', 'makes', 'you', 'think', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'serious', '||right_parentheses||', 'oh', 'i', 'need', 'some', 'coffee', 'before', 'i', 'black', 'out', '||period||', 'homer', '||comma||', 'pass', 'me', 'the', 'sugar', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'himself', '||right_parentheses||', 'this', 'is', 'gonna', 'to', 'be', 'great', '||period||', '||return|', 'moe_szyslak:', 'ooh', '||exclamation_mark||', '||return|', 'barney_gumble:', 'geez', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', "there's", 'sugar', 'all', 'over', 'the', 'bar', 'now', '||period||', '||return|', 'lenny_leonard:', "that's", 'not', 'funny', '||comma||', 'homer', '||period||', '||return|', 'barney_gumble:', 'yeah', '||comma||', 'we', 'were', 'just', "messin'", 'around', '||period||', 'and', 'you', 'had', 'to', 'go', 'too', 'far', '||period||', '||return|', 'moe_szyslak:', 'how', 'many', 'people', 'want', 'homer', 'banned', 'from', 'this', 'place', 'for', 'life', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'pleading', '||right_parentheses||', 'ah', '||comma||', 'come', 'on', '||comma||', 'everybody', '||period||', 'this', 'bar', 'is', 'like', 'a', 'tavern', 'to', 'me', '||period||', '||return|', 'moe_szyslak:', 'sorry', '||comma||', 'homer', '||period||', 'you', 'should', 'have', 'thought', 'of', 'that', 'before', 'you', 'gave', 'me', 'the', 'old', 'sugar-me-do', '||period||', "i'm", 'taking', 'your', 'caricature', 'down', 'from', 'mt', '||period||', 'lushmore', '||period||', '||return|', 'moe_szyslak:', 'and', "i'm", 'pulling', 'your', 'favorite', 'song', 'out', 'of', 'the', 'juke', 'box', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasp', '||right_parentheses||', '||quotation_mark||', "it's", 'raining', 'men', '||question_mark||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'not', 'no', 'more', 'it', "ain't", '||period||', '||return|', 'waylon_smithers:', 'oww', '||period||', '||left_parentheses||', 'reading', 'label', '||comma||', 'suddenly', 'intrigued', '||right_parentheses||', 'ohh', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'jokes', 'on', 'them', '||period||', "i'm", 'still', 'alive', '||period||', '||return|', 'man:', '||left_parentheses||', 'very', 'polite', '||right_parentheses||', 'greetings', '||comma||', 'good', 'man', '||period||', 'might', 'i', 'trouble', 'you', 'for', 'a', 'drink', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'get', 'outta', 'here', '||comma||', 'homer', '||period||', '||return|', 'man:', '||left_parentheses||', 'too', 'innocent', '||right_parentheses||', '||quotation_mark||', 'homer', '||question_mark||', '||quotation_mark||', 'who', 'is', 'homer', '||question_mark||', 'my', 'name', 'is', 'guy', 'incognito', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasps', '||right_parentheses||', 'gr-aargh', '||exclamation_mark||', 'oh', 'my', 'god', '||comma||', 'this', 'man', 'is', 'my', 'exact', 'double', '||period||', '||left_parentheses||', 'gasps', 'with', 'equal', 'astonishment', '||right_parentheses||', 'that', 'dog', 'has', 'a', 'puffy', 'tail', '||exclamation_mark||', '||return|', 'homer_simpson:', 'here', '||comma||', 'puff', '||exclamation_mark||', 'here', 'puff', '||exclamation_mark||', '||left_parentheses||', 'giggles', '||right_parentheses||', '||return|', 'homer_simpson:', 'the', 'last', 'bar', 'in', 'springfield', '||period||', 'if', 'they', "don't", 'let', 'me', 'in', 'here', '||comma||', "i'm", 'gonna', 'have', 'to', 'quit', 'drinking', '||period||', '||return|', 'homer_simpson:', 'shut', 'up', '||comma||', 'liver', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'puzzled', '||right_parentheses||', 'ooh', '||comma||', 'my', 'liver', 'hurts', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'sure', '||comma||', 'homer', '||comma||', 'i', 'can', 'loan', 'you', 'all', 'the', 'money', 'you', 'need', '||period||', 'however', '||left_parentheses||', 'he', 'leans', 'in', 'confidentially', '||right_parentheses||', 'since', 'you', 'have', 'no', 'collateral', '||comma||', "i'm", 'gonna', 'have', 'to', 'break', 'your', 'legs', 'in', 'advance', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'looking', 'at', 'his', 'legs', '||right_parentheses||', 'gosh', '||comma||', 'moe', '||comma||', 'i', 'use', 'these', 'all', 'the', 'time', '||period||', "couldn't", 'you', 'just', 'bash', 'my', 'head', 'in', '||question_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||exclamation_mark||', 'are', 'you', 'a', 'loan', 'shark', '||question_mark||', 'do', 'you', 'understand', 'how', 'finance', 'works', '||question_mark||', '||left_parentheses||', 'he', 'pulls', 'out', 'a', 'huge', 'sledge-hammer', '||right_parentheses||', 'now', "let's", 'do', 'this', 'thing', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', "there's", 'a', 'line', 'in', '||quotation_mark||', 'othello', '||quotation_mark||', 'about', 'a', 'drinker', '||dash||', '||quotation_mark||', 'now', 'a', 'sensible', 'man', '||comma||', 'by', 'and', 'by', 'a', 'fool', '||comma||', 'and', 'presently', 'a', 'beast', '||period||', '||quotation_mark||', 'that', 'pretty', 'well', 'covers', 'it', '||period||', '||return|', 'woman:', "it's", 'brilliant', '||period||', 'savagely', 'honest', '||comma||', 'tender', '||dash||', 'he', 'has', 'the', 'soul', 'of', 'a', 'poet', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'turning', 'to', 'her', '||right_parentheses||', "you're", 'very', 'kind', '||period||', '||return|', 'woman:', '||left_parentheses||', 'disgusted', '||right_parentheses||', 'excuse', 'me', 'did', 'something', 'crawl', 'down', 'your', 'throat', 'and', 'die', '||question_mark||', '||return|', 'barney_gumble:', 'it', "didn't", 'die', '||period||', '||return|', 'barney_gumble:', 'my', 'name', 'is', 'barney', 'and', "i'm", 'an', 'alcoholic', '||period||', '||return|', 'lisa_simpson:', 'mr', '||period||', 'gumbel', '||comma||', 'this', 'is', 'a', 'girl', 'scout', 'meeting', '||period||', '||return|', 'barney_gumble:', 'is', 'it', '||question_mark||', 'or', 'is', 'it', 'that', 'you', 'girls', "can't", 'admit', 'you', 'have', 'a', 'problem', '||question_mark||', '||return|', '||return|', '||return|', 'kent_brockman:', 'and', 'tonight', 'the', 'following', 'celebrities', 'have', 'been', 'arrested:', '||return|', 'kent_brockman:', '||period||', '||period||', '||period||', 'while', 'heather', 'locklear', 'fortensky', 'remains', 'at', 'large', '||period||', 'remember', '||comma||', 'if', 'you', 'see', 'any', 'celebrities', '||comma||', 'consider', 'them', 'dangerous', '||period||', '||return|', 'hugh:', 'you', 'know', '||comma||', 'i', 'rather', 'like', 'this', 'pub', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'pouring', '||right_parentheses||', 'oh', '||comma||', 'an', 'english', 'boy', '||comma||', 'eh', '||question_mark||', 'you', 'know', 'we', 'saved', 'your', 'ass', 'in', 'world', 'war', 'two', '||period||', '||return|', 'hugh:', 'yeah', '||comma||', 'well', '||comma||', 'we', 'saved', 'your', 'ass', 'in', 'world', 'war', 'three', '||period||', '||return|', 'moe_szyslak:', "that's", 'true', '||period||', '||return|', 'homer_simpson:', 'hugh', '||comma||', "there's", 'something', 'i', 'want', 'you', 'to', 'have', '||period||', 'my', 'dad', 'gave', 'me', 'his', 'cuff', 'links', 'to', 'wear', 'on', 'the', 'day', 'i', 'married', 'marge', '||comma||', 'and', 'they', 'brought', 'us', 'good', 'luck', '||period||', 'i', "couldn't", 'imagine', 'a', 'happier', 'marriage', '||period||', 'we', "don't", 'have', 'many', 'traditions', 'in', 'our', 'family', '||comma||', 'but', "it'd", 'mean', 'a', 'lot', 'to', 'me', 'if', 'you', 'kept', 'this', 'one', 'alive', '||period||', '||return|', 'hugh:', '||left_parentheses||', 'moved', '||right_parentheses||', 'well', "i'd", 'be', 'honored', '||period||', '||period||', '||period||', '||return|', 'hugh:', '||left_parentheses||', 'finishing', 'with', 'less', 'enthusiasm', '||right_parentheses||', '||period||', '||period||', '||period||', 'to', 'wear', '||period||', '||period||', '||period||', 'those', '||period||', '||period||', '||period||', 'things', '||period||', '||return|', 'bart_simpson:', 'ow', '||exclamation_mark||', 'hey', 'watch', 'those', 'virtual', 'darts', '||period||', "i'm", 'trying', 'to', 'play', 'virtual', 'pool', '||exclamation_mark||', '||return|', 'other_player:', 'ow', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'no', "fightin'", 'in', 'my', 'bar', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'hey', '||exclamation_mark||', 'if', 'you', 'guys', 'are', 'getting', 'loaded', 'off', 'them', 'fumes', '||comma||', "i'm", 'gonna', 'have', 'to', 'charge', 'ya', '||period||', '||return|', 'barney_gumble:', 'these', 'fumes', "aren't", 'as', 'fun', 'as', 'beer', '||period||', 'sure', '||comma||', "i'm", 'all', 'dizzy', 'and', 'nauseous', '||comma||', 'but', "where's", 'the', 'inflated', 'sense', 'of', 'self-esteem', '||question_mark||', '||return|', 'male_inspector:', '||left_parentheses||', 'shocked', '||right_parentheses||', 'man', 'alive', '||exclamation_mark||', 'there', 'are', 'men', 'alive', 'in', 'here', '||exclamation_mark||', '||return|', 'female_inspector:', "i'm", 'detecting', 'over', 'twenty', 'different', 'toxins', 'in', 'the', 'air', '||period||', '||return|', 'male_inspector:', 'all', 'right', '||comma||', 'everybody', 'out', '||exclamation_mark||', 'as', 'long', 'as', 'burns', 'is', 'pumping', 'oil', '||comma||', 'this', 'bar', 'is', 'closed', '||period||', '||return|', 'moe_szyslak:', 'damn', 'burns', '||period||', '||period||', '||period||', '||left_parentheses||', 'steely-eyed', 'rage', '||right_parentheses||', 'lemme', 'just', 'get', 'one', 'thing', '||period||', '||return|', 'barney_gumble:', 'me', 'too', '||period||', '||return|', 'barney_gumble:', 'ahhhh', '||comma||', 'now', "there's", 'the', 'inflated', 'sense', 'of', 'self-esteem', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', 'wow', '||exclamation_mark||', 'you', 'mean', 'you', 'were', 'one', 'of', 'the', 'original', 'little', 'rascals', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||period||', '||return|', 'homer_simpson:', 'which', 'one', 'were', 'you', '||question_mark||', 'the', 'ugly', 'one', '||question_mark||', '||return|', 'homer_simpson:', 'were', 'you', 'the', 'ugly', 'one', '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||period||', 'i', 'was', 'the', 'tough', 'kid', '||period||', 'smelly', '||period||', 'my', 'shtick', 'was', 'looking', 'into', 'an', 'exhaust', 'pipe', 'and', "gettin'", 'a', 'faceful', 'of', 'soot', '||period||', 'heh', '||comma||', 'nobody', 'could', 'do', 'that', 'better', 'than', 'me', '||period||', 'of', 'course', '||comma||', 'it', 'was', 'kinda', 'hard', 'to', 'think', 'of', 'reasons', 'for', 'me', 'to', 'look', 'in', 'that', 'exhaust', 'pipe', 'every', 'time', '||comma||', 'but', 'you', 'know', '||comma||', 'we', 'had', 'good', 'writers', '||period||', 'william', 'faulkner', 'could', 'write', 'an', 'exhaust', 'pipe', 'gag', 'that', 'would', 'really', 'make', 'you', 'think', '||period||', '||return|', 'barney_gumble:', 'if', 'you', 'were', 'such', 'a', 'big', 'shot', '||comma||', 'why', "aren't", 'you', 'still', 'making', 'movies', '||question_mark||', '||return|', 'barney_gumble:', 'moe', '||question_mark||', '||period||', '||period||', '||period||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', 'no', '||exclamation_mark||', 'my', 'favorite', 'aggie', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'you', 'stole', 'my', 'bit', '||exclamation_mark||', 'you', '||period||', '||period||', '||period||', "that's", 'my', 'bit', 'ya', '||period||', '||period||', '||period||', 'ya', '||period||', '||period||', '||period||', 'ooh', '||comma||', 'ooh', '||comma||', 'you', 'stole', 'my', 'bit', '||exclamation_mark||', '||return|', 'director:', 'cut', '||exclamation_mark||', '||return|', 'stagehand:', 'oh', 'my', 'god', '||exclamation_mark||', "he's", 'killed', 'the', 'original', 'alfalfa', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||period||', 'luckily', '||comma||', 'alfalfa', 'was', 'an', 'orphan', 'owned', 'by', 'the', 'studio', '||period||', '||return|', 'all:', '||left_parentheses||', 'murmur', 'understanding', 'assent', '||right_parentheses||', 'oh', '||comma||', 'i', 'see', '/', 'yeah', '/', 'that', 'makes', 'sense', '||period||', '||return|', 'kent_brockman:', 'with', 'wealthy', 'hollywood', 'people', 'on', 'the', 'way', '||comma||', 'local', 'merchants', 'can', 'be', 'forgiven', 'for', 'raising', 'their', 'prices', 'a', 'little', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', '||left_parentheses||', 'flailing', '||right_parentheses||', 'agh', '||exclamation_mark||', 'natural', 'light', '||exclamation_mark||', 'get', 'it', 'off', 'me', '||exclamation_mark||', 'get', 'it', 'off', 'me', '||exclamation_mark||', '||return|', 'dr', '||period||', '_julius_hibbert:', '||left_parentheses||', 'looking', 'around', '||right_parentheses||', 'oh', '||comma||', "i'm", 'sorry', '||period||', 'i', 'thought', 'this', 'was', 'a', 'family', 'restaurant', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'lying', '||right_parentheses||', 'oh', '||comma||', 'it', 'is', '||period||', 'it', 'is', '||period||', 'just', '||comma||', 'uh', '||comma||', 'pull', 'them', 'stools', 'up', 'to', 'the', 'pool', 'table', '||period||', '||return|', 'little_hibbert_girl:', 'daddy', '||comma||', 'this', 'place', 'smells', 'like', 'tinkle', '||period||', '||return|', 'dr', '||period||', '_julius_hibbert:', 'mmm-hmm', '||comma||', 'i', 'think', "we'll", 'just', 'go', 'to', 'the', 'texas', 'cheesecake', 'depository', '||period||', '||return|', 'moe_szyslak:', 'everybody', 'is', "goin'", 'to', 'family', 'restaurants', 'these', 'days', '||period||', 'seems', 'nobody', 'wants', 'to', 'hang', 'out', 'in', 'a', 'dank', 'pit', 'no', 'more', '||period||', '||return|', 'carl_carlson:', 'ya', "ain't", 'thinking', 'of', "gettin'", 'rid', 'of', 'the', 'dank', '||comma||', 'are', 'ya', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'maybe', 'i', 'am', '||period||', '||return|', 'carl_carlson:', 'aw', '||comma||', 'but', 'moe', '||comma||', 'the', 'dank', '||period||', 'the', 'dank', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'lost', 'in', 'thought', '||right_parentheses||', 'yeah', '||period||', 'family', 'restaurants', '||period||', "that's", 'where', 'the', 'big', 'bucks', 'are', '||period||', 'i', 'could', 'turn', 'this', 'joint', 'into', 'a', 'place', 'where', 'you', "wouldn't", 'be', 'ashamed', 'to', 'bring', 'your', 'family', '||comma||', 'huh', '||question_mark||', '||return|', 'homer_simpson:', "i'm", 'not', 'ashamed', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'put', 'a', 'coaster', 'under', 'that', '||period||', '||return|', 'moe_szyslak:', 'so', 'come', 'on', '||period||', 'i', 'need', 'a', 'name', 'that', 'says', 'friendly', '||comma||', 'all-american', 'cooking', '||period||', '||return|', 'homer_simpson:', 'how', 'about', 'chairman', "moe's", 'magic', 'wok', '||question_mark||', '||return|', 'barney-shaped_form:', 'i', 'like', 'it', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'nah', '||period||', 'i', 'want', 'something', 'that', 'says', 'people', 'can', 'have', 'a', 'nice', '||comma||', 'relaxing', 'time', '||period||', '||return|', 'homer_simpson:', 'i', 'got', 'it', '||exclamation_mark||', 'madman', "moe's", 'pressure', 'cooker', '||exclamation_mark||', '||return|', 'barney-shaped_form:', 'i', 'like', 'it', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'snaps', 'fingers', '||comma||', 'inspired', '||right_parentheses||', 'hey', '||comma||', 'how', 'about', 'uncle', "moe's", 'family', 'feedbag', '||question_mark||', '||return|', 'barney-shaped_form:', 'i', 'hate', 'it', '||period||', '||return|', 'moe_szyslak:', 'oh', 'boy', '||period||', 'the', 'deep', "fryer's", 'here', '||period||', '||return|', 'moe_szyslak:', 'i', 'got', 'it', 'used', 'from', 'the', 'navy', '||period||', 'you', 'can', 'flash-fry', 'a', 'buffalo', 'in', 'forty', 'seconds', '||period||', '||return|', 'homer_simpson:', 'forty', 'seconds', '||question_mark||', '||left_parentheses||', 'whining', '||right_parentheses||', 'but', 'i', 'want', 'it', 'now', '||period||', '||return|', 'moe_szyslak:', "g'on", '||comma||', 'take', 'it', 'all', '||period||', 'get', 'it', 'all', 'out', 'of', 'here', '||period||', '||return|', 'barney_gumble:', 'you', 'know', '||comma||', 'moe', '||comma||', 'you', 'might', 'want', 'to', 'keep', 'the', 'fire', 'extinguishers', '||period||', '||return|', 'moe_szyslak:', 'nah', '||period||', 'too', 'many', 'bad', 'memories', '||period||', '||return|', 'barney_gumble:', 'well', '||comma||', 'look', 'at', 'the', 'bright', 'side', '||comma||', 'moe', '||period||', 'you', 'still', 'got', 'us', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'cheering', 'up', '||right_parentheses||', 'yeah', '||period||', 'yeah', '||comma||', 'you', 'know', '||comma||', 'that', 'actually', 'makes', 'me', 'feel', 'a', 'little', 'better', '||period||', '||return|', 'homer_simpson:', 'why', '||question_mark||', 'that', 'was', 'the', 'problem', 'in', 'the', 'first', 'place', '||period||', 'you', 'were', 'going', 'broke', 'because', 'we', 'were', 'your', 'only', 'customers', '||period||', "wasn't", 'that', 'the', 'problem', 'in', 'the', 'first', 'place', '||question_mark||', 'that', 'you', 'were', 'going', 'broke', '||period||', '||period||', '||period||', 'moe', '||question_mark||', '||return|', 'homer_simpson:', 'moe', '||question_mark||', 'hey', '||comma||', 'moe', '||question_mark||', 'oh', '||comma||', "you're", 'thinking', 'about', 'all', 'the', 'money', 'you', 'blew', '||comma||', "aren'tcha", '||question_mark||', '||return|', 'homer_simpson:', 'what', 'was', 'it', '||question_mark||', '50-60', 'thousand', 'dollars', '||question_mark||', '||period||', '||period||', '||period||', 'moe', '||question_mark||', 'look', '||comma||', 'maybe', 'it', 'would', 'help', 'if', 'you', 'went', 'over', 'all', 'the', 'mistakes', 'you', 'made', 'from', 'the', 'beginning', '||period||', '||period||', '||period||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'what', '||question_mark||', '||return|', 'homer_simpson:', 'let', 'me', 'get', 'a', 'pad', '||period||', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'gee', '||comma||', 'business', 'stinks', 'tonight', '||period||', "where's", 'barney', '||comma||', 'lenny', '||comma||', 'and', 'carl', '||question_mark||', '||return|', 'homer_simpson:', 'ahhh', '||period||', '||period||', '||period||', 'they', 'never', 'come', 'around', 'anymore', 'now', 'that', "they've", 'got', 'their', '||left_parentheses||', 'rolling', 'eyes', '||right_parentheses||', 'mistresses', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sotto', '||comma||', 'looking', 'at', 'homer', '||right_parentheses||', 'eh', '||comma||', 'might', 'as', 'well', 'close', 'the', 'dump', '||period||', '||return|', 'mayor_joe_quimby:', "i'm", 'gonna', 'drink', 'you', 'under', 'the', 'table', '||period||', '||return|', 'quimby_#2:', 'no', '||comma||', 'i', 'am', 'going', 'to', 'drink', 'you', 'under', 'the', '||period||', '||period||', '||period||', '||return|', 'quimbys:', '||left_parentheses||', 'disappointed', '||right_parentheses||', 'awwww', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'well', '||comma||', "you're", 'closing', '||period||', "it's", 'getting', 'late', '||period||', 'my', 'kids', 'are', 'probably', 'wondering', 'where', 'their', 'daddy', 'is', '||period||', '||left_parentheses||', 'desperate', '||right_parentheses||', "there's", 'gotta', 'be', 'some', 'other', 'place', 'we', 'can', 'go', '||period||', 'think', '||comma||', 'moe', '||period||', 'think', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'ringing', 'bell', '||right_parentheses||', 'hear', 'ye', '||comma||', 'hear', 'ye', '||comma||', 'my', 'daughter', 'has', 'something', 'to', 'tell', 'you', 'about', 'jebediah', 'springfield', '||period||', '||return|', 'moe_szyslak:', 'aw', '||comma||', 'the', 'little', 'cutie', 'wants', 'to', 'do', 'something', 'cute', '||period||', '||period||', '||period||', '||left_parentheses||', 'to', 'barflies', '||right_parentheses||', 'shut', 'up', '||comma||', 'ya', 'bums', '||comma||', 'shut', 'up', '||exclamation_mark||', 'go', 'ahead', '||comma||', 'angel', '||period||', '||return|', 'lisa_simpson:', 'jebediah', 'springfield', 'was', 'nothing', 'more', 'than', 'an', 'evil', '||comma||', 'blood-thirsty', 'pirate', 'who', 'hated', 'this', 'town', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'slow', '&', 'horrified', '||right_parentheses||', 'good', 'god', '||period||', '||left_parentheses||', 'turns', 'to', 'homer', '||right_parentheses||', 'homer', '||comma||', "y'know", 'i', 'support', 'most', 'any', 'prejudice', 'you', 'can', 'name', '||comma||', 'but', 'your', 'hero-phobia', 'sickens', 'me', '||period||', 'you', 'and', 'your', 'daughter', "ain't", 'welcome', 'here', 'no', 'more', '||period||', 'barney', '||comma||', 'show', "'em", 'the', 'exit', '||period||', '||return|', 'barney_gumble:', "there's", 'an', 'exit', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'under', 'his', 'breath', '||right_parentheses||', '||quotation_mark||', 'evil', 'blood-thirsty', 'pirate', '||quotation_mark||', '||period||', '||period||', '||period||', 'hello', '||comma||', 'town', 'jubilation', 'committee', '||question_mark||', 'i', 'got', 'something', "that's", 'going', 'to', 'make', 'you', 'a', 'lot', 'less', 'jubilant', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', "moe's", 'tavern', '||period||', '||return|', 'c', '||period||', '_montgomery_burns:', "i'm", 'looking', 'for', 'a', 'mr', '||period||', 'smithers', '||period||', 'first', 'name', '||comma||', 'waylon', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'so', "you're", 'looking', 'for', 'a', 'mr', '||period||', 'smithers', '||comma||', 'eh', '||question_mark||', 'first', 'name', '||comma||', 'waylon', '||comma||', 'is', 'it', '||question_mark||', '||left_parentheses||', 'suddenly', 'vicious', '||right_parentheses||', 'listen', 'to', 'me', '||comma||', 'you', '||period||', '||period||', '||period||', 'when', 'i', 'catch', 'you', '||comma||', "i'm", 'going', 'to', 'pull', 'out', 'your', 'eyes', 'and', 'shove', "'em", 'up', 'your', 'pants', 'so', 'you', 'can', 'watch', 'me', 'kick', 'the', 'crap', 'out', 'of', 'you', '||period||', 'okay', '||question_mark||', 'then', "i'm", 'going', 'to', 'use', 'your', 'tongue', 'to', 'paint', 'my', 'boat', '||period||', '||return|', 'waylon_smithers:', 'uh', '||comma||', 'hello', '||period||', 'you', 'had', 'a', '||quotation_mark||', 'help', 'wanted', '||quotation_mark||', 'sign', 'in', 'the', 'window', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'yeah', '||comma||', 'i', 'need', 'someone', 'to', 'help', 'me', 'with', 'the', 'midnight', 'beer', 'delivery', '||period||', 'your', 'job', 'is', 'to', 'distract', 'barney', 'until', "it's", 'safely', 'off', 'the', 'truck', '||period||', '||return|', 'waylon_smithers:', "i'll", 'just', 'wait', 'out', 'back', 'until', 'then', '||period||', '||return|', 'barney_gumble:', 'i', 'look', 'forward', 'to', 'working', 'with', 'you', '||exclamation_mark||', '||return|', 'homer_simpson:', 'mr', '||period||', 'smithers', '||comma||', 'wait', '||exclamation_mark||', '||return|', 'homer_simpson:', 'you', "can't", 'let', 'yourself', 'end', 'up', 'in', 'a', 'place', 'like', 'this', '||period||', "you've", 'got', 'two', 'choices:', 'you', 'can', 'give', 'up', 'on', 'yourself', 'and', 'take', 'the', 'barney-guarding', 'job', '||comma||', 'like', 'so', 'many', 'of', 'us', 'have', 'contemplated', 'in', 'our', 'darkest', 'moments', '||period||', 'or', 'you', 'can', 'admit', 'to', 'yourself', "there's", 'only', 'one', 'person', 'that', 'can', 'make', 'you', 'happy', 'and', 'do', 'whatever', 'it', 'takes', 'to', 'get', 'them', 'back', '||period||', '||return|', 'waylon_smithers:', "you're", 'right', '||exclamation_mark||', 'but', "i'm", 'going', 'to', 'need', 'your', 'help', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', '||period||', '||period||', '||period||', 'my', '||period||', '||period||', '||period||', 'god', '||exclamation_mark||', '||period||', '||period||', '||period||', '||return|', 'truck_driver:', 'beer', 'delivery', '||period||', 'just', 'sign', 'here', '||dash||', '||left_parentheses||', 'horrified', '||right_parentheses||', 'oh', '||comma||', 'no', '||comma||', "it's", 'you', '||exclamation_mark||', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'aw', '||comma||', 'hell', '||period||', 'well', '||period||', '||period||', '||period||', 'what', 'about', 'dracula', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'troy', '||comma||', 'buddy', '||comma||', 'i', 'gotta', 'know', '||period||', "what's", 'a', 'great', 'guy', 'like', 'you', 'wanna', 'marry', 'a', 'guy', 'like', 'selma', '||question_mark||', '||return|', 'homer_simpson:', 'okay', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'twenty-five', '||question_mark||', '||left_parentheses||', 'laughs', '||right_parentheses||', 'whoa', '||exclamation_mark||', 'oh', '||comma||', "i'm", 'sorry', '||comma||', 'mr', '||period||', 's', '||period||', '||comma||', 'but', 'you', 'know', '||comma||', 'i', 'gotta', 'check', 'everybody', '||period||', '||return|', 'bart_simpson:', '||left_parentheses||', 'jovial', '||right_parentheses||', 'are', 'you', 'kidding', '||question_mark||', 'i', 'take', 'it', 'as', 'a', 'compliment', '||exclamation_mark||', '||left_parentheses||', 'chuckle', '||right_parentheses||', 'three', 'beers', '||comma||', 'please', '||exclamation_mark||', '||return|', 'barney_gumble:', 'hey', '||comma||', 'join', 'the', 'party', '||exclamation_mark||', '||left_parentheses||', 'sickly', '||comma||', 'pathetic', 'burp', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'on', 'phone', '||right_parentheses||', 'ura', 'snotball', '||question_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'say', '||comma||', 'ah', '||comma||', 'barn', '||period||', 'remember', 'when', 'i', 'said', "i'd", 'have', 'to', 'send', 'away', 'to', 'nasa', 'to', 'calculate', 'your', 'bar', 'tab', '||question_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'oh', 'yeah', '||comma||', 'we', 'all', 'had', 'a', 'good', 'laugh', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'dead', 'serious', '||right_parentheses||', 'the', 'results', 'came', 'back', 'today', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'reading', '||right_parentheses||', 'you', 'owe', 'me', '||period||', '||period||', '||period||', '70', 'billion', 'dollars', '||period||', '||left_parentheses||', 'beat', '||right_parentheses||', 'no', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||period||', '||period||', '||period||', 'oh', '||comma||', "that's", 'uh', '||comma||', 'for', 'the', 'voyager', 'space', 'craft', '||period||', '||left_parentheses||', 'beat', '||right_parentheses||', 'your', "tab's", '14', 'billion', 'dollars', '||period||', '||return|', 'barney_gumble:', 'well', '||comma||', 'alls', 'i', 'got', 'is', 'two', 'thousand', 'bucks', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'considering', '||right_parentheses||', 'well', '||comma||', "that's", 'halfway', 'there', '||period||', '||return|', 'snake_jailbird:', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'huh', '||period||', 'freeze', '||comma||', 'dude', '||period||', 'move', 'a', 'muscle', 'and', "i'll", 'blow', 'this', "wino's", 'head', 'off', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'muffled', '||right_parentheses||', "i'm", 'behind', 'three', 'inches', 'of', 'bullet-proof', 'glass', '||period||', 'do', 'your', 'worst', '||period||', '||return|', 'snake_jailbird:', '||left_parentheses||', 'reasonable', '||right_parentheses||', 'all', 'right', '||period||', '||return|', 'moe_szyslak:', 'no', '||exclamation_mark||', 'stay', 'outta', 'there', '||exclamation_mark||', 'stay', 'outta', 'there', '||exclamation_mark||', 'aw', '||comma||', 'good', 'god', '||comma||', 'no', '||exclamation_mark||', '||exclamation_mark||', '||return|', 'snake_jailbird:', 'whoa', '||comma||', 'goodbye', 'student', 'loan', 'payments', '||exclamation_mark||', 'ha-ha', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'come', 'back', 'here', '||comma||', 'you', "stinkin'", '||dash||', '||left_parentheses||', 'looks', 'around', '||comma||', 'a', 'bit', 'concerned', '||right_parentheses||', 'hey', '||comma||', 'i', 'wonder', 'how', 'much', 'air', 'is', 'in', 'here', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'ya', 'know', 'what', 'really', 'aggravazes', 'me', '||comma||', 'is', 'them', 'immiggants', '||period||', 'they', 'want', 'all', 'the', 'benefits', 'of', "livin'", 'in', 'springfield', '||comma||', 'but', 'they', "ain't", 'even', 'bothered', 'to', 'learn', 'themselves', 'the', 'language', '||period||', '||return|', 'homer_simpson:', 'yeah', '||period||', 'those', 'are', 'exactly', 'my', 'sentimonies', '||period||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'you', 'said', 'it', '||comma||', 'barn', '||period||', '||return|', '||return|', '||return|', "jimbo's_dad:", "that's", 'for', "tellin'", 'me', 'how', 'to', 'raise', 'my', 'lousy', 'kid', '||exclamation_mark||', '||return|', "dolph's_dad:", 'this', 'is', 'for', 'the', 'crummy', 'life', "i've", 'had', 'to', 'live', '||exclamation_mark||', '||left_parentheses||', 'throws', 'another', 'punch', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'still', 'reasonable', '||right_parentheses||', 'the', 'thing', 'is', '||dash||', 'oof', '||exclamation_mark||', '||dash||', 'bart', 'really', 'loves', 'that', 'belt', 'and', '||dash||', 'ugh', '||exclamation_mark||', '||return|', "kearney's_dad:", 'hey', '||comma||', "somethin's", 'wrong', 'with', 'this', 'guy', '||exclamation_mark||', "he's", 'not', "fallin'", 'down', '||exclamation_mark||', '||return|', 'moe_szyslak:', "fun's", 'over', '||comma||', 'fellas', '||period||', 'if', "you're", 'gonna', 'beat', 'up', 'my', 'friend', 'in', 'my', 'bar', '||comma||', "there's", 'a', 'two-drink', 'minimum', '||period||', '||return|', 'moe_szyslak:', 'jeez', '||comma||', 'homer', '||comma||', 'i', 'never', 'seen', 'a', 'guy', 'stand', 'up', 'to', 'that', 'kinda', 'punishment', '||dash||', 'i', 'mean', '||comma||', 'you', 'took', 'a', 'three-man', "poundin'", 'and', "didn't", 'ever', 'fall', 'down', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'glum', '||right_parentheses||', 'big', 'deal', '||period||', 'i', "didn't", 'even', 'get', 'my', "kid's", 'belt', 'back', '||period||', 'the', 'only', 'thing', 'a', 'loser', 'like', 'me', 'is', 'good', 'for', 'is', 'taking', 'beatings', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'excited', '||right_parentheses||', 'there', 'ya', 'go', '||exclamation_mark||', "that's", 'the', 'spirit', '||exclamation_mark||', 'homer', '||comma||', 'i', 'seen', 'prizefighters', "couldn't", 'take', 'a', 'punch', 'half', 'as', 'good', 'as', 'you', '||exclamation_mark||', '||left_parentheses||', 'getting', 'a', 'big', 'idea', '||right_parentheses||', "y'know", '||comma||', 'boxing', 'might', 'be', 'right', 'up', 'your', 'alley', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'perking', 'up', '||right_parentheses||', 'really', '||question_mark||', '||return|', 'moe_szyslak:', 'aw', '||comma||', 'please', '||comma||', "it's", 'the', 'good', 'life', '||comma||', 'homer', '||period||', 'some', 'of', 'these', 'boxers', '||comma||', 'they', 'eat', 'steak', 'and', 'lobster', 'and', 'salad', 'bar', 'all', 'in', 'a', 'single', 'meal', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasp', 'of', 'awe', '||right_parentheses||', 'dressing', '||question_mark||', '||return|', 'moe_szyslak:', 'their', 'choice', '||period||', '||return|', 'homer_simpson:', 'you', 'really', 'think', 'i', 'could', 'do', 'it', '||question_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', 'dunno', '||comma||', 'are', 'you', 'man', 'enough', 'to', 'test', 'every', 'one', 'of', 'your', 'limits', '||question_mark||', '||return|', 'homer_simpson:', 'yes', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', 'are', 'you', 'man', 'enough', 'to', 'throw', 'a', 'punch', '||comma||', 'should', 'the', 'opportunity', 'arise', '||question_mark||', '||return|', 'homer_simpson:', 'yes', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', '||quotation_mark||', 'the', 'clincher', '||quotation_mark||', '||right_parentheses||', 'and', 'are', 'you', 'man', 'enough', 'to', 'give', 'me', 'a', 'sixty', 'percent', 'cut', '||question_mark||', '||return|', 'homer_simpson:', 'yes', '||exclamation_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', "i'll", 'take', 'it', '||exclamation_mark||', '||exclamation_mark||', '||return|', 'homer_simpson:', 'woo', 'hoo', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'now', '||comma||', 'homer', '||comma||', 'if', "i'm", 'gonna', 'manage', 'your', 'boxing', 'career', '||comma||', 'i', 'wantcha', 'to', 'have', 'complete', 'faith', 'in', 'me', '||period||', "c'mere", '||comma||', 'lemme', 'show', 'ya', "somethin'", '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'wow', '||exclamation_mark||', "i've", 'never', 'been', 'in', 'here', 'before', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'well', '||comma||', 'when', 'i', 'realized', 'we', "hadn't", 'had', 'no', 'ladies', 'in', 'here', 'since', '1979', '||comma||', 'i', 'turned', 'it', 'into', 'an', 'office', '||period||', '||return|', 'homer_simpson:', 'you', 'used', 'to', 'be', 'a', 'boxer', 'just', 'like', 'me', '||question_mark||', '||return|', 'moe_szyslak:', 'yep', '||period||', 'they', 'called', 'me', '||quotation_mark||', 'kid', 'gorgeous', '||period||', '||quotation_mark||', 'later', 'on', '||comma||', 'it', 'was', '||quotation_mark||', 'kid', 'presentable', '||period||', '||quotation_mark||', 'then', '||quotation_mark||', 'kid', 'gruesome', '||period||', '||quotation_mark||', 'and', 'finally', '||comma||', '||quotation_mark||', 'kid', 'moe', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'noticing', 'something', '||right_parentheses||', 'hey', '||comma||', "what's", 'this', '||question_mark||', '||return|', 'moe_szyslak:', 'aw', '||comma||', 'that', '||dash||', "that's", 'my', 'old', 'spit', 'bucket', '||period||', 'yeah', '||comma||', 'i', 'been', "meanin'", 'to', 'empty', 'that', 'out', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasp', '||right_parentheses||', 'you', 'know', 'lucius', 'sweet', '||question_mark||', "he's", 'one', 'of', 'the', 'biggest', 'names', 'in', 'boxing', '||exclamation_mark||', "he's", 'exactly', 'as', 'rich', 'and', 'as', 'famous', 'as', 'don', 'king', '||comma||', 'and', 'he', 'looks', 'just', 'like', 'him', '||comma||', 'too', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'he', 'was', 'my', 'manager', '||period||', 'back', 'when', 'i', 'was', 'gorgeous', '||comma||', 'everybody', 'wanted', 'a', 'piece', 'of', 'me', '||period||', 'but', 'somehow', 'i', 'just', 'never', 'made', 'it', 'to', 'the', 'big', 'time', '||period||', '||return|', 'homer_simpson:', 'why', 'not', '||question_mark||', '||return|', 'moe_szyslak:', "'cause", 'i', 'got', 'knocked', 'out', 'forty', 'times', 'in', 'a', 'row', '||period||', 'that', '||comma||', 'plus', 'politics', '||period||', 'you', 'know', '||comma||', "it's", 'all', 'politics', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'in', 'bitter', 'agreement', '||right_parentheses||', 'lousy', 'democrats', '||period||', '||return|', 'barney_gumble:', 'man', '||comma||', "you'd", 'never', 'get', 'me', 'into', 'a', 'ring', '||period||', 'boxing', 'causes', 'brain', 'damage', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'okay', '||period||', "you're", 'fighting', 'a', 'guy', 'named', 'boxcar', 'bob', '||period||', '||return|', 'homer_simpson:', 'brawled', 'his', 'way', 'up', 'from', 'the', 'boxcars', '||comma||', 'did', 'he', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'no', '||period||', 'not', 'yet', '||period||', 'he', 'still', 'lives', 'at', 'the', 'train', 'yard', '||period||', 'but', "he's", 'a', 'hungry', 'young', 'fighter', '||period||', 'in', 'fact', '||comma||', "he's", 'actually', 'fighting', 'for', 'a', 'sandwich', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'i', 'want', 'you', 'to', 'have', 'my', 'lucky', 'mitts', '||period||', 'i', 'hope', 'you', 'do', 'better', 'with', "'em", 'than', 'i', 'did', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'touched', '||right_parentheses||', 'gee', '||comma||', 'thanks', '||comma||', 'moe', '||period||', '||period||', '||period||', "what's", 'this', '||question_mark||', '||return|', 'moe_szyslak:', 'aw', '||comma||', "that's", 'the', 'barbed', 'wire', '||period||', 'heh', '||period||', 'we', '||comma||', 'uh', '||comma||', 'we', 'called', 'that', '||quotation_mark||', 'the', 'stinger', '||period||', '||quotation_mark||', 'they', '||period||', '||period||', '||period||', 'they', "don't", 'let', 'you', 'use', 'that', 'no', 'more', '||period||', '||return|', 'moe_szyslak:', 'now', '||comma||', 'no', 'matter', 'how', 'much', 'he', 'hits', 'you', '||comma||', 'you', "don't", 'do', "nothin'", '||comma||', 'okay', '||question_mark||', 'you', "don't", 'wanna', 'get', 'drawn', 'into', 'a', 'boxing', 'match', 'here', '||period||', '||return|', 'bart_simpson:', 'way', 'to', 'go', '||comma||', 'dad', '||exclamation_mark||', 'take', 'those', 'punches', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'man', '||comma||', 'that', "tramp's", 'got', 'the', 'energy', 'of', 'a', 'hobo', '||exclamation_mark||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'he', 'never', 'stops', 'punching', '||period||', '||period||', '||period||', "'cept", 'to', 'check', 'on', 'his', 'bindle', '||period||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'homer', '||comma||', "he's", 'tired', '||exclamation_mark||', "he's", 'tired', '||exclamation_mark||', "now's", 'your', 'chance', '||exclamation_mark||', 'nudge', 'him', '||exclamation_mark||', 'nudge', 'him', '||exclamation_mark||', '||return|', 'lucius:', 'hello', '||comma||', 'moe', '||period||', 'delightful', 'to', 'see', 'you', 'again', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'awed', '||right_parentheses||', 'lucius', '||exclamation_mark||', 'hey', '||comma||', "what's", 'a', 'glitterati', 'like', 'you', "doin'", 'in', 'my', 'dump', '||question_mark||', 'i', '||dash||', 'i', 'thought', 'you', 'were', 'managing', 'the', 'champ', '||period||', '||return|', 'lucius:', 'yes', '||comma||', 'managing', 'drederick', 'has', 'been', 'my', 'highest', 'priority', '||comma||', 'even', 'though', 'he', 'is', 'temporarily', 'incarcerated', 'for', 'pushing', 'his', 'mother', 'down', 'the', 'stairs', '||period||', 'but', 'with', 'his', 'impending', 'release', '||comma||', "i've", 'been', 'strategizing', 'for', 'his', 'glorious', 'return', 'to', 'the', 'shores', 'of', 'fistiana', '||period||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'what', '||question_mark||', '||return|', 'lucius:', '||left_parentheses||', 'beat', '||right_parentheses||', 'his', 'comeback', 'fight', '||period||', 'you', 'know', '||comma||', 'boxing', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'oh', '||comma||', 'man', '||period||', 'yeah', '||comma||', 'well', '||comma||', "who's", "donatin'", 'his', 'body', 'for', 'that', 'one', '||question_mark||', 'huh', '||question_mark||', '||return|', 'lucius:', 'well', '||comma||', 'word', 'is', 'you', 'manage', 'a', 'stalwart', 'young', 'pugilist', 'who', 'cannot', 'be', 'knocked', 'down', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'incredulous', '||right_parentheses||', 'homer', '||question_mark||', 'you', 'want', 'homer', 'to', 'fight', 'tatum', '||question_mark||', '||return|', 'lucius:', 'well', '||comma||', 'the', 'fans', 'are', 'weary', 'of', 'fights', 'that', 'are', 'over', 'before', 'they', 'have', 'an', 'opportunity', 'to', 'even', 'get', 'drunk', '||period||', 'i', 'just', 'need', 'a', 'body', 'who', 'can', 'sustain', 'verticality', 'for', 'three', 'rounds', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||period||', 'but', "homer's", 'no', 'boxer', '||comma||', 'he', '||dash||', "he's", 'just', 'a', 'freak', '||period||', "tatum'll", 'fustigate', 'him', '||exclamation_mark||', '||return|', 'lucius:', 'well', '||comma||', 'fustigation', 'aside', '||comma||', 'moe', '||comma||', "you've", 'got', 'a', 'choice:', 'you', 'can', 'either', 'sit', 'here', 'in', 'the', 'ladies', 'room', 'with', 'your', 'faded', 'memories', '||comma||', 'or', 'you', 'can', 'take', 'your', 'last', 'shot', 'at', 'the', 'big', 'time', '||period||', '||left_parentheses||', 'dramatic', '||right_parentheses||', 'and', 'i', 'can', 'make', 'it', 'happen', '||period||', '||return|', 'lucius:', 'three', 'rounds', '||comma||', "that's", 'all', 'i', 'ask', '||period||', '||return|', 'moe_szyslak:', 'i', 'gotta', 'be', 'honest', 'with', 'ya', '||comma||', 'homer', '||period||', 'i', "didn't", 'bring', 'you', 'up', 'here', 'to', 'show', 'you', 'my', 'new', 'tar-paper', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'naively', '||right_parentheses||', 'you', '||period||', '||period||', '||period||', "didn't", '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||period||', 'homer', '||comma||', 'how', 'would', 'you', 'like', 'to', 'be', 'heavyweight', 'champion', 'of', 'the', 'world', '||question_mark||', '||return|', 'homer_simpson:', 'uh', '||comma||', 'sure', '||period||', '||return|', 'moe_szyslak:', 'great', '||period||', 'all', 'you', 'gotta', 'do', 'is', 'fight', 'drederick', 'tatum', '||period||', "it's", 'this', 'saturday', '||period||', "here's", 'your', 'parking', 'pass', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'impressed', '||right_parentheses||', 'ooh', '||comma||', '||quotation_mark||', 'general', '||exclamation_mark||', '||quotation_mark||', '||left_parentheses||', 'beat', '||right_parentheses||', "who's", 'drederick', 'tatum', '||comma||', 'anyway', '||question_mark||', 'is', 'he', 'another', 'hobo', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'evasive', '||right_parentheses||', 'uh', '||comma||', 'you', 'know', 'what', '||question_mark||', "i'm", 'gonna', 'have', 'to', 'check', 'on', 'that', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'i', 'trust', 'you', '||comma||', 'moe', '||period||', 'if', 'you', 'say', 'i', 'can', 'beat', 'this', 'guy', '||comma||', 'then', 'he', "doesn't", 'stand', 'a', 'chance', '||period||', '||return|', '||return|', '||return|', 'larry:', 'everybody', 'go', 'nuts', '||comma||', "i'm", "buyin'", '||exclamation_mark||', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'hey', '||comma||', 'handsome', '||comma||', 'send', 'the', 'bill', 'to', 'my', 'dad', '||period||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'but', 'the', 'last', 'guy', 'who', 'charged', 'a', 'drink', 'to', 'burns', 'turned', 'up', 'in', 'a', 'landfill', '||period||', '||return|', 'barney_gumble:', 'yeah', '||period||', '||left_parentheses||', 'remembering', 'fondly', '||right_parentheses||', 'but', 'it', 'was', 'worth', 'it', '||exclamation_mark||', '||return|', 'larry:', "what's", 'everybody', 'in', 'this', 'burg', 'have', 'against', 'my', 'dad', '||question_mark||', "he's", 'a', 'pussycat', '||period||', 'i', 'tell', 'ya', '||comma||', "he's", 'a', 'doll-baby', '||period||', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', 'come', 'on', 'over', '||comma||', "i'll", 'show', 'ya', '||exclamation_mark||', '||return|', '||return|', '||return|', 'kirk_van_houten:', 'homer', '||exclamation_mark||', 'i', 'want', 'you', 'to', 'meet', 'my', 'new', 'special', 'lady', '||period||', 'say', 'hello', 'to', 'starla', '||period||', '||return|', 'starla:', 'can', 'i', 'have', 'the', 'keys', 'to', 'the', 'car', '||comma||', 'lover', '||question_mark||', 'i', 'feel', 'like', 'changing', 'wigs', '||period||', '||return|', 'kirk_van_houten:', 'okay', '||period||', '||return|', 'kirk_van_houten:', "starla's", 'a', 'temp', 'at', 'k-zug', '||left_parentheses||', "'kay-zugg'", '||right_parentheses||', 'radio', '530', '||period||', "she's", 'going', 'to', 'help', 'me', 'launch', 'my', 'singing', 'career', '||period||', '||return|', 'kirk_van_houten:', 'my', 'car', '||exclamation_mark||', '||return|', 'kirk_van_houten:', 'oh', '||exclamation_mark||', 'my', 'demo', 'tape', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'reading', '||right_parentheses||', '||quotation_mark||', 'can', 'i', 'borrow', 'a', 'feeling', '||question_mark||', '||quotation_mark||', '||left_parentheses||', 'laughs', '||right_parentheses||', '||quotation_mark||', 'can', 'i', 'borrow', 'a', 'feeling', '||question_mark||', '||quotation_mark||', '||left_parentheses||', 'still', 'laughing', '||right_parentheses||', "there's", 'your', 'picture', 'on', 'the', 'front', '||period||', '||return|', 'kirk_van_houten:', 'go', 'ahead', '||comma||', 'homer', '||period||', 'laugh', 'at', 'me', '||period||', '||return|', 'homer_simpson:', 'i', 'already', 'did', '||period||', '||return|', 'kirk_van_houten:', 'you', 'know', 'why', 'all', 'this', 'happened', '||comma||', "don't", 'you', '||question_mark||', "'cause", 'i', 'took', 'my', 'marriage', 'for', 'granted', '||period||', "y'know", '||comma||', 'in', 'twelve', 'years', '||comma||', 'i', 'never', 'once', 'helped', 'out', 'with', 'the', 'housework', '||period||', '||return|', 'homer_simpson:', 'oh', 'yeah', '||period||', 'you', 'gotta', 'do', 'that', '||period||', '||return|', 'kirk_van_houten:', 'i', "could've", 'at', 'least', 'stayed', 'in', 'shape', 'for', 'her', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'and', 'for', 'yourself', '||period||', '||return|', 'kirk_van_houten:', 'i', "could've", 'taken', 'just', 'a', 'little', 'time', 'to', '||period||', '||period||', '||period||', 'to', 'make', 'her', 'feel', 'special', '||period||', '||return|', 'homer_simpson:', 'it', "can't", 'just', 'be', 'sex', '||period||', 'it', "can't", '||period||', '||return|', 'kirk_van_houten:', 'god', '||comma||', 'i', 'was', 'so', 'self-centered', '||period||', 'no', 'wonder', 'i', "didn't", 'see', 'it', 'coming', '||period||', '||left_parentheses||', 'shaking', 'head', '||right_parentheses||', "that's", 'how', 'it', 'is', '||comma||', 'though:', 'one', 'day', 'your', 'wife', 'is', 'making', 'you', 'your', 'favorite', 'meal', '||comma||', 'the', 'next', 'day', "you're", 'thawing', 'a', 'hot', 'dog', 'in', 'a', 'gas', 'station', 'sink', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'understanding', '||right_parentheses||', 'ooh', '||comma||', "that's", 'tough', '||comma||', 'pal', '||period||', 'but', "it's", 'never', 'going', 'to', 'happen', 'to', 'me', '||period||', '||return|', 'kirk_van_houten:', 'oh', '||comma||', 'how', 'do', 'you', 'know', '||question_mark||', 'what', 'makes', 'you', 'guys', 'so', 'special', '||question_mark||', '||return|', 'homer_simpson:', "'cause", 'marge', 'and', 'i', 'have', 'one', 'thing', 'that', 'can', 'never', 'be', 'broken:', 'a', 'strong', 'marriage', 'built', 'on', 'a', 'solid', 'foundation', 'of', 'routine', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'carl', '||question_mark||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'barney', '||exclamation_mark||', 'soul', 'mate', '||exclamation_mark||', 'let', 'me', 'buy', 'you', 'a', 'beer', '||period||', '||return|', 'barney_gumble:', 'okay', '||comma||', 'but', "i'm", 'not', 'your', 'soul', 'mate', '||period||', "i'm", 'really', 'more', 'of', 'a', 'chum', '||period||', '||return|', 'homer_simpson:', 'well', 'what', 'about', 'you', '||comma||', 'lenny', '||question_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'helpful', '||right_parentheses||', "i'm", 'a', 'crony', '||period||', '||return|', 'carl_carlson:', "i'd", 'say', 'acquaintance', '||period||', '||return|', 'sam:', 'call', 'me', 'sympathizer', '||period||', '||return|', 'bumblebee_man:', 'compadre', '||period||', '||return|', 'kearney_zzyzwicz:', 'associate', '||period||', '||return|', 'dr', '||period||', '_julius_hibbert:', 'contemporary', '||period||', '||return|', 'moe_szyslak:', "i'm", 'a', 'well-wisher', '||comma||', 'in', 'that', 'i', "don't", 'wish', 'you', 'any', 'specific', 'harm', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'another', 'duff', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', 'nah', '||comma||', "it's", 'friday', 'night', 'moe', '||period||', 'i', 'wanna', 'try', 'something', 'special', '||period||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'sure', '||comma||', 'sure', '||period||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'here', 'you', 'go', '||period||', 'dã¼ff', '||period||', '||left_parentheses||', 'doof', '||right_parentheses||', 'from', 'sweden', '||period||', '||left_parentheses||', 'nervous', 'chuckle', '||right_parentheses||', '||return|', 'homer_simpson:', 'skoal', '||exclamation_mark||', '||left_parentheses||', 'sips', '||right_parentheses||', 'wait', 'a', 'minute', '||dash||', 'this', 'is', 'duff', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'nasty', 'laugh', '||right_parentheses||', 'ah', '||comma||', 'ha', 'ha', '||comma||', 'you', 'got', 'me', '||comma||', "didn't", 'ya', '||question_mark||', '||left_parentheses||', 'handing', 'homer', 'a', 'beer', '||right_parentheses||', 'all', 'right', '||comma||', 'here', 'you', 'go', '||dash||', '||quotation_mark||', 'red', 'tick', 'beer', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', 'hmm', '||comma||', 'bold', '||dash||', 'refreshing', '||period||', '||period||', '||period||', 'and', 'something', 'i', "can't", 'quite', 'put', 'my', 'finger', 'on', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', "it's", 'one', 'a', '||period||', 'm', '||period||', 'better', 'go', 'home', 'and', 'spend', 'some', 'quality', 'time', 'with', 'the', 'kids', '||period||', '||return|', 'moe_szyslak:', 'just', 'a', 'second', '||comma||', 'homer', '||comma||', 'you', 'gotta', 'take', 'a', 'breathalyzer', 'test', 'before', 'i', 'let', 'you', 'drive', 'home', '||period||', '||return|', 'homer_simpson:', 'eh', '||comma||', 'i', 'guess', "i'll", 'walk', 'home', '||period||', '||return|', 'fox_mulder:', 'all', 'right', '||comma||', 'homer', '||period||', 'we', 'want', 'you', 'to', 'recreate', 'your', 'every', 'move', 'the', 'night', 'you', 'saw', 'this', 'alien', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'the', 'evening', 'began', 'at', 'the', "gentleman's", 'club', '||comma||', 'where', 'we', 'were', 'discussing', 'wittgenstein', 'over', 'a', 'game', 'of', 'backgammon', '||period||', '||return|', 'dana_scully:', 'mr', '||period||', 'simpson', '||comma||', "it's", 'a', 'felony', 'to', 'lie', 'to', 'the', 'fbi', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'ashamed', '||right_parentheses||', 'we', 'were', 'sitting', 'in', "barney's", 'car', 'eating', 'packets', 'of', 'mustard', '||period||', 'ya', 'happy', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'scully', '||right_parentheses||', 'you', 'are', 'one', "fine-lookin'", 'woman', '||comma||', 'lady', '||period||', 'if', 'i', "wasn't", 'married', '||comma||', "i'd", 'go', 'out', 'with', 'you', 'like', 'that', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'drunk', '||comma||', 'remorseful', '||right_parentheses||', 'i', 'am', 'so', 'sorry', '||period||', 'whatever', 'you', 'do', '||comma||', "don't", 'tell', 'marge', '||period||', 'god', '||comma||', 'i', 'love', 'her', '||period||', 'i', '||dash||', '||left_parentheses||', 'looking', 'down', '||right_parentheses||', 'hey', '||comma||', 'a', 'penny', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', 'who', 'are', 'you', 'guys', 'anyhow', '||question_mark||', '||return|', 'fox_mulder:', 'agents', 'mulder', 'and', 'scully', '||comma||', 'fbi', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'edgy', '||right_parentheses||', 'fbi', '||comma||', 'huh', '||question_mark||', 'uh', '||comma||', "s'cuse", 'me', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'dimly', '||right_parentheses||', 'oh', 'yeah', '||period||', '||return|', 'moe_szyslak:', 'here', 'you', 'go', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'thanks', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'generously', '||right_parentheses||', 'aw', '||comma||', 'homer', '||period||', 'you', 'know', 'your', "money's", 'no', 'good', 'here', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'wait', 'a', 'minute', '||dash||', 'this', 'is', 'real', 'money', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'proudly', '||right_parentheses||', 'yeah', '||comma||', 'my', 'wife', 'is', 'raking', 'it', 'in', '||period||', '||return|', 'fat_tony:', '||left_parentheses||', 'clears', 'throat', '||right_parentheses||', 'greetings', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'happy', 'to', 'see', 'him', '||right_parentheses||', 'hey', '||comma||', 'fat', 'tony', '||exclamation_mark||', 'you', 'still', 'with', 'the', 'mafia', '||question_mark||', '||return|', 'fat_tony:', '||left_parentheses||', 'looking', 'around', 'nervously', '||right_parentheses||', 'uh', '||comma||', 'uh', '||comma||', 'yes', '||period||', 'i', 'am', '||period||', 'thank', 'you', 'for', 'asking', '||period||', 'now', 'homer', '||comma||', 'as', 'you', 'no', 'doubt', 'recall', '||comma||', 'you', 'were', 'done', 'a', 'favor', 'by', 'our', '||comma||', 'uh', '||period||', '||period||', '||period||', 'how', 'shall', 'i', 'say', '||comma||', 'mafia', 'crime', 'syndicate', '||period||', '||return|', 'fat_tony:', 'now', '||comma||', 'the', 'time', 'has', 'come', 'for', 'you', 'to', 'do', 'us', 'a', 'favor', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'shocked', 'and', 'hurt', '||right_parentheses||', 'you', 'mean', 'the', 'mob', 'only', 'did', 'me', 'a', 'favor', 'to', 'get', 'something', 'in', 'return', '||question_mark||', 'oh', '||comma||', 'fat', 'tony', '||period||', '||period||', '||period||', '||left_parentheses||', 'indignant', '||right_parentheses||', 'i', 'will', 'say', 'good', 'day', 'to', 'you', '||comma||', 'sir', '||period||', '||return|', 'fat_tony:', '||left_parentheses||', 'ashamed', '||right_parentheses||', 'okay', '||comma||', 'i', 'will', 'go', '||period||', '||return|', 'fat_tony:', '||left_parentheses||', 'realizing', '||right_parentheses||', 'hey', '||comma||', 'wait', 'a', 'minute', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'hanging', 'up', '||right_parentheses||', 'well', '||comma||', "homer's", 'out', '||period||', 'we', 'gotta', 'find', 'a', 'new', 'general', 'ambrose', 'burnside', '||period||', '||return|', 'barney_gumble:', 'and', "i'm", 'not', 'too', 'crazy', 'about', 'our', 'stonewall', 'jackson', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'the', 'south', 'shall', '||quotation_mark||', 'come', 'again', '||exclamation_mark||', '||quotation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||period||', '||period||', '||period||', 'and', 'the', 'entire', 'steel', 'mill', 'was', 'gay', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'not', 'surprised', '||right_parentheses||', 'where', 'ya', 'been', '||comma||', 'homer', '||question_mark||', 'entire', 'steel', "industry's", 'gay', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'aerospace', '||comma||', 'too', '||period||', 'and', 'the', 'railroads', '||period||', 'and', 'ya', 'know', 'what', 'else', '||question_mark||', '||left_parentheses||', 'nods', 'knowingly', '||right_parentheses||', 'broadway', '||exclamation_mark||', '||return|', 'barney_gumble:', 'i', 'always', 'hoped', "bart'd", 'grow', 'up', 'to', 'be', 'just', 'like', 'us', '||period||', 'what', 'happened', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'it', "ain't", 'no', 'mystery', '||dash||', 'whole', 'modern', 'world', 'got', 'a', "swishifyin'", 'effect', 'on', 'kids', 'today', '||period||', 'and', 'their', "mtv's", 'and', 'their', 'diet', 'sodas', "ain't", 'gonna', 'set', "'em", 'straight', 'neither', '||period||', 'you', 'gotta', 'do', 'it', 'yourself', '||comma||', 'homer', '||period||', 'and', 'you', 'gotta', 'do', 'it', 'fast', '||period||', '||return|', 'homer_simpson:', 'but', 'what', 'would', 'turn', 'bart', 'into', 'a', 'man', 'fast', '||question_mark||', 'you', 'have', 'to', 'think', 'for', 'me', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'lessee', 'now', '||period||', '||period||', '||period||', 'uh', '||comma||', 'time', 'was', '||comma||', "you'd", 'send', 'a', 'boy', 'off', 'to', 'war', '||period||', "shootin'", 'a', "man'd", 'fix', 'him', 'right', 'up', '||period||', '||left_parentheses||', 'mad', '||right_parentheses||', 'but', "there's", 'not', 'even', 'any', 'wars', 'no', 'more', 'thank', 'you', 'very', 'much', 'warren', 'christopher', '||exclamation_mark||', '||return|', 'barney_gumble:', 'hey', '||comma||', 'better', 'yet', '||comma||', 'bart', 'could', 'shoot', 'a', 'deer', '||period||', "that's", 'like', 'shooting', 'a', 'beautiful', 'man', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', "he's", 'right', '||comma||', 'homer', '||period||', 'after', 'the', 'boy', 'bags', 'a', 'deer', '||comma||', 'all', 'the', 'diet', 'sodas', 'in', 'the', 'world', "won't", 'turn', 'him', 'back', '||period||', 'then', 'you', 'just', 'sit', 'back', 'and', 'watch', 'the', 'grandkids', 'roll', 'in', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'considers', 'it', '||right_parentheses||', 'hunting', '||comma||', 'eh', '||question_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'whiny', 'moan', '||right_parentheses||', "it's", 'been', 'st', '||period||', "patrick's", 'day', 'for', 'hours', 'and', "i'm", 'still', 'not', 'drunk', 'yet', '||period||', '||left_parentheses||', 'looks', 'at', 'watch', '||right_parentheses||', 'oh', '||comma||', "it's", 'never', 'gonna', 'be', 'nine', "o'clock", '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'moe', '||comma||', 'thank', 'god', "you're", 'here', '||exclamation_mark||', "we'd", 'like', 'to', 'come', 'in', 'and', 'drink', '||comma||', 'please', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'we', 'kicked', 'down', 'the', 'back', 'door', '||comma||', 'but', 'then', 'there', 'was', 'a', 'metal', 'door', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'all', 'right', '||comma||', 'listen', 'up', '||exclamation_mark||', 'this', 'is', 'the', 'busiest', "drinkin'", 'day', 'of', 'the', 'year', '||period||', 'where', 'are', 'the', 'designated', 'drivers', '||question_mark||', '||return|', 'moe_szyslak:', 'beat', 'it', '||exclamation_mark||', 'i', 'got', 'no', 'room', 'for', 'cheapskates', '||period||', '||return|', 'homer_simpson:', 'look', 'at', 'me', '||exclamation_mark||', "i'm", 'the', 'prime', 'minister', 'of', 'ireland', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'homer', '||comma||', "ain't", 'that', 'your', 'kid', 'on', 'tv', '||question_mark||', '||return|', 'bart_simpson:', '||left_parentheses||', 'menacing', '||right_parentheses||', 'what', 'are', 'yew', "lookin'", 'at', '||question_mark||', '||return|', 'moe_szyslak:', 'who', 'wants', 'a', 'bathtub', 'mint', 'julep', '||question_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'writing', '||right_parentheses||', '||quotation_mark||', 'barney', 'gumbel', '||quotation_mark||', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'i', "can't", 'believe', 'it', '||period||', "i've", 'got', 'an', 'enemy', '||period||', 'me', '||exclamation_mark||', 'the', 'most', 'beloved', 'man', 'in', 'springfield', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', "it's", 'a', 'weird', 'world', '||comma||', 'homer', '||period||', 'as', 'hard', 'as', 'it', 'is', 'to', 'believe', '||comma||', 'some', 'people', "don't", 'care', 'for', 'me', '||comma||', 'neither', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'shaking', 'head', '||right_parentheses||', 'no', '||comma||', 'i', "won't", 'accept', 'that', '||period||', '||return|', 'moe_szyslak:', 'no', '||comma||', "it's", 'true', '||period||', "i've", 'got', 'their', 'names', 'written', 'down', 'right', 'here', '||comma||', 'in', 'what', 'i', 'call', 'my', '||comma||', 'uh', '||comma||', '||quotation_mark||', 'enemies', 'list', '||quotation_mark||', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'reading', '||right_parentheses||', 'jane', 'fonda', '||comma||', 'daniel', 'schorr', '||comma||', 'jack', 'anderson', '||period||', '||period||', '||period||', 'hey', '||comma||', 'this', 'is', 'richard', "nixon's", 'enemies', 'list', '||exclamation_mark||', 'you', 'just', 'crossed', 'out', 'his', 'name', 'and', 'put', 'yours', '||period||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'gimme', 'that', '||period||', 'gimme', 'it', 'back', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'morose', '||right_parentheses||', 'oh', '||comma||', "what'll", 'i', 'do', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'why', "don't", 'you', 'invite', 'him', 'over', 'to', 'dinner', '||period||', 'turn', 'him', 'from', 'an', 'enemy', 'into', 'a', 'friend', '||period||', 'then', 'when', "he's", 'not', 'expecting', 'it', '||comma||', 'bam', '||exclamation_mark||', 'the', 'old', 'fork', 'in', 'the', 'eye', '||period||', '||return|', 'homer_simpson:', 'do', 'you', 'think', 'it', 'might', 'work', 'without', 'the', 'fork', 'in', 'the', 'eye', '||question_mark||', '||return|', 'moe_szyslak:', "there's", 'always', 'a', 'first', 'time', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', '||left_parentheses||', 'to', 'chauffeur', '||right_parentheses||', 'thanks', 'for', 'the', 'lift', '||exclamation_mark||', '||return|', '||return|', '||return|', 'barney_gumble:', 'well', '||comma||', 'ah', '||comma||', 'i', 'better', 'go', '||period||', "i've", 'got', 'a', 'date', 'with', 'that', 'lady', 'in', 'front', 'of', 'the', 'drug', 'store', "who's", 'always', 'yelling', 'things', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'hurt', '||comma||', 'to', 'self', '||right_parentheses||', 'she', 'told', 'me', 'she', 'was', "washin'", 'her', 'hair', 'tonight', '||period||', '||left_parentheses||', 'sighs', '||right_parentheses||', "i'm", 'so', 'desperately', 'lonely', '||period||', '||return|', 'grampa_simpson:', 'ah', '||comma||', 'quit', 'your', 'belly-aching', '||comma||', 'ya', 'big', 'loser', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'looking', 'around', '||right_parentheses||', 'wh', '||period||', '||period||', '||period||', 'who', 'said', 'that', '||question_mark||', '||return|', 'grampa_simpson:', 'i', 'did', '||period||', "it's", 'me', '||comma||', 'abe', 'simpson', '||period||', '||return|', 'moe_szyslak:', 'but', "you're", 'dea-d-d-dead', '||period||', '||left_parentheses||', 'three', 'stooges', 'scared', 'sound', '||right_parentheses||', '||return|', 'grampa_simpson:', '||left_parentheses||', 'upbeat', '||right_parentheses||', 'i', 'was', '||exclamation_mark||', 'but', "i've", 'come', 'back', '||period||', '||period||', '||period||', 'as', 'your', 'love', 'testing', 'machine', '||exclamation_mark||', '||return|', 'grampa_simpson:', "i'm", 'the', 'love-matic', 'grampa', '||exclamation_mark||', '||return|', 'singers:', '||left_parentheses||', 'peppy', '||right_parentheses||', 'while', 'shopping', 'for', 'some', 'cans', '/', 'an', 'old', 'man', 'passed', 'away', '/', 'he', 'floated', 'up', 'toward', 'heaven', '/', 'but', 'got', 'lost', 'along', 'the', 'way', '||period||', '||period||', '||period||', '||return|', 'singers:', 'now', "he's", 'the', 'love-matic', 'grampa', '||exclamation_mark||', '/', 'the', 'wise', 'socratic', 'grampa', '||exclamation_mark||', '/', '||left_parentheses||', 'swelling', '||comma||', 'mushy', '||right_parentheses||', 'and', "he'll", 'fill', 'our', 'hearts', 'with', 'love', '||exclamation_mark||', '||return|', 'grampa_simpson:', "don't", 'be', 'afraid', '||comma||', 'moe', '||period||', "i'm", 'here', 'to', 'help', 'you', 'with', 'your', 'romantic', 'problems', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'i', "don't", 'need', 'no', 'advice', 'from', 'no', 'pinball', 'machine', '||period||', "i'll", 'have', 'you', 'know', 'i', 'wrote', 'the', 'book', 'on', 'love', '||period||', '||return|', 'grampa_simpson:', 'yeah', '||dash||', '||quotation_mark||', 'all', 'quiet', 'on', 'the', 'western', 'front', '||exclamation_mark||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'ahh', '||comma||', 'kiss', 'my', 'dishrag', '||exclamation_mark||', '||return|', 'grampa_simpson:', 'see', '||question_mark||', "that's", 'your', 'problem', '||period||', "you're", 'a', 'crab', '||period||', 'ladies', 'like', 'sweet', 'talkers', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'defensive', '||right_parentheses||', 'hey', '||comma||', "i'm", 'sweet', '||period||', "i'm", 'sweeter', 'than', 'jewish', 'wine', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'barney', '||comma||', "where's", 'my', 'car', '||question_mark||', '||exclamation_mark||', '||exclamation_mark||', '||return|', '||return|', '||return|', 'grampa_simpson:', 'then', 'prove', 'it', '||period||', 'i', 'want', 'you', 'to', 'charm', 'the', 'next', 'pretty', 'young', 'thing', 'that', 'walks', 'through', 'that', 'door', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'catch-phrase', '||right_parentheses||', 'ah', '||comma||', 'grrrreetings', '||exclamation_mark||', '||return|', 'grampa_simpson:', 'son', '||comma||', "it's", 'me', '||exclamation_mark||', 'i', 'floated', 'up', 'toward', 'heaven', '||comma||', 'but', 'got', 'lost', 'along', 'the', 'way', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasp', '||semicolon||', 'awed', '||right_parentheses||', 'dad', '||question_mark||', 'is', 'that', 'really', 'you', '||question_mark||', '||return|', 'grampa_simpson:', 'darn', "tootin'", '||comma||', 'ya', 'lousy', 'fink', '||exclamation_mark||', 'you', 'buried', 'me', 'naked', 'and', 'sold', 'my', 'suit', 'to', 'buy', 'a', 'ping-pong', 'table', '||exclamation_mark||', 'what', 'kind', 'of', 'a', 'son', '||dash||', '||return|', 'homer_simpson:', '||left_parentheses||', 'dismissive', 'snort', '||right_parentheses||', 'call', 'me', 'when', 'you', 'get', 'a', 'karaoke', 'machine', '||period||', '||return|', 'grampa_simpson:', "that's", 'the', 'second', 'time', 'he', 'pulled', 'the', 'plug', 'on', 'me', '||period||', '||return|', 'betty:', 'i', 'was', 'just', 'in', 'a', 'car', 'accident', '||period||', 'can', 'i', 'use', 'your', 'phone', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', "usin'", 'the', "phone's", 'a', 'four-drink', 'minimum', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'aside', 'to', 'grampa', '||right_parentheses||', "what's", 'the', 'matter', '||question_mark||', "i'm", 'making', 'as', 'nice', 'as', 'i', 'can', '||period||', '||return|', 'grampa_simpson:', '||left_parentheses||', 'trying', 'to', 'sound', 'mechanical', '||right_parentheses||', 'test-', 'lady', '||period||', 'test-lady', '||period||', '||return|', 'moe_szyslak:', "g'ahead", '||period||', 'give', 'it', 'a', 'try', '||period||', '||return|', 'moe_szyslak:', 'it', 'goes', 'by', 'how', 'clammy', 'your', 'hands', 'are', '||period||', '||return|', 'betty:', 'well', '||comma||', 'i', 'suppose', 'i', 'could', 'use', 'a', 'laugh', 'after', 'that', 'accident', '||period||', '||return|', 'grampa_simpson:', '||left_parentheses||', 'trying', 'to', 'sound', 'mechanical', '||right_parentheses||', 'lovelorn', '||period||', 'you-need-man', '||period||', 'moe-near-now', '||period||', 'go-near-', 'moe', '||period||', '||return|', 'betty:', '||left_parentheses||', 'confused', '||right_parentheses||', 'what', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'explaining', '||right_parentheses||', '||quotation_mark||', 'go', 'near', 'moe', '||period||', '||quotation_mark||', "i'd", 'say', "that's", 'a', 'pretty', 'strong', 'endorsement', '||period||', 'so', '||comma||', 'how', 'about', 'you', 'and', 'me', 'go', 'out', 'sometime', '||question_mark||', 'you', 'know', '||comma||', 'out', 'back', '||period||', '||return|', 'moe_szyslak:', 'i', 'mean', '||comma||', 'uh', '||comma||', 'out', 'to', 'dinner', 'at', 'a', 'fancy', 'french', 'restaurant', '||question_mark||', '||return|', 'betty:', '||left_parentheses||', 'sexy', '||right_parentheses||', 'sounds', 'great', '||period||', 'and', 'if', 'this', 'love', "tester's", 'as', 'accurate', 'as', 'it', 'looks', '||comma||', 'maybe', "we'll", 'be', 'having', 'breakfast', '||comma||', 'too', '||period||', '||return|', 'moe_szyslak:', 'you', 'did', 'it', '||comma||', 'grampa', '||exclamation_mark||', 'you', 'really', 'are', 'a', 'love', 'expert', '||period||', '||return|', 'grampa_simpson:', 'dang', 'right', '||exclamation_mark||', 'fact', 'is', '||comma||', 'i', 'invented', 'kissing', '||period||', 'it', 'was', 'during', 'world', 'war', 'one', '||comma||', 'and', 'they', 'were', 'looking', 'for', 'a', 'new', 'way', 'to', 'spread', 'germs', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'wha', '||dash||', 'uh-oh', '||period||', 'here', 'comes', 'the', 'evening', 'rush', '||period||', 'clear', 'out', '||comma||', 'fellas', '||period||', '||return|', 'barflies:', 'what', 'a', 'day', '||period||', '/', "let's", 'get', 'started', '||period||', '/', 'some', 'serious', "drinkin'", '||period||', '/', '||left_parentheses||', 'etc', '||period||', '||right_parentheses||', '||return|', 'homer_simpson:', "'evening", '||comma||', 'moe', '||period||', '||return|', 'barney_gumble:', "'morning", '||comma||', 'moe', '||period||', '||return|', 'chauffeur:', 'here', 'we', 'are', '||comma||', 'mr', '||period||', 'gumbel', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'all', 'right', '||period||', 'listen', 'up', '||comma||', 'guys', '||period||', 'the', 'springfield', 'police', 'have', 'told', 'me', 'that', '91', 'per', 'cent', 'of', 'all', 'traffic', 'accidents', 'are', 'caused', 'by', 'you', 'six', 'guys', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', 'know', '||comma||', 'i', 'know', '||period||', 'but', 'the', 'bad', 'news', 'is', 'we', 'gotta', 'start', 'having', 'designated', 'drivers', '||period||', '||return|', 'moe_szyslak:', "we'll", 'choose', 'the', 'same', 'way', 'they', 'pick', 'the', 'pope', '||period||', '||return|', 'moe_szyslak:', 'everybody', 'reach', 'in', 'and', 'draw', 'a', 'pickled', 'egg', '||period||', 'whoever', 'gets', 'the', 'black', 'egg', 'stays', 'sober', 'tonight', '||period||', '||return|', 'barney_gumble:', 'noooooooooo', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'barney', '||right_parentheses||', 'you', 'got', 'the', 'black', 'one', '||period||', '||return|', 'homer_simpson:', 'hey', 'everybody', '||comma||', "i'm", 'peter', 'pantsless', '||exclamation_mark||', '||left_parentheses||', 'laughs', '||right_parentheses||', '||return|', 'barney_gumble:', '||left_parentheses||', 'pained', 'moan', '||right_parentheses||', 'i', "can't", 'take', 'this', 'much', 'longer', '||period||', 'i', 'gotta', 'have', 'a', 'beer', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'horrified', '||right_parentheses||', 'oh', '||comma||', 'no', '||period||', 'oh', '||comma||', 'no', '||period||', 'not', 'tonight', '||period||', 'not', 'tonight', '||exclamation_mark||', '||return|', 'duffman:', '||left_parentheses||', 'party', 'voice', '||right_parentheses||', 'are', 'you', 'ready', 'to', 'get', 'duffed', '||question_mark||', '||return|', 'lenny_leonard:', 'hey', '||comma||', "it's", 'duffman', '||exclamation_mark||', 'the', 'guy', 'in', 'a', 'costume', 'that', 'creates', 'awareness', 'of', 'duff', '||exclamation_mark||', '||return|', 'duffman:', 'duffman', 'wants', 'to', 'party', 'down', 'with', 'the', 'man', 'who', 'sent', 'in', 'ten', 'thousand', 'duff', 'labels', 'to', 'bring', 'me', 'here', 'today', '||period||', "i've", 'got', 'a', 'bottomless', 'mug', 'of', 'new', '||quotation_mark||', 'duff', 'extra', 'cold', '||quotation_mark||', 'for', '||period||', '||period||', '||period||', '||left_parentheses||', 'reads', 'card', '||right_parentheses||', 'barney', 'gumbel', '||exclamation_mark||', '||return|', 'cheerleaders:', '||left_parentheses||', 'cheers', 'and:', '||right_parentheses||', 'chug', '||exclamation_mark||', 'chug', '||exclamation_mark||', 'chug', '||exclamation_mark||', 'chug', '||exclamation_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'straining', '||right_parentheses||', 'i', "can't", '||exclamation_mark||', "i'm", 'the', 'designated', 'driver', '||exclamation_mark||', '||return|', 'duffman:', '||left_parentheses||', 'perfunctory', '||comma||', 'brusque', '||right_parentheses||', 'ehhh', '||period||', '||period||', '||period||', "that's", 'swell', '||period||', 'duff', 'wholeheartedly', 'supports', 'the', 'designated', 'driver', 'program', '||period||', '||period||', '||period||', 'now', '||comma||', 'who', 'wants', 'to', 'party', '||question_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'face', 'it', '||comma||', 'homer', '||comma||', 'the', 'car', 'is', 'gone', '||period||', 'barney', "ain't", 'never', "comin'", 'back', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'shaky', '||right_parentheses||', 'all', 'i', 'remember', 'about', 'the', 'last', 'two', 'months', 'is', 'giving', 'a', 'guest', 'lecture', 'at', 'villanova', '||period||', '||left_parentheses||', 'beat', '||right_parentheses||', 'or', 'maybe', 'it', 'was', 'a', 'streetcorner', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'quiet', 'anger', '||right_parentheses||', 'so', 'you', 'lost', 'my', 'car', '||comma||', 'eh', '||question_mark||', 'well', '||comma||', "that's", 'just', 'grand', '||period||', 'i', 'ought', 'to', 'punch', 'you', 'in', 'the', 'nose', '||comma||', 'but', 'i', 'have', 'to', 'pick', 'up', 'my', 'kids', 'at', 'school', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'covering', '||right_parentheses||', 'uh', '||comma||', "that's", 'a', 'parasol', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'moe', '||comma||', 'this', 'is', 'it', '||period||', "today's", 'the', 'day', 'i', 'get', 'my', 'new', 'air', 'conditioner', '||period||', '||return|', 'moe_szyslak:', 'congratulations', '||period||', "who's", 'the', 'little', 'chick', '||question_mark||', '||return|', 'lisa_simpson:', "i'm", 'lisa', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'moe', '||comma||', 'proudly', '||right_parentheses||', 'she', 'has', 'a', 'gift', '||period||', '||return|', 'lisa_simpson:', 'you', 'have', 'thirteen', 'pickled', 'eggs', 'in', 'this', 'jar', '||exclamation_mark||', '||left_parentheses||', 'cute', '||right_parentheses||', 'and', 'one', 'cockroach', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'displeased', 'chuckle', '||right_parentheses||', 'who', 'are', 'you', '||comma||', 'sweetheart', '||comma||', 'the', 'health', 'inspector', '||question_mark||', '||return|', 'man_at_bar:', 'no', '||comma||', 'but', 'i', 'am', '||period||', '||return|', 'moe_szyslak:', 'uh', '||period||', '||period||', '||period||', 'here', '||comma||', 'have', 'a', 'margarita', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'but', 'you', "can't", 'leave', '||exclamation_mark||', "we're", "scammin'", 'an', 'old', 'lady', 'at', 'my', 'house', 'and', 'i', 'need', 'a', 'place', 'to', 'hide', 'out', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'sorry', 'homer', '||comma||', "i've", 'been', 'planning', 'this', 'vacation', 'for', 'years', '||period||', "i'm", 'finally', 'gonna', 'see', 'easter', 'island', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'right', '||period||', 'with', 'the', 'giant', 'heads', '||period||', '||return|', 'moe_szyslak:', 'with', 'the', 'what', 'now', '||question_mark||', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'you', 'seen', 'apu', 'lately', '||question_mark||', 'he', 'looks', 'terrible', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'rumor', 'has', 'it', 'marge', 'threw', 'him', 'out', '||period||', '||return|', 'barney_gumble:', 'aw', '||comma||', 'tough', 'break', '||period||', "she's", 'a', 'beautiful', 'lady', '||period||', '||return|', 'moe_szyslak:', 'you', 'got', 'that', 'straight', '||comma||', 'barn', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'raising', 'glasses', '||right_parentheses||', 'to', 'marge', '||exclamation_mark||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'what', 'do', 'you', 'recommend', 'for', 'severe', 'depression', '||question_mark||', '||return|', 'moe_szyslak:', 'booze', '||comma||', 'booze', 'and', 'more', 'booze', '||period||', '||return|', 'lenny_leonard:', 'ha', '||exclamation_mark||', "nothin'", 'like', 'a', 'depressant', 'to', 'chase', 'the', 'blues', 'away', '||period||', '||return|', 'lenny_leonard:', 'yeah', '||comma||', 'you', 'got', 'that', '||period||', '||period||', '||period||', '/', 'oh', 'yeah', '||period||', '/', 'uh-huh', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'oof', '||comma||', 'manjula', 'and', 'i', 'have', 'not', 'seen', 'each', 'other', 'in', 'twenty', 'years', '||period||', 'two', 'people', 'cannot', 'fall', 'in', 'love', 'sight-unseen', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hold', 'on', 'there', '||exclamation_mark||', "i'm", "countin'", 'on', 'that', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'well', '||comma||', 'just', 'twenty-four', 'hours', 'of', 'freedom', 'left', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'checking', 'watch', '||comma||', 'chipper', '||right_parentheses||', 'actually', '||comma||', "it's", 'more', 'like', 'twelve', '||period||', 'no', '||comma||', "i'm", 'so', 'stupid', '||comma||', 'seven', '||period||', "it's", 'seven', 'hours', '||period||', 'you', 'have', 'seven', 'hours', '||period||', '||left_parentheses||', 'showing', 'apu', 'watch', '||right_parentheses||', 'see', '||question_mark||', 'seven', '||period||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'sad', 'moan', '||comma||', 'then', 'singing', 'dirge-like', '||right_parentheses||', '||quotation_mark||', 'well', '||comma||', "i'm", 'hot', 'blooded', '/', 'check', 'it', 'and', 'see', '/', "i've", 'got', 'a', 'fever', 'of', 'a', 'hundred', 'and', 'three', '||period||', '||period||', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', "c'mon", '||period||', 'you', "shouldn't", 'be', 'spending', 'your', 'last', 'hours', 'of', 'bachelorhood', 'in', 'a', 'dump', 'like', 'this', '||period||', '||return|', 'homer_simpson:', 'you', 'should', 'be', "livin'", 'like', "there's", 'no', 'tomorrow', '||period||', 'and', 'i', 'know', 'just', 'the', 'place', '||period||', '||return|', 'homer_simpson:', 'ahh', '||period||', 'is', 'this', 'the', 'life', '||comma||', 'or', 'what', '||question_mark||', '||return|', 'jasper_beardly:', '||left_parentheses||', 'reaching', 'for', 'a', 'switch', '||right_parentheses||', 'you', 'want', 'me', 'to', 'turn', 'on', 'the', 'bubbles', '||question_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'geez', '||comma||', 'this', 'hot-rod', 'is', 'souped', 'up', 'six', 'ways', 'from', 'sunday', '||period||', 'never', 'had', 'you', 'figured', 'for', 'a', 'gear-head', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'casual', '||right_parentheses||', 'oh', '||comma||', 'yeah', '||period||', "i'm", 'a', 'real', 'expert', '||period||', '||return|', 'moe_szyslak:', 'what', 'is', 'that', '||question_mark||', 'a', 'six-barrel', 'hollye', 'carb', '||question_mark||', '||return|', 'homer_simpson:', 'you', 'betcha', '||period||', '||return|', 'moe_szyslak:', 'edelbrock', 'intakes', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', "nothin'", 'but', '||period||', '||return|', 'moe_szyslak:', 'meyerhof', 'lifters', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'oh', 'yeah', '||period||', '||return|', 'moe_szyslak:', 'i', 'made', 'that', 'last', 'one', 'up', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'keeping', 'dignity', '||right_parentheses||', 'i', 'see', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'sounds', 'like', "you're", 'having', 'a', 'rough', 'christmas', '||comma||', 'homer', '||period||', 'you', 'know', 'what', 'i', 'blame', 'this', 'on', 'the', 'breakdown', 'of', '||question_mark||', 'society', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'drunk', '||right_parentheses||', 'yeah', '||comma||', "you're", 'right', '||comma||', 'moe', '||period||', "you're", 'always', 'moe', '||period||', '||return|', 'barney_gumble:', 'homer', '||comma||', 'look', '||exclamation_mark||', 'your', 'house', 'is', 'on', 'tv', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'pissed', '||right_parentheses||', 'you', 'take', 'that', 'back', '||comma||', 'barney', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'nah', '||comma||', "he's", 'right', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'stay', 'out', 'of', 'this', '||comma||', 'old', 'man', '||period||', '||return|', 'kent_brockman:', 'dateline:', 'kent', 'brockman', '||period||', "i'm", 'here', 'at', 'the', 'scene', 'of', 'the', 'christmas', 'burglary', '||comma||', 'where', 'a', 'creature', 'was', 'stirring', 'last', 'night', '||period||', 'and', 'what', 'he', 'was', '||quotation_mark||', 'stirring', '||quotation_mark||', 'was', '||quotation_mark||', 'up', 'trouble', '||period||', '||quotation_mark||', '||return|', 'kent_brockman:', 'is', 'your', 'husband', 'or', 'lover', 'here', '||comma||', "ma'am", '||question_mark||', '||return|', 'marge_simpson:', 'no', '||period||', 'my', 'husband', 'is', '||period||', '||period||', '||period||', 'at', 'church', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'intoxicated', 'smile', '||right_parentheses||', 'aw', '||comma||', "that's", 'my', 'girl', '||period||', 'i', 'love', 'you', '||comma||', 'marjorie', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', "she's", 'quite', 'a', 'gal', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'threatening', '||right_parentheses||', 'you', 'shut', 'up', '||period||', '||return|', 'kent_brockman:', 'so', 'when', 'you', 'realized', 'christmas', 'was', 'ruined', '||comma||', 'how', 'did', 'you', 'feel', '||question_mark||', '||return|', 'marge_simpson:', 'how', 'do', 'you', 'think', 'i', 'felt', '||question_mark||', '||return|', 'kent_brockman:', 'absolutely', 'devastated', '||period||', '||left_parentheses||', 'turns', 'to', 'camera', '||right_parentheses||', '||quotation_mark||', 'absolutely', 'devastated', '||period||', '||quotation_mark||', 'the', 'words', 'of', 'a', 'heart-broken', 'mother', '||period||', 'for', 'there', 'will', 'be', 'no', 'fire', 'truck', 'for', 'little', 'bart', '||period||', 'no', 'sweater', 'for', 'little', 'lisa', '||period||', 'no', 'cajun', 'sausage', 'for', 'little', 'homer', '||period||', '||period||', '||period||', '||return|', 'kent_brockman:', '||left_parentheses||', 'sneering', '||right_parentheses||', 'so', 'while', "you're", 'home', 'today', 'eating', 'your', 'sweet', '||comma||', 'sweet', 'holiday', 'turkey', '||comma||', 'i', 'hope', "you'll", 'all', 'choke', 'just', 'a', 'little', 'bit', '||period||', '||return|', 'moe_szyslak:', 'so', 'this', 'was', 'all', 'a', 'scam', '||period||', '||left_parentheses||', 'disgusted', '||right_parentheses||', 'and', 'on', 'christmas', '||period||', '||return|', 'barney_gumble:', 'yeah', '||period||', 'jesus', 'must', 'be', 'spinning', 'in', 'his', 'grave', '||period||', '||return|', '||return|', '||return|', 'chief_wiggum:', 'ah', '||comma||', "isn't", 'that', 'illegal', '||question_mark||', '||return|', 'krusty_the_clown:', '||left_parentheses||', 'enthusiastically', '||right_parentheses||', 'hey', '||comma||', 'hey', '||exclamation_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'reading', 'sign', '||right_parentheses||', 'four', 'drink', 'minimum', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'pats', 'stomach', '||right_parentheses||', "i'll", 'cover', 'ya', '||comma||', 'honey', '||period||', '||return|', 'moe_szyslak:', 'hi', '||period||', 'how', 'you', 'folks', "doin'", '||question_mark||', "i'm", 'moe', '||period||', 'or', 'as', 'the', 'ladies', 'like', 'to', 'call', 'me', '||comma||', '||quotation_mark||', 'hey', 'you', '||comma||', 'behind', 'the', 'bushes', '||period||', '||quotation_mark||', '||left_parentheses||', 'tapping', 'mic', '||right_parentheses||', 'uh', '||comma||', 'is', 'this', 'thing', 'on', '||question_mark||', '||return|', 'barney_gumble:', 'no', '||period||', 'sorry', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'clears', 'throat', '||right_parentheses||', 'and', 'now', '||comma||', 'without', 'further', 'apu', '||period||', '||period||', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'woo', '||exclamation_mark||', 'i', 'have', 'been', 'zinged', 'and', 'i', 'love', 'it', '||period||', '||return|', 'moe_szyslak:', '||period||', '||period||', '||period||', 'the', 'last', 'angry', 'clown', '||comma||', 'the', 'man', 'who', 'spews', 'truth', 'from', 'every', 'orifice', '||comma||', 'ladies', 'and', 'gentlemen', '||period||', '||period||', '||period||', 'krusty', '||exclamation_mark||', '||return|', 'krusty_the_clown:', '||left_parentheses||', 'cool', 'indifference', '||right_parentheses||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||return|', 'krusty_the_clown:', 'so', '||comma||', "i'm", "watchin'", 'tv', 'today', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'clapping', '||right_parentheses||', 'woo', '||exclamation_mark||', 'tv', '||exclamation_mark||', 'yeah', '||exclamation_mark||', '||return|', 'krusty_the_clown:', 'all', 'i', 'keep', "seein'", 'is', 'dead', 'celebrities', "hawkin'", 'products', '||exclamation_mark||', 'they', 'got', 'poor', 'vincent', 'price', "floatin'", 'around', 'on', 'a', 'toilet', 'cake', "tellin'", 'me', 'about', 'the', '||quotation_mark||', 'horrors', '||quotation_mark||', 'of', 'an', 'unfresh', 'bowl', '||period||', '||period||', '||period||', '||return|', 'krusty_the_clown:', 'and', "i'll", 'tell', 'ya', "somethin'", 'else', '||comma||', 'i', 'do', 'not', 'believe', 'winston', 'churchill', 'would', 'eat', 'at', 'der', 'wienerschnitzel', '||exclamation_mark||', '||return|', 'krusty_the_clown:', "there's", 'nothing', 'those', 'madison', 'avenue', 'grave', 'robbers', "won't", 'do', 'to', 'get', 'us', 'to', 'buy', 'their', 'crap', '||exclamation_mark||', '||return|', 'crowd:', '||left_parentheses||', 'various', '||right_parentheses||', 'yeah', '||exclamation_mark||', '/', 'right', 'on', '||comma||', 'krusty', '||exclamation_mark||', '/', 'you', 'tell', "'em", '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'with', 'crowd', '||right_parentheses||', 'impeach', 'churchill', '||exclamation_mark||', '||return|', 'krusty_the_clown:', 'well', '||comma||', "here's", 'one', 'dollar', 'those', 'crooks', "aren't", 'gonna', 'get', 'their', 'hands', 'on', '||period||', '||return|', 'krusty_the_clown:', 'i', "don't", 'care', 'if', 'it', 'is', 'illegal', '||period||', "i'm", "makin'", 'a', 'stand', 'here', '||period||', "who's", 'with', 'me', '||question_mark||', '||return|', 'lenny_leonard:', 'i', 'am', '||exclamation_mark||', 'i', 'work', 'like', 'a', 'dog', 'for', 'this', '||exclamation_mark||', '||return|', 'agnes_skinner:', 'oh', '||comma||', "you're", 'burning', 'it', 'all', 'wrong', '||comma||', 'seymour', '||period||', '||return|', 'seymour_skinner:', "it's", 'my', 'allowance', '||comma||', 'mother', '||comma||', 'and', "i'll", 'burn', 'it', 'the', 'way', 'i', 'want', '||period||', '||return|', 'homer_simpson:', 'take', 'that', '||comma||', 'you', 'greedy', 'fat', 'cats', '||period||', '||left_parentheses||', 'to', 'marge', '||right_parentheses||', 'marge', '||comma||', 'gimme', 'your', 'purse', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'sotto', '||semicolon||', 'desperate', '||right_parentheses||', "here's", '$42', '||dash||', "it's", 'everything', 'i', 'have', '||period||', 'run', 'home', 'and', 'bury', 'it', 'in', 'the', 'yard', '||period||', '||return|', 'lisa_simpson:', 'i', 'love', 'you', '||comma||', 'mom', '||exclamation_mark||', '||return|', 'crowd:', 'you', 'tell', "'em", '||comma||', 'krusty', '||period||', '/', 'screw', 'everyone', '||exclamation_mark||', '/', 'etc', '||period||', '||return|', 'businessman_#1:', 'wow', '||comma||', "they're", 'hanging', 'on', 'his', 'every', 'word', '||period||', '||left_parentheses||', 'turns', '||right_parentheses||', 'are', 'you', 'thinking', 'what', "i'm", 'thinking', '||question_mark||', '||return|', 'businessman_#2:', 'i', 'hope', 'so', '||period||', '||return|', 'businessman_#1:', '||left_parentheses||', 'firmly', '||right_parentheses||', 'i', 'thought', 'i', 'made', 'myself', 'clear', 'in', 'boston', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', 'i', 'brought', 'a', 'bag', 'of', 'money', 'in', 'case', 'he', 'wants', 'us', 'to', 'burn', 'it', 'again', '||period||', '||return|', 'homer_simpson:', 'i', 'hope', 'he', 'tells', 'us', 'to', 'burn', 'our', 'pants', '||period||', 'these', 'things', 'are', "drivin'", 'me', 'nuts', '||exclamation_mark||', '||return|', 'krusty_the_clown:', 'so', 'this', 'afternoon', '||comma||', 'two', 'suits', 'come', 'up', 'to', 'me', 'and', 'ask', 'me', 'to', 'endorse', 'some', 'new', 'sports', 'utility', 'vehicle', '||period||', '||return|', 'crowd:', 'oooo', '||exclamation_mark||', '/', 'what', 'did', 'you', 'do', '||question_mark||', '/', '||left_parentheses||', 'laughs', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'calling', 'out', '||right_parentheses||', "don't", 'you', 'hate', 'pants', '||question_mark||', '||return|', 'krusty_the_clown:', '||left_parentheses||', 'ignoring', 'homer', '||right_parentheses||', 'i', 'threw', 'those', 'two', 'creeps', 'out', 'on', 'their', 'ass', '||period||', '||return|', 'crowd:', 'yeah', '||exclamation_mark||', '/', 'woo', '||exclamation_mark||', '/', 'go', 'krusty', '||exclamation_mark||', '/', 'woo', 'hoo', 'hoo', '||exclamation_mark||', '||return|', 'krusty_the_clown:', 'then', '||comma||', 'they', 'followed', 'me', 'home', '||comma||', 'begging', 'me', 'to', 'take', 'a', 'test', 'drive', '||period||', 'and', 'let', 'me', 'tell', 'you', '||comma||', '||left_parentheses||', 'beat', '||right_parentheses||', 'talk', 'about', 'roomy', '||exclamation_mark||', 'the', 'canyonero', 'combines', 'the', 'smooth', 'handling', 'of', 'a', 'european', 'sports', 'car', 'with', 'the', 'rugged', 'driveability', 'of', 'a', 'sturdy', '4x4', '||period||', '||return|', 'crowd:', '||left_parentheses||', 'confused', 'noises', '||right_parentheses||', '/', 'huh', '||question_mark||', '/', 'what', '||question_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'calling', 'out', '||right_parentheses||', 'hey', '||comma||', 'krusty', '||comma||', 'what', 'are', 'you', 'talking', 'about', '||question_mark||', 'i', '||comma||', 'i', 'thought', 'you', 'said', 'those', 'guys', 'were', 'creeps', '||exclamation_mark||', '||return|', 'krusty_the_clown:', 'yeah', '||comma||', 'but', 'that', 'was', 'before', 'i', 'got', 'to', 'know', "'em", '||period||', 'and', "i'm", "tellin'", "ya'", '||comma||', 'the', 'canyonero', 'is', 'the', 'cadillac', 'of', 'automobiles', '||period||', "that's", 'canyonero', '||period||', '||return|', 'crowd:', 'boo', '||exclamation_mark||', 'etc', '||period||', '||return|', 'krusty_the_clown:', 'wait', '||exclamation_mark||', 'where', 'you', "goin'", '||question_mark||', 'i', 'still', 'got', 'plenty', 'of', 'beefs', '||exclamation_mark||', 'fat-free', 'yogurt', '||exclamation_mark||', '||return|', 'krusty_the_clown:', 'th-th-th-the', 'quality', 'of', 'computer', 'porn', '||exclamation_mark||', '||left_parentheses||', 'groan', '||right_parentheses||', '||return|', 'jay:', 'i', 'knew', 'i', 'shoulda', 'gone', 'on', 'first', '||period||', '||return|', 'bart_simpson:', 'i', "don't", 'get', 'it', '||comma||', 'krusty', '||period||', 'you', 'said', 'you', 'would', 'never', 'be', 'a', 'shill', 'again', '||period||', '||return|', 'krusty_the_clown:', '||left_parentheses||', 'indifferent', 'sound', '||right_parentheses||', 'i', 'learned', 'something', 'about', 'myself', 'tonight', '||comma||', 'kid', '||period||', '||left_parentheses||', 'thoughtfully', '||right_parentheses||', 'it', "ain't", 'comedy', "that's", 'in', 'my', 'blood', '||period||', "it's", 'selling', 'out', '||period||', '||return|', 'krusty_the_clown:', "c'mon", '||comma||', "i'll", 'give', 'you', 'a', 'ride', 'home', '||period||', '||return|', 'bart_simpson:', 'wow', '||comma||', 'this', 'is', 'roomy', '||exclamation_mark||', '||return|', 'hank_williams_jr', '||period||', ':', 'can', 'you', 'name', 'the', 'truck', 'with', 'four', 'wheel', 'drive', '||question_mark||', '/', 'smells', 'like', 'a', 'steak', 'and', 'seats', '35', '||period||', '||period||', '||period||', '/', 'canyonero', '||period||', '||left_parentheses||', 'whip', 'crack', '||right_parentheses||', 'canyonero', '||period||', '||left_parentheses||', 'whip', 'crack', '||right_parentheses||', 'well', 'it', 'goes', 'real', 'slow', 'with', 'the', 'hammer', 'down', '/', "it's", 'the', 'country-fried', 'truck', 'endorsed', 'by', 'a', 'clown', '||period||', '/', 'canyonero', '||period||', '||period||', '||period||', '||period||', '||return|', 'announcer:', '||left_parentheses||', 'quickly', '||right_parentheses||', 'federal', 'highway', 'commission', 'has', 'ruled', 'the', 'canyonero', 'unsafe', 'for', 'highway', 'or', 'city', 'driving', '||period||', '||return|', 'chorus:', '||left_parentheses||', 'quickly', '||right_parentheses||', 'canyonero', '||exclamation_mark||', '||return|', 'hank_williams_jr', '||period||', ':', 'twelve', 'yards', 'long', '||comma||', 'two', 'lanes', 'wide', '||period||', '/', 'sixty-five', 'tons', 'of', 'american', 'pride', '||period||', '/', 'canyonero', '||left_parentheses||', 'whip', 'crack', '||right_parentheses||', 'canyonero', '||left_parentheses||', 'whip', 'crack', '||right_parentheses||', '||return|', 'hank_williams_jr', '||period||', ':', 'top', 'of', 'the', 'line', 'in', 'utility', 'sports', '||period||', '/', 'unexplained', 'fires', 'are', 'a', 'matter', 'for', 'the', 'courts', '||period||', '/', 'canyonero', '||left_parentheses||', 'whip', 'crack', '||right_parentheses||', 'canyonero', '||left_parentheses||', 'whip', 'crack', '||right_parentheses||', '||return|', 'hank_williams_jr', '||period||', ':', 'she', 'blinds', 'everybody', 'with', 'her', 'super', 'high', 'beam', '||period||', '/', "she's", 'a', 'squirrel', 'squashing', '||comma||', 'deer', "smackin'", '||comma||', "drivin'", 'machine', '||period||', 'canyonero', '||period||', '||period||', '||period||', '||period||', '||return|', 'hank_williams_jr', '||period||', ':', 'canyoner-oooo', '||period||', '||period||', '||period||', 'hyahh', '||exclamation_mark||', '||exclamation_mark||', 'canyonero', '||exclamation_mark||', '||return|', 'hank_williams_jr', '||period||', ':', 'whoa', '||comma||', 'canyonero', '||exclamation_mark||', 'whoa', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'toasting', '||right_parentheses||', 'to', 'marge', '||period||', 'and', 'all', 'the', 'blissful', 'years', "i've", 'spent', 'hiding', 'from', 'her', 'in', 'this', 'bar', '||period||', '||return|', 'barflies:', 'hear', '||comma||', 'hear', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||period||', 'big', 'deal', '||period||', 'you', 'got', 'a', 'wife', '||period||', 'i', 'got', 'a', 'rash', '||period||', 'who', 'cares', '||question_mark||', '||left_parentheses||', 'off', "homer's", 'hurt', 'look', '||right_parentheses||', 'ech', '||comma||', "i'm", 'sorry', '||comma||', 'homer', '||period||', "it's", 'just', '||comma||', "it's", 'been', 'four', 'years', 'since', 'my', 'last', 'date', 'with', 'a', 'whatchacallit', '||comma||', 'uh', '||comma||', 'woman', '||period||', '||return|', 'homer_simpson:', 'whatever', 'happened', 'to', 'your', 'mail', 'order', 'bride', '||question_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'she', 'got', 'homesick', 'for', 'her', 'old', 'life', '||comma||', 'diving', 'for', 'tourist', 'pennies', 'in', 'a', 'micronesian', 'swamp', '||period||', '||return|', 'homer_simpson:', 'so', 'her', 'career', 'got', 'in', 'the', 'way', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', "don't", 'blame', 'her', '||period||', '||left_parentheses||', 'looking', 'in', 'mirror', '||right_parentheses||', 'no', 'girl', 'wants', 'to', 'end', 'up', 'with', 'a', 'joe', 'puke-pail', 'like', 'me', '||period||', '||return|', 'homer_simpson:', 'now', '||comma||', 'now', '||comma||', 'i', "won't", 'hear', 'of', 'it', '||comma||', 'moe', '||period||', "you're", 'a', 'fabulous', 'catch', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'snort', '||right_parentheses||', 'yeah', '||comma||', 'well', '||comma||', 'uh', '||comma||', 'how', 'come', 'i', "ain't", "fendin'", 'off', 'movie', 'starlets', 'with', 'a', 'pointy', 'stick', '||question_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', "it's", 'probably', 'due', 'to', 'your', 'ugliness', '||period||', 'but', 'that', "doesn't", 'mean', 'we', "can't", 'find', 'you', 'a', 'woman', '||period||', 'come', 'on', '||comma||', "we're", "goin'", 'to', 'the', 'darkest', 'bar', 'in', 'town', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'yeah', '||comma||', 'i', 'wanna', 'send', 'her', 'two', 'dozen', 'roses', '||period||', 'and', 'i', 'wanna', 'put', 'something', 'nice', 'on', 'the', 'card', '||comma||', 'like', '||comma||', 'um', '||comma||', '||quotation_mark||', 'renee', '||comma||', 'my', 'treasure', '||period||', '||period||', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'shut', 'up', '||comma||', 'or', "i'll", 'ram', 'a', 'stool', 'down', 'your', 'throat', '||exclamation_mark||', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'ah', '||comma||', 'nah', '||comma||', 'nah', '||comma||', 'no', '||comma||', 'i', "don't", 'want', 'that', 'on', 'the', 'card', '||period||', '||period||', '||period||', 'well', '||comma||', 'lemme', 'hear', 'how', 'it', 'sounds', '||period||', '||period||', '||period||', 'nah', '||comma||', 'nah', '||comma||', 'take', 'it', 'out', '||period||', 'take', 'it', 'out', '||period||', 'and', 'charge', 'it', 'to', 'my', 'players', 'club', 'card', '||period||', '||period||', '||period||', 'maxed', 'out', '||question_mark||', '||return|', 'moe_szyslak:', 'look', '||comma||', 'i', 'really', 'need', 'these', 'flowers', '||comma||', 'okay', '||question_mark||', 'i', 'got', 'a', 'real', 'tenuous', 'hold', 'on', 'my', 'girlfriend', 'here', '||period||', '||period||', '||period||', 'hello', '||question_mark||', 'hello', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sigh', '||right_parentheses||', 'well', '||comma||', "that's", 'it', '||period||', "it's", 'all', 'over', '||period||', 'renee', "ain't", 'gonna', 'wanna', 'hang', 'around', 'with', 'no', 'joe', 'pinchpenny', '||period||', '||return|', 'homer_simpson:', 'aw', '||comma||', 'come', 'on', '||comma||', 'moe', '||period||', 'think', 'of', 'all', 'you', 'have', 'to', 'offer', 'besides', 'money', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'thinks', 'for', 'a', 'beat', '||right_parentheses||', 'hmmm', '||period||', '||period||', '||period||', 'i', 'need', 'cash', '||comma||', 'and', 'lots', 'of', 'it', '||period||', 'um', '||comma||', 'all', 'right', '||comma||', 'everybody', '||comma||', "i'm", 'calling', 'in', 'your', 'bar', 'tabs', '||period||', '||return|', 'moe_szyslak:', 'ya', 'bunch', 'of', 'ungrateful', 'ingrates', '||exclamation_mark||', 'ya', '||dash||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'distraught', '||right_parentheses||', 'ah', '||comma||', 'homer', '||comma||', 'what', 'am', 'i', 'gonna', 'do', '||question_mark||', "renee's", 'my', 'last', 'chance', 'for', 'true', 'love', '||period||', '||return|', 'homer_simpson:', 'if', 'you', 'really', 'need', 'money', '||comma||', 'you', 'could', 'sell', 'a', 'kidney', '||comma||', 'or', 'maybe', 'even', 'your', 'car', '||period||', '||return|', 'moe_szyslak:', 'nah', '||comma||', 'my', 'car', "ain't", 'worth', "nothin'", '||period||', '||left_parentheses||', 'getting', 'an', 'idea', '||right_parentheses||', 'but', 'it', 'is', 'insured', '||period||', '||period||', '||period||', 'for', 'five', 'grand', '||period||', '||period||', '||period||', 'homer', '||comma||', 'i', 'need', 'your', 'help', '||period||', 'you', 'gotta', 'steal', 'this', 'car', 'and', 'wreck', 'it', 'for', 'me', '||period||', '||return|', 'homer_simpson:', 'steal', '||question_mark||', 'oh', 'no', '||comma||', 'you', 'got', 'the', 'wrong', 'guy', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'awkwardly', '||right_parentheses||', 'you', 'dropped', "somethin'", '||period||', '||return|', 'moe_szyslak:', "c'mon", '||comma||', 'homer', '||exclamation_mark||', "i'm", 'one', 'of', 'your', 'dearest', 'friends', '||exclamation_mark||', 'when', 'everybody', 'said', 'you', 'were', 'too', 'drunk', 'to', 'drive', 'that', 'time', '||comma||', 'who', 'gave', 'you', 'your', 'keys', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'warily', '||right_parentheses||', 'oh', '||comma||', 'you', 'did', '||period||', 'but', '||dash||', 'i', 'still', "don't", 'know', '||period||', '||period||', '||period||', 'i', 'can', 'just', 'imagine', 'what', 'marge', 'would', 'say', '||period||', '||return|', 'marge_simpson:', 'homer', '||comma||', 'i', 'insist', 'you', 'steal', 'that', 'car', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'firmly', '||right_parentheses||', "i'll", 'do', 'it', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'okay', '||comma||', "here's", 'the', 'plan', '||period||', '||left_parentheses||', 'placing', 'on', 'bar', '||right_parentheses||', 'this', 'model', 'car', 'represents', 'my', 'car', '||comma||', 'huh', '||question_mark||', 'and', 'this', 'olive', 'is', 'you', '||period||', 'now', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'mmmm', '||period||', '||period||', '||period||', 'me', '||period||', '||return|', 'moe_szyslak:', 'hey', '||exclamation_mark||', 'hey', '||exclamation_mark||', 'aw', '||comma||', "that's", 'great', '||period||', 'now', 'the', "car's", 'gonna', 'have', 'to', 'represent', 'you', '||comma||', 'and', '||comma||', 'uh', '||comma||', 'this', 'little', 'toy', 'man', 'will', 'represent', 'the', 'car', '||period||', '||return|', 'moe_szyslak:', 'all', 'right', '||comma||', 'forget', 'it', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'listen', 'up', '||comma||', 'here', '||period||', 'tomorrow', 'night', 'at', 'eight', '||comma||', 'you', 'go', 'down', 'to', 'the', 'waterfront', 'and', 'you', '||quotation_mark||', 'steal', '||quotation_mark||', 'my', 'car', '||period||', '||return|', 'homer_simpson:', 'what', 'about', 'the', 'cops', '||question_mark||', '||return|', 'moe_szyslak:', "that's", 'the', 'beauty', 'part', '||period||', 'every', 'cop', 'in', "town's", 'gonna', 'be', 'on', 'the', 'police', "department's", 'moonlight', 'charity', 'cruise', '||period||', 'and', "i'm", 'gonna', 'be', 'right', 'there', 'with', "'em", '||period||', '||return|', 'homer_simpson:', 'so', '||comma||', 'as', 'soon', 'as', 'you', 'get', 'back', '||comma||', 'we', 'steal', 'the', 'car', '||comma||', 'right', '||question_mark||', '||return|', 'moe_szyslak:', 'righ', '||dash||', 'no', '||comma||', 'no', '||period||', 'wrong', '||period||', 'listen', '||period||', 'while', "i'm", 'on', 'the', 'boat', 'with', 'the', 'perfect', 'alibi', '||comma||', 'you', 'steal', 'my', 'car', '||comma||', 'and', 'park', 'it', 'on', 'the', 'railroad', 'tracks', '||period||', 'then', 'when', 'the', '10:15', 'train', 'comes', 'along', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'wham', '||exclamation_mark||', 'the', 'insurance', 'company', 'pays', 'off', 'five', 'thousand', 'clams', '||period||', 'i', 'keep', 'showing', 'renee', 'the', 'sweet', 'life', '||period||', '||return|', 'homer_simpson:', "you're", 'a', 'genius', '||comma||', 'moe', '||period||', 'all', 'your', 'troubles', 'will', 'soon', 'be', 'over', 'for', 'a', 'couple', 'months', '||period||', '||return|', 'moe_szyslak:', '||period||', '||period||', '||period||', 'so', 'like', 'a', 'coward', 'i', 'let', 'homer', 'take', 'the', 'rap', 'for', 'the', 'whole', 'scam', '||period||', 'and', 'now', 'the', 'only', 'way', 'to', 'clear', 'him', 'is', 'to', 'turn', 'myself', 'in', '||period||', '||return|', 'renee:', 'i-i', "don't", 'know', 'what', 'to', 'say', '||period||', "i'm", 'shocked', '||period||', 'i', 'mean', 'you', 'broke', 'the', 'law', 'and', 'betrayed', 'a', 'friend', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', "you're", 'right', '||period||', 'you', "shouldn't", 'be', 'wasting', 'your', 'time', 'with', 'a', 'low-life', 'like', 'me', '||period||', '||return|', 'renee:', '||left_parentheses||', 'giving', 'in', '||right_parentheses||', 'oh', '||comma||', 'moe', '||comma||', "don't", 'say', 'that', '||period||', 'y-you', 'made', 'a', 'mistake', '||comma||', 'but', 'at', 'least', "you're", 'trying', 'to', 'set', 'things', 'straight', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', "that's", 'true', '||period||', "that's", 'true', '||comma||', 'baby', '||period||', 'hmf', '||comma||', "it'll", 'be', 'hell', 'being', 'locked', 'away', 'from', 'ya', '||comma||', 'but', 'i', 'guess', 'i', 'gotta', 'take', 'my', 'medicine', '||period||', '||left_parentheses||', 'sudden', 'thought', '||right_parentheses||', 'unless', '||period||', '||period||', '||period||', 'unless', '||comma||', 'i', 'send', 'a', 'letter', 'to', 'the', 'police', 'clearing', 'homer', '||period||', '||period||', '||period||', '||return|', 'renee:', '||left_parentheses||', 'hopeful', '||right_parentheses||', 'yeah', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'excited', '||right_parentheses||', 'then', 'we', 'go', 'to', 'the', 'graveyard', 'and', 'steal', 'two', 'corpses', '||period||', '||period||', '||period||', '||return|', 'renee:', '||left_parentheses||', 'stunned', '||right_parentheses||', 'oh', 'my', 'god', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'on', 'a', 'roll', '||right_parentheses||', 'we-we-we', 'switch', 'clothes', 'with', 'them', '||comma||', 'leave', "'em", 'in', 'the', 'bar', '||period||', 'then', 'we', 'pour', 'some', 'brandy', 'around', '||period||', 'like', 'so', '||period||', '||period||', '||period||', '||return|', 'renee:', 'yeah', '||comma||', 'would', 'you', 'hand', 'me', 'my', 'keys', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'yeah', '||period||', 'here', 'ya', 'go', '||period||', '||return|', 'moe_szyslak:', '||period||', '||period||', '||period||', 'then', 'we', 'light', 'a', 'match', '||period||', '||period||', '||period||', 'and', 'fwooof', '||exclamation_mark||', 'we', 'start', 'a', 'new', 'life', 'in', 'hawaii', '||period||', '||return|', 'renee:', 'goodbye', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'where', 'you', "goin'", '||comma||', 'baby', '||question_mark||', 'you', "goin'", 'to', 'find', 'the', 'corpses', '||question_mark||', '||return|', 'renee:', '||left_parentheses||', 'sarcastic', '||right_parentheses||', 'yes', '||comma||', 'moe', '||comma||', "i'm", 'going', 'to', 'find', 'corpses', '||period||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'well', '||comma||', 'you', 'want', 'me', 'to', 'come', 'with', '||question_mark||', 'renee', '||question_mark||', 'dearest', '||question_mark||', '||left_parentheses||', 'beat', '||comma||', 'then', 'realizing', 'moan', '||right_parentheses||', '||left_parentheses||', 'sigh', '||right_parentheses||', 'she', "ain't", "comin'", 'back', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'yelp', 'of', 'pain', '||right_parentheses||', 'ow', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'horrified', 'scream', '||right_parentheses||', 'uh-oh', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'murderously', '||right_parentheses||', 'you', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'homer', '||exclamation_mark||', 'thank', 'god', '||comma||', 'you', 'gotta', 'help', 'me', 'here', '||exclamation_mark||', '||return|', 'homer_simpson:', 'oh-ho', '||comma||', "i'll", 'help', 'you', '||period||', 'help', 'you', 'die', '||exclamation_mark||', '||left_parentheses||', 'attack', 'yell', '||right_parentheses||', '||return|', 'moe_szyslak:', 'eh', '||exclamation_mark||', "that's", 'it', '||exclamation_mark||', "you're", 'going', 'down', '||comma||', 'pal', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'boy', '||period||', '||period||', '||period||', 'uh', '||comma||', 'i', 'really', 'wanna', 'sleep', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'i', '||period||', '||period||', '||period||', 'also', 'sleep', '||period||', '||period||', '||period||', "g'night", '||comma||', 'mommy', '||period||', '||period||', '||period||', '||return|', 'barney_gumble:', 'moe', '||exclamation_mark||', 'homer', '||exclamation_mark||', '||left_parentheses||', 'screams', '||right_parentheses||', 'the', 'booze', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'homer', '||comma||', 'i', 'been', 'the', "world's", 'biggest', 'rat', '||period||', 'can', 'you', 'ever', 'forgive', 'me', '||question_mark||', '||return|', 'homer_simpson:', 'ohh', '||comma||', 'i', 'could', 'never', 'stay', 'mad', 'at', 'you', '||comma||', 'moe', '||period||', '||left_parentheses||', 'sincerely', '||right_parentheses||', 'after', 'all', '||comma||', '||left_parentheses||', 'tearfully', '||right_parentheses||', 'you', 'get', 'me', 'drunk', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'watching', 'fire', '||right_parentheses||', 'aww', '||exclamation_mark||', 'ah', '||comma||', 'my', 'poor', 'bar', '||period||', "it's", 'all', 'gone', '||period||', '||left_parentheses||', 'quiet', 'sobbing', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'puts', 'arm', 'around', 'moe', '||right_parentheses||', 'aw', '||comma||', 'moe', '||comma||', 'moe', '||comma||', 'moe', '||comma||', 'dry', 'those', 'beady', 'little', 'eyes', '||period||', 'your', 'buddy', "homer'll", 'get', 'you', 'back', 'on', 'your', 'feet', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', "i've", 'joined', 'the', 'naval', 'reserve', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'guys', '||comma||', 'i', "won't", 'be', 'seeing', 'you', 'for', 'a', 'while', '||period||', '||return|', 'barney_gumble:', 'where', 'are', 'you', 'going', '||question_mark||', '||return|', 'barney_gumble:', 'well', '||comma||', "i'm", 'not', 'gonna', 'let', 'anything', 'happen', 'to', 'my', 'best', 'friend', '||period||', "i'm", 'joining', 'too', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', "i'm", 'not', 'gonna', 'let', 'anything', 'happen', 'to', 'my', 'two', 'best', 'customers', '||period||', "i'm", 'joining', 'too', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'and', 'although', 'my', 'religion', 'strictly', 'forbids', 'military', 'service', '||dash||', 'what', 'the', 'hey', '||comma||', "i'm", 'in', 'too', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'touched', '||right_parentheses||', 'gee', '||comma||', 'thanks', 'guys', '||period||', 'this', 'is', 'just', 'like', '||quotation_mark||', 'the', 'deer', 'hunter', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', '||quotation_mark||', 'the', 'deer', 'hunter', '||question_mark||', '||quotation_mark||', 'uh', '||period||', '||period||', '||period||', 'hah', '||period||', '||period||', '||period||', 'that', 'reminds', 'me', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'so', 'lenny', '||comma||', "let's", 'say', 'you', 'pull', 'a', 'thorn', 'out', 'of', 'the', "pope's", 'butt', 'and', 'he', 'grants', 'ya', 'one', 'wish', '||period||', "what'll", 'it', 'be', '||question_mark||', '||return|', 'lenny_leonard:', 'hmm', '||comma||', 'only', 'one', '||comma||', 'huh', '||period||', '||period||', '||period||', 'well', '||comma||', "i've", 'always', 'wondered', 'what', 'it', 'would', 'feel', 'like', 'to', 'wear', 'something', "that's", 'been', 'ironed', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'whistles', '||right_parentheses||', "that'd", 'be', 'sweet', '||period||', 'what', 'about', 'you', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'gee', '||comma||', 'i', 'was', 'gonna', 'say', 'a', 'night', 'with', 'joey', 'heatherton', '||period||', 'but', 'an', 'ironed', 'shirt', '||period||', '||period||', '||period||', 'damn', '||exclamation_mark||', "that's", 'tempting', '||period||', '||return|', 'lenny_leonard:', 'what', 'about', 'you', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'leans', 'back', '||comma||', 'thoughtfully', '||right_parentheses||', 'well', '||period||', '||period||', '||period||', '||return|', 'agent_miller:', 'homer', 'simpson', '||question_mark||', '||left_parentheses||', 'flashing', 'badge', '||right_parentheses||', 'united', 'states', 'government', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'panicky', '||right_parentheses||', 'help', '||exclamation_mark||', 'somebody', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'wiping', 'glass', '||right_parentheses||', 'so', 'how', 'about', 'you', '||comma||', 'barn', '||question_mark||', 'one', 'wish', '||question_mark||', '||return|', 'homer_simpson:', 'so', 'if', 'my', 'cover', 'gets', 'blown', 'and', 'i', 'need', 'help', '||comma||', "what's", 'the', 'signal', '||question_mark||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'i', 'see', "you're", "watchin'", 'the', 'ball', 'game', '||period||', 'looks', 'like', 'a', 'good', 'one', '||period||', 'any', 'of', 'you', 'involved', 'in', 'any', 'illegal', 'activity', '||question_mark||', 'cause', 'i', 'could', 'sure', 'go', 'for', 'some', '||period||', '||return|', 'agent_johnson:', 'oh', '||comma||', 'god', '||exclamation_mark||', '||return|', 'homer_simpson:', 'how', "'bout", 'you', '||comma||', 'lenny', '||question_mark||', 'testing', '||comma||', 'testing', '||question_mark||', 'lenny', '||question_mark||', '||return|', 'lenny_leonard:', 'you', "sayin'", 'you', 'want', 'to', 'commit', 'a', 'crime', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', 'maybe', '||period||', 'but', 'first', 'i', 'need', 'to', 'hear', 'about', 'some', 'other', 'crimes', 'to', 'get', 'me', 'fired', 'up', '||period||', '||return|', 'carl_carlson:', 'you', 'mean', 'like', 'the', 'time', 'you', 'was', 'running', 'moonshine', 'out', 'of', 'your', 'basement', '||question_mark||', '||return|', 'barney_gumble:', 'or', 'that', 'telemarketing', 'scam', 'you', 'pulled', '||question_mark||', '||return|', 'homer_simpson:', 'uhhhh', '||comma||', 'like', 'those', '||period||', 'but', 'involving', 'you', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'you', '||comma||', 'you', 'mean', 'like', 'the', 'time', 'barney', 'beat', 'up', 'george', 'bush', '||period||', '||return|', 'homer_simpson:', 'barney', '||question_mark||', 'that', 'was', 'me', '||exclamation_mark||', '||left_parentheses||', 'seething', '||right_parentheses||', 'and', "i'd", 'do', 'it', 'again', '||period||', '||return|', 'charlie:', 'why', 'stop', 'there', '||comma||', 'homer', '||question_mark||', 'my', 'militia', 'has', 'a', 'secret', 'plan', 'to', 'beat', 'up', 'all', 'sorts', 'of', 'government', 'officials', '||period||', "that'll", 'teach', "'em", 'to', 'drag', 'their', 'feet', 'on', 'high-definition', 'tv', '||period||', '||return|', 'agent_johnson:', "you're", 'under', 'arrest', 'for', 'conspiracy', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'how', 'did', 'they', 'finger', 'charlie', '||question_mark||', 'somebody', 'musta', 'ratted', 'him', 'out', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', "that's", 'ridiculous', '||comma||', 'moe', '||period||', 'end', 'transmission', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'moan', '||right_parentheses||', 'my', 'campaign', 'is', 'a', 'disaster', '||comma||', 'moe', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'bitter', '||right_parentheses||', 'i', 'hate', 'the', 'public', 'so', 'much', '||period||', '||left_parentheses||', 'wishful', '||right_parentheses||', 'if', 'only', "they'd", 'elect', 'me', '||period||', '||period||', '||period||', '||left_parentheses||', 'vengeful', '||right_parentheses||', "i'd", 'make', "'em", 'pay', '||period||', '||left_parentheses||', 'worried', '||right_parentheses||', 'oh', 'moe', '||comma||', 'how', 'do', 'i', 'make', "'em", 'like', 'me', '||question_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'gee', '||comma||', "you're", 'kinda', 'all', 'over', 'the', 'place', 'there', '||comma||', 'homer', '||period||', 'you', 'need', 'to', 'focus', 'here', '||period||', 'you', 'gotta', 'think', 'hard', 'and', 'come', 'up', 'with', 'a', 'slogan', 'that', 'appeals', 'to', 'all', 'the', 'lazy', 'slobs', 'out', 'there', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'short', 'moan', '||right_parentheses||', "can't", 'someone', 'else', 'do', 'it', '||question_mark||', '||return|', 'moe_szyslak:', '||quotation_mark||', "can't", 'someone', 'else', 'do', 'it', '||question_mark||', '||quotation_mark||', "that's", 'perfect', '||exclamation_mark||', '||return|', 'homer_simpson:', 'it', 'is', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||period||', 'now', 'get', 'out', 'there', 'and', 'spread', 'that', 'message', 'to', 'the', 'people', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'raises', 'arms', 'triumphantly', '||right_parentheses||', 'woo', 'hoo', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'whoa', '||comma||', 'hey', '||comma||', 'you', "didn't", 'pay', 'for', 'the', 'beer', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'big', 'smile', '||comma||', 'stagy', '||right_parentheses||', "can't", 'someone', 'else', 'do', 'it', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'big', 'knowing', 'laugh', '||right_parentheses||', '/', 'very', 'good', '||period||', '||return|', 'moe_szyslak:', 'seriously', '||comma||', 'gimme', 'the', 'money', '||period||', '||return|', 'u2:', 'the', 'sanitation', 'folks', '/', 'are', 'jolly', 'friendly', 'blokes', '/', 'courteous', 'and', 'easygoing', '||period||', '||return|', 'the_edge:', 'they', 'mop', 'up', 'when', "you're", 'overflowing', '||period||', '||period||', '||period||', '||return|', 'bono:', 'and', 'tell', 'you', 'when', 'your', 'arse', 'is', 'showing', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'so', 'this', 'broad', 'stands', 'up', '||period||', '||period||', '||period||', 'in', 'the', 'ocean', 'and', 'this', 'big', 'wave', 'knocks', 'her', 'bathing', 'suit', 'off', '||period||', '||return|', 'moe_szyslak:', 'ooh', '||period||', 'yeah', '||period||', 'and', 'then', 'what', 'happened', '||question_mark||', 'omit', 'no', 'detail', '||comma||', 'no', 'matter', 'how', 'small', 'or', 'filthy', '||period||', '||return|', 'lenny_leonard:', 'so', 'anyway', '||dash||', 'and', 'this', 'is', 'the', 'part', "you'll", 'remember', 'for', 'the', 'rest', 'of', 'your', 'lives', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'cutting', 'him', 'off', '||right_parentheses||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'great', 'story', '||comma||', 'lenny', '||period||', 'but', "here's", 'one', "that's", 'even', 'more', 'spellbinding', '||period||', 'once', 'upon', 'a', 'time', 'there', 'was', 'a', 'man', 'named', 'thomas', 'edison', '||period||', 'and', 'he', 'invented', 'the', 'dictating', 'machine', 'and', 'the', 'fluoroscope', 'and', 'the', 'repeating', 'telegraph', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'increasingly', 'breathless', '||right_parentheses||', '||period||', '||period||', '||period||', 'and', 'he', 'was', 'a', 'firm', 'believer', 'in', 'fletcherism', '||comma||', 'and', 'he', 'played', 'the', 'organ', '||comma||', 'and', 'his', 'favorite', 'flower', 'was', 'the', 'heliotrope', '||dash||', 'oh', '||comma||', 'and', 'his', 'middle', 'name', 'was', 'alva', '||period||', 'and', 'he', 'never', '||comma||', 'ever', '||comma||', 'ever', 'wore', 'pajamas', '||period||', 'and', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'i', 'think', "we've", 'been', 'polite', 'long', 'enough', 'here', '||period||', 'lenny', '||comma||', 'what', 'happened', 'with', 'the', 'dame', 'and', 'the', 'bathing', 'suit', '||question_mark||', '||return|', 'lenny_leonard:', 'huh', '||question_mark||', 'oh', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'oh', '||comma||', 'nuts', '||period||', 'i', 'forgot', '||period||', 'all', 'i', 'can', 'think', 'of', 'now', 'is', 'edison', '||period||', 'i', "can't", 'even', 'remember', 'where', 'i', 'work', '||period||', '||left_parentheses||', 'rubs', 'temples', '||right_parentheses||', '||return|', 'homer_simpson:', 'well', '||comma||', 'i', 'remember', 'where', 'edison', 'worked', '||period||', 'it', 'was', 'menlo', 'park', '||period||', "that's", 'where', 'he', 'came', 'up', 'with', 'the', 'tasimeter', '||comma||', 'the', 'ore', 'separator', 'and', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', 'uh', '||comma||', 'james', 'watt', 'invented', 'the', 'steam', 'engine', '||period||', '||return|', 'homer_simpson:', "that's", 'boring', '||period||', "you're", 'boring', 'everybody', '||period||', 'quit', 'boring', 'everyone', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'upbeat', '||right_parentheses||', 'ah', '||comma||', 'morning', '||comma||', 'homer', '||period||', 'ah', '||comma||', "you're", 'looking', 'unusually', 'focused', 'this', 'morning', '||period||', '||return|', 'homer_simpson:', 'shut', 'your', 'squeal', 'hole', '||comma||', 'booze', 'jockey', '||period||', "i'm", 'gonna', '||comma||', 'like', '||comma||', 'totally', 'waste', 'you', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', "somebody's", 'a', 'grumpy', 'gus', '||period||', "what's", '||dash||', '||return|', 'homer_simpson:', 'yoink', '||period||', '||return|', 'moe_szyslak:', 'ooh', '||exclamation_mark||', '||left_parentheses||', 'peeved', '||right_parentheses||', 'ah', '||comma||', 'for', 'crying', 'out', 'loud', '||period||', '||left_parentheses||', 'gasp', '||right_parentheses||', '||return|', 'kent_brockman:', 'another', 'of', "springfield's", 'beloved', 'citizens', 'was', 'murdered', 'today', '||period||', 'filthy', 'old', 'bartender', 'moe', 'szyslak', 'has', 'watered', 'down', 'his', 'last', 'highball', '||period||', '||return|', '||return|', '||return|', 'barflies:', '||left_parentheses||', 'excited', 'sounds', '||right_parentheses||', '/', 'my', 'god', '||comma||', 'what', "i'd", 'give', 'to', 'meet', 'him', '||period||', '||return|', 'carl_carlson:', 'oh', '||comma||', 'they', "don't", 'come', 'much', 'bigger', 'than', 'that', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'derisive', 'snort', '||right_parentheses||', 'kent', 'brockman', '||period||', 'please', '||period||', '||return|', 'moe_szyslak:', 'so', '||comma||', "i'm", 'in', 'the', 'grocery', 'store', 'the', 'other', 'day', "buyin'", 'some', 'cotton', 'balls', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', 'the', 'absorbent', 'kind', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'proudly', '||right_parentheses||', 'youuu', 'got', 'that', 'right', '||comma||', 'my', 'friend', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'i', 'round', 'the', 'corner', 'and', 'head', 'down', 'the', 'ointment', 'aisle', '||comma||', 'when', 'who', 'should', 'i', 'spot', '||question_mark||', 'none', 'other', 'than', 'kent', 'brockman', '||exclamation_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'impressed', '||right_parentheses||', 'the', 'local', 'news', 'guy', '||question_mark||', 'mister', 'channel', '6', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'what', '||question_mark||', 'i', 'suppose', "you've", 'seen', 'a', 'bigger', 'star', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'coy', '||right_parentheses||', 'i', 'might', 'have', '||period||', '||return|', 'lenny_leonard:', 'come', 'on', '||comma||', 'make', 'with', 'a', 'name', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'pained', '||right_parentheses||', 'oh', '||comma||', 'i', "can't", '||period||', 'i', 'promised', 'i', "wouldn't", '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'dismissive', 'noise', '||right_parentheses||', 'aw', '||comma||', 'yeah', 'right', '||period||', 'you', "ain't", 'seen', 'nobody', '||period||', '||return|', 'barney_gumble:', 'another', 'good', 'one', '||comma||', 'moe', '||period||', '||return|', 'kim_basinger:', 'please', "don't", 'tell', 'anyone', "we're", 'here', '||period||', '||return|', 'alec_baldwin:', "you've", 'got', 'to', 'keep', 'our', 'secret', '||comma||', 'homer', '||period||', '||return|', 'ron_howard:', 'homer', '||comma||', "we're", 'out', 'of', 'vodka', '||period||', '||return|', 'gentleman:', '||left_parentheses||', 'statesmanlike', '||right_parentheses||', 'tell', 'the', 'people', '||comma||', 'homer', '||period||', 'they', 'have', 'a', 'right', 'to', 'know', 'about', 'the', 'celebrity', 'summer', 'house', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'thought', 'bubble', '||right_parentheses||', 'who', 'the', 'hell', 'are', 'you', '||question_mark||', '||return|', 'gentleman:', 'what', 'do', 'you', 'care', '||question_mark||', "i'm", 'telling', 'you', 'what', 'you', 'want', 'to', 'hear', '||period||', '||return|', 'homer_simpson:', 'all', 'right', '||comma||', "i'm", 'gonna', 'let', 'you', 'guys', 'in', 'on', 'something', '||period||', 'but', "you've", 'got', 'to', 'keep', 'it', 'much', 'more', 'secret', 'than', 'i', 'did', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', 'gotta', 'hand', 'it', 'to', 'you', '||comma||', 'homer', '||period||', "you're", 'really', 'brave', 'to', 'go', 'through', 'with', 'this', 'operation', '||period||', '||return|', 'homer_simpson:', "it's", 'not', 'an', 'operation', '||comma||', 'moe', '||period||', 'the', 'doctor', 'says', "it's", 'just', 'a', 'procedure', '||period||', '||return|', 'moe_szyslak:', 'nah', '||comma||', 'nah', '||comma||', 'no', '||period||', "makin'", 'polenta', '||comma||', "that's", 'a', 'procedure', '||period||', "you're", "talkin'", 'about', 'deadly', '||comma||', 'life-threatening', 'surgery', '||comma||', 'here', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'getting', 'nervous', '||right_parentheses||', 'really', '||question_mark||', 'you', 'think', "it's", 'dangerous', '||question_mark||', '||return|', 'carl_carlson:', 'oh', '||comma||', 'yeah', '||period||', 'and', '||comma||', 'and', 'even', 'if', 'you', 'survive', 'the', 'operation', '||dash||', '||return|', 'homer_simpson:', '||left_parentheses||', 'correcting', '||right_parentheses||', 'procedure', '||period||', 'deadly', 'procedure', '||period||', '||return|', 'carl_carlson:', 'whatever', '||period||', 'the', 'point', 'is', '||comma||', 'with', 'only', 'one', 'kidney', '||comma||', 'you', "won't", 'be', 'able', 'to', 'drink', 'yourself', 'stupid', 'no', 'more', '||period||', '||return|', 'homer_simpson:', 'now', "you're", 'just', "tryin'", 'to', 'scare', 'me', '||period||', '||return|', 'lenny_leonard:', 'plus', "they'll", 'put', 'you', 'on', 'one', 'of', 'those', 'organ', 'donor', 'sucker', 'lists', '||period||', 'everybody', 'who', 'wants', 'an', 'eyeball', 'or', 'a', 'spine', 'or', 'a', 'vestigial', 'tail', 'will', 'be', 'after', 'you', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'plaintive', '||right_parentheses||', 'but', 'i', "don't", 'want', 'that', '||period||', '||return|', 'moe_szyslak:', 'listen', '||comma||', "i'm", 'just', 'gonna', 'get', 'right', 'to', 'the', 'point', '||comma||', 'here', '||period||', 'can', 'i', 'have', 'your', 'buttocks', '||question_mark||', 'i', 'mean', '||comma||', 'if', 'you', 'die', '||period||', 'they', 'look', 'pretty', 'comfortable', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'morose', '||right_parentheses||', 'yeah', '||comma||', 'i', 'guess', '||period||', '||return|', 'carl_carlson:', 'and', '||comma||', 'uh', '||comma||', 'are', 'those', 'your', 'original', 'lips', '||question_mark||', '||return|', 'homer_simpson:', 'well', '||comma||', 'actually', 'i', '||dash||', '||left_parentheses||', 'catching', 'himself', '||right_parentheses||', 'hey', '||exclamation_mark||', 'quit', 'harvesting', 'me', 'with', 'your', 'eyes', '||exclamation_mark||', '||left_parentheses||', 'offended', 'noise', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'eyeing', "homer's", 'ass', '||right_parentheses||', 'oh', 'yeah', '||comma||', 'that', 'would', 'look', 'so', 'good', 'on', 'me', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'hostile', '||right_parentheses||', 'hey', 'homer', '||comma||', 'i', 'told', 'you', 'not', 'to', 'come', "'round", 'here', 'no', 'more', 'till', 'you', 'paid', 'your', 'tab', '||period||', 'or', 'at', 'least', 'cleaned', 'up', 'that', 'mess', 'you', 'made', 'in', 'the', 'bathroom', '||period||', 'now', 'y', '||dash||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'turning', 'on', 'a', 'dime', '||right_parentheses||', 'mayor', 'quimby', '||question_mark||', '||exclamation_mark||', 'homer', '||comma||', 'why', "didn't", 'you', 'say', 'you', 'was', 'with', 'the', 'mayor', '||question_mark||', '||return|', 'moe_szyslak:', 'shove', 'off', '||comma||', 'puke-holes', '||period||', 'get', 'out', 'of', 'there', '||exclamation_mark||', 'these', 'stools', 'are', 'reserved', 'for', 'the', 'mayor', 'and', 'his', 'cronies', '||period||', '||return|', 'moe_szyslak:', 'heh', '||period||', "here's", 'a', 'couple', 'of', 'dã¼ffenbraus', '||comma||', 'on', 'the', 'house', '||comma||', 'of', 'course', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'impressed', 'noise', '||right_parentheses||', 'semi-imported', '||period||', '||left_parentheses||', 'guzzles', 'the', 'bottle', '||right_parentheses||', 'keep', "'em", "comin'", '||period||', '||return|', 'mayor_joe_quimby:', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'your', 'generosity', 'is', 'greatly', 'appreciated', '||comma||', 'especially', 'during', 'this', 'health', 'inspection', 'season', '||period||', '||return|', 'moe_szyslak:', 'oh', 'yeah', '||comma||', 'yeah', '||comma||', 'right', '||period||', 'health', 'inspection', '||period||', 'that', 'reminds', 'me', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'stagey', '||right_parentheses||', 'your', 'change', '||comma||', 'sir', '||period||', '||return|', 'moe_szyslak:', "we're", "workin'", 'on', 'that', 'roach', 'situation', '||comma||', 'i', 'swear', 'to', 'god', '||period||', '||return|', 'mayor_joe_quimby:', '||left_parentheses||', 'shrugging', '||right_parentheses||', 'eh', '||comma||', 'you', 'should', 'see', 'the', 'hospital', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'grunt', '||right_parentheses||', "what's", 'the', 'hubub', '||question_mark||', 'did', 'moe', 'finally', 'blow', 'his', 'brains', 'out', '||question_mark||', '||return|', 'lenny_leonard:', 'quiet', '||exclamation_mark||', "we're", "watchin'", 'the', 'isotopes', '||exclamation_mark||', '||return|', 'homer_simpson:', 'shut', 'it', 'off', '||period||', "they're", 'losers', '||period||', '||return|', 'carl_carlson:', 'where', 'you', 'been', '||question_mark||', 'the', 'isotopes', 'are', 'on', 'fire', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'that', 'sniper', 'at', 'the', 'all-star', 'game', 'was', 'a', 'blessing', 'in', 'disguise', '||period||', '||return|', 'lenny_leonard:', 'now', "we're", 'in', 'the', 'championship', 'game', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'surprised', '||right_parentheses||', 'championship', '||question_mark||', '||return|', 'homer_simpson:', 'wooooo', '||exclamation_mark||', "'topes", 'ruuuule', '||exclamation_mark||', '||return|', 'kent_brockman:', 'well', '||comma||', "here's", 'a', 'die-hard', 'fan', '||period||', 'sir', '||comma||', 'your', 'beloved', 'isotopes', 'are', 'about', 'to', 'make', 'history', '||period||', 'any', 'thoughts', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'winded', 'excitement', '||right_parentheses||', 'oh', '||comma||', "it's", 'a', 'great', 'team', '||comma||', 'kent', '||period||', '||period||', '||period||', 'never', 'gave', 'up', 'hope', '||period||', '||period||', '||period||', 'i', 'want', 'to', 'thank', 'jesus', '||period||', '||period||', '||period||', 'and', 'say', 'hi', 'to', 'my', 'special', 'lady', 'marge', '||period||', '||period||', '||period||', '||left_parentheses||', 'into', 'camera', '||right_parentheses||', 'we', 'did', 'it', '||comma||', 'baby', '||exclamation_mark||', 'wooooo', '||exclamation_mark||', '||left_parentheses||', 'grabbing', "brockman's", 'microphone', '||right_parentheses||', 'woooooo', '||exclamation_mark||', '||return|', 'kent_brockman:', '||left_parentheses||', 'to', 'camera', '||right_parentheses||', 'the', 'inspiring', 'words', 'of', 'a', 'fan', "who'll", 'always', 'root', '||comma||', 'root', '||comma||', 'root', 'for', 'the', 'home', 'team', '||comma||', 'even', 'if', 'they', 'lose', 'this', 'ga', '||dash||', '||return|', 'homer_simpson:', 'they', 'lost', '||question_mark||', 'those', 'losers', '||exclamation_mark||', '||return|', 'kent_brockman:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'the', "game's", 'not', 'over', '||dash||', '||return|', 'homer_simpson:', 'woo', '||exclamation_mark||', 'not', 'over', '||exclamation_mark||', 'wooooo', '||exclamation_mark||', '||return|', 'kent_brockman:', '||left_parentheses||', 'to', 'camera', '||right_parentheses||', 'there', 'you', 'have', 'it', '||period||', 'woo', '||period||', '||return|', 'dennis_conroy:', '||left_parentheses||', 'above', 'crowd', '||right_parentheses||', 'bottom', 'of', 'the', 'ninth', '||comma||', 'two', 'outs', '||period||', 'it', 'all', 'comes', 'down', 'to', 'this', '||period||', 'and', "here's", 'the', 'pitch', '||period||', '||period||', '||period||', '||return|', 'dennis_conroy:', '||left_parentheses||', 'spanish', '||quotation_mark||', 'j', '||quotation_mark||', "'s", '||right_parentheses||', 'jumping', 'jesus', '||exclamation_mark||', 'he', 'got', 'all', 'of', 'that', 'one', '||exclamation_mark||', "it's", 'going', '||period||', '||period||', '||period||', 'going', '||period||', '||period||', '||period||', 'going', '||period||', '||period||', '||period||', '||return|', 'dennis_conroy:', '||left_parentheses||', 'quickly', '||right_parentheses||', 'our', 'technical', 'director', 'today', 'was', 'stan', 'kadlubowski', '||period||', '||return|', 'dennis_conroy:', '||left_parentheses||', 'back', 'on', 'game', '||right_parentheses||', "it's", 'out', 'of', 'here', '||exclamation_mark||', "'topes", 'win', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'hurt', 'sigh', '||right_parentheses||', 'nobody', 'touched', 'my', 'rumaki', '||period||', '||return|', 'homer_simpson:', 'woo', '||exclamation_mark||', 'rumaki', '||exclamation_mark||', '||return|', '||return|', '||return|', 'sports_announcer:', 'the', 'road', 'to', 'the', 'super', 'bowl', 'is', 'long', 'and', 'pointless', '||period||', 'i', 'mean', '||comma||', 'when', 'you', 'think', 'about', 'it', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'chuckles', 'at', 'injury', '||right_parentheses||', "football's", 'so', 'great', '||period||', '||left_parentheses||', 'sips', 'beer', '||right_parentheses||', '||return|', 'sports_announcer:', 'but', 'now', 'the', 'two', 'conference', 'champs', 'must', 'survive', 'a', 'harrowing', 'bye', 'week', 'that', 'no', 'one', 'enjoys', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'scornful', '||right_parentheses||', 'bye', 'weeks', '||period||', 'bronco', 'nagurski', "didn't", 'get', 'no', 'bye', 'weeks', '||period||', 'and', 'now', "he's", 'dead', '||period||', '||left_parentheses||', 'reconsidering', '||right_parentheses||', 'well', '||comma||', 'maybe', "they're", 'a', 'good', 'thing', '||period||', '||return|', 'wally:', 'yeah', '||comma||', 'how', "'bout", 'that', 'super', 'bowl', '||question_mark||', 'you', "goin'", 'this', 'year', '||question_mark||', '||return|', 'homer_simpson:', 'me', '||question_mark||', 'nah', '||period||', '||left_parentheses||', 'gasp', '||comma||', 'brightening', '||right_parentheses||', 'unless', "there's", 'a', 'coupon', 'for', 'it', '||period||', '||left_parentheses||', 'flips', 'through', 'book', '||right_parentheses||', 'nah', '||period||', '||return|', 'wally:', 'well', '||comma||', 'i', 'run', 'the', 'springfield', 'travel', 'agency', '||period||', '||return|', 'wally:', "we've", 'got', 'a', 'charter', 'bus', "goin'", 'down', 'to', 'the', 'game', '||period||', 'you', 'help', 'us', 'fill', 'it', '||comma||', 'you', 'can', 'ride', 'for', 'free', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'dreamily', '||right_parentheses||', 'homer', 'simpson', 'at', 'the', 'super', 'bowl', '||question_mark||', '||return|', 'coach:', 'dang', '||exclamation_mark||', 'that', 'was', 'my', 'last', 'quarterback', '||period||', 'now', 'what', 'am', 'i', 'gonna', 'do', '||question_mark||', '||return|', 'coach:', 'you', '||exclamation_mark||', '||return|', 'homer_simpson:', 'me', '||question_mark||', '||exclamation_mark||', '||return|', 'coach:', 'yeah', '||comma||', 'you', '||period||', 'get', 'your', 'hand', 'off', 'my', "wife's", 'leg', '||period||', '||return|', 'homer_simpson:', 'sorry', '||period||', '||return|', 'homer_simpson:', "it's", 'a', 'deal', '||period||', 'hey', '||comma||', 'moe', '||period||', 'wanna', 'come', 'with', 'me', 'and', 'wally', 'to', 'the', 'super', 'bowl', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'excited', '||right_parentheses||', 'oh', '||comma||', 'absolutely', '||period||', 'my', 'favorite', "team's", 'in', 'it:', 'the', '||left_parentheses||', 'raises', 'glass', 'in', 'front', 'of', 'mouth', '||right_parentheses||', 'atlanta', 'falcons', '||left_parentheses||', 'lowers', 'glass', '||right_parentheses||', '||period||', 'yeah', '||comma||', 'ever', 'since', 'i', 'was', 'a', 'boy', '||comma||', "i've", 'always', 'loved', 'the', '||left_parentheses||', 'raises', 'glass', 'in', 'front', 'of', 'mouth', 'again', '||right_parentheses||', 'atlanta', 'falcons', '||left_parentheses||', 'lowers', 'glass', '||right_parentheses||', '||period||', '||return|', 'homer_simpson:', 'yeah', '||comma||', "they're", 'good', '||period||', 'but', 'i', "wouldn't", 'count', 'out', 'the', '||period||', '||period||', '||period||', 'denver', 'broncos', '||left_parentheses||', 'lowers', 'glass', '||right_parentheses||', '||period||', '||return|', 'wally:', 'i', 'hear', 'that', 'president', '||left_parentheses||', 'grabs', 'glass', 'from', 'homer', 'and', 'covers', 'mouth', '||right_parentheses||', 'clinton', '||left_parentheses||', 'lowers', 'glass', '||right_parentheses||', 'is', 'going', 'to', 'be', 'watching', 'with', 'his', 'wife', '||left_parentheses||', 'raises', 'glass', 'in', 'front', 'of', 'mouth', '||right_parentheses||', 'hillary', '||left_parentheses||', 'lowers', 'glass', '||right_parentheses||', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', 'what', 'kind', 'of', 'adventure', 'you', 'gonna', 'be', 'involved', 'in', 'tonight', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', 'mmm', '||comma||', 'who', 'knows', '||question_mark||', 'maybe', "i'll", 'have', 'to', 'foil', 'an', 'assassination', '||comma||', 'or', 'stop', 'a', 'peace', 'conference', '||period||', '||return|', 'moe_szyslak:', 'so', 'they', 'really', 'based', 'that', 'homer', 'simpson', 'character', 'on', 'you', '||comma||', 'huh', '||question_mark||', '||return|', 'homer_simpson:', 'yup', '||period||', 'right', 'down', 'to', 'the', 'scarf', '||period||', '||return|', 'moe_szyslak:', 'ooh', '||comma||', 'there', 'it', 'is', '||exclamation_mark||', '||return|', 'chief_wiggum:', 'nice', 'beating', '||comma||', 'lance', '||period||', 'especially', 'around', 'the', 'eyes', '||period||', '||left_parentheses||', 'then', '||right_parentheses||', 'say', '||comma||', "where's", 'your', 'partner', '||question_mark||', "where's", 'homer', 'simpson', '||question_mark||', '||return|', 'detective_homer_simpson:', 'coming', '||comma||', 'chief', '||period||', '||return|', 'chief_wiggum:', 'now', 'what', 'have', 'you', 'done', '||comma||', 'simpson', '||question_mark||', '||return|', 'detective_homer_simpson:', 'i', 'was', 'supervising', 'the', 'guns', 'for', 'toys', 'program', '||period||', '||return|', 'chief_wiggum:', "it's", 'toys', 'for', 'guns', '||period||', '||return|', 'detective_homer_simpson:', 'now', 'you', 'tell', 'me', '||exclamation_mark||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'exasperated', '||right_parentheses||', 'simp-sonnnn', '||exclamation_mark||', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'confused', '||right_parentheses||', 'hey', '||comma||', "what's", 'going', 'on', '||question_mark||', 'that', "guy's", 'not', 'homer', 'simpson', '||period||', "he's", 'fat', 'and', 'stupid', '||period||', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'looks', 'like', 'they', 'changed', 'the', 'character', 'into', 'a', 'bumbling', 'sidekick', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'worried', '||right_parentheses||', 'no', '||comma||', 'no', '||comma||', 'he', "can't", 'be', '||period||', 'i', 'know', '||comma||', 'maybe', "he's", 'just', 'acting', 'stupid', 'to', 'infiltrate', 'a', 'gang', 'of', 'international', 'idiots', '||period||', 'yeah', '||comma||', "that's", 'gotta', 'be', 'it', '||period||', '||return|', 'chief_wiggum:', 'you', 'destroyed', 'that', 'drug', 'shipment', '||question_mark||', '||return|', 'detective_homer_simpson:', '||left_parentheses||', 'proudly', '||right_parentheses||', 'yes', 'indeedy', '||period||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'angry', '||right_parentheses||', 'that', 'was', 'my', 'insulin', '||exclamation_mark||', '||return|', 'detective_homer_simpson:', '||left_parentheses||', 'haplessly', '||right_parentheses||', 'uh-oh', '||comma||', "spaghetti-o's", '||exclamation_mark||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'exasperated', '||right_parentheses||', 'simp-sonnnn', '||exclamation_mark||', '||exclamation_mark||', '||return|', 'barney_gumble:', 'hey', 'homer', '||comma||', 'that', 'character', 'is', 'you', 'all', 'over', '||period||', '||return|', 'lenny_leonard:', 'come', 'on', '||comma||', 'homer', '||comma||', 'act', 'all', 'stupid', '||period||', 'like', 'you', 'do', 'on', 'tv', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'come', 'on', '||comma||', 'dum-dum', '||comma||', 'do', 'something', 'unintelligent', '||comma||', 'there', '||period||', '||return|', 'homer_simpson:', 'shutup', '||exclamation_mark||', "i'm", 'not', 'your', 'clown', '||exclamation_mark||', "don't", 'diminish', 'me', '||exclamation_mark||', '||return|', 'homer_simpson:', 'gentlemen', '||comma||', 'i', 'bid', 'you', '||dash||', '||left_parentheses||', 'choking', 'sound', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'spinning', '||right_parentheses||', 'who-o-oa', '||exclamation_mark||', 'who-o-oa', '||exclamation_mark||', 'who-o-oa', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'geez', '||comma||', 'what', 'an', 'exit', '||period||', '||return|', 'carl_carlson:', 'oh', 'man', '||comma||', "what's", 'he', 'gonna', 'do', 'for', 'an', 'encore', '||question_mark||', '||return|', 'moe_szyslak:', 'ooh', '||period||', 'i', "don't", 'think', "he'll", 'be', '||comma||', "doin'", 'no', 'encores', 'for', 'a', 'while', '||period||', '||left_parentheses||', 'laughs', '||right_parentheses||', '||return|', '||return|', '||return|', 'homer_simpson:', 'right', 'after', 'happy', 'hour', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'drinking', 'will', 'help', 'us', 'plan', '||period||', '||return|', 'homer_simpson:', 'this', "valentine's", 'crap', 'has', 'gone', 'too', 'far', '||period||', '||return|', 'men:', 'yeah', '||period||', '/', 'yeah', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'amid', "men's", 'reactions', '||right_parentheses||', 'you', 'got', 'that', 'right', '||exclamation_mark||', '||return|', 'seymour_skinner:', 'edna', "won't", 'even', 'let', 'me', 'clap', 'her', 'erasers', '||period||', '||return|', 'sideshow_mel:', 'my', 'barbara', 'will', 'no', 'longer', 'pleasure', 'me', 'with', 'the', 'french', 'arts', '||period||', '||return|', 'moe_szyslak:', 'the', 'gal', "i'm", 'stalking', 'had', 'me', 'bumped', 'back', 'to', 'two', 'hundred', 'feet', '||period||', '||return|', 'men:', '||left_parentheses||', 'murmurs', 'of', 'sympathy', '||right_parentheses||', '/', "that's", 'too', 'bad', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'amid', 'murmurs', '||right_parentheses||', 'oh', '||comma||', 'moe', '||period||', '||return|', 'homer_simpson:', 'and', 'ask', 'yourselves', '||comma||', 'people', '||comma||', "who's", 'to', 'blame', 'for', 'all', 'this', '||question_mark||', '||return|', 'dr', '||period||', '_julius_hibbert:', '||left_parentheses||', 'guiltily', '||right_parentheses||', 'well', '||comma||', 'i', 'guess', 'we', 'are', '||period||', '||return|', 'ned_flanders:', 'i', 'suppose', 'i', 'do', 'take', 'maude', 'for', 'granted', '||period||', '||return|', 'barney_gumble:', 'i', 'got', 'some', 'of', 'that', 'myself', '||period||', '/', 'oh', '||comma||', 'screw', 'myself', '||period||', '||return|', 'homer_simpson:', 'will', 'you', 'stop', 'it', '||question_mark||', '||exclamation_mark||', "it's", 'easy', 'to', 'blame', 'ourselves', '||comma||', 'but', "it's", 'even', 'easier', 'to', 'blame', 'apu', '||period||', "he's", "makin'", 'us', 'look', 'bad', '||exclamation_mark||', '||return|', 'men:', '||left_parentheses||', 'cheers', 'of', 'agreement', '||right_parentheses||', '/', 'yeah', '||exclamation_mark||', '/', 'yeah', '||comma||', "you're", 'right', '||exclamation_mark||', '/', 'hey', '||exclamation_mark||', '/', 'yeah', '||exclamation_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'amid', 'curious', 'sounds', '||right_parentheses||', 'hey', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'amid', 'curious', 'sounds', '||right_parentheses||', "what's", "goin'", 'on', 'out', 'there', '||question_mark||', '||return|', 'moe_szyslak:', 'aw', '||comma||', 'geez', '||comma||', "he's", 'got', 'everything', 'but', 'the', 'shriners', '||period||', '||return|', 'old_jewish_man:', 'hey', '||comma||', 'watch', 'it', '||exclamation_mark||', "you're", 'all', 'over', 'the', 'road', '||exclamation_mark||', '||return|', 'homer_simpson:', "we've", 'gotta', 'stop', 'that', 'traitor', 'apu', '||period||', '||return|', '||return|', '||return|', 'carl_carlson:', 'hey', '||comma||', 'anybody', 'seen', 'homer', 'today', '||question_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'matter-of-fact', '||right_parentheses||', 'there', 'he', 'goes', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'moe', '||comma||', 'this', 'is', 'astrid', '||comma||', 'my', '||quotation_mark||', 'dealer', '||period||', '||quotation_mark||', 'and', 'these', 'are', 'my', 'fans', '||comma||', 'gunter', '||comma||', 'kyoto', '||comma||', 'and', 'cecil', 'hampstead-on-cecil-cecil', '||period||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', 'you', 'guys', 'are', 'eurotrash', '||comma||', 'huh', '||question_mark||', "how's", 'that', '||comma||', 'uh', '||comma||', "workin'", 'out', 'for', 'ya', '||question_mark||', '||return|', 'gunter:', 'eh', '||comma||', 'to', 'be', 'honest', '||comma||', 'we', 'are', 'adrift', 'in', 'a', 'sea', 'of', 'decadent', 'luxury', 'and', 'meaningless', 'sex', '||period||', '||return|', 'moe_szyslak:', 'uh-huh', '||period||', 'so', '||comma||', 'ah', '||comma||', 'where', 'might', 'this', 'sea', 'be', 'located', '||question_mark||', '||return|', 'cecil_terwilliger:', 'i', 'must', 'get', 'back', 'to', 'my', 'hotel', 'and', 'practice', 'my', 'affectations', 'for', 'tomorrow', '||period||', 'bon', 'soir', '||period||', '||left_parentheses||', 'makes', 'fritz', 'feld', 'sound', '||right_parentheses||', '||return|', 'homer_simpson:', 'what', 'do', 'we', 'owe', 'you', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', "nothin'", '||comma||', "nothin'", '||period||', 'just', 'gimme', 'a', 'priceless', 'sketch', 'with', 'a', 'certificate', 'of', 'authenticity', '||period||', '||return|', 'homer_simpson:', 'all', 'right', '||period||', '||left_parentheses||', 'sketching', 'sounds', '||right_parentheses||', '||return|', 'barney_gumble:', 'hey', '||comma||', 'moe', '||comma||', 'can', 'i', 'pay', 'with', 'a', 'drawing', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'nice', 'try', 'there', '||comma||', 'twelve-step', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'stagy', '||right_parentheses||', 'boy', '||comma||', 'lenny', '||comma||', 'you', 'sure', 'look', 'hungry', '||period||', 'have', 'some', 'nuts', '||period||', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'thanks', '||period||', '||return|', 'lenny_leonard:', 'ow', '||exclamation_mark||', 'my', 'eye', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'ow', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'laughs', '||right_parentheses||', 'now', 'if', 'you', 'want', 'to', 'be', 'the', 'life', 'of', 'the', 'party', 'like', 'lenny', 'here', '||comma||', 'just', 'place', 'your', 'order', 'for', 'this', 'hilarious', 'novelty', 'item', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'get', 'outta', 'here', '||period||', '||return|', 'homer_simpson:', 'boy', '||comma||', 'moe', '||comma||', 'you', 'sure', 'look', 'angry', '||period||', 'here', '||comma||', 'have', 'some', 'nuts', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'thanks', '||period||', '||return|', 'moe_szyslak:', 'ow', '||exclamation_mark||', 'god', '||comma||', 'my', 'eye', '||exclamation_mark||', 'ow', '||exclamation_mark||', 'get', 'it', 'out', '||exclamation_mark||', 'geez', '||exclamation_mark||', 'ow', '||exclamation_mark||', '||return|', 'moe_szyslak:', "don't", 'pull', '||exclamation_mark||', "don't", 'pull', '||exclamation_mark||', 'i', 'said', "don't", 'pull', '||exclamation_mark||', "don't", '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'clears', 'throat', '||right_parentheses||', '||quotation_mark||', 'you', 'have', 'been', 'chosen', 'to', 'join', 'the', 'justice', 'squadron', '||exclamation_mark||', '8', 'a', '||period||', 'm', '||period||', 'monday', 'at', 'the', 'municipal', 'fortress', 'of', 'vengeance', '||period||', '||quotation_mark||', 'oh', '||comma||', 'i', 'am', 'so', 'there', '||exclamation_mark||', '||return|', 'professor_jonathan_frink:', 'we', 'studied', 'traffic', 'patterns', 'and', 'found', 'that', 'drivers', 'move', 'the', 'fastest', 'through', 'yellow', 'lights', '||period||', 'so', 'now', 'we', 'just', 'have', 'the', 'red', 'and', 'yellow', 'lights', '||period||', '||left_parentheses||', 'frink', 'noise', '||right_parentheses||', '||return|', 'hawking:', 'your', 'theory', 'of', 'a', 'donut-shaped', 'universe', 'is', 'intriguing', '||comma||', 'homer', '||period||', 'i', 'may', 'have', 'to', 'steal', 'it', '||period||', '||return|', 'homer_simpson:', 'wow', '||period||', 'i', "can't", 'believe', 'someone', 'i', 'never', 'heard', 'of', 'is', "hangin'", 'out', 'with', 'a', 'guy', 'like', 'me', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'walking', 'up', '||right_parentheses||', 'all', 'right', '||comma||', "it's", 'closing', 'time', '||period||', "who's", 'paying', 'the', 'tab', '||question_mark||', '||return|', 'computer_voice_2:', 'i', 'am', '||period||', '||return|', 'hawking:', 'i', "didn't", 'say', 'that', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'computer', 'voice', '||right_parentheses||', 'yes', '||comma||', 'i', 'did', '||period||', '||return|', 'homer_simpson:', 'larry', 'flynt', 'is', 'right', '||exclamation_mark||', 'you', 'guys', 'stink', '||exclamation_mark||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'hey', '||comma||', "ain't", 'that', 'homer', 'on', 'the', 'japanese', 'channel', '||question_mark||', '||return|', 'moe_szyslak:', 'if', "that's", 'homer', 'then', '||period||', '||period||', '||period||', 'who', 'the', "hell's", 'been', 'putting', 'beers', 'on', 'his', 'tab', '||question_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'tentative', 'annoyed', 'grunt', '||right_parentheses||', '||left_parentheses||', 'then', '||right_parentheses||', 'woo', 'hoo', '||question_mark||', '||left_parentheses||', 'then', '||comma||', 'searching', '||right_parentheses||', 'umm', '||period||', '||period||', '||period||', 'that', 'boy', "ain't", 'right', '||question_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'so', 'i', 'gave', 'up', 'tap', 'for', 'jazz', '||comma||', 'and', "i've", 'never', 'regretted', 'it', '||period||', 'and', "here's", 'why', '||period||', '||period||', '||period||', '||return|', 'marge_simpson:', 'homer', '||comma||', "you're", 'supposed', 'to', 'be', 'hunting', 'for', 'bart', '||exclamation_mark||', '||return|', 'homer_simpson:', "i'm", 'on', 'top', 'of', 'it', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'worried', 'murmur', '||right_parentheses||', 'my', 'sweet', 'baby', '||period||', 'he', 'must', 'feel', 'so', 'helpless', 'and', 'scared', '||period||', '||return|', '||return|', '||return|', 'agnes_skinner:', 'i', 'told', 'you', 'not', 'to', 'drink', 'all', 'those', 'frescas', 'before', 'we', 'got', 'in', 'the', 'car', '||period||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'hushed', '||right_parentheses||', 'mother', '||comma||', 'please', '||exclamation_mark||', "you're", 'embarrassing', 'me', '||period||', '||return|', 'agnes_skinner:', 'no', '||comma||', "i'm", 'not', '||period||', '||left_parentheses||', 'then', 'to', 'moe', '||comma||', 'loud', '||right_parentheses||', 'seymour', 'needs', 'the', 'toilet', '||exclamation_mark||', 'his', "bladder's", 'full', '||period||', '||left_parentheses||', 'explaining', '||right_parentheses||', 'full', 'of', 'urine', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'thanks', '||period||', "it's", 'just', 'past', 'the', 'end', 'of', 'the', 'bar', '||comma||', '||left_parentheses||', 'points', 'at', 'homer', '||right_parentheses||', 'next', 'to', 'the', 'heavyset', 'guy', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'insulted', '||right_parentheses||', 'heavyset', '||question_mark||', "what's", 'that', 'supposed', 'to', 'mean', '||question_mark||', '||return|', 'moe_szyslak:', 'all', 'right', '||comma||', 'take', 'it', 'easy', '||period||', 'take', 'it', 'easy', '||period||', "i'm", 'just', 'saying', 'you', "ain't", 'no', '||comma||', 'uh', '||comma||', 'tommy', 'tune', '||period||', '||return|', 'homer_simpson:', 'no', 'tommy', 'tune', '||comma||', 'eh', '||question_mark||', 'oh', '||comma||', "that's", 'it', '||period||', 'you', 'insulted', 'my', 'honor', '||period||', '||return|', 'moe_szyslak:', 'i', '||dash||', 'your', 'what', 'now', '||question_mark||', '||return|', 'homer_simpson:', 'i', 'demand', 'satisfaction', '||exclamation_mark||', '||left_parentheses||', 'slaps', 'moe', 'with', 'glove', '||right_parentheses||', 'i', 'challenge', 'you', 'to', 'a', 'duel', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'a', 'duel', '||question_mark||', 'i', '||comma||', 'ah', '||dash||', "isn't", 'that', 'a', 'little', 'extreme', '||question_mark||', 'here', '||comma||', 'here', '||comma||', 'have', 'a', 'free', 'beer', '||period||', '||left_parentheses||', 'gives', 'him', 'one', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'surprised', '||right_parentheses||', 'really', '||question_mark||', 'but', "you've", 'never', 'given', 'anyone', 'a', 'free', 'beer', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', "ain't", 'never', 'been', 'slapped', 'with', 'no', "duelin'", 'glove', 'before', '||comma||', 'either', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'self', '||comma||', 'in', 'awe', '||right_parentheses||', 'wow', '||comma||', 'a', 'free', 'beer', '||exclamation_mark||', 'and', 'i', 'owe', 'it', 'all', 'to', 'a', 'little', 'glove', 'slap', '||period||', '||left_parentheses||', 'singing', 'to', 'tune', 'of', '||quotation_mark||', 'love', 'shack', '||quotation_mark||', '||right_parentheses||', 'glove', 'slap', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'singing', '||right_parentheses||', 'baby', '||comma||', 'glove', 'slap', '||period||', '||period||', '||period||', '||return|', "b-52's:", '||left_parentheses||', 'singing', '||right_parentheses||', 'a', 'glove', 'slap', 'to', 'a', 'little', 'old', 'face', 'will', '/', 'get', 'you', 'sat-is-fac-tion', '/', 'glove', 'slap', 'baby', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'i', "can't", 'believe', 'it', '||comma||', 'moe', '||period||', 'the', 'greatest', 'feat', 'of', 'my', 'life', 'is', 'already', 'forgotten', '||period||', '||return|', 'moe_szyslak:', 'geez', '||comma||', 'homer', '||period||', 'i', 'never', 'seen', 'you', 'so', 'depressed', '||period||', 'as', 'your', 'life', 'partner', '||comma||', "i'm", 'very', 'worried', '||period||', '||return|', 'homer_simpson:', 'save', 'your', 'tears', '||comma||', 'moe', '||period||', 'save', "'em", 'in', 'a', 'shot', 'glass', 'for', 'someone', 'who', 'still', 'has', 'a', 'shred', 'of', 'hope', '||period||', '||return|', 'moe_szyslak:', 'a', 'shreda', 'what', '||question_mark||', 'uh', '||comma||', 'sorry', '||comma||', 'i', 'was', "countin'", 'the', 'cocktail', 'radishes', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'counting', 'radishes', '||right_parentheses||', 'now', 'where', 'was', 'i', '||question_mark||', 'uh', '||comma||', 'two', '||period||', '||period||', '||period||', 'three', '||period||', '||period||', '||period||', 'three', 'radishes', '||period||', 'three', 'big', 'radishes', '||period||', '||return|', '||return|', '||return|', 'kent_brockman:', 'big', 'game', 'fever', 'is', 'reaching', 'a', 'fevered', 'pitch', 'as', 'the', 'fevered', 'rivalry', 'between', 'springfield', 'u', '||period||', 'and', 'springfield', 'a', '&', 'm', 'spreads', 'like', 'wildfever', '||period||', 'th', '||dash||', '||left_parentheses||', 'to', 'off', 'camera', '||right_parentheses||', 'this', 'is', 'writing', '||question_mark||', '||return|', 'writer:', "i'm", 'sorry', '||comma||', 'uncle', 'kent', '||period||', 'i', 'lost', 'my', 'thesaurus', '||period||', '||return|', 'kent_brockman:', '||left_parentheses||', 'to', 'himself', '||comma||', 'disgusted', '||right_parentheses||', 'my', 'thesaurus', '||period||', '||period||', '||period||', "you'll", 'lose', 'more', 'than', 'that', '||period||', '||left_parentheses||', 'to', 'camera', '||right_parentheses||', 'in', 'preparation', 'for', 'the', 'big', 'game', '||comma||', 'springfield', 'stadium', 'has', 'caught', 'additional-seating-capacity', 'fever', '||period||', '||left_parentheses||', 'half', 'chuckles', '||comma||', 'then', 'angry', 'sound', '||right_parentheses||', '||return|', 'homer_simpson:', 'woo', 'hoo', '||exclamation_mark||', 'go', 's', '||period||', 'u', '||period||', '||exclamation_mark||', '||return|', 'carl_carlson:', 'a', '&', 'm', 'is', 'gonna', 'kick', 'your', 'ivy-covered', 'butts', '||exclamation_mark||', '||return|', 'homer_simpson:', 'yeah', '||comma||', 'well', 'you', 'went', 'to', 'a', 'cow', 'college', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'oh', '||comma||', "you're", 'only', 'calling', 'us', 'a', 'cow', 'college', "'cause", 'we', 'was', 'founded', 'by', 'a', 'cow', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', "havin'", 'a', 'party', '||comma||', 'moe', '||period||', "i'll", 'need', 'four', 'kegs', 'of', 'your', 'finest', 'imported-sounding', 'beer', '||period||', '||return|', 'moe_szyslak:', 'how', "'bout", 'tuborg', '||question_mark||', 'the', 'beer', 'of', 'danish', 'kings', '||period||', '||return|', 'homer_simpson:', 'mmmm', '||comma||', 'danish', '||period||', '||return|', 'moe_szyslak:', 'now', '||comma||', 'you', 'know', 'i', "can't", 'sell', 'you', 'no', 'beer', 'till', 'two', 'p', '||period||', 'm', '||period||', '||comma||', 'on', 'accounta', "it's", 'sunday', '||period||', '||return|', 'homer_simpson:', 'huh', '||question_mark||', 'if', 'you', "can't", 'sell', 'beer', '||comma||', 'what', 'are', 'lenny', 'and', 'carl', 'doing', 'here', '||question_mark||', '||return|', 'carl_carlson:', 'huh', '||question_mark||', 'uh', '||comma||', "we're", 'just', 'watching', 'the', 'sun', 'move', 'across', 'the', 'sky', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'pointing', '||right_parentheses||', 'when', 'it', 'gets', 'to', 'here', '||comma||', 'we', 'can', 'drink', 'again', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'whiny', '||right_parentheses||', 'but', 'i', 'need', 'that', 'beer', 'now', '||period||', '||return|', 'moe_szyslak:', 'sorry', '||period||', 'two', 'p', '||period||', 'm', '||period||', '||left_parentheses||', 'joking', '||right_parentheses||', 'or', 'you', 'can', 'steal', 'a', 'boat', 'and', 'sail', 'out', 'to', 'international', 'waters', '||period||', '||return|', 'homer_simpson:', "what's", 'that', '||comma||', 'a', 'theme', 'park', '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||comma||', 'the', 'ocean', '||period||', 'once', 'you', 'get', 'twelve', 'miles', 'out', '||comma||', "there's", 'no', 'laws', 'at', 'all', '||period||', "that's", 'where', 'they', 'held', 'the', 'tyson/secretariat', 'fight', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'laughs', '||right_parentheses||', 'they', 'were', 'so', 'drunk', '||period||', 'gentlemen', '||comma||', 'get', 'off', 'your', 'knees', '||period||', 'your', 'rich', 'uncle', 'homer', 'is', 'throwing', 'the', 'wildest', 'box', 'social', 'the', 'high', 'seas', 'have', 'ever', 'seen', '||exclamation_mark||', '||return|', 'homer_simpson:', 'and', "you're", 'invited', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'moe', '||comma||', 'if', "you're", 'tired', 'of', "bein'", 'an', 'eyesore', '||comma||', 'why', 'not', 'get', 'some', 'plastic', 'surgery', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'boy', '||exclamation_mark||', '||left_parentheses||', 'sighs', '||right_parentheses||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'the', 'new', 'duff', 'calendars', 'are', 'out', '||exclamation_mark||', 'the', 'ones', 'with', 'your', 'picture', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'excited', '||right_parentheses||', 'oh', '||comma||', 'boy', '||exclamation_mark||', 'move', 'over', 'liquor', 'license', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'examines', 'license', '||right_parentheses||', 'hey', 'moe', '||comma||', 'this', 'license', 'expired', 'in', '1973', '||comma||', 'and', '||period||', '||period||', '||period||', 'and', "it's", 'only', 'good', 'in', 'rhode', 'island', '||comma||', 'and', "it's", 'signed', 'by', 'you', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'yeah', '||comma||', "i've", 'been', "meanin'", 'to', 'get', 'that', 'updated', '||comma||', 'uh', '||comma||', 'for', 'this', 'state', '||comma||', 'and', 'real', '||period||', 'now', "let's", 'see', 'the', 'poster', 'boy', 'for', 'the', 'new', 'moe-lennium', '||period||', '||return|', 'moe_szyslak:', 'they', 'put', 'a', 'sticker', 'over', 'my', 'face', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'hey', '||period||', '||period||', '||period||', 'viva', 'la', '||period||', '||period||', '||period||', 'kiss', '||period||', '||period||', '||period||', 'what', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'for', 'the', 'love', 'of', 'jeff', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sadly', '||right_parentheses||', 'am', 'i', 'really', 'that', 'ugly', '||question_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'warmly', '||right_parentheses||', 'moe', '||comma||', "it's", 'all', 'relative', '||period||', 'is', 'lenny', 'really', 'that', 'dumb', '||question_mark||', 'is', 'barney', 'that', 'drunk', '||question_mark||', 'is', 'homer', 'that', 'lazy', '||comma||', 'bald', 'and', 'fat', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'oh', 'my', 'god', '||exclamation_mark||', "it's", 'worse', 'than', 'i', 'thought', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'to', 'camera', '||right_parentheses||', 'see', '||comma||', 'this', 'is', 'why', 'i', "don't", 'talk', 'much', '||period||', '||return|', 'moe_szyslak:', 'i', "can't", 'believe', 'they', 'put', 'those', 'stickers', 'over', 'my', 'face', '||period||', '||left_parentheses||', 'sighs', '||right_parentheses||', 'i', 'must', 'be', 'the', 'ugliest', 'man', 'alive', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'moe', '||period||', "there's", 'lots', 'of', 'people', 'uglier', 'than', 'you', '||period||', 'like', '||comma||', 'you', 'ever', 'been', 'to', 'white', 'castle', '||question_mark||', '||return|', 'carl_carlson:', 'ho', '||comma||', 'boy', '||dash||', 'pigtown', 'u', '||period||', 's', '||period||', 'a', '||period||', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'aw', '||comma||', "c'mon", '||comma||', 'look', 'at', 'me', '||period||', "i'm", 'a', 'gargoyle', '||period||', 'what', '||comma||', 'with', 'the', 'cauliflower', 'ear', 'there', '||comma||', 'and', 'the', 'lizard', 'lips', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', 'the', 'little', 'rat', 'eyes', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'caveman', 'brow', '||period||', '||period||', '||period||', '||return|', 'lenny_leonard:', "don't", 'forget', 'that', 'fish', 'snout', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', '||quotation_mark||', 'back', 'off', '||quotation_mark||', '||right_parentheses||', 'okay', '||comma||', 'i', 'get', 'it', '||period||', 'i', "ain't", 'pleasant', 'to', 'look', 'at', '||period||', '||return|', 'lenny_leonard:', 'or', 'listen', 'to', '||period||', '||return|', 'carl_carlson:', 'or', 'be', 'with', '||period||', '||return|', 'homer_simpson:', "c'mon", '||comma||', 'moe', '||period||', "don't", 'feel', 'bad', '||period||', "there's", 'too', 'much', 'emphasis', 'on', 'looks', 'these', 'days', '||period||', "that's", 'why', 'they', "won't", 'let', 'bill', 'maher', 'on', 'tv', 'before', 'midnight', '||period||', '||return|', 'moe_szyslak:', 'plastic', 'surgery', '||comma||', 'huh', '||question_mark||', '||period||', '||period||', '||period||', '||left_parentheses||', 'points', 'at', 'face', '||right_parentheses||', 'ah', '||comma||', 'maybe', 'they', 'could', 'dynamite', 'mount', 'crapmore', 'here', 'and', 'carve', 'me', 'a', 'new', 'kisser', '||period||', '||return|', 'carl_carlson:', 'i-i', "don't", 'know', '||period||', 'plastic', 'surgery', 'might', 'make', 'you', 'look', 'good', 'on', 'the', 'outside', '||comma||', 'but', 'you', 'still', 'might', 'feel', 'bad', 'on', 'the', 'inside', '||period||', '||return|', 'moe_szyslak:', 'but', "i'd", 'look', 'good', 'on', 'the', 'outside', '||comma||', 'right', '||question_mark||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'but', "you'd", 'feel', 'bad', 'inside', '||period||', '||return|', 'moe_szyslak:', 'plastic', 'surgery', 'it', 'is', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'carl', 'carlson', '||comma||', 'you', 'just', 'saved', 'my', 'life', '||exclamation_mark||', '||left_parentheses||', 'spotting', 'something', '||right_parentheses||', 'hey', '||comma||', 'get', 'out', 'of', 'there', '||exclamation_mark||', '||return|', 'carl_carlson:', 'so', '||comma||', 'lenny', '||comma||', 'how', 'are', 'things', "workin'", 'out', 'with', 'you', 'and', 'that', 'girl', 'next', 'door', '||question_mark||', '||return|', 'lenny_leonard:', 'eh', '||comma||', "it's", 'over', '||period||', 'she', 'got', 'a', 'windowshade', '||period||', '||return|', 'lenny_leonard:', 'wha', '||question_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'whoa', '||comma||', 'if', 'you', 'must', 'grope', 'me', '||comma||', 'ladies', '||comma||', 'please', '||comma||', 'a', 'little', 'softer', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'okay', '||comma||', 'now', 'harder', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'distraught', '||right_parentheses||', 'hey', '||comma||', 'there', 'are', 'women', 'in', 'our', 'bar', '||exclamation_mark||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'moe', '||period||', 'beer', 'me', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', "i'm", 'a', 'little', 'busy', '||comma||', 'homer', '||period||', 'ah', '||comma||', 'you', 'can', 'pour', 'it', 'yourself', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 're:', 'tap', '||right_parentheses||', 'hmm', '||period||', 'this', "isn't", 'nearly', 'as', 'complicated', 'as', 'moe', 'made', 'it', 'seem', '||period||', '||return|', 'homer_simpson:', "i'm", 'sorry', 'about', 'your', 'face', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'nah', '||comma||', "it's", 'just', 'as', 'well', '||period||', 'that', 'handsome', 'face', 'was', 'nice', '||comma||', 'but', 'it', 'was', 'too', 'much', 'maintenance', '||period||', 'i', 'had', 'to', 'wash', 'it', '||comma||', 'rub', 'it', 'with', "neat's-foot", 'oil', '||period||', '||period||', '||period||', 'you', 'did', 'me', 'a', 'favor', '||comma||', 'homer', '||period||', 'and', 'to', 'think', 'i', 'was', 'about', 'to', 'sell', 'the', 'bar', 'to', 'hooters', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'yeah', '||comma||', 'you', 'were', '||period||', '||period||', '||period||', '||left_parentheses||', 'annoyed', 'grunt', '||right_parentheses||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', 'guess', 'that', 'wraps', 'it', 'up', '||period||', 'hey', '||comma||', "there's", 'one', 'thing', 'i', "don't", 'get', '||comma||', 'though', '||period||', 'when', 'my', 'face', 'was', 'crushed', '||comma||', 'why', 'did', 'it', 'go', 'back', 'to', 'my', 'old', 'face', '||question_mark||', 'i', 'mean', '||comma||', "shouldn't", 'it', 'have', 'turned', 'into', 'some', 'kind', 'of', 'third', 'face', 'that', 'was', 'different', '||question_mark||', 'heh', '||period||', "don't", 'make', 'no', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'refund', '||question_mark||', 'hey', '||comma||', 'sounds', 'good', 'to', 'me', '||period||', '||return|', 'lenny_leonard:', 'sure', 'beats', 'a', 'tax', '||exclamation_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'raising', 'beer', '||right_parentheses||', 'we', 'love', 'you', '||comma||', 'president', 'simpson', '||period||', '||return|', 'moe_szyslak:', 'tax', 'hike', '||question_mark||', '||exclamation_mark||', 'hold', 'the', 'phone', '||comma||', 'mabel', '||exclamation_mark||', '||return|', 'carl_carlson:', 'you', 'know', '||comma||', 'i', 'never', 'trusted', 'her', '||period||', '||return|', 'lenny_leonard:', "don't", 'blame', 'me', '||period||', 'i', 'voted', 'for', 'chastity', 'bono', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', 'no', '||comma||', "i'm", 'not', '||exclamation_mark||', '||return|', 'barney_gumble:', 'gee', '||comma||', 'is', 'that', 'what', 'i', 'look', 'like', 'when', "i'm", 'drunk', '||question_mark||', '||return|', 'lenny_leonard:', '||period||', '||period||', '||period||', 'so', 'i', 'says', 'to', 'the', 'cop', '||comma||', '||quotation_mark||', 'no', '||comma||', "you're", 'driving', 'under', 'the', 'influence', '||period||', '||period||', '||period||', 'of', "bein'", 'a', 'jerk', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'barney', '||period||', "what's", 'with', 'the', 'glum', 'face', '||question_mark||', 'you', 'glum', 'or', "somethin'", '||question_mark||', 'huh', '||comma||', 'glummy', '||question_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'sincere', '||right_parentheses||', 'you', 'know', '||comma||', 'it', 'was', 'my', 'birthday', 'last', 'week', '||comma||', 'and', 'no', 'one', 'remembered', '||period||', '||return|', 'carl_carlson:', 'what', 'are', 'you', '||comma||', 'nuts', '||question_mark||', '||return|', 'homer_simpson:', 'i', 'threw', 'you', 'a', 'party', 'at', 'my', 'house', '||period||', '||return|', 'barney_gumble:', 'you', 'lie', '||period||', 'why', 'would', 'i', 'not', 'remember', 'my', 'own', '||left_parentheses||', 'while', 'drinking', '||right_parentheses||', 'birthday', '||question_mark||', '||return|', 'moe_szyslak:', 'but', 'we', 'did', 'have', 'a', 'shindig', 'for', 'ya', '||comma||', 'barn', '||period||', 'we', 'even', 'videotaped', 'it', '||period||', 'look', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'quietly', 'to', 'self', '||right_parentheses||', 'oh', '||comma||', "that's", 'it', '||comma||', 'baby', '||period||', 'all', 'for', 'moe', '||period||', 'oh', '||comma||', 'yeah', '||period||', 'work', 'the', 'slot', '||period||', 'show', 'me', 'the', 'package', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'embarrassed', '||right_parentheses||', 'whoa', '||comma||', 'tha', '||period||', '||period||', '||period||', '||left_parentheses||', 'laughs', '||right_parentheses||', 'that', '||comma||', "that's", 'a', 'project', "i'm", 'working', 'on', '||period||', 'sorry', '||period||', '||return|', 'bart_simpson:', 'okay', '||comma||', 'mom', '||period||', "we're", 'rolling', '||period||', '||return|', 'marge_simpson:', 'i', 'wrote', 'a', 'poem', 'for', 'barney', 'on', 'this', 'special', 'occasion', '||period||', '||left_parentheses||', 'reading', 'poem', '||right_parentheses||', '||quotation_mark||', 'now', 'that', "you're", 'one', 'year', 'older', '||comma||', 'the', 'time', 'flew', 'by', 'so', 'fast', '||period||', '||period||', '||period||', '||quotation_mark||', '||return|', 'marge_simpson:', 'bart', '||exclamation_mark||', '||return|', 'marge_simpson:', 'gimme', 'that', '||exclamation_mark||', '||left_parentheses||', 'grunts', '||right_parentheses||', '||return|', 'barney_gumble:', '||left_parentheses||', 'tipsy', '||right_parentheses||', "i'm", 'just', 'saying', 'that', 'when', 'we', 'die', '||comma||', "there's", 'going', 'to', 'be', 'a', 'planet', 'for', 'the', 'french', '||comma||', 'a', 'planet', 'for', 'the', 'chinese', '||comma||', 'and', "we'll", 'all', 'be', 'a', 'lot', 'happier', '||period||', '||period||', '||period||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'very', 'uncomfortable', '||right_parentheses||', 'mr', '||period||', 'gumbel', '||comma||', "you're", 'upsetting', 'me', '||period||', '||return|', 'homer_simpson:', 'you', 'wish', '||period||', "that's", 'the', 'stage', 'we', 'call', '||quotation_mark||', 'professor', 'barney', '||quotation_mark||', '||dash||', 'talkative', '||comma||', 'coherent', '||comma||', 'even', 'insightful', '||period||', "here's", 'drunk', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'high', 'voice', '||right_parentheses||', 'well', '||comma||', "i'm", 'off', 'to', 'market', '||period||', '||period||', '||period||', '||left_parentheses||', 'belches', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'upset', '||right_parentheses||', 'marge', '||comma||', "you're", 'making', 'a', 'complete', 'fool', 'of', 'yourse', '||period||', '||period||', '||period||', '||left_parentheses||', 'realizing', '||right_parentheses||', 'oh', '||comma||', "it's", 'just', 'barney', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'gasps', '||right_parentheses||', 'precious', 'alcohol', '||exclamation_mark||', 'soaking', 'into', 'shag', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'how', 'embarrassing', '||period||', 'but', 'how', 'did', 'this', 'happen', '||question_mark||', '||return|', 'lenny_leonard:', 'oh', '||comma||', 'that', '||period||', "you've", 'had', 'that', 'for', 'a', 'while', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'i', "can't", 'really', 'picture', 'you', 'without', 'it', '||period||', '||return|', 'barney_gumble:', 'oh', '||comma||', "i'm", 'a', 'disgrace', '||period||', '||return|', 'homer_simpson:', 'disgracefully', 'hilarious', '||exclamation_mark||', '||left_parentheses||', 'laughs', '||right_parentheses||', 'you', 'passed', 'out', 'before', 'we', 'could', 'even', 'give', 'you', 'your', 'presents', '||period||', '||return|', 'carl_carlson:', 'i', 'still', 'got', 'mine', '||period||', 'barney', '||comma||', 'i', 'got', 'you', 'what', 'no', 'drunk', 'can', 'do', 'without:', 'morning-after', 'stationery', '||period||', '||return|', 'moe_szyslak:', 'and', 'i', 'got', 'ya', 'helicopter', 'flying', 'lessons', '||period||', '||left_parentheses||', 'to', 'barflies', '||right_parentheses||', 'can', 'you', 'imagine', 'this', 'boozebag', 'at', 'the', 'wheel', 'of', 'a', 'whirlybird', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'laughs', '||right_parentheses||', "he'd", 'be', 'all', '||quotation_mark||', 'look', 'at', 'me', '||exclamation_mark||', "i'm", 'a', 'tanked-up', 'loser', 'in', 'a', 'helicopter', '||exclamation_mark||', '||quotation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sweetly', '||right_parentheses||', 'ah', '||comma||', 'anyway', '||comma||', 'happy', 'b-day', '||comma||', 'punkin', '||period||', '||return|', 'barney_gumble:', 'so', '||comma||', "i'm", 'a', 'tanked-up', 'loser', '||question_mark||', 'is', 'that', 'how', 'you', 'see', 'me', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'sounds', 'like', 'a', 'certain', 'loser', 'could', 'use', 'some', 'tanking', 'up', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'where', 'ya', "goin'", '||question_mark||', '||return|', 'barney_gumble:', "i'll", 'show', 'you', '||period||', "i'm", 'gonna', 'take', 'these', 'helicopter', 'lessons', '||period||', '||return|', 'homer_simpson:', 'wait', 'a', 'minute', '||comma||', 'barney', '||period||', 'you', 'gotta', 'be', 'sober', 'to', 'fly', '||period||', 'i', 'mean', '||comma||', "it's", 'not', 'like', "drivin'", 'a', 'car', '||period||', '||return|', 'barney_gumble:', 'then', "i'm", 'gonna', 'quit', 'drinking', '||period||', '||return|', 'barney_gumble:', 'no', '||comma||', 'i', 'mean', 'it', '||period||', '||return|', 'barney_gumble:', 'you', "won't", 'see', 'me', 'here', 'again', '||period||', 'ever', '||period||', '||return|', 'moe_szyslak:', 'wait', '||comma||', 'that', "ain't", 'funny', '||period||', "he's", 'my', 'best', 'customer', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'the', "handwriting's", 'on', 'the', 'wall', '||period||', 'to', 'stay', 'afloat', '||comma||', 'this', "bar's", 'gonna', 'have', 'to', 'go', 'queer', '||period||', '||return|', 'larry:', 'you', 'mean', "it's", 'not', '||question_mark||', '||return|', 'larry:', '||left_parentheses||', 'to', 'book', '||right_parentheses||', 'wrong', 'again', '||comma||', '||quotation_mark||', 'gay', 'guide', 'to', 'springfield', '||return|', 'barney_gumble:', 'gimme', 'a', 'beer', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'calmly', '||right_parentheses||', 'i', 'knew', "you'd", 'be', 'back', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'self', '||right_parentheses||', 'santeria', '||comma||', "you're", 'the', 'greatest', '||exclamation_mark||', '||return|', 'homer_simpson:', 'barney', '||comma||', "didn't", 'you', 'say', 'you', 'were', 'gonna', 'stop', 'drinking', '||question_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'breaks', 'down', '||right_parentheses||', 'i', 'know', '||comma||', 'but', "it's", 'so', 'hard', '||period||', 'please', 'help', 'me', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'you', 'came', 'to', 'the', 'right', 'guy', '||period||', "i'll", 'straighten', 'ya', 'out', '||period||', '||period||', '||period||', 'right', 'after', 'i', 'finish', 'this', 'beer', '||period||', '||return|', 'homer_simpson:', 'ah', '||comma||', 'man', "that's", 'sweet', '||period||', 'okay', '||comma||', "let's", 'go', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'homer', '||period||', '||left_parentheses||', 'as', 'homer', 'sits', '||right_parentheses||', 'ah', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', "don't", 'sit', 'there', '||period||', 'take', 'this', 'seat', '||comma||', 'right', 'next', 'to', 'the', 'tap', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'suspiciously', '||right_parentheses||', 'but', "that's", "barney's", 'seat', '||period||', 'are', 'you', "tryin'", 'to', 'make', 'me', 'the', 'new', 'barney', '||question_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'every', 'bar', 'needs', 'a', 'world-class', 'drunk', '||period||', '||return|', 'lenny_leonard:', 'yeah', '||comma||', 'someone', 'who', 'makes', 'our', 'alcoholism', 'seem', 'less', 'raging', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'forget', 'it', '||comma||', 'guys', '||period||', 'i', 'am', 'not', 'barney', '||exclamation_mark||', '||left_parentheses||', 'barney-type', 'belch', '||right_parentheses||', '||return|', 'moe_szyslak:', 'see', '||comma||', 'homer', '||question_mark||', "it's", 'not', 'so', 'bad', '||period||', '||left_parentheses||', 'then', 'mean', '||right_parentheses||', 'now', 'dance', '||comma||', 'rummy', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'beat', '||right_parentheses||', 'okay', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'lenny', '||comma||', 'carl', '||comma||', 'i', 'know', 'a', 'lot', 'of', 'people', 'bad-mouth', 'you', '||comma||', 'and', 'focus', 'on', 'how', 'you', 'suck', '||comma||', 'but', 'not', 'me', '||period||', 'to', 'me', '||comma||', "you're", 'true', 'blue', '||period||', '||return|', 'carl_carlson:', 'aw', '||comma||', 'thanks', 'big', 'guy', '||period||', '||return|', 'lenny_leonard:', 'now', 'dance', '||comma||', 'rummy', '||exclamation_mark||', '||return|', 'homer_simpson:', 'okay', '||period||', '||return|', 'barney_gumble:', 'hiya', '||comma||', 'moe', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'if', 'it', "isn't", 'little', 'miss', '||quotation_mark||', "i'm", 'not', 'wasting', 'my', 'life', 'anymore', '||period||', '||quotation_mark||', '||left_parentheses||', 'catty', '||right_parentheses||', 'which', 'he', 'is', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'consulting', 'a', '||period||', 'a', '||period||', 'book', '||right_parentheses||', 'moe', '||comma||', "i've", 'come', 'here', 'to', 'make', 'amends', 'for', 'my', 'disgraceful', 'behavior', 'over', 'the', 'last', 'twenty', 'years', '||period||', '||return|', 'moe_szyslak:', 'aw', '||comma||', "that's", 'okay', '||comma||', 'barn', '||period||', '||return|', 'barney_gumble:', 'no', '||comma||', "it's", 'not', 'okay', '||period||', 'i', 'broke', 'barstools', '||comma||', 'befouled', 'your', 'broom', 'closet', '||comma||', 'and', 'made', 'sweet', 'love', 'to', 'your', 'pool', 'table', '||period||', '||period||', '||period||', 'which', 'i', 'then', 'befouled', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'that', 'would', 'explain', 'the', 'drop-off', 'in', 'play', '||period||', '||return|', 'kent_brockman:', 'this', 'is', 'a', 'channel', 'six', 'news', 'bulletin', '||period||', '||return|', 'kent_brockman:', 'fire', 'has', 'broken', 'out', 'on', 'mount', 'springfield', '||comma||', 'trapping', 'two', 'youngsters', 'and', 'their', 'camera', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'no', '||exclamation_mark||', "that's", 'bart', 'and', 'lisa', '||exclamation_mark||', '||return|', 'kent_brockman:', 'unfortunately', '||comma||', 'fire', 'trucks', 'are', 'unavailable', 'to', 'fight', 'the', 'blaze', '||comma||', 'as', 'they', 'are', 'all', 'being', 'used', 'to', 'film', 'the', 'new', 'burt', 'reynolds', 'movie', '||comma||', '||quotation_mark||', 'fireball', 'and', 'mudflap', '||period||', '||quotation_mark||', 'i', 'caught', 'up', 'with', 'burt', 'on', 'the', 'set', '||period||', '||return|', 'kent_brockman:', 'so', '||comma||', 'burt', '||comma||', 'tell', 'us', 'a', 'little', 'about', '||quotation_mark||', 'fireball', 'and', 'mudflap', '||period||', '||quotation_mark||', '||return|', 'burt_reynolds:', 'well', '||comma||', 'i', 'play', 'jerry', '||quotation_mark||', 'fireball', '||quotation_mark||', 'mudflap', '||comma||', 'a', 'feisty', 'supreme', 'court', 'justice', "who's", 'searching', 'for', 'his', 'birth', 'mother', 'while', 'competing', 'in', 'a', 'cross-country', 'fire', 'truck', 'race', '||period||', "it's", 'garbage', '||period||', '||return|', 'homer_simpson:', 'barney', '||comma||', 'you', 'gotta', 'fly', 'us', 'up', 'there', 'and', 'save', 'my', 'kids', '||exclamation_mark||', '||return|', 'barney_gumble:', 'i', "can't", '||period||', "i've", 'never', 'flown', 'solo', '||exclamation_mark||', '||return|', 'homer_simpson:', 'barney', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'the', 'call', 'is', 'from', 'heroism', '||period||', 'will', 'you', 'accept', 'the', 'charges', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'lowering', 'binoculars', '||comma||', 'sinister', '||right_parentheses||', 'nobody', 'gets', 'away', 'from', 'moe', '||period||', 'nobody', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'grieving', 'father', '||comma||', "comin'", 'through', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'ah', '||comma||', 'booze', 'is', 'on', 'the', 'house', '||comma||', 'seeing', 'as', 'how', 'lisa', 'is', '||comma||', 'ah', '||comma||', '||period||', '||period||', '||period||', 'how', 'do', 'i', 'put', 'this', '||period||', '||period||', '||period||', 'uh', '||comma||', "ridin'", 'the', 'midnight', 'train', 'to', 'slab', 'city', '||period||', '||return|', 'homer_simpson:', 'thanks', 'for', 'the', 'beer', '||comma||', 'moe', '||period||', 'but', 'before', 'lisa', 'died', '||comma||', 'she', 'made', 'this', 'tape', 'that', 'i', 'think', 'you', 'should', 'hear', '||period||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'on', 'tape', '||right_parentheses||', 'dear', 'moe', '||comma||', 'if', 'anything', 'should', 'ever', 'happen', 'to', 'me', '||comma||', 'i', 'want', 'you', 'to', 'tear', 'up', 'my', "dad's", 'tab', '||comma||', '||left_parentheses||', 'reluctantly', '||right_parentheses||', 'and', 'pour', 'cocktail', 'onions', '||period||', '||period||', '||period||', 'dad', '||comma||', 'i', "can't", '||dash||', '||return|', 'homer_simpson:', '||left_parentheses||', 'on', 'tape', '||comma||', 'through', 'clenched', 'teeth', '||right_parentheses||', 'read', 'it', '||exclamation_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'on', 'tape', '||comma||', 'resigned', '||right_parentheses||', '||period||', '||period||', '||period||', 'pour', 'cocktail', 'onions', 'down', 'your', 'pants', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', "ain't", 'never', 'said', 'no', 'to', 'a', 'dead', 'girl', 'yet', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'according', 'to', 'my', 'uncle', '||period||', '||period||', '||period||', '||return|', 'lenny_leonard:', 'miss', 'springfield', "isn't", 'as', 'beautiful', 'as', 'she', 'seems', '||period||', 'word', 'is', '||comma||', 'she', 'uses', 'appearance-altering', 'cosmetics', '||period||', '||return|', 'carl_carlson:', 'the', 'public', 'should', 'be', 'warned', '||period||', 'i', 'wish', 'mr', '||period||', 'x', 'were', 'here', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sly', '||right_parentheses||', 'oh', '||comma||', 'i', "don't", 'know', '||comma||', 'carl', '||period||', 'he', 'might', 'be', 'closer', 'than', 'you', 'think', '||period||', '||return|', 'carl_carlson:', 'are', 'you', 'him', '||question_mark||', 'are', 'you', 'mr', '||period||', 'x', '||question_mark||', '||return|', 'homer_simpson:', 'no', '||exclamation_mark||', '||return|', 'carl_carlson:', 'uh', '||comma||', 'but', 'you', 'talked', 'in', 'that', 'real', 'sly', 'voice', '||period||', '||left_parentheses||', 'loud', '||right_parentheses||', 'hey', '||comma||', 'hey', '||comma||', 'everybody', '||comma||', "homer's", 'mr', '||period||', 'x', '||exclamation_mark||', '||return|', 'homer_simpson:', 'i', 'am', 'not', '||period||', '||left_parentheses||', 'sly', '||right_parentheses||', 'or', 'am', 'i', '||question_mark||', '||return|', 'lenny_leonard:', 'are', 'you', '||question_mark||', '||return|', 'homer_simpson:', 'no', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'if', 'mr', '||period||', 'x', 'were', 'here', 'right', 'now', '||comma||', "i'd", 'buy', 'him', 'a', 'tall', 'frosty', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'low', '||right_parentheses||', 'hey', '||comma||', 'moe', '||comma||', 'can', 'you', 'keep', 'a', 'secret', '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||period||', '||return|', 'homer_simpson:', 'not', 'even', 'a', 'little', 'one', '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||period||', '||return|', 'homer_simpson:', 'what', 'if', 'i', 'just', 'whisper', 'it', '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||comma||', 'i', 'tells', 'ya', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'guys', '||period||', "how's", 'it', "goin'", '||question_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', "don't", 'worry', 'about', 'the', 'mr', '||period||', 'x', 'thing', '||period||', '||left_parentheses||', 'sitting', 'down', '||right_parentheses||', "i'm", 'just', 'here', 'for', 'a', 'beer', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'warily', '||right_parentheses||', 'i', 'dunno', 'if', 'i', 'want', 'you', 'in', 'here', 'no', 'more', '||comma||', 'homer', '||comma||', 'uh', '||period||', '||period||', '||period||', 'i', 'got', 'a', 'lotta', 'secrets', "i'd", 'prefer', 'to', 'keep', 'clandestine', '||period||', 'terrible', '||comma||', 'disturbing', 'secrets', '||period||', '||return|', 'voice:', 'so', 'hungry', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'self', '||comma||', 'happily', '||right_parentheses||', 'i', 'smell', 'another', 'pulitzer', '||period||', '||return|', 'rev', '||period||', '_timothy_lovejoy:', 'well', '||comma||', 'helen', '||comma||', 'as', 'it', 'says', 'in', 'the', 'bible', '||period||', '||period||', '||period||', '||return|', 'rev', '||period||', '_timothy_lovejoy:', '||left_parentheses||', 'low', '||comma||', 'to', 'helen', '||right_parentheses||', "i'll", 'tell', 'you', 'later', '||period||', '||return|', '||return|', '||return|', 'barflies:', 'burn', '||exclamation_mark||', 'burn', '||exclamation_mark||', 'burn', '||exclamation_mark||', '||return|', 'barney_gumble:', 'you', 'know', '||comma||', 'homer', '||comma||', 'i', 'got', 'a', 'great', 'way', 'to', 'make', 'money', '||dash||', "i'm", 'a', 'human', 'guinea', 'pig', '||period||', '||return|', 'homer_simpson:', 'you', 'mean', '||comma||', 'like', '||comma||', 'medical', 'testing', '||question_mark||', '||return|', 'barney_gumble:', 'yeah', '||comma||', 'medical', '||period||', '||period||', '||period||', 'military', '||period||', '||period||', '||period||', "chewin'", 'stuff', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', "chewin'", 'stuff', '||question_mark||', '||exclamation_mark||', '||return|', 'barney_gumble:', 'yeah', '||comma||', 'like', '||comma||', 'you', 'chew', 'on', 'a', 'telephone', 'wire', 'till', 'you', 'get', 'a', 'shock', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'satisfied', '||right_parentheses||', 'oh', '||comma||', 'oh', '||comma||', 'right', '||comma||', 'okay', '||period||', '||return|', 'homer_simpson:', 'yeah', '||comma||', 'but', "aren't", 'those', 'experiments', 'dangerous', '||question_mark||', '||return|', 'barney_gumble:', 'ah', '||comma||', 'you', 'get', 'a', 'few', 'side', 'effects', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'shocked', '||right_parentheses||', 'are', 'those', 'ears', '||question_mark||', '||exclamation_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'winces', 'and', 'covers', 'his', 'chest', '||right_parentheses||', 'ow', '||exclamation_mark||', 'not', 'so', 'loud', '||period||', '||return|', 'homer_simpson:', 'hmmmm', '||period||', '||return|', 'barflies:', 'burn', '||exclamation_mark||', 'burn', '||exclamation_mark||', 'burn', '||exclamation_mark||', '||return|', 'homer_simpson:', 'effigy', '||comma||', 'eh', '||question_mark||', 'yeah', '||comma||', 'nothing', 'burns', 'like', 'an', 'effigy', '||period||', '||left_parentheses||', 'dawning', '||right_parentheses||', 'hey', '||comma||', "that's", 'me', '||exclamation_mark||', '||return|', 'homer_simpson:', 'stop', 'that', '||exclamation_mark||', 'the', 'fire', 'inspector', 'would', 'be', 'appalled', '||period||', '||return|', 'fire_inspector:', "don't", 'tell', 'me', 'how', 'to', 'feel', '||period||', '||return|', 'homer_simpson:', 'so', 'you', 'all', 'hate', 'me', '||question_mark||', '||return|', 'lenny_leonard:', "that's", 'right', '||comma||', 'brainiac', '||period||', 'you', 'cost', 'us', 'our', 'jobs', '||comma||', 'which', 'we', 'need', 'for', "workin'", '||period||', '||return|', 'carl_carlson:', 'not', 'to', 'mention', "drivin'", 'to', '||period||', '||return|', 'moe_szyslak:', 'and', 'i', 'was', 'a', 'lot', 'happier', 'before', 'i', 'knew', 'dame', 'edna', 'was', 'a', 'man', '||period||', 'a', 'lot', 'happier', '||period||', '||return|', 'lenny_leonard:', 'you', "ain't", 'welcome', 'here', 'no', 'more', '||comma||', 'smart', 'boy', '||period||', '||return|', 'homer_simpson:', 'hmm', '||comma||', "i'm", 'detecting', 'a', 'distinct', 'strain', 'of', 'anti-intellectualism', 'in', 'this', 'tavern', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'power', 'off', '||comma||', 'einstein', '||period||', '||return|', 'moe_szyslak:', 'so', 'whaddaya', 'want', 'here', '||question_mark||', 'uh', '||comma||', 'appendectomy', '||comma||', 'lipo', '||comma||', 'or', '||left_parentheses||', 'excited', '||comma||', 'selling', '||right_parentheses||', 'the', '||quotation_mark||', 'sampler', '||quotation_mark||', '||question_mark||', "that's", 'very', 'popular', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'dramatically', '||right_parentheses||', 'i', 'want', 'you', 'to', 'stick', 'this', 'crayon', 'into', 'my', 'brain', '||period||', '||return|', 'moe_szyslak:', 'no', 'problem', '||period||', '||left_parentheses||', 'art', 'carney', 'arm', 'flourish', '||right_parentheses||', 'the', "ol'", 'crayola', 'oblongata', '||period||', '||return|', 'moe_szyslak:', 'all', 'right', '||comma||', 'tell', 'me', 'when', 'i', 'hit', 'the', 'sweet', 'spot', '||period||', '||return|', 'homer_simpson:', 'deeper', '||comma||', 'you', 'pusillanimous', 'pilsner-pusher', '||period||', '||return|', 'moe_szyslak:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'inanely', '||right_parentheses||', 'dee-fense', '||exclamation_mark||', '||left_parentheses||', 'grunts', 'twice', '||right_parentheses||', 'dee-fense', '||exclamation_mark||', '||left_parentheses||', 'grunts', 'twice', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'almost', 'there', '||right_parentheses||', "that's", 'pretty', 'dumb', '||period||', '||period||', '||period||', 'but', 'uh', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'extended', 'warranty', '||question_mark||', 'how', 'can', 'i', 'lose', '||question_mark||', '||return|', 'moe_szyslak:', 'perfect', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'get', 'him', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', 'stay', 'out', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'get', 'out', 'and', 'take', 'your', 'sacajawea', 'dollars', 'with', 'you', '||period||', "i'll", 'give', 'ya', 'till', '||quotation_mark||', 'three', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'counting', '||right_parentheses||', 'one', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'hey', 'homer', '||comma||', "who's", 'the', 'manatee', '||question_mark||', '||return|', 'homer_simpson:', 'aw', '||comma||', 'now', '||comma||', 'be', 'nice', '||comma||', 'moe', '||period||', 'this', 'guy', 'just', 'got', 'out', 'of', 'the', 'hospital', '||period||', '||return|', 'moe_szyslak:', 'ooh', '||comma||', 'sorry', '||period||', 'ah', '||comma||', 'lemme', 'buy', 'ya', 'a', 'drink', '||period||', '||return|', 'comic_book_guy:', 'very', 'well', '||period||', '||left_parentheses||', 'clears', 'throat', '||right_parentheses||', '||return|', 'comic_book_guy:', 'i', 'will', 'have', 'a', 'shot', 'of', 'cranberry', 'schnapps', '||period||', '||left_parentheses||', 'points', 'to', 'bottle', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'laughs', '||comma||', 'pats', 'wall', '||right_parentheses||', 'ah', '||comma||', 'these', '||comma||', 'aah', '||comma||', "they're", 'just', 'painted', 'on', '||comma||', 'there', '||period||', 'your', 'choices', 'are', 'beer', 'and', '||comma||', 'ah', '||period||', '||period||', '||period||', '||left_parentheses||', 'scanning', 'bar', '||comma||', 'sees', 'jar', '||right_parentheses||', 'egg', "soakin's", '||period||', '||return|', 'comic_book_guy:', "i'll", 'pass', '||period||', 'beer', 'is', 'the', 'nectar', 'of', 'the', 'nitwit', '||period||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'you', "knockin'", 'beer', '||question_mark||', '||return|', 'lenny_leonard:', 'nobody', 'badmouths', 'duff', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'uh', '||comma||', 'piece', "o'", 'crap', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'comic', 'book', 'guy', '||right_parentheses||', "c'mon", '||comma||', "you're", 'here', 'to', 'make', 'friends', '||period||', '||return|', 'comic_book_guy:', 'oh', '||comma||', 'please', '||period||', 'if', 'i', 'wanted', 'to', 'hear', 'mindless', 'droning', '||comma||', "i'd", 'befriend', 'an', 'air', 'conditioner', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'now', "he's", "raggin'", 'on', 'air', 'conditioners', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'indignant', '||right_parentheses||', 'hey', '||comma||', 'they', 'keep', 'us', 'cool', 'in', 'the', 'summer', '||comma||', 'pal', '||exclamation_mark||', '||return|', 'comic_book_guy:', 'is', 'there', 'a', 'word', 'in', 'klingon', 'for', '||quotation_mark||', 'loneliness', '||quotation_mark||', '||question_mark||', '||return|', 'comic_book_guy:', 'oh', '||comma||', 'yes', '||period||', '||left_parentheses||', 'guttural', 'klingon', 'noises', '||right_parentheses||', '||return|', '||return|', '||return|', 'homer_simpson:', 'and', 'i', 'gave', 'that', 'man', 'directions', '||comma||', 'even', 'though', 'i', "didn't", 'know', 'the', 'way', '||period||', "'cause", "that's", 'the', 'kind', 'of', 'guy', 'i', 'am', 'this', 'week', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'annoyed', 'sound', '||right_parentheses||', 'lousy', 'isotopes', '||exclamation_mark||', "they're", 'a', 'disgrace', 'to', 'baseball', '||period||', '||return|', 'carl_carlson:', 'they', 'lost', 'again', '||question_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'nods', '||right_parentheses||', 'mm', 'hmm', '||period||', 'the', "team's", 'been', 'terrible', 'since', 'they', 'got', 'bought', 'by', 'the', 'cheap', '||comma||', 'heartless', 'duff', 'corporation', '||period||', 'hey', 'moe', '||comma||', 'gimme', 'a', 'duff', '||period||', '||left_parentheses||', 'drinking', 'one', '||right_parentheses||', 'oh', 'yeah', '||comma||', 'sweet', 'duff', '||period||', '||return|', 'carl_carlson:', 'wait', 'a', 'minute', '||period||', 'duff', 'owns', 'the', 'springfield', 'isotopes', '||question_mark||', 'since', 'when', '||question_mark||', '||return|', 'moe_szyslak:', 'they', 'bought', "'em", 'a', 'year', 'ago', '||comma||', 'from', 'the', 'mafia', '||period||', 'it', 'was', 'the', 'last', 'of', 'the', 'family-owned', 'teams', '||period||', '||return|', 'lenny_leonard:', 'i', 'tried', 'to', 'return', 'my', 'season', 'ticket', '||comma||', 'but', 'they', "wouldn't", 'give', 'me', 'my', 'money', 'back', '||period||', 'they', 'said', 'they', 'wanted', 'it', '||period||', '||return|', 'homer_simpson:', 'say', 'no', 'more', '||period||', "i'll", 'help', 'you', '||comma||', 'lenny', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'surprised', '||right_parentheses||', 'you', 'wanna', 'help', 'me', '||question_mark||', '||return|', 'moe_szyslak:', "haven't", 'you', 'heard', '||question_mark||', "he's", 'the', 'new', 'homer', '||period||', '||return|', 'carl_carlson:', "he's", 'wonderful', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'quick', '||comma||', 'moe', '||exclamation_mark||', 'marge', 'cut', 'off', 'my', 'thumb', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'no', 'problem', '||period||', 'just', 'stick', 'the', "ol'", 'eye-gouger', 'in', 'the', 'pickle', 'brine', '||period||', "that'll", 'keep', 'your', 'thumb', 'fresh', 'and', 'delicious', '||period||', '||return|', 'homer_simpson:', 'thanks', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'ah', '||comma||', 'hey', '||comma||', "ain't", 'you', 'gonna', 'have', 'a', 'beer', '||question_mark||', '||return|', 'homer_simpson:', 'well', '||comma||', 'i', 'really', "shouldn't", '||comma||', 'what', 'with', 'my', 'massive', 'blood', 'loss', 'and', 'all', '||period||', '||period||', '||period||', '||left_parentheses||', 'looking', 'at', 'thumb', '||right_parentheses||', 'although', 'i', 'do', 'like', 'the', 'occasional', 'beer', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'loud', '||right_parentheses||', 'did', 'you', 'ever', 'see', 'that', '||quotation_mark||', 'blue', 'man', 'group', '||question_mark||', '||quotation_mark||', 'total', 'rip-off', 'of', 'the', 'smurfs', '||period||', 'and', 'the', 'smurfs', '||question_mark||', 'they', 'suck', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sniffs', '||right_parentheses||', 'uh-oh', '||period||', 'i', 'smell', 'gangrene', '||period||', 'we', 'gotta', 'wake', 'him', 'up', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'holding', 'cup', '||right_parentheses||', 'a', 'little', "coffee'll", 'do', 'the', 'trick', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'waking-up', 'sound', '||comma||', 'then', 'instantly', 'sober', '||right_parentheses||', "i've", 'gotta', 'get', 'to', 'dr', '||period||', "nick's", '||exclamation_mark||', '||return|', 'homer_simpson:', "where's", 'marge', '||question_mark||', '||exclamation_mark||', '||left_parentheses||', 'disapproving', 'sound', '||right_parentheses||', 'that', 'is', 'so', 'rude', '||period||', '||left_parentheses||', 'moans', '||right_parentheses||', 'i', 'know', '||comma||', "i'll", 'hitchhike', '||period||', '||return|', 'lisa_simpson:', 'my', "dad's", 'not', 'here', '||question_mark||', 'i', 'need', 'a', 'ride', 'to', 'school', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'yeah', '||period||', 'we', 'all', 'got', 'problems', '||period||', '||return|', 'lisa_simpson:', 'chief', 'wiggum', '||comma||', 'can', 'you', 'drive', 'me', 'to', 'school', '||question_mark||', "it's", 'an', 'emergency', '||period||', '||return|', 'chief_wiggum:', 'ah', '||comma||', 'no', 'can', 'do', '||comma||', 'dollface', '||period||', "i've", 'got', 'an', 'informant', 'wearing', 'a', 'wire', '||period||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'excited', '||right_parentheses||', 'heh', '||comma||', 'just', 'like', 'on', '||quotation_mark||', 'nash', 'bridges', '||period||', '||quotation_mark||', "we're", "tryin'", 'to', 'get', 'the', 'goods', 'on', 'some', 'smugglers', '||period||', '||return|', 'voice_on_transmitter:', 'why', '||comma||', "i'd", 'be', 'delighted', 'to', 'sell', 'you', 'some', 'illegally', 'smuggled', 'goods', '||period||', '||return|', 'lisa_simpson:', 'that', 'sounds', 'like', 'fat', 'tony', '||period||', '||return|', 'chief_wiggum:', 'hm', '||comma||', 'only', 'one', 'way', 'to', 'be', 'sure', '||period||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'into', 'mic', '||right_parentheses||', 'fat', 'tony', '||comma||', 'is', 'that', 'you', '||question_mark||', 'fat', 'tony', '||question_mark||', '||return|', '2nd_voice_on_transmitter:', 'hey', '||comma||', "where's", 'that', 'voice', "comin'", 'from', '||question_mark||', '||return|', '3rd_voice:', 'this', "guy's", 'wearing', 'a', 'wire', '||exclamation_mark||', '||return|', 'voice_on_transmitter:', 'take', 'him', 'out', '||exclamation_mark||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'presses', 'button', '||right_parentheses||', 'my', 'bad', '||period||', 'i', "can't", 'work', 'my', 'answering', 'machine', 'either', '||period||', 'now', 'i', 'need', 'a', 'new', 'informant', '||period||', 'say', '||comma||', 'lisa', '||comma||', 'people', 'trust', 'you', '||period||', "how'd", 'you', 'like', 'to', 'be', 'a', 'snitch', '||question_mark||', 'the', 'pay', 'stinks', '||comma||', 'but', '||dash||', '||return|', 'chief_wiggum:', 'oh', '||period||', '||return|', 'homer_simpson:', 'quick', '||comma||', 'moe', '||exclamation_mark||', 'marge', 'cut', 'off', 'my', 'thumb', '||period||', '||return|', 'marge_simpson:', 'lisa', '||exclamation_mark||', '||return|', 'lisa_simpson:', 'mom', '||question_mark||', "where'd", 'you', 'get', 'that', 'car', '||question_mark||', '||return|', 'marge_simpson:', 'i', 'stole', 'it', 'from', 'mcbain', 'after', 'i', 'cut', 'off', 'your', "father's", 'thumb', '||period||', '||return|', 'lisa_simpson:', 'can', 'you', 'take', 'me', 'to', 'school', '||question_mark||', 'please', '||question_mark||', '||return|', 'marge_simpson:', 'not', 'right', 'now', '||period||', 'your', "father's", 'in', 'there', 'and', '||dash||', '||return|', 'homer_simpson:', '||left_parentheses||', 'loud', '||right_parentheses||', 'did', 'you', 'ever', 'see', 'that', '||quotation_mark||', 'blue', 'man', 'group', '||question_mark||', '||quotation_mark||', '||return|', 'marge_simpson:', 'oh', '||comma||', "he's", 'on', 'the', 'blue', 'man', 'group', 'again', '||period||', "c'mon", '||comma||', "we've", 'got', 'lotsa', 'time', '||period||', '||return|', 'chief_wiggum:', 'your', 'mission', 'is', 'to', 'find', 'the', 'fireworks', 'smugglers', 'and', 'get', 'them', 'to', 'say', 'something', 'incriminating', '||left_parentheses||', 'he', 'taps', 'a', 'tape', 'recorder', 'on', 'the', 'table', '||right_parentheses||', 'on', 'this', 'tape', '||period||', '||return|', 'bart_simpson:', 'hootie', 'and', 'the', 'blowfish', '||question_mark||', '||return|', 'chief_wiggum:', 'yeah', '||period||', "it's", 'cheaper', 'than', 'blank', 'tape', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'but', 'they', 'come', 'over', 'here', 'in', 'the', 'wheel', 'wells', 'of', 'aer', 'lingus', 'jets', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'but', 'a', 'lot', 'harder', 'to', 'catch', '||period||', 'uh', '||comma||', 'go', 'with', 'the', 'leprechaun', '||period||', '||return|', 'homer_simpson:', 'guys', '||comma||', 'i', 'am', 'not', 'cursed', '||exclamation_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'dying', '||right_parentheses||', 'carl', '||comma||', 'let', 'me', 'die', 'first', '||period||', 'i', "couldn't", 'bear', 'to', 'watch', 'you', 'die', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'dying', '||right_parentheses||', 'well', '||comma||', 'okay', '||comma||', 'but', 'hurry', 'up', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'distraught', '||right_parentheses||', 'oh', '||comma||', 'moe', '||comma||', "they're", 'dead', '||exclamation_mark||', 'and', "it's", 'all', 'my', 'fault', '||exclamation_mark||', '||return|', 'homer_simpson:', 'when', 'did', 'that', 'happen', '||question_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'i', 'hit', 'my', 'head', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'one', 'beer', '||comma||', "comin'", 'up', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||period||', 'no', 'kids', 'in', 'the', 'bar', '||period||', '||return|', 'homer_simpson:', 'since', 'when', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'the', "heat's", 'been', 'on', 'since', 'them', 'bush', 'girls', 'were', 'in', 'here', '||period||', '||return|', 'homer_simpson:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||left_parentheses||', 'dejected', '||right_parentheses||', 'come', 'on', '||comma||', 'bart', '||period||', '||return|', 'bart_simpson:', "i'm", 'cold', 'and', 'scared', '||period||', '||return|', 'homer_simpson:', "that's", 'my', 'little', 'slugger', '||period||', '||return|', 'bart_simpson:', "c'mon", '||comma||', 'dad', '||period||', "let's", 'go', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'knock', 'it', 'off', '||exclamation_mark||', 'these', 'pants', 'cost', 'six', 'hundred', 'dollars', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'really', '||question_mark||', '||return|', 'homer_simpson:', 'yeah', '||comma||', "they're", 'italian', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'pulling', 'shotgun', '||right_parentheses||', 'all', 'right', '||period||', 'hand', "'em", 'over', '||period||', '||return|', 'homer_simpson:', 'moe', '||question_mark||', 'what', 'the', '||question_mark||', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', 'rob', 'now', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'yes', '||period||', 'eventually', '||comma||', 'i', 'became', 'king', 'of', 'the', 'morlocks', '||period||', '||return|', 'carl_carlson:', 'but', 'morlocks', 'are', 'from', 'the', 'future', '||period||', '||return|', 'homer_simpson:', 'you', "callin'", 'me', 'a', 'liar', '||comma||', 'carl', '||question_mark||', '||return|', 'moe_szyslak:', 'wait', 'a', 'minute', '||comma||', 'homer', '||period||', 'if', "it's", 'true', '||comma||', 'what', 'about', 'all', 'the', 'stuff', 'you', "weren't", 'around', 'for', '||question_mark||', '||return|', 'lenny_leonard:', 'yeah', '||period||', "how'd", 'you', 'know', 'the', 'chinese', 'were', "spyin'", 'on', 'ya', '||question_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'i', 'just', 'naturally', 'assumed', '||period||', '||return|', 'moe_szyslak:', 'that', 'is', 'the', 'stupidest', 'story', 'i', 'ever', 'heard', '||comma||', 'and', "i've", 'read', 'the', 'entire', 'sweet', 'valley', 'high', 'series', '||period||', 'ha', '||period||', 'i', 'am', 'sick', 'of', 'you', 'drunks', 'and', 'your', 'shaggy', 'dog', 'stories', '||period||', '||return|', 'barney_gumble:', 'sorry', '||comma||', 'shaggy', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'oh', '||comma||', 'now', 'i', 'gotta', 'go', 'home', 'to', 'that', '||period||', 'thanks', 'a', 'lot', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'quitcher', 'bellyaching', '||comma||', 'coffee', 'boy', '||period||', "you're", 'lucky', 'i', 'let', 'ya', 'in', 'here', '||period||', '||return|', 'homer_simpson:', 'geez', 'moe', '||comma||', "you've", 'been', 'a', 'real', 'crank', 'lately', '||period||', '||return|', 'moe_szyslak:', 'you', 'take', 'that', 'back', '||period||', '||return|', 'homer_simpson:', 'now', '||comma||', 'ya', 'see', '||comma||', "that's", 'what', "i'm", "talkin'", 'about', '||period||', "you're", 'always', 'pointing', 'that', 'shotgun', 'at', 'us', '||period||', '||return|', 'lenny_leonard:', 'and', "callin'", 'us', 'dumb-asses', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', 'which', "we're", 'so', 'not', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'lowers', 'gun', '||right_parentheses||', 'but', '||comma||', 'can', 'you', 'blame', 'me', '||question_mark||', 'every', 'day', "it's", 'the', 'same', 'old', 'routine', '||period||', 'i', 'serve', 'you', 'drinks', '||comma||', 'you', 'yak', 'on', 'and', 'on', 'and', 'on', '||comma||', 'and', 'i', 'never', 'get', 'one', "stinkin'", 'tip', '||period||', '||return|', 'homer_simpson:', 'maybe', "we'd", 'tip', 'you', 'if', "you'd", 'smile', 'once', 'in', 'a', 'while', '||period||', '||return|', 'moe_szyslak:', 'what', "d'ya", 'call', 'this', '||question_mark||', '||return|', 'carl_carlson:', 'shesh', '||comma||', "don't", 'do', 'that', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'who', 'am', 'i', "kiddin'", '||question_mark||', 'i', "ain't", 'smiled', 'for', 'real', 'since', 'i', 'nailed', 'that', 'rat', 'with', 'the', 'ice', 'pick', '||period||', 'ha', '||comma||', 'remember', 'that', '||question_mark||', '||return|', 'homer_simpson:', 'that', 'was', 'an', 'amazing', 'throw', '||period||', '||return|', 'moe_szyslak:', 'ahh', '||exclamation_mark||', 'how', 'did', 'i', 'lose', 'my', 'passion', 'for', 'the', 'job', '||question_mark||', 'when', 'i', 'was', 'in', 'bartending', 'school', '||comma||', 'i', 'thought', 'i', 'had', 'the', 'world', 'by', 'the', 'jigger', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', "where'd", 'that', 'painting', 'come', 'from', '||question_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'i', 'put', 'this', 'up', 'recently', '||comma||', 'and', "it's", 'a', 'good', 'thing', 'i', 'did', '||comma||', "'cause", 'it', 'really', 'illustrates', 'my', 'point', '||period||', '||left_parentheses||', 'turns', 'back', 'to', 'painting', '||right_parentheses||', 'yep', '||comma||', 'good', "ol'", 'swigmore', 'u', '||period||', '||return|', 'carl_carlson:', 'gee', '||comma||', 'uh', '||comma||', 'when', 'you', 'talk', 'about', 'that', 'school', '||comma||', 'your', 'voice', 'fills', 'with', '||comma||', 'uh', '||period||', '||period||', '||period||', 'what', 'do', 'you', 'call', 'it', '||question_mark||', 'human', 'feeling', '||period||', '||return|', 'lenny_leonard:', 'yeah', '||comma||', 'maybe', 'you', 'should', '||comma||', 'uh', '||period||', '||period||', '||period||', "what's", 'the', 'expression', '||question_mark||', 'go', 'back', 'there', '||period||', '||return|', 'moe_szyslak:', "what's", 'the', 'word', "i'm", 'searching', 'for', '||question_mark||', 'uh', '||period||', '||period||', '||period||', 'yeah', '||exclamation_mark||', '||left_parentheses||', 'putting', 'on', 'coat', '||right_parentheses||', 'a', 'trip', 'to', 'the', 'alma', 'mater', 'might', 'really', 'rekindle', 'my', 'love', 'of', "gettin'", 'people', 'loaded', '||period||', '||return|', 'carl_carlson:', 'but', "who'll", 'run', 'the', 'bar', 'while', "you're", 'gone', '||question_mark||', '||return|', 'homer_simpson:', 'ooh', '||comma||', 'ooh', '||comma||', 'pick', 'me', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'pick', 'me', '||comma||', 'lenny', '||exclamation_mark||', '||return|', 'carl_carlson:', 'pick', 'me', '||exclamation_mark||', "i'm", 'an', 'urban', 'lenny', '||period||', '||return|', 'moe_szyslak:', 'look', '||comma||', 'i', "don't", 'wanna', 'start', 'a', "tinklin'", 'contest', 'here', '||period||', '||period||', '||period||', '||left_parentheses||', 'intrigued', '||right_parentheses||', 'or', 'do', 'i', '||question_mark||', '||return|', 'moe_szyslak:', '||period||', '||period||', '||period||', 'and', 'if', 'anybody', 'wants', 'potato', 'chips', 'or', 'anything', 'fancy', '||comma||', 'tell', "'em", 'to', 'go', 'to', 'hell', '||period||', '||return|', 'homer_simpson:', 'can', 'do', '||period||', 'now', "don't", 'you', 'worry', 'about', 'a', 'thing', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'what', 'are', 'you', "doin'", '||question_mark||', 'i', 'gotta', 'pay', 'for', 'that', '||exclamation_mark||', '||return|', 'homer_simpson:', 'no', 'moe', '||period||', "you've", 'got', 'it', 'all', 'wrong', '||period||', 'people', 'buy', 'beer', 'from', 'you', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'exasperated', 'sigh', '||right_parentheses||', 'all', 'right', '||comma||', 'look', '||comma||', 'i-i', 'gotta', 'go', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'matter-of-fact', '||right_parentheses||', 'i', 'thought', 'you', 'said', 'you', 'had', 'to', 'go', '||period||', '||return|', 'homer_simpson:', 'man', '||comma||', "when's", 'the', 'last', 'time', 'moe', 'cleaned', 'this', '||question_mark||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'homer', '||exclamation_mark||', 'another', 'duff', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'hey', 'homer', '||comma||', 'do', 'you', 'mind', 'if', 'i', 'bring', 'in', 'some', 'outside', 'food', '||question_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'i', "don't", 'know', '||period||', 'what', 'would', 'moe', 'say', 'about', 'that', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'slyly', '||right_parentheses||', 'but', 'on', 'the', 'other', 'hand', '||comma||', "moe's", 'not', 'here', '||period||', '||return|', 'lenny_leonard:', 'ah', '||comma||', 'homer', '||comma||', "you're", 'the', 'greatest', '||period||', '||return|', 'barney_gumble:', 'hey', '||exclamation_mark||', '||left_parentheses||', 'etc', '||period||', '||right_parentheses||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'to', 'guys', '||right_parentheses||', 'sorry', '||period||', 'sorry', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'good', 'natured', '||right_parentheses||', 'for', 'what', '||question_mark||', '||left_parentheses||', 'walking', 'toward', 'jukebox', '||right_parentheses||', 'a', 'little', 'splattered', 'food', 'never', 'hurt', 'anybody', '||period||', '||left_parentheses||', 'jubilant', '||right_parentheses||', 'now', 'everybody', 'shut', 'up', 'and', 'dance', '||exclamation_mark||', '||return|', 'barney_gumble:', 'hey', '||comma||', 'what', 'happened', 'to', 'the', 'music', '||question_mark||', '||return|', 'homer_simpson:', "don't", 'worry', '||period||', 'you', 'gotta', 'hit', 'it', 'just', 'right', '||period||', 'like', 'fonzie', '||period||', '||return|', 'homer_simpson:', 'ayyy', '||exclamation_mark||', '||return|', 'homer_simpson:', 'oh', '||exclamation_mark||', 'whoa', '||exclamation_mark||', 'hemorrhage-amundo', '||exclamation_mark||', '||return|', 'carl_carlson:', 'are', 'you', 'gonna', 'be', 'okay', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'still', 'cool', '||right_parentheses||', 'ayyy', '||period||', '||return|', 'homer_simpson:', 'yello', '||question_mark||', '||return|', 'bart_simpson:', 'yeah', '||comma||', "i'd", 'like', 'to', 'speak', 'to', 'a', 'mr', '||period||', 'tabooger', '||period||', 'first', 'name', '||comma||', 'ollie', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'excited', '||right_parentheses||', 'ooo', '||comma||', 'bart', '||exclamation_mark||', '||left_parentheses||', 'realizing', '||right_parentheses||', 'my', 'first', 'prank', 'call', '||period||', 'what', 'do', 'i', 'do', '||question_mark||', '||return|', 'bart_simpson:', 'just', 'ask', 'if', 'anyone', 'knows', 'ollie', 'tabooger', '||period||', '||return|', 'homer_simpson:', 'i', "don't", 'get', 'it', '||period||', '||return|', 'bart_simpson:', '||left_parentheses||', 'annoyed', '||comma||', 'deliberate', '||right_parentheses||', 'yell', 'out', '||quotation_mark||', "i'll", 'eat', 'a', 'booger', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', "what's", 'the', 'gag', '||question_mark||', '||return|', 'bart_simpson:', 'oh', '||comma||', 'forget', 'it', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'you', 'dirty', 'teen', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'being', 'hit', 'sounds', '||right_parentheses||', 'hey', '||comma||', 'homer', 'stop', '||comma||', 'stop', '||exclamation_mark||', "it's", 'me', '||exclamation_mark||', 'geez', '||period||', '||left_parentheses||', 'takes', 'off', 'hardhat', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'incredulous', '||right_parentheses||', 'moe', '||question_mark||', 'wrecking', "moe's", 'bar', '||question_mark||', '||return|', 'homer_simpson:', 'wow', '||comma||', 'well', 'i', '||left_parentheses||', 'nervous', 'giggle', '||right_parentheses||', 'i', 'almost', 'fainted', '||comma||', 'but', 'then', 'i', "didn't", '||period||', '||left_parentheses||', 'looking', 'around', '||comma||', 'upset', '||right_parentheses||', 'what', 'are', 'you', 'doing', '||question_mark||', '||return|', 'moe_szyslak:', 'my', 'professor', 'said', 'if', 'i', 'prettied', 'up', 'this', 'dump', '||comma||', 'it', 'would', 'renew', 'my', 'zeal', '||period||', '||return|', 'homer_simpson:', 'and', 'it', 'would', 'look', 'pretty', '||comma||', 'too', '||period||', '||return|', 'moe_szyslak:', 'and', 'now', '||comma||', 'i', 'want', 'you', 'to', 'meet', 'the', 'guy', "who's", 'gonna', 'help', 'bring', "moe's", 'into', 'the', 'twentieth', 'century', '||period||', '||return|', 'formico:', 'i', 'am', 'formico', '||period||', 'the', 'dean', 'of', 'design', '||period||', '||return|', 'homer_simpson:', 'hi', '||comma||', 'formico', '||period||', '||return|', 'formico:', 'ah', '||comma||', 'ah', '||comma||', 'ah', '||exclamation_mark||', 'my', 'name', 'must', 'never', 'be', 'spoken', '||period||', '||return|', 'homer_simpson:', 'sorry', '||period||', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'he', 'seems', 'nice', '||period||', '||return|', 'lisa_simpson:', "how'd", 'they', 'get', 'your', 'bar', 'back', 'to', 'normal', 'so', 'quickly', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', "it's", 'a', 'snap', 'when', 'you', 'use', 'certified', 'contractors', '||period||', '||return|', 'bart_simpson:', 'like', 'the', 'ones', 'found', 'in', 'your', 'local', 'yellow', 'pages', '||period||', '||return|', 'moe_szyslak:', 'exactly', '||period||', '||return|', 'homer_simpson:', "i'm", 'sorry', 'i', 'shot', 'you', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', "that's", 'okay', '||period||', "it's", 'like', 'my', 'dad', 'always', 'said', '||comma||', '||quotation_mark||', 'eventually', 'everybody', 'gets', 'shot', '||period||', '||quotation_mark||', '||return|', 'marge_simpson:', 'aw', '||comma||', "i'm", 'glad', 'you', 'two', 'are', 'friends', 'again', 'so', 'we', 'can', 'all', 'have', 'thanksgiving', 'dinner', 'together', 'in', 'this', 'bar', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'noticing', 'band', '||right_parentheses||', 'hey', '||comma||', 'who', 'invited', 'the', 'hippies', '||question_mark||', '||return|', 'lisa_simpson:', 'i', 'did', '||period||', 'you', 'owe', 'rem', 'an', 'apology', 'for', '||comma||', 'eco-fraud', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'reluctant', '||right_parentheses||', 'all', 'right', '||comma||', "i'm", 'sorry', '||period||', '||period||', '||period||', '||left_parentheses||', 'bitter', '||right_parentheses||', 'but', 'i', 'will', 'not', 'save', 'the', 'rainforest', '||period||', '||return|', 'peter_buck:', 'good', 'enough', '||period||', "let's", 'eat', '||period||', '||return|', 'lisa_simpson:', 'and', 'we', 'should', 'all', 'be', 'thankful', 'to', 'michael', '||comma||', 'peter', 'and', 'mike', 'for', 'supplying', 'this', 'beautiful', 'turkey', '||comma||', 'made', 'entirely', 'of', 'tofu', '||period||', '||return|', 'mike_mills:', 'tofu', 'and', 'gluten', '||exclamation_mark||', '||return|', 'bart_simpson:', "i'm", 'thankful', 'i', 'ate', 'before', 'i', 'came', '||period||', '||return|', 'michael_stipe:', 'oh', '||comma||', 'come', 'on', '||comma||', 'bart', '||period||', 'smell', 'those', 'curds', '||exclamation_mark||', '||left_parentheses||', 'sniffs', '||comma||', 'satisfied', 'sigh', '||right_parentheses||', 'mmmmm', '||comma||', 'curds', '||period||', '||return|', 'homer_simpson:', 'and', "i'm", 'thankful', 'i', 'get', 'to', 'spend', 'thanksgiving', 'with', 'my', 'family', '||comma||', 'these', 'alternative', 'rockers', '||comma||', 'and', 'my', 'favorite', 'bartender', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'here', 'you', 'go', '||comma||', 'pal', '||period||', '||left_parentheses||', 'gives', 'homer', 'a', 'beer', '||right_parentheses||', '||return|', 'homer_simpson:', 'and', 'here', 'you', 'go', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'okay', 'gabriel', '||comma||', 'this', 'is', 'a', '||quotation_mark||', 'bar', '||period||', '||quotation_mark||', "it's", 'where', 'i', 'go', 'to', 'drink', '||quotation_mark||', 'alcohol', '||comma||', '||quotation_mark||', 'which', 'is', 'the', 'mortal', 'equivalent', 'of', 'your', 'ambrosia', '||period||', '||return|', 'gabriel:', '||left_parentheses||', 'angry', '||right_parentheses||', 'homer', '||comma||', 'i', 'am', 'not', 'an', 'angel', '||exclamation_mark||', '||return|', 'homer_simpson:', 'well', '||comma||', 'not', 'with', 'that', 'temper', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'drunk', '||right_parentheses||', 'look', '||comma||', 'the', 'thing', 'about', 'my', 'family', 'is', '||comma||', "there's", 'five', 'of', 'us', '||period||', '||left_parentheses||', 'counting', 'deliberately', 'on', 'fingers', '||right_parentheses||', 'marge', '||comma||', 'bart', '||comma||', 'girl-bart', '||comma||', 'the', 'one', 'who', "doesn't", 'talk', '||comma||', 'and', 'the', 'fat', 'guy', '||period||', 'how', 'i', 'loathe', 'him', '||period||', '||return|', 'carl_carlson:', 'no', '||period||', "you're", 'thinking', 'of', 'someone', 'with', 'two', 'knives', '||period||', '||return|', 'moe_szyslak:', 'i', 'gotta', 'tell', 'ya', '||comma||', 'this', 'is', 'pretty', 'terrific', '||period||', '||left_parentheses||', 'laughs', '||right_parentheses||', 'yeah', '||period||', '||return|', 'homer_simpson:', 'my', "lady's", 'glass', 'is', 'empty', '||comma||', 'moe', '||period||', 'bring', 'her', 'another', 'cookies', "'n'", 'creme', 'martini', '||period||', '||return|', 'amber_dempsey:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'no', '||comma||', 'honey', '||period||', 'this', 'time', 'make', 'it', 'a', '||quotation_mark||', 'sex', 'on', 'the', 'beach', '||period||', '||quotation_mark||', 'and', 'hold', 'the', 'beach', '||period||', '||left_parentheses||', 'small', 'annoying', 'laugh', '||right_parentheses||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'admiring', '||right_parentheses||', 'gee', '||comma||', 'homer', '||period||', 'your', 'new', 'wife', 'is', 'great', '||period||', 'her', 'lips', 'look', 'like', 'night-crawlers', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'bragging', '||right_parentheses||', 'you', 'know', '||comma||', 'she', 'could', 'put', 'that', 'mole', 'anywhere', 'on', 'her', 'face', '||period||', '||return|', 'lenny_leonard:', 'wowww', '||period||', '||return|', 'homer_simpson:', 'to', 'amber', '||period||', '||period||', '||period||', 'who', 'proves', 'there', 'are', 'seconds', 'in', 'the', 'buffet', 'of', 'life', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'well', '||comma||', 'i', 'say', 'the', 'most', 'clothespins', 'a', 'man', 'could', 'attach', 'to', 'his', 'face', 'is', 'eighty-seven', '||period||', '||return|', 'carl_carlson:', 'you', 'counting', 'the', 'neck', '||question_mark||', '||return|', 'lenny_leonard:', 'you', 'know', 'i', 'am', '||period||', '||return|', 'carl_carlson:', 'all', 'right', '||period||', '||left_parentheses||', 'punches', 'palm', '||right_parentheses||', 'outside', '||period||', '||return|', 'homer_simpson:', 'peace', '||comma||', 'my', 'people', '||period||', 'all', 'shall', 'be', 'looked', 'up', '||period||', '||left_parentheses||', 'flips', 'through', 'the', 'book', '||right_parentheses||', "let's", 'see', '||comma||', 'most', 'clothespins:', 'swallowed', '||comma||', 'inserted', '||period||', '||period||', '||period||', 'here', 'we', 'go', '||comma||', 'clipped', 'to', 'face', 'and', 'neck', '||period||', 'one', 'hundred', 'and', 'sixteen', '||period||', '||return|', 'lenny_leonard:', 'geez', '||comma||', 'i', 'was', 'wrong', '||comma||', 'but', 'i', "ain't", 'angry', '||period||', '||return|', 'carl_carlson:', 'and', "i'm", 'magnanimous', 'in', 'victory', '||period||', '||return|', 'moe_szyslak:', 'wow', '||comma||', "that's", 'the', 'best', 'book', "i've", 'ever', 'seen', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'checking', 'book', '||right_parentheses||', 'no', '||comma||', 'the', 'best', 'book', "you've", 'ever', 'seen', 'is', 'tom', "clancy's", '||quotation_mark||', 'op', 'center', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'amazed', '||right_parentheses||', 'that', 'thing', 'knows', 'me', 'better', 'than', 'i', 'know', 'myself', '||period||', '||return|', '||return|', '||return|', 'duffman:', 'hey', '||comma||', 'duff', 'lovers', '||exclamation_mark||', 'does', 'anyone', 'in', 'this', 'bar', 'love', 'duff', '||question_mark||', '||return|', 'carl_carlson:', 'hey', '||comma||', "it's", 'duffman', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'newsweek', 'said', 'you', 'died', 'of', 'liver', 'failure', '||period||', '||return|', 'duffman:', 'duffman', 'can', 'never', 'die', '||period||', 'only', 'the', 'actors', 'who', 'play', 'him', '||period||', '||left_parentheses||', 'thrust', '||right_parentheses||', 'oh', 'yeah', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'you', 'must', 'be', 'here', 'for', 'the', 'uh', '||comma||', 'duff', 'trivia', 'challenge', '||period||', '||return|', 'duffman:', "that's", 'right', '||comma||', 'local', 'distributor', '||period||', 'one', 'of', 'you', 'could', 'win', 'a', 'lifetime', 'supply', 'of', 'duff', '||period||', '||return|', 'duffman:', 'okay', '||comma||', 'chug-monkeys', '||period||', 'what', 'beverage', '||comma||', 'brewed', 'since', 'ancient', 'times', '||comma||', 'is', 'made', 'from', 'hops', 'and', 'grains', '||question_mark||', '||return|', 'lenny_leonard:', 'how', 'about', '||quotation_mark||', 'ancient', 'hop', 'grain', 'juice', '||quotation_mark||', '||question_mark||', '||return|', 'moe_szyslak:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', "homer's", "tryin'", 'to', 'make', 'a', 'guess', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'oh', '||comma||', 'what', 'are', 'you', 'doing', '||question_mark||', "you're", "gettin'", 'some', 'kind', 'of', 'booze', 'all', 'over', '||period||', '||return|', 'duffman:', "time's", 'up', '||period||', 'the', 'answer', 'is', '||left_parentheses||', 'turns', 'card', 'over', '||comma||', 'reading:', '||right_parentheses||', 'beer', '||exclamation_mark||', 'ooh', '||comma||', 'duff', 'luck', '||period||', '||return|', 'carl_carlson:', 'i', 'never', 'woulda', 'figured', 'that', 'out', '||period||', '||return|', 'lenny_leonard:', 'hm', '||period||', 'now', '||comma||', "that's", 'the', 'kinda', 'thing', 'you', 'just', 'gotta', 'know', '||period||', '||return|', 'homer_simpson:', 'and', 'when', 'i', "couldn't", 'talk', '||comma||', 'i', 'learned', 'to', 'listen', '||period||', '||return|', 'homer_simpson:', 'i', 'learned', 'so', 'much', 'about', 'my', 'family', '||period||', "you'd", 'be', 'surprised', 'how', 'much', 'you', 'hear', 'if', 'you', 'just', 'listen', 'once', 'in', 'a', 'while', '||period||', '||return|', 'lenny_leonard:', 'really', '||question_mark||', "let's", 'try', 'it', '||period||', '||return|', 'moe_szyslak:', 'hello', '||question_mark||', 'yeah', '||comma||', "i'd", 'like', 'to', 'arrange', 'for', 'an', 'escort', 'please', '||period||', '||return|', 'moe_szyslak:', 'to', 'where', '||question_mark||', 'how', "'bout", '||quotation_mark||', 'orgasmville', '||quotation_mark||', '||question_mark||', 'hello', '||question_mark||', 'hello', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'hey', '||comma||', 'how', 'ya', "doin'", '||question_mark||', '||return|', 'homer_simpson:', 'i', 'was', 'just', "tellin'", 'all', 'the', 'guys', 'how', 'losing', 'the', 'power', 'of', 'speech', 'made', 'me', 'a', 'better', 'man', '||period||', '||return|', 'lindsay_naegle:', 'i', "couldn't", 'agree', 'more', '||period||', "you're", "today's", 'modern', '||comma||', 'enlightened', 'man', '||dash||', 'the', 'kind', 'we', 'television', 'producers', 'have', 'been', 'booking', 'since', 'the', 'mid-seventies', '||period||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'in', 'here', '||question_mark||', '||return|', 'lindsay_naegle:', '||left_parentheses||', 'all', 'business', '||right_parentheses||', "i'm", 'an', 'alcoholic', '||period||', 'homer', '||comma||', 'will', 'you', 'appear', 'on', 'my', 'show', '||question_mark||', '||return|', 'homer_simpson:', 'sure', 'thing', '||comma||', 'alky', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'grandiose', '||right_parentheses||', 'this', "round's", 'on', 'me', '||comma||', 'moe', '||period||', 'i', 'got', 'a', 'big', 'payday', "comin'", '||period||', '||return|', 'homer_simpson:', 'yeah', '||period||', 'homer', 'sold', 'his', 'wife', 'for', 'a', 'million', 'bucks', '||period||', '||return|', 'homer_simpson:', 'i', "didn't", 'sell', 'her', '||period||', 'i', 'just', 'rented', 'her', 'to', 'an', 'old', 'boyfriend', '||period||', '||return|', 'homer_simpson:', 'gee', '||comma||', 'a', 'million', 'bucks', '||comma||', "that's", 'gonna', 'buy', 'him', 'a', 'lot', 'of', '||comma||', 'uh', '||period||', '||period||', '||period||', 'swings', 'in', 'the', 'old', "battin'", 'cage', '||period||', '||left_parentheses||', 'perverted', 'noise', '||right_parentheses||', '||return|', 'lenny_leonard:', 'looks', 'like', "everyone's", 'a', 'winner', '||period||', 'marge', 'gets', 'a', 'great', 'new', 'life', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', 'and', 'you', 'get', 'more', 'sprawl', 'space', 'on', 'the', 'bed', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'worried', '||right_parentheses||', 'wait', '||comma||', 'you', 'really', 'think', 'marge', 'is', 'gonna', 'fall', 'for', 'this', 'guy', '||question_mark||', 'even', 'after', 'i', 'bought', 'her', 'that', 'hockey-fight', 'tape', '||question_mark||', '||return|', 'carl_carlson:', "i'd", 'dump', 'your', 'ass', '||period||', '||return|', 'lenny_leonard:', 'me', 'too', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', "can't", 'get', 'artie', 'out', 'of', 'my', 'head', '||period||', "he's", 'like', 'a', 'spy', 'in', 'the', 'house', 'of', 'moe', '||period||', '||return|', 'homer_simpson:', 'oh', 'god', '||comma||', "you're", 'right', '||period||', "i've", 'gotta', 'get', 'her', 'back', 'before', "it's", 'too', 'late', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'pants', '||right_parentheses||', "that's", 'enough', 'running', '||period||', '||return|', 'homer_simpson:', 'oh', 'guys', '||comma||', 'it', 'was', 'horrible', '||period||', 'i', 'saw', 'marge', 'kissing', 'a', 'far', 'superior', 'man', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'well', 'if', 'it', 'makes', 'you', 'feel', 'any', 'better', '||comma||', "he's", 'probably', "doin'", 'her', 'right', 'now', '||period||', '||return|', 'moe_szyslak:', 'oh', 'yeah', '||comma||', 'make', 'me', 'the', 'bad', 'guy', '||period||', '||return|', 'homer_simpson:', 'my', 'life', 'here', 'is', 'over', '||period||', '||left_parentheses||', 'stands', 'up', '||comma||', 'dramatic', '||right_parentheses||', 'lenny', '||comma||', "how'd", 'you', 'like', 'to', 'leave', 'town', 'with', 'me', '||comma||', 'and', 'never', 'come', 'back', '||question_mark||', '||return|', 'lenny_leonard:', 'sounds', 'like', 'a', 'plan', '||period||', '||return|', 'homer_simpson:', 'then', "it's", 'settled', '||period||', 'we', 'leave', 'springfield', 'forever', '||period||', '||return|', 'carl_carlson:', "what'd", 'i', 'miss', '||question_mark||', 'anything', 'good', '||question_mark||', '||return|', '||return|', '||return|', 'lookalike:', '||left_parentheses||', 'peppy', '||right_parentheses||', 'hi', '||comma||', "i'm", 'chuck', '||period||', '||left_parentheses||', 'points', 'to', 'door', 'through', 'which', 'mcbain', 'exited', '||right_parentheses||', 'i', 'live', 'in', 'his', 'trunk', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'grandiose', '||right_parentheses||', 'hello', '||comma||', 'gentlemen', '||period||', 'would', 'you', 'care', 'to', 'meet', 'my', 'new', 'best', 'friend', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'rainier', 'wolfcastle', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'teenage', 'girl', '||right_parentheses||', 'ohmygod', '||comma||', 'ohmygod', '||comma||', 'ohmygod', '||period||', '||period||', '||period||', '||return|', 'lenny_leonard:', 'hey', '||comma||', "i've", 'been', 'using', 'that', 'ab', 'roller', 'you', 'endorse', '||comma||', 'but', 'i', "haven't", 'gotten', 'any', 'results', '||period||', '||return|', 'rainier_wolfcastle:', 'right', '||comma||', 'because', "you've", 'been', 'using', 'it', 'backward', '||period||', '||return|', 'carl_carlson:', 'are', 'you', 'really', "homer's", 'friend', '||question_mark||', '||return|', 'lenny_leonard:', 'after', 'they', 'shoot', 'your', 'movies', '||comma||', 'who', 'gets', 'the', 'leftover', 'film', '||question_mark||', '||return|', 'moe_szyslak:', 'is', 'it', 'true', 'that', 'if', 'i', 'kill', 'you', 'i', 'become', 'you', '||question_mark||', '||return|', 'rainier_wolfcastle:', '||left_parentheses||', 'disgusted', 'noise', '||right_parentheses||', 'this', 'looks', 'like', 'a', 'job', 'for', 'my', 'authorized', 'lookalike', '||period||', '||return|', 'moe_szyslak:', 'so', 'how', 'much', 'you', 'lookalikes', 'make', '||question_mark||', "'cause", 'some', 'say', 'i', 'look', 'like', 'macaulay', 'culkin', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'so', 'lisa', 'says', 'by', 'killing', 'their', 'enemy', '||comma||', 'i', 'became', 'the', 'alpha-crow', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'uneasy', '||right_parentheses||', 'i', 'gotta', 'admit', '||comma||', "i-i'm", 'kinda', 'nervous', '||comma||', 'here', '||period||', 'we', "haven't", 'seen', 'barney', 'since', 'they', 'enveloped', 'him', '||period||', '||return|', 'homer_simpson:', "i'm", 'sure', "he'll", 'turn', 'up', '||period||', 'look', '||comma||', "here's", 'one', 'of', 'his', 'buttons', '||period||', '||return|', 'moe_szyslak:', 'all', 'right', '||comma||', "that's", 'it', '||period||', 'get', "'em", 'outta', 'here', '||period||', 'this', "ain't", 'no', 'crow', 'bar', '||period||', '||return|', 'moe_szyslak:', 'this', 'is', 'a', 'crowbar', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'see', '||question_mark||', 'they', 'got', 'the', 'little', 'stools', 'and', 'everything', '||period||', '||return|', 'moe_szyslak:', "what's", 'the', 'matter', '||comma||', 'homer', '||question_mark||', "you're", 'drunk', 'but', "you're", 'not', 'like', 'sloppy', 'drunk', '||period||', '||return|', 'homer_simpson:', 'going', 'cold', 'turkey', "isn't", 'as', 'delicious', 'as', 'it', 'sounds', '||period||', '||return|', 'moe_szyslak:', 'look', '||comma||', 'i', '||comma||', "i'm", 'really', 'glad', "you're", 'off', 'the', 'wacky', 'tobacky', '||period||', '||return|', 'lenny_leonard:', 'yeah', '||comma||', 'you', 'were', "gettin'", 'all', 'spacey', 'and', 'everything', '||period||', 'we', 'were', 'gonna', 'have', 'an', 'intervention', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'but', 'at', 'the', 'planning', 'party', 'i', 'got', 'alcohol', 'poisoning', '||period||', 'heh', '||period||', 'i', 'nearly', 'died', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'i', 'was', 'already', "makin'", 'excuses', 'not', 'to', 'go', 'to', 'your', 'funeral', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||period||', '||period||', '||period||', 'so', 'anyway', '||comma||', 'if', 'you', 'take', 'that', 'bottle', 'down', '||comma||', 'and', 'pass', 'it', 'around', '||dash||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'interrupting', '||comma||', 'impatient', '||right_parentheses||', 'i', 'know', '||comma||', 'i', 'know', '||comma||', 'there', 'will', 'be', 'forty-seven', 'bottles', 'of', 'beer', 'on', 'the', 'wall', '||period||', 'yes', '||period||', 'homer', '||comma||', 'you', 'did', 'not', 'bring', 'me', 'here', 'for', 'this', '||period||', 'what', 'is', 'it', 'that', 'you', 'want', 'to', 'tell', 'me', '||question_mark||', '||return|', 'homer_simpson:', 'okay', '||comma||', 'this', "isn't", 'easy', '||comma||', 'so', "i'm", 'just', 'gonna', 'come', 'out', 'and', 'say', 'it', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'terrified', 'noise', '||right_parentheses||', 'here-here-here', 'you', 'go', '||comma||', 'mister', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', "let's", 'say', 'this', 'pepper', 'got', 'married', 'to', 'this', 'salt', 'shaker', '||comma||', 'and', 'along', 'comes', 'sexy', 'mrs', '||period||', 'dash', '||period||', '||period||', '||period||', '||return|', 'marge_simpson:', 'homie', '||comma||', "it's", 'eleven', 'at', 'night', '||period||', 'have', 'you', 'told', 'him', 'yet', '||question_mark||', '||return|', 'lenny_leonard:', 'a', 'girl', 'in', 'the', 'bar', '||exclamation_mark||', 'what', 'do', 'we', 'do', '||question_mark||', '||return|', 'moe_szyslak:', 'watch', 'and', 'learn', '||comma||', 'ya', 'dinks', '||period||', '||return|', 'moe_szyslak:', "ma'am", '||period||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', 'is', 'there', 'something', 'you', 'want', 'to', 'tell', 'me', '||question_mark||', '||return|', 'homer_simpson:', 'i', 'saw', 'you', 'and', 'that', 'squishee', 'lady', '||dash||', 'canoodling', 'like', 'junkyard', 'rabbits', '||exclamation_mark||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'horrified', 'gasp', '||right_parentheses||', "it's", 'true', '||period||', 'it', 'only', 'happened', 'once', '||comma||', 'but', 'i', 'am', 'so', 'ashamed', '||period||', 'i', 'am', 'scum', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'soothing', '||right_parentheses||', 'yes', '||period||', 'you', 'are', 'scum', '||period||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'what', 'do', 'you', 'think', 'i', 'should', 'do', '||question_mark||', '||return|', 'marge_simpson:', 'tell', 'that', 'woman', "it's", 'over', 'between', 'you', 'and', 'her', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'yes', '||period||', 'first', 'thing', 'in', 'the', 'morning', '||period||', 'i', 'promise', '||period||', '||return|', 'moe_szyslak:', 'hey', 'marge', '||comma||', 'uh', '||comma||', 'you', 'care', 'for', 'a', 'tropical', 'drink', '||question_mark||', '||return|', 'marge_simpson:', 'sure', '||period||', '||return|', 'marge_simpson:', 'is', 'that', 'windex', '||question_mark||', '||return|', 'moe_szyslak:', "it's", 'windelle', '||period||', 'i', "can't", 'afford', 'windex', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'if', 'you', 'ask', 'me', 'muhammad', 'ali', '||comma||', 'in', 'his', 'prime', '||comma||', 'was', 'much', 'better', 'than', 'anti-lock', 'brakes', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'but', 'what', 'about', 'johnny', 'mathis', 'versus', 'diet', 'pepsi', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'i', 'cannot', 'listen', 'to', 'this', 'again', '||period||', '||return|', 'homer_simpson:', 'guys', '||comma||', 'i', 'just', 'ordered', 'my', 'wife', 'the', 'greatest', 'anniversary', 'present', '||dash||', 'a', 'koi', 'pond', '||period||', '||return|', 'carl_carlson:', 'a', 'koi', 'pond', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'a', 'meditative', 'lily-pond', '||comma||', 'with', 'big', 'beautiful', 'fish', 'that', 'fry', 'up', 'really', 'good', '||period||', '||return|', 'carl_carlson:', 'oh', '||comma||', "that's", 'the', 'perfect', 'gift', '||period||', '||return|', 'lenny_leonard:', 'yeah', '||comma||', 'you', "don't", 'even', 'have', 'to', 'feed', 'the', 'fish', '||comma||', "'cause", 'squirrels', 'drown', 'in', 'it', '||period||', '||return|', 'carl_carlson:', 'you', 'got', 'this', 'husband', 'thing', 'down', '||comma||', 'homer', '||period||', '||return|', 'lenny_leonard:', 'yeah', '||comma||', 'you', 'must', 'be', 'some', 'kind', 'of', 'marriage', 'super-genius', '||period||', 'how', "'bout", 'a', 'few', 'tips', '||question_mark||', '||return|', 'homer_simpson:', 'certainly', '||comma||', 'lenford', '||period||', 'make', 'every', 'day', 'a', 'celebration', 'of', 'your', 'love', '||period||', 'surprise', 'her', 'with', 'a', 'pasta', 'salad', '||exclamation_mark||', 'put', 'a', 'mini-beret', 'on', 'your', 'wang', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'ooh', '||comma||', 'this', 'stuff', 'is', 'gold', '||period||', '||return|', 'carl_carlson:', 'happy', 'marriage', 'here', 'i', 'come', '||exclamation_mark||', '||return|', 'moe_szyslak:', "this'll", 'really', 'help', 'with', 'my', 'speed', 'dating', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sadly', '||right_parentheses||', 'i', 'got', 'four', 'hundred', 'nos', '||period||', '||return|', 'carl_carlson:', 'do', 'you', 'really', 'think', 'homer', 'could', 'be', 'a', 'killer', '||question_mark||', '||return|', 'lenny_leonard:', 'i', 'just', "can't", 'believe', 'a', 'man', 'we', 'sat', 'and', 'drank', 'with', 'all', 'these', 'years', 'could', 'do', 'such', 'a', 'horrible', 'thing', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', "we've", 'all', 'got', 'that', 'voice', 'in', 'our', 'heads', 'telling', 'us', 'to', 'kill', '||period||', 'you', 'just', 'have', 'to', 'drown', 'it', 'out', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sings', '||right_parentheses||', "i've", 'been', 'working', 'on', 'the', 'railroad', '/', 'all', 'the', 'live', 'long', 'day', '||period||', '||period||', '||period||', '||left_parentheses||', 'then', '||right_parentheses||', 'yeah', '||comma||', "that's", 'better', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'weary', '||right_parentheses||', 'oh', 'man', '||comma||', 'what', 'a', 'day', '||period||', "i'd", 'kill', 'for', 'a', 'beer', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'gasp', '||right_parentheses||', 'right', 'away', '||comma||', 'sir', '||period||', 'i-i-i', "don't", 'want', 'no', 'trouble', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'intrigued', 'noise', '||right_parentheses||', "i'd", 'stab', 'somebody', 'for', 'a', 'pickle', '||period||', '||return|', 'homer_simpson:', 'gimme', 'some', 'peanuts', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'ã€', 'la', 'simon', 'says', '||right_parentheses||', 'up-bup-bup', '||period||', 'you', "didn't", 'say', "you'd", 'kill', 'me', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sighs', '||right_parentheses||', "i'll", 'kill', 'you', 'if', 'you', "don't", 'give', 'me', 'some', 'peanuts', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'fellas', '||comma||', "i'm", 'starting', 'my', 'own', 'private', 'police', 'force', '||period||', 'will', 'you', 'join', 'me', '||question_mark||', '||return|', 'carl_carlson:', 'well', '||comma||', 'who', 'would', 'my', 'partner', 'be', '||question_mark||', '||return|', 'homer_simpson:', 'how', "'bout", 'lenny', '||question_mark||', '||return|', 'lenny_leonard:', 'him', '||question_mark||', '||return|', 'lenny_leonard:', 'no', 'way', '||exclamation_mark||', '||return|', 'homer_simpson:', "you'll", 'do', 'as', 'i', 'say', 'or', "i'll", 'have', 'your', 'badges', '||period||', '||left_parentheses||', 'admitting', '||right_parentheses||', 'once', 'i', 'make', 'and', 'give', 'you', 'your', 'badges', '||period||', '||return|', 'homer_simpson:', 'woo', 'hoo', '||exclamation_mark||', "i'm", 'chief', 'of', 'police', '||period||', '||return|', 'moe_szyslak:', 'police', '||question_mark||', 'uh-oh', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'wait', '||period||', 'it', 'was', 'better', 'the', 'other', 'way', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'now', '||comma||', 'uh', '||period||', '||period||', '||period||', "who's", 'gonna', 'be', "pickin'", 'up', 'the', 'tab', '||question_mark||', '||return|', 'homer_doubles:', '||left_parentheses||', 'in', 'unison', '||right_parentheses||', 'len-ny', '||period||', '||return|', 'lenny_leonard:', 'anything', 'for', 'homers', '||exclamation_mark||', '||return|', 'professor_jonathan_frink:', '||left_parentheses||', 'upset', '||right_parentheses||', 'oh', '||comma||', 'dear', '||period||', '||return|', 'billy_the_kid:', 'play', 'us', 'some', 'pian-ee', '||period||', '||return|', 'billy_the_kid:', "that's", 'piano', '||exclamation_mark||', 'i', 'said', '||quotation_mark||', 'pian-ee', '||exclamation_mark||', '||quotation_mark||', '||return|', 'billy_the_kid:', 'you', '||comma||', 'play', 'the', 'cell-ee', '||period||', '||return|', 'billy_the_kid:', 'you', '||comma||', 'sing', 'a', 'song', 'about', 'cattle', "rustlin'", '||period||', '||return|', 'billy_the_kid:', 'and', 'you', 'sing', 'one', 'about', "robbin'", 'banks', '||period||', '||return|', 'bart_simpson:', '||left_parentheses||', '||quotation_mark||', 'shoo', 'fly', 'shoo', '||quotation_mark||', '||right_parentheses||', "calf's", 'in', 'the', 'field', 'so', 'you', 'sneak', 'up', 'slow', '/', 'grab', "'im", 'by', 'the', 'tail', 'and', 'go', 'man', 'go', '||period||', '||period||', '||period||', '||return|', 'lisa_simpson:', 'break', 'into', 'the', 'bank', 'and', 'snatch', 'that', 'dough', '||period||', '||period||', '||period||', '||return|', 'lisa_simpson:', 'please', "don't", 'hurt', 'our', 'family', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'loud', 'sotto', '||right_parentheses||', 'marge', '||comma||', 'let', 'me', 'do', 'a', 'solo', '||period||', 'this', 'could', 'be', 'my', 'big', 'break', '||period||', '||return|', 'marge_simpson:', 'i', 'very', 'much', 'doubt', 'that', '||comma||', 'homer', '||period||', 'these', 'are', 'horrible', 'ghouls', 'from', 'the', 'past', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'so', 'are', 'the', 'grammy', 'judges', '||period||', '||left_parentheses||', 'laughs', '||right_parentheses||', '||dash||', '||left_parentheses||', 'surprised', 'noise', '||right_parentheses||', '||return|', 'professor_jonathan_frink:', 'pardon', 'the', 'grabbing', '||comma||', 'but', "i've", 'perfected', 'a', 'device', 'that', 'could', 'save', 'us', 'all', '||period||', '||period||', '||period||', 'a', 'time', 'machine', '||period||', 'we', 'can', 'go', 'back', 'to', 'the', 'past', 'and', 'save', 'our', 'guns', '||period||', '||return|', 'homer_simpson:', 'gimme', '||exclamation_mark||', '||return|', 'professor_jonathan_frink:', 'aw', '||comma||', 'for', 'flayvin', 'out', 'loud', '||comma||', 'i', 'hope', 'he', "doesn't", 'do', 'anything', 'to', 'ruin', 'the', 'space-time', 'continuum', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', "wait'll", 'moe', 'sees', 'how', 'wasted', 'i', 'got', 'without', 'him', '||period||', "he's", 'gonna', 'plotz', '||period||', '||return|', 'homer_simpson:', 'hi', '||comma||', 'moe', '||comma||', 'got', 'any', 'beer', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'absentminded', '||comma||', 'polishing', 'a', 'glass', '||right_parentheses||', 'sure', '||comma||', 'check', 'in', 'the', 'fridge', '||period||', '||return|', 'moe_szyslak:', 'wait', 'a', 'minute', '||period||', "i'm", 'at', 'work', '||period||', '||left_parentheses||', 'grabs', 'beer', 'from', 'homer', '||right_parentheses||', 'ya', 'gotta', 'pay', 'for', 'it', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'surprised', 'sound', '||right_parentheses||', 'what', 'the', '||dash||', "where's", 'my', 'money', '||question_mark||', '||return|', 'marge_simpson:', '||quotation_mark||', 'dear', 'homie', '||comma||', 'had', 'to', 'buy', 'diapers', 'for', 'maggie', '||period||', 'love', '||comma||', 'marge', '||period||', '||quotation_mark||', '||return|', 'marge_simpson:', 'simpson', '||period||', '||return|', 'lisa_simpson:', '||quotation_mark||', 'dear', 'dad', '||comma||', 'took', 'money', 'for', 'the', 'school', 'book', 'fair', '||period||', '||quotation_mark||', '||return|', 'bart_simpson:', '||quotation_mark||', 'homer', '||comma||', 'i', 'need', 'cash', 'or', "they're", 'gonna', 'break', 'my', 'legs', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'sorry', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'indignant', '||right_parentheses||', 'so', "you're", 'just', 'gonna', 'let', 'me', 'walk', 'out', 'of', 'here', 'sober', '||period||', '||return|', 'moe_szyslak:', "i'm", 'afraid', 'so', '||period||', '||return|', 'homer_simpson:', 'and', 'you', 'can', 'live', 'with', 'that', '||period||', '||return|', 'moe_szyslak:', 'yuh-huh', '||period||', '||return|', 'homer_simpson:', 'fine', '||period||', 'there', 'are', 'plenty', 'of', 'other', 'ways', 'for', 'me', 'to', 'alter', 'my', 'consciousness', '||period||', '||return|', 'carl_carlson:', 'you', "wouldn't", 'serve', 'homer', 'just', "'cause", 'he', "didn't", 'have', 'money', '||question_mark||', '||return|', 'lenny_leonard:', 'what', 'happened', 'to', 'you', '||comma||', 'moe', '||question_mark||', 'you', 'used', 'to', 'be', 'about', 'the', 'booze', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'yeah', '||comma||', 'i', 'guess', 'i', 'got', 'caught', 'up', 'in', 'all', 'the', 'glitz', 'and', 'glamour', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'moe', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', "i'm", 'so', 'sorry', '||period||', 'have', 'a', 'free', 'beer', '||period||', '||return|', 'homer_simpson:', 'oh', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'drunk', '||comma||', 'emotional', '||right_parentheses||', 'ah', '||comma||', 'i', "don't", 'care', 'about', 'the', 'color', 'of', 'your', 'skin', '||comma||', 'lenny', '||period||', "you're", 'my', 'friend', '||exclamation_mark||', '||left_parentheses||', 'cries', '||right_parentheses||', '||return|', 'lenny_leonard:', 'man', '||comma||', "i've", 'never', 'seen', 'anybody', 'get', 'loaded', 'so', 'fast', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'can', 'you', 'say', 'the', 'alphabet', 'backwards', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'beligerent', '||right_parentheses||', 'oh', '||comma||', "you'd", 'like', 'that', "wouldn't", 'you', '||comma||', 'ya', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', 'hey', '||comma||', "i'm", 'worried', '||period||', '||return|', 'homer_simpson:', "i've", 'had', 'just', 'about', 'enough', 'of', 'you', '||period||', '||return|', 'carl_carlson:', 'oh', 'yeah', '||question_mark||', '||exclamation_mark||', '||return|', 'carl_carlson:', 'ah', '||comma||', 'rats', '||period||', '||return|', 'homer_simpson:', "i'm", 'outta', 'here', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'we', "can't", 'let', 'our', 'friend', 'drive', 'like', 'this', '||period||', "i'm", 'liable', '||comma||', 'here', '||period||', '||return|', 'moe_szyslak:', 'get', 'his', 'keys', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'taunting', '||right_parentheses||', 'hey', '||comma||', 'you', 'want', 'my', 'keys', '||question_mark||', '||return|', 'homer_simpson:', 'get', "'em", 'now', '||comma||', 'jerks', '||period||', '||left_parentheses||', 'smug', 'laugh', '||right_parentheses||', '||return|', 'homer_simpson:', 'so', 'long', '||comma||', 'jerks', '||period||', '||left_parentheses||', 'smug', 'laugh', '||right_parentheses||', '||return|', 'homer_simpson:', 'running', 'after', 'the', 'car', '||comma||', 'huh', '||question_mark||', "let's", 'see', 'if', 'you', 'can', 'follow', 'this', '||period||', '||left_parentheses||', 'louder', 'accelerating', 'sound', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'snapping', '||right_parentheses||', 'oh', '||comma||', "that's", 'it', '||period||', '||return|', 'cab_driver:', 'where', 'to', '||comma||', 'pal', '||question_mark||', '||return|', 'homer_simpson:', "moe's", 'tavern', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'gentlemen', '||comma||', 'say', 'hello', 'to', "springfield's", 'newest', 'supermodel', '||exclamation_mark||', '||return|', 'lenny_leonard:', "you're", 'a', 'lucky', 'man', '||comma||', 'homer', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'this', 'is', 'the', 'longest', "i've", 'ever', 'gone', 'without', "lookin'", 'at', 'lenny', '||period||', '||return|', 'marge_simpson:', "don't", 'make', 'a', 'fuss', 'over', 'me', '||comma||', 'boys', '||period||', 'just', 'pour', 'me', 'a', 'beer', 'in', 'a', 'clean', 'glass', '||period||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'whoa', '||comma||', 'whoa', '||period||', 'you', 'said', 'no', 'fuss', '||period||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'i', "wouldn't", 'eat', 'them', 'peanuts', '||period||', "they're", 'uh', '||comma||', "they're", 'spit-backs', '||period||', '||return|', '||return|', '||return|', 'marge_simpson:', 'we', 'are', 'not', 'staying', 'at', "moe's", '||period||', "maggie's", 'already', 'drunk', 'on', 'the', 'fumes', '||period||', 'and', "she's", 'a', 'mean', 'drunk', '||period||', '||return|', 'moe_szyslak:', 'come', 'on', '||comma||', 'guys', '||comma||', 'you', 'gotta', 'stay', '||period||', "tonight's", 'the', 'big', 'cock', 'fight', '||period||', 'ah', '||dash||', '||left_parentheses||', 'selling', '||right_parentheses||', 'we', 'can', 'eat', 'the', 'loser', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'scoffs', '||right_parentheses||', 'who', 'wants', 'to', 'eat', 'a', 'loser', '||question_mark||', '||return|', 'lisa_simpson:', 'dad', '||comma||', 'we', 'have', 'to', 'find', 'a', 'place', 'soon', '||period||', 'i', 'really', 'have', 'to', 'go', 'to', 'the', 'bathroom', 'and', "i'm", 'out', 'of', 'tokens', '||period||', '||return|', 'barney_gumble:', 'you', 'know', '||comma||', 'i', 'heard', 'of', 'a', 'new', 'reality', 'show', 'where', 'they', 'let', 'you', 'live', 'in', 'a', 'home', 'for', 'free', '||period||', '||return|', 'carl_carlson:', 'oh', 'yeah', '||comma||', 'the', 'gimmick', 'is', '||comma||', "it's", 'a', 'house', 'from', '1895', '||period||', 'and', 'you', 'gotta', 'do', 'everything', 'like', 'they', 'did', 'back', 'then', '||period||', '||return|', 'homer_simpson:', '1895', '||comma||', 'forget', 'it', '||period||', "we'd", 'be', 'too', 'late', 'to', 'save', 'lincoln', 'and', 'too', 'early', 'to', 'save', 'kennedy', '||period||', '||return|', 'moe_szyslak:', 'you', 'could', 'save', 'mckinley', '||period||', '||return|', 'homer_simpson:', "it's", 'not', 'a', 'time', 'machine', '||comma||', 'moe', '||period||', '||return|', '||return|', '||return|', 'carl_carlson:', 'say', '||comma||', 'bob', '||comma||', 'how', 'come', 'you', 'were', 'never', 'able', 'to', 'kill', 'bart', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'a', 'kid', 'should', 'be', 'real', 'simple', 'to', 'kill', '||period||', '||return|', 'lenny_leonard:', "i'd", 'just', 'come', 'up', 'behind', 'him', 'with', 'a', 'knife', 'and', 'slit', 'his', 'throat', 'real', 'quick-like', '||period||', '||return|', 'homer_simpson:', 'guys', '||comma||', 'bob', 'is', 'my', 'only', 'hope', '||period||', 'back', 'off', 'and', 'give', 'him', 'some', 'room', 'to', 'think', '||period||', '||return|', 'sideshow_bob:', 'homer', '||comma||', 'if', 'i', 'could', 'write', 'haikus', 'while', 'skinheads', 'beat', 'me', 'with', 'soap', '||comma||', 'i', 'can', 'concentrate', 'anywhere', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'gee', 'homer', '||comma||', 'you', 'sure', 'look', 'sad', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'at', 'least', 'you', "ain't", 'aging', 'six', 'years', 'for', 'every', 'one', "'cause", 'of', 'your', 'cow', 'heart', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'my', 'daughter', 'hates', 'me', 'because', 'i', "don't", 'know', 'anything', 'about', 'her', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'well', '||comma||', 'whenever', 'i', 'gotta', 'know', 'something', 'about', 'a', 'broad', '||comma||', 'i', 'use', 'this', 'guy', '||period||', '||return|', 'moe_szyslak:', 'this', 'detective', 'is', 'unbelievable', '||period||', 'he', 'can', 'learn', 'more', 'about', 'a', 'chick', 'by', 'digging', 'through', 'one', 'garbage', 'can', 'than', 'you', 'could', 'from', 'years', 'of', 'intimacy', '||period||', '||return|', 'carl_carlson:', 'he', 'found', 'out', 'who', 'was', 'cobbling', 'shoes', 'for', 'me', 'at', 'night', '||period||', 'turns', 'out', 'i', 'have', 'severe', 'schizophrenia', '||period||', '||return|', 'homer_simpson:', 'well', '||period||', '||period||', '||period||', 'if', 'hiring', 'this', 'guy', 'will', 'make', 'lisa', 'like', 'me', 'again', '||comma||', 'then', "i'll", 'do', 'it', '||exclamation_mark||', 'can', 'i', 'get', 'this', 'beer', 'to', 'go', '||question_mark||', '||return|', 'moe_szyslak:', 'sure', '||period||', 'maybe', 'some', 'day', "i'll", 'turn', 'into', 'a', 'swan', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sigh', '||right_parentheses||', 'oh', '||comma||', 'god', '||period||', '||return|', '||return|', '||return|', 'marge_simpson:', 'so', 'then', 'i', 'pop', 'my', 'delts', '||comma||', 'clench', 'and', 'bam', '||exclamation_mark||', 'not', 'a', 'dry', 'eye', 'in', 'the', 'house', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', "i'm", 'so', 'proud', 'of', 'you', '||comma||', 'honey', '||period||', 'you', 'bulked', 'up', '||comma||', 'but', 'managed', 'to', 'keep', 'your', 'femininity', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'fierce', '||right_parentheses||', 'and', "that's", 'why', 'i', "didn't", 'win', '||exclamation_mark||', '||return|', 'homer_simpson:', 'sorry', '||comma||', 'sir', '||comma||', 'sorry', '||period||', '||return|', 'marge_simpson:', 'starting', 'tomorrow', '||comma||', "i'm", 'gonna', 'up', 'my', 'glyco-load', '||comma||', 'use', 'a', 'denser', 'ripping', 'gel', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'frightened', '||right_parentheses||', 'denser', '||question_mark||', '||exclamation_mark||', '||return|', 'marge_simpson:', 'damn', 'straight', '||comma||', 'i', "didn't", 'sacrifice', 'my', 'period', 'for', 'second', 'place', '||exclamation_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'awkward', 'chuckle', '||right_parentheses||', 'i', 'hear', 'that', '||period||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'listen', 'marge', '||comma||', 'how', 'can', 'i', 'put', 'this', 'delicately', '||question_mark||', 'i', "don't", 'got', 'enough', 'booze', 'in', 'this', 'place', 'to', 'make', 'you', 'look', 'good', '||period||', '||return|', 'marge_simpson:', 'maybe', 'death', 'will', 'stop', 'your', 'yammering', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'marge', '||comma||', 'easy', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'everyone', 'pile', 'on', "homer's", 'wife', '||exclamation_mark||', '||return|', 'disco_stu:', '||left_parentheses||', 'inside', 'jukebox', '||right_parentheses||', 'disco', 'stu', 'should', 'have', 'disco', 'ducked', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'i', 'gave', 'mr', '||period||', 'burns', 'the', 'best', 'years', 'of', 'my', 'life', '||period||', 'and', 'how', 'much', 'respect', 'does', 'he', 'give', 'me', '||question_mark||', '||return|', 'lenny_leonard:', 'slim', 'to', 'bupkus', '||period||', '||return|', 'moe_szyslak:', "who's", 'this', 'burns', 'guy', '||question_mark||', 'somebody', 'you', 'work', 'with', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'perplexed', '||right_parentheses||', 'moe', '||comma||', "we've", 'been', 'complaining', 'about', 'him', 'every', 'night', 'for', 'eight', 'years', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'if', 'this', "guy's", "ridin'", 'your', 'rump', '||comma||', 'why', "don't", 'you', 'slap', 'him', 'some', 'payback', '||question_mark||', '||return|', 'homer_simpson:', 'revenge', '||question_mark||', 'on', 'mr', '||period||', 'burns', '||question_mark||', '||return|', 'lenny_leonard:', 'yeah', '||comma||', 'send', 'him', 'magazine', 'subscriptions', 'he', "don't", 'want', '||period||', '||return|', 'moe_szyslak:', 'or', 'give', 'him', 'some', 'face', 'time', 'with', 'sweet', 'lady', 'brick', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', '||return|', 'homer_simpson:', 'no', '||comma||', 'i', 'think', 'this', 'calls', 'for', 'something', 'a', 'little', 'more', 'cerebral', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'okay', 'you', 'filthy', 'booze-bags', '||comma||', "it's", 'two', 'a', '||period||', 'm', '||period||', 'so', 'uh', '||comma||', "who's", 'the', 'designated', 'driver', '||question_mark||', '||return|', 'lenny_leonard:', 'it', 'was', 'andy', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'victorious', 'chuckle', '||right_parentheses||', 'no', "one's", 'ever', 'won', "moe's", '||quotation_mark||', 'drink', 'a', 'gallon', 'of', 'gin', 'challenge', '||period||', '||quotation_mark||', 'and', 'no', 'one', 'ever', 'will', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'life', 'is', 'good', '||period||', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'what', 'happened', '||question_mark||', "it's", 'bright', 'in', 'the', 'middle', 'of', 'the', 'night', '||period||', '||return|', 'carl_carlson:', 'you', 'know', 'what', 'this', 'reminds', 'me', 'of', '||question_mark||', 'my', 'icelandic', 'boyhood', '||period||', '||return|', 'homer_simpson:', "it's", 'this', 'new', 'anti-crime', 'dealie', '||period||', 'the', 'mayor', 'turned', 'the', 'streetlights', 'way', 'up', '||period||', 'my', 'daughter', 'lisa', 'feels', 'really', 'strongly', 'about', 'it', '||period||', '||return|', 'lenny_leonard:', 'pro', 'or', 'con', '||question_mark||', '||return|', 'homer_simpson:', "i'unno", '||period||', 'what', 'am', 'i', '||comma||', 'superdad', '||question_mark||', '||return|', '||return|', '||return|', 'young_moe:', 'welcome', 'to', "moe's", '||period||', 'home', 'of', 'the', 'finest', 'bar', 'crystal', 'in', 'springfield', '||period||', '||return|', 'young_moe:', 'i', "shouldn't", 'have', 'cheaped', 'out', 'on', 'the', 'shelf', '||period||', '||return|', 'homer_simpson:', 'i', "can't", 'believe', 'how', 'young', 'we', 'looked', '||period||', '||period||', '||period||', 'in', 'my', 'memory', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', "there's", 'writing', 'on', 'the', 'back', 'of', 'this', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'reading', '||right_parentheses||', '||quotation_mark||', 'dear', 'homer', '||comma||', 'i', "can't", 'believe', "you're", 'making', 'this', 'the', 'worst', 'night', 'of', 'my', 'life', '||period||', '||quotation_mark||', '||left_parentheses||', 'very', 'puzzled', 'noise', '||right_parentheses||', '||return|', 'paramedic:', 'young', 'man', '||comma||', "you've", 'ingested', 'a', 'dangerous', 'amount', 'of', 'alcohol', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'defiantly', '||right_parentheses||', 'the', 'only', 'dangerous', 'amount', 'is', 'none', '||exclamation_mark||', '||return|', 'homer_simpson:', "let's", 'go', 'to', 'ihop', '||exclamation_mark||', "i'm", "drivin'", '||period||', '||return|', 'homer_simpson:', 'okay', '||comma||', 'burger', 'king', '||exclamation_mark||', 'whatever', '||exclamation_mark||', "c'mon", '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'absentmindedly', 'going', 'through', 'box', '||right_parentheses||', 'why', 'did', 'she', 'stay', 'with', 'me', 'if', 'she', 'hated', 'me', 'so', 'much', '||question_mark||', 'hey', '||comma||', 'two', 'days', 'later', 'she', 'had', 'a', "doctor's", 'appointment', '||period||', '||return|', 'young_marge:', 'you', 'leave', 'me', 'sitting', 'here', 'all', 'alone', '||period||', '||period||', '||period||', '||return|', 'young_marge:', '||left_parentheses||', 'writing', '||right_parentheses||', '||period||', '||period||', '||period||', 'while', 'you', 'play', 'video', 'games', 'with', 'your', 'neanderthal', 'friends', '||period||', '||return|', 'young_marge:', 'why', "don't", 'you', 'just', 'stop', 'playing', '||question_mark||', '||return|', 'young_marge:', 'homer', '||comma||', 'i', 'really', "don't", 'want', 'to', 'feed', 'you', '||period||', '||return|', 'young_marge:', '||left_parentheses||', 'upset', '||right_parentheses||', 'video', 'games', 'and', 'too', 'much', 'beer', '||period||', 'you', 'sure', 'know', 'how', 'to', 'show', 'a', 'girl', 'a', 'good', 'time', '||period||', '||return|', 'young_marge:', 'tonight', 'i', 'learned', 'the', 'two', 'of', 'us', "can't", 'work', '||period||', '||return|', 'marge_simpson:', 'james', 'taylor', '||period||', 'homie', '||comma||', 'remember', 'that', 'song', 'we', 'used', 'to', 'sing', '||question_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'sings', '||right_parentheses||', 'mock', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'flatly', '||right_parentheses||', 'yeah', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'sings', '||right_parentheses||', 'ing', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'flatly', '||right_parentheses||', 'yeah', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'sings', '||right_parentheses||', 'bird', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'flatly', '||right_parentheses||', 'whatever', '||period||', '||return|', 'marge_simpson:', 'homie', '||comma||', "what's", 'wrong', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'tentative', '||right_parentheses||', 'marge', '||period||', '||period||', '||period||', 'did', 'i', 'ruin', 'your', 'life', '||question_mark||', '||return|', 'marge_simpson:', 'oh', '||comma||', 'is', 'this', 'about', 'that', 'billboard', 'my', 'sisters', 'put', 'up', '||question_mark||', '||return|', 'homer_simpson:', 'no', '||comma||', 'the', 'voters', 'will', 'decide', 'that', 'in', 'november', '||period||', 'i', 'was', 'talking', 'about', 'this', '||period||', '||return|', 'marge_simpson:', 'huh', '||question_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'busted', '||right_parentheses||', 'oh', 'my', 'god', '||comma||', 'i', 'forgot', 'all', 'about', 'this', '||period||', 'where', 'did', 'you', 'find', 'it', '||question_mark||', '||return|', 'homer_simpson:', 'more', 'like', '||comma||', 'where', "didn't", 'i', 'find', 'it', '||period||', 'it', 'was', 'practically', 'everywhere', '||period||', '||return|', 'marge_simpson:', 'homer', '||comma||', "i'm", 'sorry', 'you', 'saw', 'that', '||comma||', 'but', 'i', 'was', 'very', 'upset', 'that', 'night', '||period||', '||return|', 'homer_simpson:', 'quit', 'changing', 'the', 'subject', '||period||', 'how', 'do', 'you', 'feel', 'about', 'me', 'right', 'now', '||question_mark||', '||return|', 'marge_simpson:', 'well', '||comma||', 'i', 'love', 'you', '||comma||', 'of', 'course', '||period||', 'but', 'a', 'lot', 'of', 'things', 'you', 'do', 'still', 'drive', 'me', 'crazy', '||period||', '||return|', 'homer_simpson:', 'so', 'you', 'mean', 'our', 'whole', 'marriage', "you've", 'just', 'been', 'resenting', 'me', 'behind', 'my', 'back', '||question_mark||', '||return|', 'marge_simpson:', 'a', 'little', 'bit', '||comma||', 'yeah', '||period||', '||return|', 'homer_simpson:', 'fine', '||period||', "i'll", 'go', 'sleep', 'with', 'someone', 'who', 'does', 'appreciate', 'me', '||period||', '||return|', 'homer_simpson:', 'you', 'know', '||comma||', 'moe', '||comma||', 'i', 'was', 'just', 'thinking', '||period||', 'my', 'problems', 'with', 'marge', 'started', 'because', 'i', 'drink', 'too', 'much', '||period||', 'and', 'then', 'tonight', 'alcohol', 'only', 'made', 'things', 'worse', '||period||', 'maybe', 'all', 'of', 'my', 'problems', 'are', 'actually', 'caused', 'by', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'take', 'your', 'medicine', '||comma||', 'ya', 'lush', 'ya', '||period||', '||return|', '||return|', '||return|', 'carl_carlson:', '||left_parentheses||', 'shout', '||right_parentheses||', 'f-l-a-n-r-d-s', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sings', '||right_parentheses||', "he's", 'the', 'man', 'that', 'i', 'hate', 'best', '/', "i'd", 'like', 'to', 'see', 'his', 'house', 'go', 'up', 'in', 'flame', '||exclamation_mark||', '||return|', 'david_byrne:', 'excuse', 'me', '||comma||', "i've", 'been', 'researching', 'indigenous', 'folk', 'music', 'of', 'springfield', '||comma||', 'and', 'i', "couldn't", 'help', 'overhearing', 'your', 'delightfully', 'cruel', 'hate', 'song', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'amazed', '||right_parentheses||', 'david', 'byrne', '||question_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'amazed', '||right_parentheses||', 'singer', '||comma||', 'artist', '||comma||', 'composer', '||comma||', 'director', '||comma||', 'talking', 'head', '||period||', '||period||', '||period||', '||return|', 'david_byrne:', 'and', '||comma||', 'i', 'used', 'to', 'wrestle', 'under', 'the', 'name', '||quotation_mark||', 'el', 'diablo', '||period||', '||quotation_mark||', '||return|', 'lenny_leonard:', 'i', 'thought', 'that', 'was', 'philip', 'glass', '||period||', '||return|', 'david_byrne:', 'yeah', '||comma||', 'he', 'wishes', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'mister', '||question_mark||', 'if', 'you', 'like', 'my', 'song', 'so', 'much', '||comma||', 'would', 'you', 'like', 'to', 'buy', 'a', 'tape', '||question_mark||', '||left_parentheses||', 'selling', '||right_parentheses||', "it's", 'already', 'rewound', '||period||', '||return|', 'david_byrne:', 'no', 'thanks', '||period||', 'but', 'i', 'would', 'like', 'to', 'sing', 'it', 'with', 'you', 'and', 'produce', 'it', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'rolls', 'eyes', '||comma||', 'annoyed', '||right_parentheses||', 'fine', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'our', 'little', 'hero', 'sure', 'likes', 'kahlua', 'and', 'cream', '||period||', '||return|', 'homer_simpson:', 'quit', 'following', 'me', '||comma||', 'you', 'coward', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'you', 'heard', "'im", '||comma||', 'fleabag', '||period||', 'get', 'outta', 'my', 'bar', '||comma||', "you're", 'unsanitary', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'how', 'precious', '||period||', 'the', "cat's", "sittin'", 'in', 'my', 'dinner', '||period||', '||return|', 'moe_szyslak:', 'no', '||comma||', 'no', '||comma||', "don't", 'get', 'up', '||comma||', 'sweetheart', '||period||', "i'll", 'just', '||comma||', "i'll", 'just', 'pick', 'around', 'you', '||period||', 'there', 'we', 'go', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'i', "don't", 'think', "he's", 'here', '||period||', '||period||', '||period||', 'hang', 'on', '||comma||', 'let', 'me', 'check', '||period||', '||return|', 'moe_szyslak:', 'nope', '||period||', '||left_parentheses||', 'short', 'beat', '||right_parentheses||', 'whatcha', "wearin'", '||question_mark||', '||return|', 'homer_simpson:', 'i', 'did', 'it', '||period||', 'i', 'walked', 'all', 'the', 'way', 'to', "moe's", 'from', 'my', 'house', '||period||', '||return|', 'bart_simpson:', 'way', 'to', 'go', '||comma||', 'dad', '||exclamation_mark||', '||return|', 'homer_simpson:', 'you', 'know', '||comma||', 'i', 'feel', 'pretty', 'good', '||period||', 'maybe', 'i', 'should', 'just', 'keep', 'walking', 'instead', 'of', 'going', 'into', 'a', 'dark', '||comma||', 'dreary', 'bar', '||period||', '||return|', 'moe_szyslak:', 'get', 'in', 'here', '||comma||', 'boozy', '||period||', "you're", 'late', 'for', 'your', 'drunkening', '||period||', '||return|', 'homer_simpson:', 'no', '||period||', 'from', 'now', 'on', '||comma||', 'walking', 'is', 'my', 'beer', '||period||', 'and', 'feeling', 'good', 'is', 'my', 'hangover', '||period||', '||return|', 'moe_szyslak:', 'huh', '||period||', 'hey', 'maybe', 'this', 'is', 'a', 'sign', '||period||', 'maybe', "it's", 'time', 'for', 'me', 'to', 'get', 'out', 'of', 'the', 'alcohol', 'business', '||period||', 'give', 'barber', 'college', 'another', 'try', '||dash||', 'and', 'this', 'time', 'i', "won't", 'join', 'a', 'frat', '||period||', '||return|', 'moe_szyslak:', 'who', 'the', 'hell', 'am', 'i', "talkin'", 'to', '||question_mark||', '||return|', 'lisa_simpson:', 'you', 'know', 'what', 'mom', 'really', 'loves', '||question_mark||', 'julienne', 'potatoes', '||period||', 'and', 'for', 'dessert', '||comma||', 'peach', 'crumble', '||period||', '||return|', 'moe_szyslak:', 'you', 'wanna', 'know', 'how', 'to', 'make', 'a', 'peach', 'crumble', '||question_mark||', 'kick', 'it', 'in', 'the', 'groin', '||period||', 'ha', '||comma||', 'anyway', '||comma||', "what's", "goin'", 'on', '||question_mark||', '||return|', 'homer_simpson:', "i'm", 'gonna', 'treat', 'marge', 'to', 'a', 'romantic', 'dinner', '||comma||', 'to', 'make', 'up', 'for', 'all', 'my', 'shortcomings', '||period||', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'homer', '||period||', 'if', "you're", "havin'", 'a', 'banquet', 'for', 'marge', '||comma||', "i'd", 'like', 'to', 'help', '||period||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'me', 'too', '||period||', 'i', 'could', 'whip', 'up', 'my', 'famous', 'poulet', 'au', 'vin', 'avec', 'champignons', 'ã', 'la', 'carl', '||period||', '||left_parentheses||', 'he', 'kisses', 'his', 'hand', '||right_parentheses||', '||return|', 'homer_simpson:', 'you', 'can', 'bring', 'a', 'bag', 'of', 'ice', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', "that's", 'odd', '||period||', "it's", 'eleven', 'fifteen', 'in', 'the', 'morning', 'and', 'the', 'bar', 'is', 'empty', '||period||', '||return|', 'kent_brockman:', "i'm", 'live', 'at', 'springfield', 'botanical', 'gardens', '||comma||', 'where', "we're", 'minutes', 'away', 'from', 'the', 'blossoming', 'of', 'the', 'sumatran', 'century', 'flower', '||comma||', 'which', 'only', 'occurs', 'once', 'every', 'hundred', 'years', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'those', 'are', 'my', 'customers-slash-only', 'friends', '||exclamation_mark||', 'where', 'are', 'they', 'getting', 'their', 'beer', '||question_mark||', '||return|', 'moe_szyslak:', 'a', 'cooler', '||exclamation_mark||', "i've", 'been', 'replaced', 'by', 'a', 'cooler', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', 'who', 'could', 'blame', "'em", '||question_mark||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'no', 'point', 'in', "mopin'", 'around', '||period||', 'i', 'might', 'as', 'well', 'join', "'em", 'and', 'have', 'a', 'jolly', 'old', 'time', '||period||', '||return|', 'moe_szyslak:', 'better', 'set', 'the', 'alarm', '||period||', '||return|', 'lenny_leonard:', 'you', 'still', 'got', 'us', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'you', 'guys', 'mind', 'if', 'i', 'uh', '||period||', '||period||', '||period||', 'kiss', 'your', 'tummies', '||question_mark||', '||return|', 'moe_szyslak:', 'boy', '||comma||', "i'm", 'like', 'a', 'mess', 'here', '||period||', 'i', 'feel', 'so', 'lonely', 'without', 'that', 'kid', '||period||', '||return|', 'elves:', '||left_parentheses||', 'sing', '||right_parentheses||', 'toys', 'and', 'cakes', 'and', 'pets', 'and', 'brotherhood', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sobs', '||right_parentheses||', "it's", 'our', 'song', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sigh', '||right_parentheses||', 'if', 'i', 'knew', 'this', 'would', 'take', 'so', 'long', '||comma||', "i'd'a", 'put', 'on', 'the', 'tv', '||period||', '||return|', 'delivery_boy:', 'pizza', '||exclamation_mark||', '||return|', 'moe_szyslak:', "y'money's", 'on', 'the', 'counter', '||period||', 'no', 'tip', '||period||', '||return|', 'delivery_boy:', 'you', 'miserable', 'bastard', '||period||', '||return|', 'moe_szyslak:', "that's", 'why', "i'm", 'up', 'here', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'proudly', '||right_parentheses||', 'hey', 'guys', '||comma||', 'i', 'brought', 'my', 'mom', '||period||', '||return|', 'mona_simpson:', 'lenny', 'leonard', '||question_mark||', 'i', "haven't", 'seen', 'you', 'since', 'you', 'were', 'this', 'high', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'competitive', '||right_parentheses||', 'i', 'can', 'jump', 'off', 'the', 'high', 'dive', '||exclamation_mark||', '||return|', 'mona_simpson:', '||left_parentheses||', 'warmly', '||right_parentheses||', 'carl', 'carlson', '||comma||', 'i', 'remember', 'when', 'you', '||comma||', 'lenny', 'and', 'stevie', 'macgregor', 'were', 'like', 'the', 'three', 'musketeers', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'sadly', '||right_parentheses||', 'yeah', '||comma||', 'poor', 'stevie', '||period||', 'they', 'never', 'found', 'his', 'head', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'accusing', '||right_parentheses||', 'mrs', '||period||', 'simpson', '||comma||', 'when', 'you', 'took', 'off', '||comma||', 'you', 'left', 'a', 'hole', 'in', "homer's", 'heart', 'that', "he's", 'been', 'trying', 'to', 'fill', 'with', 'alcohol', 'for', 'twenty', 'years', '||period||', '||period||', '||period||', '||left_parentheses||', 'then', 'warmly', '||right_parentheses||', 'god', 'bless', 'ya', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'to', 'old', 'man', 'burns', '||comma||', "who's", 'paying', 'us', 'to', 'drink', 'because', "we're", 'embarrassing', '||exclamation_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'toasting', '||right_parentheses||', 'we', 'suck', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'woozy', '||right_parentheses||', 'a', 'lot', 'of', 'that', 'went', 'in', 'my', 'lungs', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'attention', 'american', 'bar', 'devils:', "it's", 'our', 'anniversary', '||exclamation_mark||', 'free', 'drinks', 'for', 'everyone', '||exclamation_mark||', '||return|', 'homer_simpson:', "that's", 'great', '||period||', "i'm", 'honored', 'to', 'drink', 'to', 'apu', 'and', '||comma||', 'uh', '||period||', '||period||', '||period||', 'apulina', '||period||', '||return|', 'homer_simpson:', 'you', 'know', '||comma||', 'marge', 'and', 'i', 'have', 'an', 'anniversary', 'coming', 'up', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'i', 'have', 'given', 'manjula', 'many', 'gifts', '||comma||', 'including', 'a', 'bouquet', 'of', 'flowers', '||comma||', 'diamond', 'earrings', '||comma||', 'and', "we're", 'going', 'to', 'see', 'paris', '||period||', '||period||', '||period||', 'hilton', '||period||', 'in', 'paris', '||period||', '||period||', '||period||', 'texas', '||period||', 'on', 'our', 'way', 'to', 'paris', '||comma||', 'france', '||period||', '||return|', 'manjula_nahasapeemapetilon:', 'what', 'did', 'you', 'plan', 'to', 'get', 'your', 'wife', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sheepish', '||right_parentheses||', 'these', 'charity', 'address', 'labels', 'that', 'came', 'in', 'the', 'mail', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'drunk', '||right_parentheses||', 'i', "don't", 'wanna', 'go', 'home', '||exclamation_mark||', "i'm", 'not', 'done', 'talking', 'to', 'me', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'just', 'get', 'out', 'this', 'door', '||comma||', 'rummy', '||comma||', 'and', "you're", 'the', "city's", 'problem', '||period||', 'if', 'you', 'make', 'it', 'through', 'the', 'night', '||comma||', "you're", 'welcome', 'back', '||period||', '||return|', 'homer_simpson:', 'home', 'sweet', 'home', '||period||', 'now', 'to', 'watch', 'some', 'tv', '||period||', '||return|', 'society_matron:', 'oh', '||comma||', 'you', 'poor', 'soul', '||period||', 'you', 'think', 'that', 'rat', 'is', 'a', 'remote', '||period||', '||return|', 'homer_simpson:', 'five', 'bucks', '||question_mark||', 'i', "don't", 'need', 'your', 'sharity', '||exclamation_mark||', "i'll", 'dance', 'for', 'my', 'money', '||exclamation_mark||', '||return|', 'woman_bystander:', 'oh', 'you', 'poor', 'man', '||comma||', 'you', 'think', 'you', 'can', 'dance', '||period||', '||return|', 'woman_bystander:', 'i', "didn't", 'say', 'stop', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'guys', '||comma||', "i'd", 'like', 'you', 'to', 'meet', 'artie', 'ziff', '||period||', '||return|', 'aristotle:', 'hello', '||comma||', 'handsome', '||exclamation_mark||', '||return|', 'artie_ziff:', 'hello', '||period||', '||period||', '||period||', '||left_parentheses||', 'under', 'breath', '||right_parentheses||', 'losers', '||period||', '||return|', 'lenny_leonard:', 'okay', '||comma||', 'read', "'em", 'and', 'weep', '||period||', '||return|', 'artie_ziff:', 'i', "don't", 'know', 'why', "i'm", 'losing', '||period||', 'maybe', 'i', 'have', 'some', 'kind', 'of', '||quotation_mark||', 'tell', '||period||', '||quotation_mark||', '||left_parentheses||', 'looks', 'at', 'cards', '||right_parentheses||', 'hot', 'mamma', '||comma||', "i'm", "livin'", 'in', 'flush-town', '||comma||', '||left_parentheses||', 'jumps', 'on', 'table', '||right_parentheses||', 'population', 'artie', '||exclamation_mark||', '||return|', 'artie_ziff:', '||left_parentheses||', 'nonchalant', '||right_parentheses||', 'i', 'guess', "i'm", 'in', 'for', 'fifty', 'cents', '||period||', '||return|', 'barney_gumble:', 'i', 'fold', '||period||', '/', 'me', 'too', '||period||', '/', "i'm", 'out', '||period||', '/', "i'm", 'done', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'confident', '||right_parentheses||', "i'll", 'see', 'your', 'fifty', 'cents', 'and', 'raise', 'you', 'one', 'dollar', '||period||', '||return|', 'artie_ziff:', 'well', '||comma||', "i'm", 'out', 'of', 'cash', '||period||', 'but', 'would', 'you', 'accept', 'ninety-eight', 'per', 'cent', 'of', 'the', 'outstanding', 'shares', 'of', 'ziffcorp', 'stock', '||question_mark||', '||return|', 'homer_simpson:', 'and', 'the', 'peanuts', 'in', 'your', 'mouth', '||period||', '||return|', 'artie_ziff:', 'very', 'well', '||period||', '||return|', 'artie_ziff:', '||left_parentheses||', 'loud', '||right_parentheses||', 'achem', '||exclamation_mark||', '||return|', 'homer_simpson:', 'all', 'of', 'them', '||period||', '||return|', 'artie_ziff:', '||left_parentheses||', 'not', 'so', 'loud', '||right_parentheses||', 'achem', '||exclamation_mark||', '||return|', 'artie_ziff:', 'flush', '||period||', 'what', 'have', 'you', 'got', '||question_mark||', '||return|', 'homer_simpson:', 'four', 'jacks', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'check', 'it', 'out', '||exclamation_mark||', 'i', 'own', 'a', 'multi-national', 'corporation', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'i', 'always', 'knew', 'some', 'day', "i'd", 'be', 'a', 'c', '||period||', 'o', '||period||', 'd', '||period||', '||return|', 'sec_agent_#1:', 'freeze', '||exclamation_mark||', 'securities', 'and', 'exchange', 'commission', '||exclamation_mark||', '||return|', 'sec_agent_#2:', 'artie', 'ziff', '||comma||', "you're", 'wanted', 'for', 'stock', 'manipulation', 'and', 'securities', 'fraud', '||period||', '||return|', 'sec_agent_#1:', '||left_parentheses||', 'macho', '||right_parentheses||', "it's", 'scum', 'like', 'you', 'that', 'undermine', 'investor', 'confidence', '||period||', '||return|', 'homer_simpson:', 'investor', 'confidence', '||question_mark||', 'perhaps', 'this', 'affects', 'me', '||dash||', 'i', 'own', 'two', 'hundred', 'and', 'thirty', 'million', 'shares', 'of', 'ziffcorp', 'stock', '||period||', '||return|', 'sec_agent_#1:', "you're", 'the', 'majority', 'shareholder', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'upbeat', '||right_parentheses||', 'i', 'sure', 'am', '||dash||', 'with', 'all', 'the', 'inherent', 'legal', 'liability', '||period||', '||return|', 'sec_agent_#2:', "you're", 'under', 'arrest', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'wait', 'a', 'minute', '||period||', 'how', 'can', 'you', 'arrest', 'homer', '||question_mark||', '||left_parentheses||', 'points', 'to', 'artie', '||right_parentheses||', 'this', "guy's", 'the', 'one', 'what', 'done', 'the', 'thing', 'that', 'why', "you're", 'here', 'for', '||period||', "i'm", "talkin'", 'malfeasance', 'here', '||period||', '||return|', 'artie_ziff:', '||left_parentheses||', 'sincere', '||right_parentheses||', 'all', 'right', '||comma||', 'i', 'admit', 'it', '||period||', 'i', 'did', 'run', 'ziffcorp', 'into', 'the', 'ground', '||period||', '||left_parentheses||', 'puts', 'arm', 'around', 'homer', '||right_parentheses||', 'then', 'this', 'man', 'took', 'me', 'into', 'his', 'home', 'when', 'no', 'one', 'else', 'would', '||period||', 'and', 'now', '||comma||', 'as', 'a', 'result', 'of', 'his', 'brilliant', 'card', 'playing', '||left_parentheses||', 'quickly', '||right_parentheses||', "he's", 'the', 'one', 'you', 'want', '||exclamation_mark||', 'tape', 'his', 'mouth', 'so', 'he', "can't", 'deny', 'it', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'distraught', '||right_parentheses||', "don't", 'tell', 'my', 'kids', "i'm", 'going', 'to', 'jail', '||exclamation_mark||', 'tell', 'them', "i've", 'joined', 'the', 'blue', 'man', 'group', '||exclamation_mark||', "i'm", 'the', 'fat', 'one', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'well', 'look', 'who', 'showed', 'his', 'face', '||period||', 'the', 'louse', 'who', 'sold', 'out', 'his', 'only', 'friend', '||period||', "you've", 'got', 'a', 'lot', 'of', 'nerve', "comin'", 'here', '||period||', '||period||', '||period||', '||left_parentheses||', 'friendly', '||right_parentheses||', 'but', 'since', 'you', 'did', '||comma||', "what'll", 'it', 'be', '||question_mark||', 'first', "one's", 'on', 'the', 'house', '||period||', '||return|', 'patty_bouvier:', 'is', 'this', 'dump', 'open', '||question_mark||', 'we', 'were', 'jogging', 'and', 'we', 'ran', 'out', 'of', 'cigarettes', '||period||', '||return|', 'artie_ziff:', 'pardon', 'me', 'for', 'intruding', '||comma||', 'but', 'i', 'believe', 'teenage', 'girls', "shouldn't", 'smoke', '||period||', '||return|', 'selma_bouvier:', 'are', 'you', 'still', "livin'", 'with', 'marge', '||question_mark||', '||return|', 'artie_ziff:', 'no', '||period||', 'she', 'kicked', 'me', 'out', 'for', 'sending', 'her', 'husband', 'to', 'prison', '||period||', '||return|', 'selma_bouvier:', 'you', 'put', 'homer', 'in', 'jail', '||question_mark||', '||left_parentheses||', 'swooning', '||right_parentheses||', 'the', 'hair', 'is', 'standing', 'up', 'on', 'the', 'back', 'of', 'my', 'knees', '||period||', '||return|', 'patty_bouvier:', 'keep', 'your', 'odor', 'eaters', 'on', '||comma||', 'selma', '||period||', "i've", 'seen', 'you', 'get', 'hurt', 'too', 'many', 'times', '||period||', '||return|', 'selma_bouvier:', "i'm", 'not', 'gonna', 'let', 'him', 'into', 'my', 'heart', '||comma||', 'or', 'my', 'bedroom', '||period||', 'just', 'ten', 'minutes', 'on', 'the', 'beanbag', '||period||', "c'mon", '||comma||', 'short', 'round', '||period||', "we're", "goin'", 'back', 'to', 'my', 'temple', 'of', 'doom', '||period||', '||return|', 'artie_ziff:', 'be', 'gentle', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'hopeful', '||right_parentheses||', 'you', 'know', '||comma||', 'they', 'say', 'that', 'the', 'love', 'of', 'a', 'good', 'woman', 'can', 'save', 'any', 'man', '||period||', '||return|', 'patty_bouvier:', 'except', 'you', '||comma||', 'freak', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'if', 'you', 'change', 'your', 'mind', '||comma||', 'you', 'know', 'where', 'i', 'am', '||period||', '||return|', 'patty_bouvier:', 'in', 'my', 'nightmares', '||period||', '||return|', 'moe_szyslak:', "i'm", 'gonna', 'stop', 'now', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'two', 'glasses', 'of', 'wine', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'wine', '||question_mark||', 'jeez', '||period||', 'no', 'one', 'ever', 'orders', 'that', '||period||', 'umm', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'all', 'i', 'got', 'is', 'this', 'old', 'stuff', 'here', '||period||', '||left_parentheses||', 'reading', 'label', '||comma||', 'contemptuous', '||right_parentheses||', 'chateau', 'latour', '||dash||', 'eighteen', 'eighty-six', '||question_mark||', 'oh', '||comma||', 'i', 'should', 'just', 'throw', 'this', 'out', '||period||', '||return|', 'marge_simpson:', 'no', '||comma||', "it'll", 'have', 'to', 'do', '||period||', '||return|', 'moe_szyslak:', "that'll", 'be', 'four', 'bucks', '||period||', '||return|', 'moe_szyslak:', 'now', '||comma||', 'in', 'a', 'step', 'i', 'perhaps', 'should', 'have', 'taken', 'initially', '||comma||', 'let', 'me', 'look', 'up', 'the', 'value', 'of', 'that', 'bottle', 'in', 'this', 'wine', "collector's", 'guide', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'oh', '||comma||', 'what', 'have', 'i', 'done', '||question_mark||', 'lemme', 'dry', 'my', 'tears', 'with', 'this', 'lost', 'shakespeare', 'play', '||period||', '||return|', 'moe_szyslak:', "where's", 'your', 'wife', 'tonight', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', "she's", 'not', 'coming', 'anymore', '||period||', '||return|', 'moe_szyslak:', 'what', '||question_mark||', "it's", "'cause", 'of', 'her', 'i', 'put', 'in', 'a', 'bidet', '||period||', 'well', '||comma||', "it's", 'actually', 'just', 'a', 'step', 'ladder', 'by', 'the', 'water', 'fountain', '||period||', '||return|', 'homer_simpson:', 'listen', '||comma||', 'moe', '||period||', 'i', 'did', 'something', 'really', 'terrible', 'to', 'someone', 'i', 'love', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'look', '||period||', "i've", 'been', 'in', 'the', 'bartender', 'business', 'for', 'a', 'long', 'time', 'alright', '||comma||', "i've", 'heard', 'it', 'all', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'what', 'i', 'did', 'was', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'shocked', '||right_parentheses||', 'what', 'are', 'you', '||question_mark||', "you're", 'like', 'a', 'monster', '||exclamation_mark||', "that's", 'like', 'the', 'worst', 'thing', 'i', 'ever', 'heard', 'anybody', 'do', 'to', 'anybody', '||period||', 'you', 'should', 'be', "drinkin'", 'watered-down', 'beer', 'in-in-in', 'a', 'chipped', 'glass', '||comma||', 'on', 'a', 'stool', 'with', 'a', 'nail', 'sticking', 'up', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'can', 'i', 'have', 'some', 'peanuts', '||question_mark||', '||return|', 'moe_szyslak:', 'all', 'right', '||comma||', 'but', 'i', 'get', 'to', 'poke', 'you', 'with', 'a', 'stick', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'while', 'poking', '||comma||', 'friendly', '||right_parentheses||', 'so', '||comma||', 'hey', '||comma||', 'did', 'you', 'see', 'the', 'game', 'last', 'night', '||question_mark||', '||return|', '||return|', '||return|', 'seymour_skinner:', 'homer', '||comma||', 'this', 'bachelor', 'party', 'seems', 'to', 'have', 'peaked', '||period||', 'would', 'you', 'please', 'return', 'my', 'pants', 'and/or', 'underpants', 'so', 'i', 'can', 'go', 'home', '||question_mark||', '||return|', 'homer_simpson:', 'come', 'on', '||comma||', "it's", 'your', 'last', 'night', 'of', 'freedom', '||period||', 'you', 'gotta', 'have', 'some', 'fun', '||period||', '||return|', 'seymour_skinner:', 'who', 'are', 'all', 'of', 'you', 'people', '||question_mark||', '||return|', 'carl_carlson:', "we're", 'your', 'buddies', '||exclamation_mark||', 'now', 'come', 'on', '||comma||', "homer's", "kids'", 'principal', '||comma||', 'have', 'a', 'beer', '||exclamation_mark||', '||return|', 'seymour_skinner:', 'i', "can't", '||dash||', 'i', 'might', 'be', 'called', 'upon', 'to', 'give', 'directions', 'later', '||period||', '||return|', 'gary_chalmers:', 'skinner', '||exclamation_mark||', '||return|', 'gary_chalmers:', 'you', 'were', 'asked', 'to', 'chug-a-lug', '||period||', 'and', 'a-lug', 'you', 'shall', 'chug', '||exclamation_mark||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'boozy', '||right_parentheses||', "there's", 'something', "i've", 'wanted', 'to', 'say', 'to', 'you', 'for', 'a', 'long', 'time', '||period||', '||left_parentheses||', 'suddenly', 'needy', '||right_parentheses||', 'am', 'i', 'a', 'good', 'principal', '||question_mark||', '||return|', 'gary_chalmers:', '||left_parentheses||', 'kindly', '||right_parentheses||', "you're", 'the', 'best', 'we', 'could', 'get', 'with', 'the', 'funds', 'at', 'our', 'disposal', '||period||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'boisterous', 'drunk', '||right_parentheses||', 'you', 'know', 'i', 'wish', 'i', 'had', 'an', 'exciting', 'life', '||period||', '||period||', '||period||', 'like', 'that', 'class', 'picture', 'photographer', '||period||', 'ho', '||comma||', 'how', 'many', 'women', 'has', 'he', 'had', 'in', 'that', 'van', '||question_mark||', 'two', '||comma||', 'that', 'i', 'know', 'of', '||period||', '||return|', 'moe_szyslak:', "let's", 'kick', 'this', 'up', 'a', 'notch', 'and', 'get', 'you', 'some', 'wiggle', 'in', 'your', 'lap', '||period||', '||return|', 'moe_szyslak:', 'oh', 'yeah', '||period||', '||return|', 'seymour_skinner:', 'no', '||period||', 'absolutely', 'no', 'friction', 'dancing', '||exclamation_mark||', '||return|', 'barney_gumble:', 'aw', '||comma||', "c'mon", '||period||', "what're", 'you', '||comma||', 'killjoy', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'wussy', '||exclamation_mark||', '||return|', 'carl_carlson:', 'grinch', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'consoling', '||right_parentheses||', 'hey', '||comma||', 'take', 'it', 'easy', 'on', 'skinner', '||period||', "he's", 'just', 'down', "'cause", 'after', 'tomorrow', '||comma||', 'everything', 'he', 'does', 'is', 'wrong', '||period||', '||return|', 'carl_carlson:', 'aw', '||comma||', 'marriage', 'is', 'gonna', 'be', 'great', '||period||', 'now', "you'll", 'have', 'someone', "who'll", 'rub', 'your', 'back', '||period||', '||period||', '||period||', 'without', 'being', 'asked', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'shaking', 'head', '||right_parentheses||', 'not', 'this', 'again', '||period||', '||return|', 'carl_carlson:', 'yes', '||comma||', 'this', 'again', '||exclamation_mark||', '||return|', 'seymour_skinner:', 'you', 'know', '||comma||', 'homer', '||comma||', 'edna', 'was', 'bugging', 'me', 'and', 'bugging', 'me', 'to', 'set', 'a', 'date', '||comma||', 'and', 'i', 'picked', 'one', 'that', 'seemed', 'far', 'away', '||comma||', 'and', 'it', 'zoomed', 'up', 'like', 'a', 'junebug', 'flying', 'in', 'my', 'windshield', '||period||', '||return|', 'homer_simpson:', 'what', 'are', 'you', 'trying', 'to', 'tell', 'me', '||comma||', 'skinner', '||question_mark||', '||return|', 'seymour_skinner:', 'homer', '||comma||', 'lenny', '||period||', '||period||', '||period||', 'my', 'man', '||period||', '||period||', '||period||', 'i', 'could', 'never', 'lie', 'to', 'you', 'guys', '||period||', "i'm", 'starting', 'to', 'get', 'cold', 'feet', '||period||', 'please', "don't", 'tell', 'anyone', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'meaningful', '||right_parentheses||', "don't", 'worry', '||period||', 'your', "secret's", 'safe', 'with', 'me', '||period||', '||return|', 'homer_simpson:', 'marge', '||comma||', 'guess', 'what', '||exclamation_mark||', 'skinner', 'wants', 'to', 'bail', 'on', 'his', 'wedding', '||exclamation_mark||', '||return|', 'seymour_skinner:', 'homer', '||comma||', "you're", 'still', 'talking', 'to', 'me', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sheepish', '||right_parentheses||', 'oh', 'man', '||comma||', 'is', 'this', 'awkward', '||period||', "i'm", 'outta', 'here', '||period||', '||return|', 'seymour_skinner:', 'oh', 'god', '||comma||', "i've", 'lost', 'the', 'love', 'of', 'my', 'life', '||period||', "bart's", 'right', '||comma||', 'i', 'am', 'a', 'wiener', '||period||', '||return|', 'moe_szyslak:', 'geez', '||comma||', 'homer', '||comma||', 'this', 'guy', 'is', "bringin'", 'the', 'whole', 'bar', 'down', '||period||', 'i', 'finally', 'got', 'barney', 'back', 'on', 'the', 'sauce', '||period||', 'if', 'he', "doesn't", 'have', 'fun', '||comma||', 'he', 'could', 'easily', 'slip', 'right', 'back', 'into', 'sobriety', '||period||', '||return|', 'barney_gumble:', "don't", 'worry', '||period||', 'if', 'i', 'feel', 'the', 'urge', 'to', 'sober', 'up', '||comma||', 'i', 'just', 'talk', 'to', 'my', 'sponsor', '||period||', '||return|', 'white_rabbit:', '||left_parentheses||', 'peter', 'lorre', 'voice', '||right_parentheses||', 'drink', 'or', "i'll", 'die', '||period||', '||return|', 'homer_simpson:', 'wait', 'a', 'minute', '||period||', 'i', 'thought', 'you', "didn't", 'wanna', 'get', 'married', '||period||', '||return|', 'seymour_skinner:', 'that', 'was', 'before', 'i', 'missed', 'her', 'smell', '||comma||', 'her', 'warmth', '||comma||', 'her', 'beautiful', '||comma||', 'beautiful', 'penmanship', '||exclamation_mark||', '||return|', 'homer_simpson:', "don't", 'worry', '||comma||', 'principal', 'skinner', '||period||', '||return|', 'seymour_skinner:', 'seymour', '||period||', '||return|', 'homer_simpson:', 'really', '||question_mark||', 'boy', '||comma||', 'it', 'sucks', 'to', 'be', 'you', '||period||', 'anyhoo', '||comma||', 'if', "there's", 'one', 'thing', 'i', 'know', '||comma||', "it's", 'how', 'to', 'win', 'back', 'a', 'furious', 'woman', '||period||', "we'll", 'go', 'to', 'her', 'house', '||comma||', 'and', "i'll", 'whisper', 'to', 'you', 'exactly', 'what', 'to', 'say', '||period||', '||return|', 'seymour_skinner:', 'really', '||question_mark||', "you'll", 'be', 'my', 'cyrano', '||question_mark||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'if', 'we', 'get', 'your', 'girlfriend', 'back', 'i', "won't", 'have', 'to', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'hey', '||comma||', 'guys', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'cold', 'shoulder', '||comma||', 'huh', '||question_mark||', 'well', '||comma||', "i'll", 'just', 'talk', 'to', 'myself', '||period||', '||left_parentheses||', 'low', 'voice', '||right_parentheses||', 'hey', '||comma||', 'how', 'ya', "doin'", '||comma||', 'homer', '||question_mark||', '||left_parentheses||', "homer's", 'voice', '||right_parentheses||', 'oh', '||comma||', 'not', 'too', 'bad', '||comma||', 'how', 'about', 'you', '||question_mark||', '||left_parentheses||', 'low', 'voice', '||right_parentheses||', 'oh', "i'm", 'fine', '||period||', 'your', 'wife', 'was', 'great', 'in', 'bed', 'last', 'night', '||period||', '||left_parentheses||', "homer's", 'voice', '||right_parentheses||', 'you', 'keep', 'your', 'hands', 'off', 'my', 'wife', '||exclamation_mark||', '||left_parentheses||', 'low', 'voice', '||right_parentheses||', 'oh', 'yeah', '||question_mark||', 'well', 'i', 'give', 'her', 'what', 'she', 'needs', '||period||', 'and', 'she', 'likes', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'homer', '||comma||', 'stop', 'it', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'homer', '||period||', '||period||', '||period||', 'this', "bar's", 'only', 'for', 'real', 'americans', '||period||', 'and', 'people', 'on', 'permanent', 'visas', '||comma||', 'like', 'me', '||period||', 'what', '||question_mark||', 'what', 'are', 'you', 'all', "lookin'", 'at', '||question_mark||', "i'm", 'dutch', '||period||', 'eh', '||comma||', 'forget', 'all', 'of', 'you', '||period||', '||return|', 'lenny_leonard:', "i'm", "leavin'", '||comma||', 'too', '||period||', "i'm", 'gonna', 'go', 'listen', 'to', 'the', "president's", 'weekly', 'radio', 'address', '||period||', 'and', 'not', 'the', 'rebuttal', '||exclamation_mark||', '||return|', 'carl_carlson:', 'goodbye', '||comma||', 'homer', '||period||', 'i', "can't", 'get', 'drunk', 'and', 'vomit', 'next', 'to', 'a', 'guy', 'i', "don't", 'respect', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'even', 'my', 'best', 'friends', 'have', 'left', 'me', '||exclamation_mark||', "i'm", 'all', 'alone', '||exclamation_mark||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'huh', '||comma||', 'maybe', 'burns', "ain't", 'so', 'great', '||period||', '||return|', 'carl_carlson:', 'this', 'little', 'girl', 'has', 'given', 'us', 'a', 'lot', 'to', 'mull', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'ya', 'mugs', '||period||', "thinkin'", "ain't", "drinkin'", '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'why', 'did', 'i', 'ever', 'have', 'kids', '||question_mark||', 'i', 'could', 'have', 'written', 'symphonies', '||comma||', 'or', 'been', 'shakespeare', '||period||', '||left_parentheses||', 'moans', '||right_parentheses||', '||return|', 'moe_szyslak:', 'here', '||comma||', 'homer', '||period||', 'have', 'a', 'big', 'frosty', 'mug', 'of', 'fuhgetaboutit', '||period||', '||return|', 'man:', '||left_parentheses||', 'tough', 'guy', '||right_parentheses||', 'i', "wouldn't", 'drink', 'that', '||period||', 'from', 'the', 'looks', 'of', 'this', 'place', '||comma||', 'it', 'might', 'kill', 'you', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sarcastic', '||right_parentheses||', 'oh', '||comma||', 'who', 'are', 'you', '||comma||', 'the', 'health', 'inspector', '||question_mark||', '||return|', 'man:', 'yes', '||exclamation_mark||', '||return|', 'health_inspector:', '||left_parentheses||', 'disgusted', '||right_parentheses||', 'my', 'god', '||comma||', 'look', 'at', 'this', 'filth', '||period||', 'i', 'oughta', 'close', 'this', 'dump', 'down', 'for', 'good', '||exclamation_mark||', '||return|', 'health_inspector:', '||left_parentheses||', 'suddenly', 'smiling', '||right_parentheses||', 'but', 'then', 'where', 'would', 'i', 'go', 'to', 'get', 'away', 'from', 'my', 'wife', '||exclamation_mark||', "c'mere", '||comma||', 'moe', '||comma||', 'you', 'beautiful', '||comma||', 'hideous', 'troll', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'laughing', '||right_parentheses||', 'guys', '||comma||', 'this', 'is', 'frankie', 'from', 'the', 'health', 'department', '||period||', 'we', 'go', 'way', 'back', '||period||', 'lenny', '||comma||', 'you', "don't", 'have', 'to', 'hide', 'that', 'rat', '||period||', '||return|', 'lenny_leonard:', 'off', 'you', 'go', '||comma||', 'little', 'fella', '||period||', '||return|', 'moe_szyslak:', 'when', 'we', 'were', 'kids', '||comma||', 'our', 'dads', 'used', 'to', 'get', 'drunk', 'and', 'make', 'us', 'fight', 'each', 'other', '||period||', '||return|', 'health_inspector:', 'my', 'pop', 'would', 'buy', 'me', 'a', 'malted', 'for', 'every', 'tooth', 'of', "moe's", 'i', 'knocked', 'out', '||period||', '||return|', 'moe_szyslak:', 'that', 'time', 'you', 'blinded', 'me', '||comma||', 'he', 'gave', 'you', 'a', 'bike', '||period||', '||left_parentheses||', 'fondly', '||right_parentheses||', 'that', 'sure', 'was', 'a', 'good', "soundin'", 'bike', '||period||', '||period||', '||period||', '||return|', 'health_inspector:', 'well', '||comma||', 'now', 'to', 'give', 'this', 'place', 'a', '||quotation_mark||', 'thorough', 'inspection', '||period||', '||quotation_mark||', '||left_parentheses||', 'winks', '||right_parentheses||', '||return|', 'health_inspector:', 'free', 'from', 'infestation', '||comma||', 'check', '||period||', '||period||', '||period||', 'sanitary', 'utensils', '||period||', '||period||', '||period||', '||return|', 'health_inspector:', 'check', '||period||', 'food', 'hygienically', 'stored', '||dash||', 'only', 'one', 'way', 'to', 'find', 'out', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'stunned', '||right_parentheses||', 'oh', 'my', 'god', '||comma||', "he's", 'dead', '||period||', '||return|', 'chief_wiggum:', 'okay', '||comma||', 'which', 'one', 'of', 'you', 'guys', 'parked', 'in', 'front', 'of', 'the', 'hydrant', '||question_mark||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'scared', '||right_parentheses||', 'uh', '||comma||', 'look', '||comma||', 'i', "didn't", 'see', "nothin'", 'here', '||comma||', 'okay', '||question_mark||', '||left_parentheses||', 'uneasy', 'chuckle', '||right_parentheses||', 'just', 'a', 'bunch', 'of', 'innocent', 'guys', '||comma||', 'sitting', 'around', '||comma||', 'none', 'of', 'them', 'dead', '||period||', 'buy', 'yourselves', 'a', 'nice', 'dinner', '||period||', '||return|', 'new_health_inspector:', '||left_parentheses||', 'disapproving', '||right_parentheses||', 'uh-huh', '||period||', '||period||', '||period||', 'uh-huh', '||period||', '||period||', '||period||', '||left_parentheses||', 'big', 'exhale', '||right_parentheses||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', 'mr', '||period||', 'new', 'guy', '||period||', 'whaddya', 'think', '||question_mark||', 'is', 'everything', '||period||', '||period||', '||period||', 'hunky', 'dory', 'there', '||question_mark||', '||return|', 'new_health_inspector:', 'mr', '||period||', 'szyslak', '||comma||', 'your', 'tavern', 'is', 'rife', 'with', 'health', 'code', 'violations', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'nervous', '||right_parentheses||', 'you', 'gotta', 'be', "kiddin'", 'me', '||period||', 'like', 'what', '||question_mark||', '||return|', 'new_health_inspector:', 'for', 'starters', '||comma||', 'the', 'body', 'of', 'my', 'predecessor', 'is', 'still', 'on', 'the', 'floor', '||period||', '||return|', 'moe_szyslak:', 'oh', 'yeah', '||period||', 'uh', 'well', '||comma||', 'ya', 'see', '||comma||', 'uh', 'trash', 'day', "ain't", "'til", 'wednesday', '||period||', '||period||', '||period||', '||left_parentheses||', 'awkward', 'laugh', '||right_parentheses||', '||return|', 'new_health_inspector:', 'chicken', 'skins', 'in', 'soap', 'dispenser', '||period||', '||period||', '||period||', 'cigarette', 'butts', 'in', 'the', 'air', '||period||', '||period||', '||period||', 'toilet', 'on', 'the', 'roof', '||period||', '||period||', '||period||', "i'm", 'shutting', 'you', 'down', 'till', 'you', 'fix', 'these', 'violations', '||period||', '||return|', 'moe_szyslak:', 'oh', 'man', '||comma||', 'i', "can't", 'afford', 'to', 'fix', 'all', 'that', 'stuff', '||period||', '||return|', 'moe_szyslak:', 'aw', '||comma||', 'nuts', '||period||', 'if', 'anybody', 'needs', 'me', '||comma||', "i'll", 'be', 'in', 'the', 'john', '||period||', '||return|', 'barney_gumble:', 'o', 'danny', 'boy', '||comma||', 'the', 'pipes', 'the', 'pipes', 'are', 'calling', '/', 'from', 'glen', 'to', 'glen', 'and', 'down', 'the', 'mountain', 'side', '/', 'the', "summer's", 'gone', 'and', 'all', 'the', 'roses', 'falling', '/', "'tis", 'you', '||comma||', "'tis", 'you', 'must', 'go', '||comma||', 'and', 'i', 'must', 'bide', '||period||', '||return|', 'homer_simpson:', "moe's", '||comma||', 'a', 'tribute', '||period||', '||quotation_mark||', 'm', '||quotation_mark||', 'is', 'for', 'moe', '||comma||', 'the', 'owner', 'of', "moe's", '||period||', '||quotation_mark||', 'o', '||quotation_mark||', 'is', 'for', 'the', '||quotation_mark||', 'o', '||quotation_mark||', 'in', 'the', 'middle', 'of', "moe's", '||period||', '||quotation_mark||', 'e', '||quotation_mark||', 'is', 'for', 'acceptance', '||period||', 'the', 'feeling', 'i', 'always', 'got', 'here', 'at', "moe's", '||period||', '||left_parentheses||', 'breaking', 'down', '||right_parentheses||', 'oh', 'moe', '||comma||', "don't", 'let', "'em", 'close', 'you', 'down', '||exclamation_mark||', '||return|', 'moe_szyslak:', "it's", 'too', 'late', '||dash||', 'i', "don't", 'got', 'the', 'cash', 'to', 'clean', 'up', 'the', 'bar', '||period||', 'from', 'now', 'on', '||comma||', 'you', 'guys', 'are', 'gonna', 'hafta', 'do', 'your', 'drinking', 'across', 'the', 'street', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'shrugs', '||right_parentheses||', 'hey', '||comma||', 'a', "beer's", 'a', 'beer', '||period||', '||return|', 'homer_simpson:', 'i', "can't", 'go', 'to', 'a', 'gay', 'bar', '||comma||', "i'm", 'too', 'fat', '||exclamation_mark||', 'moe', '||comma||', "i'm", 'gonna', 'help', 'you', 'reopen', 'your', 'bar', 'no', 'matter', 'what', 'it', 'takes', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'crestfallen', '||right_parentheses||', '||period||', '||period||', '||period||', 'marge', '||question_mark||', '||return|', 'moe_szyslak:', 'thanks', '||comma||', 'homer', '||period||', 'no', "one's", 'ever', 'trusted', 'me', 'before', '||dash||', 'except', 'for', 'that', 'one', 'guy', 'who', "shouldn't", 'have', '||period||', '||return|', 'homer_simpson:', 'that', 'was', 'me', '||period||', '||return|', 'moe_szyslak:', 'oh', 'yeah', '||period||', '||return|', 'marge_simpson:', 'until', 'you', 'pay', 'us', 'back', '||comma||', "you're", 'answering', 'to', 'me', '||exclamation_mark||', 'and', "there's", 'gonna', 'be', 'big', 'changes', '||period||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'whoa', '||comma||', 'whoa', '||comma||', 'now', 'wait', 'just', 'a', 'minute', '||period||', 'one', 'thing', 'moe', 'szyslak', 'has', 'never', 'had', 'is', 'a', 'partner', '||period||', 'nor', 'a', 'wife', '||comma||', 'a', 'friend', '||comma||', 'a', 'chum', '||comma||', 'a', 'casual', 'acquaintance', '||comma||', 'a', 'pen', 'pal', '||comma||', 'a', 'parrot', '||comma||', 'a', 'meaningful', 'conversation', '||comma||', 'a', 'brief', 'hug', 'or', 'eye', 'contact', '||period||', '||return|', 'moe_szyslak:', "i'm", 'just', 'going', 'to', 'call', 'the', 'suicide', 'hotline', 'now', '||period||', '||left_parentheses||', 'dials', '||right_parentheses||', 'and', "they've", 'blocked', 'my', 'number', '||exclamation_mark||', 'oh', 'god', '||exclamation_mark||', '||left_parentheses||', 'sobs', '||right_parentheses||', '||return|', 'homer_simpson:', 'boy', '||comma||', 'i', "can't", 'wait', 'to', 'get', 'my', 'lips', 'around', 'an', 'ice', 'cold', '||period||', '||period||', '||period||', '||return|', 'marge_simpson:', "i'm", 'here', 'protecting', 'our', 'investment', '||period||', "i'd", 'like', 'you', 'to', 'go', 'home', 'and', 'make', 'dinner', 'for', 'the', 'kids', '||period||', '||return|', 'homer_simpson:', 'but', 'i', "don't", 'wanna', 'take', 'care', 'of', 'the', 'kids', '||period||', '||period||', '||period||', '||left_parentheses||', 'getting', 'idea', '||comma||', 'then', 'playing', 'dumb', '||right_parentheses||', 'um', '||period||', '||period||', '||period||', 'how', 'many', 'cigars', 'are', 'they', 'allowed', 'to', 'have', '||question_mark||', 'bart', 'sleeps', 'in', 'the', 'microwave', '||comma||', 'right', '||question_mark||', '||return|', 'marge_simpson:', 'quit', 'playing', 'dumb', '||period||', '||return|', 'homer_simpson:', 'how', 'many', 'magic', 'beans', 'should', 'i', 'sell', 'the', 'baby', 'for', '||question_mark||', 'three', '||question_mark||', '||left_parentheses||', 'stupidly', '||right_parentheses||', 'duh', '||comma||', 'der', '||comma||', 'duh', '||period||', "that's", 'me', '||comma||', 'jerk-ass', 'homer', '||period||', 'duh', '||comma||', 'der', '||comma||', 'doy', '||period||', '||return|', 'marge_simpson:', 'come', 'on', '||comma||', 'go', 'home', '||period||', '||return|', 'marge_simpson:', 'maybe', 'some', 'cheerier', 'paint', 'would', 'make', 'this', 'place', 'less', 'of', 'a', '||left_parentheses||', 'air', 'quotes', '||right_parentheses||', '||quotation_mark||', 'dive', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'marge', '||comma||', 'my', 'customers', "don't", 'like', 'themselves', '||period||', 'therefore', '||comma||', 'they', 'seek', 'the', 'darkness', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'tactful', '||right_parentheses||', 'well', '||period||', '||period||', '||period||', 'as', 'fabulous', 'as', 'your', 'regulars', 'are', '||comma||', 'a', 'remodel', 'might', 'bring', 'in', 'a', 'higher', 'class', 'of', 'lush', '||period||', '||return|', 'moe_szyslak:', 'look', '||comma||', 'i', 'like', "moe's", 'the', 'way', 'it', 'is', '||comma||', 'all', 'right', '||question_mark||', 'and', 'i', "ain't", "changin'", 'it', 'for', 'any', 'dame', '||comma||', 'skirt', '||comma||', 'susie-q', '||comma||', 'or', 'face-macer', '||period||', '||return|', 'marge_simpson:', 'i', 'had', 'a', 'feeling', "you'd", 'say', 'that', '||period||', '||left_parentheses||', 'stagy', '||right_parentheses||', 'so', 'i', 'prepared', 'something', 'that', 'might', 'help', 'you', '||quotation_mark||', 'change', 'your', 'tune', '||period||', '||quotation_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'singing', '||right_parentheses||', 'this', 'place', 'is', 'a', 'diamond', '/', 'but', "it's", 'trapped', 'in', 'the', 'rough', '||return|', 'moe_szyslak:', '||left_parentheses||', 'singing', '||comma||', 'points', '||right_parentheses||', 'yeah', 'well', 'the', 'sign', 'still', 'says', '||quotation_mark||', "moe's", '||quotation_mark||', '/', 'so', 'enough', 'of', 'your', 'guff', '||return|', 'marge_simpson:', "here's", 'my', 'new', 'idea', 'to', 'sell', 'both', 'beer', 'and', 'grub', '/', 'we', 'will', 'turn', 'this', 'filthy', 'dive', 'into', 'a', 'proper', 'old-time', 'british', 'pub', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'a', 'british', 'whaaa', '||question_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', '||quotation_mark||', 'rule', 'britannia', '||quotation_mark||', '||right_parentheses||', 'darts', 'and', 'meatpies', '||comma||', 'and', 'lager', 'in', 'pint', 'glasses', '||return|', 'lisa_simpson:', 'what', 'a', 'classy', 'way', 'to', 'get', 'drunk', 'off', 'your', 'asses', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hold', 'the', 'phone', '||period||', 'an', 'english', 'pub', '||comma||', 'that', 'just', 'might', 'work', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'singing', '||right_parentheses||', 'in', 'so-ng', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'uh', '||period||', '||period||', '||period||', '||left_parentheses||', 'ad', 'lib', 'singing', '||right_parentheses||', 'my', 'bar', 'could', 'be', 'british', '/', 'instead', 'of', 'arm-pittish', '/', 'so', 'why', "don't", 'we', 'all', '||left_parentheses||', 'spoken', '||right_parentheses||', 'eh', '||comma||', 'screw', 'it', '||period||', '||return|', 'moe_szyslak:', "let's", 'get', "renovatin'", '||period||', '||return|', 'marge_simpson:', 'well', '||comma||', 'i', 'was', 'thinking', 'more', 'like', 'drapes', 'and', 'a', 'paint', 'job', '||comma||', 'but', 'your', "idea's", 'good', 'too', '||period||', '||return|', 'moe_szyslak:', 'thanks', '||period||', '||return|', 'judge_snyder:', '||left_parentheses||', 'hands', 'glass', 'to', 'lindsay', 'naegle', '||right_parentheses||', 'pint', 'of', 'ale', '||comma||', 'my', 'dear', '||question_mark||', '||return|', 'lindsay_naegle:', 'well', 'thank', 'you', '||comma||', 'your', 'honor', '||period||', 'you', 'know', '||comma||', "you're", 'kind', 'of', 'sexy', '||period||', '||return|', 'judge_snyder:', "that's", 'a', 'deliberate', 'mis-statement', 'of', 'fact', '||period||', '||left_parentheses||', 'smiling', '||right_parentheses||', 'but', "i'll", 'allow', 'it', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'impressed', '||right_parentheses||', 'my', 'first', 'credit', 'card', '||exclamation_mark||', '||left_parentheses||', 'feeling', 'card', '||comma||', 'amazed', '||right_parentheses||', 'wow', '||comma||', 'the', 'numbers', 'are', 'all', 'bumpy-like', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||period||', 'no', 'outside', 'suds', '||exclamation_mark||', '||return|', 'homer_simpson:', "i'm", 'sorry', '||comma||', 'moe', '||period||', 'marge', "won't", 'let', 'me', 'spend', 'any', 'money', '||dash||', 'even', 'counterfeit', 'money', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'cat', '||right_parentheses||', 'i', "won't", 'tell', 'if', 'you', "don't", 'tell', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'hey', 'moe', '||comma||', 'hey', 'moe-clone', '||period||', '||return|', 'moe_szyslak:', 'hiya', 'homer', '||period||', '/', 'hi', 'homer', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclamation_mark||', 'i', "don't", 'pay', 'you', 'to', 'socialize', '||period||', '||return|', 'moe-clone:', '||left_parentheses||', 'sarcastic', '||right_parentheses||', 'oh', 'right', '||period||', "you're", 'the', 'people', 'person', '||period||', '||return|', 'moe_szyslak:', 'watch', 'it', 'with', 'the', 'attitude', '||comma||', 'mister', '||period||', 'you', 'came', 'from', 'my', 'back', 'fat', '||exclamation_mark||', '||return|', 'homer_simpson:', 'boy', '||comma||', 'i', 'think', 'i', 'see', 'my', 'two', 'favorite', 'letters', 'of', 'the', 'alphabet', '||period||', 'e-z', '||period||', '||return|', 'moe_szyslak:', 'you', 'moron', '||exclamation_mark||', '||left_parentheses||', 'sighs', '||right_parentheses||', 'why', 'did', 'i', 'ever', 'think', 'i', 'needed', 'a', 'clone', '||question_mark||', '||return|', 'moe-clone:', 'hey', '||comma||', "i'm", 'not', 'the', 'clone', '||comma||', "you're", 'the', 'clone', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', 'please', '||comma||', 'not', 'this', 'again', '||period||', '||return|', 'homer_simpson:', 'son', '||comma||', 'say', 'hello', 'to', 'edna', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'awkward', 'chuckle', '||right_parentheses||', 'oopsie', '||period||', '||return|', 'edna_krabappel-flanders:', '||left_parentheses||', '||quotation_mark||', 'why', 'not', '||question_mark||', '||quotation_mark||', '||right_parentheses||', 'want', 'it', 'to', 'get', 'weirder', '||question_mark||', '||return|', 'edna_krabappel-flanders:', '||left_parentheses||', 'sweetly', '||right_parentheses||', 'good', 'call', '||comma||', 'bart', '||period||', 'we', 'can', 'both', 'do', 'better', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'no', "enjoyin'", 'it', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'ah', '||period||', '||period||', '||period||', 'this', 'is', 'heaven', '||period||', '||left_parentheses||', 'sips', 'beer', '||right_parentheses||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'moans', '||right_parentheses||', "they're", 'shooting', 'an', 'adult', 'film', 'at', 'my', 'house', 'tomorrow', '||period||', 'how', 'am', 'i', 'gonna', 'get', 'rid', 'of', 'marge', 'and', 'the', 'kids', '||question_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', 'got', 'these', 'free', 'tickets', 'to', "santa's", 'village', '||period||', 'i', 'know', 'a', 'guy', 'who', 'turns', 'the', 'dead', 'sleigh-horses', 'into', 'jerky', 'and', 'sells', 'it', 'to', 'bars', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'thanks', '||comma||', 'moe', '||exclamation_mark||', '||return|', '||return|', '||return|', 'carl_carlson:', "don't", 'do', 'that', '||period||', '||period||', '||period||', 'that', 'hurts', '||period||', 'careful', '||comma||', 'careful', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', "what's", 'the', 'big', 'idea', 'of', 'getting', 'trapped', 'under', 'that', 'thing', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'long', 'story', '||period||', 'uh', '||comma||', 'we', 'were', 'trying', 'to', 'impress', 'some', 'girls', '||dash||', 'and', 'things', 'kinda', 'got', 'away', 'from', 'us', '||period||', '||return|', 'lenny_leonard:', 'just', 'for', 'the', 'record', '||comma||', 'i', 'regret', "nothin'", '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', "how'd", 'your', 'right', 'arm', 'get', 'so', 'strong', '||question_mark||', '||return|', 'homer_simpson:', 'just', "liftin'", 'this', 'dumbbell', '||period||', '||return|', 'homer_simpson:', 'forty-nine', 'thousand', 'nine', 'hundred', 'and', 'ninety-nine', '||period||', '||period||', '||period||', 'fifty', 'thousand', '||exclamation_mark||', '||return|', 'homer_simpson:', "i'm", 'pretty', 'happy', 'with', 'this', 'baby', '||comma||', 'now', "it's", "lefty's", 'turn', '||period||', '||return|', 'moe_szyslak:', 'oh', 'no', 'you', "don't", '||exclamation_mark||', 'i', 'just', 'got', 'an', 'idea', '||period||', '||return|', 'homer_simpson:', 'wha', '||question_mark||', 'hey', '||comma||', 'you', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'here', 'comes', 'our', 'victim', '||period||', "let's", 'bash', 'his', 'head', 'in', '||period||', '||return|', 'lenny_leonard:', 'hey', 'moe', '||comma||', 'i', 'thought', 'you', 'were', 'just', 'gonna', 'hustle', 'him', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'right', '||period||', 'i', 'was', 'thinking', 'of', 'another', 'thing', 'i', 'got', "goin'", '||period||', '||return|', 'the_rich_texan:', 'gimme', 'a', 'bottle', 'of', 'bourbon', '||exclamation_mark||', '||return|', 'the_rich_texan:', 'i', 'got', 'a', 'new', 'liver', '||comma||', 'and', "i'm", "breakin'", 'it', 'in', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'nerd', 'voice', '||right_parentheses||', 'excuse', 'me', '||comma||', 'mr', '||period||', 'bartender', 'sir', '||comma||', 'may', 'i', 'have', 'a', 'sugar-free', 'ginger', 'ale', '||question_mark||', 'and', 'uh', '||comma||', 'make', 'it', 'flat', '||dash||', 'the', 'bubbles', 'burn', 'my', 'buds', '||period||', '||return|', 'the_rich_texan:', 'goldarnit', '||comma||', 'son', '||exclamation_mark||', 'what', 'the', 'hell', 'kinda', 'sissy', 'are', 'you', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 're:', 'homer', '||right_parentheses||', 'hey', '||comma||', 'are', 'you', "callin'", 'my', 'life-partner', 'a', 'sissy', '||question_mark||', "'cause", 'a', 'hundred', 'bucks', 'says', 'he', 'could', 'whup', 'you', 'in', 'arm', 'wrestling', '||period||', '||return|', 'the_rich_texan:', 'a', '||quotation_mark||', 'texas', 'penny', '||quotation_mark||', 'it', 'is', '||period||', 'yee-ha', '||exclamation_mark||', '||return|', 'the_rich_texan:', 'gol-dangit', '||dash||', "i've", 'been', 'played', 'like', 'a', "dimwit's", 'kazoo', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yes', '||exclamation_mark||', 'homer', '||comma||', 'we', 'make', 'a', 'dynamite', 'team', '||comma||', 'huh', '||question_mark||', 'with', 'your', 'arm', '||comma||', '||left_parentheses||', 'taps', 'own', 'forehead', '||right_parentheses||', 'and', 'my', 'head-gunk', '||comma||', "we're", "goin'", 'right', 'to', 'the', 'top', '||exclamation_mark||', '||left_parentheses||', 'hears', 'gun', 'cocking', 'noise', '||right_parentheses||', 'whoa', '||period||', '||return|', 'the_rich_texan:', 'this', 'is', 'one', 'texan', 'who', "don't", 'like', 'when', "he's", 'made', 'out', 'to', 'be', 'a', 'fool', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'uh', '||period||', '||period||', '||period||', 'what', 'do', 'you', 'like', '||question_mark||', '||return|', 'the_rich_texan:', 'i', 'dunno', '||period||', '||period||', '||period||', 'a', 'good', 'book', '||period||', '||period||', '||period||', 'long', 'walk', 'on', 'the', 'beach', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'happily', 'singing', 'to', '||quotation_mark||', 'here', 'comes', 'the', 'bride', '||quotation_mark||', '||right_parentheses||', 'here', 'comes', 'the', 'moe', '/', 'with', 'a', 'pretty', 'girl', '/', "'cause", 'these', 'are', 'things', 'that', 'happened', '/', 'in', 're-al', 'life', '||return|', 'barney_gumble:', 'hey', 'moe', '||comma||', 'can', 'we', 'get', 'a', 'drink', '||question_mark||', '||return|', 'moe_szyslak:', 'shut', 'up', 'and', 'hand', 'me', 'more', 'moe-heads', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', "you're", "doin'", 'great', '||period||', "you're", 'way', 'ahead', 'in', 'the', 'polls', '||period||', '||period||', '||period||', 'even', 'those', 'negative', 'campaign', 'ads', "aren't", 'hurting', 'you', '||period||', '||return|', 'waylon_smithers:', 'simpson', 'barely', 'even', 'comes', 'into', 'work', 'anymore', '||period||', 'he', 'pays', 'a', 'homeless', 'man', 'to', 'do', 'it', 'for', 'him', '||period||', '||return|', 'bum:', '||left_parentheses||', 'to', 'dog', '||right_parentheses||', 'i', '||comma||', 'um', '||comma||', 'i', "don't", 'feel', 'so', 'good', '||comma||', 'blue', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'hey', '||comma||', 'people', 'may', 'not', 'love', 'homer', 'simpson', '||comma||', 'but', 'they', 'love', 'this', 'suit', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'just', 'like', 'they', 'love', 'their', 'stupid', 'american', 'flag', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'time', 'for', 'my', 'annual', 'holiday', 'tradition', '||period||', '||period||', '||period||', 'attempting', 'to', 'kill', 'myself', '||period||', '||left_parentheses||', 'small', 'sob', '||right_parentheses||', '||return|', 'moe_szyslak:', "what's", 'it', 'say', '||question_mark||', '||return|', '||return|', '||return|', 'carl_carlson:', '||left_parentheses||', 'sincere', '||right_parentheses||', 'see', 'ya', 'soon', '||comma||', 'homer', '||period||', 'we', 'got', 'someone', 'else', "comin'", 'in', '||period||', '||return|', 'seymour_skinner:', 'this', 'is', 'w-a-3-q-i-zed', '||period||', 'do', 'you', 'read', 'me', '||question_mark||', '||return|', 'agnes_skinner:', 'seymour', '||exclamation_mark||', "isn't", 'it', 'about', 'time', 'you', 'made', 'a', 'real', 'friend', '||question_mark||', '||return|', 'agnes_skinner:', '||left_parentheses||', 'quietly', '||comma||', 'to', 'skinner', '||right_parentheses||', 'how', 'do', 'i', 'talk', '||question_mark||', 'push', 'this', 'button', 'here', '||question_mark||', '||left_parentheses||', 'very', 'loud', '||right_parentheses||', "you're", 'all', 'losers', '||exclamation_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'which', 'way', 'did', 'mason', 'go', '||question_mark||', 'that', 'must', 'be', 'him', 'over', 'there', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'gentlemen', '||comma||', 'the', 'moment', 'has', 'finally', 'arrived', '||period||', '||return|', 'moe_szyslak:', "i'm", "rentin'", 'a', 'party', 'bus', 'and', "takin'", 'all', 'you', 'regulars', 'to', 'las', 'vegas', '||period||', '||return|', 'lenny_leonard:', 'nevada', '||question_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', "that's", 'right', '||period||', '||return|', 'carl_carlson:', 'moe', '||comma||', 'why', 'you', "bein'", 'so', 'generous', '||question_mark||', "you're", 'usually', 'so', 'stingy', 'and', 'rat-like', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'well', '||comma||', 'ya', 'remember', 'that', 'time', 'i', 'tried', 'to', 'hang', 'myself', 'and', 'the', 'rope', 'broke', '||question_mark||', 'well', '||comma||', 'i', 'sued', 'the', 'rope', 'company', 'and', 'got', 'a', 'huge', 'settlement', '||period||', '||period||', '||period||', 'and', 'a', 'new', 'rope', '||exclamation_mark||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'nice', 'rope', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'admiring', '||right_parentheses||', 'you', 'could', 'hang', 'a', 'cow', 'with', 'that', 'thing', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'check', 'it', 'out', '||dash||', 'i', 'made', 'it', 'partially', 'risquã©', '||period||', '||return|', 'homer_simpson:', 'hey', 'guys', '||comma||', 'i', 'have', 'to', 'put', 'the', 'boy', 'on', 'a', 'plane', 'to', 'soul-crushing', 'camp', '||comma||', 'then', "i'll", 'be', 'back', 'to', 'go', 'to', 'vegas', '||exclamation_mark||', '||return|', 'bart_simpson:', '||left_parentheses||', 'pleading', '||right_parentheses||', 'dad', '||comma||', 'if', 'you', 'take', 'me', 'to', 'vegas', '||comma||', "i'll", 'teach', 'you', 'how', 'to', 'cheat', 'at', 'blackjack', '||period||', '||return|', 'homer_simpson:', 'boy', '||comma||', 'you', "don't", 'need', 'to', 'cheat', 'when', 'you', 'got', 'a', 'system', '||period||', '||return|', 'bart_simpson:', "what's", 'your', 'system', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'loud', 'whisper', '||right_parentheses||', 'i', "don't", 'tell', 'your', 'mother', 'how', 'much', "i've", 'lost', '||period||', '||return|', 'carl_carlson:', 'aw', 'dang', '||comma||', 'homer', "ain't", "comin'", '||period||', '||return|', 'nelson_muntz:', 'haw', 'haw', '||exclamation_mark||', '||return|', 'carl_carlson:', 'and', 'nelson', 'saw', "somethin'", 'funny', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'gee', '||comma||', 'homer', '||comma||', 'if', 'those', 'blue', 'pants', 'mean', 'that', 'much', 'to', 'you', '||comma||', 'they', 'must', 'be', 'the', 'greatest', '||period||', '||return|', 'carl_carlson:', "i'm", "gettin'", 'two', 'pair', 'today', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'i', "don't", 'get', 'this', '||period||', 'this', 'guy', 'paints', 'his', 'noggin', 'and', 'you', 'guys', 'are', 'ready', 'to', 'buy', 'pants', '||period||', 'meanwhile', '||comma||', 'i', 'been', "payin'", 'for', 'that', 'billboard', 'outside', 'for', 'a', 'year', 'now', '||comma||', 'and', "it's", 'not', "yieldin'", "nothin'", '||exclamation_mark||', '||return|', 'moe_recording:', 'you', "don't", 'have', 'to', 'look', 'at', 'me', '||period||', 'you', "don't", 'have', 'to', 'look', 'at', 'me', '||period||', '||return|', 'woman:', '||left_parentheses||', 'impressed', '||right_parentheses||', 'well', '||comma||', 'he', 'does', 'have', 'billboard', 'money', '||period||', 'talking', 'billboard', 'money', '||period||', '||return|', 'woman:', '||left_parentheses||', 'disgusted', '||right_parentheses||', 'ew', '||period||', '||period||', '||period||', '||left_parentheses||', 'then', '||comma||', 'considering:', '||right_parentheses||', 'but', 'he', 'might', 'be', 'right', 'for', 'my', 'friend', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'hey', 'bar-boy', '||comma||', 'this', "table's", 'wobbly', '||period||', 'come', 'jam', 'your', 'foot', 'under', 'it', '||period||', '||return|', 'carl_carlson:', 'hey', 'bar-boy', '||comma||', 'write', 'a', 'play', 'where', 'i', 'meet', 'henry', 'ford', 'and', 'captain', 'kirk', '||period||', '||return|', 'homer_simpson:', 'hey', 'bar-boy', '||comma||', 'dance', 'around', 'like', 'an', 'idiot', '||period||', 'like', 'this', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'chanting', '||right_parentheses||', "i'm-so-stupid", '||exclamation_mark||', "i'm-so-stupid", '||exclamation_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', "i'm", 'a', 'little', 'busy', '||period||', 'can', 'i', 'do', 'it', 'later', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'still', 'dancing', '||right_parentheses||', 'sure', '||exclamation_mark||', '||left_parentheses||', 'laughs', '||right_parentheses||', "you're", 'gonna', 'be', 'all', '||quotation_mark||', "i'm-so-stupid", '||exclamation_mark||', "i'm-so-stupid", '||exclamation_mark||', "i'm-so-stupid", '||exclamation_mark||', '||quotation_mark||', '||left_parentheses||', 'etc', '||period||', '||right_parentheses||', '||return|', 'lenny_leonard:', 'burns', 'sure', 'will', 'look', 'like', 'a', 'jerk', 'later', '||exclamation_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', 'at', 'five-fifteen', 'an', 'hour', '||comma||', 'it', 'would', 'take', 'an', 'eternity', 'to', 'make', 'my', 'fortune', 'back', '||dash||', 'and', 'fica', "wasn't", 'helping', '||period||', '||return|', 'c', '||period||', '_montgomery_burns:', 'but', 'then', '||comma||', 'for', 'once', 'in', 'my', 'life', '||comma||', 'things', 'went', 'my', 'way', '||period||', '||return|', 'c', '||period||', '_montgomery_burns:', 'i', 'steamed', 'the', 'letter', 'open', 'with', "moe's", 'cappuccino', 'machine', '||period||', '||return|', 'moe_szyslak:', 'if', "you're", 'reading', 'this', '||comma||', 'i', 'am', 'dead', '||comma||', 'and', 'you', 'are', 'about', 'to', 'learn', 'the', 'story', 'of', 'my', 'treasure', '||period||', '||return|', 'c', '||period||', '_montgomery_burns:', 'treasure', '||question_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', '-ry', 'of', "moe's", 'treasure', '||period||', 'top', 'of', 'form', '||return|', 'moe_szyslak:', 'it', 'was', 'the', 'first', 'day', 'of', 'summer', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'i', 'knew', 'that', 'in', 'order', 'to', 'win', 'her', 'love', '||comma||', 'i', 'needed', 'to', 'get', 'rid', 'of', 'the', 'human', 'garbage', 'otherwise', 'known', 'as', 'my', 'best', 'friends', '||period||', '||return|', 'moe_szyslak:', 'barney', '||comma||', 'how', 'do', 'you', 'keep', "gettin'", 'back', 'in', '||question_mark||', '||return|', 'barney_gumble:', "i'm", 'a', 'drunk', '||period||', 'i', "don't", 'know', "nothin'", 'about', 'how', 'i', 'do', 'anything', '||period||', '||return|', 'moe_szyslak:', 'i', 'had', 'to', 'get', 'edna', 'out', 'of', 'springfield', '||dash||', 'make', 'a', 'fresh', 'start', 'in', 'a', 'new', 'town', '||comma||', 'far', 'away', '||period||', 'a', 'place', 'where', 'we', 'can', 'play', 'bridge', 'with', 'our', 'neighbors', '||period||', 'and', 'if', "they're", 'interested', 'in', 'wife-swapping', '||comma||', 'who', 'am', 'i', 'to', 'say', 'no', '||question_mark||', "i'm", 'just', 'the', 'new', 'guy', '||period||', '||return|', 'moe_szyslak:', 'but', 'where', 'would', 'i', 'get', 'the', 'money', 'to', 'start', 'a', 'new', 'life', '||question_mark||', 'and', 'then', '||comma||', 'opportunity', 'strolled', 'right', 'in', 'the', 'door', '||period||', '||period||', '||period||', '||return|', 'snake_jailbird:', 'yes', '||comma||', 'hello', '||period||', 'i', 'need', 'directions', 'to', 'the', 'springfield', 'natural', 'history', 'museum', '||period||', 'i', 'totally', 'have', 'a', 'donation', 'for', 'them', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'ã€', 'la', 'jerry', 'lewis', '||right_parentheses||', 'coins', 'money', 'gold', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'see', '||comma||', 'this', 'was', 'back', 'before', 'snake', 'became', 'a', 'notorious', 'jailbird', '||comma||', 'when', 'he', 'was', 'an', 'idealistic', '||comma||', 'law-abiding', 'young', 'archaeologist', '||period||', '||return|', 'snake_jailbird:', 'i', 'was', '||comma||', 'like', '||comma||', 'excavating', 'this', 'mayan', 'pyramid', 'and', 'i', 'totally', 'unearth', 'these', 'gold', 'coins', 'and', "i'm", 'all', 'like', '||quotation_mark||', 'could', 'you', 'be', 'any', 'more', 'pre-columbian', '||question_mark||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'you', "can't", 'donate', 'that', 'gold', 'to', 'the', 'museum', 'today', '||comma||', "'cause", 'um', '||period||', '||period||', '||period||', 'uh', "it's", 'closed', '||comma||', 'so', 'they', 'can', 'clean', 'under', 'the', 'wangs', 'on', 'the', 'statues', '||period||', '||return|', 'snake_jailbird:', 'uh', '||comma||', 'well', 'no', 'problem', '||period||', "i'll", 'just', 'spend', 'the', 'night', 'in', 'that', 'motel', 'across', 'the', 'street', '||period||', '||return|', 'moe_szyslak:', 'love', 'had', 'handed', 'me', 'an', 'awful', 'dilemma', '||period||', 'should', 'i', 'rob', 'this', 'guy', 'or', 'rob', 'him', 'and', 'kill', 'him', '||question_mark||', '||return|', 'moe_szyslak:', 'if', 'i', "couldn't", 'spend', 'the', 'treasure', 'on', 'edner', '||comma||', 'i', "didn't", 'want', 'to', 'spend', 'it', '||period||', 'i', 'just', 'sat', 'there', "playin'", 'our', 'song', 'on', 'the', 'jukebox', '||period||', 'one', 'gold', '||dash||', '||return|', 'c', '||period||', '_montgomery_burns:', '||left_parentheses||', 'reading', '||right_parentheses||', '||quotation_mark||', '||period||', '||period||', '||period||', 'coin', 'at', 'a', 'time', '||period||', '||quotation_mark||', '||return|', 'c', '||period||', '_montgomery_burns:', 'oh', '||comma||', 'you', 'poor', 'man', '||period||', '||left_parentheses||', 'sinister', '||right_parentheses||', "you're", 'about', 'to', 'get', 'a', 'lot', 'poorer', '||period||', '||return|', 'the_rich_texan:', 'okay', '||comma||', "i'll", 'take', 'your', 'gold', '||comma||', 'and', 'give', 'you', 'back', 'all', 'of', 'your', 'worldly', 'possessions', '||comma||', "'ceptin'", 'your', 'nucular', 'plant', '||period||', 'you', "don't", 'get', 'that', 'back', 'till', 'you', 'bring', 'me', 'a', 'photo', 'of', 'yourself', 'with', 'a', 'smiling', 'child', '||period||', '||return|', 'c', '||period||', '_montgomery_burns:', '||left_parentheses||', 'exasperated', 'noise', '||right_parentheses||', 'what', 'the', 'hell', 'could', 'that', 'mean', 'to', 'you', '||question_mark||', '||return|', 'the_rich_texan:', "i'm", 'obsessive-compulsive', '||exclamation_mark||', '||left_parentheses||', 'shoots', 'guns', '||right_parentheses||', 'yee-haw', '||exclamation_mark||', '||left_parentheses||', 'quickly', '||right_parentheses||', 'one', '||comma||', 'two', '||comma||', 'three', '||comma||', 'four', '||period||', 'yee-haw', '||exclamation_mark||', '||left_parentheses||', 'quickly', '||right_parentheses||', 'one', '||comma||', 'two', '||comma||', 'three', '||comma||', 'four', '||period||', 'yee-haw', '||exclamation_mark||', '||left_parentheses||', 'quickly', '||right_parentheses||', 'one', '||comma||', 'two', '||comma||', 'three', '||comma||', 'four', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'you', 'know', '||comma||', 'moe', '||comma||', 'that', 'sign', 'is', 'powered', 'by', 'non-american', 'workers', '||period||', '||return|', 'moe_szyslak:', 'so', 'what', '||question_mark||', '||left_parentheses||', 'points', 'to', 'beer', '||right_parentheses||', 'your', "beer's", 'german', '||comma||', 'and', 'the', "tv's", 'japanese', '||left_parentheses||', 'points', 'to', 'tv', '||right_parentheses||', '||period||', '||return|', 'carl_carlson:', 'well', '||comma||', 'is', 'there', 'anything', 'in', 'this', 'bar', "that's", 'made', 'in', 'america', '||question_mark||', '||return|', 'moe_szyslak:', 'just', 'this', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'pained', 'noise', '||comma||', 'then:', '||right_parentheses||', 'god', '||comma||', 'misfire', '||exclamation_mark||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'homer', '||comma||', "i'm", 'proud', 'of', 'you', '||period||', "you've", 'prolonged', 'this', 'celebrity', 'marriage', 'at', 'least', 'through', 'playoff', 'season', '||period||', '||return|', 'carl_carlson:', 'after', 'that', '||comma||', 'who', 'gives', 'a', "hobo's", 'crap', '||question_mark||', 'am', 'i', 'right', '||question_mark||', '||return|', '||return|', '||return|', 'louie:', 'this', 'guy', 'in', 'here', 'owes', 'us', 'money', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'ominous', '||right_parentheses||', 'leave', 'him', 'to', 'me', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'whiny', '||right_parentheses||', 'ow', '||exclamation_mark||', 'i', 'hurt', 'my', 'fist', 'and', 'my', 'palm', '||period||', 'i', 'thought', 'you', 'guys', 'were', "lookin'", 'out', 'for', 'me', '||period||', '||left_parentheses||', 'whiny', 'noise', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'tough', '||right_parentheses||', 'all', 'right', '||comma||', 'tap', 'jockey', '||comma||', 'you', 'owe', 'fat', 'tony', 'fifty', 'bucks', '||period||', 'cough', 'it', 'up', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'scared', '||right_parentheses||', 'look', 'mister', '||comma||', 'i-i-i', "don't", 'got', 'the', 'cash', '||period||', 'my', 'clientele', '||dash||', "they're", 'all', 'bums', '||period||', 'they', 'never', 'pay', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'tough', '||right_parentheses||', 'just', 'get', 'the', 'money', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'tough', '||right_parentheses||', 'homer', '||comma||', 'the', 'mob', 'is', "puttin'", 'the', 'screws', 'on', 'me', '||comma||', 'see', '||period||', 'i', "ain't", "gettin'", 'killed', "'cause", 'you', "won't", 'pay', 'your', 'tab', '||period||', 'now', 'give', 'me', 'fifty', 'bucks', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'scared', '||right_parentheses||', 'okay', '||period||', 'take', 'it', '||comma||', 'take', 'it', '||exclamation_mark||', 'just', "don't", 'hurt', 'me', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'tough', '||right_parentheses||', 'okay', 'pretty', 'boy', '||comma||', "where's", 'fat', "tony's", 'fifty', 'bucks', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'scared', '||right_parentheses||', 'look', '||comma||', 'all-all-all', 'i', 'got', 'is', 'twenty-five', '||period||', 'i', 'swear', '||exclamation_mark||', 'i', 'swear', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'tough', '||right_parentheses||', "it'll", 'do', 'for', 'now', '||period||', '||return|', '||return|', '||return|', 'reporter:', '||left_parentheses||', 'panicky', '||right_parentheses||', 'oh', '||comma||', 'my', 'stars', '||exclamation_mark||', "it's", 'firing', 'a', 'beam', 'of', 'pure', 'energy', '||exclamation_mark||', '||return|', 'reporter:', "it's", 'burning', 'people', 'alive', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'okay', 'boys', '||comma||', "we're", 'under', 'attack', '||exclamation_mark||', "let's", 'drive', "'em", 'out', 'of', 'town', 'the', 'way', 'we', 'did', 'with', 'the', 'irish', '||exclamation_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'offended', '||right_parentheses||', 'hey', '||comma||', "i'm", 'irish', '||period||', '||return|', 'barney_gumble:', 'oh', 'wait', '||comma||', "i'm", 'polish', '||period||', '||left_parentheses||', 'dying', 'noise', '||right_parentheses||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'whatcha', "doin'", '||comma||', 'moe', '||question_mark||', "drawin'", 'a', 'wang', 'on', 'marmaduke', '||question_mark||', '||return|', 'moe_szyslak:', 'heck', 'no', '||dash||', "i'm", "challengin'", 'myself', 'with', 'one', 'of', 'these', '||quotation_mark||', 'sudoku', '||quotation_mark||', 'games', '||period||', '||return|', 'carl_carlson:', 'what', '||comma||', 'that', 'japanese', 'puzzle', 'in', 'which', 'no', 'numeral', 'can', 'be', 'repeated', 'in', 'a', 'row', '||comma||', 'column', '||comma||', 'or', 'box', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'shocked', '||right_parentheses||', "that's", 'how', 'it', 'works', '||question_mark||', 'i', 'was', 'just', "drawin'", 'wangs', 'on', 'the', 'numbers', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'out', 'of', 'breath', '||comma||', 'desperate', '||right_parentheses||', 'moe', '||comma||', 'moe', '||comma||', 'you', 'gotta', 'hide', 'us', 'from', 'the', 'army', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'the', 'salvation', 'army', '||question_mark||', 'you', 'got', 'it', '||period||', '||left_parentheses||', 'cocks', 'shotgun', '||right_parentheses||', '||return|', 'homer_simpson:', 'not', 'that', 'army', '||comma||', 'the', 'one', 'from', '||quotation_mark||', 'stripes', '||exclamation_mark||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'okay', '||period||', '||return|', 'homer_simpson:', 'thanks', '||comma||', 'moe', '||period||', 'how', 'can', 'i', 'ever', 'repay', 'you', '||question_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'some', 'things', 'mean', 'more', 'to', 'me', 'than', 'money', '||period||', '||period||', '||period||', '||return|', 'colonel:', '||left_parentheses||', 'calling', 'down', '||right_parentheses||', 'war', "game's", 'over', '||comma||', 'losers', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'i', 'sure', 'am', 'looking', 'forward', 'to', 'my', 'birthday', 'fishing', 'trip', '||period||', '||period||', '||period||', 'well', "i'll", 'see', 'ya', 'soon', '||comma||', 'this', 'is', 'moe', '||comma||', 'big', 'day', '||period||', '||period||', '||period||', 'uh', '||comma||', "waitin'", '||comma||', 'feeling', 'uh', '||comma||', 'kind', 'of', 'fragile', '||period||', '||period||', '||period||', 'moe', '||comma||', 'the', 'birthday', 'boy', '||comma||', "listenin'", 'for', 'your', 'car', '||period||', '||period||', '||period||', '||left_parentheses||', 'sobs', '||right_parentheses||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'bursts', 'in', '||right_parentheses||', 'moe', '||comma||', "you're", 'a', 'published', 'author', '||exclamation_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'amazed', '||right_parentheses||', 'wow', '||comma||', 'just', 'think', '||dash||', 'earlier', 'tonight', '||comma||', 'a', 'newly-published', 'poet', 'cleaned', 'up', 'my', 'barf', '||period||', '||return|', 'moe_szyslak:', "moe's", 'tavern', '||period||', '||period||', '||period||', 'who', '||question_mark||', 'where', '||question_mark||', 'to', 'what', '||question_mark||', '||left_parentheses||', 'mad', '||right_parentheses||', 'screw', 'you', '||comma||', 'snail', 'trail', '||exclamation_mark||', '||return|', 'lisa_simpson:', 'who', 'was', 'that', '||question_mark||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'some', 'jerk', "makin'", 'a', 'prank', 'call', 'with', 'a', 'gag', 'name:', '||quotation_mark||', 'tom', 'wolfe', '||period||', '||quotation_mark||', '||return|', 'barney_gumble:', 'tom', 'wolfe', '||question_mark||', '||exclamation_mark||', 'he', 'wrote', '||quotation_mark||', 'the', 'right', 'stuff', '||quotation_mark||', 'and', '||quotation_mark||', 'bonfire', 'of', 'the', 'vanities', '||quotation_mark||', '||period||', 'and', 'coined', 'the', 'phrase', '||quotation_mark||', 'radical', 'chic', '||exclamation_mark||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||dash||', 'then', 'that', 'guy', "wasn't", "squeezin'", 'my', "'roids", 'when', 'he', 'invited', 'me', 'to', 'the', 'wordloaf', 'festival', 'in', 'vermont', '||question_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'thrilled', '||right_parentheses||', 'the', 'wordloaf', 'festival', '||question_mark||', '||exclamation_mark||', "you'll", 'meet', 'all', 'the', 'great', 'american', 'writers', '||comma||', 'moe', '||exclamation_mark||', 'you', 'have', 'to', 'go', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||question_mark||', 'well', '||comma||', 'okay', '||comma||', 'all', 'right', '||dash||', 'but', 'only', 'if', 'you', 'come', '||comma||', 'huh', '||question_mark||', '||return|', 'moe_szyslak:', 'i', "wouldn't-a", 'had', 'none', 'of', 'this', 'without', 'you', '||comma||', 'kid', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'hello', '||period||', 'oh', 'hey', '||comma||', 'milhouse', '||period||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'quickly', '||right_parentheses||', "i'm", 'not', 'here', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'sobbing', '||right_parentheses||', 'greystash', '||exclamation_mark||', 'greystash', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'gee', '||comma||', "you're", 'really', 'upset', 'about', 'this', 'greystash', 'thing', '||period||', '||return|', 'homer_simpson:', "don't", 'say', 'his', 'name', '||exclamation_mark||', 'in', 'your', 'mouth', 'it', 'sounds', 'like', 'dirt', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'homer', '||comma||', "it's", 'just', 'a', 'book', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'upset', '||right_parentheses||', 'no', 'man', 'should', 'outlive', 'his', 'fictional', 'wizard', '||exclamation_mark||', 'no', 'man', '||exclamation_mark||', '||left_parentheses||', 'sobs', '||right_parentheses||', '||return|', '||return|', '||return|', 'moe_szyslak:', "what'sa", 'matter', '||comma||', 'homer', '||question_mark||', 'do', 'you', 'still', 'miss', 'the', 'upn', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'grumpy', '||right_parentheses||', 'yeah', '||comma||', 'but', "there's", 'something', 'else', '||period||', "there's", 'this', 'loser', 'staying', 'in', 'our', 'house', '||period||', 'marge', 'says', "she's", 'gonna', 'kick', 'him', 'out', '||comma||', 'but', 'then', 'she', 'never', 'does', '||period||', '||return|', 'carl_carlson:', 'well', '||comma||', 'you', "can't", 'kick', 'him', 'out', '||comma||', "'cause", 'then', 'marge', 'will', 'never', 'learn', 'to', 'assert', 'herself', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'i', 'guess', "i'll", 'have', 'to', 'wait', 'for', 'marge', 'to', 'show', 'some', 'backbone', 'and', '||dash||', '||left_parentheses||', 'notices', 'something', '||right_parentheses||', 'you', 'again', '||question_mark||', '||exclamation_mark||', '||return|', 'homer_simpson:', 'what', 'the', 'hell', 'is', 'this', 'thing', '||question_mark||', '||return|', '||return|', '||return|', 'carl_carlson:', 'what', 'is', 'it', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'i', 'just', 'had', 'this', 'awful', 'feeling', 'that', 'uh', '||comma||', "homer's", 'in', 'terrible', 'trouble', '||period||', '||return|', 'lenny_leonard:', 'oh', '||comma||', "that's", 'funny', '||period||', 'i', 'just', 'had', 'a', 'feeling', 'that', 'some', 'guy', 'i', "don't", 'know', 'named', 'fausto', 'is', 'in', 'trouble', '||period||', '||return|', 'moe_szyslak:', 'come', 'on', '||comma||', "we've", 'gotta', 'go', 'help', 'homer', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'and', 'fausto', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'whoa', '||comma||', "it's", 'really', "comin'", 'down', 'out', 'there', '||period||', '||return|', 'lenny_leonard:', 'we', 'could', 'run', 'to', 'the', 'car', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'but', 'then', "we'd", 'have', 'to', 'stand', 'there', 'while', 'we', 'get', 'the', 'doors', 'unlocked', '||period||', '||return|', 'lenny_leonard:', "don't", 'you', 'have', 'one', 'of', 'them', 'keys', 'that', 'beeps', 'the', 'doors', 'open', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'but', 'still', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', "what's", 'the', 'matter', '||comma||', 'declan', '||question_mark||', 'did', 'a', 'cop', 'give', 'ya', 'a', 'ticket', 'for', "talkin'", 'like', 'a', 'fruit', '||question_mark||', '||return|', 'declan_desmond:', "it's", 'the', 'oddest', 'thing:', 'i', 'actually', 'feel', 'affection', 'for', 'these', 'knuckle-dragging', 'sub-monkeys', '||period||', 'i', 'feel', 'sorry', 'for', 'homer', 'simpson', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'incredulous', '||right_parentheses||', 'whaddaya', 'been', "sippin'", 'cuckoo', 'juice', '||question_mark||', "homer's", 'got', 'it', 'made', '||period||', "he's", 'married', 'to', 'one', 'hell', 'of', 'a', 'woman', '||period||', 'all', "i've", 'got', 'is', 'this', 'porn', 'channel', "i'm", 'too', 'cheap', 'to', 'de-scramble', '||period||', '||return|', 'declan_desmond:', '||left_parentheses||', 'scrutinizing', '||right_parentheses||', "that's", 'an', 'ad', 'for', 'shoe', 'inserts', '||period||', '||return|', 'moe_szyslak:', 'what', 'the', '||question_mark||', '||exclamation_mark||', "i've", 'been', "writin'", 'creepy', 'letters', 'to', 'that', '||question_mark||', '||exclamation_mark||', '||return|', 'declan_desmond:', 'but', 'what', 'you', 'said', 'about', 'homer', "it's", '||period||', '||period||', '||period||', "it's", 'given', 'me', 'a', 'brilliant', 'idea', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'an', 'action', 'movie', 'where', 'i', 'play', 'the', 'pope', 'who', 'kills', 'the', 'president', '||question_mark||', '||return|', 'declan_desmond:', 'no', '||comma||', "that's", 'a', 'terrible', 'idea', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'quickly', '||right_parentheses||', 'yeah', '||comma||', 'i', 'know', '||comma||', 'it', 'is', 'stupid', '||period||', 'i', 'think', 'it', 'could', 'work', '||comma||', 'though', '||period||', 'i', 'even', 'got', 'a', 'title:', '||quotation_mark||', 'pontiff', 'no', 'return', '||quotation_mark||', '||period||', 'i', 'came', 'up', 'with', 'it', '||comma||', 'but', 'i', "don't", 'really', 'get', 'it', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'moans', '||right_parentheses||', 'how', 'could', 'my', 'dad', 'go', 'out', 'with', 'selma', '||question_mark||', "don't", 'those', 'two', 'gargoyles', 'know', 'that', 'love', 'is', 'for', 'good-looking', 'young', 'people', '||question_mark||', '||return|', 'moe_szyslak:', 'well', 'gee', '||comma||', 'homer', '||comma||', 'you', 'uh', '||comma||', "ain't", 'exactly', 'open-casket', 'material', 'yourself', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'words', 'hurt', '||comma||', 'you', 'know', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'you', 'gotta', 'be', "kiddin'", 'me', '||period||', '||return|', 'homer_simpson:', 'listen', 'to', "'em", '||period||', "they're", 'on', 'top', 'of', 'the', 'world', 'while', "i'm", "sittin'", 'here', 'pretending', 'i', 'have', 'a', 'stool', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sour', '||right_parentheses||', 'all', 'because', 'of', 'a', 'bunch', 'of', 'stuff', 'that', 'happened', '||period||', '||return|', 'lenny_leonard:', 'homer', '||comma||', "don't", 'be', 'so', 'quick', 'to', 'abandon', 'this', 'paparazzo', 'thing', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', "it's", 'an', 'american', 'tradition', 'to', 'cut', 'people', 'down', 'to', 'size', 'because', "they've", 'brought', 'so', 'much', 'joy', 'into', 'our', 'lives', '||period||', '||return|', 'lenny_leonard:', 'you', 'know', 'who', 'i', "can't", 'stand', '||question_mark||', 'that', 'robin', 'williams', '||period||', "y'know", 'one', 'time', 'i', 'saw', 'him', 'eating', 'dinner', 'with', 'his', 'children', '||comma||', 'he', "wouldn't", 'take', 'the', 'time', 'out', 'to', 'do', 'all', 'the', 'funny', 'bits', 'from', 'his', 'movies', '||period||', '||return|', 'carl_carlson:', 'and', 'my', 'sister', 'once', 'saw', 'burt', 'reynolds', 'at', 'an', 'airport', '||comma||', 'and', 'he', "wouldn't", 'even', 'co-sign', 'her', 'mortgage', '||period||', '||return|', 'homer_simpson:', 'you', 'guys', 'are', 'right', '||dash||', 'i', 'should', 'get', 'back', 'in', 'the', 'game', '||period||', '||left_parentheses||', 'moans', '||right_parentheses||', 'but', 'i', 'threw', 'away', 'my', 'camera', '||period||', '||return|', 'moe_szyslak:', 'uh', 'here', '||comma||', 'use', 'this', 'one', '||period||', '||return|', 'moe_szyslak:', 'i', 'was', 'gonna', 'use', 'it', 'to', 'take', 'secret', 'photos', 'in', 'the', "ladies'", 'turlet', '||period||', 'but', 'no', 'dames', 'ever', 'come', 'in', 'this', 'joint', '||exclamation_mark||', '||return|', 'homer_simpson:', 'thanks', '||comma||', 'moe', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'sure', '||period||', '||return|', 'attractive_woman_#1:', 'excuse', 'me', '||comma||', 'do', 'you', 'have', 'a', "ladies'", 'room', '||question_mark||', '||return|', 'attractive_woman_#2:', 'we', 'need', 'to', 'trade', 'bras', 'and', 'panties', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', "what'sa", 'matter', '||comma||', 'homer', 'and', 'bart', '||question_mark||', '||return|', 'homer_simpson:', "lisa's", 'mad', 'at', 'me', 'and', 'marge', 'is', 'mad', 'at', 'him', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', "i'm", 'just', 'the', 'bartender', 'here', '||comma||', '||left_parentheses||', 'points', 'to', 'homer', '||right_parentheses||', 'but', 'it', 'seems', 'to', 'me', 'you', 'could', 'win', 'lisa', 'back', 'by', 'appealing', 'to', 'her', 'sense', 'of', 'reason', '||period||', '||left_parentheses||', 'points', 'to', 'bart', '||right_parentheses||', 'and', 'you', 'could', 'win', 'your', 'mom', 'back', 'by', 'appealing', 'to', 'her', 'feelings', '||period||', '||return|', 'bart_simpson:', 'gee', 'moe', '||comma||', 'you', 'give', 'great', 'advice', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'joking', '||right_parentheses||', 'yeah', '||period||', 'what', 'have', 'you', 'done', 'with', 'the', 'real', 'moe', '||question_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'ya', 'know', '||comma||', 'i', 'think', "i'll", 'volunteer', '||comma||', 'too', '||period||', '||return|', 'barney_gumble:', 'why', 'did', 'you', 'say', '||quotation_mark||', 'too', '||question_mark||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', 'assume', "i'm", 'not', 'the', 'first', 'one', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'as', 'dentist', '||right_parentheses||', 'okay', '||comma||', 'this', 'might', 'hurt', 'a', 'little', '||period||', '||left_parentheses||', 'as', 'patient', '||comma||', 'cotton', 'in', 'mouth', '||right_parentheses||', 'no', 'problem', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'in', 'pain', '||right_parentheses||', 'oh', '||comma||', 'sweet', 'mother', 'of', 'mary', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'weirded-out', 'noise', '||comma||', 'then:', '||right_parentheses||', 'okay', '||comma||', 'milhouse', '||comma||', 'what', 'do', 'you', 'want', 'to', 'do', '||question_mark||', '||return|', 'milhouse_van_houten:', 'well', '||comma||', 'the', "school's", 'having', 'a', 'bake', 'sale', '||period||', '||return|', 'homer_simpson:', "ol'", "betsy'll", 'get', 'us', 'there', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'runs', 'in', '||right_parentheses||', 'hey', 'moe', '||comma||', 'got', 'any', 'milk', '||question_mark||', '||return|', 'moe_szyslak:', "it's", 'either', 'milk', '||period||', '||period||', '||period||', 'or', 'paint', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'disappointed', '||right_parentheses||', "it's", 'paint', '||period||', 'or', 'is', 'it', '||question_mark||', '||return|', 'homer_simpson:', 'yeah', '||comma||', "it's", 'paint', '||period||', '||return|', 'moe_szyslak:', 'oh', '||period||', 'then', "i'll", 'have', 'to', 'charge', 'you', 'extra', '||comma||', 'depending', 'on', 'the', 'color', '||period||', 'uh', '||comma||', 'stick', 'out', 'your', 'tongue', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'holding', 'up', 'strips', '||right_parentheses||', 'eggshell', '||question_mark||', 'no', '||period||', 'malabar', 'ivory', '||question_mark||', 'no', '||period||', 'mediterranean', 'ecru', '||question_mark||', 'no', '||period||', 'ah', '||comma||', 'here', 'it', 'is', '||dash||', 'white', '||period||', '||return|', 'moe_szyslak:', 'ooh', '||comma||', "that's", 'gonna', 'cost', 'ya', '||period||', '||return|', 'homer_simpson:', "i've", 'got', 'tow', 'dough', "i'm", "lookin'", 'to', 'blow', '||comma||', 'moe', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'huh', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'explaining', '||right_parentheses||', "i'm", 'buying', 'a', 'round', 'of', 'the', 'fanciest', 'drink', 'you', 'got', '||period||', '||return|', 'moe_szyslak:', 'four', '||quotation_mark||', 'lobster-politans', '||quotation_mark||', "comin'", 'up', '||exclamation_mark||', '||return|', 'carl_carlson:', "here's", 'to', 'homer', 'and', 'the', 'cars', 'he', 'towed', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'with', 'those', 'jerks', 'out', 'of', 'the', 'way', '||comma||', 'i', 'was', 'able', 'to', 'park', 'right', 'outside', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'smelling', 'blood', '||right_parentheses||', 'outside', '||question_mark||', "that's", 'a', 'one-hour', 'parking', 'zone', '||dash||', 'and', "you've", 'been', 'here', 'a', 'good', 'eighty-one', 'minutes', '||period||', '||return|', 'lenny_leonard:', 'correction', '||dash||', 'a', 'great', 'eighty-one', 'minutes', '||exclamation_mark||', "'cause", "nothin'", 'beats', "hangin'", 'around', 'with', 'old', 'friends', '||comma||', "drinkin'", 'lobster-based', 'designer', 'drinks', 'and', '||dash||', '||return|', 'lenny_leonard:', 'good', 'joke', '||comma||', 'homer', '||exclamation_mark||', '||left_parentheses||', 'nervous', 'laughter', '||right_parentheses||', 'you', 'can', 'unhook', 'my', 'car', 'now', '||period||', '||return|', 'carl_carlson:', 'uh', '||comma||', 'looks', 'like', "he's", 'driving', 'away', 'with', 'it', '||period||', '||return|', 'lenny_leonard:', 'no', '||comma||', "he's", 'just', 'moving', 'it', 'so', 'it', "won't", 'get', 'towed', '||period||', '||return|', 'moe_szyslak:', 'take', 'that', '||comma||', 'you', 'tow-talitarian', '||exclamation_mark||', '||return|', 'carl_carlson:', "doesn't", 'that', 'joke', 'make', 'light', 'of', 'totalitarians', '||question_mark||', '||return|', 'lenny_leonard:', 'yeah', '||period||', 'stalin', 'put', 'my', 'grandmother', 'in', 'a', 'forced', 'labor', 'camp', 'for', 'twenty', 'years', '||period||', '||return|', 'moe_szyslak:', 'look', '||comma||', 'i', 'was', 'insensitive', 'and', "i'm", 'sorry', '||period||', 'but', 'what', 'this', 'is', 'really', 'about', 'is', 'a', 'bully', 'with', 'a', 'winch', '||period||', '||return|', 'mayor_joe_quimby:', 'if', "i'd", 'wanted', 'the', 'laws', 'of', 'this', 'town', 'enforced', 'to', 'the', 'letter', '||comma||', 'i', "wouldn't", 'have', 'hired', 'fatty', 'here', 'as', 'police', 'chief', '||period||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'to', 'ralph', '||right_parentheses||', 'hear', 'that', '||comma||', 'ralphie', '||question_mark||', 'the', 'mayor', 'knows', 'daddy', '||exclamation_mark||', '||return|', 'agnes_skinner:', 'all', 'right', '||comma||', 'listen', 'up', '||period||', 'i', 'know', 'a', 'thing', 'or', 'two', 'about', 'tow-joes', '||period||', 'i', 'married', 'three', 'of', "'em", '||comma||', 'and', "they're", 'real', 'territorial', '||period||', 'now', "here's", 'the', 'plan', '||period||', '||period||', '||period||', '||return|', 'agnes_skinner:', 'get', 'in', 'here', '||comma||', 'mel', '||period||', 'i', "don't", 'bite', '||period||', 'i', 'might', 'gum', 'ya', '||period||', 'and', 'you', 'might', 'like', 'it', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'moe', '||comma||', 'my', "family's", 'gone', '||comma||', 'my', 'dog', 'hates', 'me', '||comma||', 'and', 'i', "can't", 'remember', 'what', 'happened', 'last', 'night', '||period||', 'was', 'i', 'here', '||question_mark||', '||return|', 'moe_szyslak:', 'was', 'you', 'ever', '||period||', 'you', 'came', 'in', "sayin'", 'you', 'really', 'needed', 'to', 'forget', 'something', '||comma||', 'so', 'i', 'mixed', 'you', 'up', 'the', 'most', 'powerful', 'drink', 'i', 'got', '||period||', '||period||', '||period||', '||left_parentheses||', 'dramatic', '||right_parentheses||', 'the', '||quotation_mark||', 'forget-me-shot', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', 'a', '||quotation_mark||', 'forget-me-shot', '||question_mark||', '||quotation_mark||', 'never', 'heard', 'of', 'it', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'proud', '||right_parentheses||', 'that', 'means', 'it', 'worked', '||period||', 'no', 'one', 'ever', 'remembers', '||period||', "that's", 'why', 'i', 'made', 'this', 'video', 'to', 'explain', 'the', 'process', '||period||', '||return|', 'moe_szyslak:', 'you', 'start', 'with', 'a', 'splash', 'of', 'jaegermeister', '||comma||', 'then', 'add', 'sloe', 'gin', '||comma||', 'triple-sec', '||comma||', 'quadruple-sec', '||comma||', 'gunk', 'from', 'a', "dog's", 'eye', '||comma||', 'absolut', 'pickle', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'mmm', '||comma||', 'pickle', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'the', 'red', 'stripe', 'from', 'aquafresh', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'and', 'the', 'funniest', 'ingredient', '||period||', '||period||', '||period||', 'the', 'venom', 'of', 'the', 'louisiana', 'loboto-moth', '||period||', '||return|', 'moe_szyslak:', "c'mon", '||comma||', 'sweetie', '||period||', '||return|', 'moe_szyslak:', 'you', 'stir', 'it', 'with', 'a', 'home', 'pregnancy', 'test', 'till', 'it', 'turns', '||quotation_mark||', 'positive', '||quotation_mark||', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'and', 'presto:', 'the', 'forget-me-shot', '||period||', '||return|', 'moe_szyslak:', 'aw', 'jeez', '||comma||', 'i', "don't", 'look', 'like', 'that', '||period||', '||return|', 'moe_szyslak:', 'the', 'point', 'is', '||comma||', 'this', 'drink', 'is', 'the', 'ultimate', 'brain', 'bleacher', '||period||', '||left_parentheses||', 'slight', 'menace', '||right_parentheses||', 'one', 'swig', 'wipes', 'out', 'the', 'last', 'day', 'of', 'your', 'life', '||period||', '||return|', 'krusty_the_clown:', '||left_parentheses||', 'entering', '||comma||', 'upset', '||right_parentheses||', 'gimme', 'one', 'of', 'those', 'forget-me-drinks', '||dash||', 'i', 'made', 'a', 'mistake', 'i', 'gotta', 'wipe', 'out', '||exclamation_mark||', 'i', 'was', 'trying', 'to', 'do', 'a', 'don', 'rickles', 'about', 'arabs', '||comma||', 'but', 'it', 'turned', 'into', 'a', 'mel', 'gibson', 'about', 'mexicans', '||period||', '||return|', 'krusty_the_clown:', 'what', 'the', 'hell', 'am', 'i', "doin'", 'here', '||question_mark||', 'i', 'gotta', 'get', 'back', 'to', 'the', 'latin', 'grammys', '||period||', '||return|', 'hispanic_crowd:', 'there', 'he', 'is', '||exclamation_mark||', '/', 'get', 'him', '||exclamation_mark||', '/', '||left_parentheses||', 'angry', 'jeers', '||right_parentheses||', 'hot', 'sauce', 'his', 'eyes', '||exclamation_mark||', '||return|', 'homer_simpson:', 'oh', 'my', 'god', '||comma||', 'why', 'would', 'i', 'wanna', 'wipe', 'out', 'my', 'memory', '||question_mark||', 'what', 'horrible', 'thing', 'did', 'i', 'do', '||question_mark||', '||return|', 'chief_wiggum:', 'you', "don't", 'remember', '||comma||', 'huh', '||question_mark||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'sternly', '||right_parentheses||', 'there', 'was', 'a', 'domestic', 'disturbance', 'at', 'your', 'address', 'yesterday', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'shocked', 'remembering', 'noise', '||right_parentheses||', 'chief', 'wiggum', '||exclamation_mark||', 'i', 'remember', 'seeing', 'you', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'marge', 'had', 'a', 'black', 'eye', '||question_mark||', '||exclamation_mark||', 'i', 'could', 'never', 'do', 'something', 'like', 'that', '||exclamation_mark||', '||left_parentheses||', 'worried', '||right_parentheses||', 'could', 'i', '||question_mark||', '||return|', 'chief_wiggum:', 'why', "don't", 'you', 'ask', 'the', 'person', 'who', 'filed', 'the', 'complaint', '||question_mark||', 'not', 'that', 'i', 'am', 'authorized', 'to', 'release', 'that', 'infor', '||dash||', '||return|', 'homer_simpson:', 'flanders', '||exclamation_mark||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'pissed', '||right_parentheses||', 'fine', '||comma||', 'it', 'was', 'flanders', '||period||', 'now', 'since', 'you', 'know', 'everything', '||comma||', 'who', 'was', 'jack', 'the', 'ripper', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'running', 'out', '||comma||', 'doppler', '||right_parentheses||', 'the', "queen's", 'private', 'surgeonnn', '||exclamation_mark||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'stunned', '||right_parentheses||', 'wow', '||period||', '||return|', 'homer_simpson:', 'marge', 'put', 'so', 'much', 'work', 'into', 'that', 'party', '||period||', 'the', 'least', 'i', 'could', 'do', 'is', 'be', 'surprised', '||period||', 'if', 'only', 'i', 'could', 'forget', 'what', 'happened', 'today', '||period||', '||return|', 'moe_szyslak:', 'i', 'got', 'just', 'the', 'drink', 'to', 'wipe', 'your', 'mind', 'clean', '||period||', '||period||', '||period||', 'the', '||quotation_mark||', 'forget-me-shot', '||period||', '||quotation_mark||', '||left_parentheses||', 'to', 'lenny', 'and', 'carl', '||right_parentheses||', 'fellas', '||comma||', 'if', 'you', 'got', 'anything', 'that', 'you', 'want', 'to', 'say', 'to', 'homer', 'that', "he'll", 'never', 'remember', '||comma||', 'say', 'it', 'now', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'quickly', '||right_parentheses||', 'blue', 'pants', 'make', 'you', 'look', 'fat', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'piling', 'on', '||right_parentheses||', "i've", 'never', 'learned', 'your', "kids'", 'names', '||period||', '||return|', 'lenny_leonard:', 'your', 'yard', 'is', 'unkempt', '||period||', '||return|', 'carl_carlson:', 'it', 'is', 'obvious', "you're", 'bald', '||period||', '||return|', 'lenny_leonard:', 'your', 'thighs', 'make', 'noise', '||period||', '||return|', 'carl_carlson:', 'i', 'find', 'your', 'small', 'hands', 'attractive', '||period||', '||return|', 'moe_szyslak:', "i've", 'spit', 'in', 'every', 'drink', 'i', 'ever', 'served', 'you', '||period||', '||left_parentheses||', 'spits', 'in', "homer's", 'drink', '||right_parentheses||', 'bottoms', 'up', '||exclamation_mark||', '||return|', 'homer_simpson:', 'hmmm', '||period||', '||period||', '||period||', 'the', 'only', 'problem', 'is', '||comma||', "i'm", 'sure', 'to', 'retain', 'some', 'image', 'of', 'coming', 'home', 'and', 'finding', 'duffman', '||period||', 'no', 'doubt', "i'll", 'misconstrue', 'that', 'as', 'him', 'placing', 'a', "cuckold's", 'horns', 'upon', 'my', 'brow', '||period||', 'and', 'that', 'will', 'make', 'me', 'want', 'to', 'jump', 'off', 'a', '||dash||', '||left_parentheses||', 'gasps', '||right_parentheses||', '||return|', 'homer_simpson:', 'for', 'the', 'love', 'of', 'god', '||comma||', 'make', 'sure', 'the', 'party', 'boat', 'has', 'a', 'moon-bounce', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'amiable', '||right_parentheses||', 'okay', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'i', 'like', 'you', 'newsies', '||period||', 'you', 'really', 'lap', 'up', 'the', 'sauce', '||period||', '||return|', 'scruffy_blogger:', 'do', 'you', 'have', 'internet', 'access', '||question_mark||', '||return|', 'moe_szyslak:', 'sure', 'thing', '||comma||', 'mouse', 'pad', '||period||', 'ten', 'bucks', '||period||', '||return|', 'moe_szyslak:', 'knock', 'yourself', 'out', '||period||', '||return|', 'homer_simpson:', 'is', 'everyone', 'here', 'as', 'sick', 'of', 'those', 'stupid', 'politicians', 'as', 'i', 'am', '||question_mark||', '||return|', 'seymour_skinner:', 'what', 'about', 'the', 'media', '||question_mark||', "they're", 'not', 'covering', 'the', 'issues', '||comma||', 'they', 'just', 'want', 'to', 'declare', 'a', 'frontrunner', 'and', 'go', 'back', 'to', 'their', 'mansions', '||period||', '||return|', 'moe_szyslak:', 'who', 'wants', 'to', 'abolish', 'democracy', 'forever', '||question_mark||', 'show', 'of', 'hands', '||period||', '||return|', 'carl_carlson:', 'i', 'could', 'really', 'go', 'for', 'some', 'kinda', 'military', 'dictator', '||comma||', 'like', 'juan', 'perã³n', '||period||', 'when', 'he', 'disappeared', 'ya', '||comma||', 'you', 'stayed', 'disappeared', '||period||', '||return|', 'lenny_leonard:', 'plus', 'his', 'wife', 'was', 'madonna', '||period||', '||return|', 'ned_flanders:', "what're", 'we', 'gonna', 'do', '||question_mark||', 'we', "can't", 'not', 'vote', '||period||', 'nobody', 'does', 'that', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'getting', 'idea', '||right_parentheses||', 'why', "don't", 'we', 'all', 'pick', 'the', 'most', 'ridiculous', 'candidate', '||comma||', 'and', 'write', 'him', 'in', '||question_mark||', '||return|', 'apu_nahasapeemapetilon:', 'you', 'mean', 'dennis', 'kucinich', '||question_mark||', '||return|', 'dennis_kucinich:', '||left_parentheses||', 'twerpy', 'kid', 'voice', '||right_parentheses||', 'hey', '||exclamation_mark||', '||return|', 'dennis_kucinich:', "i'm", 'right', 'here', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'sorry', '||period||', '||return|', 'homer_simpson:', 'no', '||comma||', 'no', '||period||', 'this', 'candidate', 'has', 'to', 'be', 'unbelievably', 'ridiculous', '||period||', '||return|', 'chief_wiggum:', 'chief', 'wiggum', '||exclamation_mark||', '||return|', 'homer_simpson:', 'no', '||period||', '||left_parentheses||', 'getting', 'idea', '||right_parentheses||', 'but', "you're", 'close', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'sips', 'it', '||right_parentheses||', 'not', 'quite', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||period||', '||period||', '||period||', '||left_parentheses||', 'points', 'to', 'door', '||right_parentheses||', 'get', 'out', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'all', 'right', '||comma||', 'i', 'need', 'you', 'to', 'get', 'the', 'rats', 'outta', 'the', 'jukebox', '||comma||', 'and', 'clean', 'the', 'vomit', 'out', 'of', 'the', 'pool', 'table', 'pockets', '||comma||', 'and', 'then', "you've", 'got', 'the', 'job', '||period||', 'oh', '||comma||', 'and', "you've", 'gotta', 'share', 'your', 'tips', 'with', 'manuel', '||comma||', "who's", 'actually', 'me', 'with', 'a', 'fake', 'moustache', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'spanish', 'accent', '||right_parentheses||', 'ees', 'good', 'job', '||comma||', 'you', 'should', 'take', 'it', '||period||', '||return|', 'carl_carlson:', 'say', 'lurleen', '||comma||', 'are', 'you', 'jamaican', '||question_mark||', "'cause", '||quotation_mark||', 'jamaican', '||quotation_mark||', 'me', 'crazy', '||period||', '||return|', 'lurleen_lumpkin:', '||left_parentheses||', 'mild', 'chuckle', '||right_parentheses||', "that's", 'sweet', '||comma||', 'but', "i'm", 'not', "lookin'", 'to', 'date', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'backing', 'away', '||right_parentheses||', 'no', '||comma||', "i'm", 'glad', 'you', 'said', 'that', '||period||', "'cause", 'you', 'reminded', 'me', 'that', "i'm", 'not', 'looking', 'to', 'date', '||comma||', 'either', '||period||', 'so', '||period||', '||period||', '||period||', 'so', 'great', '||period||', '||return|', 'lenny_leonard:', 'hey', 'lurleen', '||comma||', "i'm", 'going', 'down', 'to', 'the', 'rock', 'quarry', 'tonight', 'to', 'throw', 'stones', 'at', 'the', 'woodchucks', '||period||', 'wanna', 'come', '||question_mark||', '||return|', 'lurleen_lumpkin:', 'no', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'pleasant', '||right_parentheses||', "it's", 'okay', '||comma||', 'i', 'understand', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'to', 'self', '||right_parentheses||', "someone's", "lookin'", 'at', 'a', 'snake', 'in', 'her', 'mailbox', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'sorry', 'about', 'your', 'ma', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'i', 'just', 'wish', 'she', "hadn't", 'died', 'thinking', 'i', 'hated', 'her', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'you', 'should', 'always', 'make', 'peace', 'with', 'your', 'loved', 'ones', '||period||', '||return|', 'lenny_leonard:', 'i', 'think', "i'll", 'give', 'my', 'ma', 'a', 'call', 'right', 'now', '||period||', '||left_parentheses||', 'takes', 'out', 'cell', 'phone', 'and', 'dials', '||right_parentheses||', 'hey', 'mom', '||comma||', 'i', 'just', 'wanted', 'you', 'to', 'know', 'that', 'you', 'mean', '||dash||', 'yeah', '||comma||', "he's", 'here', '||period||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'mrs', '||period||', 'l', '||period||', 'those', 'butter', 'cookies', 'you', 'sent', 'were', 'tasty', '||comma||', 'and', 'the', 'almond', 'ones', '||comma||', 'ooo', '||exclamation_mark||', '||left_parentheses||', 'listens', '||right_parentheses||', 'aw', '||comma||', 'i', 'wish', 'i', 'was', 'your', 'son', 'too', '||period||', 'all', 'right', '||comma||', "i'm", 'gonna', 'pass', 'you', 'back', '||dash||', 'okay', '||comma||', 'okay', '||comma||', "i'll", 'tell', 'him', '||period||', '||left_parentheses||', 'hangs', 'up', 'phone', '||right_parentheses||', 'uh', 'moe', '||comma||', "lenny's", 'mom', 'says', 'she', 'loves', 'you', '||period||', '||return|', '||return|', '||return|', 'marge_simpson:', 'it', 'shows', 'you', 'care', '||period||', '||return|', 'moe_szyslak:', "that's", 'right', '||comma||', 'my', 'beautiful', '||comma||', 'beautiful', 'midge', '||dash||', '||left_parentheses||', 'sneaky', 'chuckle', '||right_parentheses||', 'soon', "you'll", 'be', 'mine', '||period||', '||return|', '||return|', '||return|', 'barflies:', '||left_parentheses||', 'chanting', '||right_parentheses||', 'lenny', '||comma||', 'lenny', "he's", 'our', 'guy', '||exclamation_mark||', '/', 'got', 'the', 'ticket', 'homer', "didn't", 'buy', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', 'cheer', 'up', '||comma||', 'homer', '||period||', 'the', 'drinks', 'are', 'on', 'lenny', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sad', '||right_parentheses||', 'i', "don't", 'want', 'your', 'pity', 'booze', '||period||', "i'll", 'pay', 'for', 'it', 'myself', '||period||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'i', 'gotta', 'check', 'with', 'lenny', 'on', 'that', '||period||', 'uh', '||comma||', 'is', 'that', 'all', 'right', '||comma||', 'lenny', '||question_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'friendly', '||right_parentheses||', 'nope', '||comma||', 'lucky', "lenny's", 'buying', 'all', 'the', 'drinks', 'tonight', '||period||', '||return|', 'moe_szyslak:', 'sorry', 'homer', '||comma||', 'but', "here's", 'a', 'compromise:', 'why', "don't", 'you', 'both', 'pay', 'for', 'the', 'drink', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'pointed', '||right_parentheses||', 'and', 'tip', '||period||', '||return|', 'lenny_leonard:', 'i', 'just', 'wanna', 'tell', 'you', 'all', 'that', 'even', 'before', 'i', 'won', 'this', 'money', '||comma||', 'i', 'was', 'the', 'luckiest', 'guy', 'in', 'the', 'world', "'cause", 'i', 'got', 'friends', 'like', 'you', '||period||', '||return|', 'lenny_leonard:', "that's", 'why', "i'm", 'spending', 'my', 'remaining', 'scratcher', 'winnings', 'on', 'a', 'kick-ass', 'party', 'for', 'all', 'my', 'friends', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'hey', 'moe', '||comma||', 'gimme', 'a', '||dash||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'shush', '||exclamation_mark||', '||left_parentheses||', 'sotto', '||right_parentheses||', "we're", 'watching', 'krabappel', 'try', 'to', 'break', 'up', 'with', 'skinner', '||period||', '||return|', 'edna_krabappel-flanders:', '||left_parentheses||', 'uncomfortable', '||right_parentheses||', 'seymour', '||comma||', 'i', 'have', 'something', 'difficult', 'i', 'want', 'to', 'say', 'to', 'you', '||period||', '||return|', 'seymour_skinner:', 'i', 'understand', '||period||', 'it', 'can', 'be', 'very', 'difficult', 'for', 'a', 'woman', 'to', 'propose', 'marriage', '||period||', 'but', 'i', 'am', 'willing', 'to', 'go', 'halvsies', 'on', 'a', 'ring', '||period||', '||return|', 'edna_krabappel-flanders:', 'seymour', '||period||', '||period||', '||period||', '||left_parentheses||', 'sighs', '||right_parentheses||', 'excuse', 'me', '||period||', '||return|', 'edna_krabappel-flanders:', 'any', 'of', 'you', 'lugs', 'wanna', 'break', 'up', 'with', 'my', 'boyfriend', 'for', 'me', '||question_mark||', "i'll", 'buy', 'you', 'a', 'beer', '||exclamation_mark||', '||return|', 'homer_simpson:', 'seymour', '||period||', '||period||', '||period||', 'edna', 'asked', 'me', 'to', 'talk', 'to', 'you', '||period||', '||return|', 'seymour_skinner:', 'splendid', '||exclamation_mark||', 'shall', 'we', 'discuss', 'music', '||comma||', 'or', 'the', 'weather', '||question_mark||', '||return|', 'homer_simpson:', 'no', '||comma||', 'this', 'is', 'about', 'you', '||period||', '||left_parentheses||', 'gently', '||right_parentheses||', 'edna', 'wants', 'to', 'break', 'up', '||period||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'small', '||comma||', 'sad', '||right_parentheses||', 'she', 'wants', 'to', 'break', 'up', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sweet', '||right_parentheses||', 'yeah', '||period||', '||return|', 'seymour_skinner:', 'with', 'me', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sweet', '||right_parentheses||', 'yeah', '||period||', '||return|', 'homer_simpson:', 'look', 'at', 'it', 'this', 'way:', "you're", 'a', 'free', 'man', '||period||', '||period||', '||period||', '||left_parentheses||', 'bitter', '||right_parentheses||', 'unlike', 'me', '||period||', 'you', 'have', 'all', 'your', 'hair', '||period||', '||period||', '||period||', '||left_parentheses||', 'bitter', '||right_parentheses||', 'unlike', 'me', '||period||', 'no', 'kids', 'tying', 'you', 'down', '||comma||', 'or', 'a', 'crippling', 'mortgage', 'that', 'you', 'refinanced', 'at', 'twenty-six', 'percent', 'because', 'a', 'dancing', 'internet', 'cowboy', 'told', 'you', 'to', '||period||', '||period||', '||period||', '||left_parentheses||', 'sobs', '||right_parentheses||', 'oh', '||comma||', 'god', '||comma||', 'i', 'hate', 'my', 'life', '||exclamation_mark||', '||left_parentheses||', 'sobs', '||right_parentheses||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'encouraged', '||right_parentheses||', 'gee', '||period||', 'compared', 'to', 'you', '||comma||', 'my', 'life', 'is', 'one', 'big', 'half-day', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'encouraging', '||right_parentheses||', 'exactly', '||period||', "you're", 'good', 'looking', '||comma||', 'have', 'a', 'decent', 'job', '||period||', '||period||', '||period||', 'what', 'lonely', 'widow', "wouldn't", 'consider', 'you', 'an', 'option', '||question_mark||', '||return|', 'seymour_skinner:', 'thanks', '||comma||', 'homer', '||period||', 'i', "don't", 'think', 'the', 'school', 'pep', 'squad', "could've", 'cheered', 'me', 'up', 'more', '||period||', 'and', 'they', 'were', 'state', 'runners', 'up', 'in', 'nineteen', 'ninety-seven', '||exclamation_mark||', '||return|', 'carl_carlson:', 'homer', '||comma||', 'that', 'was', 'amazing', '||dash||', 'he', 'actually', 'felt', 'better', "comin'", 'outta', 'the', 'break-up', 'than', 'he', 'did', "goin'", 'in', '||period||', '||return|', 'lenny_leonard:', 'say', 'homer', '||comma||', "you're", 'real', 'good', 'at', 'this', '||period||', 'think', 'you', 'could', 'dump', 'my', 'girlfriend', 'doreen', 'for', 'me', '||question_mark||', '||return|', 'moe_szyslak:', 'doreen', '||question_mark||', "she's", 'cheated', 'on', 'you', 'with', 'everyone', '||dash||', 'well', '||comma||', 'except', 'for', 'me', '||period||', 'and', "i've", 'showered', 'her', 'with', 'gifts', '||exclamation_mark||', 'fancy', 'soaps', 'and', 'massage', 'oils', 'and', 'uh', '||period||', '||period||', '||period||', 'what', 'have', 'ya', '||period||', '||period||', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'looks', 'out', 'window', '||right_parentheses||', 'ooh', '||comma||', 'here', 'she', 'comes', '||dash||', 'work', 'your', 'magic', '||comma||', 'homer', '||exclamation_mark||', '||return|', 'doreen:', 'is', 'lenny', 'here', '||question_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', "i'm", 'afraid', "lenny's", 'dead', '||period||', '||return|', 'doreen:', '||left_parentheses||', 'quiet', 'shock', '||right_parentheses||', 'what', '||question_mark||', 'i', 'just', 'talked', 'to', 'him', '||period||', '||return|', 'homer_simpson:', 'and', 'you', 'will', 'again', '||period||', 'because', 'he', "isn't", 'really', 'dead', '||period||', 'and', 'now', 'this', 'next', 'piece', 'of', 'news', "won't", 'seem', 'so', 'bad', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', "lisa's", 'mad', 'at', 'me', '||comma||', 'and', 'now', "she's", 'using', "marge's", 'maiden', 'name', 'instead', 'of', 'mine', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'whatever', 'you', 'done', 'to', 'that', 'little', 'girl', '||comma||', 'you', 'just', 'gotta', 'do', 'something', 'even', 'nicer', 'to', 'win', 'her', 'back', '||period||', '||return|', 'carl_carlson:', 'she', 'may', 'never', 'take', 'back', 'your', 'name', '||comma||', 'but', "there's", 'still', 'a', 'chance', "she'll", 'take', 'you', 'back', 'as', 'a', 'daddy', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'touched', '||right_parentheses||', 'wow', '||period||', '||period||', '||period||', 'nobody', 'gives', 'better', 'parenting', 'advice', 'than', 'childless', 'drunks', '||period||', '||return|', 'moe_szyslak:', 'so', 'the', 'name', '||quotation_mark||', 'lisa', 'simpson', '||quotation_mark||', 'is', 'available', '||comma||', 'huh', '||question_mark||', '||left_parentheses||', 'considering', '||right_parentheses||', 'lotta', 'goodwill', 'attached', 'to', 'that', 'name', '||period||', '||period||', '||period||', '||left_parentheses||', 'nods', '||right_parentheses||', "i'm", 'gonna', 'take', 'it', '||period||', '||return|', 'moe_szyslak:', "lisa's", 'tavern', '||comma||', 'lisa', 'speaking', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', '||left_parentheses||', 'pointed', '||right_parentheses||', 'hey', 'carl', '||comma||', 'got', 'any', 'idea', 'what', 'direction', "mecca's", 'in', '||question_mark||', '||return|', 'carl_carlson:', 'why', "don'tcha", 'ask', 'homer', '||question_mark||', 'he', 'oughtta', 'know', '||comma||', 'by', 'dint', 'of', 'his', "son's", 'new', 'friend', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', "bashir's", 'great', '||period||', 'if', 'derek', 'jeter', 'married', 'mariah', 'carey', '||comma||', 'it', "wouldn't", 'last', '||comma||', 'but', 'i', 'bet', "they'd", 'have', 'a', 'kid', 'like', 'him', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'this', 'is', 'serious', '||period||', 'this', 'bashir', 'kid', 'is', 'muslim', '||comma||', 'and', 'therefore', 'up', 'to', 'something', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'i', "can't", 'believe', 'that', 'till', 'i', 'see', 'a', 'fictional', 'tv', 'program', 'espousing', 'your', 'point', 'of', 'view', '||period||', '||return|', 'fbi_agent:', 'for', 'the', 'last', 'time', '||comma||', 'fayed', '||comma||', 'where', 'did', 'you', 'hide', 'the', 'nerve', 'gas', '||exclamation_mark||', '||return|', 'arab_man:', 'under', 'your', 'statue', 'of', "liberty's", 'dress', '||exclamation_mark||', '||return|', 'arab_man:', 'and', 'she', 'loved', 'it', '||exclamation_mark||', '||return|', 'homer_simpson:', 'oh', 'my', 'god', '||period||', 'what', 'can', 'i', 'do', '||question_mark||', '||return|', 'carl_carlson:', 'well', '||comma||', 'if', 'you', 'want', 'to', 'stop', 'bashir', 'and', 'his', 'war', 'on', 'american', 'principles', '||comma||', 'you', 'could', 'discriminate', 'against', 'his', 'family', '||comma||', 'in', 'employment', 'and', 'housing', '||period||', '||return|', 'lenny_leonard:', "that's", 'pretty', 'patriotic', '||comma||', 'but', 'i', 'got', 'a', 'better', 'idea', '||dash||', 'invite', "'em", 'over', '||period||', '||return|', 'moe_szyslak:', 'a', 'little', 'dinner', '||comma||', 'a', 'little', 'dessert', '||comma||', 'then', 'you', 'jack', 'bauer', "'em", 'into', 'giving', 'you', 'all', 'their', 'secrets', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'grimly', '||right_parentheses||', 'i', 'guess', 'i', 'have', 'no', 'choice', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', "what's", 'wrong', 'with', 'your', 'bees', '||comma||', 'lisa', '||question_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'bitter', '||right_parentheses||', 'mr', '||period||', 'burns', 'took', 'away', 'their', 'sanctuary', '||comma||', 'and', 'now', 'they', "aren't", 'strong', 'enough', 'to', 'survive', 'on', 'their', 'own', '||period||', '||return|', 'lisa_simpson:', "i'm", 'going', 'home', '||period||', 'give', 'me', 'the', 'keys', 'to', 'my', 'bike', 'lock', '||period||', '||return|', 'moe_szyslak:', 'are', 'you', 'sure', '||question_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'give', 'me', 'the', 'keys', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'okay', '||exclamation_mark||', '||left_parentheses||', 'hands', 'her', 'the', 'keys', '||right_parentheses||', "don't", 'know', 'why', 'i', 'had', "'em", 'in', 'the', 'first', 'place', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'moans', '||right_parentheses||', "i'd", 'do', 'anything', 'to', 'cheer', 'up', 'my', 'little', 'girl', '||period||', '||return|', 'moe_szyslak:', 'really', '||question_mark||', '||return|', 'moe_szyslak:', 'listen', 'homer', '||comma||', 'in', 'the', 'back', 'room', 'i', 'got', 'these', 'super-tough', 'africanized', 'bees', '||period||', 'i', 'saw', 'this', 'ad', 'in', 'a', "gentleman's", 'magazine', 'for', 'excited', 'african', 'honeys', '||comma||', 'and', "that's", 'what', 'they', 'sent', 'me', '||period||', 'if', 'we', 'could', 'combine', 'them', 'with', "lisa's", 'bees', '||comma||', 'it', 'would', 'make', 'them', 'strong', 'enough', 'to', 'survive', 'any', 'environment', '||period||', '||return|', 'homer_simpson:', 'huh', '||question_mark||', 'but', 'how', 'are', 'we', 'supposed', 'to', 'combine', 'the', 'dna', 'of', 'two', 'strains', 'of', 'the', 'same', 'species', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'gets', 'idea', '||right_parentheses||', 'actually', 'homer', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'eyes', 'wide', '||comma||', 'gasps', '||right_parentheses||', 'you', 'and', 'me', '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||comma||', 'the', 'bees', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'protesting', 'too', 'much', '||right_parentheses||', 'oh', 'yeah', '||comma||', 'yeah', '||comma||', "that's", 'what', 'i', 'meant', 'too', '||period||', 'i', 'have', 'no', '||period||', '||period||', '||period||', 'inclination', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'got', 'the', 'queen', '||question_mark||', '||return|', 'homer_simpson:', 'yep', '||period||', '||return|', 'homer_simpson:', 'and', "she's", 'ready', 'for', 'a', 'night', 'of', 'anonymous', 'sex', 'with', 'multiple', 'partners', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', '||return|', 'moe_szyslak:', 'now', '||comma||', "let's", 'give', 'them', 'some', 'privacy', 'while', 'they', '||period||', '||period||', '||period||', 'get', 'down', 'to', 'buzziness', '||period||', '||left_parentheses||', 'slight', 'chuckle', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sniffles', '||comma||', 'then', '||comma||', 'impatient', '||right_parentheses||', 'if', 'they', 'was', 'me', "they'd", 'be', 'done', 'by', 'now', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'homer', '||comma||', 'you', 'wanna', 'try', 'my', 'new', 'vance', 'connor-politan', '||question_mark||', 'like', 'vance', '||comma||', 'it', 'is', 'smooth', '||comma||', 'cool', 'and', 'oh-so-sophisticated', '||period||', '||return|', 'homer_simpson:', "i'll", 'just', 'stick', 'with', 'my', 'beer', '||period||', '||return|', 'lenny_leonard:', 'homer', '||comma||', 'why', 'are', 'you', 'so', 'down', 'on', 'vance', 'connor', '||question_mark||', 'he', 'gave', 'me', 'one', 'of', 'his', 'kidneys', '||period||', '||return|', 'carl_carlson:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return|', 'homer_simpson:', 'because', 'when', 'vance', 'beat', 'me', 'in', 'that', 'election', '||comma||', 'he', 'ruined', 'my', 'life', '||period||', '||return|', 'homer_simpson:', 'why', 'did', 'you', 'just', 'exchange', 'that', 'look', 'of', 'guilt', '||question_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'lenny', '||comma||', 'uh', '||comma||', 'i', 'think', "it's", 'time', 'for', 'us', 'to', 'come', 'clean', '||period||', '||return|', 'lenny_leonard:', 'about', 'how', 'we', 'give', 'each', 'other', 'haircuts', '||question_mark||', '||return|', 'carl_carlson:', 'no', '||comma||', "we'll", 'take', 'that', 'secret', 'to', 'our', 'graves', '||period||', "i'm", "talkin'", 'about', 'uh', '||left_parentheses||', 'shoots', 'lenny', 'meaningful', 'look', '||right_parentheses||', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', '||return|', 'lenny_leonard:', 'oh', '||comma||', 'right', '||exclamation_mark||', 'listen', '||comma||', 'homer', '||comma||', "somethin'", 'weird', 'happened', 'back', 'in', 'high', 'school', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'intrigued', '||right_parentheses||', 'so', "there's", 'a', 'chance', 'i', 'actually', 'won', '||exclamation_mark||', "i've", 'got', 'to', 'dig', 'up', 'that', 'ballot', 'box', '||exclamation_mark||', '||return|', 'al_gore:', 'just', 'let', 'it', 'go', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'al', 'gore', '||question_mark||', '||return|', 'al_gore:', 'homer', '||comma||', 'i', 'had', 'a', 'presidential', 'election', 'stolen', 'from', 'me', '||period||', 'but', 'i', 'moved', 'on', '||comma||', 'and', 'i', 'think', 'you', 'could', 'say', 'everything', 'worked', 'out', 'all', 'right', '||period||', '||return|', 'al_gore:', '||left_parentheses||', 'to', 'nobel', 'prize', '||right_parentheses||', "isn't", 'that', 'right', '||comma||', 'alfred', '||question_mark||', '||left_parentheses||', 'holding', 'up', 'nobel', 'prize', '||comma||', 'speaking', 'in', 'a', 'falsetto', '||comma||', 'as', 'alfred', 'nobel', '||right_parentheses||', 'it', 'sure', 'is', '||comma||', 'albert', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'people', 'like', 'flanders', 'make', 'me', 'sick', '||period||', 'if', 'i', 'was', "marge's", 'landlord', "i'd", 'fix', 'her', 'pipes', 'and', "i'd", 'shower', 'her', 'with', 'flowers', 'and-and', 'take', 'her', 'on', 'a', 'romantic', 'getaway', 'to', 'the', 'south', 'seas', 'and', 'i', '||period||', '||period||', '||period||', "i'd", 'never', 'return', '||period||', '||return|', 'homer_simpson:', 'yeah', '||comma||', "you'd", 'treat', 'her', 'right', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', "here's", 'how', 'you', 'get', 'back', 'at', 'flanders:', 'you', 'go', 'to', 'the', 'media', 'and', 'get', 'them', 'to', 'expose', 'what', 'a', 'horrible', 'person', 'he', 'really', 'is', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'right', '||dash||', 'like', '||quotation_mark||', 'dateline', '||quotation_mark||', 'did', 'to', 'you', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'three', 'times', '||period||', '||left_parentheses||', 'upbeat', '||right_parentheses||', 'the', 'last', 'one', 'was', 'nominated', 'for', 'a', 'peabody', '||comma||', 'whatever', 'that', 'is', '||period||', '||return|', 'kent_brockman:', 'this', 'is', 'kent', 'brockman', 'with', 'a', 'channel', '6', 'exclusive:', 'the', 'evil', 'ned', '||period||', '||return|', 'kent_brockman:', 'seven', 'forty-two', 'evergreen', 'terrace', '||period||', 'a', 'tiny', 'slice', 'of', 'suburban', 'heaven', '||period||', 'but', 'like', 'dating', 'an', 'actress', '||comma||', 'what', 'seemed', 'like', 'heaven', 'soon', 'turned', 'to', 'hell', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'now', '||comma||', 'you', 'learn', 'your', 'numbers', 'from', 'these', 'billiard', 'balls', 'while', 'daddy', 'gets', 'happier', 'and', 'happier', 'and', 'then', 'sadder', 'and', 'sadder', '||period||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'what', 'are', 'you', 'doing', '||question_mark||', '||return|', 'moe_szyslak:', "i'm", "spiffin'", 'up', 'the', 'place', '||exclamation_mark||', 'jeez', '||comma||', "can't", 'a', 'guy', 'clean', 'his', 'bar', 'for', 'the', 'first', 'time', 'ever', 'without', 'people', "makin'", 'polite', 'inquiries', '||question_mark||', '||return|', 'moe_szyslak:', 'huh', '||period||', 'i', 'got', 'a', 'window', 'here', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'realizing', '||right_parentheses||', 'hey', '||comma||', 'maggie', 'could', 'play', 'out', 'there', '||period||', '||period||', '||period||', 'while', 'i', 'watch', 'her', 'from', 'in', 'here', '||period||', '||left_parentheses||', 'turns', '||right_parentheses||', 'whaddaya', 'say', '||comma||', 'maggie', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'touched', '||right_parentheses||', 'aw', '||comma||', 'her', 'first', 'enabling', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'calling', '||right_parentheses||', 'hi', '||comma||', 'maggie', '||exclamation_mark||', '/', 'up', 'here', '||comma||', 'beautiful', '||exclamation_mark||', '/', 'yo', '||comma||', 'mags', '||exclamation_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'playful', '||right_parentheses||', "it's", 'me', '||exclamation_mark||', 'uncle', 'barney', '||exclamation_mark||', 'remember', 'i', 'taught', 'you', 'your', 'abcs', '||period||', '||left_parentheses||', 'sings', '||right_parentheses||', 'a-b-', '||left_parentheses||', 'forgets', 'next', 'letter', '||right_parentheses||', 'p-k', '||period||', '||period||', '||period||', '||left_parentheses||', 'giving', 'up', 'moan', '||right_parentheses||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', 'i', "s'pose", 'you', 'guys', 'are', 'still', "wonderin'", 'why', "i'm", "cleanin'", 'the', 'bar', '||period||', '||return|', 'lenny_leonard:', 'ooh', '||comma||', 'hey', 'maggie', '||exclamation_mark||', 'maggie', '||comma||', 'maggie', '||comma||', 'maggie', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'baby', 'talk', '||right_parentheses||', 'hello', 'maggie', '||period||', '||period||', '||period||', 'hello', 'maggie', '||period||', '||return|', 'carl_carlson:', 'hey', 'maggie', '||exclamation_mark||', 'maggie', 'look', 'at', 'my', 'face', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'clears', 'throat', '||right_parentheses||', 'it', 'all', 'began', 'about', 'a', 'month', 'ago', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'she', 'said', "she'd", 'be', 'here', 'at', 'exactly', 'eight', "o'clock", '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'furious', '||right_parentheses||', 'you', "callin'", 'my', 'girl', 'a', 'liar', '||question_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'defeated', '||right_parentheses||', 'okay', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sad', '||right_parentheses||', "i've", 'been', 'stood', 'up', '||period||', '||return|', 'maya:', 'moe', '||comma||', "i'm", 'down', 'here', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'surprised', '||right_parentheses||', 'oh', '||comma||', "you're", 'a', 'little', 'person', '||question_mark||', '||left_parentheses||', 'regretful', '||right_parentheses||', "i-i'm", 'sorry', '||comma||', 'i', "didn't", 'mean', 'that', '||period||', "what's", 'the', 'correct', 'term', '||question_mark||', '||return|', 'maya:', 'little', 'person', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'pleased', '||right_parentheses||', 'whoa', '||exclamation_mark||', 'look', 'at', 'me', "bein'", 'polite', '||exclamation_mark||', '||return|', 'maya:', 'so', '||comma||', "aren't", 'you', 'gonna', 'invite', 'me', 'in', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', 'of', 'course', '||comma||', 'of', 'course', '||period||', 'um', '||comma||', 'i-i', 'just', 'have', 'to', '||dash||', 'i', 'have', 'to', 'tidy', 'up', 'the', 'place', '||exclamation_mark||', 'just', 'one', 'second', '||period||', '||left_parentheses||', 'nervous', 'chuckle', '||right_parentheses||', '||return|', 'moe_szyslak:', 'so', 'maya', '||period||', 'um', '||comma||', 'you', 'always', 'been', 'this', 'size', '||comma||', 'or', 'is', 'this', 'like', 'a', 'benjamin', 'button', 'deal', '||question_mark||', '||left_parentheses||', 'uncomfortable', 'laugh', '||right_parentheses||', 'no', '||comma||', 'i', 'mean', 'is', '||comma||', 'i', 'just', '||period||', '||period||', '||period||', 'your', 'picture', 'just', 'made', 'you', 'look', 'more', '||period||', '||period||', '||period||', 'life-sized', '||period||', '||return|', 'maya:', 'that', 'was', 'taken', 'at', 'legoland', '||period||', 'i', 'was', 'afraid', "you'd", 'be', 'disappointed', 'in', 'the', 'real', 'me', '||period||', '||return|', 'moe_szyslak:', 'are', 'you', "kiddin'", 'me', '||question_mark||', "you're", 'the', 'best', 'thing', 'to', 'come', 'into', 'this', 'bar', 'since', 'cable', 'tv', '||period||', 'and', 'unlike', 'cable', 'tv', '||comma||', 'i', "ain't", "stealin'", 'you', 'from', 'the', 'chinese', 'restaurant', 'across', 'the', 'street', 'there', '||period||', '||return|', 'chinese_restaurateur:', 'i', 'see', 'you', 'watch', 'espn', 'two', '||exclamation_mark||', 'i', 'know', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', "that's", 'great', 'there', '||comma||', 'ling', 'chow', '||period||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', 'you', 'still', 'want', 'to', 'go', 'out', '||question_mark||', '||return|', 'maya:', '||left_parentheses||', 'shrugs', '||right_parentheses||', "that's", 'why', "i'm", 'here', '||period||', '||return|', 'moe_szyslak:', 'great', '||period||', 'let', 'me', 'get', 'a', 'car', 'seat', '||period||', '||return|', 'maya:', '||left_parentheses||', 'not', 'sure', 'whether', 'to', 'be', 'offended', '||right_parentheses||', 'car', 'seat', '||question_mark||', '||return|', 'moe_szyslak:', 'i', 'took', 'out', 'the', 'passenger', 'seat', 'to', 'save', 'gas', '||period||', 'but', "i'm", 'gonna', 'use', 'it', 'now', '||period||', "'cause", "we're", 'gonna', 'do', 'the', 'town', '||exclamation_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'playful', '||right_parentheses||', "how'd", 'your', 'date', 'go', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'incredible', '||period||', "i've", 'never', 'felt', 'like', 'this', 'before', '||period||', "it's", 'like', 'my', 'heart', 'wants', 'to', 'do', 'her', '||period||', '||return|', 'barflies:', 'awww', '||period||', '||return|', 'lenny_leonard:', 'so', '||comma||', 'when', 'are', 'we', 'gonna', 'meet', 'her', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'uneasy', '||right_parentheses||', 'oh', '||comma||', 'i', "can't", 'wait', 'till', 'you', 'guys', 'get', 'to', 'uh', '||period||', '||period||', '||period||', '||return|', 'thought_bubble_lenny:', 'yep', '||comma||', "that's", 'what', "we'd", 'do', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'let', 'me', 'ask', 'you', 'guys', "somethin':", 'how', 'would', 'you', 'treat', 'a', 'person', "who's", 'generally', 'dynamite', 'but', 'uh', '||comma||', 'in', 'some', 'way', '||period||', '||period||', '||period||', 'a', 'little', 'different', '||question_mark||', '||return|', 'lenny_leonard:', 'you', 'mean', 'like', 'how', 'we', 'treat', 'homer', '||question_mark||', '||return|', 'carl_carlson:', "'cause", 'he', "can't", 'remember', 'limericks', '||question_mark||', '||return|', 'homer_simpson:', 'i', 'can', 'too', '||exclamation_mark||', '||quotation_mark||', 'there', 'once', 'was', 'this', 'guy', 'from', 'an', 'island', 'off', 'the', 'coast', 'of', 'massachusetts', '||period||', '||period||', '||period||', 'uh', '||comma||', 'nantucket', '||comma||', 'i', 'think', 'it', 'was', '||period||', 'anyway', '||comma||', 'he', 'had', 'a', 'most', 'unusual', 'personal', 'characteristic', '||period||', '||period||', '||period||', 'which', 'was', '||period||', '||period||', '||period||', 'um', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', 'look', 'at', 'him', 'struggling', 'with', 'the', 'simplest', 'rhyme', '||period||', '||return|', 'lenny_leonard:', "it's", 'a-a-b-b-a', '||comma||', 'dumbass', '||exclamation_mark||', '||return|', 'homer_simpson:', 'there', 'you', 'are', '||exclamation_mark||', '||return|', 'homer_simpson:', 'aww', '||period||', 'innocent', 'babies', 'whistling', 'nonchalantly', '||period||', 'how', 'sweet', '||period||', '||left_parentheses||', 'to', 'bully', 'babies', '||right_parentheses||', 'maggie', 'will', 'be', 'back', 'to', 'play', 'with', 'you', 'tomorrow', '||period||', '||return|', 'moe_szyslak:', 'guys', '||comma||', 'after', 'all', 'the', 'years', "i've", 'given', 'you', 'advice', '||comma||', 'now', 'i', 'need', 'a', 'little', 'advice', 'from', 'you', '||period||', '||return|', 'carl_carlson:', 'we', 'never', 'follow', 'your', 'advice', '||period||', '||return|', 'lenny_leonard:', 'the', 'one', 'time', 'i', 'did', '||comma||', 'i', 'went', 'to', 'jail', 'for', 'three', 'years', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'defensive', '||right_parentheses||', 'you', 'made', 'some', 'good', 'friends', '||comma||', "didn't", 'ya', '||question_mark||', '||return|', 'lenny_leonard:', 'just', "'cause", "you're", 'chained', 'to', 'a', 'guy', "don't", 'make', 'him', 'your', 'friend', '||period||', '||return|', 'moe_szyslak:', 'tomato', '||comma||', 'tomahto', '||period||', 'now', 'how', 'am', 'i', 'gonna', 'win', 'maya', 'back', '||question_mark||', '||return|', 'lenny_leonard:', 'well', '||comma||', 'if', "i've", 'learned', 'anything', 'from', 'romantic', 'comedies', '||comma||', 'is', 'that', "you've", 'got', 'to', 'make', 'a', 'grand', '||comma||', 'reckless', 'gesture', '||comma||', 'the', 'kind', 'that', 'looks', 'like', 'it', 'might', 'blow', 'up', 'in', 'your', 'face', '||period||', '||return|', 'moe_szyslak:', 'but', 'what', 'if', 'it', 'blows', 'up', 'in', 'my', 'face', '||question_mark||', '||return|', 'carl_carlson:', 'with', 'your', 'face', '||comma||', 'who', 'cares', '||question_mark||', '||return|', 'moe_szyslak:', "what's", 'the', 'matter', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', 'not', 'a', 'thing', 'in', 'the', 'world', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', 'wish', 'i', 'could', 'say', 'the', 'same', '||period||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'this', 'was', 'a', 'great', 'thing', 'for', 'you', '||period||', 'you', 'went', 'from', 'sitting', 'on', 'the', 'sidelines', 'to', 'getting', 'in', 'the', 'game', '||period||', 'and', 'sometime', 'when', 'you', 'least', 'expect', 'it', '||comma||', "you'll", 'realize', 'that', 'someone', 'loved', 'you', '||period||', 'and', 'that', 'means', 'someone', 'can', 'love', 'you', 'again', '||period||', 'and', "that'll", 'make', 'you', 'smile', '||period||', '||return|', 'moe_szyslak:', 'hey', '||exclamation_mark||', 'homer', 'was', 'right', '||period||', '||return|', 'moe_szyslak:', "who'da", 'thought', 'such', 'a', 'little', 'woman', 'could', 'make', 'me', 'feel', 'so', 'big', '||question_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'loud', 'whisper', '||right_parentheses||', "let's", 'try', 'what', 'chapter', 'seven', 'calls', '||quotation_mark||', 'un-sults', '||quotation_mark||', '||dash||', 'insults', 'disguised', 'as', 'compliments', '||period||', '||left_parentheses||', 'normal', 'voice', '||right_parentheses||', 'hey', '||comma||', 'lenny', '||dash||', 'it', 'takes', 'a', 'lot', 'of', 'courage', 'to', 'wear', 'suspenders', 'when', "you're", 'not', 'in', 'the', 'circus', '||period||', '||return|', 'lenny_leonard:', 'well', "that's", 'very', 'nice', 'of', 'you', '||dash||', '||left_parentheses||', 'realizing', '||right_parentheses||', 'hey', '||exclamation_mark||', 'you', "sayin'", 'my', 'clothes', 'are', 'clown-like', '||question_mark||', 'oh', 'god', '||comma||', 'i', 'feel', 'so', 'insecure', '||exclamation_mark||', 'please', 'be', 'my', 'friend', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'lisa', '||right_parentheses||', 'see', '||comma||', 'it', 'works', '||period||', 'and', 'un-sults', 'are', 'just', 'the', 'beginning', '||period||', "there's", 'also', 'envy-tations', '||comma||', 'hate-hugs', '||comma||', 'spamming', 'with', 'faint', 'praise', 'and', '||period||', '||period||', '||period||', '||left_parentheses||', 'stagy', '||right_parentheses||', 'hey', 'everyone', '||comma||', 'wanna', 'go', 'get', 'frozen', 'yogurt', '||question_mark||', '||return|', 'moe_szyslak:', 'i', 'do', '||exclamation_mark||', '/', 'yeah', '||exclamation_mark||', '/', 'you', 'know', 'it', '||exclamation_mark||', '/', 'oh', 'boy', '||exclamation_mark||', '||return|', 'homer_simpson:', 'ooo', '||comma||', "i'm", 'sorry', '||comma||', 'moe', '||period||', 'i', "didn't", 'mean', 'everyone', 'everyone', '||period||', 'hope', 'you', "don't", 'mind', '||period||', '||return|', 'moe_szyslak:', 'no', '||comma||', 'oh', 'sure', '||comma||', 'no', '||comma||', 'uh', 'no', '||period||', '||period||', '||period||', "that's", 'all', 'right', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sobs', 'like', 'teenage', 'girl', '||comma||', 'then', 'clearly', 'says', '||right_parentheses||', 'if', 'i', "didn't", 'sell', 'booze', '||comma||', 'they', 'probably', "wouldn't", 'even', 'come', 'here', '||period||', '||left_parentheses||', 'sobs', 'some', 'more', '||right_parentheses||', '||return|', 'homer_simpson:', 'and', 'that', '||comma||', 'my', 'dear', 'girl', '||comma||', 'is', 'called', 'the', 'toledo', 'take-back', '||period||', '||return|', 'lisa_simpson:', 'dad', '||comma||', 'i', "don't", 'want', 'to', 'hurt', "people's", 'feelings', '||period||', '||return|', 'homer_simpson:', 'i', 'see', '||period||', 'well', '||comma||', 'maybe', "you're", 'not', 'ready', 'for', 'this', 'book', '||period||', 'it', 'is', 'more', 'of', 'a', 'big', 'girl', 'thing', '||period||', '||return|', 'lisa_simpson:', "i'm", 'a', 'big', 'girl', '||exclamation_mark||', "i'm", 'a', 'big', 'girl', '||exclamation_mark||', '||return|', 'lisa_simpson:', 'one', 'of', 'you', 'said', 'something', 'bad', 'about', 'the', 'other', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'shocked', '||comma||', 'in', 'unison', '||right_parentheses||', 'he', 'did', '||question_mark||', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'eager', '||right_parentheses||', 'i', "can't", 'wait', 'for', 'the', 'reviews', '||exclamation_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'grabs', 'one', '||comma||', 'reads', 'happily:', '||right_parentheses||', '||quotation_mark||', 'tonight', 'the', 'springfield', 'community', 'playhouse', 'was', 'bathed', 'in', 'the', 'light', 'of', 'a', 'brilliant', 'new', 'star', '||period||', '||period||', '||period||', '||left_parentheses||', 'mad', '||right_parentheses||', 'dr', '||period||', 'hibbert', 'as', 'banquo', '||question_mark||', '||exclamation_mark||', '||quotation_mark||', '||return|', 'homer_simpson:', 'who', 'the', 'hell', 'is', 'banquo', '||question_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'glowers', '||right_parentheses||', "he's", 'the', 'one', 'getting', 'the', 'good', 'reviews', '||exclamation_mark||', '||left_parentheses||', 'sotto', 'to', 'homer', '||right_parentheses||', 'which', 'makes', 'him', 'the', 'next', 'one', "you've", 'got', 'to', 'kill', '||period||', '||return|', 'homer_simpson:', "wouldn't", 'it', 'be', 'easier', 'if', 'i', 'just', 'took', 'acting', 'lessons', '||question_mark||', '||return|', 'marge_simpson:', 'screw', 'your', 'courage', 'to', 'the', 'sticking-place', 'and', "we'll", 'not', 'fail', '||period||', '||return|', 'homer_simpson:', "that's", 'inspiring', '||period||', "what's", 'that', 'from', '||question_mark||', 'x-men', '2', '||question_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'losing', 'it', '||right_parentheses||', 'macbeth', '||exclamation_mark||', '||return|', 'homer_simpson:', 'mac-who', '||question_mark||', '||return|', '||return|', '||return|', 'gulliver_dark:', 'they', 'did', 'the', 'monster', 'ma', '||dash||', '/', 'they', 'did', 'the', 'monster', 'ma', '||dash||', '/', 'they', 'did', 'the', 'monster', 'ma', '||dash||', '||return|', 'carl_carlson:', 'homer', '||comma||', 'this', 'is', 'bad', '||period||', 'one', 'unlucky', 'punch', 'and', 'marge', 'could', 'be', 'bedridden', 'for', 'life', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'ominous', '||right_parentheses||', 'unable', 'to', 'move', 'anything', 'but', 'her', 'left', 'toe', '||period||', '||return|', 'carl_carlson:', 'yeah', '||period||', '||return|', 'thought_bubble_homer:', '||left_parentheses||', 'sobbing', '||right_parentheses||', 'oh', 'marge', '||comma||', 'if', 'only', 'i', 'knew', 'what', 'these', 'paintings', 'meant', '||period||', '||return|', 'thought_bubble_homer:', '||left_parentheses||', 'melodramatic', '||right_parentheses||', 'i', 'know', 'the', 'woman', 'i', 'loved', 'is', 'still', 'in', 'there', 'somewhere', '||comma||', 'behind', 'all', 'this', 'nonsense', '||period||', '||return|', 'homer_simpson:', "we've", 'gotta', 'get', 'marge', 'some', 'professional', 'training', '||period||', 'carl', '||comma||', 'do', 'you', 'know', 'heavyweight', 'champ', 'drederick', 'tatum', '||question_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'offended', '||right_parentheses||', 'what', '||question_mark||', 'you', 'think', 'just', "'cause", "i'm", 'black', 'i', 'know', 'all', 'other', 'black', 'people', '||question_mark||', '||return|', 'homer_simpson:', 'well', '||comma||', 'i', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', 'actually', '||comma||', 'drederick', 'and', 'i', 'are', 'very', 'good', 'friends', '||period||', 'we', 'met', 'through', 'dr', '||period||', 'hibbert', 'at', 'a', 'party', 'at', 'bleeding', 'gums', "murphy's", 'house', '||period||', '||return|', 'moe_szyslak:', 'aw', '||comma||', "c'mon", '||exclamation_mark||', 'get', 'back', 'on', 'your', 'feet', '||exclamation_mark||', 'i', 'believe', 'in', 'you', '||exclamation_mark||', '||return|', 'barney_gumble:', "i'm", "doin'", 'it', '||comma||', 'moe', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'not', 'you', '||exclamation_mark||', '||return|', 'barney_gumble:', 'oh', '||comma||', 'thank', 'god', '||comma||', 'the', "pressure's", 'off', '||period||', '||return|', 'moe_szyslak:', 'there', 'sure', 'is', 'a', 'lotta', "talkin'", 'for', 'a', 'professional', 'fight', '||period||', '||return|', 'lenny_leonard:', 'eh', '||comma||', "that's", 'what', 'you', 'get', 'when', 'you', 'fight', 'a', 'woman', '||period||', '||return|', 'carl_carlson:', 'yap', '||comma||', 'yap', '||comma||', 'yap', '||period||', '||return|', 'lenny_leonard:', 'and', 'they', 'spend', 'all', 'day', 'eating', 'bon-bons', 'and', 'watching', 'general', 'hospital', '||period||', '||period||', '||period||', 'which', '||comma||', 'by', 'the', 'way', '||comma||', 'has', 'never', 'been', 'better', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'starts', 'to', 'sing', 'sweetly', '||right_parentheses||', 'oh', 'why', "can't", 'no', 'girl', 'love', 'a', 'guy', 'with', 'this', 'mug', '||period||', '||period||', '||period||', 'whose', 'mother', 'declared', '/', "you're", 'too', 'ugly', 'to', 'hug', '||period||', '||period||', '||period||', '||return|', 'barney_gumble:', "how's", 'about', 'pouring', 'me', 'a', 'beer', '||comma||', 'ugly', '||question_mark||', '||return|', 'moe_szyslak:', 'how', "'bout", 'some', 'of', 'my', 'new', 'microbrew', '||question_mark||', '||return|', 'moe_szyslak:', 'must', 'be', 'another', 'mouse', 'in', 'the', 'pipe', '||period||', "let's", 'see', 'if', 'this', 'cobra', 'solves', 'it', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'tries', 'tap', '||right_parentheses||', "nothin'", '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sings', '||right_parentheses||', 'just', 'once', 'i', 'wish', 'cupid', '/', 'would', 'draw', 'back', 'his', 'bow', '/', 'and', 'shoot', 'me', 'a', 'cutie', '/', 'whose', 'standards', 'are', 'low', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'woo', 'hoo', '||exclamation_mark||', 'an', 'unattended', 'tap', '||exclamation_mark||', 'like', "takin'", 'beer', 'from', 'a', 'baby', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sings', '||comma||', 'same', 'tune', '||right_parentheses||', "i'm", 'unlucky', 'in', 'love', '/', "i'm", 'unlucky', 'in', 'luck', '||return|', 'moe_szyslak:', 'oh', 'my', 'god', '||comma||', 'homer', '||exclamation_mark||', 'just', 'try', 'to', 'relax', '||period||', '||return|', 'moe_szyslak:', "don't", 'relax', '||exclamation_mark||', "don't", 'relax', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', 'marge', '||comma||', 'the', 'most', 'awful', 'thing', 'just', 'happened', '||exclamation_mark||', '||return|', 'marge_simpson:', 'what', 'is', 'it', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'um', '||period||', '||period||', '||period||', '||left_parentheses||', 'to', 'self', '||right_parentheses||', "she's", 'so', 'beautiful', '||period||', 'it', 'makes', 'my', 'heart', 'take', 'wing', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'look', 'at', 'me', '||exclamation_mark||', 'i', 'can', 'fl', '||dash||', '||left_parentheses||', 'anguished', 'noise', '||right_parentheses||', '||return|', 'moe_szyslak:', 'um', '||comma||', 'marge', '||period||', '||period||', '||period||', 'homer', '||comma||', 'uh', '||comma||', 'just', 'ran', 'out', "sayin'", 'he', "don't", 'love', 'you', 'and', 'he', 'never', 'did', '||period||', '||return|', 'marge_simpson:', 'he', 'what', '||question_mark||', '||exclamation_mark||', '||return|', 'homer_simpson:', 'helllp', 'me', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'that', 'uh', '||comma||', "that's", 'me', '||period||', "i've", 'been', 'taking', 'ventriloquism', 'lessons', '||period||', '||left_parentheses||', 'nervous', 'laugh', '||right_parentheses||', '||return|', 'homer_simpson:', 'help', 'me', 'or', 'kill', 'me', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'looking', 'for', 'approval', '||right_parentheses||', 'heh', '||question_mark||', 'heh', '||question_mark||', '||return|', 'moe_szyslak:', 'now', '||comma||', 'let', 'dr', '||period||', 'moe', 'cure', 'what', 'ails', 'you', '||period||', '||return|', 'marge_simpson:', 'mm', '||comma||', "there's", 'something', 'odd', 'about', 'this', 'beer', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'talk-sings', '||right_parentheses||', 'it', 'tastes', 'like', '||period||', '||period||', '||period||', 'cuddling', '||exclamation_mark||', '/', 'it', 'tastes', 'like', 'clean', 'clothes', '||exclamation_mark||', '||return|', 'marge_simpson:', 'it', 'tastes', 'like', 'hot', 'steaming', 'cocoa', 'mixed', 'with', 'rainbows', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'surprised/thrilled', '||right_parentheses||', 'it', 'does', '||question_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'sings', '||right_parentheses||', 'full-bodied', '||period||', '||period||', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'sings', '||right_parentheses||', 'full-blooded', '||period||', '||period||', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'sings', '||right_parentheses||', "it's", 'such', 'a', 'lovely', 'blend', '||period||', '||period||', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'sings', '||comma||', 'in', 'harmony', '||right_parentheses||', "it's", 'jolly', '/', "it's", 'loyal', '/', 'like', 'drinking', 'your', 'best', 'friend', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'i', 'see', "we're", 'back', 'in', 'business', '||period||', 'now', '||comma||', 'a', 'little', 'more', 'hemoglobin', 'and', 'your', 'wife', 'will', 'be', "disrobin'", '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'talk-sings', '||right_parentheses||', 'i', 'stopped', 'my', 'crying', '/', 'why', '||comma||', 'i', "don't", 'know', '/', 'but', 'this', 'rosey', '||comma||', 'cozy', '||comma||', 'bubbles-in-my-nose-y', '/', 'makes', 'me', 'wanna', 'have', '||period||', '||period||', '||period||', "mo'", '||exclamation_mark||', '||return|', 'kang:', 'this', 'is', 'the', 'best', 'musical', 'in', 'light', 'years', '||period||', '||return|', 'kodos:', 'light', 'years', 'measure', 'distance', 'not', 'time', '||period||', '||return|', 'kang:', 'you', 'know', 'what', 'i', 'meant', '||period||', '||return|', 'moe_szyslak:', 'so', 'marge', '||comma||', 'uh', '||period||', '||period||', '||period||', "homer's", 'been', 'gone', 'a', 'whole', 'week', '||comma||', 'huh', '||question_mark||', 'in', 'an', 'unrelated', 'matter', '||comma||', '||left_parentheses||', 'seductive', '||right_parentheses||', 'i', 'just', 'put', 'on', 'cologne', 'and', 'shaved', 'my', 'knuckles', '||period||', '||return|', 'marge_simpson:', "i'm", 'still', 'hoping', 'homie', 'will', 'come', 'back', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'shakes', 'head', 'sadly', '||right_parentheses||', 'marge', '||comma||', "i've", 'got', 'some', 'bad', 'news', 'to', 'give', 'you', '||period||', '||return|', 'moe_szyslak:', "it's", 'a', 'letter', 'from', 'homer', '||period||', 'on', 'my', 'stationery', '||period||', 'in', 'my', 'handwriting', '||period||', 'using', 'my', 'idioms', 'and', 'speech', 'patterns', '||period||', 'and', 'it', 'begins', '||comma||', '||quotation_mark||', 'dear', 'midge:', 'you', 'probably', 'hate', 'me', 'by', 'now', '||comma||', 'and', 'if', 'you', "don't", '||comma||', "what's", 'wrong', 'which', 'youse', '||question_mark||', 'but', "don't", 'give', 'up', 'on', 'men', '||period||', 'bart', '||comma||', 'linda', 'and', 'the', 'other', 'one', 'there', 'need', 'a', 'dad', '||period||', '||quotation_mark||', '||return|', 'marge_simpson:', 'that', 'does', 'sound', 'like', 'homer', '||period||', '||return|', 'moe_szyslak:', 'read', 'on', '||period||', 'it', 'gets', 'gayer', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'talk-sings', '||right_parentheses||', 'while', 'turning', 'gay', 'the', 'other', 'day', '/', 'a', 'thought', 'occurred', 'to', 'me', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', "i'd", 'like', 'to', 'try', 'most', 'every', 'guy', '/', 'from', 'here', 'to', 'timbuk-tee', '||return|', 'homer_simpson:', '||left_parentheses||', 'then', 'sings', '||comma||', 'fast-paced', '||right_parentheses||', 'oh', '||comma||', "there's", 'so', 'many', 'men', 'around', 'the', 'world', '||comma||', 'of', 'every', 'shape', 'and', 'size', '/', 'i', 'want', 'to', 'nibble', 'on', 'jamaican', 'jerks', 'and', 'teriyaki', 'thighs', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'i', 'want', 'to', 'french', 'kiss', 'a', 'frenchman', '||comma||', 'and', 'spoon', 'an', 'english', 'duke', '/', "'cause", 'frankly', '||comma||', 'dear', '||comma||', 'to', 'not', 'be', 'queer', '||comma||', 'just', 'makes', 'me', 'want', 'to', 'puke', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', 'so', 'find', 'yourself', 'a', 'man', "who'll", 'want', 'you', 'in', 'the', 'sack', '||return|', 'homer_simpson:', 'i', 'recommend', '/', 'our', 'dear', 'old', 'friend', '/', 'bartender', 'moe', 'szyslak', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', '||quotation_mark||', 'and', 'many', 'more', '||quotation_mark||', '||right_parentheses||', 'letters', "don't", 'lie', '||exclamation_mark||', '||left_parentheses||', 'spoken', '||right_parentheses||', 'so', 'whaddaya', 'think', '||comma||', 'marge', '||question_mark||', 'will', 'you', 'give', 'moe', 'a', 'throw', '||question_mark||', '||return|', 'marge_simpson:', 'eh', '||comma||', 'well', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'maybe', 'you', 'need', 'a', 'little', 'more', '||quotation_mark||', 'milk', 'of', 'amnesia', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'dang', '||comma||', "i'm", 'missing', 'the', 'secret', 'ingredient', '||exclamation_mark||', 'uh', '||comma||', 'lemme', 'squeeze', 'some', 'more', 'out', 'of', 'the', '||quotation_mark||', 'secret', 'ingredient', 'bag', '||quotation_mark||', '||period||', '||return|', 'moe_szyslak:', 'uh-oh', '||comma||', 'looks', 'like', 'i', 'gotta', 'wing', 'it', 'a', 'little', 'bit', 'here', '||period||', 'the', 'other', 'day', 'i', 'ran', 'into', 'an', 'irishman', '||period||', '||left_parentheses||', 'pretends', 'to', 'be', 'second', 'man', '||right_parentheses||', 'oh', 'really', '||question_mark||', '||left_parentheses||', 'back', 'to', 'being', 'first', 'man', '||right_parentheses||', 'no', '||comma||', "o'reilly", '||period||', '||return|', 'agnes_skinner:', 'i', "can't", 'talk', 'now', '||comma||', "i'm", 'watching', 'a', 'play', '||exclamation_mark||', '||left_parentheses||', 'beat', '||right_parentheses||', 'you', 'want', 'how', 'much', 'for', 'a', 'radiator', '||question_mark||', '||left_parentheses||', 'beat', '||right_parentheses||', 'is', 'that', 'new', 'or', 'rebuilt', '||question_mark||', '||return|', 'moe_szyslak:', 'there', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'pants', 'briefly', '||right_parentheses||', 'oh', 'my', 'god', '||comma||', "i've", 'never', 'felt', 'so', '||period||', '||period||', '||period||', '||left_parentheses||', 'turned', 'on', '||right_parentheses||', 'uncreeped-out', 'by', 'you', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'marge', '||comma||', 'i', 'loves', 'youse', '||period||', 'will', 'youse', 'be', 'mines', '||question_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'torn', '||right_parentheses||', 'i', 'guess', 'it', 'is', 'time', 'to', 'move', 'on', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'before', 'you', 'do', '||comma||', 'i', 'just', 'gotta', 'warn', 'you', '||comma||', 'marge', '||period||', '||left_parentheses||', 'sings', '||right_parentheses||', 'my', 'taste', 'for', 'romance', 'is', 'kinda', 'perverse', '/', 'i', 'can', 'only', 'make', 'love', 'in', 'the', 'back', 'of', 'a', 'hearse', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'plus', 'i', 'gotta', 'be', 'dressed', 'as', 'a', 'civil', 'war', 'nurse', '/', 'and', 'then', 'when', "i'm", 'finished', '||comma||', "i'll", 'go', 'through', 'your', 'purse', '/', 'but', 'you', 'could', 'do', 'worse', '||period||', '||period||', '||period||', '||return|', 'marge_simpson:', 'i', 'could', 'do', 'worse', '||period||', '||period||', '||period||', '||return|', 'barflies:', "we're", 'proof', 'that', 'you', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'simultaneous', '||right_parentheses||', 'i/you', 'could', 'do', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'singing', '||comma||', 'furious', 'finale', '||right_parentheses||', 'she', "couldn't", 'possibly', 'do', 'worse', '||exclamation_mark||', '||return|', 'marge_simpson:', 'homer', '||question_mark||', '||exclamation_mark||', '||left_parentheses||', 'hopeful', '||right_parentheses||', 'does', 'this', 'mean', 'you', 'still', 'love', 'me', '||question_mark||', '||return|', 'homer_simpson:', 'of', 'course', 'i', 'do', '||comma||', 'marge', '||period||', 'can', 'you', 'still', 'love', 'a', 'man', '||left_parentheses||', 'indicates', 'pipes', '||right_parentheses||', "who's", 'half-beer', '||question_mark||', '||return|', 'marge_simpson:', 'i', 'always', 'have', '||period||', '||return|', 'homer_simpson:', 'to', 'love', '||exclamation_mark||', '||return|', 'all:', 'we', 'hope', 'you', 'enjoyed', 'this', "year's", 'halloween', 'show', '/', 'treehouse', 'of', 'horror', '||comma||', 'number', 'xx', '||exclamation_mark||', '||return|', 'kang:', 'shhh', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', 'easy', 'there', '||comma||', 'habitrail', '||period||', '||return|', 'homer_simpson:', 'they', 'took', 'away', 'our', 'donuts', 'at', 'work', '||exclamation_mark||', 'all', "i've", 'had', 'are', 'my', 'meals', '||exclamation_mark||', '||return|', 'carl_carlson:', 'and', 'the', 'worst', 'thing', 'is', '||comma||', "there's", 'nothing', 'we', 'can', 'do', 'about', 'it', '||period||', '||return|', 'lenny_leonard:', 'i', 'think', "that's", 'the', 'best', 'thing', '||dash||', "'cause", 'then', 'you', 'can', 'say', '||left_parentheses||', 'philosophical', '||right_parentheses||', '||quotation_mark||', 'well', '||comma||', "there's", "nothin'", 'we', 'can', 'do', 'about', 'it', '||period||', '||quotation_mark||', '||return|', 'stranger:', '||left_parentheses||', 'southern', 'accent', '||right_parentheses||', 'bartender', '||comma||', 'buy', 'these', 'men', 'a', 'round', 'on', 'me', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'puzzled', '||right_parentheses||', 'you', 'want', 'to', '||quotation_mark||', 'buy', 'a', 'round', '||question_mark||', '||quotation_mark||', 'i', 'heard', 'about', 'that', 'in', 'bartending', 'school', '||comma||', 'but', 'i', 'never', 'seen', 'it', 'happen', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'this', 'is', 'very', 'good', 'for', 'me', '||period||', 'very', 'good', 'indeed', '||period||', '||return|', 'stranger:', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', 'gator', 'mccall', '||period||', "i'm", 'a', 'head', 'hunter', '||period||', '||return|', 'gator:', '||left_parentheses||', 'patient', 'chuckle', '||right_parentheses||', "i'm", 'a', 'corporate', 'recruiter', 'who', 'specializes', 'in', 'nuclear', 'workers', '||period||', '||return|', 'homer_simpson:', 'i', 'guess', 'these', 'days', 'headhunters', 'can', 'be', 'anything', '||period||', '||return|', 'homer_simpson:', 'you', 'nuclear', 'workers', 'have', 'no', 'idea', 'how', 'valuable', 'you', 'are', '||period||', 'times', 'have', 'never', 'been', 'better', 'for', 'your', 'industry', '||comma||', 'now', 'that', 'all', 'the', 'protesters', 'who', 'marched', 'in', 'front', 'of', 'nuclear', 'power', 'plants', 'are', 'dying', 'off', 'from', 'radiation', "poisonin'", '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'thoughtful', '||right_parentheses||', 'are', 'these', 'business', 'cards', '||question_mark||', 'or', 'passports', 'to', 'a', 'better', 'future', '||question_mark||', '||return|', 'gator:', 'business', 'cards', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'impressed', '||right_parentheses||', 'nice', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'mr', '||period||', 'smithers', '||comma||', 'our', 'lives', 'are', 'awesome', '||comma||', 'thanks', 'to', 'you', '||period||', 'and', 'because', 'i', 'know', 'you', '||quotation_mark||', 'like', 'your', 'loafers', 'light', '||comma||', '||quotation_mark||', 'i', 'want', 'to', 'give', 'something', 'back', '||period||', '||return|', 'homer_simpson:', 'use', 'that', 'image', 'any', 'way', 'you', 'want', '||period||', '||return|', 'carl_carlson:', 'three', 'cheers', 'for', 'mr', '||period||', 'smithers', '||exclamation_mark||', '||return|', 'carl_carlson:', 'to', 'mr', '||period||', 'smithers', '||exclamation_mark||', '/', 'hooray', '||exclamation_mark||', '||return|', 'homer_simpson:', 'uh', 'listen', '||period||', '||period||', '||period||', 'can', 'i', 'leave', 'a', 'little', 'early', 'tomorrow', '||question_mark||', 'my', 'kid', 'has', 'a', 'thing', '||period||', '||return|', 'carl_carlson:', 'ooo', 'yeah', '||comma||', 'can', 'i', 'leave', 'early', 'too', '||question_mark||', 'i', 'wanna', 'take', 'a', 'nap', 'so', "i'm", 'awake', 'for', 'the', 'meteor', 'shower', '||period||', '||return|', 'waylon_smithers:', 'well', '||period||', '||period||', '||period||', "i'm", 'flexible', '||period||', 'go', 'ahead', '||period||', '||return|', 'lenny_leonard:', "y'know", '||comma||', 'i', 'used', 'to', 'think', 'you', 'was', 'just', 'as', 'bad', 'as', 'mr', '||period||', 'burns', '||comma||', 'now', 'i', 'think', "you're", 'just', 'as', 'good', 'as', 'me', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'sotto', '||right_parentheses||', 'oh', '||comma||', 'that', 'is', 'a', 'huge', 'compliment', '||period||', '||return|', 'waylon_smithers:', 'uh', '||comma||', 'excuse', 'me', '||period||', '||return|', 'waylon_smithers:', 'yes', '||comma||', 'the', 'service', 'on', 'my', 'car', 'was', 'excellent', '||period||', '||left_parentheses||', 'beat', '||right_parentheses||', 'five', 'out', 'of', 'five', '||period||', 'four', 'out', 'of', 'five', '||period||', 'five', 'out', 'of', 'five', '||period||', 'um', '||comma||', 'excuse', 'me', '||comma||', 'can', 'i', 'go', 'back', 'and', 'change', 'that', 'four', 'out', 'of', 'five', 'to', 'five', 'out', 'of', 'five', '||question_mark||', "i'm", 'wasting', 'your', 'time', '||question_mark||', '||return|', 'homer_simpson:', 'smithers', '||period||', 'what', 'a', 'marshmallow', '||period||', '||return|', 'homer_simpson:', 'i', "don't", 'have', 'a', 'thing', 'with', 'my', 'kid', 'tomorrow', '||exclamation_mark||', '||return|', 'carl_carlson:', 'you', 'told', 'me', 'you', 'did', '||period||', '||return|', 'homer_simpson:', 'i', 'do', '||comma||', 'but', "i'm", 'not', 'going', 'to', 'it', '||period||', '||return|', 'carl_carlson:', 'to', 'smithers', '||comma||', 'the', "world's", 'dumbest', 'loser', '||exclamation_mark||', '||return|', 'lenny_leonard:', "there's", 'nothing', 'sweeter', 'than', 'being', 'nice', 'to', 'a', "guy's", 'face', 'and', 'then', "stabbin'", 'him', 'in', 'the', 'back', 'the', 'minute', 'he', 'walks', 'away', '||exclamation_mark||', '||return|', 'waylon_smithers:', 'all', 'right', '||comma||', "that's", 'it', '||period||', '||return|', 'waylon_smithers:', 'you', 'know', '||comma||', 'i', 'used', 'to', 'wonder', 'why', 'mr', '||period||', 'burns', 'hated', 'humanity', '||period||', 'now', 'i', 'know', '||period||', 'you', 'open', 'your', 'heart', 'and', 'they', 'mock', 'your', 'very', 'decency', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'extremely', 'mocking', '||right_parentheses||', 'ooh', '||exclamation_mark||', 'we', 'mock', 'your', 'very', 'decency', '||period||', '||return|', 'lenny_leonard:', "it's", 'official', '||period||', 'smithers', 'is', 'now', 'worse', 'than', 'mr', '||period||', 'burns', '||period||', '||return|', 'lenny_leonard:', 'instead', 'of', 'releasing', 'hounds', '||comma||', 'he', 'releases', 'wolverines', '||exclamation_mark||', '||return|', 'homer_simpson:', 'i', 'never', 'thought', "i'd", 'say', 'this', '||comma||', 'but', 'i', 'wish', 'mr', '||period||', 'burns', 'was', 'back', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'if', 'wishes', 'were', 'horses', "i'd", 'be', "eatin'", 'wish-meat', 'every', 'night', '||period||', '||return|', 'lenny_leonard:', 'what', 'does', 'that', 'mean', '||question_mark||', '||return|', 'moe_szyslak:', 'it', 'means', "it's", 'not', 'like', "you're", 'gonna', 'break', 'into', 'the', 'prison', 'and', 'bust', 'him', 'out', 'or', 'anything', '||period||', '||return|', 'moe_szyslak:', 'aw', 'hey', '||comma||', "c'mon", '||period||', 'you', "can't", 'really', 'be', 'serious', 'about', 'breaking', 'him', 'out', '||period||', '||return|', 'lenny_leonard:', "it's", 'too', 'late', 'to', 'turn', 'back', '||comma||', 'moe', '||period||', "we've", 'exchanged', 'meaningful', 'looks', '||period||', '||return|', 'moe_szyslak:', 'no', '||comma||', 'you', 'can', 'still', 'turn', 'back', '||exclamation_mark||', 'the', 'point', 'of', 'no', 'return', 'is', 'the', 'whispered', 'huddle', '||period||', '||return|', 'moe_szyslak:', 'oh', 'god', '||comma||', 'oh', 'god', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'ahhh', '||comma||', 'that', 'is', 'so', 'much', 'better', 'than', 'hospital', 'beer', '||period||', '||return|', 'lenny_leonard:', 'homer', '||comma||', 'where', 'you', 'been', 'the', 'last', 'few', 'weeks', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'bitterly', '||right_parentheses||', 'playing', 'nursemaid', 'to', 'chief', 'wiggum', '||period||', '||return|', 'carl_carlson:', 'people', 'who', 'get', 'shot', 'in', 'the', 'chest', 'are', 'such', 'big', 'babies', '||period||', '||left_parentheses||', 'sips', 'beer', '||right_parentheses||', '||return|', 'chief_wiggum:', 'well', '||comma||', 'well', '||comma||', 'well', '||period||', 'so', 'this', 'is', 'the', '||quotation_mark||', 'saint', "elmo's", 'fire', '||quotation_mark||', 'reunion', 'that', 'andrew', 'mccarthy', 'himself', 'was', 'going', 'to', 'attend', '||period||', '||return|', 'homer_simpson:', 'okay', '||comma||', 'maybe', 'i', 'lied', '||period||', 'but', "you've", 'been', 'so', 'needy', '||period||', '||period||', '||period||', '||quotation_mark||', "i'm", 'hungry', '||comma||', '||quotation_mark||', '||quotation_mark||', "i'm", 'itchy', '||comma||', '||quotation_mark||', '||quotation_mark||', "that's", 'not', 'my', 'blood', 'type', '||period||', '||period||', '||period||', '||quotation_mark||', '||return|', 'chief_wiggum:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'whoa', '||period||', '||period||', '||period||', 'what', 'have', 'we', 'here', '||question_mark||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'reading', '||right_parentheses||', '||quotation_mark||', "world's", 'worst', 'friend', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', 'hey', 'man', '||comma||', 'you', 'planted', 'that', '||exclamation_mark||', '||return|', 'chief_wiggum:', "it's", 'your', 'word', 'against', 'the', 'chief', 'of', 'police', '||period||', 'take', 'him', 'away', '||comma||', 'boys', '||period||', '||return|', 'lou:', 'chief', '||comma||', 'being', 'a', 'bad', 'friend', "isn't", 'against', 'the', 'law', '||period||', '||return|', 'chief_wiggum:', 'well', 'if', 'it', 'was', '||comma||', "he'd", 'be', "gettin'", 'the', 'chair', '||exclamation_mark||', 'you', '||comma||', 'you', 'all', 'would', '||exclamation_mark||', '||return|', 'chief_wiggum:', 'bad', 'friend', '||exclamation_mark||', 'bad', 'friend', '||exclamation_mark||', 'bad', 'friend', '||exclamation_mark||', '||left_parentheses||', 'sobs', '||right_parentheses||', '||return|', '||return|', '||return|', 'duffman:', 'oh', 'yeah', '||exclamation_mark||', 'oh', 'yeah', '||exclamation_mark||', 'duffman', 'is', 'here', 'to', 'refill', 'your', 'beers', '||exclamation_mark||', '||return|', 'barney_gumble:', 'okay', '||period||', '||return|', 'barney_gumble:', 'thank', 'you', '||exclamation_mark||', '||return|', 'duffman:', 'now', '||comma||', 'for', 'the', 'only', 'thing', 'better', 'than', 'duff', '||period||', '||period||', '||period||', '||return|', 'barflies:', '||left_parentheses||', 'confused', 'noise', '||right_parentheses||', 'better', 'than', 'duff', '||question_mark||', "what's", 'he', 'talking', 'about', '||question_mark||', '||return|', 'duffman:', '||period||', '||period||', '||period||', 'free', 'duff', 'stuff', '||exclamation_mark||', '||return|', 'carl_carlson:', 'oh', '||comma||', 'yeah', '||period||', '||return|', 'duffman:', 'now', '||comma||', 'who', 'wants', '||period||', '||period||', '||period||', 'beer', 'cozies', '||exclamation_mark||', 'a', 'shirt', 'that', 'says', '||quotation_mark||', 'yo', '||exclamation_mark||', '||quotation_mark||', 'sassy', 'seat', 'cushions', '||exclamation_mark||', '||left_parentheses||', 'holds', 'up', 'seat', 'cushion', 'reading', '||quotation_mark||', 'park', 'your', 'duff', '||quotation_mark||', '||right_parentheses||', 'and', 'flash', 'drives', 'for', 'your', 'p', '||period||', 'c', '||period||', 'so', 'you', 'can', 'take', 'your', 'data', 'and', '||left_parentheses||', 'hammy', '||right_parentheses||', 'back', 'it', 'up', '||exclamation_mark||', '||exclamation_mark||', '||exclamation_mark||', '||return|', 'homer_simpson:', 'i', 'want', 'some', 'of', 'that', '||exclamation_mark||', '||return|', 'duffman:', 'and', 'now', '||comma||', 'duffman', 'has', 'a', 'dinner', 'date', 'with', 'his', 'estranged', 'daughter', '||exclamation_mark||', 'must', 'not', 'bring', 'up', 'why', 'she', 'dropped', 'out', 'of', 'college', '||exclamation_mark||', '||left_parentheses||', '||quotation_mark||', 'oh', 'yeah', '||quotation_mark||', '||right_parentheses||', "it's", 'too', 'sad', '||exclamation_mark||', '||return|', 'kent_brockman:', "tomorrow's", 'forecast', 'is:', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'place', 'your', 'bets', '||period||', '||return|', 'lenny_leonard:', 'partly', 'cloudy', '||exclamation_mark||', '||return|', 'carl_carlson:', 'partly', 'sunny', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'guessing', '||right_parentheses||', 'golf', 'ball-sized', 'hail', '||exclamation_mark||', '||return|', 'kent_brockman:', '||left_parentheses||', 'continuing', '||right_parentheses||', 'a', 'chance', 'of', 'severe', 'thunder', 'storms', 'with', 'golf', 'ball-sized', 'hail', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'exultant', '||right_parentheses||', 'woo-hoo', '||exclamation_mark||', '||return|', 'ned_flanders:', '||left_parentheses||', 'pointed', '||right_parentheses||', 'ahem', '||exclamation_mark||', '||return|', 'ned_flanders:', 'i', 'spy', '||comma||', 'with', 'my', 'electronic', 'eye', '||comma||', 'illegal', 'wagering', '||exclamation_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'to', 'camera', '||right_parentheses||', 'hey', '||comma||', "weren't", 'these', 'cameras', 'installed', 'to', 'keep', "america's", 'enemies', 'from', "blowin'", 'up', 'our', 'homeland', '||question_mark||', '||return|', 'ned_flanders:', 'well', '||comma||', 'sir', '||comma||', 'how', 'many', 'times', 'have', 'you', 'been', 'blown', 'up', 'since', 'the', 'cameras', 'went', 'in', '||question_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'sheepish', '||right_parentheses||', 'zero', 'times', '||period||', '||return|', 'ned_flanders:', 'mm-hmm', '||exclamation_mark||', 'now', "i'm", 'gonna', 'go', 'tsk', '||comma||', 'tsk', '||comma||', 'tsk', '||comma||', 'tsk', '||comma||', 'tsk', '||comma||', 'tsk', 'till', 'you', 'give', 'the', 'money', 'back', '||period||', 'tsk', '||comma||', 'tsk', '||comma||', 'tsk', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'tsking', 'noises', '||right_parentheses||', '/', '||left_parentheses||', 'increasingly', 'aggravated', 'noises', '||right_parentheses||', '||return|', 'homer_simpson:', 'all', 'right', '||exclamation_mark||', 'all', 'right', '||exclamation_mark||', '||return|', 'homer_simpson:', "i'm", "goin'", 'home', '||period||', "it's", 'not', 'safe', 'in', 'here', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', "moe's", 'tavern', '||comma||', 'presided', 'over', 'by', 'moe', 'szyslak', '||dash||', 'handsome', '||comma||', 'suave', '||comma||', 'debonair', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'get', 'the', 'camera', 'offa', 'me', '||dash||', "i'm", "narratin'", 'here', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'anyway', '||comma||', "here's", 'my', 'little', 'tale', '||period||', 'as', 'the', "town's", 'bartender', '||comma||', 'i', 'know', "everyone's", 'problems', '||period||', 'and', "everyone's", 'got', 'problems', '||dash||', 'especially', 'the', 'married', 'ones', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'may', 'we', 'use', 'your', 'restroom', 'to', 'change', 'our', 'kids', 'out', 'of', 'their', 'cricket', 'uniforms', '||question_mark||', '||return|', 'manjula_nahasapeemapetilon:', 'we', 'got', 'caught', 'in', 'the', 'rain', 'because', 'someone', "wouldn't", 'use', 'international', 'short', 'form', 'rules', '||period||', '||return|', 'moe_szyslak:', 'calm', 'down', 'there', '||comma||', "'pu", 'and', 'she-pu', '||period||', 'you', 'can', 'use', 'the', 'restroom', '||period||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'my', 'one', 'day', 'off', 'and', "it's", 'miserable', '||period||', '||return|', 'manjula_nahasapeemapetilon:', 'this', 'is', 'my', 'day', 'everyday', '||exclamation_mark||', '||return|', 'apu_nahasapeemapetilon:', 'you', 'see', 'this', '||question_mark||', '||left_parentheses||', 'mimes', 'playing', 'tiny', 'sitar', '||right_parentheses||', "i'm", 'playing', 'the', "world's", 'smallest', 'sitar', 'for', 'you', '||period||', '||return|', 'manjula_nahasapeemapetilon:', 'oh', '||comma||', 'thank', 'you', 'for', 'saving', 'my', 'precious', '||period||', '||period||', '||period||', 'gheet', '||exclamation_mark||', '||left_parentheses||', 'sighs', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sympathetic', '||right_parentheses||', 'sounds', 'like', 'you', 'had', 'a', 'rough', 'day', '||period||', '||return|', 'manjula_nahasapeemapetilon:', "it's", 'true', '||period||', '||return|', 'manjula_nahasapeemapetilon:', 'my', 'eyes', 'have', 'more', 'bags', 'than', 'the', 'darjeeling', 'limited', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'slightly', 'confused', 'chuckle', '||right_parentheses||', 'yeah', '||comma||', "that's", 'probably', 'a', 'good', 'one', '||period||', 'here', '||comma||', 'i', 'got', "somethin'", 'that', 'might', 'cheer', 'ya', 'up', '||period||', '||return|', 'moe_szyslak:', 'i', 'got', 'this', 'for', 'women', 'that', 'came', 'to', 'the', 'bar', '||comma||', 'and', 'low-blow', 'boxing', 'for', 'the', 'guys', '||period||', '||return|', 'boxer:', '||left_parentheses||', 'pre-recorded', '||comma||', 'in', 'pain', '||right_parentheses||', 'my', 'nards', '||exclamation_mark||', 'my', 'nards', '||exclamation_mark||', 'my', 'nards', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'so', 'uh', '||comma||', 'would', 'you', 'like', 'to', 'cut', 'one', '||question_mark||', '||left_parentheses||', 'then', 'nervous', '||right_parentheses||', 'i', 'mean', 'a', 'rug', '||period||', 'oh', 'god', '||comma||', 'i', 'always', 'say', 'the', 'wrong', 'thing', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'annoyed', '||right_parentheses||', 'you', 'said', "you'd", 'be', 'home', 'by', 'seven', 'to', 'help', 'with', 'my', "mother's", 'birthday', '||exclamation_mark||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'panicked', '||right_parentheses||', 'then', 'what', 'happened', '||question_mark||', '||return|', 'homer_simpson:', 'i', "don't", 'know', '||period||', '||return|', 'carny:', 'teacup', '||question_mark||', "how'd", 'that', 'get', 'in', 'there', '||question_mark||', '||left_parentheses||', 'whispers', '||right_parentheses||', 'question', 'me', '||comma||', 'you', 'little', 'rutabaga', 'brain', '||comma||', "i'll", 'take', 'your', 'eyeball', 'and', 'make', 'soup', 'out', 'of', 'it', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'well', '||comma||', 'how', 'can', 'you', 'be', 'so', 'sure', 'your', 'wife', 'is', 'not', 'the', 'putty', 'in', 'the', "bartender's", 'hands', '||question_mark||', '||return|', 'homer_simpson:', 'yeah', '||comma||', 'padre', '||period||', 'how', 'innocuous', 'are', 'your', 'flashbacks', '||question_mark||', '||return|', 'rev', '||period||', '_timothy_lovejoy:', 'well', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'grim', '||right_parentheses||', 'the', 'ferry', 'will', 'be', 'back', 'in', 'ten', 'minutes', '||period||', "it'll", 'take', 'us', 'home', '||period||', '||period||', '||period||', 'to', 'find', 'out', 'the', 'truth', '||period||', '||return|', 'apu_nahasapeemapetilon:', '||left_parentheses||', 'pointedly', '||comma||', 'to', 'lovejoy', '||right_parentheses||', 'the', 'truth', '||period||', '||period||', '||period||', '||return|', 'ralph_wiggum:', '||left_parentheses||', 'popping', 'head', 'in', '||comma||', 'ominous', '||right_parentheses||', 'the', 'roof', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'carl_carlson:', 'man', '||comma||', 'you', 'sure', 'saved', 'that', 'dog', 'show', '||period||', '||return|', 'lenny_leonard:', 'moe', '||comma||', 'you', 'were', 'hilarious', '||period||', '||return|', 'moe_szyslak:', 'i', 'was', 'just', "doin'", 'what', 'comes', 'naturally', 'to', 'me', '||dash||', 'being', 'mean', 'to', 'animals', '||period||', '||return|', 'man_with_crazy_beard:', '||left_parentheses||', 'voice', 'like', 'christopher', 'lloyd', '||right_parentheses||', 'excuse', 'me', '||comma||', 'sir', '||period||', 'i', 'was', 'wondering', 'if', 'you', 'would', 'judge', 'an', 'outrageous', 'beard', 'contest', "i'm", 'in', 'tonight', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'anyone', 'can', 'get', 'a', 'laugh', 'at', 'the', 'expense', 'of', 'an', 'ugly', 'dog', '||period||', 'but', 'crazy', 'beards', '||question_mark||', "that's", 'where', 'the', 'big', 'boys', 'play', '||period||', '||return|', 'moe_szyslak:', 'can', 'you', 'make', 'it', 'sound', 'like', 'girls', "askin'", 'me', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'delighted', 'chuckle', '||right_parentheses||', 'okay', '||comma||', 'you', 'crazy', 'dames', '||period||', "i'll", 'do', 'it', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'which', 'means', 'this', 'joint', 'is', 'closed', 'for', 'the', 'night', '||period||', '||return|', 'barney_gumble:', "don't", 'be', 'that', 'way', '||period||', '||return|', 'homer_simpson:', 'you', "can't", 'close', '||exclamation_mark||', "i'll", 'have', 'to', 'go', 'home', 'and', 'drink', 'better', 'beer', 'at', 'half', 'the', 'price', 'in', 'natural', 'lighting', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'i', "didn't", 'want', 'to', 'have', 'to', 'do', 'this', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'yeah', "that's", 'right', '||exclamation_mark||', 'scatter', '||comma||', 'ya', 'cockroaches', '||exclamation_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'walks', 'up', '||right_parentheses||', 'mr', '||period||', 'szyslak', '||comma||', 'would', 'you', 'like', 'to', 'buy', 'some', 'band', 'candy', '||question_mark||', '||return|', 'lisa_simpson:', 'that', "doesn't", 'work', 'on', 'me', '||period||', '||return|', 'moe_szyslak:', 'oh', 'yeah', '||question_mark||', 'how', "'bout", 'this', 'scary', 'face', '||question_mark||', '||left_parentheses||', 'scary', 'noises', '||right_parentheses||', '||return|', 'lisa_simpson:', 'i', 'can', 'see', 'that', 'down', 'deep', 'is', 'a', 'decent', 'man', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'fine', '||period||', '||return|', 'moe_szyslak:', '||period||', '||period||', '||period||', 'i', "didn't", 'rip', 'out', 'his', 'voice', 'box', '||comma||', 'but', 'i', 'did', 'stretch', 'out', 'his', 'tee', 'shirt', '||comma||', 'then', 'they', 'said', 'i', "ain't", 'allowed', 'back', 'in', 'california', 'no', 'more', 'and', 'i', 'can', 'no', 'longer', 'make', 'judgments', 'about', "nothin'", '||period||', '||period||', '||period||', '||return|', 'barney_gumble:', 'hey', 'moe', '||comma||', 'am', 'i', 'okay', 'to', 'drive', '||question_mark||', '||return|', 'moe_szyslak:', 'legally', '||comma||', 'i', "can't", 'say', '||period||', '||return|', 'barney_gumble:', 'to', 'a', 'drunk', 'man', "that's", 'a', 'yes', '||exclamation_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'driving', 'noises', '||comma||', 'then', '||right_parentheses||', 'beep', '||exclamation_mark||', 'beep', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'he', 'seems', 'fine', '||period||', 'there', 'is', 'one', 'bright', 'side:', "i'm", 'also', 'forbidden', 'from', 'ever', "watchin'", 'fox', '||period||', '||return|', 'marge_simpson:', 'you', "can't", 'even', 'show', 'it', 'in', 'the', 'bar', '||question_mark||', '||return|', 'moe_szyslak:', "that's", 'right', '||dash||', 'and', 'business', 'has', 'never', 'been', 'better', '||period||', '||return|', 'moe_szyslak:', 'oh', 'hey', '||comma||', "how's", 'it', "goin'", 'there', '||comma||', 'mr', '||period||', 'murdoch', '||question_mark||', '||return|', 'rupert_murdoch:', 'never', 'mind', 'me', '||dash||', 'put', 'on', 'the', 'jay', 'leno', 'show', '||period||', '||return|', 'jay_leno:', 'have', 'you', 'seen', 'this', '||question_mark||', 'the', 'president', 'says', 'iran', 'has', 'gotten', 'hold', 'of', 'the', 'most', 'dangerous', 'weapon', 'known', 'to', 'man:', 'the', 'b', '||period||', 'p', '||period||', 'oil', 'rig', '||period||', "that's", 'right', '||comma||', 'ladies', 'and', 'gentlemen', '||period||', 'i', 'know', 'how', 'to', 'make', 'that', 'leak', 'disappear', '||dash||', 'put', 'it', 'on', 'nbc', '||period||', '||return|', '||return|', '||return|', 'lisa_simpson:', 'hey', '||comma||', 'dad', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'hey', 'pal', '||comma||', 'howya', "doin'", '||question_mark||', '||return|', 'lisa_simpson:', 'fine', '||period||', 'i', 'was', 'hoping', 'you', 'and', 'your', 'friends', 'could', 'tell', 'me', 'something', 'about', 'baseball', 'strategy', '||period||', '||return|', 'moe_szyslak:', 'the', 'only', 'thing', 'i', 'know', 'about', 'strategy', 'is', 'that', 'whatever', 'the', 'manager', 'does', '||comma||', "it's", 'wrong', '||comma||', 'unless', 'it', 'works', '||comma||', 'in', 'which', 'case', "he's", 'a', 'button-pusher', '||period||', '||return|', 'lenny_leonard:', 'i', 'hate', 'guys', 'that', 'just', 'push', 'buttons', 'all', 'day', '||period||', '||return|', 'carl_carlson:', 'you', 'just', 'push', 'buttons', 'all', 'day', '||period||', '||return|', 'lenny_leonard:', 'you', 'know', '||comma||', 'ever', 'since', 'obama', 'came', 'in', '||comma||', "you've", 'got', 'all', 'the', 'answers', '||comma||', "don't", 'you', '||question_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'frustrated', 'noise', '||right_parentheses||', 'does', 'anyone', 'here', 'actually', 'know', 'anything', 'about', 'baseball', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'nods', '||right_parentheses||', 'uh', '||comma||', 'the', 'guys', 'in', 'that', 'booth', 'down', 'there', '||period||', '||return|', 'gary:', 'as', 'a', 'pitcher', '||comma||', 'cliff', 'lee', 'is', 'clearly', 'superior', 'to', 'zack', '||left_parentheses||', 'grenky', '||right_parentheses||', 'grienke', '||period||', '||return|', 'professor_jonathan_frink:', 'uh', 'yes', '||comma||', 'i', 'completely', 'agree', '||comma||', 'with', 'the', 'following', 'colossal', 'exception:', 'before', 'the', 'fourth', 'inning', 'after', 'a', 'road', 'loss', 'in', 'a', 'domed', 'stadium', '||period||', 'then', "it's", 'good', 'to', 'be', 'grienke', '||period||', 'unless', "he's", 'got', 'a', 'bunion', '||comma||', 'in', 'which', 'case', 'he', 'is', 'notably', 'ineffective', '||period||', '||left_parentheses||', 'frink', 'noise', '||right_parentheses||', '||return|', 'lisa_simpson:', 'wow', '||comma||', "i'm", 'surprised', 'you', 'guys', 'know', 'so', 'much', 'about', 'a', 'sport', '||period||', '||return|', 'professor_jonathan_frink:', '||left_parentheses||', 'portentous', '||right_parentheses||', 'oh', 'lisa', '||comma||', 'baseball', 'is', 'a', 'game', 'played', 'by', 'the', 'dexterous', 'but', 'only', 'understood', 'by', 'the', 'poin-dexterous', '||period||', '||left_parentheses||', 'chuckle', '||right_parentheses||', 'do', 'you', 'understand', 'what', 'i', 'laid', 'out', 'there', '||question_mark||', '||return|', 'doug:', 'the', 'key', 'to', 'understanding', 'the', 'game', 'is', 'sabermetrics', '||period||', '||return|', 'lisa_simpson:', 'huh', '||question_mark||', '||return|', 'professor_jonathan_frink:', 'the', 'field', 'was', 'developed', 'by', 'statistician', 'bill', 'james', '||period||', '||period||', '||period||', '||return|', 'bill_james:', 'i', 'made', 'baseball', 'as', 'fun', 'as', 'doing', 'your', 'taxes', '||exclamation_mark||', '||return|', 'professor_jonathan_frink:', 'using', 'sabermetrics', '||comma||', 'even', 'an', 'eight-year-old', 'girl', 'can', 'run', 'a', 'ballclub', 'with', 'the', 'sagacity', 'of', 'a', 'stengel', 'and', 'the', 'single-mindedness', 'of', 'a', 'steinbrenner', '||period||', 'i', 'call', 'it', 'a', 'stein-stengel-', '||left_parentheses||', 'frink', 'noise', '||right_parentheses||', '||period||', '||return|', 'lisa_simpson:', 'thanks', '||comma||', 'guys', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'annoyed', '||right_parentheses||', 'hey', '||comma||', 'speaking', 'of', 'stats', '||comma||', "i'm", 'none', 'too', 'pleased', 'about', 'your', 'ratio', 'of', '||quotation_mark||', 'seats', 'occupied', '||quotation_mark||', 'to', '||quotation_mark||', 'beers', 'ordered', '||period||', '||quotation_mark||', '||return|', 'gary:', 'you', 'mean', 'our', 'sobo', '||question_mark||', "let's", 'calculate', 'it', 'now', '||exclamation_mark||', '||return|', 'doug:', "what's", 'the', 'conversion', 'factor', 'for', 'ginger', 'beer', '||question_mark||', '||return|', 'gary:', '||left_parentheses||', '||quotation_mark||', 'duh', '||quotation_mark||', '||right_parentheses||', 'refreshingness', 'over', 'effervescence', '||period||', '||return|', 'benjamin:', 'plus', 'or', 'minus', 'tang', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'rueful', '||right_parentheses||', 'why', 'did', 'i', 'advertise', 'my', 'drink', 'specials', 'in', 'scientific', 'american', '||question_mark||', '||return|', 'professor_jonathan_frink:', 'i', 'can', 'think', 'of', 'three', 'reasons', '||period||', 'first', 'of', 'all', 'you', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'shut', 'up', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'wow', '||comma||', 'homer', '||comma||', 'this', "year's", 'only', 'eleven', 'hours', 'old', 'and', "it's", 'already', 'your', 'annus', 'horribilis', '||period||', '||left_parentheses||', 'off', 'the', "others'", 'looks', '||right_parentheses||', 'my', 'new', "year's", 'resolution', 'was', 'to', 'learn', 'latin', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'conspiratorial', '||right_parentheses||', 'uh', 'listen', '||comma||', 'homer', '||dash||', 'i', 'know', 'a', 'guy', 'who', 'fixes', 'things', 'for', 'folks', 'who', 'need', 'things', 'fixed', '||period||', 'but', '||comma||', 'uh', '||comma||', 'i', "can't", 'talk', 'about', 'it', 'here', '||period||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'still', 'not', 'private', 'enough', '||period||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'this', 'is', 'private', '||comma||', 'but', 'a', 'little', 'dank', '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'what', 'you', 'do', 'is', 'go', 'down', 'to', 'window', 'nine', 'at', 'the', 'courthouse', '||period||', 'you', 'slip', 'the', 'guy', 'a', 'hundred', 'bucks', 'and', 'your', 'record', 'is', 'as', 'clean', 'as', '||period||', '||period||', '||period||', '||left_parentheses||', 'looks', 'around', 'bar', '||right_parentheses||', 'uh', '||comma||', 'i', "ain't", 'got', "nothin'", 'clean', 'to', 'compare', 'it', 'to', '||period||', '||return|', 'moe_szyslak:', 'it', 'was', 'either', 'this', 'or', 'put', 'in', 'a', 'ladies', 'room', '||period||', '||return|', 'fat_tony:', 'exquisite', '||period||', 'as', 'a', 'reward', '||comma||', "i've", 'planned', 'a', 'little', 'surprise', 'for', 'you', '||period||', '||return|', '||return|', '||return|', 'waylon_smithers:', 'can', 'i', 'have', 'a', 'scotch', 'and', 'water', '||question_mark||', '||return|', 'moe_szyslak:', 'my', 'scotch', 'is', 'a', 'scotch', 'and', 'water', '||period||', '||return|', 'waylon_smithers:', 'business', 'is', 'slow', '||comma||', 'huh', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||period||', 'frankly', '||comma||', "i'm", 'surprised', "you're", 'not', 'across', 'the', 'street', 'where', 'they', 'drink', 'for', 'fun', '||comma||', 'instead', 'of', 'here', '||comma||', 'where', '||comma||', 'uh', '||comma||', 'horrible', 'addiction', 'compels', 'you', '||period||', '||return|', 'waylon_smithers:', 'they', "won't", 'let', 'me', 'in', '||dash||', 'no', 'one', 'wants', 'an', 'executive', 'assistant', 'who', 'only', 'works', 'out', 'six', 'hours', 'a', 'day', '||period||', 'if', 'only', 'this', 'town', 'had', 'a', '||quotation_mark||', "men's", 'bar', '||quotation_mark||', 'for', 'the', 'average-looking', 'fellow', '||period||', '||period||', '||period||', '||return|', 'mr', '||period||', '_burns_heads:', '||left_parentheses||', 'first', 'head', '||right_parentheses||', '||period||', '||period||', '||period||', 'true', 'admiration', '||period||', '||period||', '||period||', '||left_parentheses||', 'second', 'head', '||right_parentheses||', 'self-made', 'man', '||period||', '||period||', '||period||', '||left_parentheses||', 'third', 'head', '||right_parentheses||', 'kill', 'the', 'other', 'two', 'heads', '||period||', '||period||', '||period||', '||left_parentheses||', 'first', 'head', '||right_parentheses||', 'true', 'admiration', '||period||', '||period||', '||period||', '||left_parentheses||', 'second', 'head', '||right_parentheses||', 'self-made', 'man', '||period||', '||period||', '||period||', '||left_parentheses||', 'third', 'head', '||right_parentheses||', 'kill', 'them', 'before', 'they', 'suspect', '||period||', '||period||', '||period||', '||left_parentheses||', 'first', 'head', '||right_parentheses||', 'suspect', 'what', '||question_mark||', '||period||', '||period||', '||period||', '||return|', 'waylon_smithers:', 'huh', '||question_mark||', 'huh', '||question_mark||', 'listen', '||comma||', 'what', 'if', 'i', 'helped', 'you', 'turn', 'this', 'bar', 'into', 'a', 'hangout', 'for', 'guys', 'like', 'me', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'intrigued', '||right_parentheses||', 'uh-huh', '||period||', '||period||', '||period||', '||return|', 'waylon_smithers:', 'just', 'so', "it's", 'clear', 'what', "i'm", 'proposing', '||comma||', 'the', 'men', "i'm", 'talking', 'about', 'are', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'whoa', '||comma||', 'whoa', '||exclamation_mark||', 'no', 'offense', '||comma||', 'uh', '||comma||', 'but', 'uh', '||comma||', 'i', 'just', "ain't", 'comfortable', 'hanging', 'around', 'all', 'night', 'with', '||comma||', 'uh', '||comma||', "y'know", 'whatchamacallit', '||period||', '||period||', '||period||', 'uh', '||comma||', 'swishkabobs', '||period||', '||return|', 'waylon_smithers:', '||left_parentheses||', 'knowing', '||right_parentheses||', 'yeah', '||comma||', 'right', '||period||', "it's", 'too', 'bad', '||period||', 'could', 'have', 'been', 'fun', '||period||', 'could', 'have', 'made', 'a', 'little', 'money', '||period||', '||return|', 'moe_szyslak:', 'thank', 'you', '||comma||', 'but', 'i', 'am', 'very', 'happy', 'with', 'my', 'clientele', 'as', 'they', 'are', '||period||', '||return|', 'barney_gumble:', 'hey', '||comma||', 'moe', '||exclamation_mark||', 'two', 'more', 'for', 'me', 'and', 'my', 'buddy', '||period||', '||return|', 'moe_szyslak:', 'that', 'was', 'my', "grandmother's", 'wedding', 'urinal', '||exclamation_mark||', "that's", 'it', '||period||', 'we', 'are', 'changing', 'this', 'place', 'up', '||period||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'check', 'that', 'out', '||exclamation_mark||', '/', 'stuff', 'is', "getting'", 'done', '||exclamation_mark||', '/', 'look', 'at', 'them', 'renovations', '||exclamation_mark||', '/', 'and', '||period||', '||period||', '||period||', 'finished', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'after', 'this', '||comma||', "ain't", 'no', 'turning', 'back', '||period||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'you', 'know', '||comma||', 'i', 'love', 'our', "valentine's", 'day', 'tradition', 'of', 'going', 'out', 'with', 'each', "others'", 'sisters', '||period||', '||return|', 'carl_carlson:', 'is', 'there', 'anything', 'better', 'than', 'my', 'best', "friend's", 'face', 'on', 'a', 'girl', 'body', '||question_mark||', '||return|', 'lainie:', 'not', 'that', 'i', 'can', 'think', 'of', '||exclamation_mark||', '||return|', 'carlotta:', "nothin'", 'better', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'boy', '||comma||', 'i', 'love', "valentine's", 'day', '||period||', 'stir', 'a', 'drop', 'of', 'jã¤germeister', 'into', 'some', 'pink', 'lemonade', '||comma||', 'slice', 'in', 'some', 'strawberry', 'chapstick', '||comma||', 'call', 'it', '||quotation_mark||', "cupid's", 'ambrosia', '||comma||', '||quotation_mark||', 'and', 'you', 'can', 'charge', 'up', 'the', 'wazoo', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'now', 'all', 'you', 'need', 'are', 'customers', '||period||', '||left_parentheses||', 'drains', 'the', 'drink', '||right_parentheses||', 'well', '||comma||', 'better', 'get', 'home', 'to', 'the', 'little', 'woman', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'moe', '||comma||', 'slightly', 'concerned', '||right_parentheses||', 'do', 'you', 'have', 'plans', 'for', 'tonight', '||question_mark||', '||return|', 'moe_szyslak:', 'what', 'are', 'you', '||comma||', 'crazy', '||question_mark||', 'of', 'course', 'i', 'do', '||period||', 'i', 'got', 'a', 'hot', 'date', '||period||', "c'mon", '||comma||', 'scram', '||comma||', 'so', 'i', 'can', 'get', 'ready', '||exclamation_mark||', '||return|', 'moe_szyslak:', "i'm", "tellin'", 'ya', '||comma||', "i'm", 'fine', '||period||', "i've", 'never', 'been', 'happier', '||period||', 'see', '||question_mark||', '||return|', 'moe_szyslak:', "that's", 'a', 'smile', '||comma||', 'right', '||question_mark||', "showin'", 'teeth', '||comma||', 'eyes', 'all', 'crinkly', '||period||', '||left_parentheses||', 'weak', 'laugh', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'huge', 'sobs', '||comma||', 'then', 'sees', 'homer', '||right_parentheses||', 'stop', 'opening', 'doors', '||exclamation_mark||', '||return|', 'announcer:', 'coming', 'up', 'next', 'on', '||quotation_mark||', 'world', 'of', 'war', '||quotation_mark||', '||period||', '||period||', '||period||', '||return|', 'announcer:', '||quotation_mark||', 'hitler', 'and', 'eva', 'braun:', 'crazy', 'in', 'love', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'even', 'you', 'let', 'me', 'down', '||comma||', 'hitler', '||period||', '||return|', "man's_voice:", 'hey', '||comma||', 'you', '||exclamation_mark||', 'spending', "valentine's", 'day', 'by', 'yourself', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'big', '||right_parentheses||', 'huhza', '||question_mark||', '||return|', 'dr', '||period||', '_kissingher:', 'if', "you're", 'watching', 'this', 'alone', '||comma||', 'your', 'love', 'life', 'is', 'like', '||quotation_mark||', 'sister', 'act', '3', '||quotation_mark||', ':', 'no', 'whoopi', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'i', 'knew', 'my', 'love', 'life', 'was', 'like', 'that', 'movie', 'somehow', '||period||', '||return|', 'dr', '||period||', '_kissingher:', 'well', '||comma||', "i'm", 'going', 'to', 'tell', 'you', 'my', 'secrets', 'right', 'now', '||period||', '||period||', '||period||', '||return|', 'dr', '||period||', '_kissingher:', 'if', '||quotation_mark||', 'right', 'now', '||quotation_mark||', 'means', '||quotation_mark||', 'tomorrow', 'night', 'at', 'my', 'seminar', 'at', 'the', 'springfield', 'airport', 'motor', 'lodge', '||period||', '||quotation_mark||', 'so', 'if', "you're", 'ready', 'to', 'turn', 'from', 'couch', 'potato', 'to', 'sex', 'tornado', '||comma||', 'come', 'and', 'see', 'me', '||comma||', 'dr', '||period||', 'kissingher', '||period||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'what', 'have', 'i', 'got', 'to', 'lose', '||question_mark||', 'they', 'say', 'for', 'every', 'man', '||comma||', 'somewhere', 'on', 'earth', "there's", 'one', 'woman', '||period||', '||return|', '||return|', '||return|', 'grampa_simpson:', '||left_parentheses||', 'bitterly', '||right_parentheses||', 'everything', 'everyone', 'just', 'said', 'is', 'either', 'obvious', 'or', 'wrong', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'do', "somethin'", 'about', 'your', 'dad', '||period||', "he's", 'casting', 'a', 'pall', 'over', 'this', 'grim', 'dungeon', 'full', 'of', 'losers', '||period||', '||return|', 'lenny_leonard:', 'pfft', '||comma||', 'dungeon', '||period||', 'we', 'can', 'leave', 'any', 'time', 'we', 'want', '||period||', '||return|', 'carl_carlson:', 'homer', '||comma||', 'why', "don't", 'you', 'just', 'make', 'some', 'more', 'of', 'the', 'serum', 'yourself', '||question_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'because', 'lisa', "won't", 'tell', 'me', 'what', 'flower', "it's", 'from', '||period||', '||return|', 'voice:', 'excuse', 'me', '||period||', '||period||', '||period||', '||return|', 'walther_hotenhoffer:', 'my', 'name', 'is', 'walther', 'hotenhoffer', 'and', "i'm", 'in', 'the', 'pharmaceutical', 'business', '||period||', '||return|', 'carl_carlson:', 'i', 'was', "wonderin'", 'when', 'that', 'guy', 'was', 'gonna', 'state', 'his', 'name', 'and', 'occupation', '||period||', '||return|', 'walther_hotenhoffer:', 'quiet', '||period||', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', 'sir', '||comma||', 'has', 'your', 'daughter', 'found', 'a', 'drug', 'that', 'renders', 'old', 'people', 'tolerable', 'to', 'us', 'normals', '||question_mark||', '||return|', 'homer_simpson:', 'yeah', '||period||', 'but', 'lisa', "won't", 'tell', 'me', 'how', 'to', 'make', 'it', '||period||', '||return|', 'walther_hotenhoffer:', 'lisa', 'is', 'irrelevant', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'stern', '||right_parentheses||', 'you', 'better', 'elaborate', '||exclamation_mark||', '||return|', 'walther_hotenhoffer:', 'all', 'i', 'need', 'is', 'one', 'drop', 'of', 'extract', '||comma||', 'and', 'i', 'can', 'synthesize', 'the', 'drug', 'at', 'my', 'plant', '||period||', '||left_parentheses||', 'scrutinizes', 'grampa', '||right_parentheses||', 'but', 'where', 'do', 'i', 'find', 'that', 'drop', '||question_mark||', '||period||', '||period||', '||period||', '||return|', 'walther_hotenhoffer:', 'nein', '||period||', '||period||', '||period||', 'nein', '||period||', '||period||', '||period||', 'nein', '||period||', '||period||', '||period||', 'nein', '||period||', '||period||', '||period||', 'ah-ha', '||exclamation_mark||', '||return|', 'grampa_simpson:', 'not', 'so', 'fast', '||comma||', 'fritz', '||exclamation_mark||', 'before', 'you', 'waltz', 'off', 'with', 'my', 'grampa', 'grease', '||comma||', 'i', 'wanna', 'know', '||comma||', 'what', 'did', 'you', 'do', 'during', 'the', 'war', '||question_mark||', '||return|', 'walther_hotenhoffer:', 'world', 'war', 'two', '||question_mark||', 'i', "wasn't", 'born', 'yet', '||period||', '||return|', 'grampa_simpson:', '||left_parentheses||', 'suspicious', '||right_parentheses||', 'funny', 'how', 'many', 'germans', 'say', 'that', 'these', 'days', '||period||', '||return|', '||return|', '||return|', 'roz:', 'be', 'my', 'guest', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'delighted', '||right_parentheses||', 'ooh', '||comma||', 'a', 'text', '||period||', '||left_parentheses||', 'checks', 'phone', '||right_parentheses||', "let's", 'see', '||period||', '||period||', '||period||', 'text', 'message', 'for', 'i', '||period||', 'm', '||period||', 'a', '||period||', 'wiener', '||period||', '||left_parentheses||', 'shows', 'them', 'phone', '||right_parentheses||', 'as', 'you', 'all', 'can', 'see', '||comma||', 'i', '||period||', 'm', '||period||', 'a', '||period||', 'wiener', '||exclamation_mark||', '||return|', 'barney_gumble:', 'i', 'see', 'it', '||comma||', 'moe', '||period||', '||left_parentheses||', 'laughs', '||right_parentheses||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'realizing', '||comma||', 'to', 'phone', '||right_parentheses||', 'why', 'you', '||exclamation_mark||', 'when', 'i', '||dash||', '||return|', 'moe_szyslak:', 'when-i-get-a-hold-of-you', '||period||', '||period||', '||period||', 'oh', 'dammit', '||comma||', 'i', 'typed', 'an', 'f', '||comma||', 'not', 'a', 'd', '||period||', 'uh', '||period||', '||period||', '||period||', '||left_parentheses||', 'rapidly', '||right_parentheses||', 'delete', '||period||', 'delete', '||period||', 'delete', '||period||', 'delete', '||period||', 'oh', 'crap', '||comma||', 'i', 'just', 'donated', 'twenty', 'dollars', 'to', 'haiti', '||exclamation_mark||', '||return|', 'dr', '||period||', '_zander:', 'bart', '||comma||', "i'm", 'trying', 'to', 'get', 'you', 'to', 'feel', 'something', 'for', 'your', 'father', '||exclamation_mark||', '||return|', 'bart_simpson:', 'i', 'feel', 'something', 'for', 'him', '||period||', 'here', 'it', 'comes', '||period||', '||left_parentheses||', 'burps', '||right_parentheses||', '||return|', 'dr', '||period||', '_zander:', 'why', 'you', 'little', '||period||', '||period||', '||period||', '||question_mark||', '||exclamation_mark||', '||return|', 'dr', '||period||', '_zander:', '||left_parentheses||', 'straining', '||right_parentheses||', 'this', 'is', 'a', 'tough', 'neck', '||exclamation_mark||', 'oh', '||comma||', "it's", 'so', 'strong', '||exclamation_mark||', 'like', 'an', 'old', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', "y'see", '||question_mark||', 'you', 'see', 'how', 'that', 'boy', 'pushes', 'your', 'buttons', '||question_mark||', '||return|', 'dr', '||period||', '_zander:', "we'll", 'talk', 'when', "he's", 'dead', '||exclamation_mark||', '||left_parentheses||', 'strangles', 'bart', '||right_parentheses||', 'just', 'break', 'already', '||exclamation_mark||', '||return|', 'bart_simpson:', '||left_parentheses||', 'relieved', 'noise', '||comma||', 'then', 'warmly', '||right_parentheses||', 'thanks', '||comma||', 'dad', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'warmly', '||right_parentheses||', 'son', '||comma||', 'you', 'and', 'i', 'are', 'gonna', 'be', 'closer', 'than', 'ever', 'as', 'we', 'spend', 'the', 'rest', 'of', 'our', 'lives', 'suing', 'that', 'therapist', '||period||', '||return|', 'dr', '||period||', '_zander:', 'sue', 'me', 'for', 'what', '||question_mark||', 'my', 'home', 'in', 'a', 'hollowed-out', 'tree', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'contented', 'sigh', '||right_parentheses||', 'pretty', 'sweet', '||comma||', 'eh', 'boy', '||question_mark||', '||return|', 'bart_simpson:', "y'know", '||comma||', 'i', 'was', 'skeptical', '||comma||', 'but', 'i', 'guess', 'therapy', 'works', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'all', 'day', 'long', 'they', 'tell', 'me', 'stupid', '||comma||', 'pointless', '||comma||', 'boring', 'stories', '||comma||', 'and', 'i', 'have', 'to', 'stand', 'there', 'listening', 'with', 'a', 'phony', 'grin', 'plastered', 'on', 'my', 'face', '||period||', '||return|', 'moe_szyslak:', 'uh-huh', '||period||', '||return|', 'kirk_van_houten:', 'well', '||comma||', 'homer', '||comma||', "you're", 'safe', 'here', '||period||', 'you', 'can', 'forget', 'everything', 'they', 'said', '||period||', '||return|', 'homer_simpson:', 'when', 'i', 'look', 'at', 'you', '||dash||', 'all', 'i', 'see', 'are', 'the', 'foibles', 'that', 'drive', 'your', 'women', 'crazy', '||exclamation_mark||', 'foibles', '||exclamation_mark||', 'foibles', '||exclamation_mark||', 'foibles', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'calm', 'down', 'there', '||comma||', 'homer', '||period||', '||return|', 'moe_szyslak:', 'what', 'got', 'into', 'him', '||question_mark||', '||return|', 'moe_szyslak:', 'freaky', 'ad', 'campaign', "they're", 'running', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'yeah', '||comma||', "isn't", 'this', 'place', 'great', '||question_mark||', 'if', "you're", 'single', 'you', 'can', 'come', 'here', 'every', 'night', '||period||', '||return|', 'ned_flanders:', 'i', "don't", 'wanna', 'come', 'here', '||period||', 'last', 'time', 'i', 'did', '||comma||', 'someone', 'slipped', 'me', 'a', 'mickey', 'and', 'wrote', '||quotation_mark||', 'churchy', 'joe', '||quotation_mark||', 'on', 'my', 'face', '||period||', '||return|', 'moe_szyslak:', "it's", 'your', 'own', 'fault', '||period||', 'you', 'gotta', 'read', 'the', 'coaster', '||period||', '||return|', 'ned_flanders:', 'oh', 'my', '||period||', '||return|', 'homer_simpson:', 'ned', '||comma||', "let's", 'cut', 'to', 'the', 'chase', '||period||', '||return|', 'ned_flanders:', 'yeah', '||comma||', 'let', 'me', 'guess', '||period||', "you're", 'probably', 'gonna', 'do', 'something', 'boneheaded', 'like', 'try', 'to', 'talk', 'me', 'outta', "seein'", 'edna', '||period||', '||return|', 'homer_simpson:', 'ned', '||comma||', 'if', "it's", 'boneheaded', 'to', 'talk', 'you', 'outta', "seein'", 'edna', '||comma||', 'then', 'i', "don't", 'wanna', 'be', 'brainheaded', '||period||', '||return|', 'ned_flanders:', 'homer', '||comma||', 'listen', 'to', 'me', '||period||', 'for', 'a', 'long', 'time', 'now', "i've", 'been', "lookin'", 'over', 'the', 'fence', 'at', 'that', 'wonderful', 'relationship', 'you', 'have', 'with', 'marge', '||period||', 'then', 'i', 'remember', 'what', 'it', 'was', 'like', 'to', 'have', 'a', 'sweet', 'woman', 'of', 'my', 'own', 'lying', 'in', 'a', 'twin', 'bed', 'across', 'the', 'hall', 'from', 'mine', '||period||', '||left_parentheses||', 'continuing', '||right_parentheses||', '||return|', 'ned_flanders:', 'someone', 'to', 'hold', 'the', 'other', 'end', 'of', 'the', 'sheet', 'when', 'i', 'fold', 'it', 'up', '||period||', '||left_parentheses||', 'wistful', '||right_parentheses||', 'someone', 'to', 'put', 'in', 'my', 'prayers', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'choked', 'up', '||right_parentheses||', 'oh', 'ned', '||comma||', 'i', 'never', 'dreamed', 'that', 'beneath', 'those', 'iddilies', 'and', 'diddilies', 'there', 'was', 'a', 'dude', '||period||', '||return|', 'ned_flanders:', "that's", 'right', '||period||', 'and', 'like', 'any', 'man', '||comma||', 'i', 'put', 'on', 'my', 'secret', 'christian', 'underpants', 'one', 'leg', 'at', 'a', 'time', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'oh', '||comma||', 'you', 'beautiful', '||comma||', 'beautiful', 'wuss', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'moved', '||right_parentheses||', 'ned', '||comma||', 'i', 'have', 'a', 'confession', 'to', 'make:', 'i', 'may', 'not', 'have', 'come', 'here', 'solely', 'with', 'the', 'noble', 'intention', 'of', 'getting', 'drunk', '||period||', 'but', 'now', '||comma||', 'from', 'the', 'bottom', 'of', 'my', 'heart', '||comma||', 'i', 'wish', 'you', 'and', 'edna', 'the', 'best', '||period||', '||return|', 'homer_simpson:', 'fellow', 'barflies', '||exclamation_mark||', 'to', 'ned', 'flanders', 'and', 'edna', 'krabappel', '||exclamation_mark||', '||return|', 'barney_gumble:', 'what', 'a', 'fox', '||exclamation_mark||', '||return|', 'carl_carlson:', 'yes', '||exclamation_mark||', 'to', 'edna', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'that', 'broad', 'is', 'some', 'dame', '||exclamation_mark||', '||return|', 'ned_flanders:', '||left_parentheses||', 'surprised', '||right_parentheses||', 'you', 'all', 'know', 'edna', '||question_mark||', '||return|', 'barney_gumble:', 'oh', 'yeah', '||comma||', 'man', '||exclamation_mark||', '||return|', 'carl_carlson:', 'everybody', 'knows', 'edna', '||period||', '||return|', 'seymour_skinner:', '||left_parentheses||', 'holding', 'two-thirds-empty', 'beer', 'mug', '||right_parentheses||', 'we', 'made', 'sweet', 'music', 'in', 'the', 'band', 'room', '||comma||', 'poetry', 'during', 'english', 'class', '||comma||', 'and', 'you', "don't", 'wanna', 'know', 'what', 'we', 'did', 'in', 'the', 'multi-purpose', 'room', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'skinner', 'and', 'barflies', '||right_parentheses||', 'shut', 'up', '||period||', '||return|', 'comic_book_guy:', 'my', 'email', 'address', 'is', 'edna-lover-one-seventy-two', '||period||', 'it', 'was', 'the', 'lowest', 'number', 'i', 'could', 'get', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sotto', '||right_parentheses||', 'guys', '||comma||', 'quit', 'telling', 'the', 'truth', '||exclamation_mark||', '||return|', 'joey_kramer:', 'yeah', '||comma||', "edna's", 'amazing', '||period||', '||return|', 'ned_flanders:', 'joey', 'kramer', '||question_mark||', 'the', 'drummer', 'from', 'aerosmith', '||question_mark||', '||return|', 'joey_kramer:', 'yup', '||comma||', "that's", 'me', '||exclamation_mark||', 'and', 'after', 'a', 'night', 'with', 'edna', '||comma||', 'i', "couldn't", 'walk', 'this', 'way', '||comma||', 'that', 'way', '||comma||', 'or', 'any', 'other', 'way', '||period||', 'ooh', 'la', 'la', '||exclamation_mark||', '||return|', 'ned_flanders:', 'wait', '||period||', '||period||', '||period||', "you've", 'all', '||left_parentheses||', 'gulps', '||right_parentheses||', 'plucked', 'a', 'peach', 'from', 'her', 'tree', '||question_mark||', '||return|', 'homer_simpson:', 'um', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', '||left_parentheses||', 'attempting', 'to', 'change', 'subject', '||right_parentheses||', 'so', 'uh', '||comma||', 'joey', '||comma||', 'is', 'wikipedia', 'accurate', 'when', 'it', 'says', '||quotation_mark||', 'walk', 'this', 'way', '||quotation_mark||', 'was', 'inspired', 'by', '||quotation_mark||', 'young', 'frankenstein', '||question_mark||', '||quotation_mark||', '||return|', 'ned_flanders:', 'well', 'homer', '||comma||', 'you', 'really', 'put', 'one', 'over', 'on', 'old', 'stupid', 'flanders', '||comma||', 'here', '||period||', '||left_parentheses||', 'sadly', '||right_parentheses||', 'thanks', 'a', 'lot', '||comma||', 'neighbor', '||period||', '||return|', 'homer_simpson:', "don't", 'you', 'mean', '||quotation_mark||', 'neighboreeno', '||question_mark||', '||quotation_mark||', '||return|', 'ned_flanders:', 'no', '||period||', 'just', 'plain', 'neighbor', '||period||', '||return|', 'homer_simpson:', 'you', 'stupid', 'jerks', '||exclamation_mark||', 'i', "can't", 'believe', 'you', 'could', 'be', 'so', 'cruel', '||exclamation_mark||', 'especially', 'you', '||comma||', 'joey', 'kramer', '||exclamation_mark||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'wow', '||dash||', 'i', "can't", 'believe', 'homer', 'bagged', 'the', 'tiger', '||exclamation_mark||', '||return|', 'wayne:', 'excuse', 'me', '||comma||', 'i', 'need', 'to', 'use', 'the', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'cutting', 'in', '||right_parentheses||', "men's", 'room', '||question_mark||', 'oh', 'my', 'god', '||exclamation_mark||', "we're", 'completing', 'each', "other's", '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'prompting', '||right_parentheses||', 'completing', 'each', "other's", '||period||', '||period||', '||period||', 'sen', '||period||', '||period||', '||period||', 'ten', '||period||', '||period||', '||period||', '||left_parentheses||', 'really', 'drawing', 'it', 'out', '||right_parentheses||', 'cesss', '||period||', '||period||', '||period||', '||return|', 'snake_jailbird:', 'totally', 'surprising', 'entrance', '||exclamation_mark||', '||return|', 'snake_jailbird:', 'hand', 'over', 'your', 'cash', 'and', 'jewelry', '||exclamation_mark||', 'pronto', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'okay', 'now', '||comma||', "don't", 'want', 'no', 'trouble', '||period||', 'let', 'me', 'just', 'get', 'my', 'cash', 'out', 'of', 'my', 'cash', 'drawer', 'here', '||period||', '||return|', 'moe_szyslak:', 'just', '||comma||', 'uh', '||comma||', "linin'", 'up', 'all', 'the', 'presidents', 'nice', 'and', 'neat', '||period||', '||period||', '||period||', "ain't", "tryin'", 'to', 'be', 'no', 'hero', '||left_parentheses||', 'chuckles', '||right_parentheses||', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'nervous', 'chuckle', 'then', 'quickly', '||right_parentheses||', 'here', 'you', 'go', '||period||', '||return|', 'snake_jailbird:', 'thanks', 'for', 'the', 'upgrade', '||period||', 'ha-ha', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'amazed', '||right_parentheses||', 'wayne', '||question_mark||', '||return|', 'wayne:', '||left_parentheses||', 'commanding', '||right_parentheses||', 'stand', 'back', '||comma||', 'homer', '||exclamation_mark||', 'i', 'know', 'what', "i'm", 'doing', '||period||', '||return|', 'lenny_leonard:', 'well', '||comma||', 'we', 'all', 'know', 'what', "we're", 'doing', '||period||', 'the', 'question', 'is', '||comma||', 'is', 'it', 'an', 'appropriate', 'reaction', 'to', 'the', 'situation', '||question_mark||', '||return|', 'snake_jailbird:', '||left_parentheses||', 'exasperated', 'noise', '||right_parentheses||', 'drunks', 'are', 'sooo', 'boring', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'anguished', 'scream', '||right_parentheses||', 'my', 'fresco', '||exclamation_mark||', "that's", 'coming', 'out', 'of', 'your', 'stealings', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'furious', 'to', 'jailbird', '||right_parentheses||', "that's", "comin'", 'out', 'of', 'your', 'stealings', '||exclamation_mark||', '||return|', 'homer_simpson:', 'wayne', '||comma||', 'maybe', "it's", 'the', 'me', 'being', 'still', 'alive', 'talking', '||comma||', 'but', 'i', 'think', "you're", 'awesome', '||period||', '||return|', 'wayne:', "i'm", 'just', 'a', 'guy', 'who', 'saw', 'what', 'needed', 'to', 'be', 'done', 'and', 'did', 'it', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', "speakin'", 'of', 'which', '||comma||', "let's", 'get', 'these', 'eggs', 'back', 'in', 'a', 'jar', '||period||', '||return|', 'moe_szyslak:', 'wow', '||comma||', "that's", 'the', 'farthest', 'that', 'one', 'of', 'my', 'eggs', 'ever', 'made', 'it', 'down', "someone's", 'throat', '||exclamation_mark||', '||return|', 'narrator:', 'then', 'the', 'barflies', 'drank', 'too', 'much', '||period||', '||return|', 'narrator:', 'the', 'boy', 'came', 'to', 'get', 'his', 'father', '||period||', '||return|', 'narrator:', 'and', 'they', 'drove', 'home', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', "i'm", 'telling', 'you', 'guys', '||comma||', 'roz', 'told', 'old', 'man', 'burns', 'i', 'ditched', 'work', 'early', 'and', 'now', "i'm", 'her', 'assistant', '||period||', '||return|', 'lenny_leonard:', 'i', 'dunno', '||comma||', 'homer', '||period||', "you're", "sayin'", "she's", 'nice', 'on', 'the', 'outside', '||comma||', 'but', 'mean', 'on', 'the', 'inside', '||question_mark||', 'no', 'one', 'could', 'pull', 'that', 'off', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'enjoy', '||period||', 'and', 'as', 'for', 'you', '||comma||', 'homer', '||comma||', "don't", 'worry', '||period||', "you're", 'at', "moe's", 'tavern', '||dash||', 'lady-free', 'since', 'eighty-three', '||period||', '||return|', 'homer_simpson:', 'what', 'the', '||dash||', '||left_parentheses||', 'standing', '||right_parentheses||', 'this', 'is', 'a', "gentleman's", 'club', '||exclamation_mark||', '||return|', 'barney_gumble:', 'yeah', '||period||', '||left_parentheses||', 'belches', '||right_parentheses||', '||return|', 'roz:', 'so', '||comma||', 'what', 'you', 'boys', "drinkin'", '||question_mark||', "i'm", "buyin'", '||period||', '||return|', 'lenny_leonard:', 'can', 'we', 'just', 'have', 'the', 'cash', 'value', 'of', 'the', 'drink', '||question_mark||', '||return|', 'carl_carlson:', "i'd", 'rather', 'use', 'my', 'money', 'to', 'buy', 'a', 'moe', 'souvenir', 't-shirt', '||period||', '||return|', 'moe_szyslak:', 'that', 'comes', 'in', 'kid', 'sizes', 'too', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', "we're", 'not', 'here', 'for', 'you', '||comma||', "we're", 'here', 'for', 'lenny', '||period||', '||return|', 'moe_szyslak:', 'i', "wouldn't", 'join', 'one', 'of', 'your', 'hare-brained', 'schemes', 'for', 'all', 'the', 'japanese', 'girlfriend', 'pillows', 'in', 'kyoto', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'sorry', '||comma||', 'guys', '||period||', 'i', 'just', 'adopted', 'a', 'capuchin', 'monkey', 'and', 'i', "can't", 'leave', 'it', 'alone', 'during', 'the', 'bonding', 'phase', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'desperate', '||right_parentheses||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'i', 'want', 'in', '||exclamation_mark||', 'what', 'does', 'your', 'crew', 'need', '||question_mark||', 'a', 'safecracker', '||question_mark||', 'a', 'wheel', 'man', '||question_mark||', '||return|', 'homer_simpson:', 'the', 'caper', 'is', 'writing', 'a', "kids'", 'fantasy', 'novel', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sheepish', '||right_parentheses||', 'well', '||comma||', 'i', "don't", 'like', 'to', 'brag', 'about', 'it', '||comma||', 'but', 'i', 'did', 'publish', 'five', 'modestly', 'successful', "children's", 'books', '||period||', '||return|', 'bart_simpson:', 'all', 'we', 'need', 'now', 'is', 'a', 'computer', 'guy', '||period||', '||period||', '||period||', '||return|', 'seymour_skinner:', '||quotation_mark||', '||period||', '||period||', '||period||', 'and', 'so', '||comma||', 'lucinda', 'placed', 'the', 'fifth', 'shard', 'in', 'the', 'stained-glass', 'window', '||comma||', 'which', 'now', 'clearly', 'read:', "'your", 'parents', 'are', 'alive', '||period||', "'", 'gregor', 'turned', 'to', 'his', 'twin', 'sister', 'and', 'they', 'both', 'understood:', 'their', 'journey', 'was', 'just', 'beginning', '||period||', 'the', 'end', '||period||', '||quotation_mark||', '||return|', 'bart_simpson:', "it's", 'good', '||period||', '||quotation_mark||', 'weekly', 'reader', 'star', 'selection', '||quotation_mark||', 'good', '||period||', '||return|', 'homer_simpson:', 'i', 'just', 'hope', 'we', 'put', 'in', 'enough', 'steampunk', '||comma||', 'whatever', 'that', 'is', '||period||', '||return|', 'professor_jonathan_frink:', 'who', 'wants', 'to', 'see', 'my', 'cover', '||left_parentheses||', 'frink-y', '||right_parentheses||', 'mock-up', '||question_mark||', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'reading', 'title', '||right_parentheses||', '||quotation_mark||', 'the', 'troll', 'twins', 'of', 'underbridge', 'academy', '||period||', '||quotation_mark||', '||return|', 'neil_gaiman:', "i'm", 'so', 'proud', 'of', 'us', '||period||', '||return|', 'bart_simpson:', 'oh', '||comma||', 'you', "didn't", 'write', 'any', 'of', 'it', '||exclamation_mark||', '||return|', 'neil_gaiman:', '||left_parentheses||', 'defensive', '||right_parentheses||', 'that', 'tuna', "didn't", 'salad', 'itself', '||exclamation_mark||', '||return|', 'homer_simpson:', 'gentlemen', '||exclamation_mark||', 'to', '||quotation_mark||', 'the', 'troll', 'twins', 'of', 'underbridge', 'academy', '||exclamation_mark||', '||quotation_mark||', '||return|', 'homer_simpson:', 'so', '||comma||', 'does', 'this', 'square', 'us', 'for', 'kansas', 'city', '||question_mark||', '||return|', 'bart_simpson:', 'square', 'as', '||quotation_mark||', 'golden', 'books', '||comma||', '||quotation_mark||', 'pop', '||period||', '||return|', 'lisa_simpson:', 'what', 'happened', 'to', 'me', '||question_mark||', 'in', 'one', 'vulnerable', 'moment', 'i', 'became', 'the', 'thing', 'i', 'hated', 'most', '||dash||', 'a', 'literary', 'fraud', '||period||', '||return|', 'bart_simpson:', 'but', 'lis', '||comma||', 'when', 'this', 'book', 'comes', 'out', '||comma||', "you'll", 'be', 'beloved', '||exclamation_mark||', 'not', 'just', 'by', 'milhouses', '||comma||', "you'll", 'get', 'attention', 'from', 'jacksons', '||comma||', 'xanders', '||dash||', 'even', 'aidens', '||exclamation_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'dreamy', '||right_parentheses||', 'aww', '||comma||', "i've", 'always', 'wanted', 'an', 'aiden', '||period||', '||period||', '||period||', '||return|', 'seymour_skinner:', 'here', 'it', 'is:', 'an', 'advance', 'copy', '||period||', '||return|', 'patty_bouvier:', '||quotation_mark||', 'the', 'vampire', 'twins', 'of', 'transylvania', 'prep', '||question_mark||', '||exclamation_mark||', '||quotation_mark||', "where's", 'the', 'trolls', '||question_mark||', '||return|', 'professor_jonathan_frink:', 'the', 'trolls', 'are', 'now', 'vampires', '||comma||', 'the', 'brooklyn', 'bridge', 'is', 'now', 'a', 'castle', '||comma||', 'and', 'fuzzlepitch', 'is', 'now', 'bloodball', '||exclamation_mark||', 'oh', '||exclamation_mark||', 'weak', '||exclamation_mark||', 'weak', '||exclamation_mark||', 'and', 'lame', '||exclamation_mark||', '||return|', 'homer_simpson:', 'how', 'could', 'the', 'publishers', 'change', 'our', 'book', '||question_mark||', 'if', 'they', 'had', 'been', 'in', 'charge', 'of', 'the', 'sistine', 'chapel', '||comma||', 'the', 'whole', 'thing', 'would', 'be', 'vampires', '||dash||', 'instead', 'of', 'the', "pope's", 'private', 'naked', 'dude', 'mural', '||exclamation_mark||', '||return|', '||return|', '||return|', 'krusty_the_clown:', '||left_parentheses||', 'hems', 'and', 'haws', '||right_parentheses||', 'when', 'you', 'said', '||period||', '||period||', '||period||', '||left_parentheses||', 'nervous', 'laugh', '||right_parentheses||', '||return|', 'moe_szyslak:', "i'm", "payin'", 'extra', 'for', 'this', 'channel', '||question_mark||', "hasn't", 'been', 'good', 'since', '||quotation_mark||', 'the', 'wire', '||period||', '||quotation_mark||', 'aw', '||comma||', 'who', 'am', 'i', "kiddin'", '||question_mark||', 'i', 'never', 'watched', '||quotation_mark||', 'the', 'wire', '||period||', '||quotation_mark||', 'had', 'to', 'bluff', 'my', 'way', 'through', 'so', 'many', 'conversations', '||period||', '||return|', 'krusty_the_clown:', 'well', '||comma||', 'annie', '||comma||', 'i', 'think', 'you', 'know', 'my', 'answer', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'yeah', '||period||', 'i', 'keep', 'meaning', 'to', 'switch', 'things', 'around', '||comma||', 'but', 'this', 'place', 'is', 'always', 'a', 'crime', 'scene', '||period||', '||return|', 'lenny:', '||left_parentheses||', 'carl', 'voice', '||right_parentheses||', "i'm", 'carl', '||period||', '||return|', 'carl:', '||left_parentheses||', 'lenny', 'voice', '||right_parentheses||', "don't", 'you', 'remember', '||question_mark||', 'you', 'came', 'to', 'the', 'brain-switching', 'ceremony', '||period||', '||return|', 'carll', '||quotation_mark||', ':', 'because', 'i', 'wanted', 'to', 'get', 'back', 'together', 'with', 'my', 'wife', '||comma||', 'who', 'was', 'sleeping', 'with', 'carl', 'at', 'the', 'time', '||period||', '||return|', 'lenny:', 'turns', 'out', 'she', 'had', 'switched', 'brains', 'with', 'a', 'monkey', 'on', 'a', 'japanese', 'game', 'show', '||period||', 'and', 'it', 'just', 'got', 'weirder', 'from', 'there', '||period||', '||return|', 'carll', '||quotation_mark||', ':', 'i', 'found', 'it', 'quite', 'normal', '||period||', 'anyway', '||comma||', 'if', "you're", 'looking', 'for', 'your', 'dad', '||period||', 'he', 'took', 'the', 'kids', 'to', 'see', 'his', 'dad', '||period||', '||return|', 'bart_simpson:', 'thanks', '||period||', '||left_parentheses||', 'dashes', 'out', '||right_parentheses||', '||return|', 'lennyy', '||quotation_mark||', ':', 'hey', 'moe', '||comma||', 'get', 'me', 'another', 'beer', '||exclamation_mark||', '||return|', 'carl:', 'quit', "makin'", 'me', 'fat', '||exclamation_mark||', '||return|', '||return|', '||return|', 'carl_carlson:', 'is', 'it', 'a', 'little', 'weird', 'how', 'much', 'he', 'cries', '||question_mark||', '||return|', 'lenny_leonard:', 'no', 'way', '||period||', 'when', 'a', 'guy', 'who', 'loves', 'america', 'cries', '||comma||', 'it', 'makes', 'him', 'super', 'straight', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'man', '||comma||', 'this', 'website', 'makes', 'talking', 'drunk', 'to', 'my', 'wife', 'so', 'much', 'safer', '||period||', '||return|', 'homer_simpson:', 'i', 'am', 'sitting', 'here', '||period||', '||period||', '||period||', 'zero', 'sheets', 'to', 'the', 'wind', '||period||', '||period||', '||period||', '||left_parentheses||', 'sneaky', 'chuckle', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'homer', 'voice', '||comma||', 'but', 'dignified', '||right_parentheses||', '||period||', '||period||', '||period||', 'counting', 'the', 'moments', 'to', 'closing', 'time', 'when', 'i', 'can', 'stumble', 'home', 'to', 'you', '||period||', 'another', 'round', '||comma||', 'moe', '||period||', 'uh-oh', '||period||', 'did', 'i', 'type', 'that', '||question_mark||', '||left_parentheses||', 'panicky', '||right_parentheses||', 'delete', '||exclamation_mark||', 'delete', '||exclamation_mark||', '||left_parentheses||', 'thoughtful', '||right_parentheses||', 'hm', '||comma||', 'typing', '||quotation_mark||', 'delete', '||quotation_mark||', 'does', 'not', 'delete', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||period||', '||period||', '||period||', 'and', "that's", 'why', 'i', 'really', "don't", 'believe', "there's", 'a', 'god', '||period||', 'thank', 'you', '||comma||', 'and', 'god', 'bless', 'america', '||period||', '||return|', 'mayor_joe_quimby:', '||left_parentheses||', 'annoyed', '||right_parentheses||', 'you', 'were', 'only', 'supposed', 'to', 'lead', 'us', 'in', 'the', 'pledge', 'of', 'allegiance', '||period||', '||return|', 'homer_simpson:', 'well', "i'm", 'pretty', 'sure', 'it', 'was', 'in', 'there', 'somewhere', '||period||', '||return|', 'mayor_joe_quimby:', 'now', '||comma||', 'let', 'me', 'conclude', 'by', 'thanking', 'moe', 'the', 'bartender', 'for', 'hosting', 'this', 'meeting', 'while', 'city', 'hall', 'is', 'fumigated', 'for', 'bedbugs', '||period||', '||return|', 'ned_flanders:', '||left_parentheses||', 'puzzled', '||right_parentheses||', 'bedbugs', '||question_mark||', 'just', 'why', 'is', 'there', 'a', 'bed', 'in', 'city', 'hall', '||question_mark||', '||return|', 'mayor_joe_quimby:', 'er', '||comma||', 'uh', '||comma||', 'meeting', 'adjourned', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'this', 'is', 'so', 'convenient', '||exclamation_mark||', 'i', 'can', 'go', 'straight', 'from', "doin'", 'my', 'civic', 'duty', 'to', 'having', 'a', 'beer', 'with', 'my', 'best', 'friend', 'carl', '||exclamation_mark||', '||return|', 'duffman:', 'and', 'i', 'can', 'toss', 'back', 'a', 'duff', 'sangre', 'de', 'los', 'muertos', 'with', 'my', 'best', 'friend:', 'mexican', 'duffman', '||exclamation_mark||', '||return|', 'mexican_duffman:', '||left_parentheses||', '||quotation_mark||', 'oh', 'yeah', '||quotation_mark||', '||exclamation_mark||', '||right_parentheses||', 'ho-la', '||exclamation_mark||', '||return|', 'carl_carlson:', 'hey', 'moe', '||comma||', "who's", 'your', 'best', 'friend', '||question_mark||', '||return|', 'moe_szyslak:', 'uh', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'well', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'well', '||comma||', 'i', 'just', 'made', 'friends', 'with', 'pepto-bismol', 'on', 'facebook', 'and', 'uh', '||period||', '||period||', '||period||', 'um', '||period||', '||period||', '||period||', '||left_parentheses||', 'changing', 'subject', '||right_parentheses||', 'hey', '||comma||', 'would', 'ya', 'look', 'at', 'that', '||question_mark||', "there's", 'a', 'spot', 'on', 'the', 'bar', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'come', 'on', '||exclamation_mark||', '||left_parentheses||', 'intense', 'scrubbing', 'noises', '||right_parentheses||', '||return|', 'lenny_leonard:', 'you', 'know', 'what', '||question_mark||', 'i', 'think', "moe's", 'best', 'friend', 'is', 'really', 'that', 'bar', 'rag', '||exclamation_mark||', '||return|', 'bart_simpson:', '||left_parentheses||', 'hardy', 'laugh', '||right_parentheses||', "that's", 'even', 'sadder', 'than', 'being', 'friends', 'with', 'milhouse', '||exclamation_mark||', '||return|', 'milhouse_van_houten:', '||left_parentheses||', 'starts', 'to', 'chuckle', '||comma||', 'then', '||comma||', 'unhappy', '||right_parentheses||', "y'know", 'something', '||comma||', 'bart', '||question_mark||', "i'm", 'getting', 'tired', 'of', 'things', 'like', 'that', '||period||', '||return|', 'bart_simpson:', 'tired', 'of', 'what', '||question_mark||', 'i', 'dump', 'on', 'you', '||comma||', 'and', 'you', 'take', 'it', '||dash||', "that's", 'how', 'friendship', 'works', '||period||', '||return|', 'milhouse_van_houten:', 'not', 'anymore', '||period||', '||left_parentheses||', 'ice', 'cold', '||right_parentheses||', 'friendship', 'over', '||period||', '||return|', 'milhouse_van_houten:', 'taxi', '||exclamation_mark||', '||return|', 'bart_simpson:', 'what', 'gives', '||question_mark||', "he's", 'not', "crawlin'", 'back', '||period||', '||return|', 'lisa_simpson:', 'even', 'a', 'kid', 'who', 'wears', 'a', '||quotation_mark||', 'finding', 'nemo', '||quotation_mark||', 'back', 'brace', 'has', 'some', 'pride', '||period||', 'you', 'went', 'too', 'far', 'this', 'time', '||comma||', 'bart', '||period||', '||return|', 'sadistic_barfly:', 'hey', '||comma||', 'moe', '||exclamation_mark||', 'i', 'got', 'a', 'job', 'here', 'for', 'your', '||quotation_mark||', 'best', 'friend', '||comma||', '||quotation_mark||', 'the', 'bar', 'rag', '||period||', '||return|', 'the_rich_texan:', 'me', 'too', '||exclamation_mark||', '||left_parentheses||', 'laughs', '||right_parentheses||', '||return|', 'homer_simpson:', 'witty', '||period||', '||left_parentheses||', 'chuckles', '||right_parentheses||', '||return|', 'lenny_leonard:', 'great', 'meeting', 'though', '||period||', '||return|', 'bar_rag:', 'yes', '||comma||', "that's", 'right', '||comma||', 'everyone', 'laugh', 'at', 'the', 'rag', '||period||', '||left_parentheses||', 'dramatic', '||comma||', '||quotation_mark||', 'king', 'lear', '||quotation_mark||', '||right_parentheses||', 'but', 'i', 'was', 'not', 'always', 'this', 'be-stainã¨d', 'swatch', 'you', 'see', 'before', 'you', '||period||', 'oh', 'no', '||comma||', 'gentles', '||period||', 'we', 'begin', 'in', 'early', 'medieval', 'france', '||period||', '||period||', '||period||', '||return|', 'bar_rag:', '||left_parentheses||', 'very', 'self-satisfied', '||right_parentheses||', 'that', 'tapestry', 'was', 'me', '||period||', '||return|', 'sponge:', 'right', '||comma||', 'and', 'i', 'was', 'the', 'gutenberg', 'bible', '||period||', '||return|', 'bartholomã©:', 'maman', '||comma||', 'we', 'have', 'failed', 'to', 'grow', '||period||', '||return|', 'lise:', "we've", 'had', 'too', 'little', 'food', '||exclamation_mark||', '||return|', 'marguerite:', '||left_parentheses||', 'annoyed', '||right_parentheses||', 'is', 'it', 'too', 'little', 'food', 'or', 'too', 'much', 'complaining', '||question_mark||', '||return|', 'lise:', 'maman', '||comma||', 'you', 'are', 'overstressed', '||period||', 'you', 'need', 'a', 'vacation', '||period||', 'perhaps', 'to', 'the', 'south', 'of', 'france', '||period||', '||return|', 'marguerite:', "we're", 'in', 'the', 'south', 'of', 'france', '||exclamation_mark||', '||return|', 'bar_rag:', '||left_parentheses||', 'pleased', 'noise', '||right_parentheses||', 'well', '||comma||', 'that', 'helps', '||period||', '||return|', 'bar_rag:', 'so', 'to', 'recap:', 'i', 'had', 'been', 'unjustly', 'torn', 'from', 'my', 'lofty', 'perch', '||period||', '||return|', 'bar_rag:', 'i', 'wound', 'up', 'as', 'a', 'barter', 'in', 'persia', '||period||', '||period||', '||period||', '||return|', 'lenny_leonard:', "y'know", '||comma||', 'moe', '||comma||', 'it', 'might', 'be', 'time', 'to', 'buy', 'a', 'new', 'bar', 'rag', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'yeah', '||comma||', 'sure', 'thing', '||comma||', "i'll", 'get', 'right', 'on', 'it', '||period||', '||return|', 'moe_szyslak:', 'no', 'way', 'i', 'would', 'abandon', 'you', '||comma||', 'raggie', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'emotional', 'sob', '||right_parentheses||', "you're", 'my', 'best', 'friend', '||period||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'i', 'guess', 'you', "didn't", 'eat', 'that', '||quotation_mark||', 'special', 'cheese', '||quotation_mark||', 'that', 'i', 'gave', 'you', 'yesterday', '||comma||', 'huh', '||question_mark||', '||left_parentheses||', 'chuckles', '||right_parentheses||', '||return|', 'bar_rag:', 'my', 'degradation', 'continued', '||period||', '||return|', 'bar_rag:', 'an', 'enterprising', 'seamstress', 'turned', 'me', 'into', 'the', 'flag', 'of', 'a', 'fledgling', 'nation', '||period||', '||return|', 'bar_rag:', 'unfortunately', '||comma||', 'a', 'nation', 'on', 'the', 'wrong', 'side', 'of', 'history', '||period||', '||return|', 'bar_rag:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'and', 'now', 'my', 'thousand-year', 'fall', 'from', 'grace', 'is', 'complete', '||period||', 'i', 'guess', 'i', 'should', 'be', 'happy', 'here', '||comma||', 'with', 'my', 'sad', '||comma||', 'but', 'predictable', '||period||', '||period||', '||period||', '||return|', 'bar_rag:', '||left_parentheses||', 'startled', 'noises', '||right_parentheses||', 'moe', '||exclamation_mark||', 'moe', '||exclamation_mark||', 'wake', 'up', '||exclamation_mark||', 'oh', 'no', '||comma||', 'i', "don't", 'want', 'to', 'find', 'out', "what's", 'worse', 'than', 'you', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'so', 'you', 'guys', 'have', 'any', 'luck', 'finding', 'a', 'new', 'job', '||question_mark||', '||return|', 'lenny_leonard:', 'does', 'it', 'look', 'like', "i've", 'got', 'a', 'job', '||question_mark||', '||return|', 'carl_carlson:', 'no', '||comma||', 'i', "didn't", '||period||', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'show', 'a', 'little', 'more', 'sensitivity', 'around', 'these', 'jobless', 'washouts', '||comma||', 'huh', '||question_mark||', '||return|', 'homer_simpson:', 'hey', '||comma||', "i've", 'gotta', 'tell', 'ya', '||comma||', "i'm", 'miserable', 'there', '||period||', "i'm", 'all', 'alone', '||semicolon||', 'and', 'when', "there's", 'some', 'problem', 'due', 'to', 'human', 'error', '||comma||', 'guess', 'who', 'gets', 'blamed', '||question_mark||', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'homer', '||period||', 'you', 'know', 'what', "i'm", 'playing', 'for', 'ya', '||question_mark||', '||return|', 'lenny_leonard:', 'the', "world's", 'smallest', 'violin', '||period||', 'and', 'now', 'i', 'gotta', 'sell', 'it', 'just', 'to', 'make', 'my', 'rent', '||period||', '||return|', 'lenny_leonard:', 'oh', 'my', 'god', '||exclamation_mark||', '||left_parentheses||', 'worried', '||right_parentheses||', "where's", 'the', 'bow', '||question_mark||', 'i', "can't", 'sell', 'it', 'without', 'the', 'bow', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'easy', '||comma||', 'easy', 'there', '||comma||', 'lenny', '||period||', 'you', 'can', 'always', 'play', 'it', 'pizzicato', '||period||', '||return|', 'lenny_leonard:', 'the', 'buyer', 'clearly', 'specified', 'violin', 'and', 'bow', '||exclamation_mark||', '||return|', 'homer_simpson:', 'maybe', 'i', 'should', 'be', 'heading', 'home', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'anguished', '||right_parentheses||', 'oh', 'no', '||comma||', 'he', 'stepped', 'on', 'the', 'bow', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'boy', '||comma||', 'this', 'place', 'has', 'gotten', 'so', 'grim', '||period||', "i'm", 'gonna', 'do', 'something', "i've", 'never', 'done:', 'make', 'myself', 'a', 'drink', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'arguing', 'with', 'himself', '||right_parentheses||', 'you', 'call', 'this', 'beer', '||question_mark||', 'this', 'is', 'watered-down', 'swill', '||exclamation_mark||', 'you', 'got', 'a', 'problem', '||question_mark||', 'well', "here's", 'the', 'complaint', 'department', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'you', 'know', 'what', 'i', 'think', '||comma||', 'moe', '||question_mark||', 'i', 'think', 'you', "ain't", 'got', 'the', 'guts', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'missed', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'homer', '||period||', 'i', 'could', 'hear', 'your', 'pathetic', 'rationalizing', 'through', 'the', 'door', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'why', "can't", 'i', 'hang', 'out', 'at', 'the', 'bar', 'all', 'day', '||question_mark||', 'my', 'wife', "doesn't", 'wanna', 'be', 'with', 'me', '||period||', '||return|', 'moe_szyslak:', 'look', '||comma||', "i'd", 'love', 'to', 'discuss', 'your', 'problems', 'but', 'a', 'pack', 'of', 'raccoons', 'took', 'over', 'my', 'back', 'room', 'and', "today's", 'the', 'day', 'i', 'make', 'my', 'stand', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'struggling', 'noises', '||comma||', 'then', '||right_parentheses||', "there's", 'more', 'than', 'i', 'thought', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'you', 'know', '||comma||', 'in', 'this', 'town', '||comma||', 'you', 'learn', 'to', 'adjust', 'to', 'things', '||period||', 'runaway', 'monorails', '||period||', '||period||', '||period||', 'nascar', 'star', 'jeff', 'gordon', '||period||', '||period||', '||period||', '||return|', 'jeff_gordon:', 'hey', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'hey', '||period||', 'bet', 'we', 'never', 'see', 'him', 'again', '||period||', '||return|', 'barney_gumble:', "i'm", 'gonna', 'call', 'it', 'a', 'day', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclamation_mark||', 'that', "plank's", 'only', 'for', "comin'", 'in', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'gently', '||right_parentheses||', 'try', 'to', 'land', 'on', 'the', 'other', 'traitors', '||period||', '||return|', 'chief_wiggum:', 'people', 'of', 'springfield', '||comma||', 'please', 'be', 'cool', 'like', 'lou', '||period||', '||return|', 'lou:', 'yo', '||period||', '||return|', 'chief_wiggum:', 'we', 'will', 'eliminate', 'one', 'eyesore', 'with', 'another', '||comma||', 'by', 'bulldozing', 'our', 'tire', 'fire', 'right', 'into', 'the', 'sinkhole', '||period||', '||return|', 'marge_simpson:', 'but', 'my', 'car', 'is', 'down', 'there', '||exclamation_mark||', '||return|', 'mayor_joe_quimby:', 'for', 'the', 'first', 'time', 'my', 'administration', 'has', 'solved', 'a', 'problem', '||period||', 'the', 'hole', 'has', 'been', 'filled', 'by', 'the', 'thing', 'it', 'fears', 'most:', 'stuff', '||exclamation_mark||', '||return|', 'marge_simpson:', 'i', "can't", 'believe', "we're", 'never', 'going', 'to', 'have', 'another', 'child', '||period||', '||period||', '||period||', '||left_parentheses||', 'sniffles', '||right_parentheses||', '||return|', 'lenny_leonard:', 'is', 'everything', 'okay', 'over', 'here', '||question_mark||', '||return|', 'homer_simpson:', 'sorry', 'guys', '||period||', 'private', 'family', 'moment', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'no', '||comma||', "s'okay", '||period||', 'we', 'can', 'share', 'this', 'with', 'you', '||period||', '||period||', '||period||', 'homer', "can't", 'make', 'a', 'baby', 'because', 'he', 'nuked', 'his', 'swimmers', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'sympathetic', '||right_parentheses||', 'aw', '||comma||', "that's", 'a', 'shame', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'nods', '||right_parentheses||', 'yeah', '||period||', "that's", 'why', 'i', 'wrap', 'my', 'plums', 'in', 'tin', 'foil', 'every', 'day', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'philosophic', '||right_parentheses||', 'eh', '||comma||', 'nothing', 'we', 'can', 'do', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'homer', '||period||', '||period||', '||period||', 'what', 'if', 'you', 'got', 'back', 'one', 'of', 'those', 'samples', 'you', 'sold', 'years', 'ago', 'at', 'the', 'shelbyville', 'sperm', 'bank', '||question_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'stunned', '||right_parentheses||', 'you', 'never', 'told', 'me', 'about', 'that', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'admitting', '||right_parentheses||', "it's", 'true', '||period||', '||period||', '||period||', "that's", 'how', 'i', 'got', 'the', 'money', 'to', 'buy', 'you', 'your', 'necklace', '||period||', '||return|', 'marge_simpson:', 'awww', '||period||', '||period||', '||period||', '||left_parentheses||', 'then', '||right_parentheses||', 'eww', '||period||', '||period||', '||period||', '||left_parentheses||', 'realizing', '||right_parentheses||', 'homie', '||exclamation_mark||', 'we', 'still', 'have', 'a', 'chance', '||exclamation_mark||', '||return|', 'homer_simpson:', 'i', '||comma||', 'uh', '||comma||', 'hope', "it's", 'twins', '||exclamation_mark||', '||return|', '||return|', '||return|', 'carl_carlson:', 'so', '||comma||', 'uh', '||comma||', 'what', 'are', 'you', 'gonna', 'do', 'with', 'the', 'money', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', 'well', '||comma||', 'thought', 'bubble', 'marge', 'said', 'we', 'should', 'put', 'it', 'in', 'a', 'college', 'fund', 'for', 'lisa', '||period||', '||return|', 'lenny_leonard:', 'so', "where's", 'the', 'money', 'now', '||question_mark||', '||return|', 'homer_simpson:', 'i', 'put', 'it', 'in', 'the', 'bank', '||period||', 'that', 'place', 'is', 'great', '||exclamation_mark||', 'on', 'their', 'wall', '||comma||', 'they', 'had', 'a', 'photo', 'with', 'an', 'old', 'couple', 'walking', 'on', 'the', 'beach', 'with', 'their', 'pants', 'rolled', 'up', '||period||', '||return|', 'carl_carlson:', 'uh', '||comma||', 'homer', '||comma||', 'we', 'all', 'wanna', 'walk', 'on', 'the', 'beach', 'with', 'our', 'pants', 'rolled', 'up', '||comma||', 'but', '||comma||', 'uh', '||comma||', 'banks', 'are', 'not', 'as', 'safe', 'as', 'they', 'used', 'to', 'be', '||period||', '||return|', 'lenny_leonard:', 'yeah', '||comma||', 'when', 'you', 'give', 'the', 'bank', 'your', 'money', '||comma||', 'they', 'lend', 'it', 'to', 'other', 'people', '||exclamation_mark||', 'i', 'saw', 'a', 'sesame', 'street', 'about', 'it', '||exclamation_mark||', 'kermit', 'was', 'wearing', 'his', 'trench', 'coat', 'and', 'everything', '||exclamation_mark||', '||return|', 'homer_simpson:', 'wait', '||comma||', 'the', 'frog', 'in', 'the', 'trench', 'coat', 'is', 'kermit', 'too', '||question_mark||', '||return|', 'lenny_leonard:', 'all', 'the', 'frogs', 'on', 'that', 'show', 'are', 'kermit', '||period||', 'keeps', 'all', 'the', 'other', 'frog', 'actors', 'out', 'of', 'work', '||period||', '||return|', 'homer_simpson:', 'that', 'settles', 'it', '||period||', 'no', 'banks', 'for', 'me', '||period||', '||return|', 'moe_szyslak:', "i'll", 'tell', 'you', 'where', 'you', 'should', 'put', 'your', 'money', '||period||', 'the', 'one', 'safe', 'place', 'left', 'in', 'this', 'world', 'of', 'woe:', '||return|', 'homer_simpson:', 'what', 'the', '||dash||', '||question_mark||', "i'm", 'not', 'gonna', 'gamble', 'with', 'my', "daughter's", 'future', '||period||', '||return|', 'moe_szyslak:', 'nah', '||comma||', 'you', "don't", 'have', 'to', 'bet', 'the', 'money', '||period||', 'the', 'poker', 'website', 'just', 'keeps', 'it', 'nice', 'and', 'safe', '||comma||', 'where', 'the', 'fdic', "can't", 'get', 'its', 'grubby', 'little', 'hands', 'on', 'it', '||exclamation_mark||', '||return|', 'homer_simpson:', 'a', 'poker', 'site', 'is', 'now', 'safer', 'than', 'an', 'american', 'bank', '||period||', 'has', 'our', 'nation', '||comma||', 'built', 'on', 'people', 'suing', 'because', 'their', 'onion', 'rings', 'were', 'too', 'hot', '||comma||', 'come', 'to', 'this', '||question_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclamation_mark||', "don't", 'you', 'badmouth', 'this', 'country', '||period||', 'compared', 'to', 'the', 'rest', 'of', 'the', 'third', 'world', '||comma||', "we're", "doin'", 'great', '||exclamation_mark||', '||return|', '||return|', '||return|', 'lenny_leonard:', 'so', "you're", 'saying', "you'd", 'rather', 'do', 'the', 'prettiest', 'dude', 'in', 'the', 'world', 'rather', 'than', 'the', 'ugliest', 'broad', '||question_mark||', '||return|', 'carl_carlson:', 'absolutely', '||period||', 'but', 'how', 'did', 'we', 'get', 'here', 'from', 'discussing', "aristotle's", 'poetics', '||question_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'well', '||comma||', 'if', 'it', "isn't", 'mr', '||period||', '||quotation_mark||', 'work', 'comes', 'before', 'bowling', '||period||', '||quotation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'to', 'dan', '||right_parentheses||', 'i', 'am', 'turning', 'my', 'back', '||comma||', 'because', 'i', "can't", 'stand', 'to', 'look', 'you', 'in', 'the', 'face', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'explaining', '||right_parentheses||', 'part', 'of', 'my', 'new', 'rice', 'wine', 'promotion', '||period||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'now', 'you', 'think', 'you', 'can', 'just', 'waltz', 'in', 'here', 'and', 'buy', 'everybody', 'a', 'beer', '||question_mark||', '||return|', 'dan_gillick:', 'i', "didn't", 'say', 'that', 'i', 'would', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'cutting', 'him', 'off', '||right_parentheses||', 'too', 'late', '||comma||', 'already', 'poured', '||period||', '||return|', 'dan_gillick:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'sorry', 'guys', '||dash||', 'i', 'got', 'the', 'kind', 'of', 'job', 'that', 'you', 'just', "can't", 'play', 'hooky', 'from', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', 'have', 'no', 'idea', 'what', 'you', 'do', 'or', 'who', 'you', 'work', 'with', '||comma||', 'but', 'i', 'am', 'sure', 'if', 'you', 'put', 'your', 'foot', 'down', 'on', 'their', 'throats', 'and', 'grind', 'until', 'you', 'hear', 'a', 'crunch', '||comma||', "they'll", 'sit', 'up', 'straight', '||period||', '||return|', 'dan_gillick:', 'really', '||question_mark||', "you're", 'sure', 'about', 'this', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'hey', '||comma||', 'listen', '||comma||', "i've", 'learned', 'a', 'lot', 'about', 'human', 'nature', 'by', 'watching', 'things', 'through', 'secret', 'cameras', '||period||', '||return|', 'dan_gillick:', 'uh-huh', '||period||', 'all', 'right', '||comma||', 'then', '||period||', 'okay', '||comma||', "we'll", 'see', 'about', 'that', 'bread', 'dipping', '||period||', 'thank', 'you', '||period||', 'thank', 'you', 'for', 'giving', 'me', 'an', 'attitude', '||period||', 'thank', 'you', 'for', 'giving', 'me', 'an', 'edge', '||period||', '||return|', 'moe_szyslak:', 'or', 'maybe', "it's", 'groveling', 'that', 'works', '||period||', 'eh', '||comma||', 'six', 'of', 'one', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', "what's", 'wrong', '||comma||', 'homer', '||question_mark||', "you've", 'got', 'an', 'expression', 'on', 'your', 'face', 'i', "ain't", 'never', 'seen', 'before', '||period||', 'like', 'one', 'of', 'them', 'charlie', 'brown', 'wiggle-frowns', '||period||', '||return|', 'homer_simpson:', "i'm", 'in', 'an', 'abusive', 'relationship', 'with', 'life', '||period||', 'it', 'keeps', 'beating', 'the', 'hell', 'out', 'of', 'me', '||comma||', 'and', "i'm", 'too', 'cowardly', 'to', 'leave', 'it', '||period||', '||left_parentheses||', 'sighs', '||right_parentheses||', 'maybe', 'i', 'could', 'drink', 'myself', 'to', 'death', '||period||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'well', '||comma||', 'you', "can't", '||period||', 'your', 'tolerance', 'is', 'too', 'high', '||period||', '||return|', 'dejected_barfly:', '||left_parentheses||', 'a', 'little', 'slurred', '||right_parentheses||', 'man', '||comma||', "i've", 'never', 'seen', 'homer', 'looking', 'this', 'bad', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'looking', 'at', 'homer', '||right_parentheses||', "you're", 'right', '||period||', 'he', 'needs', 'some', 'professional', 'help', '||period||', '||period||', '||period||', '||return|', 'duffman:', 'ooh', '||comma||', 'someone', 'is', 'down', 'in', 'the', 'duff', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sad', '||right_parentheses||', 'life', 'is', 'too', 'fragile', '||period||', 'one', 'minute', "you're", 'lying', 'in', 'your', 'hammock', "drinkin'", 'beer', '||comma||', 'the', 'next', 'thing', 'you', 'know', "you're", "sittin'", 'here', "drinkin'", 'beer', '||period||', '||return|', 'duffman:', 'homer', '||comma||', 'your', 'bleak', 'outlook', 'has', 'sent', 'a', 'smooth', '||comma||', 'icy', 'chill', 'down', '||period||', '||period||', '||period||', '||left_parentheses||', 'dropping', 'character', '||right_parentheses||', 'screw', 'it', '||comma||', 'i', 'quit', '||period||', '||return|', 'duffman:', '||left_parentheses||', 'to', 'duff', 'girls', '||right_parentheses||', 'janette', '||comma||', 'cheryl', '||comma||', 'get', 'your', 'own', 'ride', 'home', '||period||', '||return|', 'homer_simpson:', 'aw', '||comma||', 'come', 'on', 'chief', '||comma||', "i've", 'had', 'a', 'rotten', 'day', '||period||', "can't", 'you', 'help', 'me', 'out', '||question_mark||', '||return|', 'chief_wiggum:', 'sorry', '||comma||', "i'm", 'afraid', 'the', 'most', 'i', 'can', 'do', 'is', 'pretend', 'to', 'drive', 'you', 'home', '||period||', '||left_parentheses||', 'ã€', 'la', 'improv', 'comic', '||right_parentheses||', 'okay', '||comma||', 'now', 'hop', 'on', 'my', 'imaginary', 'motorcycle', '||period||', '||period||', '||period||', 'arms', 'around', 'my', 'belly', '||period||', '||period||', '||period||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'motorcycle', 'noises', '||right_parentheses||', '||period||', '||period||', '||period||', 'um', '||comma||', "i'm", 'gonna', 'need', 'you', 'to', 'chip', 'in', 'for', 'gas', '||period||', '||period||', '||period||', '||return|', 'chief_wiggum:', '||left_parentheses||', 'threatening', '||right_parentheses||', 'this', 'is', 'where', 'the', 'pretending', 'ends', '||period||', '||return|', 'moe_szyslak:', 'here', 'ya', 'go', '||comma||', 'homer', '||period||', 'boy', '||comma||', "y'know", '||comma||', 'when', "you're", 'just', 'here', 'alone', '||comma||', 'i', 'can', 'really', 'smell', 'ya', '||period||', '||return|', 'homer_simpson:', 'but', "i'm", 'not', 'alone', '||period||', "i'm", 'doing', 'some', 'face', 'time', 'with', 'lenny', '||period||', '||return|', 'lenny_leonard:', "it's", 'like', "i'm", 'skydiving', 'with', 'all', 'my', 'friends', '||exclamation_mark||', 'lemme', 'text', 'carl', '||period||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', 'what', 'are', 'you', "pullin'", 'the', 'ripcord', 'with', '||question_mark||', '||return|', 'lenny_leonard:', 'uh-oh', '||period||', 'maybe', "there's", 'a', 'ripcord', 'app', 'i', 'can', 'use', '||period||', '||return|', 'moe_szyslak:', 'huh', '||period||', 'looks', 'like', "you're", 'really', 'turning', "somethin'", 'over', 'in', 'your', 'mind', 'there', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'moe', '||comma||', 'i', 'could', 'believe', 'this', 'was', 'a', 'random', 'occurrence', '||comma||', 'or', 'i', 'could', 'believe', 'some', 'higher', 'power', 'reached', 'down', 'and', 'squeezed', 'the', 'sap', 'outta', 'that', 'tree', '||period||', "i'm", "choosin'", 'hope', '||exclamation_mark||', 'moe', '||comma||', 'a', 'bottle', 'of', 'your', 'finest', 'beer', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'here', 'you', 'go', '||period||', 'duff', 'adequate', '||period||', '||return|', 'homer_simpson:', 'to', 'hope', '||exclamation_mark||', '||left_parentheses||', 'drinks', 'happily', '||right_parentheses||', '||return|', 'moe_szyslak:', 'wow', '||comma||', 'no', "one's", 'ever', 'been', 'happy', 'in', 'this', 'place', 'before', '||period||', 'and', 'when', 'i', 'started', 'it', 'was', "moe's", 'ice', 'cream', 'carnival', '||period||', 'not', 'good', '||period||', '||return|', 'kent_brockman:', 'a', 'hundred', 'dollar', 'bill', 'for', 'anyone', 'who', 'will', 'give', 'me', 'the', 'truth', 'behind', 'this', 'so-called', 'miracle', 'tree', '||period||', '||return|', 'moe_szyslak:', "i'll", 'take', 'your', 'money', '||period||', 'the', "tree's", 'a', 'fraud', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'very', 'happy', '||right_parentheses||', 'i', 'just', 'got', 'a', 'hundred', '||exclamation_mark||', 'the', 'tree', 'is', 'real', '||exclamation_mark||', '||left_parentheses||', 'to', 'brockman', '||right_parentheses||', 'what', 'you', 'got', 'against', 'hope', '||comma||', 'anyway', '||question_mark||', '||return|', 'barney_gumble:', 'i', 'bet', 'something', 'disillusioned', 'you', 'as', 'a', 'child', '||period||', '||return|', '7-year-old_brockman:', 'this', 'is', 'junior', 'reporter', 'kenny', 'brockelstein', 'investigating', 'the', 'stories', 'that', 'kids', 'want', 'to', 'know', '||period||', '||period||', '||period||', '||return|', '7-year-old_brockman:', '||left_parentheses||', 'young', '||comma||', 'but', 'serious', '||right_parentheses||', 'mr', '||period||', 'mouse', '||comma||', 'how', 'come', 'you', "haven't", 'been', 'in', 'any', 'funny', 'cartoons', 'since', 'nineteen', 'thirty-three', '||question_mark||', '||return|', 'short_man:', '||left_parentheses||', 'gruff', '||right_parentheses||', "i'm", 'on', 'a', 'break', '||comma||', 'kid', '||period||', 'and', 'when', "i'm", 'on', 'a', 'break', '||comma||', 'the', 'mouse', 'is', 'dead', '||period||', '||return|', 'kent_brockman:', '||left_parentheses||', 'muttering', '||right_parentheses||', 'the', 'mouse', 'was', 'a', 'man', '||period||', 'his', 'teeth', 'were', 'yellow', '||comma||', 'his', 'breath', 'was', 'rancid', '||comma||', 'my', 'innocence', 'was', 'lost', 'in', 'a', 'plywood', 'castle', '||period||', '||return|', 'barney_gumble:', 'the', 'castle', 'is', 'plywood', '||question_mark||', '||left_parentheses||', 'upset', 'noise', '||right_parentheses||', '||return|', 'man_with_tree_hat:', 'it', 'was', 'all', 'a', 'hoax', '||exclamation_mark||', '||return|', 'tree_hoper:', "let's", 'burn', 'our', 'hats', '||exclamation_mark||', '||return|', 'crowd:', 'hope', 'is', 'dead', '||exclamation_mark||', 'burn', 'our', 'hats', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'thank', 'god', "there's", 'no', 'alcohol', 'in', 'this', 'bar', 'or', 'this', 'place', 'would', 'really', 'go', 'up', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasps', '||right_parentheses||', 'what', 'happened', 'here', '||question_mark||', '||return|', 'moe_szyslak:', 'i', "don't", 'know', '||period||', 'everything', 'crappy', 'about', 'this', 'place', 'they', 'like', '||exclamation_mark||', 'even', 'the', 'rats', '||exclamation_mark||', '||return|', 'pretentious_rat_lover:', 'more', 'manchego', '||comma||', 'aziz', '||question_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'sadly', '||right_parentheses||', 'i', 'guess', 'despite', 'all', 'our', 'so-called', 'civilization', '||comma||', 'anarchy', 'lurks', 'around', 'every', 'corner', '||comma||', 'like', 'a', 'racially-diverse', 'street', 'gang', 'on', 'a', 'network', 'cop', 'show', '||period||', '||return|', 'lloyd:', 'my', 'friend', '||comma||', 'you', 'just', 'experienced', 'w', '||period||', 'r', '||period||', 'o', '||period||', 'l', '||period||', 'first', 'hand', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'mad', '||right_parentheses||', 'hey', '||comma||', 'hey', '||exclamation_mark||', 'read', 'the', 'sign', '||comma||', 'pal', '||period||', '||return|', 'moe_szyslak:', '||quotation_mark||', 'no', 'acronyms', '||exclamation_mark||', '||quotation_mark||', '||left_parentheses||', 'to', 'barflies', '||right_parentheses||', 'and', 'that', 'goes', 'for', 'the', 'rest', 'of', 'you', '||comma||', 'too', '||exclamation_mark||', '||return|', 'larry:', 'okay', '||comma||', 'okay', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'pulls', 'out', 'shotgun', '||right_parentheses||', 'in', 'this', 'bar', 'we', 'say', '||quotation_mark||', 'old', 'kinderhook', '||exclamation_mark||', '||quotation_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'to', 'lloyd', '||right_parentheses||', "what's", 'w', '||period||', 'r', '||period||', 'o', '||period||', 'l', '||period||', '||question_mark||', '||return|', 'lloyd:', 'it', 'means', '||quotation_mark||', 'without', 'the', 'rule', 'of', 'law', '||period||', '||quotation_mark||', 'anarchy', '||period||', 'the', 'end', 'of', 'civilization', '||period||', 'coming', 'soon', 'to', 'an', 'america', 'near', 'you', '||period||', '||return|', 'homer_simpson:', 'america', "can't", 'collapse', '||exclamation_mark||', "we're", 'as', 'powerful', 'as', 'ancient', 'rome', '||exclamation_mark||', '||return|', 'lloyd:', 'take', 'a', 'look', 'at', 'this', '||period||', '||return|', 'narrator:', 'the', 'modern', 'world', '||period||', 'an', 'inexorable', 'march', 'of', 'progress', '||period||', '||return|', 'homer_simpson:', 'sweet', '||period||', '||return|', 'narrator:', '||left_parentheses||', 'ominous', '||right_parentheses||', 'or', 'is', 'it', '||question_mark||', '||return|', 'dr', '||period||', '_eugene_blatz:', "we're", 'slaves', 'to', 'the', 'system', '||period||', 'close', 'the', 'supermarket', '||comma||', 'and', 'we', 'starve', '||period||', 'cut', 'off', 'the', 'tap', '||comma||', 'we', 'drink', 'our', "cat's", 'blood', '||period||', '||return|', 'narrator:', 'who', 'will', 'survive', 'in', 'this', 'new', 'world', '||question_mark||', '||return|', 'narrator:', 'the', 'man', 'who', 'is', 'prepared', '||period||', '||return|', 'homer_simpson:', 'oh', 'my', 'god', '||exclamation_mark||', 'this', 'unsourced', '||comma||', 'undated', 'video', 'has', 'convinced', 'me', 'beyond', 'any', 'doubt', '||exclamation_mark||', '||return|', 'lloyd:', '||left_parentheses||', 'closes', 'phone', '||right_parentheses||', 'and', "i'm", 'the', 'guy', 'you', 'wanna', 'know', 'when', 'the', 'stuff', 'hits', 'the', 'fan', '||period||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'man', '||period||', 'no', 'need', 'to', 'almost', 'swear', '||period||', '||return|', 'lloyd:', 'come', 'with', 'me', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', "homer's", 'gone', '||period||', "let's", 'all', 'go', 'into', 'our', 'suspended', 'state', 'till', 'he', 'gets', 'back', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'well', '||comma||', 'in', 'my', 'case', 'my', 'mom', 'was', 'hit', 'with', 'a', 'voodoo', 'curse', '||comma||', 'i', 'gestated', 'for', 'five', 'years', '||comma||', 'then', 'i', 'popped', 'out', 'backwards', 'and', 'on', 'fire', '||period||', '||return|', 'bart_simpson:', '||left_parentheses||', 'skeptical', '||right_parentheses||', 'really', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'nods', '||right_parentheses||', 'keep', 'my', 'tail', 'right', 'here', 'in', 'this', 'jar', '||period||', '||return|', 'moe_szyslak:', 'good', 'times', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'acquitted', '||question_mark||', '||exclamation_mark||', 'then', 'my', 'nightmare', "isn't", 'over', '||question_mark||', '||left_parentheses||', 'sobs', '||right_parentheses||', '||return|', '||return|', '||return|', 'marge_simpson:', '||left_parentheses||', 'hopeful', '||right_parentheses||', 'in-ground', '||question_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'moans', '||right_parentheses||', 'moe', '||comma||', 'can', 'you', 'think', 'of', 'a', 'way', 'to', 'please', 'a', 'woman', 'that', 'starts', 'with', '||quotation_mark||', 'f', '||quotation_mark||', '||question_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'you', 'know', '||comma||', "it's", 'funny', 'you', 'should', 'mention', 'that', '||period||', "i've", 'been', "readin'", 'that', '||quotation_mark||', 'fifty', 'shades', 'of', 'grey', '||quotation_mark||', 'and', 'it', 'turns', 'out', 'that', 'what', 'chicks', 'want', 'now', 'is', 'a', 'guy', 'to', 'give', "'em", 'what-for', 'in', 'the', 'bedroom', 'there', '||period||', '||return|', 'homer_simpson:', 'woo', 'hoo', '||exclamation_mark||', "i'll", 'woo', 'her', 'with', 'woo-hoo', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'ah', "y'know", '||comma||', 'if', 'this', 'is', 'what', 'women', 'like', '||comma||', 'i', 'should', 'be', 'a', 'lot', 'more', 'popular', '||period||', 'but', 'it', 'does', 'inspire', 'me', 'to', 'work', 'on', 'my', 'fan', 'fiction', '||period||', '||return|', 'moe_szyslak:', '||quotation_mark||', 'sheriff', 'andy', 'took', 'barney', 'in', 'his', 'arms', 'and', 'kissed', 'him', 'deeply', '||comma||', 'then', 'said:', '||left_parentheses||', 'imitating', 'andy', 'griffith', '||comma||', 'but', 'stern', '||right_parentheses||', "'now", 'if', 'aunt', 'bee', 'asks', '||comma||', 'we', 'were', 'down', 'at', 'the', "fishin'", "hole'", '||period||', '||quotation_mark||', '||left_parentheses||', 'moe', 'voice', '||right_parentheses||', 'i', "can't", 'be', 'the', 'only', 'one', 'who', 'likes', 'this', '||period||', '||return|', '||return|', '||return|', 'carl_carlson:', 'wooden', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'plastic', '||exclamation_mark||', '||return|', 'carl_carlson:', 'wooden', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'plastic', '||exclamation_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'frustrated', '||right_parentheses||', 'why', 'do', 'we', 'always', 'argue', 'over', 'coffee', 'stirrers', '||question_mark||', '||return|', 'rev', '||period||', '_hooper:', 'you', 'know', "what's", 'really', 'stirring', '||question_mark||', 'live', 'local', 'theater', '||period||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'whoa', '||comma||', 'whoa', '||exclamation_mark||', 'before', 'i', 'let', 'a', 'holy', 'joe', 'walk', 'in', 'this', 'bar', '||comma||', "i've", 'gotta', 'know', 'which', 'of', 'the', 'two', 'true', 'faiths', 'you', 'represent', '||period||', '||return|', 'rev', '||period||', '_hooper:', 'well', '||comma||', 'i', 'represent', 'an', 'easy-going', 'offshoot', 'of', 'protestantism', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'pulls', 'out', 'a', 'shotgun', '||right_parentheses||', 'that', 'is', 'the', 'wrong', 'thing', 'to', 'say', 'to', 'a', 'snake', 'handler', '||period||', '||return|', 'lenny_leonard:', 'easy', 'moe', '||comma||', 'easy', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'this', "thing's", 'just', 'loaded', 'with', 'rock', 'salt', '||period||', 'i', 'just', 'use', 'it', 'to', 'keep', 'raccoons', 'outta', 'my', 'fridge', '||period||', 'and', 'of', 'course', 'to', 'coat', 'the', 'rims', 'of', 'my', 'margarita', 'glasses', '||period||', '||return|', 'homer_simpson:', 'padre', '||comma||', 'can', 'i', 'be', 'honest', 'with', 'you', '||question_mark||', "i've", 'sucked', 'every', 'church', 'book', 'ribbon', 'there', 'is', 'hoping', 'to', 'find', 'one', 'made', 'of', 'cherry', '||period||', 'but', 'there', "isn't", '||period||', '||return|', 'homer_simpson:', 'and', 'if', "it's", 'such', 'a', '||left_parentheses||', 'air', 'quotes', '||right_parentheses||', '||quotation_mark||', 'good', 'book', '||comma||', '||quotation_mark||', 'how', 'come', "there's", 'no', 'blurbs', 'on', 'the', 'back', '||question_mark||', 'not', 'even', 'david', 'sedaris', '||question_mark||', 'and', "he'll", 'flack', 'anything', '||exclamation_mark||', '||return|', 'homer_simpson:', 'seriously', '||comma||', '||quotation_mark||', 'pews', '||question_mark||', '||quotation_mark||', '||return|', 'rev', '||period||', '_hooper:', 'homer', '||comma||', 'i', 'love', 'your', 'passion', '||period||', "it's", 'terrific', '||comma||', "it's", 'really', 'something', '||period||', 'listen', '||dash||', "i'm", 'just', 'thinking', '||dash||', 'would', 'you', 'consider', 'being', 'my', 'deacon', '||question_mark||', '||return|', 'homer_simpson:', 'deacon', '||question_mark||', '||left_parentheses||', 'suspicious', '||right_parentheses||', 'is', 'that', 'like', 'one', 'of', 'those', 'weird', 'catholic', 'priest', 'things', '||question_mark||', '||return|', 'rev', '||period||', '_hooper:', 'no', '||comma||', 'not', 'at', 'all', '||period||', "it's", 'like', 'a', 'sexton', '||comma||', 'or', 'a', 'rector', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'now', "we're", "talkin'", '||period||', 'but', 'why', 'me', '||question_mark||', '||return|', 'rev', '||period||', '_hooper:', 'because', 'if', 'i', 'can', 'get', 'the', 'man', 'who', 'sleeps', 'through', 'church', 'to', 'be', 'my', 'guy', '||comma||', 'this', 'town', 'will', 'know', 'that', 'religion', 'can', 'be', 'fun', '||period||', '||return|', 'homer_simpson:', 'well', "i'm", 'not', 'one', 'for', 'taking', 'new', 'jobs', 'on', 'a', 'whim', '||period||', 'but', 'as', 'we', 'say', 'in', 'the', 'snow', 'plow', 'business', '||comma||', '||quotation_mark||', "i'm", 'your', 'astronaut', '||quotation_mark||', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||period||', '||period||', '||period||', 'so', 'i', 'stayed', 'up', 'for', 'the', 'last', 'eighty-seven', 'hours', 'watching', 'all', 'my', 'shows', '||period||', '||return|', 'homer_simpson:', "nothin's", 'gonna', 'delete', 'these', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'serious', '||comma||', 'sad', '||right_parentheses||', 'guys', '||comma||', "there's", "somethin'", 'i', 'wanna', 'tell', 'ya', '||period||', "somethin'", 'important', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'mid-conversation', '||right_parentheses||', 'so', 'who', 'do', 'you', 'like', '||comma||', 'the', 'padres', 'or', 'the', 'tigers', '||question_mark||', "i'm", 'not', "talkin'", 'about', 'baseball', '||comma||', "i'm", 'asking', 'if', 'a', 'priest', 'can', 'beat', 'a', 'big', 'cat', 'in', 'a', 'death', 'match', 'in', 'some', 'kind', 'of', 'polygon', '||period||', '||return|', 'carl_carlson:', 'hexa-', 'or', 'octa-', '||question_mark||', '||return|', 'lenny_leonard:', 'only', 'one', 'way', 'to', 'decide:', 'arm', 'wrestling', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sadly', 'muttering', 'to', 'himself', '||right_parentheses||', 'who', 'am', 'i', "kiddin'", '||question_mark||', 'they', "don't", 'care', 'about', 'me', '||period||', '||return|', 'moe_szyslak:', 'suicide', '||period||', 'finally', '||period||', "i'm", 'really', "doin'", 'it', '||period||', 'no', 'more', 'cries', 'for', '||left_parentheses||', 'loudly', '||right_parentheses||', 'helllp', '||exclamation_mark||', '||left_parentheses||', 'normal', '||right_parentheses||', "'cause", 'this', 'time', "there's", 'no', 'one', "that's", 'gonna', '||left_parentheses||', 'loud', '||right_parentheses||', 'save', 'me', '||exclamation_mark||', '||left_parentheses||', 'normal', '||right_parentheses||', 'i', 'mean', '||comma||', "it's", 'not', 'like', '||left_parentheses||', 'loud', '||right_parentheses||', "i'm", "beggin'", 'ya', '||comma||', 'please', '||comma||', 'please', 'show', 'me', 'some', 'love', '||exclamation_mark||', '||left_parentheses||', 'quiet', '||right_parentheses||', 'yeah', '||comma||', "it's", "nothin'", 'like', 'that', '||period||', '||left_parentheses||', 'small', 'sob', '||right_parentheses||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'maybe', 'i', 'should', 'call', '||period||', 'give', 'one', 'of', 'the', 'new', 'kids', 'a', 'chance', 'to', 'talk', 'to', 'the', 'legend', '||period||', '||return|', 'warm_female_voice:', 'hello', '||comma||', 'you', 'have', 'reached', 'the', 'buzz', 'cola', 'suicide', 'hotline', '||period||', '||return|', 'warm_female_voice:', '||left_parentheses||', 'recorded', '||right_parentheses||', 'our', 'options', 'have', 'changed', '||comma||', 'so', 'please', 'listen', 'carefully', '||period||', '||return|', 'warm_female_voice:', 'state', 'the', 'reason', 'you', 'are', 'committing', 'suicide', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'thoughtful', '||right_parentheses||', "nothin'", 'to', 'live', 'for', '||period||', '||return|', 'warm_female_voice:', 'you', 'said', '||comma||', '||quotation_mark||', 'business', 'problems', '||period||', '||quotation_mark||', 'is', 'that', 'correct', '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||exclamation_mark||', 'i', 'got', "nothin'", 'and', 'no', 'one', '||exclamation_mark||', '||return|', 'warm_female_voice:', 'you', 'said', '||comma||', '||quotation_mark||', 'face', 'sucked', 'off', 'by', 'vacuum', 'cleaner', '||period||', '||quotation_mark||', 'is', 'that', 'correct', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sobs', '||right_parentheses||', 'no', '||exclamation_mark||', 'no', '||exclamation_mark||', 'help', 'me', '||exclamation_mark||', 'help', '||exclamation_mark||', '||return|', 'warm_female_voice:', 'if', 'your', 'face', 'is', 'in', 'the', 'vacuum', 'cleaner', 'bag', '||comma||', 'press', '||quotation_mark||', 'one', '||period||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'i', 'just', 'wanna', 'talk', 'to', 'a', 'human', 'being', '||exclamation_mark||', '||return|', 'warm_female_voice:', 'please', 'hold', 'for', 'our', 'next', 'available', 'life-extension', 'agent', '||period||', '||return|', 'male_singers:', 'suicide', 'is', 'painless', '/', 'it', 'brings', 'on', 'many', 'changes', '/', 'and', 'i', 'can', '||dash||', '||return|', 'moe_szyslak:', 'that', 'tears', 'it', '||exclamation_mark||', 'no', 'more', 'delays', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'vulnerable', '||right_parentheses||', 'hello', '||question_mark||', '||return|', 'bart_simpson:', 'hi', '||comma||', "i'm", 'looking', 'for', 'a', 'mister', 'ron', '||dash||', 'first', 'name', 'moe', '||period||', '||return|', 'moe_szyslak:', 'moe-ron', '||question_mark||', '||left_parentheses||', 'realizing', '||right_parentheses||', 'moron', '||exclamation_mark||', "it's", 'you', '||comma||', 'you', 'little', 'puke', '||period||', '||period||', '||period||', 'i', 'am', 'gonna', 'tie', 'a', 'rope', 'around', 'your', 'neck', 'and', 'hang', '||dash||', '||left_parentheses||', 'choking', 'noises', '||right_parentheses||', '||return|', 'moe_szyslak:', "i'll", 'show', 'you', "who's", 'a', '||period||', '||period||', '||period||', '||left_parentheses||', 'dying', '||right_parentheses||', 'moron', '||period||', '||return|', 'lenny_leonard:', '||period||', '||period||', '||period||', 'and', "that's", 'why', 'libraries', 'use', 'newspaper', 'rods', '||period||', '||return|', 'homer_simpson:', 'i', 'know', 'c', '||period||', 'p', '||period||', 'r', '||period||', '||return|', 'homer_simpson:', 'i', 'took', 'a', 'class', 'where', 'you', 'do', 'chest', 'compressions', 'to', 'a', 'bee', 'gees', 'song', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'singing/pushing', '||right_parentheses||', 'how', 'deep', 'is', 'your', 'love', '||period||', '||period||', '||period||', 'how', 'deep', 'is', 'your', 'love', '||period||', '||period||', '||period||', '||return|', 'lenny_leonard:', 'are', 'you', 'sure', 'it', "wasn't", '||quotation_mark||', "stayin'", 'alive', '||question_mark||', '||quotation_mark||', '||return|', 'homer_simpson:', 'too', 'on', 'the', 'nose', '||period||', '||left_parentheses||', 'singing', '||right_parentheses||', 'i', 'really', 'need', 'to', 'learn', '/', "'cause", "we're", 'living', 'in', 'a', 'world', 'of', 'fools', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'singing', '||right_parentheses||', 'breaking', 'us', 'down', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'singing', '||right_parentheses||', 'when', 'they', 'all', 'should', 'let', 'us', 'be', '||period||', '||period||', '||period||', 'we', 'belong', 'to', 'you', 'and', 'me', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sings', '||right_parentheses||', 'i', 'believe', 'in', 'youse', '||period||', '||period||', '||period||', '||left_parentheses||', 'sits', 'up', '||right_parentheses||', 'you', 'guys', '||comma||', 'you', 'saved', 'me', '||exclamation_mark||', 'you', 'do', 'care', '||exclamation_mark||', '||return|', 'homer_simpson:', 'now', 'wait', 'a', 'minute', '||period||', 'gotta', 'make', 'sure', "you're", 'okay', '||period||', "who's", 'the', 'president', 'now', '||question_mark||', '||return|', 'moe_szyslak:', 'some', 'jerk', '||period||', '||return|', 'homer_simpson:', "he's", 'back', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', 'i', 'really', 'wanna', 'thank', 'you', 'all', '||period||', 'you', 'gave', 'me', 'a', 'new', 'lease', 'on', 'life', '||comma||', 'and', "i'm", 'gonna', 'take', 'this', 'opportunity', 'to', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sighs', '||right_parentheses||', "what's", 'the', 'point', '||question_mark||', '||period||', '||period||', '||period||', 'same', "ol'", "stinkin'", 'world', '||period||', '||period||', '||period||', 'ah', '||comma||', 'this', 'post-suicide', 'afterglow', 'gets', 'shorter', 'every', 'time', '||exclamation_mark||', '||return|', 'marge_simpson:', 'homer', 'simpson', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'terrified', 'noise', '||right_parentheses||', 'the', 'woman', 'i', 'love', '||exclamation_mark||', '||return|', 'marge_simpson:', 'i', 'sent', 'you', 'to', 'the', 'store', 'to', 'get', 'applesauce', 'for', 'maggie', 'two', 'hours', 'ago', '||exclamation_mark||', '||return|', 'homer_simpson:', 'well', '||comma||', 'uh', '||comma||', 'i', 'was', 'just', 'leaving', '||comma||', 'but', 'moe', '||period||', '||period||', '||period||', 'had', 'an', 'accident', '||period||', '||return|', 'marge_simpson:', 'what', 'kind', 'of', 'accident', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'embarrassed', '||right_parentheses||', 'i', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'may', 'have', 'tried', 'to', 'end', 'it', 'all', '||period||', "wasn't", 'even', 'good', 'at', 'that', '||period||', '||return|', 'moe_szyslak:', 'excuse', 'me', '||comma||', 'will', 'you', '||question_mark||', '||left_parentheses||', 'choked-up', 'noise', '||right_parentheses||', '||return|', 'marge_simpson:', 'that', 'poor', 'man', '||period||', "we've", 'got', 'to', 'do', 'something', 'to', 'change', 'his', 'life', '||period||', '||return|', 'lenny_leonard:', 'we', 'could', 'write', 'on', 'his', 'face', 'when', 'he', 'passes', 'out', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'chuckle', '||right_parentheses||', "that's", 'always', 'good', 'for', 'a', 'laugh', '||period||', '||return|', 'marge_simpson:', 'no', '||comma||', 'no', '||comma||', 'it', 'has', 'to', 'be', 'something', 'big', "that'll", 'change', 'his', 'whole', 'outlook', '||period||', '||left_parentheses||', 'snaps', 'fingers', '||right_parentheses||', 'why', "don't", 'we', 'take', 'moe', 'on', 'a', 'road', 'trip', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'reentering', '||right_parentheses||', 'oh', '||comma||', 'that', '||comma||', 'hey', '||comma||', "that's", 'really', 'sweet', '||period||', 'hey', '||comma||', 'can', 'noosey', 'come', 'too', '||question_mark||', '||return|', 'marge_simpson:', '||left_parentheses||', 'gently', '||right_parentheses||', 'moe', '||comma||', 'this', 'trip', 'is', 'about', 'turning', 'your', 'life', 'around', '||period||', '||return|', 'lenny_leonard:', 'with', 'the', 'three', 'desperate', 'barflies', 'that', 'you', 'see', 'every', 'day', '||period||', '||return|', 'marge_simpson:', 'maybe', 'i', 'should', 'come', 'too', '||period||', '||return|', 'moe_szyslak:', 'four', 'guys', '||comma||', 'a', 'chick', 'and', 'a', 'noose', '||period||', 'just', 'like', 'the', 'movies', 'i', 'like', 'to', 'watch', '||period||', '||return|', 'moe_szyslak:', 'this', 'dump', 'is', 'too', 'filthy', 'for', 'a', 'man', 'with', 'a', 'positive', 'worldview', '||period||', "i'm", 'gonna', 'start', 'cleaning', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'growing', 'excitement', '||right_parentheses||', 'dirt', '||period||', '||period||', '||period||', 'carpet', '||period||', '||period||', '||period||', 'another', 'layer', 'of', 'dirt', '||period||', '||period||', '||period||', 'congoleum', '||period||', '||period||', '||period||', 'hardwood', '||question_mark||', '||exclamation_mark||', 'the', 'perfect', 'floor', 'for', "doin'", 'a', 'happy', 'jig', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', 'now', 'to', 'light', 'up', 'the', 'sign', 'and', 'let', 'the', 'world', 'know', 'that', 'the', 'new', 'improved', 'moe', 'is', 'open', 'for', 'business', '||period||', '||return|', 'moe_szyslak:', 'wow', '||comma||', 'non-losers', '||question_mark||', '||exclamation_mark||', 'i', 'never', 'thought', "i'd", 'see', 'the', 'day', '||period||', '||period||', '||period||', 'gentlemen', '||comma||', 'what', 'can', 'i', 'getcha', '||question_mark||', '||return|', 'glen:', "we'll", 'take', 'anything', "you've", 'got', 'aged', 'fifteen', 'years', 'or', 'more', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', 'do', 'have', 'this', 'bourbon', 'that', 'i', 'brewed', 'myself', '||period||', "it'll", 'either', 'be', 'the', 'best', 'thing', 'you', 'ever', 'had', 'or', 'the', 'last', 'thing', "you'll", 'ever', 'have', '||period||', '||return|', 'ken:', 'wow', '||exclamation_mark||', '||left_parentheses||', 'looks', 'at', 'glen', '||right_parentheses||', 'hey', '||comma||', 'are', 'you', 'thinking', 'what', "i'm", 'thinking', '||question_mark||', '||return|', 'glen:', '||left_parentheses||', 'nods', '||right_parentheses||', 'moe', '||comma||', "we're", 'venture', 'capitalists', '||period||', '||left_parentheses||', 'fast', '||right_parentheses||', 'we', 'turn', 'dreams', 'into', 'money', 'that', 'mostly', 'goes', 'to', 'us', '||comma||', 'but', 'you', 'get', 'a', 'little', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'excited', '||right_parentheses||', 'tell', 'me', 'more', '||exclamation_mark||', '||return|', 'ken:', 'how', 'many', 'bottles', 'of', 'this', 'kentucky', 'kool', 'aid', 'do', 'you', 'have', '||question_mark||', '||return|', 'moe_szyslak:', 'just', 'the', 'one', '||comma||', 'but', 'i', 'could', 'whip', 'up', 'two', 'or', 'three', 'hundred', 'thousand', 'more', '||period||', '||return|', 'glen:', 'moe', '||comma||', "you've", 'got', 'a', 'great', 'product', '||comma||', 'a', 'fantastic', 'suit', '||comma||', 'and', "we're", 'gonna', 'give', 'you', 'everything', 'you', 'need', '||period||', '||return|', 'ken:', 'startup', 'money', '||period||', 'branding', 'specialists', '||period||', '||return|', 'glen:', 'corporate', 'jets', '||period||', 'private', 'drivers', '||period||', 'if', 'your', 'feet', 'touch', 'the', 'ground', '||comma||', "we've", 'failed', '||period||', '||return|', 'moe_szyslak:', 'this', 'is', 'all', 'so', 'sudden', '||period||', '||return|', 'moe_szyslak:', 'now', "it's", 'not', '||period||', "i'm", 'in', '||period||', '||return|', 'glen:', 'only', 'one', 'more', 'thing', 'we', 'need', 'to', 'do', '||period||', '||return|', 'ken:', 'check', 'this', 'out', 'with', 'our', 'focus', 'group', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'glad', "you're", 'back', '||comma||', 'moe', '||period||', 'least', 'i', "don't", 'have', 'to', 'train', 'a', 'new', 'bartender', 'to', 'make', 'what', 'i', 'like', '||period||', '||period||', '||period||', 'beer', 'to', 'the', 'top', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'rafter', '||comma||', 'comforting', '||right_parentheses||', 'not', 'today', '||comma||', 'old', 'friend', '||period||', 'but', "don't", 'worry', '||comma||', 'holidays', 'are', 'just', 'around', 'the', 'corner', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'homer', '||comma||', 'i', 'recommend', 'getting', 'drunk', 'on', 'my', 'most', 'expensive', 'beer:', 'duff', 'platinum', '||period||', '||return|', 'moe_szyslak:', 'what', 'the', '||question_mark||', 'but', 'i', 'used', 'the', 'best', 'label', 'paste', '||period||', '||return|', 'homer_simpson:', 'those', 'two', 'hairs', 'were', 'what', 'was', 'left', 'of', 'my', 'youth', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'come', 'on', '||comma||', "there's", 'sexy', 'bald', 'like', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'babar', '||comma||', 'king', 'of', 'the', 'elephants', '||period||', 'i', 'read', 'his', 'books', 'as', 'a', 'kid', '||period||', '||left_parentheses||', 'confidential', '||right_parentheses||', 'he', 'married', 'his', 'cousin', '||comma||', 'celeste', '||period||', '||left_parentheses||', 'beat', '||right_parentheses||', 'that', 'was', 'my', 'takeaway', '||period||', '||return|', 'homer_simpson:', 'those', 'royal', 'elephants', 'have', 'trainers', 'to', 'keep', "'em", 'in', 'shape', '||period||', 'average', 'schmoe', 'like', 'me', '||comma||', 'forget', 'it', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'let', 'me', 'see', 'how', 'bald', 'you', 'are', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', "can't-believe-how-bald-he-is", 'noise', '||right_parentheses||', 'dear', 'lord', '||period||', 'here', '||period||', 'you', 'need', 'this', 'more', 'than', 'i', 'do', '||period||', '||return|', 'moe_szyslak:', 'just', 'what', 'exactly', 'is', 'this', 'good', 'for', '||question_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'excited', '||right_parentheses||', 'guys', '||comma||', 'this', 'science', 'exhibit', 'that', 'told', 'me', 'how', 'stupid', 'it', 'is', 'to', 'play', 'the', 'lottery', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'worried', '||right_parentheses||', 'so', 'you', "didn't", 'buy', 'our', 'weekly', 'ticket', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', '||quotation_mark||', 'duh', '||quotation_mark||', '||right_parentheses||', 'are', 'you', 'nuts', '||question_mark||', 'you', "can't", 'win', 'if', 'you', "don't", 'play', '||period||', '||return|', 'carl_carlson:', 'hey', '||comma||', "it's", 'time', '||period||', 'turn', 'it', 'on', '||exclamation_mark||', 'turn', 'it', 'on', '||exclamation_mark||', '||return|', 'homer_simpson:', 'four', 'lucky', 'numbers', 'for', 'four', 'best', 'friends', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', 'always', 'go', 'with', 'three', '||dash||', 'the', 'number', 'of', 'brothers', 'and', 'sisters', 'i', '||comma||', 'uh', '||comma||', '||quotation_mark||', 'hunger', "games'd", '||quotation_mark||', '||comma||', 'in', 'the', 'womb', '||period||', '||return|', 'lenny_leonard:', 'nineteen', 'for', 'me', '||exclamation_mark||', 'and', 'for', 'the', 'best', 'year', 'of', 'my', 'life:', 'nineteen', 'ninety-six', '||period||', '||return|', 'carl_carlson:', 'my', "number's", 'twenty-two', '||period||', 'no', 'reason', '||period||', 'just', 'twenty-two', '||period||', '||return|', 'homer_simpson:', 'and', "i'm", 'sixty-nine', '||comma||', 'because', 'people', 'always', 'laugh', 'when', 'you', 'say', 'sixty-nine', '||period||', 'no', 'one', 'knows', 'why', '||period||', '||return|', 'kent_brockman:', 'and', 'the', 'winning', 'numbers', 'are', '||period||', '||period||', '||period||', 'three', '||comma||', 'nineteen', '||comma||', 'twenty-two', 'and', 'sixty-nine', '||period||', '||left_parentheses||', 'knowing', 'chuckle', '||right_parentheses||', '||return|', 'lenny_leonard:', 'oh', 'my', 'gosh', '||period||', '||period||', '||period||', 'we', 'won', '||period||', 'we', 'won', 'the', 'springfield', 'lottery', '||exclamation_mark||', '||return|', 'moe_szyslak:', "that's", 'two', 'hundred', 'grand', '||exclamation_mark||', "that's", 'fifty', 'thousand', 'bucks', 'each', '||exclamation_mark||', '||return|', 'carl_carlson:', 'guys', '||comma||', 'guys', '||comma||', 'we', 'gotta', 'celebrate', '||exclamation_mark||', 'throw', 'a', "ragin'", 'party', '||exclamation_mark||', "i'll", 'cash', 'the', 'ticket', '||comma||', 'homer', '||comma||', 'homer', '||comma||', 'you', 'get', 'the', 'food', '||dash||', '||return|', 'homer_simpson:', '||left_parentheses||', 'excited', 'gasp', '||right_parentheses||', "i'll", 'get', 'mini-dumpsters', 'of', 'wings', 'from', 'garbage', 'wings', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', 'lenny', '||comma||', 'you', 'get', 'the', 'drinks', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'but', "we're", 'already', 'at', 'a', 'bar', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'no', '||comma||', 'ah', '||comma||', "that's", 'just', 'gasoline', 'and', 'hot', 'dog', 'water', '||period||', '||return|', 'carl_carlson:', 'who', 'cares', '||question_mark||', 'we', 'got', 'the', 'money', '||exclamation_mark||', '||left_parentheses||', 'sobs', '||right_parentheses||', "i'm", 'so', 'happy', '||exclamation_mark||', '||left_parentheses||', 'more', 'sobs', '||right_parentheses||', "i'm", 'so', 'happy', '||exclamation_mark||', '||return|', 'homer_simpson:', 'to', 'the', 'best', 'feeling', 'in', 'the', 'world', '||dash||', 'money', '||period||', '||return|', 'homer_simpson:', 'guys', '||comma||', 'i', 'got', 'big', 'plans', 'for', 'these', 'winnings', '||period||', "i'm", 'going', 'to', 'build', '||period||', '||period||', '||period||', 'a', 'swimming', 'pool', '||period||', '||return|', 'homer_simpson:', 'so', 'freaking', 'far', 'in', 'the', 'ground', '||comma||', 'baby', '||period||', '||return|', 'lenny_leonard:', 'what', 'about', 'you', '||comma||', 'carl', '||question_mark||', 'what', 'are', 'you', 'gonna', 'do', 'with', 'your', 'share', 'of', 'the', 'money', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||period||', '||period||', '||period||', 'i', 'guess', 'carl', "ain't", 'back', 'yet', 'from', "cashin'", 'in', 'the', 'ticket', '||period||', '||return|', 'lenny_leonard:', "i'm", 'sure', 'he', 'just', 'got', 'held', 'up', 'in', 'traffic', '||period||', '||return|', 'homer_simpson:', 'yeah', '||comma||', "that's", 'probably', 'what', 'happened', '||period||', '||return|', 'lenny_leonard:', 'i', 'wonder', "what's", 'keeping', 'carl', '||question_mark||', '||return|', 'homer_simpson:', 'i', 'hope', 'our', 'friend', "wasn't", 'in', 'an', 'accident', '||period||', '||return|', 'moe_szyslak:', "i'm", 'glad', "we're", 'the', 'kind', 'of', 'people', 'who', 'are', 'worried', 'about', "carl's", 'safety', 'instead', 'of', 'thinking', 'that', 'he', 'ripped', 'us', 'off', '||period||', '||return|', 'homer_simpson:', 'i', "wasn't", 'thinking', 'that', '||exclamation_mark||', "carl's", 'our', 'good', 'friend', '||period||', '||return|', 'lenny_leonard:', 'our', 'good', 'friend', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'good', 'old', 'carl', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'tense', '||right_parentheses||', 'good', 'old', "carl's", 'phone', 'went', 'straight', 'to', 'voicemail', '||period||', 'again', '||period||', '||return|', 'lou:', 'this', 'could', 'not', 'be', 'more', 'offensive', '||period||', 'man', '||exclamation_mark||', '||return|', 'lou:', '||left_parentheses||', 'sickened', '||right_parentheses||', 'oh', '||comma||', 'of', 'course', '||period||', '||left_parentheses||', 'disgusted', 'noise', '||right_parentheses||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hey', '||comma||', 'get', 'that', 'outta', 'here', '||exclamation_mark||', 'i', "don't", 'ever', 'want', 'to', 'see', 'that', 'moolah-stealing', 'jackpot-thief', 'again', '||exclamation_mark||', '||return|', 'homer_simpson:', 'wait', 'a', 'minute', '||exclamation_mark||', "something's", 'reflected', 'in', 'the', 'lenses', 'of', "carl's", 'sunglasses', '||exclamation_mark||', '||return|', 'homer_simpson:', 'i', 'just', 'need', 'to', 'get', 'closer', '||period||', '||return|', 'homer_simpson:', "he's", 'looking', 'at', 'a', 'geyser', '||exclamation_mark||', 'and', "there's", 'a', 'sign', 'in', 'front', 'of', 'it', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'small', 'frustrated', 'noise', '||right_parentheses||', "it's", 'too', 'small', 'to', 'read', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'disappointed', '||right_parentheses||', "it's", 'backwards', '||period||', '||return|', 'moe_szyslak:', 'try', 'this', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'reading', '||right_parentheses||', '||quotation_mark||', 'strokkur', 'geysir', '||period||', '||quotation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'glad', "you're", 'back', '||comma||', 'buddy', '||period||', "you've", 'got', 'a', 'lot', 'of', 'catching', 'up', 'to', 'do', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'noise', 'of', 'pain', '||comma||', 'then', '||right_parentheses||', 'can', 'i', 'just', 'get', 'a', 'glass', 'of', 'water', '||question_mark||', '||return|', 'moe_szyslak:', 'water', '||question_mark||', '||exclamation_mark||', 'that', 'stuff', 'killed', 'my', 'grandmother', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'so', 'sad', '||period||', '||return|', '||return|', '||return|', 'singers:', "don't", 'got', 'no', 'candy', '||comma||', 'i', 'only', 'serve', 'beer', '||comma||', 'and', 'who', 'said', 'that', 'you', 'could', 'bring', 'minors', 'in', 'here', '||question_mark||', '||return|', 'fat_in_the_hat:', 'your', 'peanuts', 'are', 'pawed', 'through', '||comma||', 'your', 'beer', 'smells', 'like', 'skunk', '||period||', 'and', 'you', 'just', 'pissed', 'off', 'the', 'wrong', 'fat', '||comma||', 'furry', 'drunk', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'upset', '||right_parentheses||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclamation_mark||', '||left_parentheses||', 'no', 'rhyme', '||right_parentheses||', 'this', 'is', 'supposed', 'to', 'be', 'a', "children's", 'story', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'to', 'kids', '||right_parentheses||', 'go', 'grab', 'all', 'his', 'money', 'and', 'vodka', 'and', 'gin', '||period||', 'and', "i'll", 'knit', 'a', 'nice', 'thnord', 'from', 'his', 'leathery', 'skin', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'marmaduke', 'was', 'horrible', 'today', '||exclamation_mark||', 'also', '||comma||', 'marge', 'is', 'in', 'therapy', 'and', 'she', "didn't", 'even', 'tell', 'me', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'whoa', '||period||', 'she', 'has', 'crossed', 'a', 'line', '||period||', 'how', 'did', 'you', 'find', 'out', '||question_mark||', '||return|', 'homer_simpson:', 'spied', 'on', 'her', 'with', 'a', 'hidden', 'camera', '||period||', '||left_parentheses||', 'sips', '||right_parentheses||', 'she', 'thinks', "i'm", 'selfish', '||comma||', 'she', 'thinks', 'i', "don't", 'spend', 'enough', 'time', 'with', 'the', 'kids', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'what', '||question_mark||', "that's", 'crazy', '||exclamation_mark||', 'come', 'on', '||comma||', 'you', 'work', 'your', 'butt', 'off', 'in', 'a', 'radioactive', 'hellhole', '||comma||', 'and', 'what', 'do', 'you', 'get', '||question_mark||', 'not', 'one', 'lousy', 'superpower', '||exclamation_mark||', '||return|', 'homer_simpson:', 'i', 'guess', 'the', 'only', 'choice', 'is', 'to', 'come', 'clean', 'and', 'tell', 'her', 'what', 'i', 'know', '||period||', '||period||', '||period||', 'and', 'how', 'i', 'know', '||period||', '||return|', 'moe_szyslak:', 'whoa-ho', '||comma||', 'bad', 'idea', '||exclamation_mark||', 'no', '||comma||', 'no', '||period||', 'chicks', 'do', 'not', 'like', 'finding', 'out', "they're", 'being', 'spied', 'on', '||period||', 'i', 'speak', 'from', 'looooooooooooooooooong', 'experience', '||period||', 'now', '||comma||', 'you', 'gotta', 'make', 'it', 'seem', 'like', 'you', 'found', 'out', 'by', 'accident', 'there', '||period||', '||left_parentheses||', 'snaps', 'fingers', '||right_parentheses||', 'ooh', '||exclamation_mark||', 'next', 'week', 'youse', 'schedule', 'an', 'appointment', 'with', 'the', 'therapist', '||comma||', 'after', 'hers', '||comma||', 'and', 'then', 'you', '||quotation_mark||', 'bump', 'into', '||quotation_mark||', 'midge', 'in', 'the', "waitin'", 'room', '||comma||', 'there', '||period||', '||return|', 'homer_simpson:', 'moe', '||comma||', "that's", 'great', '||period||', 'how', 'do', 'you', 'get', 'your', 'ideas', '||question_mark||', '||return|', 'moe_szyslak:', 'pretty', 'much', 'all', 'my', 'friends', 'are', 'divorced', 'guys', '||period||', '||return|', '||return|', '||return|', 'carl_carlson:', 'all', 'right', '||comma||', 'so', 'the', 'rules', 'are', '||comma||', 'every', 'time', 'the', 'news', 'guy', 'says', '||quotation_mark||', 'senator', '||comma||', '||quotation_mark||', 'we', 'gotta', 'take', 'a', 'drink', '||period||', '||return|', 'lenny_leonard:', "it'll", 'be', 'nice', 'to', 'let', 'someone', 'else', 'decide', 'when', 'i', 'drink', '||period||', 'too', 'much', 'pressure', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'channel', 'six', 'tip', 'line', '||question_mark||', 'i', 'just', 'caught', 'two', 'senators', "doin'", 'it', 'in', 'the', 'alley', '||period||', 'and', 'me', '||question_mark||', "i'm", 'just', 'a', 'reliable', 'source', '||period||', 'not', '||quotation_mark||', 'sauce', '||comma||', '||quotation_mark||', '||quotation_mark||', 'source', '||quotation_mark||', '||exclamation_mark||', 'source', '||exclamation_mark||', '||quotation_mark||', 's-a-u-r-c-e', '||quotation_mark||', '||exclamation_mark||', '||return|', 'kent_brockman:', '||left_parentheses||', 'touches', 'earpiece', '||right_parentheses||', 'we', 'have', 'heard', 'from', 'a', 'very', 'reliable', 'sauce', '||comma||', 'news', 'involving', 'multiple', 'senators', '||period||', '||return|', 'kent_brockman:', 'i', 'will', 'read', 'a', 'list', 'of', 'senators', '||period||', '||period||', '||period||', 'with', 'possibly', 'more', 'senators', '||period||', '||period||', '||period||', 'to', 'be', 'named', 'later', 'by', 'other', 'senators:', '||return|', 'kent_brockman:', 'senator', 'abercrombie', '||comma||', 'senator', 'billingsley', '||comma||', 'senator', 'beaumont', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'oh', 'damn', '||comma||', 'the', "plaster's", 'flaking', 'again', '||period||', '||return|', 'homer_simpson:', '||period||', '||period||', '||period||', 'so', 'marge', 'says', 'i', 'gotta', '||quotation_mark||', 'ask', 'lisa', 'on', 'a', 'date', '||period||', '||quotation_mark||', '||return|', 'lenny_leonard:', 'sure', 'you', 'remember', 'how', 'to', 'ask', 'out', 'a', 'girl', '||comma||', 'homer', '||question_mark||', '||return|', 'carl_carlson:', 'yeah', '||comma||', "you've", 'been', 'out', 'of', 'the', 'game', 'a', 'long', 'time', 'there', '||period||', '||return|', 'moe_szyslak:', 'hey', 'guys', '||exclamation_mark||', 'lay', 'off', 'homer', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'now', 'you', 'quit', "stallin'", 'and', 'call', 'your', 'daughter', 'like', 'a', 'man', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'groans', '||right_parentheses||', 'feels', 'weird', '||period||', '||return|', 'carl_carlson:', 'just', 'ask', 'your', 'daughter', 'to', 'have', 'dinner', 'with', 'you', '||period||', 'what', 'is', 'the', 'big', 'deal', '||question_mark||', '||return|', 'carl_carlson:', '||left_parentheses||', 'squeals', '||right_parentheses||', "he's", 'doing', 'it', '||exclamation_mark||', "he's", 'calling', 'a', 'girl', '||exclamation_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'quietly', '||right_parentheses||', 'omigod', '||comma||', 'omigod', '||comma||', 'omigod', '||exclamation_mark||', '||return|', 'homer_simpson:', 'oh', '||comma||', "it's", 'ringing', '||exclamation_mark||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'louder', '||right_parentheses||', 'omigod', '||comma||', 'omigod', '||comma||', 'omigod', '||exclamation_mark||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'over', 'the', 'phone', '||right_parentheses||', 'hello', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'suddenly', 'nervous', '||right_parentheses||', 'uh', '||comma||', 'hello', '||period||', 'lisa', '||period||', 'i', 'know', 'your', 'brother', 'and', '||period||', '||period||', '||period||', '||left_parentheses||', 'frustrated', 'moan', '||right_parentheses||', '||return|', 'homer_simpson:', 'stupid', '||comma||', 'stupid', '||comma||', 'stupid', '||exclamation_mark||', '||return|', 'carl_carlson:', 'calm', 'down', '||comma||', 'calm', 'down', '||exclamation_mark||', 'she', "doesn't", 'know', "it's", 'you', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'screams', '||right_parentheses||', 'hide', '||exclamation_mark||', 'hide', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'hello', '||question_mark||', 'oh', '||comma||', 'sure', '||comma||', 'liser', '||comma||', 'your', "dad's", 'right', 'here', '||period||', '||return|', 'lisa_simpson:', '||left_parentheses||', 'on', 'phone', '||right_parentheses||', 'dad', '||question_mark||', 'did', 'you', 'just', 'call', '||question_mark||', '||return|', 'homer_simpson:', 'uh', '||comma||', 'yeah', '||period||', 'hey', '||comma||', 'listen', '||comma||', 'your', 'mom', 'thinks', 'that', 'maybe', 'you', 'and', 'i', 'should', 'have', 'dinner', 'together', '||comma||', 'sometime', '||period||', '||period||', '||period||', '||return|', 'lisa_simpson:', 'just', 'the', 'two', 'of', 'us', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'small', 'laugh', '||right_parentheses||', 'yeah', '||comma||', 'i', 'knew', "you'd", 'think', "it's", 'dumb', '||dash||', '||return|', 'lisa_simpson:', "i'd", 'love', 'that', '||period||', 'see', 'you', 'tonight', '||exclamation_mark||', '||return|', 'homer_simpson:', 'woo-hoo', '||exclamation_mark||', 'i', 'got', 'a', 'date', 'with', 'my', 'daughter', '||exclamation_mark||', '||return|', 'cletus_spuckler:', 'yeah', '||comma||', 'we', 'all', 'been', 'there', '||period||', 'no', 'need', 'to', 'act', 'like', 'you', 'just', 'invented', 'air', 'conditioning', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', 'hey', '||comma||', "you're", 'kinda', 'quiet', 'tonight', '||comma||', 'homer', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'welcome', 'fellow', 'barkeeps', '||comma||', 'gin-slingers', '||comma||', 'and', 'beer-jerks', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'grim', '||right_parentheses||', 'we', 'are', 'all', 'here', 'because', "drinkin'", 'in', 'our', 'bars', 'is', 'down', '||period||', 'mom', 'and', 'pop', 'bartenders', "can't", 'compete', 'with', 'big', 'box', 'stores', 'like', 'booze', 'barn', 'and', 'hooch', 'city', '||period||', '||return|', 'moe_szyslak:', 'thanks', '||comma||', 'cap', '||period||', 'now', 'what', "i'm", 'proposing', 'is', 'a', 'superhero', 'pub', 'crawl', '||period||', 'our', 'clientele', 'dress', 'up', 'in', 'costume', 'and', 'go', 'drinking', 'from', 'bar', 'to', 'bar', '||period||', 'their', 'masks', 'make', "'em", 'feel', 'uninhibited', '||comma||', 'and', 'invulnerable', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'and', "that's", 'not', 'all', '||period||', 'why', "don't", 'you', 'tell', "'em", 'about', 'it', '||comma||', 'moe', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'you', 'got', 'it', '||comma||', 'moe', '||period||', '||left_parentheses||', 'shuts', 'off', 'tv', '||right_parentheses||', 'we', 'can', 'make', 'up', 'superhero', 'drink', 'names', 'and', 'charge', "'em", 'double', '||period||', 'like', '||comma||', 'uh', '||comma||', 'nick', 'fury', '||comma||', 'agent', 'of', 'schnapps', '||semicolon||', 'sex', 'in', 'the', 'batmobile', '||semicolon||', 'and', 'the', 'wolveriskey', '||exclamation_mark||', "'ere", '||comma||', 'check', 'out', 'my', 'uh', '||comma||', 'portfolium', 'here', '||period||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', 'your', "boy's", 'got', 'magic', 'knock-up', 'powers', '||comma||', 'huh', '||question_mark||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'i', 'created', 'three', 'kids', '||comma||', 'and', 'no', "one's", 'making', 'a', 'big', 'deal', 'of', 'that', '||period||', '||return|', 'lenny_leonard:', 'not', 'true', '||exclamation_mark||', 'whenever', 'i', 'compliment', 'your', 'virility', '||comma||', 'you', 'act', 'all', 'weird', '||period||', 'and', 'you', 'are', 'very', 'virile', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'weirded-out', 'noises', '||right_parentheses||', 'yeah', '||period||', '||period||', '||period||', 'well', 'just', 'talk', 'about', 'sports', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'no', 'problem', '||period||', 'wish', 'i', 'had', 'that', 'tom', "brady's", 'libido', '||period||', '||return|', 'homer_simpson:', 'what', 'is', 'your', 'problem', '||comma||', 'boy', '||question_mark||', '||return|', 'bart_simpson:', 'maybe', 'when', "i've", 'got', 'a', 'dad', 'who', 'shows', 'up', 'in', 'the', 'morning', 'with', 'no', 'shirt', 'on', 'and', 'rocks', 'on', 'his', 'face', '||comma||', 'it', 'sets', '||comma||', 'i', "don't", 'know', '||comma||', 'a', 'low', 'bar', '||question_mark||', '||return|', 'homer_simpson:', 'wow', '||period||', "i've", 'gotta', 'take', 'that', 'in', '||period||', 'while', 'i', 'do', '||comma||', 'have', 'some', 'bar', 'nuts', '||period||', '||return|', 'bart_simpson:', "aren't", 'those', 'full', 'of', 'germs', '||question_mark||', '||return|', 'homer_simpson:', 'eat', 'the', 'nuts', '||exclamation_mark||', "they're", 'your', 'dinner', '||exclamation_mark||', '||return|', 'legs:', 'you', 'guys', 'are', "comin'", 'with', 'us', '||period||', '||return|', 'moe_szyslak:', 'not', 'so', 'fast', '||period||', '||return|', 'moe_szyslak:', 'nobody', 'comes', 'into', 'my', 'bar', 'and', 'kidnaps', 'two', 'paying', 'customers', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'grateful', '||right_parentheses||', 'thanks', '||comma||', 'moe', '||comma||', 'i', '||period||', '||period||', '||period||', '||left_parentheses||', 'pats', 'pants', '||right_parentheses||', 'huh', '||period||', "must've", 'left', 'my', 'wallet', 'at', 'home', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'lowering', 'shotgun', '||right_parentheses||', 'take', "'em", '||exclamation_mark||', 'take', "'em", '||exclamation_mark||', 'fill', 'their', 'pockets', 'with', 'corn', 'and', 'toss', "'em", 'to', 'the', 'pigs', '||period||', '||return|', 'louie:', "don't", 'tell', 'us', 'our', 'business', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'an', 'eighty-five', 'yard', 'field', 'goal', '||question_mark||', 'you', 'gotta', 'be', 'kidding', 'me', '||exclamation_mark||', 'refresh', '||exclamation_mark||', 'refresh', '||exclamation_mark||', '||return|', 'nfl_narrator:', '||period||', '||period||', '||period||', 'despite', 'her', 'breathtaking', 'ignorance', 'and', 'a', 'powerful', 'dislike', 'of', 'the', 'sport', '||comma||', 'a', 'rookie', 'housewife', 'had', 'been', 'defeated', 'by', 'a', 'savvy', 'veteran', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'marge_simpson:', '||left_parentheses||', 'sadly', '||right_parentheses||', 'now', 'i', 'know', 'why', 'homie', 'comes', 'here', 'so', 'much', '||period||', 'no', 'matter', 'how', 'sad', 'you', 'are', 'inside', '||comma||', 'what', 'you', 'see', 'looks', 'worse', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||period||', 'it', 'was', 'really', 'hard', 'for', 'me', 'to', 'make', 'this', 'place', 'look', 'old', 'but', 'not', 'in', 'any', 'way', 'comfortable', '||period||', 'now', 'maybe', 'some', "tv'll", 'cheer', 'ya', 'up', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'a', 'little', 'tipsy', '||right_parentheses||', "yesterday's", 'whatsit', '||question_mark||', 'why', 'does', 'everyone', 'go', 'to', 'them', '||question_mark||', '||return|', 'lenny_leonard:', "it's", 'express', '||comma||', 'marge', '||period||', '||return|', 'carl_carlson:', 'yeah', 'with', 'our', 'busy', 'lifestyle', '||comma||', 'we', 'gotta', 'have', 'express', '||period||', '||return|', 'moe_szyslak:', 'uh', '||comma||', 'listen', 'there', '||comma||', 'midge', '||period||', 'i', 'know', 'how', 'to', 'get', 'youse', 'outta', 'your', 'contract', '||period||', 'but', 'i', 'gotta', 'warn', 'ya', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', 'you', 'will', 'never', 'work', 'in', 'the', 'fast-food', 'industry', 'again', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'serious', '||right_parentheses||', 'go', 'on', '||period||', 'please', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'hibachi', 'head', '||period||', "how're", 'you', 'gonna', 'pay', 'for', 'that', '||question_mark||', '||return|', 'bender:', '||left_parentheses||', 'lying', '||right_parentheses||', 'uh', '||period||', '||period||', '||period||', 'let', 'me', 'just', 'transfer', 'some', '||comma||', 'uh', '||comma||', 'electronic', 'hyper-credits', 'into', 'your', 'register', 'here', '||period||', '||return|', 'bender:', '||left_parentheses||', 'cash', 'register', 'sound', '||right_parentheses||', 'ding-a-ding-ding-ding-ding-ding-ding', '||exclamation_mark||', 'ooh', '||comma||', 'and', '||comma||', 'uh', '||comma||', 'another', 'round', 'for', 'my', 'friends', '||exclamation_mark||', 'ding-a-ding-ding-a-ding-ding', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'this', 'blade', 'rummy', 'is', 'all', 'right', '||exclamation_mark||', "he's", 'a', 'big', 'spender', '||comma||', 'plus', 'he', 'fixed', 'the', 'jukebox', '||period||', '||left_parentheses||', 'gossipy', '||right_parentheses||', 'i', 'think', 'they', 'had', 'a', 'thing', 'going', '||period||', '||return|', 'jukebox_record:', '||left_parentheses||', 'sings', '||right_parentheses||', 'oh', 'baby', 'what', 'you', 'done', 'to', 'me', '||period||', '||return|', 'bender:', 'i', 'hate', 'it', 'when', 'they', 'get', 'quiet', '||period||', '||return|', 'homer_simpson:', 'listen', '||comma||', 'i-i', 'know', "you're", 'a', 'robot', 'and', 'incapable', 'of', 'emotion', '||period||', '||period||', '||period||', '||return|', 'bender:', '||left_parentheses||', 'huge', 'sobs', '||right_parentheses||', "it's", 'true', '||exclamation_mark||', "i'm", 'empty', 'inside', '||period||', '||left_parentheses||', 'more', 'huge', 'sobs', '||right_parentheses||', '||return|', 'homer_simpson:', 'uh', '||comma||', 'look', '||comma||', 'i', 'just', 'wanna', 'ask', '||period||', '||period||', '||period||', 'can', 'we', 'be', 'friends', '||question_mark||', '||return|', 'homer_simpson:', "you're", 'the', 'only', 'guy', 'i', 'know', 'with', 'less', 'hair', 'than', 'me', '||period||', '||return|', 'bender:', 'sure', '||exclamation_mark||', "that's", 'why', 'i', 'came', 'to', 'your', 'time', '||comma||', 'for', 'all', 'you', 'know', '||period||', '||return|', 'barney_gumble:', '||left_parentheses||', 'toasting', '||right_parentheses||', 'for', 'all', 'we', 'know', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', '||period||', '||period||', '||period||', 'and', "that's", 'the', 'terrifying', 'tale', 'of', 'how', 'the', 'quebec', 'nordiques', 'became', '||left_parentheses||', 'spooky', '||right_parentheses||', 'the', 'colorado', 'avalanche', '||period||', '||return|', 'lisa_simpson:', 'oh', 'no', '||exclamation_mark||', 'king', "toot's", 'is', 'closed', '||exclamation_mark||', 'dad', '||comma||', "you're", 'gonna', 'have', 'to', 'take', 'me', 'to', 'the', '||period||', '||period||', '||period||', 'big', 'box', 'music', 'store', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', '||left_parentheses||', 'woozy', '||right_parentheses||', 'maybe', 'a', 'drink', 'will', 'help', 'me', 'with', 'my', 'driving', '||period||', '||return|', 'moe_szyslak:', 'man', '||comma||', 'those', 'things', 'go', 'off', 'quick', '||period||', '||return|', 'moe_szyslak:', 'few', 'people', 'know', 'that', 'verdict', 'was', 'overturned', 'in', 'the', 'sequel', '||period||', 'heh', '||period||', '||return|', 'homer_simpson:', "i'd", 'better', 'be', 'heading', 'home', '||period||', '||period||', '||period||', 'to', 'my', 'family', '||period||', '||period||', '||period||', 'enjoy', 'your', 'evening', '||period||', '||period||', '||period||', 'with', 'your', 'wonderful', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'neon', 'sign', '||period||', '||period||', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sad', '||comma||', 'sincere', '||right_parentheses||', 'yeah', '||comma||', 'last', 'year', 'i', 'broke', 'it', 'just', 'so', 'the', 'repairman', 'would', 'come', '||period||', 'but', "i'll", 'be', 'fine', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'um', '||comma||', 'you', 'gonna', 'be', 'okay', '||question_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||left_parentheses||', 'sobs', '||right_parentheses||', 'super', '||period||', '||left_parentheses||', 'large', 'sob', '||right_parentheses||', '||return|', 'moe_szyslak:', "it's", 'just', 'that', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'i', 'lost', 'my', 'ma', 'at', 'christmas', '||period||', '||return|', 'moe_szyslak:', 'she', 'took', 'me', 'to', 'a', 'mall', 'and', 'i', 'never', 'saw', 'her', 'again', '||period||', 'but', "i'll", 'never', 'forget', 'that', 'image', 'of', 'her', 'bolting', 'for', 'the', 'parking', 'lot', '||period||', '||return|', 'homer_simpson:', 'okay', '||exclamation_mark||', 'okay', '||exclamation_mark||', "i'll", 'stay', 'for', 'one', 'beer', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'totally', 'calm', '||right_parentheses||', 'oh', 'great', '||comma||', 'great', '||period||', 'but', "don't", 'do', 'it', 'out', 'of', 'pity', '||period||', '||left_parentheses||', 'small', 'laugh', '||right_parentheses||', '||return|', 'moe_szyslak:', 'pity', '||exclamation_mark||', 'pity', '||exclamation_mark||', 'have', 'pity', '||exclamation_mark||', 'look', '||comma||', "i'm", 'wrapped', 'around', 'your', 'leg', 'here', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'please', '||exclamation_mark||', 'please', '||exclamation_mark||', 'please', '||exclamation_mark||', '||return|', 'homer_simpson:', 'but', 'i', 'promised', 'marge', '||period||', '||return|', 'moe_szyslak:', 'now', "i'm", "sittin'", 'on', 'your', 'shoulders', '||exclamation_mark||', 'please', '||exclamation_mark||', '||return|', 'homer_simpson:', 'okay', '||comma||', 'okay', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sing', '||right_parentheses||', 'si-lent', 'night', '/', 'ho-ly', 'night', '||return|', 'moe_szyslak:', '||left_parentheses||', 'happy', '||right_parentheses||', "i'm", 'happy', 'on', 'christmas', 'eve', '||period||', 'and', 'for', 'once', "it's", 'not', "'cause", 'some', 'drunk', 'left', 'a', 'wallet', 'on', 'his', 'stool', '||period||', '||return|', "moe's_thoughts:", 'uh-oh', '||comma||', 'this', 'is', "startin'", 'to', 'hurt', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'chuckles', '||right_parentheses||', 'and', 'now', '||comma||', 'homer', '||comma||', "it's", 'only', 'fair', 'that', 'i', 'give', 'youse', 'a', 'gift:', "i'm", 'gonna', 'set', 'the', 'clock', 'in', 'the', 'bar', 'to', 'the', 'correct', 'time', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'what', 'the', '||dash||', '||return|', 'homer_simpson:', '||left_parentheses||', 'shrieks', '||right_parentheses||', 'i', 'am', 'so', 'late', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'whoa', '||comma||', 'whoa', '||comma||', 'whoa', "it's", 'the', 'night', 'before', 'christmas', '||exclamation_mark||', 'stop', 'stirring', '||comma||', 'you', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'angrily', '||right_parentheses||', 'moe', '||comma||', 'what', 'are', 'you', 'doing', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'sings', '||right_parentheses||', 'good', 'king', 'wenceslas', 'looked', 'out', 'on', 'the', 'feast', 'of', '||period||', '||period||', '||period||', '||return|', 'karaoke_machine:', '||left_parentheses||', 'japanese', 'accent', '||right_parentheses||', 'voice', 'too', 'poor', 'for', 'karaoke', '||period||', 'shutting', 'doooown', '||period||', 'bye', 'now', '||period||', '||return|', 'moe_szyslak:', 'oh', 'my', 'god', '||exclamation_mark||', 'santa', 'brought', 'me', 'just', 'what', 'i', 'asked', 'for', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'thoughtful', 'noise', '||comma||', 'then', 're:', "homer's", 'weight', '||right_parentheses||', 'two', 'thirty-nine', '||period||', "who's", 'he', "foolin'", '||question_mark||', '||return|', '||return|', '||return|', 'car:', 'force', 'of', 'habit', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'from', 'now', 'on', '||comma||', 'you', 'guys', 'can', 'no', 'longer', 'say', 'these', 'hateful', 'words', '||period||', '||return|', 'homer_simpson:', 'chubby', '||comma||', 'chunky', '||comma||', 'blobbo', '||comma||', 'slobbo', '||comma||', 'fat', 'bastard', '||comma||', 'michelin', 'man', '||comma||', 'stay-puft', '||comma||', 'chumbawamba', '||comma||', '||left_parentheses||', 'calling', 'out', '||right_parentheses||', 'it', 'is', 'balloon', '||exclamation_mark||', '||comma||', 'papa', 'grandã©', '||comma||', 'augustus', 'gloop', '||comma||', 'beached', 'whale', '||comma||', 'big', 'boned', '||comma||', 'wisconsin', 'skinny', '||comma||', 'butterball', '||comma||', 'dumptruck', '||comma||', 'jelly', 'belly', '||comma||', 'pudgy', 'wudgy', '||comma||', 'lard', 'ass', '||comma||', 'blubberino', '||comma||', 'buddha', 'belly', '||comma||', 'hurry', 'eat', 'tubman', '||comma||', 'one', 'ton', 'soup', '||comma||', '||left_parentheses||', 'flips', 'page', '||right_parentheses||', 'blob', 'saget', '||comma||', 'chub', 'hub', '||comma||', 'calvin', 'cool', 'whip', '||comma||', 'manfred', 'manboobs', '||comma||', '21', 'lump', 'street', '||comma||', 'walking', 'before', 'picture', '||comma||', 'fatso', '||comma||', 'harvey', 'milk', 'chocolate', '||comma||', 'obese', 'want', 'cannoli', '||comma||', 'mahatma', 'gumbo', '||comma||', 'salvador', 'deli', '||comma||', 'elmer', 'pantry', '||comma||', 'k', '||period||', 'f', '||period||', 'c', '||period||', 'and', 'the', 'sponge', 'cake', 'band', '||comma||', 'snackie', 'onassis', '||period||', '||period||', '||period||', '||left_parentheses||', 'flips', 'page', 'again', '||right_parentheses||', 'the', 'foodie', 'blues', '||comma||', 'hoagie', 'carmichael', 'and', 'wide', 'load', '||period||', '||return|', 'lenny_leonard:', 'what', 'about', 'mr', '||period||', 'two', 'belts', '||question_mark||', '||return|', 'homer_simpson:', 'good', '||period||', 'good', '||period||', 'by', 'which', 'i', 'mean', 'bad', '||comma||', 'bad', '||period||', '||return|', 'moe_szyslak:', 'you', 'know', '||comma||', 'as', 'long', 'as', "we're", 'opening', 'this', 'up', 'and', "i'm", 'glad', 'you', 'are', '||comma||', 'i', 'wanna', 'tell', 'you', 'guys', 'that', 'when', 'you', 'call', 'me', 'a', 'gargoyle', '||comma||', 'a', 'troll', '||comma||', 'or', 'a', 'homunculus', '||comma||', 'it', 'kinda', 'hurts', 'my', "feelin's", '||period||', '||return|', 'lenny_leonard:', 'what', '||question_mark||', "you're", "kiddin'", '||period||', '||return|', 'homer_simpson:', 'we', 'never', 'dreamed', '||period||', '||return|', 'carl_carlson:', '||left_parentheses||', 'kind', '||right_parentheses||', 'who', 'knew', 'goblins', 'had', 'feelings', '||question_mark||', '||return|', 'moe_szyslak:', 'ya', 'see', '||comma||', "that's", 'what', "i'm", "talkin'", 'about', '||period||', 'because', '||dash||', '||return|', 'pridesters:', '||left_parentheses||', 'chanting', '||right_parentheses||', "we're", 'big', '||exclamation_mark||', "we're", 'proud', '||exclamation_mark||', 'two', 'of', 'us', 'can', 'make', 'a', 'crowd', '||exclamation_mark||', '||return|', 'homer_simpson:', 'sorry', '||comma||', 'fellas', '||period||', "there's", 'a', 'movement', 'i', 'have', 'to', 'join', '||period||', "i've", 'learned', "there's", 'something', 'more', 'important', 'than', 'drinking:', 'eating', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'moe', '||comma||', 'quick', '||exclamation_mark||', 'beer', 'me', 'before', 'i', 'answer', 'the', 'phone', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'relaxed', '||right_parentheses||', 'ah', '||comma||', 'the', 'first', 'pour', 'of', 'the', 'day', '||period||', 'let', 'me', 'just', 'tie', 'on', 'my', 'apron', '||comma||', 'limber', 'up', 'the', "ol'", "tap-pullin'", 'arm', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'extremely', 'intense', '||right_parentheses||', 'i', 'need', 'it', 'now', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'super', 'casual', '||right_parentheses||', 'hey', '||comma||', 'marge', '||period||', "i'm", 'supposed', 'to', 'help', 'drive', 'the', 'kids', '||question_mark||', 'oh', '||comma||', 'man', '||comma||', 'i', 'wish', 'i', 'knew', 'that', 'sooner', '||comma||', 'but', 'i', 'just', 'had', 'a', 'beer', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', "you're", 'already', 'drinking', 'at', 'eight', "o'clock", 'in', 'the', 'morning', '||question_mark||', 'how', 'much', 'have', 'you', 'had', '||question_mark||', '||return|', 'homer_simpson:', 'woo', 'hoo', '||exclamation_mark||', 'off', 'the', 'hook', '||exclamation_mark||', '||return|', 'marge_simpson:', 'looks', 'like', 'this', 'is', 'all', 'me', '||period||', '||return|', 'homer_simpson:', 'yeah', '||comma||', 'while', "you're", 'at', 'it', 'can', 'you', 'pick', 'me', 'up', 'some', 'beer', '||question_mark||', '||return|', 'moe_szyslak:', '||period||', '||period||', '||period||', 'so', 'sideshow', 'mel', 'is', "drinkin'", 'here', 'all', 'afternoon', '||period||', 'when', 'i', 'show', 'him', 'the', 'tab', '||comma||', 'he', 'says', 'he', 'left', 'his', 'wallet', 'in', 'his', 'other', 'skirt', '||comma||', 'and', 'he', 'pays', 'me', 'with', 'this', '||exclamation_mark||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'this', 'is', 'a', 'ticket', 'to', 'see', 'laney', 'fontaine', '||dash||', "she's", 'the', 'brassiest', 'broad', 'on', 'broadway', '||exclamation_mark||', '||return|', 'lenny_leonard:', "she's", 'funny', 'and', 'vulgar', 'and', 'fulla', 'hollywood', 'stories', '||comma||', 'like', '||comma||', 'uh', '||period||', '||period||', '||period||', 'jimmy', 'stewart', 'was', 'a', 'super-nice', 'guy', '||period||', '||return|', 'moe_szyslak:', 'geez', '||comma||', 'now', 'i', 'wanna', 'go', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'why', "can'tcha", '||question_mark||', '||return|', 'moe_szyslak:', 'i', "can't", 'close', 'down', 'the', 'bar', 'on', 'a', 'saturday', '||period||', "that's", 'when', 'you', 'guys', 'can', 'drink', "'cause", "you're", 'not', "workin'", 'for', 'three', 'days', '||period||', '||return|', 'homer_simpson:', 'hey', 'moe', '||period||', '||period||', '||period||', "i'll", 'take', 'care', 'of', 'the', 'bar', '||period||', 'you', 'did', 'me', 'a', 'favor', 'today', '||period||', '||return|', 'moe_szyslak:', 'huh', '||period||', '||period||', '||period||', 'well', '||comma||', 'okay', '||period||', 'uh', '||comma||', 'let', 'me', 'just', 'show', 'you', 'where', 'everything', 'is', '||period||', '||period||', '||period||', '||left_parentheses||', 'quickly', 'points', 'to', 'items', '||right_parentheses||', 'shotgun', '||comma||', 'shotgun', 'shells', '||comma||', 'blood', 'mop', '||comma||', 'bag', 'of', 'lime', '||dash||', 'and', "that's", 'it', '||period||', 'now', 'boys', '||comma||', 'i', 'gotta', 'get', 'dressed', 'for', 'the', '||comma||', 'uh', '||comma||', '||left_parentheses||', "high-falutin'", '||right_parentheses||', '||quotation_mark||', 'theatah', '||quotation_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', 'done', '||period||', '||left_parentheses||', 'exits', '||right_parentheses||', '||return|', 'homer_simpson:', 'man', '||comma||', "moe's", 'barely', 'got', 'two', 'nickels', 'to', 'rub', 'together', '||period||', '||return|', 'carl_carlson:', 'i', 'know', 'a', 'way', 'we', 'can', 'make', 'this', "moe's", 'biggest', 'saturday', 'night', 'ever', '||period||', '||return|', 'lenny_leonard:', 'how', 'does', 'moe', 'make', 'money', 'if', 'ladies', 'drink', 'free', '||question_mark||', '||return|', 'carl_carlson:', "that's", 'the', 'beauty', 'part', '||period||', 'this', 'place', 'is', 'about', 'to', 'be', 'filled', 'with', 'guys', '||comma||', "buyin'", 'beers', '||comma||', 'hoping', 'to', 'meet', 'ladies', '||period||', 'huh', '||period||', '||return|', 'lenny_leonard:', 'brilliant', '||exclamation_mark||', 'ooh', '||comma||', 'and', 'thanks', 'for', 'telling', 'me', 'what', 'the', 'beauty', 'part', 'of', 'it', 'was', '||period||', '||return|', 'lenny_leonard:', 'not', 'a', 'man', 'in', 'sight', '||period||', 'we', 'got', 'the', '||period||', '||period||', '||period||', 'cheery', 'red', 'tomatoes', '||period||', '||period||', '||period||', 'a', 'bachelorette', 'party', '||period||', '||period||', '||period||', '||return|', 'lenny_leonard:', 'ooh', '||exclamation_mark||', 'lady', 'duff', '||exclamation_mark||', '||return|', 'lady_duff:', '||left_parentheses||', 'holds', 'up', 'bottle', '||right_parentheses||', 'i', 'am', 'woman', '||comma||', 'hear', 'me', 'pour', '||exclamation_mark||', 'oh', 'yeah', '||exclamation_mark||', '||return|', 'homer_simpson:', "there's", 'no', 'guys', '||exclamation_mark||', 'we', "haven't", 'made', 'any', 'money', '||period||', '||return|', 'carl_carlson:', 'not', 'yet', '||comma||', 'but', 'at', 'least', "we're", 'hearing', 'some', 'interesting', 'conversation', 'from', 'those', 'two', 'book', 'clubs', '||period||', '||return|', 'book_club_member:', 'well', '||comma||', 'we', 'thought', '||quotation_mark||', 'the', 'heaven', "lovers'", 'club', '||quotation_mark||', 'was', 'rich', 'and', 'spiritual', '||period||', '||return|', 'other_book_club_member:', 'we', 'thought', 'it', 'was', 'maybe', 'a', 'little', 'slow', '||exclamation_mark||', '||return|', 'book_club_member:', '||left_parentheses||', 'threatening', '||right_parentheses||', 'well', '||comma||', 'maybe', 'i', 'can', 'liven', 'it', 'up', 'for', 'ya', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'kindly', '||right_parentheses||', 'let', 'me', 'help', 'you', 'up', '||period||', '||return|', 'laney_fontaine:', 'so', 'this', 'is', 'the', 'charming', 'tavern', "you've", 'been', 'telling', 'me', 'about', '||period||', '||return|', 'moe_szyslak:', 'yep', '||period||', 'nice', 'and', 'cozy', 'and', '||period||', '||period||', '||period||', '||left_parentheses||', 'biggest', 'ever', '||right_parentheses||', 'whaaaa', '||question_mark||', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'my', 'craphole', '||exclamation_mark||', 'my', 'precious', 'craphole', '||exclamation_mark||', '||return|', 'book_club_member:', 'anyone', 'tries', 'to', 'stop', 'me', 'and', "you'll", 'see', 'her', 'lovely', 'bones', 'all', 'over', 'the', 'floor', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'dazed', '||right_parentheses||', 'this', 'is', 'nuts', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'tell', 'me', 'you', 'still', 'work', '||comma||', 'love', 'tester', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'moan', '||right_parentheses||', "i'm", 'ruined', '||exclamation_mark||', '||return|', 'laney_fontaine:', 'sorry', '||comma||', 'moe', '||period||', 'i', 'love', 'losers', '||comma||', 'but', 'only', 'after', "they've", 'bounced', 'at', 'the', 'bottom', '||period||', '||left_parentheses||', 'singing', '||right_parentheses||', "'cause", "i'm", 'the', 'brassiest', 'piece', 'of', 'sass', 'in', 'this', 'whole', 'damn', 'town', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'you', 'guys', 'cost', 'me', 'my', 'chance', 'with', 'a', 'woman', 'of', 'a', 'certain', 'age', '||exclamation_mark||', '||left_parentheses||', 'heaving', 'sobs', '||right_parentheses||', '||return|', 'carl_carlson:', 'hey', '||comma||', 'come', 'on', '||comma||', 'all', 'is', 'not', 'lost', '||period||', '||left_parentheses||', 'holds', 'up', 'coaster', '||right_parentheses||', 'this', "coaster's", 'fine', '||period||', '||return|', 'moe_szyslak:', 'you', 'are', 'not', 'my', 'friends', '||period||', 'to', 'me', "you're", 'just', 'mouths', "drinkin'", 'beers', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'you', "can't", 'mean', 'that', '||exclamation_mark||', '||return|', 'homer_simpson:', 'we', "don't", 'look', 'at', 'you', 'that', 'way', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', "i-i'm", 'sorry', 'for', "snappin'", 'at', 'you', 'guys', '||period||', 'but', '||comma||', 'but', "i'm", 'ruint', '||period||', '||left_parentheses||', 'small', 'sob', '||right_parentheses||', "i-i'll", 'have', 'to', 'live', 'on', 'my', 'savings', 'here', '||period||', '||return|', 'moe_szyslak:', 'all', 'right', '||comma||', 'who', 'rubbed', 'my', 'nickels', '||question_mark||', '||exclamation_mark||', '||return|', 'lenny_leonard:', 'hey', '||comma||', 'wait', 'a', 'minute', '||exclamation_mark||', 'we', 'can', 'get', 'you', 'a', 'job', '||exclamation_mark||', "there's", 'an', 'opening', 'at', 'the', 'nuclear', 'plant', "'cause", 'of', 'that', 'guy', 'that', 'defected', 'to', 'north', 'korea', '||period||', '||return|', 'homer_simpson:', 'good', "ol'", 'dae', 'ho', '||period||', 'used', 'to', 'give', 'me', 'the', 'pickles', 'off', 'his', 'sandwich', '||period||', 'and', 'all', 'i', 'had', 'to', 'do', 'was', 'let', 'him', 'copy', 'some', 'keys', '||period||', '||return|', 'lenny_leonard:', 'moe', '||comma||', 'can', 'you', 'pass', 'a', 'background', 'check', '||question_mark||', '||return|', 'moe_szyslak:', 'ummmmmmmmm', '||period||', '||period||', '||period||', 'ehhhhhhhh', '||period||', '||period||', '||period||', 'errrrrrr', '||period||', '||period||', '||period||', 'ehhhhhhhhh', '||period||', '||period||', '||period||', 'ehhhhhh', 'sure', '||period||', '||return|', 'carl_carlson:', 'well', '||comma||', 'then', "you're", 'in', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'how', 'far', 'do', 'they', 'go', 'back', '||question_mark||', '||return|', 'lenny_leonard:', 'six', 'months', '||period||', '||return|', 'moe_szyslak:', 'kay', '||comma||', "i'm", 'gonna', 'apply', 'in', 'a', 'week', '||period||', '||return|', 'lenny_leonard:', '||left_parentheses||', 'relieved', 'noise', '||right_parentheses||', "it's", 'sure', 'great', 'to', 'see', 'you', 'jerking', 'our', 'suds', 'again', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', 'figured', 'out', 'that', 'the', 'best', 'way', 'for', 'me', 'to', 'get', 'along', 'with', 'most', 'people', 'is', 'to', 'be', 'kept', 'behind', 'a', 'two', 'foot', 'chunk', 'of', 'solid', 'oak', '||period||', '||return|', 'lenny_leonard:', 'looks', 'more', 'like', 'poplar', 'to', 'me', '||period||', '||return|', 'moe_szyslak:', 'why', 'youse', '||exclamation_mark||', 'correcting', 'me', 'on', 'my', 'knowledge', 'of', 'wood', 'products', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'happy', '||right_parentheses||', 'so', 'good', 'to', 'be', 'back', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', "i'm", 'back', 'where', 'i', 'belong', '||comma||', 'eh', '||question_mark||', '||return|', 'smile:', '||left_parentheses||', 'low', 'baritone', 'voice', '||right_parentheses||', "you're", 'not', 'alone', 'anymore', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'terrified', '||right_parentheses||', 'what', 'the', 'hell', 'was', 'that', '||question_mark||', '||exclamation_mark||', '||return|', 'smile:', '||left_parentheses||', 'low', 'baritone', 'voice', '||right_parentheses||', 'oh', '||comma||', "you'll", 'find', 'out', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'really', '||question_mark||', 'tell', 'me', 'something:', "i've", 'heard', 'that', 'queen', 'elizabeth', 'in', 'person', 'is', 'actually', 'not', 'that', 'funny', '||period||', '||return|', 'kemi:', 'i', 'am', 'from', 'africa', '||period||', '||return|', 'moe_szyslak:', 'wow', '||comma||', 'africa', '||period||', 'i', 'had', 'a', 'good', 'friend', 'who', 'really', 'wanted', 'to', 'go', 'there', '||period||', 'so', '||comma||', 'uh', '||comma||', 'you', 'speak', 'english', 'there', '||question_mark||', '||return|', 'kemi:', 'i', 'speak', 'five', 'languages', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'snorts', '||right_parentheses||', 'nobody', 'does', '||period||', '||return|', 'kemi:', '||left_parentheses||', 'portuguese', '||right_parentheses||', 'eu', 'nã£o', 'quero', 'dizer', 'para', 'mostrar', '||left_parentheses||', 'french', '||right_parentheses||', 'je', 'ne', 'veux', 'pas', 'montrer', '||left_parentheses||', 'spanish', '||right_parentheses||', 'no', 'me', 'refiero', 'a', 'presumir', '||left_parentheses||', 'japanese', '||right_parentheses||', 'watashi', 'wa', 'koji', 'suru', 'wakede', 'wa', 'arimasen', '||return|', 'moe_szyslak:', 'eh', '||period||', '||period||', '||period||', 'which', 'means', 'what', '||question_mark||', '||return|', 'kemi:', 'i', "don't", 'wish', 'to', 'show', 'off', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'chuckles', 'despite', 'himself', '||right_parentheses||', "that's", 'pretty', 'good', 'there', '||comma||', 'but', "don't", 'expect', 'me', 'to', 'bow', 'and', 'scrape', '||period||', 'well', '||comma||', "i'll", 'give', 'you', 'one', 'scrape', '||period||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', "that's", 'it', '||comma||', 'majesty', '||period||', 'notice', 'i', "didn't", 'say', '||quotation_mark||', 'your', '||period||', '||quotation_mark||', '||return|', 'kemi:', '||left_parentheses||', 'giggles', '||right_parentheses||', 'they', "don't", 'make', 'them', 'like', 'you', 'in', 'nigeria', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'stunned', '||right_parentheses||', 'nigeria', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'repressed', 'rage', '||right_parentheses||', 'homer', '||comma||', 'can', 'i', 'speak', 'to', 'you', 'in', 'private', '||question_mark||', '||return|', 'homer_simpson:', 'can', 'i', 'try', 'it', '||question_mark||', '||return|', 'moe_szyslak:', 'eh', '||comma||', 'you', 'gotta', 'be', 'mad', 'at', 'something', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', "i'm", 'mad', "i'm", 'not', 'doing', 'it', '||period||', '||return|', 'homer_simpson:', 'and', 'you', 'gave', 'it', 'to', 'him', '||question_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'i', 'did', '||period||', 'i', 'was', 'sure', 'the', 'guy', 'was', 'on', 'the', 'level', 'because', 'of', 'his', 'bad', 'spelling', 'and', 'grammar', '||period||', '||return|', 'moe_szyslak:', 'now', '||comma||', 'guess', 'how', 'much', 'of', 'the', 'twenty', 'million', 'i', 'saw', '||question_mark||', '||return|', 'homer_simpson:', 'eight', 'million', '||question_mark||', '||return|', 'moe_szyslak:', 'ze-ro', '||period||', '||return|', 'homer_simpson:', 'get', 'outta', 'here', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'then', '||right_parentheses||', 'if', 'kemi', 'there', 'is', 'a', 'nigerian', 'princess', '||comma||', 'her', 'brother', 'just', 'might', 'be', 'the', 'nigerian', 'prince', 'that', 'took', 'my', 'money', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'gasps', '||right_parentheses||', "she's", 'gone', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', 'she', 'trashed', 'my', 'bar', '||exclamation_mark||', '||left_parentheses||', 'looks', 'around', '||right_parentheses||', 'oh', 'no', '||comma||', 'wait', '||period||', 'she', 'actually', 'cleaned', 'up', 'a', 'little', '||period||', 'good', 'for', 'her', '||period||', '||return|', 'homer_simpson:', 'chief', '||exclamation_mark||', 'thank', 'god', '||exclamation_mark||', 'i', 'was', 'drinking', 'at', "moe's", '||comma||', 'and', 'i', 'lost', 'an', 'african', 'princess', '||exclamation_mark||', '||return|', 'chief_wiggum:', 'lost', 'african', 'princess', '||comma||', 'eh', '||question_mark||', 'well', '||comma||', 'lucky', 'for', 'you', '||comma||', 'she', 'just', 'happens', 'to', 'be', 'in', 'the', 'back', 'of', 'my', 'cruiser', '||period||', '||return|', 'homer_simpson:', 'yes', '||exclamation_mark||', 'the', 'prayer', 'i', 'forgot', 'to', 'say', 'has', 'been', 'answered', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'puzzled', '||right_parentheses||', 'what', 'the', '||question_mark||', '||return|', 'chief_wiggum:', "you're", 'going', 'straight', 'to', 'the', 'drunk', 'tank', '||comma||', 'rummy', '||period||', '||left_parentheses||', 'snorts', '||right_parentheses||', '||quotation_mark||', 'african', 'princess', '||period||', '||quotation_mark||', '||return|', 'gil_gunderson:', 'chief', '||exclamation_mark||', 'i', 'just', 'saw', 'someone', "robbin'", 'the', 'kwik-e-mart', '||exclamation_mark||', '||return|', 'chief_wiggum:', 'oh', '||comma||', 'now', 'african', 'princesses', 'are', "robbin'", 'the', 'kwik-e-mart', '||comma||', 'huh', '||question_mark||', 'get', 'in', 'the', 'car', '||comma||', 'booze', 'bag', '||period||', '||return|', 'apu_nahasapeemapetilon:', 'chief', '||exclamation_mark||', 'i', 'have', 'been', 'shot', 'in', 'the', 'shoulder', '||exclamation_mark||', '||return|', 'chief_wiggum:', 'in', 'the', 'car', '||exclamation_mark||', '||return|', 'chief_wiggum:', 'what', 'is', 'this', '||comma||', 'saint', "patrick's", 'day', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'mumbling', '||right_parentheses||', 'this', 'is', 'terrible', '||period||', "can't", 'think', 'of', 'anything', 'to', 'mumble', 'to', 'myself', '||period||', "that's", 'how', 'upset', 'i', 'am', 'here', '||period||', '||return|', 'kemi:', 'also', '||period||', '||period||', '||period||', 'maybe', '||period||', '||period||', '||period||', 'i', 'wanted', 'to', 'talk', 'more', 'to', 'you', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'pleased', '||right_parentheses||', 'really', '||question_mark||', '||return|', "moe's_thoughts:", '||left_parentheses||', 'grimly', '||right_parentheses||', 'okay', 'there', '||comma||', 'moe', '||period||', 'you', 'gotta', 'get', 'to', 'the', 'brother', '||comma||', 'because', 'he', 'knows', 'what', 'my', 'pin', 'number', 'is', 'and', 'i', 'forgot', '||period||', '||return|', 'moe_szyslak:', 'i', 'see', '||period||', '||return|', "moe's_thoughts:", 'now', 'moe', '||comma||', "don't", 'jump', 'to', 'conclusions', '||period||', 'a', 'lotta', 'people', 'have', 'brothers', '||period||', '||return|', 'moe_szyslak:', 'does', 'he', 'have', 'a', 'computer', '||question_mark||', '||return|', 'kemi:', 'yes', '||period||', '||return|', "moe's_thoughts:", "it's", 'him', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'yeah', '||comma||', 'so', 'all', 'my', "money's", 'tied', 'up', 'in', 'this', 'jernt', '||period||', "can't", 'even', 'afford', 'elocution', 'lessons', 'to', 'teach', 'me', 'how', 'to', 'pronounce', '||left_parentheses||', 'over-pronouncing', '||right_parentheses||', '||quotation_mark||', 'joint', '||period||', '||quotation_mark||', 'i', 'guess', 'i', 'could', 'do', 'it', 'online', '||comma||', 'but', "what's", 'the', 'pernt', '||question_mark||', '||return|', 'moe_szyslak:', "what's", 'so', 'funny', '||question_mark||', '||return|', 'kemi:', 'i', 'thought', 'my', 'english', 'was', 'perfect', '||period||', 'but', 'you', 'make', 'me', 'feel', 'even', 'better', 'about', 'it', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'laughs', '||right_parentheses||', 'usually', 'people', 'that', 'tease', 'me', 'get', 'thrown', 'out', 'on', 'their', 'ass', '||period||', 'but', '||comma||', 'uh', '||comma||', 'your', "sayin'", 'it', 'made', 'me', 'feel', 'good', '||period||', 'jeez', '||comma||', 'i', 'sound', 'like', 'one', 'of', 'those', 'guys', 'in', 'them', 'rom', 'coms', 'that', 'play', 'at', 'the', 'theater', 'next', 'to', 'the', 'theater', "i'm", 'in', '||period||', '||return|', 'moe_szyslak:', 'so', '||comma||', 'uh', '||comma||', "what's", 'a', 'princesses', 'like', 'you', 'do', 'all', 'day', '||comma||', 'eh', '||question_mark||', 'a', 'lot', 'of', 'spinning', 'wheels', 'and', 'witches', "treatin'", 'you', 'like', 'crap', '||question_mark||', '||return|', 'kemi:', 'i', 'read', '||period||', 'are', 'you', 'familiar', 'with', 'the', 'books', 'by', 'my', 'countryman', 'chinua', 'achebe', '||comma||', '||quotation_mark||', 'things', 'fall', 'apart', '||quotation_mark||', 'and', '||quotation_mark||', 'no', 'longer', 'at', 'ease', '||question_mark||', '||quotation_mark||', '||return|', 'moe_szyslak:', 'you', 'guys', 'got', 'real', 'optimistic', 'literature', 'there', '||period||', '||return|', 'kemi:', '||left_parentheses||', 'amused', '||right_parentheses||', 'fair', 'comment', '||period||', '||return|', 'kemi:', '||left_parentheses||', 'yawns', '||right_parentheses||', 'i', "haven't", 'eaten', 'all', 'day', '||period||', '||return|', 'moe_szyslak:', "don't", 'eat', 'those', 'eggs', '||exclamation_mark||', 'we', "don't", 'know', 'what', 'kinda', 'bird', 'they', 'turn', 'into', '||exclamation_mark||', 'but', "there's", 'a', 'string', 'cheese', 'or', 'something', 'in', 'the', 'fridge', 'in', 'the', 'back', '||period||', 'help', 'yourself', '||period||', '||return|', 'moe_szyslak:', 'alright', '||comma||', 'after', 'she', 'eats', '||comma||', "i'd", 'better', 'close', 'up', '||period||', '||left_parentheses||', 'stretches', '||comma||', 'yawns', '||right_parentheses||', "c'mon", '||comma||', 'pal', '||period||', '||return|', 'moe_szyslak:', "that's", 'really', 'stuck', 'there', 'good', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'small', 'smile', '||comma||', 'sighs', '||right_parentheses||', 'i', "can't", 'be', 'mad', 'at', 'her', 'no', 'more', '||period||', '||return|', 'moe_szyslak:', 'goodnight', '||comma||', 'moon', '||period||', '||return|', 'moe_szyslak:', 'goodnight', '||comma||', 'broom', '||period||', 'good', 'night', 'jukebox', 'that', "won't", 'play', 'a', 'tune', '||period||', '||return|', 'moe_szyslak:', 'goodnight', 'eggs', '||period||', 'goodnight', 'dregs', '||period||', 'goodnight', 'bugs', "crawlin'", 'up', 'my', 'legs', '||period||', 'goodnight', 'beer', '||period||', 'goodnight', 'mice', '||period||', 'goodnight', 'princess', 'who', 'treats', 'me', 'nice', '||period||', 'yeah', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'well', '||comma||', 'look', "who's", 'up', '||period||', 'princess', '||comma||', "i'm", 'gonna', 'do', 'something', 'for', 'you', "i've", 'never', 'done', 'for', 'anyone', 'in', 'this', 'bar:', 'call', 'you', 'a', 'cab', '||period||', '||return|', 'kemi:', 'no', '||period||', 'i', 'want', 'to', 'spend', 'time', 'with', 'you', '||period||', 'i', 'want', 'to', 'see', 'this', 'town', '||period||', '||return|', 'moe_szyslak:', 'do', 'you', 'mind', "ridin'", 'on', 'a', 'cute', 'little', 'scooter', 'with', 'your', 'arms', 'around', 'my', 'waist', '||question_mark||', '||return|', 'kemi:', '||left_parentheses||', 'shyly', '||right_parentheses||', 'i', "don't", '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'lifts', 'index', 'finger', '||right_parentheses||', 'to', 'the', 'scooter', 'store', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'i', 'did', 'not', 'think', 'this', 'through', '||period||', '||return|', 'kemi:', 'moe', '||comma||', 'before', 'i', 'left', '||comma||', 'i', 'just', 'wanted', 'to', 'give', 'you', 'these', 'examples', 'of', 'our', 'most', 'beloved', '||comma||', 'albeit', 'depressing', '||comma||', 'literature', '||period||', '||return|', 'moe_szyslak:', 'ah', '||comma||', 'some', 'nice', 'bedtime', "readin'", '||period||', '||return|', 'moe_szyslak:', 'fun', 'premise', '||period||', '||return|', 'moe_szyslak:', "i'm", 'laughing', 'already', '||period||', '||return|', 'moe_szyslak:', 'really', 'not', "cheerin'", 'me', 'up', 'here', '||comma||', 'but', 'uh', '||comma||', 'let', 'me', 'offer', 'you', 'the', 'only', 'literature', 'in', 'this', 'bar', '||period||', 'sure', 'works', 'for', 'me', 'though', '||period||', '||return|', 'moe_szyslak:', 'this', 'coaster', '||period||', '||return|', 'kemi:', 'i', 'will', 'treasure', 'it', '||period||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'i', 'guess', "you'll", 'pine', 'forever', 'for', 'a', 'man', 'who', "doesn't", 'care', '||comma||', 'while', 'i', 'just', 'grow', 'old', 'here', 'in', 'this', 'bar', '||period||', '||return|', 'waylon_smithers:', "here's", 'to', 'suffering', 'in', 'silence', '||period||', '||return|', 'waylon_smithers:', '||left_parentheses||', 'intrigued', 'noise', '||right_parentheses||', "can't", 'wait', 'to', 'see', 'those', 'numbers', 'hanging', 'from', 'my', 'rafters', '||period||', '||return|', 'aged_moe:', '||left_parentheses||', 'sigh', '||right_parentheses||', 'i', "can't", 'believe', "it's", 'been', 'three', 'years', 'since', 'smithers', 'left', '||period||', 'man', '||comma||', 'have', 'i', 'been', 'aging', 'badly', '||period||', '||left_parentheses||', 'sighs', '||right_parentheses||', 'but', 'i', 'guess', 'i', 'can', 'finally', 'wash', 'this', 'forehead', '||period||', '||return|', 'aged_moe:', '||left_parentheses||', 'smiles', '||right_parentheses||', 'divine', '||period||', '||return|', '||return|', '||return|', 'troy:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'homer', '||comma||', "i'm", 'really', 'touched', 'you', 'invited', 'me', 'out', 'on', 'the', 'town', '||period||', "you're", 'gonna', 'be', 'a', 'four-star', 'brother-in-law', '||period||', '||return|', 'troy:', '||left_parentheses||', 'drunk', 'but', 'smooth', '||right_parentheses||', "c'mere", '||comma||', 'homer', '||period||', '||return|', 'troy:', "i'll", 'let', 'you', 'in', 'on', 'a', 'little', 'secret', '||period||', '||period||', '||period||', '||return|', '||return|', '||return|', 'young_homer:', '||left_parentheses||', 'tipsy', '||right_parentheses||', 'marge', '||comma||', 'come', 'here', '||period||', '||return|', 'young_homer:', 'marge', '||comma||', 'i', 'need', 'both', 'hands', 'for', 'this', 'game', '||period||', 'can', 'you', 'feed', 'me', 'nachos', 'while', 'i', 'play', '||question_mark||', '||return|', 'young_homer:', 'tell', 'that', 'to', 'the', 'brave', 'crew', 'of', 'the', 's', '||period||', 's', '||period||', 'triangle', '||period||', '||return|', 'young_homer:', 'come', 'on', '||exclamation_mark||', "you're", 'always', 'saying', 'we', 'should', 'do', 'things', 'as', 'a', 'couple', '||period||', '||return|', 'young_homer:', 'oh', '||comma||', 'this', 'is', 'wonderful', '||period||', 'i', 'love', 'you', '||comma||', 'atari', '||period||', '||return|', 'young_homer:', '||left_parentheses||', 'oblivious', '||right_parentheses||', 'well', '||comma||', 'i', 'aims', 'to', 'please', '||period||', 'hey', '||comma||', "let's", 'stop', 'by', 'that', 'dumpster', 'and', 'make', 'out', '||period||', '||left_parentheses||', 'gags', '||comma||', 'then:', 'holds', 'up', 'finger', '||right_parentheses||', 'hold', 'that', 'thought', '||period||', '||return|', '||return|', '||return|', 'teenage_homer:', 'psst', '||comma||', 'barney', '||exclamation_mark||', 'my', "dad's", 'asleep', '||period||', 'want', 'a', 'beer', '||question_mark||', '||return|', '||return|', '||return|', 'young_marge:', 'i', "don't", 'want', 'a', 'life', 'of', 'watching', 'you', 'get', 'drunk', '||comma||', 'then', 'holding', 'back', 'your', 'long', '||comma||', 'beautiful', 'hair', 'while', 'you', 'vomit', '||period||', 'i', 'have', 'my', 'own', 'dreams', 'and', 'i', "can't", 'live', 'them', 'with', 'you', '||period||', '||return|', '||return|', '||return|', 'teenage_homer:', "i've", 'got', 'two', 'words', 'for', 'you', '||period||', 'mellow', 'out', '||comma||', 'man', '||period||', 'hmm', '||question_mark||', 'hmm', '||question_mark||', '||return|', '||return|', '||return|', 'teenage_bart:', '||left_parentheses||', 'aghast', '||right_parentheses||', 'dad', '||comma||', "that's", 'my', 'fourth', 'grade', 'teacher', '||exclamation_mark||', '||return|', 'teenage_bart:', 'hi', '||comma||', 'mrs', '||period||', 'k', '||period||', 'this', 'is', 'sure', 'weird', '||comma||', 'huh', '||question_mark||', '||return|', 'teenage_bart:', 'uh', '||comma||', 'i', '||period||', '||period||', '||period||', "don't", 'think', 'so', '||period||', '||return|', 'teenage_bart:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'i', 'wish', 'i', 'could', 'talk', 'to', 'my', 'fourth', 'grade', 'self', 'just', 'once', '||period||', "i'd", 'say', '||quotation_mark||', 'work', 'hard', '||comma||', "don't", 'be', 'such', 'a', 'screw', 'up', '||period||', '||quotation_mark||', '||return|', '||return|', '||return|', 'adult_bart:', 'wow', '||comma||', 'this', 'place', "hasn't", 'changed', 'a', 'bit', '||period||', '||return|', 'adult_bart:', 'was', 'my', 'dad', 'here', '||question_mark||', '||return|', 'adult_bart:', 'yeah', '||period||', 'since', 'he', "don't", 'drink', '||comma||', 'he', 'just', 'comes', 'here', 'to', 'see', 'lenny', 'and', 'carl', '||period||', '||return|', 'adult_bart:', 'hey', 'lenny', '||period||', '||return|', 'adult_bart:', 'right', '||period||', 'what', 'was', 'the', 'point', 'again', '||question_mark||', '||return|', '||return|', '||return|', "homer's_brain:", 'okay', '||comma||', 'homer', '||period||', 'this', 'is', 'the', 'moment', 'of', 'truth', '||period||', "you've", 'gotta', 'tell', 'marge', 'you', 'really', "don't", 'want', 'another', 'kid', '||period||', '||return|', "homer's_brain:", 'eh', '||comma||', 'how', 'bad', 'could', 'it', 'be', '||question_mark||', '||return|', '||return|', '||return|', 'kirk_voice_milhouse:', 'hey', 'bartender', '||period||', "we'd", 'like', 'two', 'milks', 'and', 'then', 'you', 'can', 'tell', 'us', 'where', 'babies', 'come', 'from', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', "what's", 'the', 'matter', '||comma||', 'homer', '||question_mark||', 'somebody', 'leave', 'a', 'lumpa', 'coal', 'in', 'your', 'stocking', '||question_mark||', "you've", 'been', 'sitting', 'there', 'sucking', 'on', 'a', 'beer', 'all', 'day', 'long', '||period||', '||return|', 'homer_simpson:', 'so', '||question_mark||', '||return|', 'moe_szyslak:', 'so', "it's", 'christmas', '||exclamation_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'down', '||right_parentheses||', 'thanks', '||comma||', 'moe', '||period||', '||return|', 'barney_gumble:', 'drinks', 'all', 'around', '||exclamation_mark||', '||return|', 'homer_simpson:', "what's", 'with', 'the', 'crazy', 'getup', '||comma||', 'barn', '||question_mark||', '||return|', 'barney_gumble:', 'i', 'got', 'me', 'a', 'part-time', 'job', 'working', 'as', 'a', 'santa', 'down', 'at', 'the', 'mall', '||period||', '||return|', 'homer_simpson:', 'wow', '||period||', 'can', 'i', 'do', 'that', '||question_mark||', '||return|', 'barney_gumble:', 'i', "don't", 'know', '||period||', "they're", 'pretty', 'selective', '||period||', '||left_parentheses||', 'burps', '||right_parentheses||', '||return|', '||return|', '||return|', 'homer_simpson:', "you'll", 'get', 'that', 'punk', 'someday', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'ahh', '||comma||', 'i', "don't", 'know', '||period||', "he's", 'tough', 'to', 'catch', '||period||', 'he', 'keeps', 'changing', 'his', 'name', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'reaches', 'into', 'his', 'pocket', '||right_parentheses||', 'moe', '||comma||', 'i', 'think', "i'll", 'have', 'another', '||dash||', '||left_parentheses||', 'opens', 'wallet', '||comma||', 'sees', 'it', 'is', 'empty', '||right_parentheses||', '||dash||', 'whoops', '||period||', '||left_parentheses||', 'checks', 'pockets', '||comma||', 'pulls', 'inside', 'out', '||right_parentheses||', 'moe', '||comma||', "i'm", 'a', 'little', 'low', 'on', 'funds', '||period||', 'you', 'think', 'could', 'cover', 'me', 'just', 'this', 'once', '||question_mark||', '||return|', 'moe_szyslak:', 'no', '||comma||', 'sorry', '||period||', '||return|', 'homer_simpson:', 'why', 'not', '||question_mark||', 'i', 'think', 'after', 'all', 'these', 'years', 'i', 'deserve', 'an', 'explanation', '||period||', '||return|', 'moe_szyslak:', 'i', "don't", 'think', "you're", 'ever', 'going', 'to', 'get', 'another', 'job', 'and', 'be', 'able', 'to', 'pay', 'me', 'back', '||period||', '||return|', 'homer_simpson:', 'oh', '||period||', '||return|', 'moe_szyslak:', "don't", 'worry', '||comma||', "we're", 'still', 'friends', '||period||', '||return|', '||return|', '||return|', 'boxing_announcer:', 'the', 'fans', 'are', 'getting', 'just', 'a', 'little', 'bit', 'anxious', 'here', 'folks', '||period||', '||period||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sad', '||right_parentheses||', 'another', 'beer', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', "what's", 'the', 'matter', '||comma||', 'homer', '||question_mark||', 'bloodiest', 'fight', 'of', 'the', 'year', '||comma||', 'and', "you're", "sittin'", 'there', 'like', 'a', 'thirsty', 'bump', 'on', 'a', 'log', '||period||', '||return|', 'moe_szyslak:', 'eddie', '||period||', '||return|', 'eddie:', 'evening', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'want', 'some', 'pretzels', '||question_mark||', '||return|', 'eddie:', '||left_parentheses||', 'chuckle', '||right_parentheses||', 'no', '||comma||', 'thanks', '||period||', "we're", 'on', 'duty', '||period||', 'couple', 'beers', 'would', 'be', 'nice', '||comma||', 'though', '||period||', '||return|', 'moe_szyslak:', "that'll", 'be', 'two', 'bucks', '||comma||', 'boys', '||period||', 'just', 'kidding', '||exclamation_mark||', '||return|', 'lou:', 'good', 'one', '||comma||', 'moe', '||period||', 'hey', 'listen', '||comma||', "we're", 'looking', 'for', 'a', 'family', 'of', 'peeping', 'toms', 'that', 'has', 'been', 'terrorizing', 'the', 'neighborhood', '||period||', '||return|', 'lou:', '||left_parentheses||', 'to', 'dog', '||right_parentheses||', 'quiet', '||comma||', 'boy', '||period||', 'let', 'the', 'nice', 'people', 'enjoy', 'their', 'beers', '||period||', 'uh', '||comma||', "don't", 'worry', '||period||', 'this', 'dog', 'has', 'the', 'scent', '||period||', '||return|', 'eddie:', 'hey', '||exclamation_mark||', "what's", 'gotten', 'into', 'bobo', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'nervous', '||right_parentheses||', "i've", 'got', 'some', 'wieners', 'in', 'my', 'pocket', '||period||', '||return|', 'eddie:', 'that', 'figures', '||period||', 'come', 'on', '||comma||', 'you', 'stupid', 'dog', '||period||', '||return|', 'homer_simpson:', 'you', 'know', '||comma||', 'moe', '||comma||', 'my', 'mom', 'once', 'said', 'something', 'that', 'really', 'stuck', 'with', 'me', '||period||', 'she', 'said', '||comma||', '||quotation_mark||', 'homer', '||comma||', "you're", 'a', 'big', 'disappointment', '||comma||', '||quotation_mark||', 'and', '||comma||', 'god', 'bless', 'her', 'soul', '||comma||', 'she', 'was', 'really', 'onto', 'something', '||period||', '||return|', 'barney_gumble:', "don't", 'blame', 'yourself', '||comma||', 'homer', '||period||', 'you', 'got', 'dealt', 'a', 'bad', 'hand', '||period||', 'you', 'got', 'crummy', 'little', 'kids', 'that', 'nobody', 'can', 'control', '||period||', '||return|', 'homer_simpson:', 'you', "can't", 'talk', 'that', 'way', 'about', 'my', 'kids', '||period||', 'or', '||comma||', 'at', 'least', 'two', 'of', 'them', '||period||', '||return|', 'barney_gumble:', 'why', '||question_mark||', 'you', 'got', 'two', 'i', "haven't", 'met', '||question_mark||', '||return|', 'homer_simpson:', 'why', '||comma||', 'you', '||period||', '||period||', '||period||', "here's", 'five', 'you', "haven't", 'met', '||period||', '||return|', 'boxing_announcer:', 'and', 'a', 'tremendous', 'right', '||exclamation_mark||', "that's", 'just', 'got', 'to', 'hurt', '||exclamation_mark||', 'ladies', 'and', 'gentlemen', '||comma||', 'this', 'fight', 'is', 'over', '||exclamation_mark||', '||return|', 'tv-station_announcer:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'all-star', 'boxing', 'is', 'brought', 'to', 'you', 'by', '||quotation_mark||', 'dr', '||period||', 'marvin', "monroe's", 'family', 'therapy', 'center', '||quotation_mark||', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'coming', 'to', '||right_parentheses||', 'huh', '||period||', '||period||', '||period||', 'what', '||question_mark||', '||return|', 'tv_wife:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'honey', '||comma||', "aren't", 'you', 'going', 'to', 'work', 'today', '||question_mark||', '||return|', 'tv_husband:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return|', 'tv_wife:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'honey', '||comma||', 'you', 'have', 'a', 'problem', '||period||', 'and', 'it', "won't", 'get', 'better', 'till', 'you', 'admit', 'it', '||period||', '||return|', 'tv_husband:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'i', 'admit', 'this:', 'you', 'better', 'shut', 'your', 'big', 'yap', '||period||', '||return|', 'tv_wife:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'oh', 'you', '||comma||', 'shut', 'up', '||period||', '||return|', 'tv_husband:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'no', '||comma||', 'you', 'shut', 'up', '||period||', '||return|', 'tv_wife:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'no', '||comma||', 'you', 'shut', 'up', '||period||', '||return|', 'tv_husband:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'oh', '||comma||', 'shut', 'up', '||exclamation_mark||', '||return|', 'tv_wife:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'shut', 'up', '||exclamation_mark||', '||return|', 'tv_husband:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'shut', 'up', '||exclamation_mark||', '||return|', 'small_boy:', '||left_parentheses||', 'from', 'tv', '||semicolon||', 'calmly', '||right_parentheses||', 'why', "don't", 'you', 'both', '||left_parentheses||', 'furiously', '||right_parentheses||', 'shut', 'up', '||exclamation_mark||', '||return|', 'dr', '||period||', '_marvin_monroe:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'hi', '||comma||', 'friends', '||period||', "i'm", 'dr', '||period||', 'marvin', 'monroe', '||period||', 'does', 'this', 'scene', 'look', 'familiar', '||question_mark||', 'if', 'so', '||comma||', 'i', 'can', 'help', '||period||', 'no', 'gimmicks', '||comma||', 'no', 'pills', '||comma||', 'no', 'fad', 'diets', '||period||', 'just', 'family', 'bliss', '||comma||', 'or', 'double', 'your', 'money', 'back', '||period||', 'so', 'call', 'today', '||exclamation_mark||', '||return|', 'announcer:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'dr', '||period||', 'marvin', "monroe's", 'family', 'therapy', 'center', '||period||', '1-800-555-hugs', '||period||', 'why', "don't", 'you', 'call', '||period||', '||period||', '||period||', 'right', 'now', '||question_mark||', '||return|', 'homer_simpson:', 'when', 'will', 'i', 'learn', '||question_mark||', 'the', 'answers', 'to', "life's", 'problems', "aren't", 'at', 'the', 'bottom', 'of', 'a', 'bottle', '||period||', 'heh-heh', '||period||', "they're", 'on', 'tv', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'yeah', '||exclamation_mark||', "moe's", 'tavern', '||period||', 'moe', 'speaking', '||period||', '||return|', 'bart_simpson:', '||left_parentheses||', 'thru', 'phone', '||right_parentheses||', 'is', 'jacques', 'there', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'who', '||question_mark||', '||return|', 'bart_simpson:', '||left_parentheses||', 'thru', 'phone', '||right_parentheses||', 'jacques', '||period||', 'last', 'name', 'strap', '||period||', '||return|', 'moe_szyslak:', 'hold', 'on', '||period||', '||left_parentheses||', 'calls', 'out', '||right_parentheses||', 'uh', '||period||', '||period||', 'jacques', 'strap', '||exclamation_mark||', 'hey', '||comma||', 'guys', '||comma||', "i'm", 'looking', 'for', 'a', 'jacques', 'strap', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'what', '||dash||', 'oh', '||exclamation_mark||', 'wait', 'a', 'minute', '||dash||', 'jacques', 'strap', '||question_mark||', "it's", 'you', '||comma||', "isn't", 'it', '||question_mark||', 'you', 'cowardly', 'little', 'runt', '||period||', 'when', 'i', 'get', 'hold', 'of', 'you', 'i', 'am', 'gonna', 'gut', 'you', 'like', 'a', 'fish', 'and', 'drink', 'your', 'blood', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'come', 'on', '||comma||', 'come', 'on', 'everybody', '||period||', "we've", 'got', 'to', 'get', 'on', 'with', 'our', 'lives', '||period||', "let's", 'try', 'and', 'put', 'this', 'tragedy', 'behind', 'us', '||period||', '||return|', 'barney_gumble:', "you're", 'right', '||comma||', 'moe', '||period||', 'a', 'beer', '||comma||', 'please', '||comma||', 'and', 'make', 'sure', "there's", 'a', 'head', 'on', 'it', '||period||', '||return|', 'moe_szyslak:', 'ohhhh', '||period||', '||left_parentheses||', 'begins', 'sobbing', '||right_parentheses||', '||return|', '||return|', '||return|', 'barney_gumble:', 'wow', '||exclamation_mark||', '||return|', '||return|', '||return|', 'moe_szyslak:', "what's", 'the', 'matter', '||comma||', 'homer', '||question_mark||', 'hottest', 'ladies', 'night', 'in', 'months', 'and', "you're", 'not', 'even', 'checking', 'out', 'the', 'action', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'moe', '||period||', 'my', 'wife', 'gave', 'me', 'the', 'old', 'heave-ho', 'because', 'of', 'some', 'lousy', 'picture', '||period||', '||return|', 'moe_szyslak:', 'this', 'one', '||question_mark||', '||return|', 'barney_gumble:', 'so', 'where', 'you', 'staying', 'tonight', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', 'motel', '||comma||', 'i', 'guess', '||period||', '||return|', 'barney_gumble:', 'oh', '||comma||', 'no', '||period||', 'no', 'pal', 'of', 'mine', 'is', 'gonna', 'stay', 'in', 'some', 'dingy', 'flophouse', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', 'phone', 'call', 'for', 'al', '||period||', 'al', 'koholic', '||period||', 'is', 'there', 'an', 'al', 'koholic', 'here', '||question_mark||', '||return|', 'moe_szyslak:', 'wait', 'a', 'minute', '||period||', '||period||', '||period||', '||left_parentheses||', 'grabbing', 'phone', '||right_parentheses||', 'listen', '||comma||', 'you', 'little', 'yellow-belly', 'rat', 'jackass', '||comma||', 'if', 'i', 'ever', 'find', 'out', 'who', 'you', 'are', '||comma||', "i'll", 'kill', 'ya', '||exclamation_mark||', '||left_parentheses||', 'hangs', 'up', '||right_parentheses||', '||return|', 'homer_simpson:', 'i', 'hope', 'you', 'do', 'find', 'that', 'punk', 'someday', '||comma||', 'moe', '||period||', 'fill', "'er", 'up', '||period||', '||return|', 'moe_szyslak:', 'is', 'everything', 'okay', '||comma||', 'homer', '||question_mark||', 'usually', 'you', 'have', 'a', 'quick', 'one', '||comma||', 'some', 'peanuts', '||comma||', 'a', 'hunka', 'beef', 'jerky', '||comma||', 'a', 'couple', 'pickled', 'eggs', 'and', "you're", 'outta', 'here', '||period||', '||return|', 'homer_simpson:', "let's", 'just', 'say', '||comma||', 'i', "don't", 'feel', 'like', "goin'", 'home', 'tonight', '||period||', 'jar', '||comma||', 'please', '||period||', '||return|', 'moe_szyslak:', 'hey', '||comma||', 'you', 'can', 'level', 'with', 'me', '||period||', 'you', 'got', 'a', 'domestic', 'situation', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'contemplates', 'his', 'egg', '||comma||', 'then', 'jams', 'it', 'in', 'mouth', '||right_parentheses||', 'you', 'might', 'say', 'that', '||period||', 'my', "wife's", 'gonna', 'leave', 'me', "'cause", 'she', 'thinks', "i'm", 'a', 'pig', '||period||', '||return|', 'moe_szyslak:', 'homer', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'mouth', 'full', '||right_parentheses||', 'what', '||question_mark||', '||return|', 'moe_szyslak:', 'marge', 'is', 'right', '||period||', 'you', 'are', 'a', 'pig', '||period||', 'you', 'can', 'ask', 'anyone', 'in', 'this', 'bar', '||period||', '||return|', 'homer_simpson:', 'what', '||question_mark||', '||left_parentheses||', 'yells', '||right_parentheses||', 'hey', '||comma||', 'barney', '||comma||', 'am', 'i', 'a', 'pig', '||question_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'drunkenly', '||right_parentheses||', "you're", 'no', 'more', 'of', 'a', 'pig', 'than', 'i', 'am', '||period||', '||left_parentheses||', 'burp', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'disappointed', '||right_parentheses||', 'oh', '||comma||', 'no', '||period||', '||return|', 'moe_szyslak:', 'see', '||question_mark||', "you're", 'a', 'pig', '||period||', "barney's", 'a', 'pig', '||period||', "larry's", 'a', 'pig', '||period||', "we're", 'all', 'pigs', '||period||', 'except', 'for', 'one', 'difference', '||period||', 'once', 'in', 'a', 'while', '||comma||', 'we', 'can', 'crawl', 'out', 'of', 'the', 'slop', '||comma||', 'hose', 'ourselves', 'off', '||comma||', 'and', 'act', 'like', 'human', 'beings', '||period||', 'homer', '||comma||', 'buy', 'your', 'wife', 'some', 'flowers', 'and', 'take', 'her', 'out', 'for', 'a', 'night', 'on', 'the', 'town', '||period||', 'candles', '||comma||', 'tablecloth', '||comma||', 'the', 'whole', 'nine', 'yards', '||period||', '||return|', 'homer_simpson:', 'gee', '||comma||', 'a', 'romantic', 'evening', '||period||', 'nah', '||comma||', "she's", 'too', 'smart', 'to', 'fall', 'for', 'that', '||period||', '||return|', 'moe_szyslak:', "i'm", 'not', 'done', '||period||', '||left_parentheses||', 'leans', 'in', '||right_parentheses||', 'after', 'dinner', '||comma||', 'the', 'two', 'of', 'you', 'are', 'going', 'to', 'check', 'into', 'the', 'fanciest', 'motel', 'in', 'town', '||comma||', 'and', 'not', 'check', 'out', 'until', 'the', 'next', 'morning', '||period||', 'if', 'you', 'get', 'my', 'drift', '||period||', '||return|', 'homer_simpson:', 'i', 'read', 'you', 'loud', 'and', 'clear', '||period||', '||return|', '||return|', '||return|', 'homer_simpson:', 'good', 'morning', '||comma||', "moe's", 'tavern', '||exclamation_mark||', '||return|', 'barney_gumble:', 'ah', '||period||', '||period||', '||period||', "it's", 'the', 'president', '||exclamation_mark||', '||return|', '||return|', '||return|', 'barney_gumble:', '||left_parentheses||', 're:', 'tv', '||right_parentheses||', 'oh', '||comma||', 'no', '||period||', 'an', 'election', '||exclamation_mark||', "that's", 'one', 'of', 'those', 'deals', 'where', 'they', 'close', 'the', 'bars', '||comma||', "isn't", 'it', '||question_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'nods', '||right_parentheses||', 'sorry', '||comma||', 'barney', '||period||', '||return|', 'barney_gumble:', 'wow', '||exclamation_mark||', 'super', 'fish', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'i', 'wish', 'the', 'government', 'would', 'get', 'off', 'his', 'back', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', 'so', '||comma||', 'homer', '||period||', 'what', 'happened', 'in', 'capitol', 'city', '||question_mark||', '||return|', 'homer_simpson:', 'aw', '||comma||', 'barney', '||period||', '||return|', 'moe_szyslak:', 'come', 'on', '||comma||', 'homer', '||period||', "we're", "dyin'", 'of', 'curiosity', '||period||', '||return|', 'homer_simpson:', 'look', '||comma||', "there's", 'only', 'one', 'thing', 'worse', 'than', 'being', 'a', 'loser', '||period||', "it's", 'being', 'one', 'of', 'those', 'guys', 'who', 'sits', 'in', 'a', 'bar', 'telling', 'the', 'story', 'of', 'how', 'he', 'became', 'a', 'loser', '||period||', 'and', 'i', 'never', 'want', 'that', 'to', 'happen', 'to', 'me', '||period||', '||return|', 'barney_gumble:', 'please', '||comma||', 'homer', '||period||', '||return|', 'moe_szyslak:', "c'mom", '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'well', '||comma||', 'okay', '||period||', 'it', 'all', 'started', 'on', '||quotation_mark||', 'nuclear', 'plant', 'employees', '||comma||', 'spouses', '||comma||', 'and', 'no', 'more', 'than', 'three', 'children', 'night', '||comma||', '||quotation_mark||', 'down', 'at', 'springfield', 'stadium', '||period||', '||return|', 'homer_simpson:', 'this', 'was', 'the', 'biggest', 'decision', 'the', 'simpsons', 'ever', 'faced', '||period||', 'i', "should've", 'listened', 'to', 'the', 'kids', 'instead', 'of', 'my', 'big', 'dumb', 'wife', '||period||', '||return|', 'homer_simpson:', 'i', "shouldn't", 'have', 'called', 'her', 'that', '||period||', 'bite', 'my', 'tongue', '||period||', 'bite', 'my', 'tongue', '||period||', '||left_parentheses||', 'bites', 'tongue', '||right_parentheses||', 'oooh', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sighs', '||right_parentheses||', 'so', "that's", 'it', '||period||', 'the', "costume's", 'buried', 'now', '||period||', 'as', 'my', 'son', 'would', 'say', '||comma||', "i'm", 'one', 'sad', 'ape-like', 'dude', '||period||', '||return|', 'barney_gumble:', 'wow', '||period||', '||return|', 'moe_szyslak:', 'what', 'a', 'saga', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'you', 'guys', 'are', 'hanging', 'on', 'my', 'every', 'word', '||period||', "i've", 'become', 'the', 'center', 'of', 'attention', '||period||', '||return|', 'barney_gumble:', 'yeah', '||comma||', "it's", 'riveting', '||period||', '||left_parentheses||', 'burp', '||right_parentheses||', '||return|', 'moe_szyslak:', 'tell', 'it', 'again', '||comma||', 'homer', '||period||', '||return|', 'homer_simpson:', 'okay', '||period||', 'i', 'wonder', 'why', 'stories', 'of', 'degradation', 'and', 'humiliation', 'make', 'you', 'more', 'popular', '||period||', '||return|', 'moe_szyslak:', 'i', "don't", 'know', '||period||', 'they', 'just', 'do', '||period||', '||return|', '||return|', '||return|', 'barney_gumble:', 'but', 'i', 'only', 'got', 'up', 'to', 'go', 'to', 'the', 'can', '||period||', '||return|', 'homer_simpson:', "rasputin's", 'got', 'the', 'reach', '||comma||', 'but', 'on', 'the', 'other', 'hand', '||comma||', 'the', "professor's", 'got', 'his', 'patented', 'coma', 'lock', '||period||', 'if', 'you', 'ask', 'me', '||comma||', 'this', 'is', 'gonna', 'be', 'one', 'hell', 'of', 'a', 'match', '||period||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'look', 'at', 'that', 'show-off', '||period||', '||period||', '||period||', 'kissing', 'his', 'own', 'muscles', '||period||', '||left_parentheses||', 'yelling', '||right_parentheses||', 'boo', '||exclamation_mark||', '||return|', 'barney_gumble:', '||left_parentheses||', 'to', 'the', 'tv', '||right_parentheses||', 'boo', '||exclamation_mark||', '||left_parentheses||', 'burps', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'mouth', 'full', '||right_parentheses||', 'hey', '||comma||', 'i', "don't", 'see', 'your', 'name', 'engraved', 'on', 'the', 'bar', 'stool', '||period||', '||return|', 'richard:', '||period||', '||period||', '||period||', 'one', '||period||', '||period||', '||period||', 'two', '||period||', '||period||', '||period||', 'three', '||period||', '||period||', '||period||', 'four', '||period||', '||period||', '||period||', '||return|', 'audience:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', '||period||', '||period||', '||period||', 'five', '||period||', '||period||', '||period||', 'six', '||period||', '||period||', '||period||', '||return|', 'barflies:', '||period||', '||period||', '||period||', 'seven', '||period||', '||period||', '||period||', 'eight', '||period||', '||period||', '||period||', 'nine', '||period||', '||period||', '||period||', 'ten', '||period||', '||period||', '||period||', 'eleven', '||period||', '||period||', '||period||', '||return|', 'tv_announcer:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'the', 'ref', 'is', 'issuing', 'a', 'warning', 'to', 'rasputin', '||period||', '||return|', 'tv_announcer:', '||left_parentheses||', 'from', 'tv', '||right_parentheses||', 'oh', '||comma||', 'my', '||period||', 'oh', '||comma||', 'my', '||period||', 'why', 'is', 'the', 'referee', 'permitting', 'this', '||question_mark||', '||return|', '||return|', '||return|', 'smitty:', 'you', 'better', 'be', "dyin'", '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'well', '||comma||', "that's", 'it', '||period||', 'i', 'guess', 'this', 'is', 'the', 'class', "i'm", 'gonna', 'die', 'in', '||period||', '||return|', 'moe_szyslak:', 'eh', '||comma||', "you're", 'better', 'off', '||period||', 'rich', 'people', "aren't", 'happy', '||period||', 'from', 'the', 'day', "they're", 'born', '||comma||', 'to', 'the', 'day', 'they', 'die', '||comma||', 'they', 'think', "they're", 'happy', 'but', '||comma||', 'trust', 'me', '||period||', '||period||', '||period||', 'they', "ain't", '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'thinking', '||right_parentheses||', 'moe', '||comma||', 'i', 'wish', "he'd", 'shut', 'up', '||period||', '||return|', 'larry:', 'look', '||comma||', 'a', 'chick', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'and', "it's", 'not', 'even', 'ladies', 'night', '||period||', '||return|', 'homer_simpson:', 'hey', '||comma||', 'hey', '||comma||', 'guys', '||period||', 'knock', 'it', 'off', '||period||', "it's", 'just', 'my', 'wife', '||period||', '||return|', 'marge_simpson:', '||left_parentheses||', 'with', 'the', 'above', '||right_parentheses||', 'my', 'name', 'is', 'marge', '||period||', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', '||return|', 'marge_simpson:', 'homer', '||comma||', "i'd", 'like', 'you', 'to', 'forgive', 'me', 'for', 'doing', 'the', 'right', 'thing', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'marge', '||period||', '||period||', '||period||', '||return|', 'marge_simpson:', "we've", 'squabbled', 'over', 'money', 'before', '||dash||', 'never', 'this', 'much', '||dash||', 'i', 'mean', '||comma||', 'i', 'know', 'this', 'is', 'different', 'than', 'that', 'time', 'i', 'washed', 'your', 'pants', 'with', 'the', 'twenty', 'in', 'the', 'pocket', '||comma||', 'but', 'i', '||dash||', '||return|', 'homer_simpson:', '||left_parentheses||', 'with', 'trouble', '||right_parentheses||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'you', 'think', 'this', 'is', 'about', 'money', '||question_mark||', 'well', '||comma||', "it's", 'not', '||period||', "it's", 'worse', '||comma||', 'marge', '||period||', "i'm", 'afraid', 'that', 'from', 'now', 'on', 'when', 'i', 'look', 'at', 'you', '||comma||', "i'm", 'not', 'gonna', 'see', 'the', 'wife', 'by', 'my', 'side', 'or', 'the', 'mother', 'of', 'my', 'children', '||period||', "i'm", 'just', 'gonna', 'see', 'the', 'dame', 'who', 'blew', 'my', 'one', 'big', 'chance', '||period||', '||return|', 'marge_simpson:', 'what', 'are', 'you', 'saying', '||comma||', 'homer', '||question_mark||', '||return|', 'homer_simpson:', "i'm", 'saying', '||period||', '||period||', '||period||', '||left_parentheses||', 'thinking', '||right_parentheses||', "she's", 'been', 'your', 'wife', 'for', 'ten', 'years', '||comma||', "you've", 'had', 'three', 'children', 'together', '||comma||', "it's", 'time', 'to', 'be', 'honest', 'with', 'her', '||period||', '||left_parentheses||', 'to', 'marge', '||right_parentheses||', "i'm", 'not', 'sure', 'i', 'love', 'you', 'anymore', '||period||', '||return|', 'homer_simpson:', 'but', "don't", 'worry', '||period||', "i'll", 'never', 'let', 'on', '||period||', "i'll", 'still', 'do', 'all', 'the', 'bed', 'stuff', '||period||', 'maybe', 'it', "won't", 'be', 'so', 'bad', '||period||', '||return|', 'marge_simpson:', 'oh', 'my', 'lord', '||period||', 'well', '||comma||', 'i', "don't", 'want', 'to', 'wait', 'another', 'minute', 'to', 'find', 'out', 'whether', 'you', 'love', 'me', 'anymore', '||period||', 'i', 'think', 'that', 'you', 'should', 'look', 'me', 'in', 'the', 'eyes', 'and', 'find', 'out', '||period||', '||return|', 'marge_simpson:', 'homer', '||comma||', 'look', 'at', 'me', '||period||', '||return|', 'homer_simpson:', 'alright', '||comma||', 'alright', '||comma||', 'look', 'at', 'her', 'if', "it'll", 'make', 'her', 'shut', 'up', '||period||', 'start', 'with', 'the', 'feet', '||comma||', 'still', 'angry', '||question_mark||', 'good', '||comma||', 'good', 'homer', '||comma||', 'good', '||period||', 'this', 'is', 'tough', '||comma||', 'need', 'refreshment', '||period||', 'ahh', '||comma||', 'good', 'old', 'trustworthy', 'beer', '||comma||', 'my', 'love', 'for', 'you', 'will', 'never', 'die', '||period||', 'alright', '||comma||', 'alright', '||comma||', 'gotta', 'look', 'the', 'wife', 'straight', 'in', 'the', 'eyes', 'and', 'tell', 'her', '||period||', '||return|', 'homer_simpson:', 'oh', '||comma||', 'who', 'am', 'i', 'kidding', '||question_mark||', 'i', 'love', 'you', 'more', 'than', 'ever', '||period||', '||return|', 'marge_simpson:', 'i', 'love', 'you', 'too', '||exclamation_mark||', '||return|', 'homer_simpson:', 'sorry', 'to', 'scare', 'you', 'like', 'that', '||comma||', 'babe', '||period||', '||return|', 'moe_szyslak:', 'okay', '||comma||', 'everybody', '||exclamation_mark||', 'for', 'the', 'next', 'fifteen', 'minutes', '||comma||', 'one', 'third', 'off', 'on', 'every', 'pitcher', '||period||', '||period||', '||period||', 'one', 'per', 'customer', '||period||', '||period||', '||period||', 'domestic', 'beer', 'only', '||period||', '||period||', '||period||', 'hey', '||comma||', 'no', 'sharing', '||exclamation_mark||', '||return|', '||return|', '||return|', 'homer_simpson:', 'i', 'gotta', 'call', 'marge', '||period||', '||return|', 'barney_gumble:', 'ha', '||exclamation_mark||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'hello', '||comma||', "moe's", 'tavern', '||dash||', 'birthplace', 'of', 'the', 'rob', 'roy', '||period||', '||return|', 'moe_szyslak:', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'just', 'a', 'sec', '||period||', '||left_parentheses||', 'calling', 'out', 'to', 'room', '||right_parentheses||', 'hey', '||comma||', 'is', 'there', 'a', 'butts', 'here', '||question_mark||', 'seymour', 'butts', '||question_mark||', 'hey', '||comma||', 'everybody', '||period||', 'i', 'wanna', 'seymour', 'butts', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'wait', 'a', 'minute', '||period||', '||left_parentheses||', 'into', 'phone', '||right_parentheses||', 'listen', '||comma||', 'you', 'little', 'scum-sucking', 'pus-bucket', '||period||', 'when', 'i', 'get', 'my', 'hands', 'on', 'you', '||comma||', "i'm", 'gonna', 'pull', 'out', 'your', 'eyeballs', 'with', 'a', 'corkscrew', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sadly', '||right_parentheses||', 'oh', '||comma||', 'it', 'was', 'busy', '||period||', 'moe', '||comma||', 'another', 'last', 'beer', '||comma||', 'please', '||period||', '||return|', 'homer_simpson:', '||left_parentheses||', 'sniffles', '||right_parentheses||', 'guys', '||comma||', 'keep', 'it', 'down', '||period||', 'i', 'got', 'some', 'last', 'words', '||period||', 'i', 'never', 'told', 'you', 'this', 'before', '||comma||', 'but', 'sometimes', 'when', "i'm", 'at', 'work', '||comma||', 'i', 'think', 'of', 'you', 'and', 'smile', '||period||', 'so', 'often', 'i', 'think', 'that', '||period||', '||period||', '||period||', 'oh', '||comma||', 'words', "won't", 'do', 'it', '||period||', '||left_parentheses||', 'to', 'moe', '||right_parentheses||', 'i', 'love', 'you', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', 'please', '||comma||', 'not', 'in', 'public', '||period||', '||return|', 'homer_simpson:', 'i', 'love', 'you', '||comma||', 'barney', '||period||', '||return|', 'barney_gumble:', 'oh', '||comma||', 'how', 'european', '||period||', '||left_parentheses||', 'burps', '||right_parentheses||', '||return|', 'homer_simpson:', '||left_parentheses||', 'screams', '||right_parentheses||', 'come', 'on', '||comma||', 'barney', '||comma||', 'i', 'gotta', 'get', 'home', '||period||', '||left_parentheses||', 'on', 'the', 'run', '||right_parentheses||', '||return|', '||return|', '||return|', 'barney_gumble:', 'so', '||comma||', 'homer', '||comma||', 'i', 'hear', 'you', 'got', 'the', 'fight', '||period||', '||return|', 'homer_simpson:', 'yeah', '||comma||', "that's", 'right', '||period||', 'eight', "o'clock", '||comma||', 'my', 'place', '||period||', 'come', 'one', '||comma||', 'come', 'all', '||period||', '||return|', 'barney_gumble:', 'hey', '||comma||', 'moe', '||comma||', 'how', 'come', 'you', 'never', 'got', 'cable', 'for', 'the', 'bar', '||question_mark||', '||return|', 'moe_szyslak:', 'well', '||comma||', 'it', 'was', 'either', 'cable', 'or', 'the', 'mechanical', 'bull', '||period||', '||return|', 'moe_szyslak:', 'i', 'made', 'my', 'choice', 'and', 'i', 'stand', 'by', 'it', '||period||', '||return|', '||return|', '||return|', 'moe_szyslak:', '||left_parentheses||', 'beat', '||right_parentheses||', 'just', 'a', 'minute', '||comma||', 'let', 'me', 'check', '||period||', '||left_parentheses||', 'to', 'the', 'bar', '||right_parentheses||', 'homer', 'sexual', '||period||', 'come', 'on', '||comma||', 'come', 'on', '||period||', 'one', 'of', 'you', 'guys', 'must', 'be', 'homer', 'sexual', '||exclamation_mark||', '||return|', 'moe_szyslak:', 'oh', '||comma||', 'sorry', 'principal', 'skinner', '||period||', 'it', 'must', 'be', 'a', 'bad', 'connection', '||period||', '||left_parentheses||', 'to', 'homer', '||right_parentheses||', "it's", 'for', 'you', '||period||', 'i', 'think', "bart's", 'in', 'trouble', 'again', '||period||', '||return|', 'moe_szyslak:', 'lighten', 'up', '||comma||', 'homer', '||period||', "you're", 'making', 'happy', 'hour', 'bitterly', 'ironic', '||period||', '||return|', 'homer_simpson:', 'ah', '||comma||', 'moe', '||period||', "i've", 'gotta', 'find', 'a', 'date', 'for', 'my', 'big', '||comma||', 'fat', '||comma||', 'snotty', 'sister-in-law', '||comma||', 'selma', '||period||', '||return|', 'barney_gumble:', "i'm", 'intrigued', '||period||', 'what', 'does', 'this', 'selma', 'look', 'like', '||question_mark||', '||return|', 'homer_simpson:', '||left_parentheses||', 'hopeful', '||right_parentheses||', 'like', 'my', "wife's", 'ugly', 'sister', '||period||', '||return|', 'barney_gumble:', 'wheel', 'her', 'in', '||comma||', 'homer', '||period||', "i'm", 'not', 'a', 'picky', 'man', '||period||', '||left_parentheses||', 'burp', '||right_parentheses||', '||return|', 'barney_gumble:', 'and', 'then', 'when', 'i', 'got', 'out', 'of', 'the', 'service', '||comma||', 'well', '||comma||', 'the', 'next', 'few', 'years', 'are', 'a', 'blur', '||period||', '||return|', 'selma_bouvier:', 'patty', '||period||', "where's", 'skinner', '||question_mark||', '||return|', 'patty_bouvier:', 'we', 'decided', 'we', 'loved', 'each', 'other', 'enough', 'never', 'to', 'see', 'each', 'other', 'again', '||exclamation_mark||', '||return|', 'selma_bouvier:', 'i', 'hope', 'i', 'can', 'find', 'a', 'man', 'like', 'that', '||period||', '||left_parentheses||', 'thinks', 'a', 'beat', '||right_parentheses||', 'patty', '||comma||', 'are', 'you', 'throwing', 'away', 'your', 'last', 'chance', 'at', 'happiness', 'just', 'for', 'me', '||question_mark||', '||return|', 'patty_bouvier:', 'yes', '||period||', '||return|', 'selma_bouvier:', 'thanks', '||period||', '||return|', 'patty_bouvier:', 'now', "let's", 'get', 'some', 'pancakes', '||period||', '||return|', 'selma_bouvier:', 'listen', 'barney', '||comma||', 'i', '||period||', '||period||', '||period||', '||left_parentheses||', 'disdainful', '||right_parentheses||', 'eh', '||period||', '||return|', 'barney_gumble:', 'she', 'broke', 'my', 'heart', '||comma||', 'moe', '||period||', '||return|', 'moe_szyslak:', "don't", 'worry', '||comma||', 'barney', '||period||', 'time', 'heals', 'all', 'wounds', '||period||', '||return|', 'barney_gumble:', 'well', '||comma||', 'what', 'do', 'you', 'know', '||period||', "you're", 'right', '||exclamation_mark||', 'and', 'look', '||comma||', 'a', 'whole', 'pitcher', 'to', 'myself', '||period||']
Counter({'||period||': 6024, '||return|': 4518, '||comma||': 3574, '||left_parentheses||': 1550, '||right_parentheses||': 1549, 'the': 1302, 'i': 1275, 'you': 1251, '||exclamation_mark||': 1242, 'moe_szyslak:': 1180, '||question_mark||': 1100, 'a': 1059, 'homer_simpson:': 975, 'to': 938, 'and': 631, 'of': 488, 'my': 474, 'it': 465, 'that': 441, 'in': 432, '||quotation_mark||': 418, 'me': 412, 'is': 376, 'this': 373, "i'm": 334, 'for': 327, 'your': 324, 'homer': 307, 'on': 289, 'hey': 289, 'moe': 273, 'oh': 272, 'no': 261, 'lenny_leonard:': 247, 'what': 246, 'with': 235, 'yeah': 233, 'all': 231, 'just': 218, 'like': 214, 'but': 213, 'barney_gumble:': 207, 'so': 205, 'be': 204, 'here': 196, 'carl_carlson:': 194, "don't": 193, 'have': 192, 'up': 188, "it's": 188, 'well': 186, 'out': 185, 'do': 180, 'was': 179, 'got': 176, 'are': 175, 'get': 175, 'we': 172, 'uh': 168, "that's": 168, 'one': 164, "you're": 158, 'not': 156, 'now': 156, 'can': 155, 'know': 155, '||dash||': 151, 'at': 145, 'right': 144, '/': 135, 'how': 132, 'if': 125, 'back': 119, 'marge_simpson:': 117, 'about': 115, 'he': 112, 'from': 112, 'go': 110, 'gonna': 107, 'there': 105, 'they': 105, 'beer': 100, 'good': 98, 'who': 97, 'an': 94, 'man': 93, 'okay': 91, 'little': 90, 'his': 90, 'as': 89, 'some': 88, "can't": 87, 'then': 87, 'never': 85, "i'll": 84, 'think': 84, 'come': 84, 'could': 83, 'him': 81, "i've": 81, 'see': 80, 'want': 80, 'really': 80, 'look': 80, 'too': 79, 'guys': 78, 'been': 78, 'when': 77, 'make': 77, 'why': 76, 'ya': 75, 'bar': 75, 'her': 74, 'did': 73, 'time': 72, 'say': 72, 'ah': 71, 'or': 71, 'gotta': 71, 'marge': 71, 'take': 70, 'into': 68, 'love': 68, 'down': 68, 'more': 67, 'our': 65, 'am': 64, 'off': 64, 'guy': 63, 'sure': 62, 'barney': 60, 'two': 60, "there's": 59, 'thing': 58, 'lisa_simpson:': 57, 'would': 57, "we're": 56, 'where': 55, "he's": 55, 'had': 55, 'big': 55, 'tell': 55, 'let': 55, 'need': 55, 'money': 54, 'drink': 53, 'bart_simpson:': 53, "what's": 53, 'sorry': 53, 'over': 53, 'us': 53, 'something': 53, 'only': 51, 'ever': 51, 'by': 51, 'day': 50, 'will': 50, 'way': 50, 'wait': 49, 'she': 48, 'chief_wiggum:': 48, 'give': 47, 'even': 47, 'huh': 46, 'new': 46, "i'd": 46, 'god': 46, "didn't": 45, "ain't": 45, 'those': 45, 'great': 44, 'people': 44, 'phone': 42, "moe's": 42, 'eh': 42, 'has': 42, 'life': 42, 'much': 42, 'maybe': 42, 'lenny': 42, 'were': 42, 'than': 41, 'going': 41, 'mean': 41, 'place': 40, 'these': 39, 'should': 39, 'mr': 39, 'around': 39, "you've": 39, 'better': 39, 'wanna': 39, 'still': 39, 'help': 38, 'friend': 38, 'old': 38, 'home': 38, "'em": 38, 'name': 37, 'please': 37, 'night': 37, 'before': 37, 'noise': 37, 'last': 36, 'whoa': 36, 'tv': 36, 'aw': 36, 'seymour_skinner:': 36, 'boy': 35, 'face': 35, 'any': 35, 'made': 35, 'hello': 34, 'call': 34, 'thanks': 34, 'duff': 34, 'three': 34, 'drunk': 34, 'put': 34, "'cause": 34, 'listen': 33, 'their': 33, 'looking': 33, 'car': 33, 'bad': 33, 'again': 33, 'first': 32, 'very': 32, "let's": 32, 'best': 32, 'does': 31, 'wow': 31, 'yes': 31, 'another': 30, 'looks': 30, 'every': 30, 'ooh': 30, 'while': 30, 'them': 30, 'kent_brockman:': 30, 'said': 30, 'work': 29, 'wife': 29, 'other': 29, 'guess': 29, 'apu_nahasapeemapetilon:': 29, 'dad': 28, 'sweet': 28, "won't": 28, 'play': 28, 'feel': 28, 'tonight': 28, 'years': 28, 'singing': 28, 'springfield': 28, 'thought': 27, 'sobs': 27, 'everybody': 27, 'find': 27, 'voice': 27, "they're": 27, 'after': 27, 'dr': 27, 'things': 26, 'buy': 26, 'kids': 26, 'might': 26, 'check': 25, 'nice': 25, 'keep': 25, 'happy': 25, 'minute': 25, 'girl': 25, 'since': 25, 'head': 25, 'because': 25, 'shut': 25, 'show': 25, 'beat': 25, 'world': 25, 'sighs': 24, 'use': 24, 'bart': 24, "who's": 24, 'lisa': 24, 'sings': 24, 'chuckle': 24, 'friends': 24, 'always': 24, "isn't": 23, "you'll": 23, 'stupid': 23, 'kid': 23, 'c': 23, 'someone': 23, 'krusty_the_clown:': 23, 'ow': 23, 'which': 23, 'carl': 23, 'seen': 22, 'lot': 22, 'remember': 22, 'hundred': 22, 'anything': 22, 'laugh': 22, "here's": 22, 'talk': 22, 'job': 21, 'chuckles': 21, 'next': 21, 'glass': 21, 'through': 21, 'hell': 21, 'thank': 21, 'simpson': 21, 'laughs': 21, 'matter': 20, 'pretty': 20, 'five': 20, 'lost': 20, 'house': 20, 'says': 20, 'away': 20, 'hear': 20, 'long': 20, 'outta': 20, 'kind': 20, "nothin'": 20, 'hope': 20, 'woman': 20, 'happened': 20, 'believe': 20, 'tavern': 19, 'nervous': 19, 'once': 19, 'four': 19, 'family': 19, 'turn': 19, "c'mon": 19, '_montgomery_burns:': 19, 'waylon_smithers:': 19, 'book': 19, 'comes': 19, 'real': 19, 'wish': 19, "homer's": 19, 'stop': 19, 'ned_flanders:': 19, 'fat': 19, 'actually': 18, 'business': 18, 'myself': 18, 'idea': 18, 'ask': 18, 'game': 18, 'grampa_simpson:': 18, "goin'": 18, 'wants': 18, 'wrong': 18, "doin'": 18, 'used': 17, 'loud': 17, 'today': 17, 'party': 17, 'enough': 17, 'nobody': 17, 'burns': 17, "we've": 17, 'done': 17, 'problem': 17, 'town': 17, "comin'": 17, 'getting': 17, 'many': 17, "wouldn't": 17, "she's": 17, 'duffman:': 17, 'must': 17, 'everything': 17, 'hold': 16, 'doing': 16, 'free': 16, 'watch': 16, 'sounds': 16, 'try': 16, 'reading': 16, 'dollars': 16, 'na': 16, 'um': 16, 'bucks': 16, 'maggie': 16, 'took': 16, 'true': 16, 'thinking': 16, 'nah': 16, 'gee': 16, 'woo': 16, 'sound': 16, 'sell': 15, 'excuse': 15, 'makes': 15, 'everyone': 15, 'daughter': 15, 'secret': 15, 'stuff': 15, "where's": 15, 'chief': 15, 'gimme': 15, 'care': 15, 'wanted': 15, 'leave': 15, 'baby': 15, 'pay': 15, 'under': 15, 'most': 15, 'pants': 15, 'yourself': 15, 'beautiful': 15, 'canyonero': 15, 'being': 15, 'edna': 15, 'kill': 15, 'kemi:': 15, 'pick': 14, 'own': 14, 'mouth': 14, 'pal': 14, 'tough': 14, 'tipsy': 14, 'quickly': 14, 'left': 14, 'worry': 14, 'smithers': 14, 'went': 14, 'knew': 14, 'points': 14, 'save': 14, 'dead': 14, "you'd": 14, 'hurt': 14, 'dinner': 14, 'sad': 14, 'school': 13, 'tomorrow': 13, 'till': 13, 'hoo': 13, 'drinking': 13, 'hate': 13, 'sign': 13, 'fine': 13, 'hi': 13, 'quit': 13, 'feeling': 13, 'win': 13, 'heard': 13, 'dog': 13, 'die': 13, 'camera': 13, 'told': 13, 'excited': 13, 'skinner': 13, 'funny': 13, 'gave': 13, 'break': 13, 'eyes': 13, 'came': 13, 'ladies': 13, 'saw': 13, 'gets': 13, 'booze': 13, 'forget': 12, "couldn't": 12, 'alcohol': 12, 'easy': 12, 'flaming': 12, 'without': 12, 'fire': 12, 'million': 12, "aren't": 12, 'calling': 12, 'eat': 12, 'sir': 12, 'loves': 12, 'barflies:': 12, 'twenty': 12, 'hand': 12, 'seven': 12, 'nuts': 12, 'super': 12, 'krusty': 12, 'clean': 12, 'gone': 12, 'gasp': 12, 'loser': 12, 'date': 12, 'mad': 12, 'hands': 12, 'anyone': 12, 'jacques:': 12, 'cash': 12, 'kinda': 12, 'bring': 12, 'fight': 12, 'room': 12, 'kirk_van_houten:': 12, 'drive': 12, 'surprised': 12, 'burn': 12, 'mom': 12, 'noises': 12, 'small': 12, 'read': 12, 'artie_ziff:': 12, 'meet': 11, 'problems': 11, 'door': 11, 'happen': 11, "wasn't": 11, 'high': 11, 'behind': 11, 'cut': 11, 'called': 11, "lookin'": 11, "haven't": 11, 'course': 11, 'anyway': 11, "talkin'": 11, 'low': 11, "we'll": 11, 'trouble': 11, "doesn't": 11, 'coming': 11, 'sadly': 11, 'each': 11, 'six': 11, 'seymour': 11, 'gentlemen': 11, 'geez': 11, 'turns': 11, "y'know": 11, "somethin'": 11, 'chance': 11, 'tape': 11, 'already': 11, "drinkin'": 11, 'bartender': 11, 'professor_jonathan_frink:': 11, 'upset': 11, 'dear': 11, 'self': 10, "it'll": 10, 'end': 10, 'ugly': 10, 'machine': 10, 'eye': 10, 'larry:': 10, 'works': 10, 'fun': 10, 'disgusted': 10, 'hot': 10, 'bottle': 10, 'realizing': 10, 'sing': 10, 'song': 10, 'wiggum': 10, 'hours': 10, 'start': 10, 'moan': 10, 'outside': 10, 'mmmm': 10, 'sigh': 10, 'throat': 10, 'steal': 10, 'uh-oh': 10, 'heart': 10, 'close': 10, "gettin'": 10, 'blame': 10, 'trying': 10, 'change': 10, 'war': 10, 'dump': 10, 'whatever': 10, 'snake_jailbird:': 10, 'stay': 10, 'learn': 10, 'live': 10, 'stand': 10, 'lady': 10, 'keys': 10, 'least': 10, 'm': 10, 'spend': 10, 'crazy': 10, 'whole': 10, 'straight': 10, 'quiet': 10, 'talking': 10, ':': 10, 'watching': 10, 'worried': 10, 'worse': 10, 'the_rich_texan:': 10, 'bar_rag:': 10, 'barflies': 9, 'lousy': 9, 'butt': 9, 'less': 9, 'ten': 9, 'late': 9, 'learned': 9, 'drinks': 9, 'probably': 9, 'such': 9, 'stick': 9, 'perfect': 9, 'greatest': 9, 'shocked': 9, 'private': 9, 'playing': 9, 'may': 9, 'blue': 9, 'anymore': 9, 'goodbye': 9, 'bowl': 9, "'bout": 9, 'special': 9, 'poor': 9, 'light': 9, 'joe': 9, 'second': 9, 'thinks': 9, 'year': 9, 'girls': 9, 'morning': 9, 'gasps': 9, "shouldn't": 9, 'pull': 9, 'thousand': 9, 'soon': 9, 'times': 9, 'ma': 9, 'apu': 9, 'police': 9, 'crowd:': 9, 'person': 9, 'far': 9, 'alive': 9, 'married': 9, 'marriage': 9, 'air': 9, 'heh': 9, 'bit': 9, 'turned': 9, 'young': 9, 'mother': 9, 'either': 9, 'front': 9, 'else': 9, 'whip': 9, 'point': 9, 'annoyed': 9, 'tsk': 9, 'delete': 9, 'anybody': 8, 'store': 8, 'kick': 8, 'cool': 8, 'moron': 8, 'minutes': 8, 'buddy': 8, 'open': 8, 'picture': 8, 'goes': 8, 'uh-huh': 8, 'couple': 8, 'found': 8, 'blood': 8, 'boys': 8, 'letter': 8, 'nothing': 8, 'lucky': 8, 'smell': 8, 'feet': 8, 'taking': 8, 'both': 8, 'turning': 8, 'eight': 8, 'miss': 8, 'walk': 8, 'join': 8, 'president': 8, 'ticket': 8, 'later': 8, "how'd": 8, 'king': 8, 'knows': 8, 'lemme': 8, 'jacques': 8, 'ass': 8, 'throw': 8, 'serious': 8, 'box': 8, 'shot': 8, 'mayor_joe_quimby:': 8, 'beers': 8, 'barn': 8, 'tab': 8, 'exactly': 8, 'boxing': 8, 'yet': 8, 'nods': 8, 'duffman': 8, 'card': 8, 'christmas': 8, 'angry': 8, 'agnes_skinner:': 8, 'american': 8, 'arm': 8, 'rev': 8, 'pig': 8, 'shotgun': 8, 'mind': 8, 'alone': 8, 'instead': 8, 'fifty': 8, 'patty_bouvier:': 8, 'youse': 8, 'goodnight': 8, 'days': 7, 'somebody': 7, 'proudly': 7, 'kiss': 7, 'top': 7, 'number': 7, 'full': 7, 'dry': 7, 'food': 7, 'collette:': 7, 'warmly': 7, 'ahh': 7, 'plant': 7, 'friendly': 7, 'english': 7, 'saying': 7, 'mrs': 7, 'paint': 7, 'hide': 7, 'afraid': 7, 'accident': 7, 'black': 7, 'using': 7, 's': 7, 'deal': 7, 'ready': 7, 'amazed': 7, 'rummy': 7, 'dance': 7, 'eggs': 7, 'walking': 7, 'nine': 7, 'welcome': 7, 'o': 7, 'damn': 7, "he'll": 7, 'together': 7, '||semicolon||': 7, 'fellas': 7, 'alright': 7, 'send': 7, 'wire': 7, 'etc': 7, 'forever': 7, 'plus': 7, 'seems': 7, 'advice': 7, 'ned': 7, 'butts': 7, 'huge': 7, 'story': 7, 'ball': 7, 'himself': 7, 'favorite': 7, 'intrigued': 7, 'happier': 7, 'making': 7, 'table': 7, 'hang': 7, 'broke': 7, 'sotto': 7, 'crap': 7, 'move': 7, 'finally': 7, 'lucius:': 7, 'though': 7, 'return': 7, 'word': 7, 'ha': 7, 'hmm': 7, 'sitting': 7, 'fast': 7, 'weird': 7, 'scared': 7, 'grampa': 7, 'son': 7, 'news': 7, 'cold': 7, 'terrible': 7, 'smile': 7, 'words': 7, "makin'": 7, 'run': 7, 'screw': 7, 'city': 7, 'renee:': 7, 'pour': 7, 'round': 7, 'channel': 7, 'telling': 7, 'losers': 7, 'japanese': 7, 'tap': 7, 'glove': 7, 'la': 7, 'inside': 7, 'seat': 7, 'human': 7, "ol'": 7, 'comic_book_guy:': 7, 'moans': 7, "kiddin'": 7, 'glad': 7, 'horrible': 7, 'homie': 7, 'peanuts': 7, 'young_marge:': 7, 'selma_bouvier:': 7, 'street': 7, 'means': 7, 'narrator:': 7, 'warm_female_voice:': 7, 'ice': 6, 'normal': 6, 'belch': 6, 'dunno': 6, 'honest': 6, 'gumbel': 6, 'milk': 6, 'smells': 6, 'laughing': 6, 'music': 6, 'tip': 6, 'seconds': 6, 'early': 6, 'half': 6, 'slow': 6, 'forgot': 6, 'invented': 6, 'harv:': 6, 'fill': 6, 'eating': 6, 'thirty': 6, 'power': 6, 'company': 6, 'bet': 6, 'hair': 6, 'sent': 6, 'denver': 6, 'ones': 6, 'football_announcer:': 6, 'class': 6, 'won': 6, 'star': 6, 'state': 6, 'uncle': 6, 'stool': 6, 'sick': 6, 'along': 6, 'takes': 6, 'holding': 6, 'lying': 6, 'tinkle': 6, 'gives': 6, 'desperate': 6, 'holds': 6, '_julius_hibbert:': 6, 'except': 6, 'honey': 6, 'principal': 6, 'nigel_bakerbutcher:': 6, 'group': 6, 'joey': 6, 'worst': 6, 'flanders': 6, 'hit': 6, 'al': 6, 'romantic': 6, 'birthday': 6, 'shall': 6, 'pass': 6, 'men': 6, 'admit': 6, 'dangerous': 6, 'brought': 6, 'charge': 6, 'hard': 6, 'write': 6, 'fall': 6, 'bitter': 6, 'lives': 6, 'touched': 6, 'impressed': 6, 'sex': 6, 'strong': 6, 'sips': 6, 'fat_tony:': 6, 'tony': 6, 'set': 6, "we'd": 6, 'heaven': 6, 'same': 6, 'giving': 6, 'health': 6, 'kent': 6, 'truth': 6, 'bag': 6, 'hank_williams_jr': 6, 'crack': 6, 'treasure': 6, 'plan': 6, 'rat': 6, "sayin'": 6, "that'll": 6, 'szyslak': 6, 'mister': 6, 'week': 6, 'lowers': 6, 'loved': 6, 'supposed': 6, 'tune': 6, 'slap': 6, 'across': 6, 'plastic': 6, 'dumb': 6, 'baseball': 6, 'quick': 6, 'became': 6, 'jukebox': 6, 'gold': 6, 'manjula_nahasapeemapetilon:': 6, 'water': 6, 'safe': 6, 'health_inspector:': 6, 'numbers': 6, 'maya:': 6, 'bow': 6, 'lou:': 6, 'walther_hotenhoffer:': 6, 'omigod': 6, 'princess': 6, 'young_homer:': 6, 'mike': 5, 'catch': 5, "how's": 5, "he'd": 5, 'speech': 5, 'little_man:': 5, 'closed': 5, 'wallet': 5, 'wrote': 5, 'grand': 5, 'troll': 5, 'invited': 5, 'government': 5, 'joint': 5, 'club': 5, 'cutting': 5, 'service': 5, 'quietly': 5, 'movie': 5, 'doubt': 5, 'accent': 5, 'nein': 5, 'speaking': 5, 'bee': 5, 'pop': 5, 'treat': 5, 'wonderful': 5, 'games': 5, 'fellow': 5, 'cheer': 5, 'yea': 5, 'coaster': 5, 'sunday': 5, 'luck': 5, 'jack': 5, 'cop': 5, 'dallas': 5, 'short': 5, 'shirt': 5, 'lord': 5, 'asked': 5, 'offended': 5, 'wha': 5, "smokin'_joe_frazier:": 5, 'cleaned': 5, 'piece': 5, 'felt': 5, "lisa's": 5, 'clown': 5, 'announcer:': 5, 'testing': 5, 'shaking': 5, 'glasses': 5, "callin'": 5, 'pipe': 5, 'red': 5, 'cost': 5, 'wall': 5, 'center': 5, 'all:': 5, 'represent': 5, 'ago': 5, 'chanting': 5, 'ad': 5, 'handsome': 5, 'sharps': 5, 'named': 5, 'names': 5, 'swear': 5, 'hospital': 5, 'children': 5, 'rest': 5, 'strap': 5, 'fingers': 5, 'suddenly': 5, 'man:': 5, 'puzzled': 5, 'brilliant': 5, 'soul': 5, 'saved': 5, 'pool': 5, 'local': 5, 'daddy': 5, 'dank': 5, 'ashamed': 5, 'side': 5, 'customers': 5, 'disappointed': 5, 'hated': 5, 'horrified': 5, 'tongue': 5, 'window': 5, 'until': 5, 'truck': 5, 'selma': 5, 'owe': 5, 'dude': 5, 'wonder': 5, "tellin'": 5, 'punch': 5, 'jeez': 5, 'yep': 5, 'empty': 5, 'biggest': 5, 'tired': 5, 'drederick': 5, 'against': 5, 'changing': 5, 'evening': 5, 'clears': 5, 'favor': 5, 'hanging': 5, 'gay': 5, 'deer': 5, 'designated': 5, 'writing': 5, 'beloved': 5, 'wine': 5, 'suit': 5, 'confused': 5, 'french': 5, 'having': 5, 'during': 5, 'clear': 5, 'sober': 5, 'longer': 5, 'chug': 5, 'jar': 5, 'brockman': 5, 'absolutely': 5, "drivin'": 5, 'wheel': 5, 'driving': 5, 'part': 5, 'park': 5, 'i-i': 5, 'unless': 5, 'hopeful': 5, 'stunned': 5, 'also': 5, "world's": 5, 'running': 5, 'broad': 5, 'filthy': 5, 'dame': 5, 'boring': 5, 'totally': 5, 'none': 5, 'surgery': 5, 'survive': 5, "tryin'": 5, 'mayor': 5, "workin'": 5, 'isotopes': 5, 'lose': 5, 'detective_homer_simpson:': 5, 'exasperated': 5, "guy's": 5, 'act': 5, 'needs': 5, 'given': 5, 'counting': 5, 'caught': 5, 'cow': 5, 'college': 5, 'p': 5, 'fish': 5, 'women': 5, 'third': 5, 'mine': 5, 'lessons': 5, 'x': 5, 'few': 5, 'thumb': 5, 'dying': 5, 'stories': 5, 'speak': 5, 'beach': 5, 'bed': 5, 'artie': 5, 'billy_the_kid:': 5, 'bank': 5, 'jerks': 5, 'proud': 5, "one's": 5, "sittin'": 5, 'sauce': 5, 'suicide': 5, 'duh': 5, 'edna_krabappel-flanders:': 5, 'sob': 5, 'rope': 5, "i'm-so-stupid": 5, 'america': 5, 'mouse': 5, 'pity': 5, 'nineteen': 5, 'african': 5, 'nuclear': 5, 'calm': 5, '_zander:': 5, 'tree': 5, 'lloyd:': 5, '_hooper:': 5, 'glen:': 5, 'bender:': 5, 'adult_bart:': 5, 'tv_wife:': 5, 'tv_husband:': 5, 'rotch': 4, 'cares': 4, 'sits': 4, 'follow': 4, 'bars': 4, 'chocolate': 4, 'usually': 4, 'closing': 4, 'pulled': 4, 'hurry': 4, 'fifteen': 4, 'gin': 4, 'hits': 4, 'spot': 4, 'smiling': 4, "everyone's": 4, 'feels': 4, 'pitcher': 4, 'amazing': 4, 'offer': 4, 'minimum': 4, 'restaurant': 4, 'dollar': 4, 'ingredient': 4, 'career': 4, 'market': 4, 'stock': 4, 'hans:': 4, "o'problem": 4, 'calls': 4, 'embarrassed': 4, "today's": 4, 'nose': 4, 'domestic': 4, 'pointed': 4, 'weekly': 4, 'sarcastic': 4, 'belches': 4, 'forty': 4, 'ruined': 4, 'ourselves': 4, 'original': 4, 'situation': 4, 'almost': 4, 'field': 4, 'buffalo': 4, 'pit': 4, 'pickled': 4, 'couch': 4, 'heavyweight': 4, 'championship': 4, 'whee': 4, 'father': 4, 'beauty': 4, 'amanda': 4, 'huggenkiss': 4, 'ivana': 4, 'plow': 4, 'teenage_barney:': 4, 'hero': 4, 'starts': 4, 'answer': 4, 'enjoy': 4, 'yesterday': 4, 'fridge': 4, 'agent': 4, 'island': 4, 'sly': 4, 'adeleine': 4, 'scream': 4, 'question': 4, 'arrest': 4, "what'll": 4, 'knock': 4, 'figured': 4, 'stillwater:': 4, 'respect': 4, 'fbi': 4, 'hm': 4, 'teach': 4, 'professional': 4, 'snake': 4, 'flower': 4, 'clothes': 4, 'polite': 4, 'tail': 4, 'liver': 4, 'legs': 4, 'understand': 4, 'pulls': 4, 'line': 4, 'woman:': 4, 'meeting': 4, 'hugh:': 4, 'rather': 4, 'pub': 4, 'wear': 4, 'loaded': 4, 'sense': 4, 'different': 4, 'movies': 4, 'magic': 4, 'deep': 4, "they've": 4, 'ahead': 4, 'breath': 4, 'boat': 4, 'working': 4, 'kidding': 4, 'burp': 4, 'blow': 4, "livin'": 4, 'choice': 4, 'test': 4, 'opportunity': 4, 'rich': 4, 'brain': 4, 'train': 4, 'yard': 4, 'hungry': 4, 'match': 4, 'body': 4, 'tatum': 4, 'sit': 4, 'dramatic': 4, "buyin'": 4, 'bill': 4, 'twelve': 4, 'gas': 4, 'quite': 4, 'finger': 4, 'lie': 4, 'south': 4, 'fix': 4, 'whiny': 4, "o'clock": 4, 'drivers': 4, 'drug': 4, 'upbeat': 4, 'sold': 4, 'betty:': 4, 'explaining': 4, 'sexy': 4, 'dang': 4, 'started': 4, 'egg': 4, 'mug': 4, 'months': 4, 'chick': 4, 'threw': 4, 'stirring': 4, 'husband': 4, 'illegal': 4, 'cover': 4, 'folks': 4, "watchin'": 4, 'case': 4, 'sports': 4, 'smooth': 4, 'computer': 4, 'selling': 4, 'ride': 4, 'renee': 4, 'flowers': 4, 'girlfriend': 4, 'distraught': 4, 'pain': 4, 'sobbing': 4, 'raises': 4, 'arms': 4, 'stagy': 4, 'procedure': 4, 'able': 4, 'lips': 4, 'especially': 4, 'fan': 4, "who'll": 4, 'dennis_conroy:': 4, 'bottom': 4, 'road': 4, 'bye': 4, 'wally:': 4, 'flips': 4, 'character': 4, 'partner': 4, 'guns': 4, "valentine's": 4, 'amid': 4, 'yellow': 4, 'radishes': 4, 'u': 4, "bein'": 4, 'bald': 4, 'castle': 4, 'busy': 4, 're:': 4, 'seem': 4, 'jerk': 4, 'sincere': 4, 'precious': 4, 'burt': 4, 'garbage': 4, 'died': 4, "dad's": 4, 'whisper': 4, 'lotta': 4, 'secrets': 4, 'whaddaya': 4, 'sees': 4, 'pickle': 4, 'rob': 4, 'coat': 4, 'trip': 4, 'ooo': 4, 'band': 4, 'neck': 4, 'tom': 4, 'gotten': 4, 'buttons': 4, 'eleven': 4, 'cries': 4, 'awkward': 4, 'video': 4, 'billboard': 4, 'david_byrne:': 4, 'france': 4, 'sheepish': 4, 'address': 4, 'monster': 4, 'meaningful': 4, 'furious': 4, 'new_health_inspector:': 4, 'pipes': 4, 'needed': 4, 'moment': 4, 'ominous': 4, 'declan_desmond:': 4, 'sister': 4, 'milhouse_van_houten:': 4, 'forget-me-shot': 4, 'finding': 4, 'shows': 4, 'bees': 4, 'vance': 4, 'correct': 4, 'pleased': 4, 'cable': 4, 'babies': 4, 'clearly': 4, 'yap': 4, 'hoping': 4, 'thoughtful': 4, 'grim': 4, 'frustrated': 4, 'burps': 4, 'therapy': 4, 'foibles': 4, 'books': 4, 'twins': 4, 'rag': 4, 'keeps': 4, 'dan_gillick:': 4, 'ken:': 4, "carl's": 4, 'senator': 4, 'senators': 4, "moe's_thoughts:": 4, 'teenage_bart:': 4, 'eddie:': 4, 'lately': 3, 'puke': 3, 'struggling': 3, 'crummy': 3, 'tells': 3, 'spit': 3, "'til": 3, 'unison': 3, 'thoughts': 3, 'finished': 3, 'concerned': 3, 'burning': 3, 'hiya': 3, 'junior': 3, 'cigarette': 3, 'sucked': 3, 'harv': 3, 'cough': 3, 'its': 3, 'delicious': 3, 'noticing': 3, 'above': 3, 'expect': 3, 'accurate': 3, 'tips': 3, 'pardon': 3, 'idiot': 3, 'covering': 3, 'frankly': 3, 'kept': 3, 'k': 3, 'twenty-five': 3, 'become': 3, 'german': 3, 'fritz:': 3, 'buying': 3, 'brains': 3, 'crank': 3, "bart's": 3, 'lots': 3, "they'll": 3, 'cheap': 3, 'hug': 3, 'sniffs': 3, 'bowling': 3, 'gift': 3, 'bret:': 3, 'guest': 3, 'whose': 3, 'shares': 3, 'odd': 3, 'hates': 3, 'whatcha': 3, 'touchdown': 3, 'fork': 3, 'keeping': 3, 'careful': 3, 'prime': 3, 'palmerston': 3, 'elder': 3, 'pfft': 3, 'lottery': 3, 'sadistic_barfly:': 3, 'cents': 3, 'customer': 3, 'step': 3, 'holiday': 3, 'religion': 3, 'born': 3, 'tv_father:': 3, 'toss': 3, 'jack_larson:': 3, 'pageant': 3, 'age': 3, 'endorse': 3, 'puff': 3, "where'd": 3, 'stopped': 3, 'ruin': 3, 'sec': 3, 'shove': 3, 'mistake': 3, 'slip': 3, 'pathetic': 3, 'har': 3, 'ring': 3, 'checks': 3, 'pointing': 3, 'aside': 3, 'ordered': 3, 'dressed': 3, 'bus': 3, 'gal': 3, 'afternoon': 3, 'kwik-e-mart': 3, 'coney': 3, 'single': 3, 'darts': 3, "havin'": 3, 'pause': 3, '_babcock:': 3, 'higher': 3, 'reads': 3, 'sexual': 3, 'moments': 3, 'alley': 3, 'fault': 3, 'hmmm': 3, 'roll': 3, 'form': 3, 'register': 3, 'prank': 3, 'coffee': 3, 'label': 3, 'innocent': 3, 'double': 3, 'hurts': 3, 'loan': 3, 'leans': 3, 'fool': 3, 'covers': 3, 'crawl': 3, 'following': 3, 'celebrities': 3, 'consider': 3, 'imagine': 3, 'moved': 3, 'fumes': 3, 'oil': 3, 'exhaust': 3, 'gag': 3, 'stole': 3, 'killed': 3, 'understanding': 3, 'raising': 3, 'natural': 3, 'stools': 3, 'texas': 3, 'rid': 3, 'barney-shaped_form:': 3, 'snaps': 3, 'bright': 3, 'beginning': 3, 'cute': 3, 'evil': 3, '&': 3, 'exit': 3, 'midnight': 3, 'compliment': 3, "stinkin'": 3, 'glum': 3, 'salad': 3, 'complete': 3, "c'mere": 3, 'knocked': 3, 'bob': 3, 'fact': 3, 'cannot': 3, 'incredulous': 3, 'fans': 3, 'saturday': 3, 'parking': 3, 'general': 3, 'trust': 3, "could've": 3, 'stayed': 3, 'shape': 3, 'taken': 3, "gentleman's": 3, "barney's": 3, 'mafia': 3, 'crime': 3, 'indignant': 3, 'entire': 3, 'grow': 3, 'modern': 3, 'diet': 3, 'shoot': 3, 'enemy': 3, 'accept': 3, 'enemies': 3, 'list': 3, 'invite': 3, 'lonely': 3, 'singers:': 3, 'toward': 3, 'defensive': 3, 'walks': 3, 'snort': 3, 'mechanical': 3, 'suppose': 3, 'sometime': 3, 'fancy': 3, 'kissing': 3, 'per': 3, 'traffic': 3, 'peter': 3, 'pained': 3, 'extra': 3, 'cheers': 3, 'driver': 3, 'program': 3, 'inspector': 3, 'heads': 3, 'recommend': 3, 'severe': 3, 'checking': 3, 'showing': 3, 'fever': 3, 'spending': 3, 'switch': 3, 'casual': 3, 'rough': 3, 'pissed': 3, 'scene': 3, 'church': 3, 'threatening': 3, 'turkey': 3, 'scam': 3, 'jesus': 3, 'spinning': 3, 'pats': 3, "seein'": 3, 'toilet': 3, 'der': 3, 'crowd': 3, 'boo': 3, 'wide': 3, 'toasting': 3, 'order': 3, 'bunch': 3, 'pays': 3, 'law': 3, 'wasting': 3, 'corpses': 3, 'sleep': 3, 'screams': 3, 'aww': 3, 'seeing': 3, 'military': 3, 'hunter': 3, 'reminds': 3, 'panicky': 3, 'ridiculous': 3, 'campaign': 3, 'public': 3, "they'd": 3, 'focus': 3, 'knowing': 3, 'jolly': 3, 'upon': 3, 'edison': 3, 'played': 3, 'middle': 3, 'worked': 3, 'james': 3, 'hole': 3, 'corner': 3, 'summer': 3, 'operation': 3, 'comfortable': 3, 'inspection': 3, 'season': 3, 'grunt': 3, 'wooooo': 3, 'history': 3, 'team': 3, 'grabbing': 3, 'root': 3, 'spanish': 3, 'weeks': 3, 'coach:': 3, "wife's": 3, 'leg': 3, 'grabs': 3, 'peace': 3, 'toys': 3, 'changed': 3, 'international': 3, 'who-o-oa': 3, 'hour': 3, 'men:': 3, "men's": 3, 'hilarious': 3, 'frink': 3, 'paying': 3, 'searching': 3, 'embarrassing': 3, 'past': 3, 'challenge': 3, 'tears': 3, 'cocktail': 3, 'stadium': 3, 'finest': 3, 'license': 3, 'ho': 3, 'dynamite': 3, 'rub': 3, 'grunts': 3, 'chinese': 3, 'uncomfortable': 3, 'helicopter': 3, 'sweetly': 3, 'fly': 3, 'suck': 3, 'film': 3, 'fireball': 3, 'mudflap': 3, "ridin'": 3, 'teeth': 3, 'closer': 3, 'happily': 3, '_timothy_lovejoy:': 3, 'chest': 3, 'popular': 3, 'directions': 3, 'bought': 3, 'tried': 3, 'wearing': 3, 'delighted': 3, 'button': 3, 'future': 3, 'drunks': 3, 'serve': 3, 'spoken': 3, 'thankful': 3, 'looked': 3, 'ancient': 3, 'losing': 3, 'lindsay_naegle:': 3, 'teenage': 3, 'ohmygod': 3, 'uneasy': 3, "i-i'm": 3, 'terrified': 3, 'scum': 3, 'afford': 3, 'anniversary': 3, 'feed': 3, 'ã€': 3, 'starting': 3, "robbin'": 3, 'banks': 3, 'fair': 3, 'backwards': 3, 'rats': 3, 'staying': 3, 'death': 3, 'andy': 3, 'mock': 3, 'flatly': 3, 'sisters': 3, 'subject': 3, 'likes': 3, 'peach': 3, 'miserable': 3, 'jump': 3, 'dive': 3, 'bless': 3, 'attention': 3, 'paris': 3, 'cards': 3, 'ziffcorp': 3, 'sec_agent_#1:': 3, 'fraud': 3, 'perhaps': 3, 'ground': 3, 'jail': 3, 'ran': 3, "kids'": 3, 'gary_chalmers:': 3, 'dancing': 3, 'wiener': 3, 'vomit': 3, 'bike': 3, 'floor': 3, 'glen': 3, 'breaking': 3, 'british': 3, 'letters': 3, 'clone': 3, 'tradition': 3, 'push': 3, 'vegas': 3, 'system': 3, 'bar-boy': 3, 'foot': 3, 'motel': 3, 'awful': 3, 'child': 3, 'yee-haw': 3, 'workers': 3, 'then:': 3, 'clientele': 3, 'army': 3, 'milhouse': 3, 'greystash': 3, 'dirt': 3, 'doors': 3, 'size': 3, 'reason': 3, 'feelings': 3, 'mel': 3, 'bite': 3, 'powerful': 3, 'wipe': 3, 'image': 3, 'pockets': 3, 'share': 3, 'jamaican': 3, 'l': 3, "lenny's": 3, 'midge': 3, 'gently': 3, 'unlike': 3, 'meant': 3, 'sniffles': 3, 'election': 3, 'al_gore:': 3, 'nobel': 3, 'sadder': 3, 'yo': 3, 'unlucky': 3, 'somewhere': 3, 'met': 3, 'relax': 3, 'anguished': 3, 'talk-sings': 3, 'tastes': 3, 'kang:': 3, "year's": 3, 'bitterly': 3, 'woo-hoo': 3, 'cameras': 3, 'nards': 3, 'gary:': 3, 'fourth': 3, 'scotch': 3, 'drop': 3, 'weak': 3, 'opening': 3, '_kissingher:': 3, 'text': 3, 'f': 3, 'hall': 3, 'wayne:': 3, 'nation': 3, 'kermit': 3, 'belly': 3, 'despite': 3, 'r': 3, 'theater': 3, 'twenty-two': 3, 'sixty-nine': 3, 'source': 3, 'brother': 3, 'book_club_member:': 3, 'literature': 3, 'troy:': 3, 'pocket': 3, 'marvin': 3, 'carve': 2, 'effervescent': 2, 'social': 2, 'vote': 2, 'corkscrew': 2, 'folk': 2, 'neat': 2, 'tick': 2, 'effects': 2, 'trick': 2, 'judge': 2, 'mumbling': 2, 'closes': 2, 'smoothly': 2, 'gum': 2, 'satisfaction': 2, 'payments': 2, 'distributor': 2, 'spent': 2, 'tester': 2, 'gums': 2, "bartender's": 2, 'brightening': 2, 'homers': 2, 'syrup': 2, 'knife': 2, 'doll': 2, 'charm': 2, 'lighting': 2, "tester's": 2, 'busted': 2, 'barkeep': 2, 'bartenders': 2, 'barf': 2, 'measurements': 2, 'benefits': 2, 'prefer': 2, 'hired': 2, "shan't": 2, 'regret': 2, 'genius': 2, 'mcstagger': 2, 'successful': 2, 'sale': 2, 'yours': 2, 'compliments': 2, 'aerosmith': 2, 'refund': 2, 'henry': 2, 'reserve': 2, 'swill': 2, 'ech': 2, 'interested': 2, 'owner': 2, 'confident': 2, '100': 2, 'awwww': 2, 'bucket': 2, 'conspiratorial': 2, 'teddy': 2, 'bear': 2, 'beneath': 2, 'seek': 2, 'bears': 2, 'blend': 2, 'greedy': 2, 'sector': 2, 'recently': 2, 'shaken': 2, 'recall': 2, 'inspire': 2, 'peanut': 2, 'slyly': 2, 'pleasure': 2, 'thirteen': 2, 'studio': 2, 'apartment': 2, 'listening': 2, 'deeply': 2, 'victory': 2, 'bread': 2, 'bets': 2, 'troy': 2, 'troy_mcclure:': 2, 'bret': 2, 'handle': 2, 'retired': 2, 'comedy': 2, "buffalo's": 2, 'excellent': 2, 'riding': 2, 'whistles': 2, 'dan': 2, 'wins': 2, 'aggravated': 2, 'teams': 2, 'cowboys': 2, 'clock': 2, 'cars': 2, "maggie's": 2, 'handing': 2, 'minister': 2, 'wade_boggs:': 2, 'jumps': 2, 'poking': 2, "showin'": 2, 'gals': 2, 'fudd': 2, 'miles': 2, 'finishing': 2, 'dryer': 2, 'feast': 2, 'snake-handler': 2, 'prove': 2, 'laramie': 2, 'cigarettes': 2, 'prohibit': 2, 'smoke': 2, 'product': 2, '250': 2, 'animals': 2, '_powers:': 2, 'standards': 2, 'b': 2, 'sausage': 2, 'ah-ha': 2, 'sooner': 2, 'linda': 2, 'project': 2, 'snow': 2, "fallin'": 2, 'prayer': 2, 'wave': 2, 'yoo': 2, 'cheery': 2, 'sack': 2, 'chilly': 2, 'willy': 2, 'appear': 2, 'remembered': 2, 'snap': 2, 't-shirt': 2, 'plum': 2, 'deserve': 2, 'civic': 2, 'ragtime': 2, 'isle': 2, 'babe': 2, 'village': 2, 'tenor:': 2, 'paid': 2, 'lib': 2, 'remains': 2, 'witty': 2, 'served': 2, 'cops': 2, 'andalay': 2, 'sometimes': 2, 'based': 2, 'realize': 2, 'insightful': 2, 'code': 2, 'cueball': 2, 'clinton': 2, 'tang': 2, "it'd": 2, 'nasa': 2, 'astronaut': 2, 'shrugging': 2, 'rap': 2, 'advantage': 2, 'generous': 2, 'pin': 2, 'cola': 2, 'forbidden': 2, 'present': 2, 'entirely': 2, 'bold': 2, 'teacher': 2, 'sugar': 2, 'pleading': 2, 'pulling': 2, 'ohh': 2, 'greetings': 2, 'giggles': 2, 'advance': 2, 'gosh': 2, 'bash': 2, 'poet': 2, 'alcoholic': 2, 'large': 2, 'pouring': 2, 'honored': 2, 'virtual': 2, 'inflated': 2, 'self-esteem': 2, 'male_inspector:': 2, 'detecting': 2, 'rage': 2, 'reasons': 2, 'writers': 2, 'alfalfa': 2, 'murmur': 2, 'hollywood': 2, 'restaurants': 2, 'pressure': 2, 'inspired': 2, 'memories': 2, 'blew': 2, 'pad': 2, 'stinks': 2, 'ahhh': 2, 'rolling': 2, 'wondering': 2, 'ringing': 2, 'ye': 2, 'jebediah': 2, 'cutie': 2, 'bums': 2, 'angel': 2, 'blood-thirsty': 2, 'pirate': 2, 'jubilant': 2, 'waylon': 2, 'delivery': 2, 'forward': 2, 'darkest': 2, 'calculate': 2, 'results': 2, 'billion': 2, 'space': 2, 'considering': 2, 'freeze': 2, 'reasonable': 2, 'ha-ha': 2, 'themselves': 2, 'raise': 2, 'oof': 2, 'belt': 2, 'steak': 2, 'meal': 2, 'awe': 2, 'percent': 2, 'manage': 2, 'realized': 2, "hadn't": 2, 'boxer': 2, 'gorgeous': 2, "meanin'": 2, 'lucius': 2, 'famous': 2, 'don': 2, 'manager': 2, 'somehow': 2, 'row': 2, 'politics': 2, 'agreement': 2, 'fighting': 2, 'sandwich': 2, 'punches': 2, 'energy': 2, 'hobo': 2, 'nudge': 2, 'awed': 2, 'managing': 2, 'champ': 2, 'release': 2, 'weary': 2, 'rounds': 2, 'freak': 2, 'remembering': 2, 'fondly': 2, 'worth': 2, 'lover': 2, 'radio': 2, 'borrow': 2, 'granted': 2, 'helped': 2, 'built': 2, 'solid': 2, 'routine': 2, 'mate': 2, 'chum': 2, 'acquaintance': 2, 'quality': 2, 'fox_mulder:': 2, 'began': 2, 'discussing': 2, 'scully': 2, 'penny': 2, "money's": 2, 'asking': 2, 'mob': 2, 'steel': 2, 'broadway': 2, 'sodas': 2, 'neither': 2, 'christopher': 2, 'shooting': 2, 'bags': 2, 'hunting': 2, "patrick's": 2, 'kicked': 2, 'written': 2, 'crossed': 2, 'morose': 2, 'bam': 2, 'yelling': 2, 'love-matic': 2, 'peppy': 2, 'passed': 2, 'floated': 2, 'sweeter': 2, 'buried': 2, 'naked': 2, 'dismissive': 2, 'karaoke': 2, 'near': 2, 'expert': 2, 'spread': 2, 'germs': 2, 'cent': 2, 'caused': 2, 'pope': 2, 'reach': 2, 'draw': 2, 'costume': 2, 'labels': 2, 'straining': 2, 'conditioner': 2, 'sweetheart': 2, 'margarita': 2, 'planning': 2, 'vacation': 2, 'chase': 2, 'blues': 2, 'manjula': 2, "countin'": 2, 'freedom': 2, 'reaching': 2, 'bubbles': 2, 'ways': 2, "ma'am": 2, 'devastated': 2, 'grave': 2, 'mic': 2, 'products': 2, 'price': 2, 'cake': 2, 'churchill': 2, 'purse': 2, 'businessman_#1:': 2, 'firmly': 2, 'utility': 2, 'creeps': 2, 'roomy': 2, 'european': 2, 'plenty': 2, 'yogurt': 2, 'porn': 2, 'thoughtfully': 2, 'seats': 2, 'highway': 2, 'commission': 2, 'yards': 2, 'pride': 2, 'beam': 2, 'mail': 2, 'bride': 2, 'fabulous': 2, 'due': 2, 'roses': 2, 'kidney': 2, 'dropped': 2, 'dearest': 2, 'warily': 2, 'placing': 2, "town's": 2, 'charity': 2, 'railroad': 2, 'coward': 2, 'medicine': 2, 'sudden': 2, 'attack': 2, 'yell': 2, 'forgive': 2, 'puts': 2, 'joined': 2, 'joining': 2, 'although': 2, "pope's": 2, 'ironed': 2, 'blown': 2, 'involved': 2, 'agent_johnson:': 2, 'involving': 2, 'bush': 2, 'charlie': 2, 'lazy': 2, 'message': 2, 'seriously': 2, 'mop': 2, 'stands': 2, 'ocean': 2, 'bathing': 2, 'increasingly': 2, 'organ': 2, 'jockey': 2, 'grumpy': 2, 'crying': 2, "springfield's": 2, 'bigger': 2, 'cotton': 2, 'balls': 2, '6': 2, 'promised': 2, 'vodka': 2, 'gentleman:': 2, 'celebrity': 2, 'bubble': 2, 'brave': 2, 'deadly': 2, 'correcting': 2, 'scare': 2, 'eyeball': 2, 'catching': 2, 'mess': 2, 'bathroom': 2, 'all-star': 2, "'topes": 2, 'excitement': 2, 'inspiring': 2, "game's": 2, 'pitch': 2, 'director': 2, 'rumaki': 2, 'sports_announcer:': 2, 'pointless': 2, 'conference': 2, "team's": 2, 'atlanta': 2, 'falcons': 2, 'mmm': 2, 'foil': 2, 'yup': 2, 'beating': 2, 'simp-sonnnn': 2, 'acting': 2, 'gang': 2, 'choking': 2, 'murmurs': 2, 'yourselves': 2, 'easier': 2, 'curious': 2, 'matter-of-fact': 2, 'kyoto': 2, 'sea': 2, 'fritz': 2, 'drawing': 2, 'justice': 2, 'patterns': 2, 'lights': 2, 'hawking:': 2, "hangin'": 2, 'putting': 2, 'tentative': 2, 'umm': 2, 'heavyset': 2, 'insulted': 2, 'tommy': 2, 'honor': 2, 'duel': 2, 'fevered': 2, 'between': 2, 'thesaurus': 2, 'danish': 2, 'joking': 2, 'laws': 2, 'held': 2, 'knees': 2, 'throwing': 2, 'seas': 2, 'eyesore': 2, 'jeff': 2, 'ugliest': 2, 'white': 2, 'gargoyle': 2, 'brow': 2, 'pleasant': 2, 'mount': 2, 'carlson': 2, 'harder': 2, 'nearly': 2, 'wash': 2, 'beats': 2, 'tax': 2, 'trusted': 2, 'poem': 2, 'planet': 2, 'professor': 2, 'disgrace': 2, 'stationery': 2, 'flying': 2, 'tanked-up': 2, 'certain': 2, "bar's": 2, 'queer': 2, 'guide': 2, 'calmly': 2, 'befouled': 2, 'broom': 2, 'explain': 2, 'unfortunately': 2, 'reynolds': 2, 'jerry': 2, 'solo': 2, 'lowering': 2, 'sinister': 2, 'onions': 2, 'talked': 2, 'frosty': 2, 'voice:': 2, 'helen': 2, 'bible': 2, 'medical': 2, "chewin'": 2, 'shock': 2, 'satisfied': 2, 'effigy': 2, 'jobs': 2, 'mention': 2, 'smart': 2, 'dee-fense': 2, 'twice': 2, 'schnapps': 2, 'comic': 2, 'klingon': 2, 'mm': 2, 'corporation': 2, 'fresh': 2, 'loss': 2, 'smurfs': 2, 'wake': 2, 'disapproving': 2, 'informant': 2, 'goods': 2, 'smugglers': 2, 'voice_on_transmitter:': 2, 'answering': 2, 'mcbain': 2, "father's": 2, 'taps': 2, 'jets': 2, 'eventually': 2, 'morlocks': 2, 'liar': 2, "weren't": 2, 'naturally': 2, 'shaggy': 2, 'gun': 2, 'passion': 2, 'bartending': 2, 'painting': 2, 'expression': 2, 'contest': 2, 'potato': 2, 'ayyy': 2, 'tabooger': 2, 'ollie': 2, 'deliberate': 2, 'century': 2, 'formico:': 2, 'formico': 2, 'thanksgiving': 2, 'tofu': 2, 'curds': 2, 'ambrosia': 2, 'terrific': 2, 'cookies': 2, 'admiring': 2, 'anywhere': 2, 'eighty-seven': 2, 'palm': 2, 'actors': 2, 'brewed': 2, 'hop': 2, 'juice': 2, 'agree': 2, 'grandiose': 2, 'boyfriend': 2, 'spy': 2, 'superior': 2, 'rainier_wolfcastle:': 2, 'authorized': 2, 'impatient': 2, 'bottles': 2, 'salt': 2, 'windex': 2, 'koi': 2, 'pond': 2, 'drown': 2, 'surprise': 2, 'wang': 2, 'dating': 2, 'sat': 2, 'drank': 2, 'i-i-i': 2, 'force': 2, 'badges': 2, 'admitting': 2, 'pian-ee': 2, 'shoo': 2, 'grab': 2, "'im": 2, 'dough': 2, 'emotional': 2, 'color': 2, 'skin': 2, 'alphabet': 2, 'smug': 2, 'louder': 2, 'fuss': 2, '1895': 2, 'soap': 2, 'aging': 2, 'whenever': 2, 'denser': 2, 'disco': 2, 'complaining': 2, 'magazine': 2, 'young_moe:': 2, 'memory': 2, 'amount': 2, 'appointment': 2, 'bird': 2, 'decide': 2, 'lush': 2, 'cruel': 2, 'david': 2, 'wishes': 2, 'cream': 2, "cat's": 2, 'nope': 2, 'boozy': 2, 'dessert': 2, 'crumble': 2, 'cooler': 2, 'delivery_boy:': 2, 'bastard': 2, 'mona_simpson:': 2, 'stevie': 2, 'woozy': 2, 'gifts': 2, 'diamond': 2, 'woman_bystander:': 2, 'ziff': 2, 'fold': 2, 'achem': 2, 'd': 2, 'securities': 2, 'exchange': 2, 'sec_agent_#2:': 2, 'investor': 2, 'confidence': 2, 'nerve': 2, 'prison': 2, 'standing': 2, 'bedroom': 2, 'value': 2, 'shakespeare': 2, 'watered-down': 2, 'underpants': 2, 'needy': 2, 'kindly': 2, 'funds': 2, 'lap': 2, "what're": 2, 'bugging': 2, 'seemed': 2, 'wedding': 2, 'missed': 2, 'shoulder': 2, 'department': 2, 'violations': 2, 'roof': 2, 'shutting': 2, "'tis": 2, 'shrugs': 2, "beer's": 2, 'changes': 2, 'conversation': 2, 'hotline': 2, 'dials': 2, 'allowed': 2, 'sleeps': 2, 'quotes': 2, 'therefore': 2, 'regulars': 2, 'skirt': 2, 'prepared': 2, 'trapped': 2, 'rule': 2, 'pint': 2, 'judge_snyder:': 2, 'ale': 2, 'suds': 2, 'cat': 2, 'moe-clone:': 2, 'attitude': 2, 'weirder': 2, 'jerky': 2, 'record': 2, 'bourbon': 2, 'ginger': 2, 'sissy': 2, 'wrestling': 2, 'forehead': 2, 'barely': 2, 'flag': 2, 'attempting': 2, "takin'": 2, 'camp': 2, 'cheat': 2, 'haw': 2, "payin'": 2, 'known': 2, 'bridge': 2, 'museum': 2, 'coins': 2, 'jailbird': 2, 'wangs': 2, 'photo': 2, 'shoots': 2, 'louie:': 2, 'reporter:': 2, 'irish': 2, "drawin'": 2, 'marmaduke': 2, "waitin'": 2, 'fragile': 2, 'wolfe': 2, 'wordloaf': 2, 'festival': 2, 'fictional': 2, "what'sa": 2, 'fausto': 2, 'action': 2, 'pretending': 2, 'abandon': 2, 'airport': 2, 'mortgage': 2, "ladies'": 2, 'dames': 2, 'appealing': 2, 'patient': 2, 'weirded-out': 2, 'fanciest': 2, 'towed': 2, 'eighty-one': 2, 'joke': 2, 'grandmother': 2, 'bully': 2, 'mixed': 2, 'stir': 2, 'positive': 2, 'slight': 2, 'latin': 2, 'complaint': 2, 'obvious': 2, 'thighs': 2, 'internet': 2, 'media': 2, 'disappeared': 2, 'candidate': 2, 'dennis_kucinich:': 2, 'lurleen': 2, 'lurleen_lumpkin:': 2, 'rock': 2, "someone's": 2, 'hangs': 2, 'sneaky': 2, 'winnings': 2, 'krabappel': 2, 'difficult': 2, 'discuss': 2, 'compared': 2, 'decent': 2, 'doreen': 2, 'doreen:': 2, "marge's": 2, 'available': 2, 'bashir': 2, 'arab_man:': 2, 'dress': 2, 'grimly': 2, 'lock': 2, 'combine': 2, 'queen': 2, 'multiple': 2, 'prize': 2, 'alfred': 2, 'shower': 2, 'tiny': 2, 'slice': 2, 'playful': 2, "wonderin'": 2, 'defeated': 2, 'maya': 2, 'whether': 2, 'awww': 2, 'rhyme': 2, 'un-sults': 2, 'courage': 2, 'reviews': 2, 'hibbert': 2, 'banquo': 2, 'thought_bubble_homer:': 2, 'tries': 2, 'wing': 2, 'helllp': 2, 'lovely': 2, 'cozy': 2, 'begins': 2, 'torn': 2, 'warn': 2, 'possibly': 2, 'stranger:': 2, 'gator:': 2, 'corporate': 2, 'industry': 2, 'awesome': 2, 'decency': 2, 'extremely': 2, 'saint': 2, 'type': 2, 'is:': 2, 'partly': 2, 'golf': 2, 'ball-sized': 2, 'hail': 2, 'continuing': 2, 'electronic': 2, 'zero': 2, 'tale': 2, 'restroom': 2, 'rules': 2, 'sitar': 2, 'smallest': 2, 'sympathetic': 2, 'slightly': 2, 'soup': 2, 'padre': 2, 'lloyd': 2, 'candy': 2, 'scary': 2, 'beep': 2, 'fox': 2, 'strategy': 2, 'answers': 2, 'grienke': 2, 'sport': 2, 'doug:': 2, 'sabermetrics': 2, "others'": 2, 'fixed': 2, 'assistant': 2, 'admiration': 2, 'self-made': 2, 'suspect': 2, 'proposing': 2, 'plans': 2, 'hitler': 2, 'dungeon': 2, 'stern': 2, 'waltz': 2, 'suspicious': 2, 'roz:': 2, 'relieved': 2, 'suing': 2, 'therapist': 2, 'skeptical': 2, 'boneheaded': 2, 'relationship': 2, 'twin': 2, 'dreamed': 2, 'joey_kramer:': 2, 'kramer': 2, 'neighbor': 2, 'completing': 2, "other's": 2, 'wayne': 2, 'stealings': 2, 'monkey': 2, 'crew': 2, "children's": 2, 'underbridge': 2, 'academy': 2, 'neil_gaiman:': 2, 'square': 2, 'vulnerable': 2, 'copy': 2, 'trolls': 2, 'vampires': 2, "hasn't": 2, 'lenny:': 2, 'carl:': 2, 'carll': 2, 'website': 2, 'safer': 2, 'bedbugs': 2, 'duty': 2, 'intense': 2, 'friendship': 2, "crawlin'": 2, 'maman': 2, 'failed': 2, 'lise:': 2, 'marguerite:': 2, 'cheese': 2, 'degradation': 2, 'violin': 2, 'heading': 2, 'raccoons': 2, 'filled': 2, 'rolled': 2, 'trench': 2, 'frog': 2, 'poker': 2, 'cowardly': 2, 'outlook': 2, 'motorcycle': 2, 'ripcord': 2, 'reached': 2, 'so-called': 2, '7-year-old_brockman:': 2, 'muttering': 2, 'plywood': 2, 'hats': 2, 'civilization': 2, 'anarchy': 2, 'w': 2, "readin'": 2, 'chicks': 2, 'wooden': 2, 'deacon': 2, 'priest': 2, 'important': 2, 'vacuum': 2, 'cleaner': 2, 'tie': 2, 'belong': 2, 'dreams': 2, 'elephants': 2, 'brothers': 2, 'wings': 2, 'spied': 2, 'bump': 2, 'reliable': 2, 'superhero': 2, 'pigs': 2, 'refresh': 2, 'express': 2, 'mall': 2, 'santa': 2, 'page': 2, 'brassiest': 2, 'nickels': 2, 'laney_fontaine:': 2, 'craphole': 2, 'smile:': 2, 'baritone': 2, 'africa': 2, 'snorts': 2, 'wa': 2, 'scrape': 2, 'nigeria': 2, 'level': 2, 'nigerian': 2, 'princesses': 2, 'familiar': 2, 'yawns': 2, 'stuck': 2, 'scooter': 2, 'aged_moe:': 2, 'teenage_homer:': 2, 'grade': 2, "homer's_brain:": 2, 'punk': 2, 'someday': 2, 'boxing_announcer:': 2, "monroe's": 2, 'thru': 2, 'koholic': 2, "dyin'": 2, 'tv_announcer:': 2, 'patty': 2, 'elite': 1, 'enhance': 1, 'skills': 1, 'politician': 1, "neighbor's": 1, 'right-handed': 1, 'corkscrews': 1, 'homer_': 1, "cont'd:": 1, 'led': 1, 'richer': 1, 'county': 1, 'faces': 1, 'profiling': 1, 'paper': 1, "depressin'": 1, 'crisis': 1, 'pictured': 1, 'underwear': 1, 'jury': 1, 'lawyer': 1, 'pretzel': 1, 'patrons:': 1, 'foam': 1, 'spare': 1, 'stiffening': 1, 'trenchant': 1, 'disappointing': 1, 'jer': 1, 'grudgingly': 1, 'reed': 1, 'whoo': 1, 'instrument': 1, 'sunk': 1, 'patrons': 1, 'figure': 1, 'healthier': 1, 'increased': 1, 'togetherness': 1, 'poison': 1, 'purveyor': 1, 'mind-numbing': 1, 'intoxicants': 1, 'unfamiliar': 1, 'tonic': 1, 'mix': 1, 'bowie': 1, 'nickel': 1, 'coughs': 1, 'phlegm': 1, 'looser': 1, 'sneeze': 1, 'guard': 1, 'chuckling': 1, 'crowded': 1, 'cracked': 1, 'accepting': 1, 'stamps': 1, 'combination': 1, 'patron_#1:': 1, 'patron_#2:': 1, 'store-bought': 1, 'drollery': 1, 'application': 1, 'ons': 1, 'salary': 1, 'wage': 1, 'meaningfully': 1, 'fringe': 1, 'unforgettable': 1, 'weekend': 1, 'vacations': 1, 'someplace': 1, 'moxie': 1, 'methinks': 1, 'bannister': 1, "mcstagger's": 1, 'emporium': 1, 'composite': 1, 'logos': 1, 'mozzarella': 1, 'proposition': 1, 'chain': 1, 'recipe': 1, 'dice': 1, 'sweat': 1, 'dies': 1, 'delivery_man:': 1, 'cases': 1, 'hooked': 1, 'waitress': 1, 'pursue': 1, 'hundreds': 1, 'thousands': 1, 'cuz': 1, "duff's": 1, 'information': 1, 'motto': 1, 'full-time': 1, 'swine': 1, 'germany': 1, 'east': 1, 'west': 1, 'cleveland': 1, 'browns': 1, 'monkeyshines': 1, 'kinds': 1, 'resist': 1, 'musses': 1, 'today/': 1, 'marvelous': 1, 'play/': 1, 'trees': 1, 'sees/': 1, 'please/': 1, 'picnic': 1, 'pip': 1, 'mirthless': 1, 'damned': 1, 'reptile': 1, 'saucy': 1, 'sieben-gruben': 1, '7g': 1, 'terminated': 1, 'example': 1, 'sing-song': 1, 'heavens': 1, 'stamp': 1, 'slays': 1, 'terror': 1, 'determined': 1, 'freshened': 1, 'hourly': 1, 'provide': 1, 'coyly': 1, 'h': 1, 'justify': 1, 'england': 1, 'modest': 1, 'malibu': 1, 'stacey': 1, 'kitchen': 1, 'prints': 1, 'feminist': 1, 'newsletter': 1, 'daaaaad': 1, 'grumbling': 1, 'usual': 1, 'wad': 1, 'bills': 1, 'thirty-five': 1, 'sagely': 1, 'sweaty': 1, 'son-of-a': 1, "ma's": 1, 'norway': 1, 'brunch': 1, 'spectacular': 1, 'baloney': 1, 'gotcha': 1, 'eminence': 1, 'bookie': 1, "bettin'": 1, 'football': 1, 'forty-five': 1, 'pre-game': 1, 'actor': 1, 'mcclure': 1, 'sitcom': 1, 'premiering': 1, 'coincidentally': 1, "show's": 1, 'criminal': 1, 'fell': 1, 'script': 1, 'recent': 1, 'irs': 1, 'sealed': 1, "drexel's": 1, 'kickoff': 1, 'kicks': 1, 'position': 1, 'gambler': 1, 'score': 1, 'fourteen:': 1, 'duff_announcer:': 1, 'half-back': 1, 'beer-dorf': 1, 'ticks': 1, 'scores': 1, "fans'll": 1, 'looting': 1, 'lone': 1, 'handoff': 1, 'twenty-nine': 1, 'scratching': 1, 'chin': 1, 'stinky': 1, 'sniffing': 1, "england's": 1, 'boggs': 1, 'scornfully': 1, 'exploiter': 1, 'ignorant': 1, "jackpot's": 1, 'spitting': 1, 'boozehound': 1, "singin'": 1, 'young_barfly:': 1, 'moonnnnnnnn': 1, 'quarter': 1, 'hillbillies': 1, 'blind': 1, "smokin'": 1, 'cummerbund': 1, 'tight': 1, 'furniture': 1, 'frazier': 1, 'washer': 1, 'religious': 1, 'maximum': 1, 'occupancy': 1, 'slick': 1, 'kneeling': 1, 'unattractive': 1, 'wheeeee': 1, 'cutest': 1, 'larson': 1, 'sponsoring': 1, 'regulations': 1, 'advertising': 1, 'smokes': 1, 'carolina': 1, 'crowned': 1, 'host': 1, 'maitre': 1, "d'": 1, 'glee': 1, 'heartily': 1, 'event': 1, 'tv_daughter:': 1, 'smoker': 1, 'enter': 1, 'blimp': 1, 'scientists': 1, "bo's": 1, 'cavern': 1, 'mobile': 1, 'starving': 1, 'dogs': 1, 'rusty': 1, 'dull': 1, 'spilled': 1, 'ashtray': 1, 'slurps': 1, 'captain:': 1, 'freed': 1, 'iranian': 1, 'hostages': 1, "sat's": 1, 'wishing': 1, 'diaper': 1, 'ronstadt': 1, 'linda_ronstadt:': 1, 'kl5-4796': 1, '/mr': 1, 'boozer': 1, 'intelligent': 1, 'lachrymose': 1, 'dyspeptic': 1, 'ebullient': 1, 'harvard': 1, 'silent': 1, 'admirer': 1, 'snide': 1, 'moesy': 1, 'worthless': 1, 'rub-a-dub': 1, 'anthony_kiedis:': 1, 'thirty-thousand': 1, 'audience': 1, 'restless': 1, 'chili': 1, 'peppers': 1, 'klown': 1, 'flea:': 1, 'gig': 1, 'problemo': 1, "wallet's": 1, 'stares': 1, 'miss_lois_pennycandy:': 1, 'ruby-studded': 1, 'johnny_carson:': 1, 'undies': 1, '50%': 1, 'sales': 1, 'sweetest': 1, 'entertainer': 1, 'crowds': 1, 'wild': 1, 'farewell': 1, 'shop': 1, 'theatrical': 1, 'distaste': 1, 'officer': 1, 'replace': 1, 'nahasapeemapetilon': 1, 'fit': 1, 'marquee': 1, 'luv': 1, 'du': 1, 'beaumarchais': 1, 'dishonor': 1, 'ancestors': 1, 'applicant': 1, 'killarney': 1, 'mither': 1, 'sang': 1, 'tones': 1, 'soft': 1, 'swe-ee-ee-ee-eet': 1, 'my-y-y-y-y-y': 1, 'hanh': 1, 'sounded': 1, 'kako:': 1, 'floating': 1, 'perfume': 1, "man's": 1, 'hat': 1, 'phasing': 1, 'schabadoo': 1, 'attracted': 1, 'reciting': 1, 'infatuation': 1, 'physical': 1, 'attraction': 1, 'common': 1, 'napkins': 1, 'vigilante': 1, 'handshake': 1, 'eightball': 1, 'twelveball': 1, 'aboard': 1, 'nooo': 1, 'file': 1, 'fiiiiile': 1, 'necessary': 1, 'astronauts': 1, 'introduce': 1, 'evils': 1, 'unfair': 1, 'wobble': 1, 'caholic': 1, 'pee': 1, 'freely': 1, 'crotch': 1, 'ivanna': 1, 'fondest': 1, 'desire': 1, 'invisible': 1, 'donut': 1, 'sacrilicious': 1, 'indecipherable': 1, 'goo': 1, 'ideal': 1, 'thoughtless': 1, 'remain': 1, 'nameless': 1, 'spite': 1, 'clips': 1, 'awfully': 1, 'flustered': 1, "ball's": 1, 'slender': 1, 'feminine': 1, 'tapered': 1, 'lighter': 1, 'delicate': 1, 'brunswick': 1, 'bowled': 1, 'shifty': 1, 'eyed': 1, 'genuinely': 1, 'enthused': 1, 'patting': 1, 'flames': 1, "burnin'": 1, 'soaked': 1, "messin'": 1, 'banned': 1, 'sugar-me-do': 1, 'caricature': 1, 'mt': 1, 'lushmore': 1, 'juke': 1, 'raining': 1, 'oww': 1, 'jokes': 1, 'incognito': 1, 'gr-aargh': 1, 'exact': 1, 'equal': 1, 'astonishment': 1, 'puffy': 1, 'however': 1, 'confidentially': 1, 'collateral': 1, 'shark': 1, 'finance': 1, 'sledge-hammer': 1, 'othello': 1, 'drinker': 1, 'sensible': 1, 'presently': 1, 'beast': 1, 'savagely': 1, 'tender': 1, 'scout': 1, 'arrested:': 1, 'heather': 1, 'locklear': 1, 'fortensky': 1, 'hugh': 1, 'cuff': 1, 'links': 1, 'traditions': 1, 'enthusiasm': 1, 'other_player:': 1, "fightin'": 1, 'dizzy': 1, 'nauseous': 1, 'female_inspector:': 1, 'toxins': 1, 'pumping': 1, 'steely-eyed': 1, 'ahhhh': 1, 'rascals': 1, 'smelly': 1, 'shtick': 1, 'faceful': 1, 'soot': 1, 'william': 1, 'faulkner': 1, 'aggie': 1, 'director:': 1, 'stagehand:': 1, 'luckily': 1, 'orphan': 1, 'owned': 1, 'assent': 1, 'wealthy': 1, 'merchants': 1, 'forgiven': 1, 'prices': 1, 'flailing': 1, 'agh': 1, 'little_hibbert_girl:': 1, 'mmm-hmm': 1, 'cheesecake': 1, 'depository': 1, 'all-american': 1, 'cooking': 1, 'chairman': 1, 'wok': 1, 'relaxing': 1, 'madman': 1, 'cooker': 1, 'feedbag': 1, "fryer's": 1, 'navy': 1, 'flash-fry': 1, 'whining': 1, "g'on": 1, 'extinguishers': 1, 'cheering': 1, "aren'tcha": 1, '50-60': 1, 'mistakes': 1, 'mistresses': 1, 'quimby_#2:': 1, 'quimbys:': 1, 'bell': 1, 'support': 1, 'prejudice': 1, 'hero-phobia': 1, 'sickens': 1, 'jubilation': 1, 'committee': 1, 'vicious': 1, 'distract': 1, 'safely': 1, 'choices:': 1, 'barney-guarding': 1, 'contemplated': 1, 'truck_driver:': 1, 'dracula': 1, 'marry': 1, 'jovial': 1, 'sickly': 1, 'ura': 1, 'snotball': 1, '70': 1, 'voyager': 1, 'craft': 1, "tab's": 1, '14': 1, 'alls': 1, 'halfway': 1, 'muscle': 1, "wino's": 1, 'muffled': 1, 'inches': 1, 'bullet-proof': 1, 'student': 1, 'aggravazes': 1, 'immiggants': 1, 'bothered': 1, 'language': 1, 'sentimonies': 1, "jimbo's_dad:": 1, "dolph's_dad:": 1, 'throws': 1, 'ugh': 1, "kearney's_dad:": 1, "somethin's": 1, "fun's": 1, 'two-drink': 1, 'punishment': 1, 'three-man': 1, "poundin'": 1, "kid's": 1, 'beatings': 1, 'spirit': 1, 'prizefighters': 1, 'perking': 1, 'boxers': 1, 'lobster': 1, 'dressing': 1, 'limits': 1, 'arise': 1, 'clincher': 1, 'sixty': 1, 'wantcha': 1, 'faith': 1, '1979': 1, 'office': 1, 'presentable': 1, 'gruesome': 1, 'democrats': 1, 'causes': 1, 'damage': 1, 'boxcar': 1, 'brawled': 1, 'boxcars': 1, 'fighter': 1, 'mitts': 1, 'barbed': 1, 'stinger': 1, 'drawn': 1, "tramp's": 1, 'stops': 1, 'punching': 1, "'cept": 1, 'bindle': 1, "now's": 1, 'delightful': 1, 'glitterati': 1, 'highest': 1, 'priority': 1, 'temporarily': 1, 'incarcerated': 1, 'pushing': 1, 'stairs': 1, 'impending': 1, 'strategizing': 1, 'glorious': 1, 'shores': 1, 'fistiana': 1, 'comeback': 1, "donatin'": 1, 'stalwart': 1, 'pugilist': 1, 'fights': 1, 'sustain': 1, 'verticality': 1, "tatum'll": 1, 'fustigate': 1, 'fustigation': 1, 'choice:': 1, 'faded': 1, 'tar-paper': 1, 'naively': 1, 'champion': 1, 'evasive': 1, 'charged': 1, 'landfill': 1, 'burg': 1, 'pussycat': 1, 'doll-baby': 1, 'starla': 1, 'starla:': 1, 'wigs': 1, "starla's": 1, 'temp': 1, 'k-zug': 1, "'kay-zugg'": 1, '530': 1, 'launch': 1, 'demo': 1, 'housework': 1, 'self-centered': 1, 'though:': 1, 'thawing': 1, 'station': 1, 'sink': 1, 'broken:': 1, 'foundation': 1, 'helpful': 1, 'crony': 1, 'sam:': 1, 'sympathizer': 1, 'bumblebee_man:': 1, 'compadre': 1, 'kearney_zzyzwicz:': 1, 'associate': 1, 'contemporary': 1, 'well-wisher': 1, 'specific': 1, 'harm': 1, 'friday': 1, 'dã¼ff': 1, 'doof': 1, 'sweden': 1, 'skoal': 1, 'nasty': 1, 'refreshing': 1, 'breathalyzer': 1, 'recreate': 1, 'alien': 1, 'wittgenstein': 1, 'backgammon': 1, 'dana_scully:': 1, 'felony': 1, 'packets': 1, 'mustard': 1, "fine-lookin'": 1, 'remorseful': 1, 'anyhow': 1, 'agents': 1, 'mulder': 1, 'edgy': 1, "s'cuse": 1, 'dimly': 1, 'generously': 1, 'raking': 1, 'nervously': 1, 'syndicate': 1, 'ambrose': 1, 'burnside': 1, 'stonewall': 1, 'jackson': 1, 'mill': 1, "industry's": 1, 'aerospace': 1, 'railroads': 1, 'knowingly': 1, 'hoped': 1, "bart'd": 1, 'mystery': 1, "swishifyin'": 1, 'effect': 1, "mtv's": 1, 'lessee': 1, "shootin'": 1, "man'd": 1, 'wars': 1, 'warren': 1, 'grandkids': 1, 'considers': 1, 'st': 1, 'metal': 1, 'busiest': 1, 'cheapskates': 1, 'ireland': 1, 'menacing': 1, 'yew': 1, 'bathtub': 1, 'mint': 1, 'julep': 1, 'jane': 1, 'fonda': 1, 'daniel': 1, 'schorr': 1, 'anderson': 1, 'richard': 1, "nixon's": 1, 'expecting': 1, 'chauffeur': 1, 'lift': 1, "washin'": 1, 'desperately': 1, 'belly-aching': 1, 'wh': 1, 'abe': 1, 'dea-d-d-dead': 1, 'stooges': 1, 'shopping': 1, 'cans': 1, 'wise': 1, 'socratic': 1, 'swelling': 1, 'mushy': 1, 'hearts': 1, 'pinball': 1, 'western': 1, 'dishrag': 1, 'crab': 1, 'talkers': 1, 'jewish': 1, 'catch-phrase': 1, 'grrrreetings': 1, 'darn': 1, "tootin'": 1, 'fink': 1, 'ping-pong': 1, 'plug': 1, "usin'": 1, "phone's": 1, 'four-drink': 1, 'test-': 1, 'test-lady': 1, "g'ahead": 1, 'clammy': 1, 'lovelorn': 1, 'you-need-man': 1, 'moe-near-now': 1, 'go-near-': 1, 'endorsement': 1, 'breakfast': 1, 'rush': 1, "'evening": 1, "'morning": 1, 'chauffeur:': 1, '91': 1, 'accidents': 1, 'choose': 1, 'whoever': 1, 'stays': 1, 'noooooooooo': 1, 'pantsless': 1, 'duffed': 1, 'creates': 1, 'awareness': 1, 'bottomless': 1, 'cheerleaders:': 1, 'and:': 1, 'perfunctory': 1, 'brusque': 1, 'ehhh': 1, 'swell': 1, 'wholeheartedly': 1, 'supports': 1, 'shaky': 1, 'lecture': 1, 'villanova': 1, 'streetcorner': 1, 'anger': 1, 'ought': 1, 'parasol': 1, 'congratulations': 1, 'cockroach': 1, 'displeased': 1, 'man_at_bar:': 1, "scammin'": 1, 'easter': 1, 'giant': 1, 'rumor': 1, 'depression': 1, 'depressant': 1, 'sight-unseen': 1, 'twenty-four': 1, 'chipper': 1, 'dirge-like': 1, 'blooded': 1, 'bachelorhood': 1, 'jasper_beardly:': 1, 'hot-rod': 1, 'souped': 1, 'gear-head': 1, 'six-barrel': 1, 'hollye': 1, 'carb': 1, 'betcha': 1, 'edelbrock': 1, 'intakes': 1, 'meyerhof': 1, 'lifters': 1, 'dignity': 1, 'breakdown': 1, 'society': 1, 'dateline:': 1, 'burglary': 1, 'creature': 1, 'intoxicated': 1, 'marjorie': 1, 'heart-broken': 1, 'sweater': 1, 'cajun': 1, 'sneering': 1, 'choke': 1, 'enthusiastically': 1, 'stomach': 1, 'bushes': 1, 'tapping': 1, 'further': 1, 'zinged': 1, 'spews': 1, 'orifice': 1, 'indifference': 1, 'clapping': 1, "hawkin'": 1, 'vincent': 1, "floatin'": 1, 'horrors': 1, 'unfresh': 1, 'winston': 1, 'wienerschnitzel': 1, 'madison': 1, 'avenue': 1, 'robbers': 1, 'various': 1, 'impeach': 1, 'crooks': 1, 'allowance': 1, 'cats': 1, '$42': 1, 'bury': 1, 'businessman_#2:': 1, 'boston': 1, 'suits': 1, 'vehicle': 1, 'oooo': 1, 'ignoring': 1, 'followed': 1, 'begging': 1, 'combines': 1, 'handling': 1, 'rugged': 1, 'driveability': 1, 'sturdy': 1, '4x4': 1, "ya'": 1, 'cadillac': 1, 'automobiles': 1, 'beefs': 1, 'fat-free': 1, 'th-th-th-the': 1, 'groan': 1, 'jay:': 1, 'shoulda': 1, 'shill': 1, 'indifferent': 1, '35': 1, 'hammer': 1, 'country-fried': 1, 'endorsed': 1, 'federal': 1, 'ruled': 1, 'unsafe': 1, 'chorus:': 1, 'lanes': 1, 'sixty-five': 1, 'tons': 1, 'unexplained': 1, 'fires': 1, 'courts': 1, 'blinds': 1, 'squirrel': 1, 'squashing': 1, "smackin'": 1, 'canyoner-oooo': 1, 'hyahh': 1, 'blissful': 1, 'hiding': 1, 'rash': 1, 'whatchacallit': 1, 'homesick': 1, 'diving': 1, 'tourist': 1, 'pennies': 1, 'micronesian': 1, 'swamp': 1, 'mirror': 1, 'puke-pail': 1, "fendin'": 1, 'starlets': 1, 'pointy': 1, 'ugliness': 1, 'dozen': 1, 'ram': 1, 'players': 1, 'maxed': 1, 'tenuous': 1, 'pinchpenny': 1, 'besides': 1, 'tabs': 1, 'ungrateful': 1, 'ingrates': 1, "renee's": 1, 'insured': 1, 'wreck': 1, 'awkwardly': 1, 'insist': 1, 'model': 1, 'represents': 1, 'olive': 1, "car's": 1, 'toy': 1, 'waterfront': 1, "department's": 1, 'moonlight': 1, 'cruise': 1, 'righ': 1, 'alibi': 1, 'tracks': 1, '10:15': 1, 'wham': 1, 'insurance': 1, 'clams': 1, 'troubles': 1, 'betrayed': 1, 'low-life': 1, 'y-you': 1, 'hmf': 1, 'locked': 1, 'clearing': 1, 'graveyard': 1, 'we-we-we': 1, 'brandy': 1, 'fwooof': 1, 'hawaii': 1, 'yelp': 1, 'murderously': 1, 'oh-ho': 1, "g'night": 1, 'mommy': 1, 'sincerely': 1, 'tearfully': 1, 'beady': 1, "homer'll": 1, 'naval': 1, 'strictly': 1, 'forbids': 1, 'hah': 1, 'thorn': 1, 'grants': 1, 'wondered': 1, "that'd": 1, 'heatherton': 1, 'tempting': 1, 'agent_miller:': 1, 'flashing': 1, 'badge': 1, 'united': 1, 'states': 1, 'wiping': 1, 'signal': 1, 'activity': 1, 'cause': 1, 'commit': 1, 'crimes': 1, 'fired': 1, 'moonshine': 1, 'basement': 1, 'telemarketing': 1, 'uhhhh': 1, 'george': 1, 'seething': 1, 'charlie:': 1, 'militia': 1, 'sorts': 1, 'officials': 1, 'drag': 1, 'high-definition': 1, 'conspiracy': 1, 'musta': 1, 'ratted': 1, 'transmission': 1, 'disaster': 1, 'wishful': 1, 'elect': 1, 'vengeful': 1, 'slogan': 1, 'appeals': 1, 'slobs': 1, 'triumphantly': 1, 'u2:': 1, 'sanitation': 1, 'blokes': 1, 'courteous': 1, 'easygoing': 1, 'the_edge:': 1, 'overflowing': 1, 'bono:': 1, 'arse': 1, 'knocks': 1, 'omit': 1, 'detail': 1, 'spellbinding': 1, 'thomas': 1, 'dictating': 1, 'fluoroscope': 1, 'repeating': 1, 'telegraph': 1, 'breathless': 1, 'firm': 1, 'believer': 1, 'fletcherism': 1, 'heliotrope': 1, 'alva': 1, 'wore': 1, 'pajamas': 1, 'rubs': 1, 'temples': 1, 'menlo': 1, 'tasimeter': 1, 'ore': 1, 'separator': 1, 'watt': 1, 'steam': 1, 'engine': 1, 'unusually': 1, 'focused': 1, 'squeal': 1, 'waste': 1, "somebody's": 1, 'gus': 1, 'yoink': 1, 'peeved': 1, 'citizens': 1, 'murdered': 1, 'watered': 1, 'highball': 1, 'derisive': 1, 'grocery': 1, 'absorbent': 1, 'youuu': 1, 'ointment': 1, 'aisle': 1, 'coy': 1, 'kim_basinger:': 1, 'alec_baldwin:': 1, 'ron_howard:': 1, 'statesmanlike': 1, 'doctor': 1, 'polenta': 1, 'life-threatening': 1, 'donor': 1, 'sucker': 1, 'lists': 1, 'spine': 1, 'vestigial': 1, 'plaintive': 1, 'buttocks': 1, 'harvesting': 1, 'eyeing': 1, 'hostile': 1, "'round": 1, 'y': 1, 'dime': 1, 'quimby': 1, 'puke-holes': 1, 'reserved': 1, 'cronies': 1, 'dã¼ffenbraus': 1, 'semi-imported': 1, 'guzzles': 1, 'generosity': 1, 'greatly': 1, 'appreciated': 1, 'stagey': 1, 'roach': 1, 'hubub': 1, 'sniper': 1, 'blessing': 1, 'disguise': 1, 'ruuuule': 1, 'die-hard': 1, 'winded': 1, "brockman's": 1, 'microphone': 1, 'woooooo': 1, 'ga': 1, 'ninth': 1, 'outs': 1, 'j': 1, "'s": 1, 'jumping': 1, 'technical': 1, 'stan': 1, 'kadlubowski': 1, 'injury': 1, "football's": 1, 'champs': 1, 'harrowing': 1, 'enjoys': 1, 'scornful': 1, 'bronco': 1, 'nagurski': 1, 'reconsidering': 1, 'coupon': 1, 'travel': 1, 'agency': 1, 'charter': 1, 'dreamily': 1, 'quarterback': 1, 'wally': 1, 'it:': 1, 'count': 1, 'broncos': 1, 'hillary': 1, 'adventure': 1, 'assassination': 1, 'scarf': 1, 'lance': 1, 'supervising': 1, 'bumbling': 1, 'sidekick': 1, 'infiltrate': 1, 'idiots': 1, 'destroyed': 1, 'shipment': 1, 'indeedy': 1, 'insulin': 1, 'haplessly': 1, "spaghetti-o's": 1, 'dum-dum': 1, 'unintelligent': 1, 'shutup': 1, 'diminish': 1, 'bid': 1, 'encore': 1, 'encores': 1, 'reactions': 1, 'clap': 1, 'erasers': 1, 'sideshow_mel:': 1, 'barbara': 1, 'arts': 1, 'stalking': 1, 'bumped': 1, 'sympathy': 1, 'guiltily': 1, 'maude': 1, 'shriners': 1, 'old_jewish_man:': 1, 'traitor': 1, 'astrid': 1, 'dealer': 1, 'gunter': 1, 'cecil': 1, 'hampstead-on-cecil-cecil': 1, 'eurotrash': 1, 'gunter:': 1, 'adrift': 1, 'decadent': 1, 'luxury': 1, 'meaningless': 1, 'located': 1, 'cecil_terwilliger:': 1, 'hotel': 1, 'practice': 1, 'affectations': 1, 'bon': 1, 'soir': 1, 'feld': 1, 'priceless': 1, 'sketch': 1, 'certificate': 1, 'authenticity': 1, 'sketching': 1, 'twelve-step': 1, 'novelty': 1, 'item': 1, 'chosen': 1, 'squadron': 1, '8': 1, 'monday': 1, 'municipal': 1, 'fortress': 1, 'vengeance': 1, 'studied': 1, 'fastest': 1, 'theory': 1, 'donut-shaped': 1, 'universe': 1, 'intriguing': 1, 'computer_voice_2:': 1, 'larry': 1, 'flynt': 1, 'stink': 1, "hell's": 1, 'jazz': 1, 'regretted': 1, 'helpless': 1, 'frescas': 1, 'hushed': 1, "bladder's": 1, 'urine': 1, 'demand': 1, 'slaps': 1, 'extreme': 1, 'slapped': 1, "duelin'": 1, 'shack': 1, "b-52's:": 1, 'sat-is-fac-tion': 1, 'feat': 1, 'forgotten': 1, 'depressed': 1, 'shred': 1, 'shreda': 1, 'rivalry': 1, 'spreads': 1, 'wildfever': 1, 'th': 1, 'writer:': 1, 'preparation': 1, 'additional-seating-capacity': 1, 'ivy-covered': 1, 'founded': 1, 'kegs': 1, 'imported-sounding': 1, 'tuborg': 1, 'kings': 1, 'accounta': 1, 'sun': 1, 'sky': 1, 'sail': 1, 'waters': 1, 'theme': 1, 'tyson/secretariat': 1, 'wildest': 1, 'calendars': 1, 'liquor': 1, 'examines': 1, 'expired': 1, '1973': 1, 'rhode': 1, 'signed': 1, 'updated': 1, 'poster': 1, 'moe-lennium': 1, 'sticker': 1, 'viva': 1, 'relative': 1, 'stickers': 1, 'uglier': 1, 'pigtown': 1, 'cauliflower': 1, 'ear': 1, 'lizard': 1, 'caveman': 1, 'snout': 1, 'emphasis': 1, 'maher': 1, 'crapmore': 1, 'kisser': 1, 'spotting': 1, 'windowshade': 1, 'grope': 1, 'softer': 1, 'complicated': 1, 'maintenance': 1, "neat's-foot": 1, 'hooters': 1, 'wraps': 1, 'crushed': 1, 'hike': 1, 'mabel': 1, 'voted': 1, 'chastity': 1, 'bono': 1, 'influence': 1, 'glummy': 1, 'shindig': 1, 'videotaped': 1, 'slot': 1, 'package': 1, 'tha': 1, 'occasion': 1, 'older': 1, 'flew': 1, 'upsetting': 1, 'stage': 1, 'talkative': 1, 'coherent': 1, 'yourse': 1, 'soaking': 1, 'shag': 1, 'disgracefully': 1, 'presents': 1, 'without:': 1, 'morning-after': 1, 'boozebag': 1, 'whirlybird': 1, 'b-day': 1, 'punkin': 1, 'tanking': 1, "handwriting's": 1, 'afloat': 1, 'santeria': 1, 'breaks': 1, 'straighten': 1, 'finish': 1, 'suspiciously': 1, 'world-class': 1, 'alcoholism': 1, 'raging': 1, 'barney-type': 1, 'bad-mouth': 1, 'catty': 1, 'consulting': 1, 'amends': 1, 'disgraceful': 1, 'behavior': 1, 'barstools': 1, 'closet': 1, 'drop-off': 1, 'bulletin': 1, 'broken': 1, 'trapping': 1, 'youngsters': 1, 'trucks': 1, 'unavailable': 1, 'blaze': 1, 'burt_reynolds:': 1, 'feisty': 1, 'supreme': 1, 'court': 1, 'birth': 1, 'competing': 1, 'cross-country': 1, 'race': 1, 'flown': 1, 'heroism': 1, 'charges': 1, 'binoculars': 1, 'grieving': 1, 'slab': 1, 'tear': 1, 'reluctantly': 1, 'clenched': 1, 'resigned': 1, 'according': 1, 'uses': 1, 'appearance-altering': 1, 'cosmetics': 1, 'warned': 1, 'tall': 1, 'clandestine': 1, 'disturbing': 1, 'pulitzer': 1, 'guinea': 1, 'chew': 1, 'telephone': 1, 'experiments': 1, 'ears': 1, 'winces': 1, 'hmmmm': 1, 'dawning': 1, 'appalled': 1, 'fire_inspector:': 1, 'brainiac': 1, 'distinct': 1, 'strain': 1, 'anti-intellectualism': 1, 'einstein': 1, 'appendectomy': 1, 'lipo': 1, 'sampler': 1, 'dramatically': 1, 'crayon': 1, 'art': 1, 'carney': 1, 'flourish': 1, 'crayola': 1, 'oblongata': 1, 'deeper': 1, 'pusillanimous': 1, 'pilsner-pusher': 1, 'inanely': 1, 'extended': 1, 'warranty': 1, 'sacajawea': 1, 'manatee': 1, 'cranberry': 1, 'aah': 1, 'painted': 1, 'choices': 1, 'scanning': 1, "soakin's": 1, 'nectar': 1, 'nitwit': 1, "knockin'": 1, 'badmouths': 1, "o'": 1, 'mindless': 1, 'droning': 1, 'befriend': 1, "raggin'": 1, 'conditioners': 1, 'loneliness': 1, 'guttural': 1, 'heartless': 1, 'owns': 1, 'family-owned': 1, 'eye-gouger': 1, 'brine': 1, 'massive': 1, 'occasional': 1, 'total': 1, 'rip-off': 1, 'gangrene': 1, 'cup': 1, "coffee'll": 1, 'waking-up': 1, 'instantly': 1, "nick's": 1, 'rude': 1, 'hitchhike': 1, 'emergency': 1, 'dollface': 1, 'nash': 1, 'bridges': 1, 'illegally': 1, 'smuggled': 1, '2nd_voice_on_transmitter:': 1, '3rd_voice:': 1, 'presses': 1, 'snitch': 1, 'lotsa': 1, 'mission': 1, 'fireworks': 1, 'incriminating': 1, 'recorder': 1, 'hootie': 1, 'blowfish': 1, 'cheaper': 1, 'blank': 1, 'wells': 1, 'aer': 1, 'lingus': 1, 'leprechaun': 1, 'cursed': 1, "heat's": 1, 'dejected': 1, 'slugger': 1, 'italian': 1, "spyin'": 1, 'assumed': 1, 'stupidest': 1, 'valley': 1, 'series': 1, 'quitcher': 1, 'bellyaching': 1, 'dumb-asses': 1, 'yak': 1, "d'ya": 1, 'shesh': 1, 'smiled': 1, 'nailed': 1, 'jigger': 1, 'illustrates': 1, 'swigmore': 1, 'fills': 1, 'alma': 1, 'mater': 1, 'rekindle': 1, 'urban': 1, "tinklin'": 1, 'chips': 1, "when's": 1, 'natured': 1, 'splattered': 1, 'fonzie': 1, 'hemorrhage-amundo': 1, 'yello': 1, 'booger': 1, 'dirty': 1, 'teen': 1, 'hardhat': 1, 'wrecking': 1, 'giggle': 1, 'fainted': 1, 'prettied': 1, 'renew': 1, 'zeal': 1, 'twentieth': 1, 'dean': 1, 'design': 1, 'certified': 1, 'contractors': 1, 'pages': 1, 'hippies': 1, 'rem': 1, 'apology': 1, 'eco-fraud': 1, 'reluctant': 1, 'rainforest': 1, 'peter_buck:': 1, 'michael': 1, 'supplying': 1, 'mike_mills:': 1, 'gluten': 1, 'ate': 1, 'michael_stipe:': 1, 'mmmmm': 1, 'alternative': 1, 'rockers': 1, 'gabriel': 1, 'mortal': 1, 'equivalent': 1, 'gabriel:': 1, 'temper': 1, 'deliberately': 1, 'girl-bart': 1, 'loathe': 1, 'knives': 1, "lady's": 1, "'n'": 1, 'creme': 1, 'martini': 1, 'amber_dempsey:': 1, 'annoying': 1, 'night-crawlers': 1, 'bragging': 1, 'mole': 1, 'wowww': 1, 'amber': 1, 'proves': 1, 'buffet': 1, 'clothespins': 1, 'attach': 1, 'clothespins:': 1, 'swallowed': 1, 'inserted': 1, 'clipped': 1, 'sixteen': 1, 'magnanimous': 1, "clancy's": 1, 'op': 1, 'lovers': 1, 'newsweek': 1, 'failure': 1, 'thrust': 1, 'trivia': 1, 'lifetime': 1, 'supply': 1, 'chug-monkeys': 1, 'beverage': 1, 'hops': 1, 'grains': 1, 'grain': 1, "time's": 1, 'reading:': 1, 'woulda': 1, 'arrange': 1, 'escort': 1, 'orgasmville': 1, 'enlightened': 1, 'television': 1, 'producers': 1, 'booking': 1, 'mid-seventies': 1, 'alky': 1, "round's": 1, 'payday': 1, 'rented': 1, 'swings': 1, "battin'": 1, 'cage': 1, 'perverted': 1, 'winner': 1, 'sprawl': 1, 'hockey-fight': 1, 'settled': 1, "what'd": 1, 'lookalike:': 1, 'chuck': 1, 'exited': 1, 'trunk': 1, 'rainier': 1, 'wolfcastle': 1, 'ab': 1, 'roller': 1, 'backward': 1, 'leftover': 1, 'lookalike': 1, 'lookalikes': 1, 'macaulay': 1, 'culkin': 1, 'killing': 1, 'alpha-crow': 1, 'enveloped': 1, 'crow': 1, 'crowbar': 1, 'sloppy': 1, 'wacky': 1, 'tobacky': 1, 'spacey': 1, 'intervention': 1, 'poisoning': 1, 'excuses': 1, 'funeral': 1, 'interrupting': 1, 'forty-seven': 1, 'here-here-here': 1, 'pepper': 1, 'shaker': 1, 'dash': 1, 'dinks': 1, 'squishee': 1, 'canoodling': 1, 'junkyard': 1, 'rabbits': 1, 'soothing': 1, 'promise': 1, 'tropical': 1, 'windelle': 1, 'muhammad': 1, 'ali': 1, 'anti-lock': 1, 'brakes': 1, 'johnny': 1, 'mathis': 1, 'versus': 1, 'pepsi': 1, 'meditative': 1, 'lily-pond': 1, 'fry': 1, 'squirrels': 1, 'super-genius': 1, 'certainly': 1, 'lenford': 1, 'celebration': 1, 'pasta': 1, 'mini-beret': 1, "this'll": 1, 'speed': 1, 'nos': 1, 'killer': 1, 'stab': 1, 'simon': 1, 'up-bup-bup': 1, "pickin'": 1, 'homer_doubles:': 1, 'len-ny': 1, 'piano': 1, 'cell-ee': 1, 'cattle': 1, "rustlin'": 1, "calf's": 1, 'sneak': 1, 'snatch': 1, 'ghouls': 1, 'grammy': 1, 'judges': 1, 'perfected': 1, 'device': 1, 'flayvin': 1, 'space-time': 1, 'continuum': 1, "wait'll": 1, 'wasted': 1, 'plotz': 1, 'absentminded': 1, 'polishing': 1, 'diapers': 1, 'yuh-huh': 1, 'alter': 1, 'consciousness': 1, 'glitz': 1, 'glamour': 1, 'beligerent': 1, 'liable': 1, 'taunting': 1, 'accelerating': 1, 'snapping': 1, 'cab_driver:': 1, 'newest': 1, 'supermodel': 1, 'longest': 1, 'spit-backs': 1, "tonight's": 1, 'cock': 1, 'scoffs': 1, 'tokens': 1, 'reality': 1, 'gimmick': 1, 'lincoln': 1, 'kennedy': 1, 'mckinley': 1, 'simple': 1, 'slit': 1, 'quick-like': 1, 'sideshow_bob:': 1, 'haikus': 1, 'skinheads': 1, 'concentrate': 1, 'detective': 1, 'unbelievable': 1, 'digging': 1, 'intimacy': 1, 'cobbling': 1, 'shoes': 1, 'schizophrenia': 1, 'hiring': 1, 'swan': 1, 'delts': 1, 'clench': 1, 'bulked': 1, 'managed': 1, 'femininity': 1, 'fierce': 1, 'glyco-load': 1, 'ripping': 1, 'gel': 1, 'frightened': 1, 'sacrifice': 1, 'period': 1, 'delicately': 1, 'yammering': 1, 'pile': 1, 'disco_stu:': 1, 'stu': 1, 'ducked': 1, 'slim': 1, 'bupkus': 1, 'perplexed': 1, 'rump': 1, 'payback': 1, 'revenge': 1, 'subscriptions': 1, 'brick': 1, 'cerebral': 1, 'booze-bags': 1, 'victorious': 1, 'gallon': 1, 'icelandic': 1, 'boyhood': 1, 'anti-crime': 1, 'dealie': 1, 'streetlights': 1, 'strongly': 1, 'pro': 1, 'con': 1, "i'unno": 1, 'superdad': 1, 'crystal': 1, 'cheaped': 1, 'shelf': 1, 'paramedic:': 1, 'ingested': 1, 'defiantly': 1, 'ihop': 1, 'burger': 1, 'absentmindedly': 1, "doctor's": 1, 'neanderthal': 1, 'taylor': 1, 'ing': 1, 'voters': 1, 'november': 1, 'practically': 1, 'everywhere': 1, 'resenting': 1, 'appreciate': 1, 'shout': 1, 'f-l-a-n-r-d-s': 1, 'flame': 1, 'researching': 1, 'indigenous': 1, 'overhearing': 1, 'delightfully': 1, 'byrne': 1, 'singer': 1, 'artist': 1, 'composer': 1, 'wrestle': 1, 'el': 1, 'diablo': 1, 'philip': 1, 'rewound': 1, 'produce': 1, 'rolls': 1, 'kahlua': 1, 'fleabag': 1, 'unsanitary': 1, "wearin'": 1, 'walked': 1, 'dark': 1, 'dreary': 1, 'drunkening': 1, 'hangover': 1, 'barber': 1, 'frat': 1, 'julienne': 1, 'potatoes': 1, 'groin': 1, 'shortcomings': 1, 'banquet': 1, 'poulet': 1, 'au': 1, 'vin': 1, 'avec': 1, 'champignons': 1, 'ã': 1, 'kisses': 1, 'botanical': 1, 'gardens': 1, 'blossoming': 1, 'sumatran': 1, 'occurs': 1, 'customers-slash-only': 1, 'replaced': 1, "mopin'": 1, 'alarm': 1, 'tummies': 1, 'elves:': 1, 'cakes': 1, 'pets': 1, 'brotherhood': 1, "i'd'a": 1, 'pizza': 1, "y'money's": 1, 'counter': 1, 'leonard': 1, 'competitive': 1, 'macgregor': 1, 'musketeers': 1, 'accusing': 1, 'lungs': 1, 'devils:': 1, 'apulina': 1, 'including': 1, 'bouquet': 1, 'earrings': 1, 'hilton': 1, "city's": 1, 'society_matron:': 1, 'remote': 1, 'sharity': 1, 'aristotle:': 1, 'weep': 1, 'mamma': 1, 'flush-town': 1, 'population': 1, 'nonchalant': 1, 'ninety-eight': 1, 'outstanding': 1, 'flush': 1, 'jacks': 1, 'multi-national': 1, 'manipulation': 1, 'macho': 1, 'undermine': 1, 'affects': 1, 'majority': 1, 'shareholder': 1, 'inherent': 1, 'legal': 1, 'liability': 1, 'malfeasance': 1, 'result': 1, 'deny': 1, 'showed': 1, 'louse': 1, 'jogging': 1, 'intruding': 1, 'sending': 1, 'swooning': 1, 'odor': 1, 'eaters': 1, 'beanbag': 1, 'temple': 1, 'doom': 1, 'gentle': 1, 'nightmares': 1, 'orders': 1, 'contemptuous': 1, 'chateau': 1, 'latour': 1, 'eighteen': 1, 'eighty-six': 1, 'initially': 1, "collector's": 1, 'bidet': 1, 'ladder': 1, 'fountain': 1, 'in-in-in': 1, 'chipped': 1, 'nail': 1, 'sticking': 1, 'poke': 1, 'bachelor': 1, 'peaked': 1, 'and/or': 1, 'buddies': 1, 'chug-a-lug': 1, 'a-lug': 1, 'disposal': 1, 'boisterous': 1, 'exciting': 1, 'photographer': 1, 'van': 1, 'notch': 1, 'wiggle': 1, 'friction': 1, 'killjoy': 1, 'wussy': 1, 'grinch': 1, 'consoling': 1, 'picked': 1, 'zoomed': 1, 'junebug': 1, 'windshield': 1, "secret's": 1, 'bail': 1, "bringin'": 1, 'easily': 1, 'sobriety': 1, 'urge': 1, 'sponsor': 1, 'white_rabbit:': 1, 'lorre': 1, 'warmth': 1, 'penmanship': 1, 'sucks': 1, 'anyhoo': 1, 'cyrano': 1, 'americans': 1, 'permanent': 1, 'visas': 1, 'dutch': 1, "leavin'": 1, "president's": 1, 'rebuttal': 1, 'mull': 1, 'mugs': 1, "thinkin'": 1, 'symphonies': 1, 'fuhgetaboutit': 1, 'filth': 1, 'oughta': 1, 'hideous': 1, 'frankie': 1, 'fella': 1, 'dads': 1, 'malted': 1, 'tooth': 1, 'blinded': 1, "soundin'": 1, 'thorough': 1, 'winks': 1, 'infestation': 1, 'sanitary': 1, 'utensils': 1, 'hygienically': 1, 'stored': 1, 'parked': 1, 'hydrant': 1, 'exhale': 1, 'whaddya': 1, 'hunky': 1, 'dory': 1, 'rife': 1, 'starters': 1, 'predecessor': 1, 'trash': 1, 'wednesday': 1, 'chicken': 1, 'skins': 1, 'dispenser': 1, 'john': 1, 'danny': 1, 'mountain': 1, "summer's": 1, 'falling': 1, 'bide': 1, 'tribute': 1, 'e': 1, 'acceptance': 1, 'hafta': 1, 'reopen': 1, 'crestfallen': 1, 'nor': 1, 'pen': 1, 'parrot': 1, 'brief': 1, 'contact': 1, 'blocked': 1, 'protecting': 1, 'investment': 1, 'cigars': 1, 'microwave': 1, 'beans': 1, 'stupidly': 1, 'jerk-ass': 1, 'doy': 1, 'cheerier': 1, 'darkness': 1, 'tactful': 1, 'remodel': 1, "changin'": 1, 'susie-q': 1, 'face-macer': 1, 'guff': 1, 'grub': 1, 'proper': 1, 'old-time': 1, 'whaaa': 1, 'britannia': 1, 'meatpies': 1, 'lager': 1, 'classy': 1, 'asses': 1, 'so-ng': 1, 'arm-pittish': 1, "renovatin'": 1, 'drapes': 1, "idea's": 1, 'lindsay': 1, 'naegle': 1, 'mis-statement': 1, 'allow': 1, 'credit': 1, 'bumpy-like': 1, 'counterfeit': 1, 'moe-clone': 1, 'socialize': 1, 'e-z': 1, 'oopsie': 1, "enjoyin'": 1, 'adult': 1, 'tickets': 1, "santa's": 1, 'sleigh-horses': 1, 'sells': 1, 'impress': 1, "liftin'": 1, 'dumbbell': 1, 'forty-nine': 1, 'ninety-nine': 1, "lefty's": 1, 'victim': 1, 'hustle': 1, "breakin'": 1, 'nerd': 1, 'sugar-free': 1, 'flat': 1, 'buds': 1, 'goldarnit': 1, 'life-partner': 1, 'whup': 1, 'yee-ha': 1, 'gol-dangit': 1, "dimwit's": 1, 'kazoo': 1, 'head-gunk': 1, 'hears': 1, 'cocking': 1, 'texan': 1, 're-al': 1, 'moe-heads': 1, 'polls': 1, 'negative': 1, 'ads': 1, 'hurting': 1, 'homeless': 1, 'bum:': 1, 'annual': 1, 'w-a-3-q-i-zed': 1, 'mason': 1, 'arrived': 1, "rentin'": 1, 'las': 1, 'nevada': 1, 'stingy': 1, 'rat-like': 1, 'sued': 1, 'settlement': 1, 'partially': 1, 'risquã©': 1, 'plane': 1, 'soul-crushing': 1, 'blackjack': 1, 'nelson_muntz:': 1, 'nelson': 1, 'pair': 1, 'paints': 1, 'noggin': 1, 'meanwhile': 1, "yieldin'": 1, 'moe_recording:': 1, 'ew': 1, 'considering:': 1, "table's": 1, 'wobbly': 1, 'jam': 1, 'ford': 1, 'captain': 1, 'kirk': 1, 'five-fifteen': 1, 'eternity': 1, 'fortune': 1, 'fica': 1, 'helping': 1, 'steamed': 1, 'cappuccino': 1, '-ry': 1, 'otherwise': 1, 'neighbors': 1, 'wife-swapping': 1, 'strolled': 1, 'donation': 1, 'lewis': 1, 'notorious': 1, 'idealistic': 1, 'law-abiding': 1, 'archaeologist': 1, 'excavating': 1, 'mayan': 1, 'pyramid': 1, 'unearth': 1, 'pre-columbian': 1, 'donate': 1, 'statues': 1, 'handed': 1, 'dilemma': 1, 'edner': 1, "playin'": 1, 'coin': 1, 'poorer': 1, 'worldly': 1, 'possessions': 1, "'ceptin'": 1, 'nucular': 1, 'obsessive-compulsive': 1, 'powered': 1, 'non-american': 1, "tv's": 1, 'misfire': 1, 'prolonged': 1, 'playoff': 1, "hobo's": 1, 'owes': 1, 'fist': 1, "puttin'": 1, 'screws': 1, "tony's": 1, 'all-all-all': 1, 'stars': 1, 'firing': 1, 'pure': 1, 'polish': 1, 'heck': 1, "challengin'": 1, 'sudoku': 1, 'puzzle': 1, 'numeral': 1, 'repeated': 1, 'column': 1, 'salvation': 1, 'cocks': 1, 'stripes': 1, 'repay': 1, 'colonel:': 1, 'fishing': 1, "listenin'": 1, 'bursts': 1, 'published': 1, 'author': 1, 'earlier': 1, 'newly-published': 1, 'snail': 1, 'trail': 1, 'name:': 1, 'bonfire': 1, 'vanities': 1, 'coined': 1, 'phrase': 1, 'radical': 1, 'chic': 1, "squeezin'": 1, "'roids": 1, 'vermont': 1, 'thrilled': 1, "wouldn't-a": 1, 'outlive': 1, 'wizard': 1, 'upn': 1, 'assert': 1, 'herself': 1, 'backbone': 1, 'notices': 1, 'unlocked': 1, 'beeps': 1, 'declan': 1, 'fruit': 1, 'oddest': 1, 'thing:': 1, 'affection': 1, 'knuckle-dragging': 1, 'sub-monkeys': 1, "sippin'": 1, 'cuckoo': 1, 'de-scramble': 1, 'scrutinizing': 1, 'shoe': 1, 'inserts': 1, "writin'": 1, 'creepy': 1, 'kills': 1, 'title:': 1, 'pontiff': 1, 'gargoyles': 1, 'good-looking': 1, 'open-casket': 1, 'material': 1, 'sour': 1, 'paparazzo': 1, 'joy': 1, 'robin': 1, 'williams': 1, 'bits': 1, 'co-sign': 1, 'photos': 1, 'turlet': 1, 'attractive_woman_#1:': 1, 'attractive_woman_#2:': 1, 'trade': 1, 'bras': 1, 'panties': 1, 'volunteer': 1, 'assume': 1, 'dentist': 1, 'mary': 1, "school's": 1, 'bake': 1, "betsy'll": 1, 'runs': 1, 'depending': 1, 'strips': 1, 'eggshell': 1, 'malabar': 1, 'ivory': 1, 'mediterranean': 1, 'ecru': 1, 'tow': 1, 'lobster-politans': 1, 'smelling': 1, 'one-hour': 1, 'zone': 1, 'correction': 1, 'lobster-based': 1, 'designer': 1, 'laughter': 1, 'unhook': 1, 'moving': 1, 'tow-talitarian': 1, 'totalitarians': 1, 'stalin': 1, 'forced': 1, 'labor': 1, 'insensitive': 1, 'winch': 1, 'enforced': 1, 'fatty': 1, 'ralph': 1, 'ralphie': 1, 'tow-joes': 1, 'territorial': 1, "family's": 1, 'remembers': 1, 'process': 1, 'splash': 1, 'jaegermeister': 1, 'add': 1, 'sloe': 1, 'triple-sec': 1, 'quadruple-sec': 1, 'gunk': 1, "dog's": 1, 'absolut': 1, 'stripe': 1, 'aquafresh': 1, 'funniest': 1, 'venom': 1, 'louisiana': 1, 'loboto-moth': 1, 'sweetie': 1, 'pregnancy': 1, 'presto:': 1, 'ultimate': 1, 'bleacher': 1, 'menace': 1, 'swig': 1, 'wipes': 1, 'entering': 1, 'forget-me-drinks': 1, 'rickles': 1, 'arabs': 1, 'gibson': 1, 'mexicans': 1, 'grammys': 1, 'hispanic_crowd:': 1, 'jeers': 1, 'sternly': 1, 'disturbance': 1, 'filed': 1, 'infor': 1, 'ripper': 1, 'doppler': 1, "queen's": 1, 'surgeonnn': 1, 'piling': 1, 'unkempt': 1, 'attractive': 1, 'spits': 1, 'bottoms': 1, 'retain': 1, 'misconstrue': 1, "cuckold's": 1, 'horns': 1, 'moon-bounce': 1, 'amiable': 1, 'newsies': 1, 'scruffy_blogger:': 1, 'access': 1, 'politicians': 1, 'issues': 1, 'declare': 1, 'frontrunner': 1, 'mansions': 1, 'abolish': 1, 'democracy': 1, 'dictator': 1, 'juan': 1, 'perã³n': 1, 'madonna': 1, 'dennis': 1, 'kucinich': 1, 'twerpy': 1, 'unbelievably': 1, 'manuel': 1, 'fake': 1, 'moustache': 1, 'ees': 1, 'mild': 1, 'backing': 1, 'reminded': 1, 'quarry': 1, 'stones': 1, 'woodchucks': 1, 'mailbox': 1, 'cell': 1, 'butter': 1, 'tasty': 1, 'almond': 1, 'listens': 1, 'compromise:': 1, 'luckiest': 1, 'remaining': 1, 'scratcher': 1, 'kick-ass': 1, 'shush': 1, 'propose': 1, 'willing': 1, 'halvsies': 1, 'lugs': 1, 'splendid': 1, 'weather': 1, 'way:': 1, 'tying': 1, 'crippling': 1, 'refinanced': 1, 'twenty-six': 1, 'cowboy': 1, 'encouraged': 1, 'half-day': 1, 'encouraging': 1, 'widow': 1, 'option': 1, 'pep': 1, 'squad': 1, 'cheered': 1, 'runners': 1, 'ninety-seven': 1, 'break-up': 1, 'cheated': 1, 'showered': 1, 'soaps': 1, 'massage': 1, 'oils': 1, 'maiden': 1, 'nicer': 1, "she'll": 1, 'parenting': 1, 'childless': 1, 'goodwill': 1, 'attached': 1, 'direction': 1, "mecca's": 1, "don'tcha": 1, 'oughtta': 1, 'dint': 1, "son's": 1, "bashir's": 1, 'derek': 1, 'jeter': 1, 'mariah': 1, 'carey': 1, 'muslim': 1, 'espousing': 1, 'view': 1, 'fbi_agent:': 1, 'fayed': 1, 'statue': 1, "liberty's": 1, 'principles': 1, 'discriminate': 1, 'employment': 1, 'housing': 1, 'patriotic': 1, 'bauer': 1, 'sanctuary': 1, 'super-tough': 1, 'africanized': 1, 'honeys': 1, 'environment': 1, 'dna': 1, 'strains': 1, 'species': 1, 'protesting': 1, 'inclination': 1, 'anonymous': 1, 'partners': 1, 'privacy': 1, 'buzziness': 1, 'connor-politan': 1, 'oh-so-sophisticated': 1, 'connor': 1, 'kidneys': 1, 'guilt': 1, 'haircuts': 1, 'graves': 1, 'dig': 1, 'ballot': 1, 'gore': 1, 'presidential': 1, 'stolen': 1, 'falsetto': 1, 'albert': 1, 'landlord': 1, 'and-and': 1, 'getaway': 1, 'flanders:': 1, 'expose': 1, 'dateline': 1, 'nominated': 1, 'peabody': 1, 'exclusive:': 1, 'forty-two': 1, 'evergreen': 1, 'terrace': 1, 'suburban': 1, 'actress': 1, 'billiard': 1, "spiffin'": 1, 'inquiries': 1, 'enabling': 1, 'mags': 1, 'taught': 1, 'abcs': 1, 'a-b-': 1, 'forgets': 1, 'p-k': 1, "s'pose": 1, "cleanin'": 1, 'month': 1, "she'd": 1, 'stood': 1, 'regretful': 1, 'term': 1, 'tidy': 1, 'benjamin': 1, 'life-sized': 1, 'legoland': 1, "stealin'": 1, 'chinese_restaurateur:': 1, 'espn': 1, 'ling': 1, 'chow': 1, 'passenger': 1, 'incredible': 1, 'thought_bubble_lenny:': 1, "somethin':": 1, 'generally': 1, 'limericks': 1, 'coast': 1, 'massachusetts': 1, 'nantucket': 1, 'unusual': 1, 'personal': 1, 'characteristic': 1, 'simplest': 1, 'a-a-b-b-a': 1, 'dumbass': 1, 'whistling': 1, 'nonchalantly': 1, 'chained': 1, 'tomato': 1, 'tomahto': 1, 'comedies': 1, 'reckless': 1, 'gesture': 1, 'blows': 1, 'sidelines': 1, "who'da": 1, 'chapter': 1, 'insults': 1, 'disguised': 1, 'suspenders': 1, 'circus': 1, 'clown-like': 1, 'insecure': 1, 'envy-tations': 1, 'hate-hugs': 1, 'spamming': 1, 'faint': 1, 'praise': 1, 'frozen': 1, 'toledo': 1, 'take-back': 1, "people's": 1, 'eager': 1, 'happily:': 1, 'community': 1, 'playhouse': 1, 'bathed': 1, 'glowers': 1, 'sticking-place': 1, 'fail': 1, 'x-men': 1, '2': 1, 'macbeth': 1, 'mac-who': 1, 'gulliver_dark:': 1, 'bedridden': 1, 'unable': 1, 'toe': 1, 'paintings': 1, 'melodramatic': 1, 'nonsense': 1, 'training': 1, 'bleeding': 1, "murphy's": 1, "pressure's": 1, 'bon-bons': 1, 'declared': 1, 'microbrew': 1, 'cobra': 1, 'solves': 1, 'cupid': 1, 'unattended': 1, 'fl': 1, 'ventriloquism': 1, 'approval': 1, 'cure': 1, 'ails': 1, 'cuddling': 1, 'steaming': 1, 'cocoa': 1, 'rainbows': 1, 'surprised/thrilled': 1, 'full-bodied': 1, 'full-blooded': 1, 'harmony': 1, 'loyal': 1, 'hemoglobin': 1, "disrobin'": 1, 'rosey': 1, 'bubbles-in-my-nose-y': 1, "mo'": 1, 'musical': 1, 'kodos:': 1, 'measure': 1, 'distance': 1, 'unrelated': 1, 'seductive': 1, 'cologne': 1, 'shaved': 1, 'knuckles': 1, 'shakes': 1, 'handwriting': 1, 'idioms': 1, 'midge:': 1, 'gayer': 1, 'occurred': 1, 'timbuk-tee': 1, 'fast-paced': 1, 'nibble': 1, 'teriyaki': 1, 'frenchman': 1, 'spoon': 1, 'duke': 1, 'amnesia': 1, 'missing': 1, 'squeeze': 1, 'irishman': 1, 'pretends': 1, "o'reilly": 1, 'radiator': 1, 'rebuilt': 1, 'briefly': 1, 'uncreeped-out': 1, 'mines': 1, 'taste': 1, 'romance': 1, 'perverse': 1, 'hearse': 1, 'civil': 1, 'nurse': 1, 'proof': 1, 'simultaneous': 1, 'i/you': 1, 'finale': 1, 'indicates': 1, 'half-beer': 1, 'enjoyed': 1, 'halloween': 1, 'treehouse': 1, 'horror': 1, 'xx': 1, 'shhh': 1, 'habitrail': 1, 'donuts': 1, 'meals': 1, 'philosophical': 1, 'southern': 1, 'indeed': 1, 'gator': 1, 'mccall': 1, 'recruiter': 1, 'specializes': 1, 'headhunters': 1, 'valuable': 1, 'protesters': 1, 'marched': 1, 'plants': 1, 'radiation': 1, "poisonin'": 1, 'passports': 1, 'loafers': 1, 'hooray': 1, 'nap': 1, 'awake': 1, 'meteor': 1, 'flexible': 1, 'marshmallow': 1, 'dumbest': 1, "stabbin'": 1, 'humanity': 1, 'mocking': 1, 'official': 1, 'releasing': 1, 'hounds': 1, 'releases': 1, 'wolverines': 1, 'horses': 1, "eatin'": 1, 'wish-meat': 1, 'bust': 1, 'exchanged': 1, 'whispered': 1, 'huddle': 1, 'nursemaid': 1, "elmo's": 1, 'reunion': 1, 'andrew': 1, 'mccarthy': 1, 'attend': 1, 'lied': 1, 'itchy': 1, 'planted': 1, 'chair': 1, 'refill': 1, 'cozies': 1, 'sassy': 1, 'cushions': 1, 'cushion': 1, 'flash': 1, 'drives': 1, 'data': 1, 'hammy': 1, 'estranged': 1, "tomorrow's": 1, 'forecast': 1, 'cloudy': 1, 'sunny': 1, 'guessing': 1, 'thunder': 1, 'storms': 1, 'exultant': 1, 'ahem': 1, 'wagering': 1, 'installed': 1, "america's": 1, "blowin'": 1, 'homeland': 1, 'mm-hmm': 1, 'tsking': 1, 'presided': 1, 'suave': 1, 'debonair': 1, 'offa': 1, "narratin'": 1, 'cricket': 1, 'uniforms': 1, 'rain': 1, "'pu": 1, 'she-pu': 1, 'everyday': 1, 'mimes': 1, 'saving': 1, 'gheet': 1, 'darjeeling': 1, 'limited': 1, 'low-blow': 1, 'boxer:': 1, 'pre-recorded': 1, 'rug': 1, "mother's": 1, 'panicked': 1, 'carny:': 1, 'teacup': 1, 'whispers': 1, 'rutabaga': 1, 'putty': 1, 'innocuous': 1, 'flashbacks': 1, 'ferry': 1, 'pointedly': 1, 'lovejoy': 1, 'ralph_wiggum:': 1, 'popping': 1, 'man_with_crazy_beard:': 1, 'outrageous': 1, 'beard': 1, 'expense': 1, 'beards': 1, "askin'": 1, 'scatter': 1, 'cockroaches': 1, 'rip': 1, 'stretch': 1, 'tee': 1, 'california': 1, 'judgments': 1, 'legally': 1, 'side:': 1, 'murdoch': 1, 'rupert_murdoch:': 1, 'jay': 1, 'leno': 1, 'jay_leno:': 1, 'iran': 1, 'weapon': 1, 'rig': 1, 'leak': 1, 'disappear': 1, 'nbc': 1, 'howya': 1, 'button-pusher': 1, 'obama': 1, 'booth': 1, 'cliff': 1, 'lee': 1, 'zack': 1, 'grenky': 1, 'completely': 1, 'colossal': 1, 'exception:': 1, 'inning': 1, 'domed': 1, 'bunion': 1, 'notably': 1, 'ineffective': 1, 'portentous': 1, 'dexterous': 1, 'understood': 1, 'poin-dexterous': 1, 'laid': 1, 'key': 1, 'developed': 1, 'statistician': 1, 'bill_james:': 1, 'taxes': 1, 'eight-year-old': 1, 'ballclub': 1, 'sagacity': 1, 'stengel': 1, 'single-mindedness': 1, 'steinbrenner': 1, 'stein-stengel-': 1, 'stats': 1, 'ratio': 1, 'occupied': 1, 'sobo': 1, 'conversion': 1, 'factor': 1, 'refreshingness': 1, 'effervescence': 1, 'benjamin:': 1, 'minus': 1, 'rueful': 1, 'advertise': 1, 'specials': 1, 'scientific': 1, 'annus': 1, 'horribilis': 1, 'resolution': 1, 'fixes': 1, 'courthouse': 1, 'compare': 1, 'exquisite': 1, 'reward': 1, 'planned': 1, 'addiction': 1, 'compels': 1, 'executive': 1, 'average-looking': 1, '_burns_heads:': 1, 'hangout': 1, 'offense': 1, 'whatchamacallit': 1, 'swishkabobs': 1, "grandmother's": 1, 'urinal': 1, "getting'": 1, 'renovations': 1, "friend's": 1, 'lainie:': 1, 'carlotta:': 1, 'jã¤germeister': 1, 'pink': 1, 'lemonade': 1, 'strawberry': 1, 'chapstick': 1, "cupid's": 1, 'wazoo': 1, 'drains': 1, 'scram': 1, 'crinkly': 1, 'eva': 1, 'braun:': 1, "man's_voice:": 1, 'huhza': 1, '3': 1, 'whoopi': 1, 'seminar': 1, 'motor': 1, 'lodge': 1, 'tornado': 1, 'kissingher': 1, 'earth': 1, 'casting': 1, 'pall': 1, 'serum': 1, 'walther': 1, 'hotenhoffer': 1, 'pharmaceutical': 1, 'occupation': 1, 'renders': 1, 'tolerable': 1, 'normals': 1, 'irrelevant': 1, 'elaborate': 1, 'extract': 1, 'synthesize': 1, 'scrutinizes': 1, 'grease': 1, 'germans': 1, 'when-i-get-a-hold-of-you': 1, 'dammit': 1, 'typed': 1, 'rapidly': 1, 'donated': 1, 'haiti': 1, "y'see": 1, 'pushes': 1, 'strangles': 1, 'sue': 1, 'hollowed-out': 1, 'contented': 1, 'phony': 1, 'grin': 1, 'plastered': 1, 'freaky': 1, 'slipped': 1, 'mickey': 1, 'churchy': 1, 'brainheaded': 1, 'fence': 1, 'sheet': 1, 'wistful': 1, 'prayers': 1, 'choked': 1, 'iddilies': 1, 'diddilies': 1, 'christian': 1, 'wuss': 1, 'confession': 1, 'make:': 1, 'solely': 1, 'noble': 1, 'intention': 1, 'two-thirds-empty': 1, 'poetry': 1, 'multi-purpose': 1, 'email': 1, 'edna-lover-one-seventy-two': 1, 'lowest': 1, "edna's": 1, 'drummer': 1, 'gulps': 1, 'plucked': 1, 'wikipedia': 1, 'frankenstein': 1, 'neighboreeno': 1, 'plain': 1, 'bagged': 1, 'tiger': 1, 'prompting': 1, 'sen': 1, 'cesss': 1, 'surprising': 1, 'entrance': 1, 'jewelry': 1, 'pronto': 1, 'drawer': 1, "linin'": 1, 'presidents': 1, 'upgrade': 1, 'commanding': 1, 'appropriate': 1, 'reaction': 1, 'sooo': 1, 'fresco': 1, "speakin'": 1, 'farthest': 1, 'drove': 1, 'roz': 1, 'ditched': 1, 'lady-free': 1, 'eighty-three': 1, 'souvenir': 1, 'sizes': 1, 'hare-brained': 1, 'schemes': 1, 'pillows': 1, 'adopted': 1, 'capuchin': 1, 'bonding': 1, 'phase': 1, 'safecracker': 1, 'caper': 1, 'fantasy': 1, 'novel': 1, 'brag': 1, 'publish': 1, 'modestly': 1, 'lucinda': 1, 'placed': 1, 'fifth': 1, 'shard': 1, 'stained-glass': 1, 'read:': 1, "'your": 1, 'parents': 1, "'": 1, 'gregor': 1, 'understood:': 1, 'journey': 1, 'reader': 1, 'selection': 1, 'steampunk': 1, 'frink-y': 1, 'mock-up': 1, 'title': 1, 'tuna': 1, 'itself': 1, 'kansas': 1, 'golden': 1, 'literary': 1, 'lis': 1, 'milhouses': 1, 'jacksons': 1, 'xanders': 1, 'aidens': 1, 'dreamy': 1, 'aiden': 1, 'vampire': 1, 'transylvania': 1, 'prep': 1, 'brooklyn': 1, 'fuzzlepitch': 1, 'bloodball': 1, 'lame': 1, 'publishers': 1, 'sistine': 1, 'chapel': 1, 'mural': 1, 'hems': 1, 'haws': 1, 'watched': 1, 'bluff': 1, 'conversations': 1, 'annie': 1, 'meaning': 1, 'brain-switching': 1, 'ceremony': 1, 'sleeping': 1, 'switched': 1, 'dashes': 1, 'lennyy': 1, 'sheets': 1, 'wind': 1, 'dignified': 1, 'stumble': 1, 'typing': 1, 'lead': 1, 'pledge': 1, 'allegiance': 1, 'conclude': 1, 'thanking': 1, 'hosting': 1, 'fumigated': 1, 'er': 1, 'adjourned': 1, 'convenient': 1, 'sangre': 1, 'de': 1, 'los': 1, 'muertos': 1, 'friend:': 1, 'mexican': 1, 'mexican_duffman:': 1, 'ho-la': 1, 'pepto-bismol': 1, 'facebook': 1, 'scrubbing': 1, 'hardy': 1, 'unhappy': 1, 'taxi': 1, 'wears': 1, 'nemo': 1, 'brace': 1, 'lear': 1, 'be-stainã¨d': 1, 'swatch': 1, 'gentles': 1, 'begin': 1, 'medieval': 1, 'self-satisfied': 1, 'tapestry': 1, 'sponge:': 1, 'gutenberg': 1, 'bartholomã©:': 1, 'overstressed': 1, 'helps': 1, 'recap:': 1, 'unjustly': 1, 'lofty': 1, 'perch': 1, 'wound': 1, 'barter': 1, 'persia': 1, 'raggie': 1, 'continued': 1, 'enterprising': 1, 'seamstress': 1, 'fledgling': 1, 'thousand-year': 1, 'grace': 1, 'predictable': 1, 'startled': 1, 'sensitivity': 1, 'jobless': 1, 'washouts': 1, 'error': 1, 'blamed': 1, 'rent': 1, 'pizzicato': 1, 'buyer': 1, 'specified': 1, 'stepped': 1, 'done:': 1, 'arguing': 1, 'guts': 1, 'rationalizing': 1, 'pack': 1, 'adjust': 1, 'runaway': 1, 'monorails': 1, 'nascar': 1, 'gordon': 1, 'jeff_gordon:': 1, "plank's": 1, 'land': 1, 'traitors': 1, 'lou': 1, 'eliminate': 1, 'bulldozing': 1, 'tire': 1, 'sinkhole': 1, 'administration': 1, 'solved': 1, 'fears': 1, 'most:': 1, "s'okay": 1, 'nuked': 1, 'swimmers': 1, 'shame': 1, 'wrap': 1, 'plums': 1, 'tin': 1, 'philosophic': 1, 'samples': 1, 'shelbyville': 1, 'sperm': 1, 'necklace': 1, 'eww': 1, 'fund': 1, 'lend': 1, 'sesame': 1, 'frogs': 1, 'settles': 1, 'woe:': 1, 'gamble': 1, "daughter's": 1, 'fdic': 1, 'grubby': 1, 'site': 1, 'onion': 1, 'rings': 1, 'badmouth': 1, 'country': 1, 'prettiest': 1, "aristotle's": 1, 'poetics': 1, 'rice': 1, 'promotion': 1, 'poured': 1, 'hooky': 1, 'throats': 1, 'grind': 1, 'crunch': 1, 'nature': 1, 'dipping': 1, 'edge': 1, 'groveling': 1, 'brown': 1, 'wiggle-frowns': 1, 'abusive': 1, 'tolerance': 1, 'dejected_barfly:': 1, 'slurred': 1, 'hammock': 1, 'bleak': 1, 'icy': 1, 'chill': 1, 'dropping': 1, 'janette': 1, 'cheryl': 1, 'rotten': 1, 'pretend': 1, 'improv': 1, 'imaginary': 1, 'chip': 1, 'ends': 1, 'skydiving': 1, "pullin'": 1, 'app': 1, 'random': 1, 'occurrence': 1, 'squeezed': 1, 'sap': 1, "choosin'": 1, 'adequate': 1, 'carnival': 1, 'miracle': 1, "tree's": 1, 'disillusioned': 1, 'reporter': 1, 'kenny': 1, 'brockelstein': 1, 'investigating': 1, 'cartoons': 1, 'thirty-three': 1, 'short_man:': 1, 'gruff': 1, 'rancid': 1, 'innocence': 1, 'man_with_tree_hat:': 1, 'hoax': 1, 'tree_hoper:': 1, 'crappy': 1, 'pretentious_rat_lover:': 1, 'manchego': 1, 'aziz': 1, 'lurks': 1, 'racially-diverse': 1, 'network': 1, 'experienced': 1, 'acronyms': 1, 'kinderhook': 1, 'collapse': 1, 'rome': 1, 'inexorable': 1, 'march': 1, 'progress': 1, '_eugene_blatz:': 1, 'slaves': 1, 'supermarket': 1, 'starve': 1, 'unsourced': 1, 'undated': 1, 'convinced': 1, 'beyond': 1, 'suspended': 1, 'voodoo': 1, 'curse': 1, 'gestated': 1, 'popped': 1, 'acquitted': 1, 'nightmare': 1, 'in-ground': 1, 'shades': 1, 'grey': 1, 'what-for': 1, 'fiction': 1, 'sheriff': 1, 'kissed': 1, 'said:': 1, 'imitating': 1, 'griffith': 1, "'now": 1, 'aunt': 1, 'asks': 1, "fishin'": 1, "hole'": 1, 'argue': 1, 'stirrers': 1, 'holy': 1, 'faiths': 1, 'easy-going': 1, 'offshoot': 1, 'protestantism': 1, 'handler': 1, "thing's": 1, 'rims': 1, 'ribbon': 1, 'cherry': 1, 'blurbs': 1, 'sedaris': 1, 'flack': 1, 'pews': 1, 'catholic': 1, 'sexton': 1, 'rector': 1, 'whim': 1, "nothin's": 1, 'mid-conversation': 1, 'padres': 1, 'tigers': 1, 'polygon': 1, 'hexa-': 1, 'octa-': 1, 'decide:': 1, 'loudly': 1, "beggin'": 1, 'legend': 1, 'buzz': 1, 'recorded': 1, 'options': 1, 'carefully': 1, 'committing': 1, 'press': 1, 'life-extension': 1, 'male_singers:': 1, 'painless': 1, 'brings': 1, 'delays': 1, 'ron': 1, 'moe-ron': 1, 'libraries': 1, 'newspaper': 1, 'rods': 1, 'compressions': 1, 'gees': 1, 'singing/pushing': 1, "stayin'": 1, 'living': 1, 'fools': 1, 'lease': 1, 'post-suicide': 1, 'afterglow': 1, 'shorter': 1, 'applesauce': 1, 'leaving': 1, 'choked-up': 1, 'passes': 1, 'reentering': 1, 'noosey': 1, 'noose': 1, 'worldview': 1, 'cleaning': 1, 'growing': 1, 'carpet': 1, 'layer': 1, 'congoleum': 1, 'hardwood': 1, 'jig': 1, 'improved': 1, 'non-losers': 1, 'getcha': 1, 'aged': 1, 'venture': 1, 'capitalists': 1, 'mostly': 1, 'kentucky': 1, 'kool': 1, 'aid': 1, 'fantastic': 1, 'startup': 1, 'branding': 1, 'specialists': 1, 'touch': 1, 'rafter': 1, 'comforting': 1, 'holidays': 1, 'expensive': 1, 'beer:': 1, 'platinum': 1, 'paste': 1, 'hairs': 1, 'youth': 1, 'babar': 1, 'confidential': 1, 'cousin': 1, 'celeste': 1, 'takeaway': 1, 'royal': 1, 'trainers': 1, 'average': 1, 'schmoe': 1, "can't-believe-how-bald-he-is": 1, 'science': 1, 'exhibit': 1, 'hunger': 1, "games'd": 1, 'womb': 1, 'life:': 1, 'ninety-six': 1, "number's": 1, 'winning': 1, 'celebrate': 1, "ragin'": 1, 'mini-dumpsters': 1, 'gasoline': 1, 'build': 1, 'swimming': 1, 'freaking': 1, "cashin'": 1, 'safety': 1, 'ripped': 1, 'tense': 1, 'voicemail': 1, 'offensive': 1, 'sickened': 1, 'moolah-stealing': 1, 'jackpot-thief': 1, "something's": 1, 'reflected': 1, 'lenses': 1, 'sunglasses': 1, 'geyser': 1, 'strokkur': 1, 'geysir': 1, 'minors': 1, 'fat_in_the_hat:': 1, 'pawed': 1, 'skunk': 1, 'furry': 1, 'knit': 1, 'thnord': 1, 'leathery': 1, 'hidden': 1, 'selfish': 1, 'radioactive': 1, 'hellhole': 1, 'superpower': 1, 'whoa-ho': 1, 'looooooooooooooooooong': 1, 'experience': 1, 'schedule': 1, 'hers': 1, 'ideas': 1, 'divorced': 1, 's-a-u-r-c-e': 1, 'touches': 1, 'earpiece': 1, 'senators:': 1, 'abercrombie': 1, 'billingsley': 1, 'beaumont': 1, "plaster's": 1, 'flaking': 1, 'lay': 1, "stallin'": 1, 'groans': 1, 'squeals': 1, 'liser': 1, 'cletus_spuckler:': 1, 'conditioning': 1, 'barkeeps': 1, 'gin-slingers': 1, 'beer-jerks': 1, 'compete': 1, 'stores': 1, 'hooch': 1, 'cap': 1, 'masks': 1, 'uninhibited': 1, 'invulnerable': 1, 'shuts': 1, 'nick': 1, 'fury': 1, 'batmobile': 1, 'wolveriskey': 1, "'ere": 1, 'portfolium': 1, "boy's": 1, 'knock-up': 1, 'powers': 1, 'created': 1, 'virility': 1, 'virile': 1, "brady's": 1, 'libido': 1, 'rocks': 1, 'sets': 1, 'legs:': 1, 'kidnaps': 1, 'grateful': 1, "must've": 1, 'corn': 1, 'eighty-five': 1, 'goal': 1, 'nfl_narrator:': 1, 'breathtaking': 1, 'ignorance': 1, 'dislike': 1, 'rookie': 1, 'housewife': 1, 'savvy': 1, 'veteran': 1, "tv'll": 1, "yesterday's": 1, 'whatsit': 1, 'lifestyle': 1, 'contract': 1, 'fast-food': 1, 'hibachi': 1, "how're": 1, 'transfer': 1, 'hyper-credits': 1, 'ding-a-ding-ding-ding-ding-ding-ding': 1, 'ding-a-ding-ding-a-ding-ding': 1, 'blade': 1, 'spender': 1, 'gossipy': 1, 'jukebox_record:': 1, 'robot': 1, 'incapable': 1, 'emotion': 1, 'terrifying': 1, 'quebec': 1, 'nordiques': 1, 'spooky': 1, 'colorado': 1, 'avalanche': 1, "toot's": 1, 'verdict': 1, 'overturned': 1, 'sequel': 1, 'neon': 1, 'repairman': 1, 'bolting': 1, 'wrapped': 1, 'shoulders': 1, 'si-lent': 1, 'ho-ly': 1, 'eve': 1, "startin'": 1, 'gift:': 1, 'shrieks': 1, 'angrily': 1, 'wenceslas': 1, 'karaoke_machine:': 1, 'doooown': 1, 'weight': 1, 'thirty-nine': 1, "foolin'": 1, 'car:': 1, 'habit': 1, 'hateful': 1, 'chubby': 1, 'chunky': 1, 'blobbo': 1, 'slobbo': 1, 'michelin': 1, 'stay-puft': 1, 'chumbawamba': 1, 'balloon': 1, 'papa': 1, 'grandã©': 1, 'augustus': 1, 'gloop': 1, 'beached': 1, 'whale': 1, 'boned': 1, 'wisconsin': 1, 'skinny': 1, 'butterball': 1, 'dumptruck': 1, 'jelly': 1, 'pudgy': 1, 'wudgy': 1, 'lard': 1, 'blubberino': 1, 'buddha': 1, 'tubman': 1, 'ton': 1, 'blob': 1, 'saget': 1, 'chub': 1, 'hub': 1, 'calvin': 1, 'manfred': 1, 'manboobs': 1, '21': 1, 'lump': 1, 'fatso': 1, 'harvey': 1, 'obese': 1, 'cannoli': 1, 'mahatma': 1, 'gumbo': 1, 'salvador': 1, 'deli': 1, 'elmer': 1, 'pantry': 1, 'sponge': 1, 'snackie': 1, 'onassis': 1, 'foodie': 1, 'hoagie': 1, 'carmichael': 1, 'load': 1, 'belts': 1, 'homunculus': 1, "feelin's": 1, 'goblins': 1, 'pridesters:': 1, 'movement': 1, 'drinking:': 1, 'relaxed': 1, 'apron': 1, 'limber': 1, "tap-pullin'": 1, 'hook': 1, 'sideshow': 1, 'laney': 1, 'fontaine': 1, 'vulgar': 1, 'fulla': 1, 'jimmy': 1, 'stewart': 1, 'super-nice': 1, "can'tcha": 1, 'items': 1, 'shells': 1, 'lime': 1, "high-falutin'": 1, 'theatah': 1, 'exits': 1, 'sight': 1, 'tomatoes': 1, 'bachelorette': 1, 'lady_duff:': 1, 'hearing': 1, 'interesting': 1, 'clubs': 1, "lovers'": 1, 'spiritual': 1, 'other_book_club_member:': 1, 'liven': 1, 'charming': 1, 'whaaaa': 1, 'bones': 1, 'dazed': 1, 'bounced': 1, 'sass': 1, 'heaving': 1, "coaster's": 1, 'mouths': 1, "snappin'": 1, 'ruint': 1, "i-i'll": 1, 'savings': 1, 'rubbed': 1, 'defected': 1, 'north': 1, 'korea': 1, 'dae': 1, 'pickles': 1, 'background': 1, 'ummmmmmmmm': 1, 'ehhhhhhhh': 1, 'errrrrrr': 1, 'ehhhhhhhhh': 1, 'ehhhhhh': 1, 'kay': 1, 'apply': 1, 'jerking': 1, 'chunk': 1, 'oak': 1, 'poplar': 1, 'knowledge': 1, 'wood': 1, 'something:': 1, 'elizabeth': 1, 'languages': 1, 'portuguese': 1, 'eu': 1, 'nã£o': 1, 'quero': 1, 'dizer': 1, 'para': 1, 'mostrar': 1, 'je': 1, 'ne': 1, 'veux': 1, 'pas': 1, 'montrer': 1, 'refiero': 1, 'presumir': 1, 'watashi': 1, 'koji': 1, 'suru': 1, 'wakede': 1, 'arimasen': 1, 'majesty': 1, 'notice': 1, 'repressed': 1, 'spelling': 1, 'grammar': 1, 'ze-ro': 1, 'kemi': 1, 'prince': 1, 'trashed': 1, 'happens': 1, 'cruiser': 1, 'answered': 1, 'tank': 1, 'gil_gunderson:': 1, 'mumble': 1, 'conclusions': 1, 'tied': 1, 'jernt': 1, 'elocution': 1, 'pronounce': 1, 'over-pronouncing': 1, 'online': 1, 'pernt': 1, 'tease': 1, 'thrown': 1, 'rom': 1, 'coms': 1, 'wheels': 1, 'witches': 1, "treatin'": 1, 'countryman': 1, 'chinua': 1, 'achebe': 1, 'apart': 1, 'ease': 1, 'optimistic': 1, 'amused': 1, 'comment': 1, 'eaten': 1, 'string': 1, 'eats': 1, 'stretches': 1, 'moon': 1, 'dregs': 1, 'bugs': 1, 'mice': 1, 'treats': 1, 'bar:': 1, 'cab': 1, 'waist': 1, 'shyly': 1, 'lifts': 1, 'index': 1, 'examples': 1, 'albeit': 1, 'depressing': 1, 'bedtime': 1, 'premise': 1, "cheerin'": 1, 'pine': 1, 'suffering': 1, 'silence': 1, 'rafters': 1, 'badly': 1, 'smiles': 1, 'divine': 1, 'four-star': 1, 'brother-in-law': 1, 'nachos': 1, 'triangle': 1, 'atari': 1, 'oblivious': 1, 'aims': 1, 'dumpster': 1, 'gags': 1, 'psst': 1, 'asleep': 1, 'mellow': 1, 'aghast': 1, 'kirk_voice_milhouse:': 1, 'milks': 1, 'lumpa': 1, 'coal': 1, 'stocking': 1, 'sucking': 1, 'getup': 1, 'part-time': 1, 'selective': 1, 'reaches': 1, 'opens': 1, 'whoops': 1, 'explanation': 1, 'anxious': 1, 'bloodiest': 1, 'thirsty': 1, 'log': 1, 'eddie': 1, 'pretzels': 1, 'peeping': 1, 'toms': 1, 'terrorizing': 1, 'neighborhood': 1, 'scent': 1, 'bobo': 1, 'wieners': 1, 'figures': 1, 'disappointment': 1, 'onto': 1, 'dealt': 1, 'control': 1, 'tremendous': 1, 'tv-station_announcer:': 1, 'this:': 1, 'small_boy:': 1, 'furiously': 1, '_marvin_monroe:': 1, 'monroe': 1, 'gimmicks': 1, 'pills': 1, 'fad': 1, 'diets': 1, 'bliss': 1, '1-800-555-hugs': 1, "life's": 1, 'heh-heh': 1, 'runt': 1, 'gut': 1, 'tragedy': 1, 'ohhhh': 1, 'hottest': 1, 'heave-ho': 1, 'dingy': 1, 'flophouse': 1, 'yellow-belly': 1, 'jackass': 1, "'er": 1, 'hunka': 1, 'beef': 1, 'contemplates': 1, 'jams': 1, 'yells': 1, 'drunkenly': 1, "larry's": 1, 'difference': 1, 'slop': 1, 'hose': 1, 'beings': 1, 'candles': 1, 'tablecloth': 1, 'drift': 1, 'deals': 1, 'capitol': 1, 'curiosity': 1, "c'mom": 1, 'employees': 1, 'spouses': 1, 'decision': 1, 'simpsons': 1, 'faced': 1, "should've": 1, 'listened': 1, 'bites': 1, 'oooh': 1, "costume's": 1, 'ape-like': 1, 'saga': 1, 'riveting': 1, 'humiliation': 1, "rasputin's": 1, "professor's": 1, 'patented': 1, 'coma': 1, 'show-off': 1, 'muscles': 1, 'engraved': 1, 'richard:': 1, 'audience:': 1, 'ref': 1, 'issuing': 1, 'warning': 1, 'rasputin': 1, 'referee': 1, 'permitting': 1, 'smitty:': 1, 'squabbled': 1, 'washed': 1, 'refreshment': 1, 'trustworthy': 1, 'sharing': 1, 'birthplace': 1, 'roy': 1, 'scum-sucking': 1, 'pus-bucket': 1, 'eyeballs': 1, 'often': 1, 'bull': 1, 'connection': 1, 'lighten': 1, 'ironic': 1, 'snotty': 1, 'sister-in-law': 1, 'picky': 1, 'blur': 1, 'decided': 1, 'happiness': 1, 'pancakes': 1, 'disdainful': 1, 'heals': 1, 'wounds': 1})
['||period||', '||return|', '||comma||', '||left_parentheses||', '||right_parentheses||', 'the', 'i', 'you', '||exclamation_mark||', 'moe_szyslak:', '||question_mark||', 'a', 'homer_simpson:', 'to', 'and', 'of', 'my', 'it', 'that', 'in', '||quotation_mark||', 'me', 'is', 'this', "i'm", 'for', 'your', 'homer', 'on', 'hey', 'moe', 'oh', 'no', 'lenny_leonard:', 'what', 'with', 'yeah', 'all', 'just', 'like', 'but', 'barney_gumble:', 'so', 'be', 'here', 'carl_carlson:', "don't", 'have', 'up', "it's", 'well', 'out', 'do', 'was', 'got', 'are', 'get', 'we', 'uh', "that's", 'one', "you're", 'not', 'now', 'can', 'know', '||dash||', 'at', 'right', '/', 'how', 'if', 'back', 'marge_simpson:', 'about', 'he', 'from', 'go', 'gonna', 'there', 'they', 'beer', 'good', 'who', 'an', 'man', 'okay', 'little', 'his', 'as', 'some', "can't", 'then', 'never', "i'll", 'think', 'come', 'could', 'him', "i've"]
{'||period||': 1, '||return|': 2, '||comma||': 3, '||left_parentheses||': 4, '||right_parentheses||': 5, 'the': 6, 'i': 7, 'you': 8, '||exclamation_mark||': 9, 'moe_szyslak:': 10, '||question_mark||': 11, 'a': 12, 'homer_simpson:': 13, 'to': 14, 'and': 15, 'of': 16, 'my': 17, 'it': 18, 'that': 19, 'in': 20, '||quotation_mark||': 21, 'me': 22, 'is': 23, 'this': 24, "i'm": 25, 'for': 26, 'your': 27, 'homer': 28, 'on': 29, 'hey': 30, 'moe': 31, 'oh': 32, 'no': 33, 'lenny_leonard:': 34, 'what': 35, 'with': 36, 'yeah': 37, 'all': 38, 'just': 39, 'like': 40, 'but': 41, 'barney_gumble:': 42, 'so': 43, 'be': 44, 'here': 45, 'carl_carlson:': 46, "don't": 47, 'have': 48, 'up': 49, "it's": 50, 'well': 51, 'out': 52, 'do': 53, 'was': 54, 'got': 55, 'are': 56, 'get': 57, 'we': 58, 'uh': 59, "that's": 60, 'one': 61, "you're": 62, 'not': 63, 'now': 64, 'can': 65, 'know': 66, '||dash||': 67, 'at': 68, 'right': 69, '/': 70, 'how': 71, 'if': 72, 'back': 73, 'marge_simpson:': 74, 'about': 75, 'he': 76, 'from': 77, 'go': 78, 'gonna': 79, 'there': 80, 'they': 81, 'beer': 82, 'good': 83, 'who': 84, 'an': 85, 'man': 86, 'okay': 87, 'little': 88, 'his': 89, 'as': 90, 'some': 91, "can't": 92, 'then': 93, 'never': 94, "i'll": 95, 'think': 96, 'come': 97, 'could': 98, 'him': 99, "i've": 100, 'see': 101, 'want': 102, 'really': 103, 'look': 104, 'too': 105, 'guys': 106, 'been': 107, 'when': 108, 'make': 109, 'why': 110, 'ya': 111, 'bar': 112, 'her': 113, 'did': 114, 'time': 115, 'say': 116, 'ah': 117, 'or': 118, 'gotta': 119, 'marge': 120, 'take': 121, 'into': 122, 'love': 123, 'down': 124, 'more': 125, 'our': 126, 'am': 127, 'off': 128, 'guy': 129, 'sure': 130, 'barney': 131, 'two': 132, "there's": 133, 'thing': 134, 'lisa_simpson:': 135, 'would': 136, "we're": 137, 'where': 138, "he's": 139, 'had': 140, 'big': 141, 'tell': 142, 'let': 143, 'need': 144, 'money': 145, 'drink': 146, 'bart_simpson:': 147, "what's": 148, 'sorry': 149, 'over': 150, 'us': 151, 'something': 152, 'only': 153, 'ever': 154, 'by': 155, 'day': 156, 'will': 157, 'way': 158, 'wait': 159, 'she': 160, 'chief_wiggum:': 161, 'give': 162, 'even': 163, 'huh': 164, 'new': 165, "i'd": 166, 'god': 167, "didn't": 168, "ain't": 169, 'those': 170, 'great': 171, 'people': 172, 'phone': 173, "moe's": 174, 'eh': 175, 'has': 176, 'life': 177, 'much': 178, 'maybe': 179, 'lenny': 180, 'were': 181, 'than': 182, 'going': 183, 'mean': 184, 'place': 185, 'these': 186, 'should': 187, 'mr': 188, 'around': 189, "you've": 190, 'better': 191, 'wanna': 192, 'still': 193, 'help': 194, 'friend': 195, 'old': 196, 'home': 197, "'em": 198, 'name': 199, 'please': 200, 'night': 201, 'before': 202, 'noise': 203, 'last': 204, 'whoa': 205, 'tv': 206, 'aw': 207, 'seymour_skinner:': 208, 'boy': 209, 'face': 210, 'any': 211, 'made': 212, 'hello': 213, 'call': 214, 'thanks': 215, 'duff': 216, 'three': 217, 'drunk': 218, 'put': 219, "'cause": 220, 'listen': 221, 'their': 222, 'looking': 223, 'car': 224, 'bad': 225, 'again': 226, 'first': 227, 'very': 228, "let's": 229, 'best': 230, 'does': 231, 'wow': 232, 'yes': 233, 'another': 234, 'looks': 235, 'every': 236, 'ooh': 237, 'while': 238, 'them': 239, 'kent_brockman:': 240, 'said': 241, 'work': 242, 'wife': 243, 'other': 244, 'guess': 245, 'apu_nahasapeemapetilon:': 246, 'dad': 247, 'sweet': 248, "won't": 249, 'play': 250, 'feel': 251, 'tonight': 252, 'years': 253, 'singing': 254, 'springfield': 255, 'thought': 256, 'sobs': 257, 'everybody': 258, 'find': 259, 'voice': 260, "they're": 261, 'after': 262, 'dr': 263, 'things': 264, 'buy': 265, 'kids': 266, 'might': 267, 'check': 268, 'nice': 269, 'keep': 270, 'happy': 271, 'minute': 272, 'girl': 273, 'since': 274, 'head': 275, 'because': 276, 'shut': 277, 'show': 278, 'beat': 279, 'world': 280, 'sighs': 281, 'use': 282, 'bart': 283, "who's": 284, 'lisa': 285, 'sings': 286, 'chuckle': 287, 'friends': 288, 'always': 289, "isn't": 290, "you'll": 291, 'stupid': 292, 'kid': 293, 'c': 294, 'someone': 295, 'krusty_the_clown:': 296, 'ow': 297, 'which': 298, 'carl': 299, 'seen': 300, 'lot': 301, 'remember': 302, 'hundred': 303, 'anything': 304, 'laugh': 305, "here's": 306, 'talk': 307, 'job': 308, 'chuckles': 309, 'next': 310, 'glass': 311, 'through': 312, 'hell': 313, 'thank': 314, 'simpson': 315, 'laughs': 316, 'matter': 317, 'pretty': 318, 'five': 319, 'lost': 320, 'house': 321, 'says': 322, 'away': 323, 'hear': 324, 'long': 325, 'outta': 326, 'kind': 327, "nothin'": 328, 'hope': 329, 'woman': 330, 'happened': 331, 'believe': 332, 'tavern': 333, 'nervous': 334, 'once': 335, 'four': 336, 'family': 337, 'turn': 338, "c'mon": 339, '_montgomery_burns:': 340, 'waylon_smithers:': 341, 'book': 342, 'comes': 343, 'real': 344, 'wish': 345, "homer's": 346, 'stop': 347, 'ned_flanders:': 348, 'fat': 349, 'actually': 350, 'business': 351, 'myself': 352, 'idea': 353, 'ask': 354, 'game': 355, 'grampa_simpson:': 356, "goin'": 357, 'wants': 358, 'wrong': 359, "doin'": 360, 'used': 361, 'loud': 362, 'today': 363, 'party': 364, 'enough': 365, 'nobody': 366, 'burns': 367, "we've": 368, 'done': 369, 'problem': 370, 'town': 371, "comin'": 372, 'getting': 373, 'many': 374, "wouldn't": 375, "she's": 376, 'duffman:': 377, 'must': 378, 'everything': 379, 'hold': 380, 'doing': 381, 'free': 382, 'watch': 383, 'sounds': 384, 'try': 385, 'reading': 386, 'dollars': 387, 'na': 388, 'um': 389, 'bucks': 390, 'maggie': 391, 'took': 392, 'true': 393, 'thinking': 394, 'nah': 395, 'gee': 396, 'woo': 397, 'sound': 398, 'sell': 399, 'excuse': 400, 'makes': 401, 'everyone': 402, 'daughter': 403, 'secret': 404, 'stuff': 405, "where's": 406, 'chief': 407, 'gimme': 408, 'care': 409, 'wanted': 410, 'leave': 411, 'baby': 412, 'pay': 413, 'under': 414, 'most': 415, 'pants': 416, 'yourself': 417, 'beautiful': 418, 'canyonero': 419, 'being': 420, 'edna': 421, 'kill': 422, 'kemi:': 423, 'pick': 424, 'own': 425, 'mouth': 426, 'pal': 427, 'tough': 428, 'tipsy': 429, 'quickly': 430, 'left': 431, 'worry': 432, 'smithers': 433, 'went': 434, 'knew': 435, 'points': 436, 'save': 437, 'dead': 438, "you'd": 439, 'hurt': 440, 'dinner': 441, 'sad': 442, 'school': 443, 'tomorrow': 444, 'till': 445, 'hoo': 446, 'drinking': 447, 'hate': 448, 'sign': 449, 'fine': 450, 'hi': 451, 'quit': 452, 'feeling': 453, 'win': 454, 'heard': 455, 'dog': 456, 'die': 457, 'camera': 458, 'told': 459, 'excited': 460, 'skinner': 461, 'funny': 462, 'gave': 463, 'break': 464, 'eyes': 465, 'came': 466, 'ladies': 467, 'saw': 468, 'gets': 469, 'booze': 470, 'forget': 471, "couldn't": 472, 'alcohol': 473, 'easy': 474, 'flaming': 475, 'without': 476, 'fire': 477, 'million': 478, "aren't": 479, 'calling': 480, 'eat': 481, 'sir': 482, 'loves': 483, 'barflies:': 484, 'twenty': 485, 'hand': 486, 'seven': 487, 'nuts': 488, 'super': 489, 'krusty': 490, 'clean': 491, 'gone': 492, 'gasp': 493, 'loser': 494, 'date': 495, 'mad': 496, 'hands': 497, 'anyone': 498, 'jacques:': 499, 'cash': 500, 'kinda': 501, 'bring': 502, 'fight': 503, 'room': 504, 'kirk_van_houten:': 505, 'drive': 506, 'surprised': 507, 'burn': 508, 'mom': 509, 'noises': 510, 'small': 511, 'read': 512, 'artie_ziff:': 513, 'meet': 514, 'problems': 515, 'door': 516, 'happen': 517, "wasn't": 518, 'high': 519, 'behind': 520, 'cut': 521, 'called': 522, "lookin'": 523, "haven't": 524, 'course': 525, 'anyway': 526, "talkin'": 527, 'low': 528, "we'll": 529, 'trouble': 530, "doesn't": 531, 'coming': 532, 'sadly': 533, 'each': 534, 'six': 535, 'seymour': 536, 'gentlemen': 537, 'geez': 538, 'turns': 539, "y'know": 540, "somethin'": 541, 'chance': 542, 'tape': 543, 'already': 544, "drinkin'": 545, 'bartender': 546, 'professor_jonathan_frink:': 547, 'upset': 548, 'dear': 549, 'self': 550, "it'll": 551, 'end': 552, 'ugly': 553, 'machine': 554, 'eye': 555, 'larry:': 556, 'works': 557, 'fun': 558, 'disgusted': 559, 'hot': 560, 'bottle': 561, 'realizing': 562, 'sing': 563, 'song': 564, 'wiggum': 565, 'hours': 566, 'start': 567, 'moan': 568, 'outside': 569, 'mmmm': 570, 'sigh': 571, 'throat': 572, 'steal': 573, 'uh-oh': 574, 'heart': 575, 'close': 576, "gettin'": 577, 'blame': 578, 'trying': 579, 'change': 580, 'war': 581, 'dump': 582, 'whatever': 583, 'snake_jailbird:': 584, 'stay': 585, 'learn': 586, 'live': 587, 'stand': 588, 'lady': 589, 'keys': 590, 'least': 591, 'm': 592, 'spend': 593, 'crazy': 594, 'whole': 595, 'straight': 596, 'quiet': 597, 'talking': 598, ':': 599, 'watching': 600, 'worried': 601, 'worse': 602, 'the_rich_texan:': 603, 'bar_rag:': 604, 'barflies': 605, 'lousy': 606, 'butt': 607, 'less': 608, 'ten': 609, 'late': 610, 'learned': 611, 'drinks': 612, 'probably': 613, 'such': 614, 'stick': 615, 'perfect': 616, 'greatest': 617, 'shocked': 618, 'private': 619, 'playing': 620, 'may': 621, 'blue': 622, 'anymore': 623, 'goodbye': 624, 'bowl': 625, "'bout": 626, 'special': 627, 'poor': 628, 'light': 629, 'joe': 630, 'second': 631, 'thinks': 632, 'year': 633, 'girls': 634, 'morning': 635, 'gasps': 636, "shouldn't": 637, 'pull': 638, 'thousand': 639, 'soon': 640, 'times': 641, 'ma': 642, 'apu': 643, 'police': 644, 'crowd:': 645, 'person': 646, 'far': 647, 'alive': 648, 'married': 649, 'marriage': 650, 'air': 651, 'heh': 652, 'bit': 653, 'turned': 654, 'young': 655, 'mother': 656, 'either': 657, 'front': 658, 'else': 659, 'whip': 660, 'point': 661, 'annoyed': 662, 'tsk': 663, 'delete': 664, 'anybody': 665, 'store': 666, 'kick': 667, 'cool': 668, 'moron': 669, 'minutes': 670, 'buddy': 671, 'open': 672, 'picture': 673, 'goes': 674, 'uh-huh': 675, 'couple': 676, 'found': 677, 'blood': 678, 'boys': 679, 'letter': 680, 'nothing': 681, 'lucky': 682, 'smell': 683, 'feet': 684, 'taking': 685, 'both': 686, 'turning': 687, 'eight': 688, 'miss': 689, 'walk': 690, 'join': 691, 'president': 692, 'ticket': 693, 'later': 694, "how'd": 695, 'king': 696, 'knows': 697, 'lemme': 698, 'jacques': 699, 'ass': 700, 'throw': 701, 'serious': 702, 'box': 703, 'shot': 704, 'mayor_joe_quimby:': 705, 'beers': 706, 'barn': 707, 'tab': 708, 'exactly': 709, 'boxing': 710, 'yet': 711, 'nods': 712, 'duffman': 713, 'card': 714, 'christmas': 715, 'angry': 716, 'agnes_skinner:': 717, 'american': 718, 'arm': 719, 'rev': 720, 'pig': 721, 'shotgun': 722, 'mind': 723, 'alone': 724, 'instead': 725, 'fifty': 726, 'patty_bouvier:': 727, 'youse': 728, 'goodnight': 729, 'days': 730, 'somebody': 731, 'proudly': 732, 'kiss': 733, 'top': 734, 'number': 735, 'full': 736, 'dry': 737, 'food': 738, 'collette:': 739, 'warmly': 740, 'ahh': 741, 'plant': 742, 'friendly': 743, 'english': 744, 'saying': 745, 'mrs': 746, 'paint': 747, 'hide': 748, 'afraid': 749, 'accident': 750, 'black': 751, 'using': 752, 's': 753, 'deal': 754, 'ready': 755, 'amazed': 756, 'rummy': 757, 'dance': 758, 'eggs': 759, 'walking': 760, 'nine': 761, 'welcome': 762, 'o': 763, 'damn': 764, "he'll": 765, 'together': 766, '||semicolon||': 767, 'fellas': 768, 'alright': 769, 'send': 770, 'wire': 771, 'etc': 772, 'forever': 773, 'plus': 774, 'seems': 775, 'advice': 776, 'ned': 777, 'butts': 778, 'huge': 779, 'story': 780, 'ball': 781, 'himself': 782, 'favorite': 783, 'intrigued': 784, 'happier': 785, 'making': 786, 'table': 787, 'hang': 788, 'broke': 789, 'sotto': 790, 'crap': 791, 'move': 792, 'finally': 793, 'lucius:': 794, 'though': 795, 'return': 796, 'word': 797, 'ha': 798, 'hmm': 799, 'sitting': 800, 'fast': 801, 'weird': 802, 'scared': 803, 'grampa': 804, 'son': 805, 'news': 806, 'cold': 807, 'terrible': 808, 'smile': 809, 'words': 810, "makin'": 811, 'run': 812, 'screw': 813, 'city': 814, 'renee:': 815, 'pour': 816, 'round': 817, 'channel': 818, 'telling': 819, 'losers': 820, 'japanese': 821, 'tap': 822, 'glove': 823, 'la': 824, 'inside': 825, 'seat': 826, 'human': 827, "ol'": 828, 'comic_book_guy:': 829, 'moans': 830, "kiddin'": 831, 'glad': 832, 'horrible': 833, 'homie': 834, 'peanuts': 835, 'young_marge:': 836, 'selma_bouvier:': 837, 'street': 838, 'means': 839, 'narrator:': 840, 'warm_female_voice:': 841, 'ice': 842, 'normal': 843, 'belch': 844, 'dunno': 845, 'honest': 846, 'gumbel': 847, 'milk': 848, 'smells': 849, 'laughing': 850, 'music': 851, 'tip': 852, 'seconds': 853, 'early': 854, 'half': 855, 'slow': 856, 'forgot': 857, 'invented': 858, 'harv:': 859, 'fill': 860, 'eating': 861, 'thirty': 862, 'power': 863, 'company': 864, 'bet': 865, 'hair': 866, 'sent': 867, 'denver': 868, 'ones': 869, 'football_announcer:': 870, 'class': 871, 'won': 872, 'star': 873, 'state': 874, 'uncle': 875, 'stool': 876, 'sick': 877, 'along': 878, 'takes': 879, 'holding': 880, 'lying': 881, 'tinkle': 882, 'gives': 883, 'desperate': 884, 'holds': 885, '_julius_hibbert:': 886, 'except': 887, 'honey': 888, 'principal': 889, 'nigel_bakerbutcher:': 890, 'group': 891, 'joey': 892, 'worst': 893, 'flanders': 894, 'hit': 895, 'al': 896, 'romantic': 897, 'birthday': 898, 'shall': 899, 'pass': 900, 'men': 901, 'admit': 902, 'dangerous': 903, 'brought': 904, 'charge': 905, 'hard': 906, 'write': 907, 'fall': 908, 'bitter': 909, 'lives': 910, 'touched': 911, 'impressed': 912, 'sex': 913, 'strong': 914, 'sips': 915, 'fat_tony:': 916, 'tony': 917, 'set': 918, "we'd": 919, 'heaven': 920, 'same': 921, 'giving': 922, 'health': 923, 'kent': 924, 'truth': 925, 'bag': 926, 'hank_williams_jr': 927, 'crack': 928, 'treasure': 929, 'plan': 930, 'rat': 931, "sayin'": 932, "that'll": 933, 'szyslak': 934, 'mister': 935, 'week': 936, 'lowers': 937, 'loved': 938, 'supposed': 939, 'tune': 940, 'slap': 941, 'across': 942, 'plastic': 943, 'dumb': 944, 'baseball': 945, 'quick': 946, 'became': 947, 'jukebox': 948, 'gold': 949, 'manjula_nahasapeemapetilon:': 950, 'water': 951, 'safe': 952, 'health_inspector:': 953, 'numbers': 954, 'maya:': 955, 'bow': 956, 'lou:': 957, 'walther_hotenhoffer:': 958, 'omigod': 959, 'princess': 960, 'young_homer:': 961, 'mike': 962, 'catch': 963, "how's": 964, "he'd": 965, 'speech': 966, 'little_man:': 967, 'closed': 968, 'wallet': 969, 'wrote': 970, 'grand': 971, 'troll': 972, 'invited': 973, 'government': 974, 'joint': 975, 'club': 976, 'cutting': 977, 'service': 978, 'quietly': 979, 'movie': 980, 'doubt': 981, 'accent': 982, 'nein': 983, 'speaking': 984, 'bee': 985, 'pop': 986, 'treat': 987, 'wonderful': 988, 'games': 989, 'fellow': 990, 'cheer': 991, 'yea': 992, 'coaster': 993, 'sunday': 994, 'luck': 995, 'jack': 996, 'cop': 997, 'dallas': 998, 'short': 999, 'shirt': 1000, 'lord': 1001, 'asked': 1002, 'offended': 1003, 'wha': 1004, "smokin'_joe_frazier:": 1005, 'cleaned': 1006, 'piece': 1007, 'felt': 1008, "lisa's": 1009, 'clown': 1010, 'announcer:': 1011, 'testing': 1012, 'shaking': 1013, 'glasses': 1014, "callin'": 1015, 'pipe': 1016, 'red': 1017, 'cost': 1018, 'wall': 1019, 'center': 1020, 'all:': 1021, 'represent': 1022, 'ago': 1023, 'chanting': 1024, 'ad': 1025, 'handsome': 1026, 'sharps': 1027, 'named': 1028, 'names': 1029, 'swear': 1030, 'hospital': 1031, 'children': 1032, 'rest': 1033, 'strap': 1034, 'fingers': 1035, 'suddenly': 1036, 'man:': 1037, 'puzzled': 1038, 'brilliant': 1039, 'soul': 1040, 'saved': 1041, 'pool': 1042, 'local': 1043, 'daddy': 1044, 'dank': 1045, 'ashamed': 1046, 'side': 1047, 'customers': 1048, 'disappointed': 1049, 'hated': 1050, 'horrified': 1051, 'tongue': 1052, 'window': 1053, 'until': 1054, 'truck': 1055, 'selma': 1056, 'owe': 1057, 'dude': 1058, 'wonder': 1059, "tellin'": 1060, 'punch': 1061, 'jeez': 1062, 'yep': 1063, 'empty': 1064, 'biggest': 1065, 'tired': 1066, 'drederick': 1067, 'against': 1068, 'changing': 1069, 'evening': 1070, 'clears': 1071, 'favor': 1072, 'hanging': 1073, 'gay': 1074, 'deer': 1075, 'designated': 1076, 'writing': 1077, 'beloved': 1078, 'wine': 1079, 'suit': 1080, 'confused': 1081, 'french': 1082, 'having': 1083, 'during': 1084, 'clear': 1085, 'sober': 1086, 'longer': 1087, 'chug': 1088, 'jar': 1089, 'brockman': 1090, 'absolutely': 1091, "drivin'": 1092, 'wheel': 1093, 'driving': 1094, 'part': 1095, 'park': 1096, 'i-i': 1097, 'unless': 1098, 'hopeful': 1099, 'stunned': 1100, 'also': 1101, "world's": 1102, 'running': 1103, 'broad': 1104, 'filthy': 1105, 'dame': 1106, 'boring': 1107, 'totally': 1108, 'none': 1109, 'surgery': 1110, 'survive': 1111, "tryin'": 1112, 'mayor': 1113, "workin'": 1114, 'isotopes': 1115, 'lose': 1116, 'detective_homer_simpson:': 1117, 'exasperated': 1118, "guy's": 1119, 'act': 1120, 'needs': 1121, 'given': 1122, 'counting': 1123, 'caught': 1124, 'cow': 1125, 'college': 1126, 'p': 1127, 'fish': 1128, 'women': 1129, 'third': 1130, 'mine': 1131, 'lessons': 1132, 'x': 1133, 'few': 1134, 'thumb': 1135, 'dying': 1136, 'stories': 1137, 'speak': 1138, 'beach': 1139, 'bed': 1140, 'artie': 1141, 'billy_the_kid:': 1142, 'bank': 1143, 'jerks': 1144, 'proud': 1145, "one's": 1146, "sittin'": 1147, 'sauce': 1148, 'suicide': 1149, 'duh': 1150, 'edna_krabappel-flanders:': 1151, 'sob': 1152, 'rope': 1153, "i'm-so-stupid": 1154, 'america': 1155, 'mouse': 1156, 'pity': 1157, 'nineteen': 1158, 'african': 1159, 'nuclear': 1160, 'calm': 1161, '_zander:': 1162, 'tree': 1163, 'lloyd:': 1164, '_hooper:': 1165, 'glen:': 1166, 'bender:': 1167, 'adult_bart:': 1168, 'tv_wife:': 1169, 'tv_husband:': 1170, 'rotch': 1171, 'cares': 1172, 'sits': 1173, 'follow': 1174, 'bars': 1175, 'chocolate': 1176, 'usually': 1177, 'closing': 1178, 'pulled': 1179, 'hurry': 1180, 'fifteen': 1181, 'gin': 1182, 'hits': 1183, 'spot': 1184, 'smiling': 1185, "everyone's": 1186, 'feels': 1187, 'pitcher': 1188, 'amazing': 1189, 'offer': 1190, 'minimum': 1191, 'restaurant': 1192, 'dollar': 1193, 'ingredient': 1194, 'career': 1195, 'market': 1196, 'stock': 1197, 'hans:': 1198, "o'problem": 1199, 'calls': 1200, 'embarrassed': 1201, "today's": 1202, 'nose': 1203, 'domestic': 1204, 'pointed': 1205, 'weekly': 1206, 'sarcastic': 1207, 'belches': 1208, 'forty': 1209, 'ruined': 1210, 'ourselves': 1211, 'original': 1212, 'situation': 1213, 'almost': 1214, 'field': 1215, 'buffalo': 1216, 'pit': 1217, 'pickled': 1218, 'couch': 1219, 'heavyweight': 1220, 'championship': 1221, 'whee': 1222, 'father': 1223, 'beauty': 1224, 'amanda': 1225, 'huggenkiss': 1226, 'ivana': 1227, 'plow': 1228, 'teenage_barney:': 1229, 'hero': 1230, 'starts': 1231, 'answer': 1232, 'enjoy': 1233, 'yesterday': 1234, 'fridge': 1235, 'agent': 1236, 'island': 1237, 'sly': 1238, 'adeleine': 1239, 'scream': 1240, 'question': 1241, 'arrest': 1242, "what'll": 1243, 'knock': 1244, 'figured': 1245, 'stillwater:': 1246, 'respect': 1247, 'fbi': 1248, 'hm': 1249, 'teach': 1250, 'professional': 1251, 'snake': 1252, 'flower': 1253, 'clothes': 1254, 'polite': 1255, 'tail': 1256, 'liver': 1257, 'legs': 1258, 'understand': 1259, 'pulls': 1260, 'line': 1261, 'woman:': 1262, 'meeting': 1263, 'hugh:': 1264, 'rather': 1265, 'pub': 1266, 'wear': 1267, 'loaded': 1268, 'sense': 1269, 'different': 1270, 'movies': 1271, 'magic': 1272, 'deep': 1273, "they've": 1274, 'ahead': 1275, 'breath': 1276, 'boat': 1277, 'working': 1278, 'kidding': 1279, 'burp': 1280, 'blow': 1281, "livin'": 1282, 'choice': 1283, 'test': 1284, 'opportunity': 1285, 'rich': 1286, 'brain': 1287, 'train': 1288, 'yard': 1289, 'hungry': 1290, 'match': 1291, 'body': 1292, 'tatum': 1293, 'sit': 1294, 'dramatic': 1295, "buyin'": 1296, 'bill': 1297, 'twelve': 1298, 'gas': 1299, 'quite': 1300, 'finger': 1301, 'lie': 1302, 'south': 1303, 'fix': 1304, 'whiny': 1305, "o'clock": 1306, 'drivers': 1307, 'drug': 1308, 'upbeat': 1309, 'sold': 1310, 'betty:': 1311, 'explaining': 1312, 'sexy': 1313, 'dang': 1314, 'started': 1315, 'egg': 1316, 'mug': 1317, 'months': 1318, 'chick': 1319, 'threw': 1320, 'stirring': 1321, 'husband': 1322, 'illegal': 1323, 'cover': 1324, 'folks': 1325, "watchin'": 1326, 'case': 1327, 'sports': 1328, 'smooth': 1329, 'computer': 1330, 'selling': 1331, 'ride': 1332, 'renee': 1333, 'flowers': 1334, 'girlfriend': 1335, 'distraught': 1336, 'pain': 1337, 'sobbing': 1338, 'raises': 1339, 'arms': 1340, 'stagy': 1341, 'procedure': 1342, 'able': 1343, 'lips': 1344, 'especially': 1345, 'fan': 1346, "who'll": 1347, 'dennis_conroy:': 1348, 'bottom': 1349, 'road': 1350, 'bye': 1351, 'wally:': 1352, 'flips': 1353, 'character': 1354, 'partner': 1355, 'guns': 1356, "valentine's": 1357, 'amid': 1358, 'yellow': 1359, 'radishes': 1360, 'u': 1361, "bein'": 1362, 'bald': 1363, 'castle': 1364, 'busy': 1365, 're:': 1366, 'seem': 1367, 'jerk': 1368, 'sincere': 1369, 'precious': 1370, 'burt': 1371, 'garbage': 1372, 'died': 1373, "dad's": 1374, 'whisper': 1375, 'lotta': 1376, 'secrets': 1377, 'whaddaya': 1378, 'sees': 1379, 'pickle': 1380, 'rob': 1381, 'coat': 1382, 'trip': 1383, 'ooo': 1384, 'band': 1385, 'neck': 1386, 'tom': 1387, 'gotten': 1388, 'buttons': 1389, 'eleven': 1390, 'cries': 1391, 'awkward': 1392, 'video': 1393, 'billboard': 1394, 'david_byrne:': 1395, 'france': 1396, 'sheepish': 1397, 'address': 1398, 'monster': 1399, 'meaningful': 1400, 'furious': 1401, 'new_health_inspector:': 1402, 'pipes': 1403, 'needed': 1404, 'moment': 1405, 'ominous': 1406, 'declan_desmond:': 1407, 'sister': 1408, 'milhouse_van_houten:': 1409, 'forget-me-shot': 1410, 'finding': 1411, 'shows': 1412, 'bees': 1413, 'vance': 1414, 'correct': 1415, 'pleased': 1416, 'cable': 1417, 'babies': 1418, 'clearly': 1419, 'yap': 1420, 'hoping': 1421, 'thoughtful': 1422, 'grim': 1423, 'frustrated': 1424, 'burps': 1425, 'therapy': 1426, 'foibles': 1427, 'books': 1428, 'twins': 1429, 'rag': 1430, 'keeps': 1431, 'dan_gillick:': 1432, 'ken:': 1433, "carl's": 1434, 'senator': 1435, 'senators': 1436, "moe's_thoughts:": 1437, 'teenage_bart:': 1438, 'eddie:': 1439, 'lately': 1440, 'puke': 1441, 'struggling': 1442, 'crummy': 1443, 'tells': 1444, 'spit': 1445, "'til": 1446, 'unison': 1447, 'thoughts': 1448, 'finished': 1449, 'concerned': 1450, 'burning': 1451, 'hiya': 1452, 'junior': 1453, 'cigarette': 1454, 'sucked': 1455, 'harv': 1456, 'cough': 1457, 'its': 1458, 'delicious': 1459, 'noticing': 1460, 'above': 1461, 'expect': 1462, 'accurate': 1463, 'tips': 1464, 'pardon': 1465, 'idiot': 1466, 'covering': 1467, 'frankly': 1468, 'kept': 1469, 'k': 1470, 'twenty-five': 1471, 'become': 1472, 'german': 1473, 'fritz:': 1474, 'buying': 1475, 'brains': 1476, 'crank': 1477, "bart's": 1478, 'lots': 1479, "they'll": 1480, 'cheap': 1481, 'hug': 1482, 'sniffs': 1483, 'bowling': 1484, 'gift': 1485, 'bret:': 1486, 'guest': 1487, 'whose': 1488, 'shares': 1489, 'odd': 1490, 'hates': 1491, 'whatcha': 1492, 'touchdown': 1493, 'fork': 1494, 'keeping': 1495, 'careful': 1496, 'prime': 1497, 'palmerston': 1498, 'elder': 1499, 'pfft': 1500, 'lottery': 1501, 'sadistic_barfly:': 1502, 'cents': 1503, 'customer': 1504, 'step': 1505, 'holiday': 1506, 'religion': 1507, 'born': 1508, 'tv_father:': 1509, 'toss': 1510, 'jack_larson:': 1511, 'pageant': 1512, 'age': 1513, 'endorse': 1514, 'puff': 1515, "where'd": 1516, 'stopped': 1517, 'ruin': 1518, 'sec': 1519, 'shove': 1520, 'mistake': 1521, 'slip': 1522, 'pathetic': 1523, 'har': 1524, 'ring': 1525, 'checks': 1526, 'pointing': 1527, 'aside': 1528, 'ordered': 1529, 'dressed': 1530, 'bus': 1531, 'gal': 1532, 'afternoon': 1533, 'kwik-e-mart': 1534, 'coney': 1535, 'single': 1536, 'darts': 1537, "havin'": 1538, 'pause': 1539, '_babcock:': 1540, 'higher': 1541, 'reads': 1542, 'sexual': 1543, 'moments': 1544, 'alley': 1545, 'fault': 1546, 'hmmm': 1547, 'roll': 1548, 'form': 1549, 'register': 1550, 'prank': 1551, 'coffee': 1552, 'label': 1553, 'innocent': 1554, 'double': 1555, 'hurts': 1556, 'loan': 1557, 'leans': 1558, 'fool': 1559, 'covers': 1560, 'crawl': 1561, 'following': 1562, 'celebrities': 1563, 'consider': 1564, 'imagine': 1565, 'moved': 1566, 'fumes': 1567, 'oil': 1568, 'exhaust': 1569, 'gag': 1570, 'stole': 1571, 'killed': 1572, 'understanding': 1573, 'raising': 1574, 'natural': 1575, 'stools': 1576, 'texas': 1577, 'rid': 1578, 'barney-shaped_form:': 1579, 'snaps': 1580, 'bright': 1581, 'beginning': 1582, 'cute': 1583, 'evil': 1584, '&': 1585, 'exit': 1586, 'midnight': 1587, 'compliment': 1588, "stinkin'": 1589, 'glum': 1590, 'salad': 1591, 'complete': 1592, "c'mere": 1593, 'knocked': 1594, 'bob': 1595, 'fact': 1596, 'cannot': 1597, 'incredulous': 1598, 'fans': 1599, 'saturday': 1600, 'parking': 1601, 'general': 1602, 'trust': 1603, "could've": 1604, 'stayed': 1605, 'shape': 1606, 'taken': 1607, "gentleman's": 1608, "barney's": 1609, 'mafia': 1610, 'crime': 1611, 'indignant': 1612, 'entire': 1613, 'grow': 1614, 'modern': 1615, 'diet': 1616, 'shoot': 1617, 'enemy': 1618, 'accept': 1619, 'enemies': 1620, 'list': 1621, 'invite': 1622, 'lonely': 1623, 'singers:': 1624, 'toward': 1625, 'defensive': 1626, 'walks': 1627, 'snort': 1628, 'mechanical': 1629, 'suppose': 1630, 'sometime': 1631, 'fancy': 1632, 'kissing': 1633, 'per': 1634, 'traffic': 1635, 'peter': 1636, 'pained': 1637, 'extra': 1638, 'cheers': 1639, 'driver': 1640, 'program': 1641, 'inspector': 1642, 'heads': 1643, 'recommend': 1644, 'severe': 1645, 'checking': 1646, 'showing': 1647, 'fever': 1648, 'spending': 1649, 'switch': 1650, 'casual': 1651, 'rough': 1652, 'pissed': 1653, 'scene': 1654, 'church': 1655, 'threatening': 1656, 'turkey': 1657, 'scam': 1658, 'jesus': 1659, 'spinning': 1660, 'pats': 1661, "seein'": 1662, 'toilet': 1663, 'der': 1664, 'crowd': 1665, 'boo': 1666, 'wide': 1667, 'toasting': 1668, 'order': 1669, 'bunch': 1670, 'pays': 1671, 'law': 1672, 'wasting': 1673, 'corpses': 1674, 'sleep': 1675, 'screams': 1676, 'aww': 1677, 'seeing': 1678, 'military': 1679, 'hunter': 1680, 'reminds': 1681, 'panicky': 1682, 'ridiculous': 1683, 'campaign': 1684, 'public': 1685, "they'd": 1686, 'focus': 1687, 'knowing': 1688, 'jolly': 1689, 'upon': 1690, 'edison': 1691, 'played': 1692, 'middle': 1693, 'worked': 1694, 'james': 1695, 'hole': 1696, 'corner': 1697, 'summer': 1698, 'operation': 1699, 'comfortable': 1700, 'inspection': 1701, 'season': 1702, 'grunt': 1703, 'wooooo': 1704, 'history': 1705, 'team': 1706, 'grabbing': 1707, 'root': 1708, 'spanish': 1709, 'weeks': 1710, 'coach:': 1711, "wife's": 1712, 'leg': 1713, 'grabs': 1714, 'peace': 1715, 'toys': 1716, 'changed': 1717, 'international': 1718, 'who-o-oa': 1719, 'hour': 1720, 'men:': 1721, "men's": 1722, 'hilarious': 1723, 'frink': 1724, 'paying': 1725, 'searching': 1726, 'embarrassing': 1727, 'past': 1728, 'challenge': 1729, 'tears': 1730, 'cocktail': 1731, 'stadium': 1732, 'finest': 1733, 'license': 1734, 'ho': 1735, 'dynamite': 1736, 'rub': 1737, 'grunts': 1738, 'chinese': 1739, 'uncomfortable': 1740, 'helicopter': 1741, 'sweetly': 1742, 'fly': 1743, 'suck': 1744, 'film': 1745, 'fireball': 1746, 'mudflap': 1747, "ridin'": 1748, 'teeth': 1749, 'closer': 1750, 'happily': 1751, '_timothy_lovejoy:': 1752, 'chest': 1753, 'popular': 1754, 'directions': 1755, 'bought': 1756, 'tried': 1757, 'wearing': 1758, 'delighted': 1759, 'button': 1760, 'future': 1761, 'drunks': 1762, 'serve': 1763, 'spoken': 1764, 'thankful': 1765, 'looked': 1766, 'ancient': 1767, 'losing': 1768, 'lindsay_naegle:': 1769, 'teenage': 1770, 'ohmygod': 1771, 'uneasy': 1772, "i-i'm": 1773, 'terrified': 1774, 'scum': 1775, 'afford': 1776, 'anniversary': 1777, 'feed': 1778, 'ã€': 1779, 'starting': 1780, "robbin'": 1781, 'banks': 1782, 'fair': 1783, 'backwards': 1784, 'rats': 1785, 'staying': 1786, 'death': 1787, 'andy': 1788, 'mock': 1789, 'flatly': 1790, 'sisters': 1791, 'subject': 1792, 'likes': 1793, 'peach': 1794, 'miserable': 1795, 'jump': 1796, 'dive': 1797, 'bless': 1798, 'attention': 1799, 'paris': 1800, 'cards': 1801, 'ziffcorp': 1802, 'sec_agent_#1:': 1803, 'fraud': 1804, 'perhaps': 1805, 'ground': 1806, 'jail': 1807, 'ran': 1808, "kids'": 1809, 'gary_chalmers:': 1810, 'dancing': 1811, 'wiener': 1812, 'vomit': 1813, 'bike': 1814, 'floor': 1815, 'glen': 1816, 'breaking': 1817, 'british': 1818, 'letters': 1819, 'clone': 1820, 'tradition': 1821, 'push': 1822, 'vegas': 1823, 'system': 1824, 'bar-boy': 1825, 'foot': 1826, 'motel': 1827, 'awful': 1828, 'child': 1829, 'yee-haw': 1830, 'workers': 1831, 'then:': 1832, 'clientele': 1833, 'army': 1834, 'milhouse': 1835, 'greystash': 1836, 'dirt': 1837, 'doors': 1838, 'size': 1839, 'reason': 1840, 'feelings': 1841, 'mel': 1842, 'bite': 1843, 'powerful': 1844, 'wipe': 1845, 'image': 1846, 'pockets': 1847, 'share': 1848, 'jamaican': 1849, 'l': 1850, "lenny's": 1851, 'midge': 1852, 'gently': 1853, 'unlike': 1854, 'meant': 1855, 'sniffles': 1856, 'election': 1857, 'al_gore:': 1858, 'nobel': 1859, 'sadder': 1860, 'yo': 1861, 'unlucky': 1862, 'somewhere': 1863, 'met': 1864, 'relax': 1865, 'anguished': 1866, 'talk-sings': 1867, 'tastes': 1868, 'kang:': 1869, "year's": 1870, 'bitterly': 1871, 'woo-hoo': 1872, 'cameras': 1873, 'nards': 1874, 'gary:': 1875, 'fourth': 1876, 'scotch': 1877, 'drop': 1878, 'weak': 1879, 'opening': 1880, '_kissingher:': 1881, 'text': 1882, 'f': 1883, 'hall': 1884, 'wayne:': 1885, 'nation': 1886, 'kermit': 1887, 'belly': 1888, 'despite': 1889, 'r': 1890, 'theater': 1891, 'twenty-two': 1892, 'sixty-nine': 1893, 'source': 1894, 'brother': 1895, 'book_club_member:': 1896, 'literature': 1897, 'troy:': 1898, 'pocket': 1899, 'marvin': 1900, 'carve': 1901, 'effervescent': 1902, 'social': 1903, 'vote': 1904, 'corkscrew': 1905, 'folk': 1906, 'neat': 1907, 'tick': 1908, 'effects': 1909, 'trick': 1910, 'judge': 1911, 'mumbling': 1912, 'closes': 1913, 'smoothly': 1914, 'gum': 1915, 'satisfaction': 1916, 'payments': 1917, 'distributor': 1918, 'spent': 1919, 'tester': 1920, 'gums': 1921, "bartender's": 1922, 'brightening': 1923, 'homers': 1924, 'syrup': 1925, 'knife': 1926, 'doll': 1927, 'charm': 1928, 'lighting': 1929, "tester's": 1930, 'busted': 1931, 'barkeep': 1932, 'bartenders': 1933, 'barf': 1934, 'measurements': 1935, 'benefits': 1936, 'prefer': 1937, 'hired': 1938, "shan't": 1939, 'regret': 1940, 'genius': 1941, 'mcstagger': 1942, 'successful': 1943, 'sale': 1944, 'yours': 1945, 'compliments': 1946, 'aerosmith': 1947, 'refund': 1948, 'henry': 1949, 'reserve': 1950, 'swill': 1951, 'ech': 1952, 'interested': 1953, 'owner': 1954, 'confident': 1955, '100': 1956, 'awwww': 1957, 'bucket': 1958, 'conspiratorial': 1959, 'teddy': 1960, 'bear': 1961, 'beneath': 1962, 'seek': 1963, 'bears': 1964, 'blend': 1965, 'greedy': 1966, 'sector': 1967, 'recently': 1968, 'shaken': 1969, 'recall': 1970, 'inspire': 1971, 'peanut': 1972, 'slyly': 1973, 'pleasure': 1974, 'thirteen': 1975, 'studio': 1976, 'apartment': 1977, 'listening': 1978, 'deeply': 1979, 'victory': 1980, 'bread': 1981, 'bets': 1982, 'troy': 1983, 'troy_mcclure:': 1984, 'bret': 1985, 'handle': 1986, 'retired': 1987, 'comedy': 1988, "buffalo's": 1989, 'excellent': 1990, 'riding': 1991, 'whistles': 1992, 'dan': 1993, 'wins': 1994, 'aggravated': 1995, 'teams': 1996, 'cowboys': 1997, 'clock': 1998, 'cars': 1999, "maggie's": 2000, 'handing': 2001, 'minister': 2002, 'wade_boggs:': 2003, 'jumps': 2004, 'poking': 2005, "showin'": 2006, 'gals': 2007, 'fudd': 2008, 'miles': 2009, 'finishing': 2010, 'dryer': 2011, 'feast': 2012, 'snake-handler': 2013, 'prove': 2014, 'laramie': 2015, 'cigarettes': 2016, 'prohibit': 2017, 'smoke': 2018, 'product': 2019, '250': 2020, 'animals': 2021, '_powers:': 2022, 'standards': 2023, 'b': 2024, 'sausage': 2025, 'ah-ha': 2026, 'sooner': 2027, 'linda': 2028, 'project': 2029, 'snow': 2030, "fallin'": 2031, 'prayer': 2032, 'wave': 2033, 'yoo': 2034, 'cheery': 2035, 'sack': 2036, 'chilly': 2037, 'willy': 2038, 'appear': 2039, 'remembered': 2040, 'snap': 2041, 't-shirt': 2042, 'plum': 2043, 'deserve': 2044, 'civic': 2045, 'ragtime': 2046, 'isle': 2047, 'babe': 2048, 'village': 2049, 'tenor:': 2050, 'paid': 2051, 'lib': 2052, 'remains': 2053, 'witty': 2054, 'served': 2055, 'cops': 2056, 'andalay': 2057, 'sometimes': 2058, 'based': 2059, 'realize': 2060, 'insightful': 2061, 'code': 2062, 'cueball': 2063, 'clinton': 2064, 'tang': 2065, "it'd": 2066, 'nasa': 2067, 'astronaut': 2068, 'shrugging': 2069, 'rap': 2070, 'advantage': 2071, 'generous': 2072, 'pin': 2073, 'cola': 2074, 'forbidden': 2075, 'present': 2076, 'entirely': 2077, 'bold': 2078, 'teacher': 2079, 'sugar': 2080, 'pleading': 2081, 'pulling': 2082, 'ohh': 2083, 'greetings': 2084, 'giggles': 2085, 'advance': 2086, 'gosh': 2087, 'bash': 2088, 'poet': 2089, 'alcoholic': 2090, 'large': 2091, 'pouring': 2092, 'honored': 2093, 'virtual': 2094, 'inflated': 2095, 'self-esteem': 2096, 'male_inspector:': 2097, 'detecting': 2098, 'rage': 2099, 'reasons': 2100, 'writers': 2101, 'alfalfa': 2102, 'murmur': 2103, 'hollywood': 2104, 'restaurants': 2105, 'pressure': 2106, 'inspired': 2107, 'memories': 2108, 'blew': 2109, 'pad': 2110, 'stinks': 2111, 'ahhh': 2112, 'rolling': 2113, 'wondering': 2114, 'ringing': 2115, 'ye': 2116, 'jebediah': 2117, 'cutie': 2118, 'bums': 2119, 'angel': 2120, 'blood-thirsty': 2121, 'pirate': 2122, 'jubilant': 2123, 'waylon': 2124, 'delivery': 2125, 'forward': 2126, 'darkest': 2127, 'calculate': 2128, 'results': 2129, 'billion': 2130, 'space': 2131, 'considering': 2132, 'freeze': 2133, 'reasonable': 2134, 'ha-ha': 2135, 'themselves': 2136, 'raise': 2137, 'oof': 2138, 'belt': 2139, 'steak': 2140, 'meal': 2141, 'awe': 2142, 'percent': 2143, 'manage': 2144, 'realized': 2145, "hadn't": 2146, 'boxer': 2147, 'gorgeous': 2148, "meanin'": 2149, 'lucius': 2150, 'famous': 2151, 'don': 2152, 'manager': 2153, 'somehow': 2154, 'row': 2155, 'politics': 2156, 'agreement': 2157, 'fighting': 2158, 'sandwich': 2159, 'punches': 2160, 'energy': 2161, 'hobo': 2162, 'nudge': 2163, 'awed': 2164, 'managing': 2165, 'champ': 2166, 'release': 2167, 'weary': 2168, 'rounds': 2169, 'freak': 2170, 'remembering': 2171, 'fondly': 2172, 'worth': 2173, 'lover': 2174, 'radio': 2175, 'borrow': 2176, 'granted': 2177, 'helped': 2178, 'built': 2179, 'solid': 2180, 'routine': 2181, 'mate': 2182, 'chum': 2183, 'acquaintance': 2184, 'quality': 2185, 'fox_mulder:': 2186, 'began': 2187, 'discussing': 2188, 'scully': 2189, 'penny': 2190, "money's": 2191, 'asking': 2192, 'mob': 2193, 'steel': 2194, 'broadway': 2195, 'sodas': 2196, 'neither': 2197, 'christopher': 2198, 'shooting': 2199, 'bags': 2200, 'hunting': 2201, "patrick's": 2202, 'kicked': 2203, 'written': 2204, 'crossed': 2205, 'morose': 2206, 'bam': 2207, 'yelling': 2208, 'love-matic': 2209, 'peppy': 2210, 'passed': 2211, 'floated': 2212, 'sweeter': 2213, 'buried': 2214, 'naked': 2215, 'dismissive': 2216, 'karaoke': 2217, 'near': 2218, 'expert': 2219, 'spread': 2220, 'germs': 2221, 'cent': 2222, 'caused': 2223, 'pope': 2224, 'reach': 2225, 'draw': 2226, 'costume': 2227, 'labels': 2228, 'straining': 2229, 'conditioner': 2230, 'sweetheart': 2231, 'margarita': 2232, 'planning': 2233, 'vacation': 2234, 'chase': 2235, 'blues': 2236, 'manjula': 2237, "countin'": 2238, 'freedom': 2239, 'reaching': 2240, 'bubbles': 2241, 'ways': 2242, "ma'am": 2243, 'devastated': 2244, 'grave': 2245, 'mic': 2246, 'products': 2247, 'price': 2248, 'cake': 2249, 'churchill': 2250, 'purse': 2251, 'businessman_#1:': 2252, 'firmly': 2253, 'utility': 2254, 'creeps': 2255, 'roomy': 2256, 'european': 2257, 'plenty': 2258, 'yogurt': 2259, 'porn': 2260, 'thoughtfully': 2261, 'seats': 2262, 'highway': 2263, 'commission': 2264, 'yards': 2265, 'pride': 2266, 'beam': 2267, 'mail': 2268, 'bride': 2269, 'fabulous': 2270, 'due': 2271, 'roses': 2272, 'kidney': 2273, 'dropped': 2274, 'dearest': 2275, 'warily': 2276, 'placing': 2277, "town's": 2278, 'charity': 2279, 'railroad': 2280, 'coward': 2281, 'medicine': 2282, 'sudden': 2283, 'attack': 2284, 'yell': 2285, 'forgive': 2286, 'puts': 2287, 'joined': 2288, 'joining': 2289, 'although': 2290, "pope's": 2291, 'ironed': 2292, 'blown': 2293, 'involved': 2294, 'agent_johnson:': 2295, 'involving': 2296, 'bush': 2297, 'charlie': 2298, 'lazy': 2299, 'message': 2300, 'seriously': 2301, 'mop': 2302, 'stands': 2303, 'ocean': 2304, 'bathing': 2305, 'increasingly': 2306, 'organ': 2307, 'jockey': 2308, 'grumpy': 2309, 'crying': 2310, "springfield's": 2311, 'bigger': 2312, 'cotton': 2313, 'balls': 2314, '6': 2315, 'promised': 2316, 'vodka': 2317, 'gentleman:': 2318, 'celebrity': 2319, 'bubble': 2320, 'brave': 2321, 'deadly': 2322, 'correcting': 2323, 'scare': 2324, 'eyeball': 2325, 'catching': 2326, 'mess': 2327, 'bathroom': 2328, 'all-star': 2329, "'topes": 2330, 'excitement': 2331, 'inspiring': 2332, "game's": 2333, 'pitch': 2334, 'director': 2335, 'rumaki': 2336, 'sports_announcer:': 2337, 'pointless': 2338, 'conference': 2339, "team's": 2340, 'atlanta': 2341, 'falcons': 2342, 'mmm': 2343, 'foil': 2344, 'yup': 2345, 'beating': 2346, 'simp-sonnnn': 2347, 'acting': 2348, 'gang': 2349, 'choking': 2350, 'murmurs': 2351, 'yourselves': 2352, 'easier': 2353, 'curious': 2354, 'matter-of-fact': 2355, 'kyoto': 2356, 'sea': 2357, 'fritz': 2358, 'drawing': 2359, 'justice': 2360, 'patterns': 2361, 'lights': 2362, 'hawking:': 2363, "hangin'": 2364, 'putting': 2365, 'tentative': 2366, 'umm': 2367, 'heavyset': 2368, 'insulted': 2369, 'tommy': 2370, 'honor': 2371, 'duel': 2372, 'fevered': 2373, 'between': 2374, 'thesaurus': 2375, 'danish': 2376, 'joking': 2377, 'laws': 2378, 'held': 2379, 'knees': 2380, 'throwing': 2381, 'seas': 2382, 'eyesore': 2383, 'jeff': 2384, 'ugliest': 2385, 'white': 2386, 'gargoyle': 2387, 'brow': 2388, 'pleasant': 2389, 'mount': 2390, 'carlson': 2391, 'harder': 2392, 'nearly': 2393, 'wash': 2394, 'beats': 2395, 'tax': 2396, 'trusted': 2397, 'poem': 2398, 'planet': 2399, 'professor': 2400, 'disgrace': 2401, 'stationery': 2402, 'flying': 2403, 'tanked-up': 2404, 'certain': 2405, "bar's": 2406, 'queer': 2407, 'guide': 2408, 'calmly': 2409, 'befouled': 2410, 'broom': 2411, 'explain': 2412, 'unfortunately': 2413, 'reynolds': 2414, 'jerry': 2415, 'solo': 2416, 'lowering': 2417, 'sinister': 2418, 'onions': 2419, 'talked': 2420, 'frosty': 2421, 'voice:': 2422, 'helen': 2423, 'bible': 2424, 'medical': 2425, "chewin'": 2426, 'shock': 2427, 'satisfied': 2428, 'effigy': 2429, 'jobs': 2430, 'mention': 2431, 'smart': 2432, 'dee-fense': 2433, 'twice': 2434, 'schnapps': 2435, 'comic': 2436, 'klingon': 2437, 'mm': 2438, 'corporation': 2439, 'fresh': 2440, 'loss': 2441, 'smurfs': 2442, 'wake': 2443, 'disapproving': 2444, 'informant': 2445, 'goods': 2446, 'smugglers': 2447, 'voice_on_transmitter:': 2448, 'answering': 2449, 'mcbain': 2450, "father's": 2451, 'taps': 2452, 'jets': 2453, 'eventually': 2454, 'morlocks': 2455, 'liar': 2456, "weren't": 2457, 'naturally': 2458, 'shaggy': 2459, 'gun': 2460, 'passion': 2461, 'bartending': 2462, 'painting': 2463, 'expression': 2464, 'contest': 2465, 'potato': 2466, 'ayyy': 2467, 'tabooger': 2468, 'ollie': 2469, 'deliberate': 2470, 'century': 2471, 'formico:': 2472, 'formico': 2473, 'thanksgiving': 2474, 'tofu': 2475, 'curds': 2476, 'ambrosia': 2477, 'terrific': 2478, 'cookies': 2479, 'admiring': 2480, 'anywhere': 2481, 'eighty-seven': 2482, 'palm': 2483, 'actors': 2484, 'brewed': 2485, 'hop': 2486, 'juice': 2487, 'agree': 2488, 'grandiose': 2489, 'boyfriend': 2490, 'spy': 2491, 'superior': 2492, 'rainier_wolfcastle:': 2493, 'authorized': 2494, 'impatient': 2495, 'bottles': 2496, 'salt': 2497, 'windex': 2498, 'koi': 2499, 'pond': 2500, 'drown': 2501, 'surprise': 2502, 'wang': 2503, 'dating': 2504, 'sat': 2505, 'drank': 2506, 'i-i-i': 2507, 'force': 2508, 'badges': 2509, 'admitting': 2510, 'pian-ee': 2511, 'shoo': 2512, 'grab': 2513, "'im": 2514, 'dough': 2515, 'emotional': 2516, 'color': 2517, 'skin': 2518, 'alphabet': 2519, 'smug': 2520, 'louder': 2521, 'fuss': 2522, '1895': 2523, 'soap': 2524, 'aging': 2525, 'whenever': 2526, 'denser': 2527, 'disco': 2528, 'complaining': 2529, 'magazine': 2530, 'young_moe:': 2531, 'memory': 2532, 'amount': 2533, 'appointment': 2534, 'bird': 2535, 'decide': 2536, 'lush': 2537, 'cruel': 2538, 'david': 2539, 'wishes': 2540, 'cream': 2541, "cat's": 2542, 'nope': 2543, 'boozy': 2544, 'dessert': 2545, 'crumble': 2546, 'cooler': 2547, 'delivery_boy:': 2548, 'bastard': 2549, 'mona_simpson:': 2550, 'stevie': 2551, 'woozy': 2552, 'gifts': 2553, 'diamond': 2554, 'woman_bystander:': 2555, 'ziff': 2556, 'fold': 2557, 'achem': 2558, 'd': 2559, 'securities': 2560, 'exchange': 2561, 'sec_agent_#2:': 2562, 'investor': 2563, 'confidence': 2564, 'nerve': 2565, 'prison': 2566, 'standing': 2567, 'bedroom': 2568, 'value': 2569, 'shakespeare': 2570, 'watered-down': 2571, 'underpants': 2572, 'needy': 2573, 'kindly': 2574, 'funds': 2575, 'lap': 2576, "what're": 2577, 'bugging': 2578, 'seemed': 2579, 'wedding': 2580, 'missed': 2581, 'shoulder': 2582, 'department': 2583, 'violations': 2584, 'roof': 2585, 'shutting': 2586, "'tis": 2587, 'shrugs': 2588, "beer's": 2589, 'changes': 2590, 'conversation': 2591, 'hotline': 2592, 'dials': 2593, 'allowed': 2594, 'sleeps': 2595, 'quotes': 2596, 'therefore': 2597, 'regulars': 2598, 'skirt': 2599, 'prepared': 2600, 'trapped': 2601, 'rule': 2602, 'pint': 2603, 'judge_snyder:': 2604, 'ale': 2605, 'suds': 2606, 'cat': 2607, 'moe-clone:': 2608, 'attitude': 2609, 'weirder': 2610, 'jerky': 2611, 'record': 2612, 'bourbon': 2613, 'ginger': 2614, 'sissy': 2615, 'wrestling': 2616, 'forehead': 2617, 'barely': 2618, 'flag': 2619, 'attempting': 2620, "takin'": 2621, 'camp': 2622, 'cheat': 2623, 'haw': 2624, "payin'": 2625, 'known': 2626, 'bridge': 2627, 'museum': 2628, 'coins': 2629, 'jailbird': 2630, 'wangs': 2631, 'photo': 2632, 'shoots': 2633, 'louie:': 2634, 'reporter:': 2635, 'irish': 2636, "drawin'": 2637, 'marmaduke': 2638, "waitin'": 2639, 'fragile': 2640, 'wolfe': 2641, 'wordloaf': 2642, 'festival': 2643, 'fictional': 2644, "what'sa": 2645, 'fausto': 2646, 'action': 2647, 'pretending': 2648, 'abandon': 2649, 'airport': 2650, 'mortgage': 2651, "ladies'": 2652, 'dames': 2653, 'appealing': 2654, 'patient': 2655, 'weirded-out': 2656, 'fanciest': 2657, 'towed': 2658, 'eighty-one': 2659, 'joke': 2660, 'grandmother': 2661, 'bully': 2662, 'mixed': 2663, 'stir': 2664, 'positive': 2665, 'slight': 2666, 'latin': 2667, 'complaint': 2668, 'obvious': 2669, 'thighs': 2670, 'internet': 2671, 'media': 2672, 'disappeared': 2673, 'candidate': 2674, 'dennis_kucinich:': 2675, 'lurleen': 2676, 'lurleen_lumpkin:': 2677, 'rock': 2678, "someone's": 2679, 'hangs': 2680, 'sneaky': 2681, 'winnings': 2682, 'krabappel': 2683, 'difficult': 2684, 'discuss': 2685, 'compared': 2686, 'decent': 2687, 'doreen': 2688, 'doreen:': 2689, "marge's": 2690, 'available': 2691, 'bashir': 2692, 'arab_man:': 2693, 'dress': 2694, 'grimly': 2695, 'lock': 2696, 'combine': 2697, 'queen': 2698, 'multiple': 2699, 'prize': 2700, 'alfred': 2701, 'shower': 2702, 'tiny': 2703, 'slice': 2704, 'playful': 2705, "wonderin'": 2706, 'defeated': 2707, 'maya': 2708, 'whether': 2709, 'awww': 2710, 'rhyme': 2711, 'un-sults': 2712, 'courage': 2713, 'reviews': 2714, 'hibbert': 2715, 'banquo': 2716, 'thought_bubble_homer:': 2717, 'tries': 2718, 'wing': 2719, 'helllp': 2720, 'lovely': 2721, 'cozy': 2722, 'begins': 2723, 'torn': 2724, 'warn': 2725, 'possibly': 2726, 'stranger:': 2727, 'gator:': 2728, 'corporate': 2729, 'industry': 2730, 'awesome': 2731, 'decency': 2732, 'extremely': 2733, 'saint': 2734, 'type': 2735, 'is:': 2736, 'partly': 2737, 'golf': 2738, 'ball-sized': 2739, 'hail': 2740, 'continuing': 2741, 'electronic': 2742, 'zero': 2743, 'tale': 2744, 'restroom': 2745, 'rules': 2746, 'sitar': 2747, 'smallest': 2748, 'sympathetic': 2749, 'slightly': 2750, 'soup': 2751, 'padre': 2752, 'lloyd': 2753, 'candy': 2754, 'scary': 2755, 'beep': 2756, 'fox': 2757, 'strategy': 2758, 'answers': 2759, 'grienke': 2760, 'sport': 2761, 'doug:': 2762, 'sabermetrics': 2763, "others'": 2764, 'fixed': 2765, 'assistant': 2766, 'admiration': 2767, 'self-made': 2768, 'suspect': 2769, 'proposing': 2770, 'plans': 2771, 'hitler': 2772, 'dungeon': 2773, 'stern': 2774, 'waltz': 2775, 'suspicious': 2776, 'roz:': 2777, 'relieved': 2778, 'suing': 2779, 'therapist': 2780, 'skeptical': 2781, 'boneheaded': 2782, 'relationship': 2783, 'twin': 2784, 'dreamed': 2785, 'joey_kramer:': 2786, 'kramer': 2787, 'neighbor': 2788, 'completing': 2789, "other's": 2790, 'wayne': 2791, 'stealings': 2792, 'monkey': 2793, 'crew': 2794, "children's": 2795, 'underbridge': 2796, 'academy': 2797, 'neil_gaiman:': 2798, 'square': 2799, 'vulnerable': 2800, 'copy': 2801, 'trolls': 2802, 'vampires': 2803, "hasn't": 2804, 'lenny:': 2805, 'carl:': 2806, 'carll': 2807, 'website': 2808, 'safer': 2809, 'bedbugs': 2810, 'duty': 2811, 'intense': 2812, 'friendship': 2813, "crawlin'": 2814, 'maman': 2815, 'failed': 2816, 'lise:': 2817, 'marguerite:': 2818, 'cheese': 2819, 'degradation': 2820, 'violin': 2821, 'heading': 2822, 'raccoons': 2823, 'filled': 2824, 'rolled': 2825, 'trench': 2826, 'frog': 2827, 'poker': 2828, 'cowardly': 2829, 'outlook': 2830, 'motorcycle': 2831, 'ripcord': 2832, 'reached': 2833, 'so-called': 2834, '7-year-old_brockman:': 2835, 'muttering': 2836, 'plywood': 2837, 'hats': 2838, 'civilization': 2839, 'anarchy': 2840, 'w': 2841, "readin'": 2842, 'chicks': 2843, 'wooden': 2844, 'deacon': 2845, 'priest': 2846, 'important': 2847, 'vacuum': 2848, 'cleaner': 2849, 'tie': 2850, 'belong': 2851, 'dreams': 2852, 'elephants': 2853, 'brothers': 2854, 'wings': 2855, 'spied': 2856, 'bump': 2857, 'reliable': 2858, 'superhero': 2859, 'pigs': 2860, 'refresh': 2861, 'express': 2862, 'mall': 2863, 'santa': 2864, 'page': 2865, 'brassiest': 2866, 'nickels': 2867, 'laney_fontaine:': 2868, 'craphole': 2869, 'smile:': 2870, 'baritone': 2871, 'africa': 2872, 'snorts': 2873, 'wa': 2874, 'scrape': 2875, 'nigeria': 2876, 'level': 2877, 'nigerian': 2878, 'princesses': 2879, 'familiar': 2880, 'yawns': 2881, 'stuck': 2882, 'scooter': 2883, 'aged_moe:': 2884, 'teenage_homer:': 2885, 'grade': 2886, "homer's_brain:": 2887, 'punk': 2888, 'someday': 2889, 'boxing_announcer:': 2890, "monroe's": 2891, 'thru': 2892, 'koholic': 2893, "dyin'": 2894, 'tv_announcer:': 2895, 'patty': 2896, 'elite': 2897, 'enhance': 2898, 'skills': 2899, 'politician': 2900, "neighbor's": 2901, 'right-handed': 2902, 'corkscrews': 2903, 'homer_': 2904, "cont'd:": 2905, 'led': 2906, 'richer': 2907, 'county': 2908, 'faces': 2909, 'profiling': 2910, 'paper': 2911, "depressin'": 2912, 'crisis': 2913, 'pictured': 2914, 'underwear': 2915, 'jury': 2916, 'lawyer': 2917, 'pretzel': 2918, 'patrons:': 2919, 'foam': 2920, 'spare': 2921, 'stiffening': 2922, 'trenchant': 2923, 'disappointing': 2924, 'jer': 2925, 'grudgingly': 2926, 'reed': 2927, 'whoo': 2928, 'instrument': 2929, 'sunk': 2930, 'patrons': 2931, 'figure': 2932, 'healthier': 2933, 'increased': 2934, 'togetherness': 2935, 'poison': 2936, 'purveyor': 2937, 'mind-numbing': 2938, 'intoxicants': 2939, 'unfamiliar': 2940, 'tonic': 2941, 'mix': 2942, 'bowie': 2943, 'nickel': 2944, 'coughs': 2945, 'phlegm': 2946, 'looser': 2947, 'sneeze': 2948, 'guard': 2949, 'chuckling': 2950, 'crowded': 2951, 'cracked': 2952, 'accepting': 2953, 'stamps': 2954, 'combination': 2955, 'patron_#1:': 2956, 'patron_#2:': 2957, 'store-bought': 2958, 'drollery': 2959, 'application': 2960, 'ons': 2961, 'salary': 2962, 'wage': 2963, 'meaningfully': 2964, 'fringe': 2965, 'unforgettable': 2966, 'weekend': 2967, 'vacations': 2968, 'someplace': 2969, 'moxie': 2970, 'methinks': 2971, 'bannister': 2972, "mcstagger's": 2973, 'emporium': 2974, 'composite': 2975, 'logos': 2976, 'mozzarella': 2977, 'proposition': 2978, 'chain': 2979, 'recipe': 2980, 'dice': 2981, 'sweat': 2982, 'dies': 2983, 'delivery_man:': 2984, 'cases': 2985, 'hooked': 2986, 'waitress': 2987, 'pursue': 2988, 'hundreds': 2989, 'thousands': 2990, 'cuz': 2991, "duff's": 2992, 'information': 2993, 'motto': 2994, 'full-time': 2995, 'swine': 2996, 'germany': 2997, 'east': 2998, 'west': 2999, 'cleveland': 3000, 'browns': 3001, 'monkeyshines': 3002, 'kinds': 3003, 'resist': 3004, 'musses': 3005, 'today/': 3006, 'marvelous': 3007, 'play/': 3008, 'trees': 3009, 'sees/': 3010, 'please/': 3011, 'picnic': 3012, 'pip': 3013, 'mirthless': 3014, 'damned': 3015, 'reptile': 3016, 'saucy': 3017, 'sieben-gruben': 3018, '7g': 3019, 'terminated': 3020, 'example': 3021, 'sing-song': 3022, 'heavens': 3023, 'stamp': 3024, 'slays': 3025, 'terror': 3026, 'determined': 3027, 'freshened': 3028, 'hourly': 3029, 'provide': 3030, 'coyly': 3031, 'h': 3032, 'justify': 3033, 'england': 3034, 'modest': 3035, 'malibu': 3036, 'stacey': 3037, 'kitchen': 3038, 'prints': 3039, 'feminist': 3040, 'newsletter': 3041, 'daaaaad': 3042, 'grumbling': 3043, 'usual': 3044, 'wad': 3045, 'bills': 3046, 'thirty-five': 3047, 'sagely': 3048, 'sweaty': 3049, 'son-of-a': 3050, "ma's": 3051, 'norway': 3052, 'brunch': 3053, 'spectacular': 3054, 'baloney': 3055, 'gotcha': 3056, 'eminence': 3057, 'bookie': 3058, "bettin'": 3059, 'football': 3060, 'forty-five': 3061, 'pre-game': 3062, 'actor': 3063, 'mcclure': 3064, 'sitcom': 3065, 'premiering': 3066, 'coincidentally': 3067, "show's": 3068, 'criminal': 3069, 'fell': 3070, 'script': 3071, 'recent': 3072, 'irs': 3073, 'sealed': 3074, "drexel's": 3075, 'kickoff': 3076, 'kicks': 3077, 'position': 3078, 'gambler': 3079, 'score': 3080, 'fourteen:': 3081, 'duff_announcer:': 3082, 'half-back': 3083, 'beer-dorf': 3084, 'ticks': 3085, 'scores': 3086, "fans'll": 3087, 'looting': 3088, 'lone': 3089, 'handoff': 3090, 'twenty-nine': 3091, 'scratching': 3092, 'chin': 3093, 'stinky': 3094, 'sniffing': 3095, "england's": 3096, 'boggs': 3097, 'scornfully': 3098, 'exploiter': 3099, 'ignorant': 3100, "jackpot's": 3101, 'spitting': 3102, 'boozehound': 3103, "singin'": 3104, 'young_barfly:': 3105, 'moonnnnnnnn': 3106, 'quarter': 3107, 'hillbillies': 3108, 'blind': 3109, "smokin'": 3110, 'cummerbund': 3111, 'tight': 3112, 'furniture': 3113, 'frazier': 3114, 'washer': 3115, 'religious': 3116, 'maximum': 3117, 'occupancy': 3118, 'slick': 3119, 'kneeling': 3120, 'unattractive': 3121, 'wheeeee': 3122, 'cutest': 3123, 'larson': 3124, 'sponsoring': 3125, 'regulations': 3126, 'advertising': 3127, 'smokes': 3128, 'carolina': 3129, 'crowned': 3130, 'host': 3131, 'maitre': 3132, "d'": 3133, 'glee': 3134, 'heartily': 3135, 'event': 3136, 'tv_daughter:': 3137, 'smoker': 3138, 'enter': 3139, 'blimp': 3140, 'scientists': 3141, "bo's": 3142, 'cavern': 3143, 'mobile': 3144, 'starving': 3145, 'dogs': 3146, 'rusty': 3147, 'dull': 3148, 'spilled': 3149, 'ashtray': 3150, 'slurps': 3151, 'captain:': 3152, 'freed': 3153, 'iranian': 3154, 'hostages': 3155, "sat's": 3156, 'wishing': 3157, 'diaper': 3158, 'ronstadt': 3159, 'linda_ronstadt:': 3160, 'kl5-4796': 3161, '/mr': 3162, 'boozer': 3163, 'intelligent': 3164, 'lachrymose': 3165, 'dyspeptic': 3166, 'ebullient': 3167, 'harvard': 3168, 'silent': 3169, 'admirer': 3170, 'snide': 3171, 'moesy': 3172, 'worthless': 3173, 'rub-a-dub': 3174, 'anthony_kiedis:': 3175, 'thirty-thousand': 3176, 'audience': 3177, 'restless': 3178, 'chili': 3179, 'peppers': 3180, 'klown': 3181, 'flea:': 3182, 'gig': 3183, 'problemo': 3184, "wallet's": 3185, 'stares': 3186, 'miss_lois_pennycandy:': 3187, 'ruby-studded': 3188, 'johnny_carson:': 3189, 'undies': 3190, '50%': 3191, 'sales': 3192, 'sweetest': 3193, 'entertainer': 3194, 'crowds': 3195, 'wild': 3196, 'farewell': 3197, 'shop': 3198, 'theatrical': 3199, 'distaste': 3200, 'officer': 3201, 'replace': 3202, 'nahasapeemapetilon': 3203, 'fit': 3204, 'marquee': 3205, 'luv': 3206, 'du': 3207, 'beaumarchais': 3208, 'dishonor': 3209, 'ancestors': 3210, 'applicant': 3211, 'killarney': 3212, 'mither': 3213, 'sang': 3214, 'tones': 3215, 'soft': 3216, 'swe-ee-ee-ee-eet': 3217, 'my-y-y-y-y-y': 3218, 'hanh': 3219, 'sounded': 3220, 'kako:': 3221, 'floating': 3222, 'perfume': 3223, "man's": 3224, 'hat': 3225, 'phasing': 3226, 'schabadoo': 3227, 'attracted': 3228, 'reciting': 3229, 'infatuation': 3230, 'physical': 3231, 'attraction': 3232, 'common': 3233, 'napkins': 3234, 'vigilante': 3235, 'handshake': 3236, 'eightball': 3237, 'twelveball': 3238, 'aboard': 3239, 'nooo': 3240, 'file': 3241, 'fiiiiile': 3242, 'necessary': 3243, 'astronauts': 3244, 'introduce': 3245, 'evils': 3246, 'unfair': 3247, 'wobble': 3248, 'caholic': 3249, 'pee': 3250, 'freely': 3251, 'crotch': 3252, 'ivanna': 3253, 'fondest': 3254, 'desire': 3255, 'invisible': 3256, 'donut': 3257, 'sacrilicious': 3258, 'indecipherable': 3259, 'goo': 3260, 'ideal': 3261, 'thoughtless': 3262, 'remain': 3263, 'nameless': 3264, 'spite': 3265, 'clips': 3266, 'awfully': 3267, 'flustered': 3268, "ball's": 3269, 'slender': 3270, 'feminine': 3271, 'tapered': 3272, 'lighter': 3273, 'delicate': 3274, 'brunswick': 3275, 'bowled': 3276, 'shifty': 3277, 'eyed': 3278, 'genuinely': 3279, 'enthused': 3280, 'patting': 3281, 'flames': 3282, "burnin'": 3283, 'soaked': 3284, "messin'": 3285, 'banned': 3286, 'sugar-me-do': 3287, 'caricature': 3288, 'mt': 3289, 'lushmore': 3290, 'juke': 3291, 'raining': 3292, 'oww': 3293, 'jokes': 3294, 'incognito': 3295, 'gr-aargh': 3296, 'exact': 3297, 'equal': 3298, 'astonishment': 3299, 'puffy': 3300, 'however': 3301, 'confidentially': 3302, 'collateral': 3303, 'shark': 3304, 'finance': 3305, 'sledge-hammer': 3306, 'othello': 3307, 'drinker': 3308, 'sensible': 3309, 'presently': 3310, 'beast': 3311, 'savagely': 3312, 'tender': 3313, 'scout': 3314, 'arrested:': 3315, 'heather': 3316, 'locklear': 3317, 'fortensky': 3318, 'hugh': 3319, 'cuff': 3320, 'links': 3321, 'traditions': 3322, 'enthusiasm': 3323, 'other_player:': 3324, "fightin'": 3325, 'dizzy': 3326, 'nauseous': 3327, 'female_inspector:': 3328, 'toxins': 3329, 'pumping': 3330, 'steely-eyed': 3331, 'ahhhh': 3332, 'rascals': 3333, 'smelly': 3334, 'shtick': 3335, 'faceful': 3336, 'soot': 3337, 'william': 3338, 'faulkner': 3339, 'aggie': 3340, 'director:': 3341, 'stagehand:': 3342, 'luckily': 3343, 'orphan': 3344, 'owned': 3345, 'assent': 3346, 'wealthy': 3347, 'merchants': 3348, 'forgiven': 3349, 'prices': 3350, 'flailing': 3351, 'agh': 3352, 'little_hibbert_girl:': 3353, 'mmm-hmm': 3354, 'cheesecake': 3355, 'depository': 3356, 'all-american': 3357, 'cooking': 3358, 'chairman': 3359, 'wok': 3360, 'relaxing': 3361, 'madman': 3362, 'cooker': 3363, 'feedbag': 3364, "fryer's": 3365, 'navy': 3366, 'flash-fry': 3367, 'whining': 3368, "g'on": 3369, 'extinguishers': 3370, 'cheering': 3371, "aren'tcha": 3372, '50-60': 3373, 'mistakes': 3374, 'mistresses': 3375, 'quimby_#2:': 3376, 'quimbys:': 3377, 'bell': 3378, 'support': 3379, 'prejudice': 3380, 'hero-phobia': 3381, 'sickens': 3382, 'jubilation': 3383, 'committee': 3384, 'vicious': 3385, 'distract': 3386, 'safely': 3387, 'choices:': 3388, 'barney-guarding': 3389, 'contemplated': 3390, 'truck_driver:': 3391, 'dracula': 3392, 'marry': 3393, 'jovial': 3394, 'sickly': 3395, 'ura': 3396, 'snotball': 3397, '70': 3398, 'voyager': 3399, 'craft': 3400, "tab's": 3401, '14': 3402, 'alls': 3403, 'halfway': 3404, 'muscle': 3405, "wino's": 3406, 'muffled': 3407, 'inches': 3408, 'bullet-proof': 3409, 'student': 3410, 'aggravazes': 3411, 'immiggants': 3412, 'bothered': 3413, 'language': 3414, 'sentimonies': 3415, "jimbo's_dad:": 3416, "dolph's_dad:": 3417, 'throws': 3418, 'ugh': 3419, "kearney's_dad:": 3420, "somethin's": 3421, "fun's": 3422, 'two-drink': 3423, 'punishment': 3424, 'three-man': 3425, "poundin'": 3426, "kid's": 3427, 'beatings': 3428, 'spirit': 3429, 'prizefighters': 3430, 'perking': 3431, 'boxers': 3432, 'lobster': 3433, 'dressing': 3434, 'limits': 3435, 'arise': 3436, 'clincher': 3437, 'sixty': 3438, 'wantcha': 3439, 'faith': 3440, '1979': 3441, 'office': 3442, 'presentable': 3443, 'gruesome': 3444, 'democrats': 3445, 'causes': 3446, 'damage': 3447, 'boxcar': 3448, 'brawled': 3449, 'boxcars': 3450, 'fighter': 3451, 'mitts': 3452, 'barbed': 3453, 'stinger': 3454, 'drawn': 3455, "tramp's": 3456, 'stops': 3457, 'punching': 3458, "'cept": 3459, 'bindle': 3460, "now's": 3461, 'delightful': 3462, 'glitterati': 3463, 'highest': 3464, 'priority': 3465, 'temporarily': 3466, 'incarcerated': 3467, 'pushing': 3468, 'stairs': 3469, 'impending': 3470, 'strategizing': 3471, 'glorious': 3472, 'shores': 3473, 'fistiana': 3474, 'comeback': 3475, "donatin'": 3476, 'stalwart': 3477, 'pugilist': 3478, 'fights': 3479, 'sustain': 3480, 'verticality': 3481, "tatum'll": 3482, 'fustigate': 3483, 'fustigation': 3484, 'choice:': 3485, 'faded': 3486, 'tar-paper': 3487, 'naively': 3488, 'champion': 3489, 'evasive': 3490, 'charged': 3491, 'landfill': 3492, 'burg': 3493, 'pussycat': 3494, 'doll-baby': 3495, 'starla': 3496, 'starla:': 3497, 'wigs': 3498, "starla's": 3499, 'temp': 3500, 'k-zug': 3501, "'kay-zugg'": 3502, '530': 3503, 'launch': 3504, 'demo': 3505, 'housework': 3506, 'self-centered': 3507, 'though:': 3508, 'thawing': 3509, 'station': 3510, 'sink': 3511, 'broken:': 3512, 'foundation': 3513, 'helpful': 3514, 'crony': 3515, 'sam:': 3516, 'sympathizer': 3517, 'bumblebee_man:': 3518, 'compadre': 3519, 'kearney_zzyzwicz:': 3520, 'associate': 3521, 'contemporary': 3522, 'well-wisher': 3523, 'specific': 3524, 'harm': 3525, 'friday': 3526, 'dã¼ff': 3527, 'doof': 3528, 'sweden': 3529, 'skoal': 3530, 'nasty': 3531, 'refreshing': 3532, 'breathalyzer': 3533, 'recreate': 3534, 'alien': 3535, 'wittgenstein': 3536, 'backgammon': 3537, 'dana_scully:': 3538, 'felony': 3539, 'packets': 3540, 'mustard': 3541, "fine-lookin'": 3542, 'remorseful': 3543, 'anyhow': 3544, 'agents': 3545, 'mulder': 3546, 'edgy': 3547, "s'cuse": 3548, 'dimly': 3549, 'generously': 3550, 'raking': 3551, 'nervously': 3552, 'syndicate': 3553, 'ambrose': 3554, 'burnside': 3555, 'stonewall': 3556, 'jackson': 3557, 'mill': 3558, "industry's": 3559, 'aerospace': 3560, 'railroads': 3561, 'knowingly': 3562, 'hoped': 3563, "bart'd": 3564, 'mystery': 3565, "swishifyin'": 3566, 'effect': 3567, "mtv's": 3568, 'lessee': 3569, "shootin'": 3570, "man'd": 3571, 'wars': 3572, 'warren': 3573, 'grandkids': 3574, 'considers': 3575, 'st': 3576, 'metal': 3577, 'busiest': 3578, 'cheapskates': 3579, 'ireland': 3580, 'menacing': 3581, 'yew': 3582, 'bathtub': 3583, 'mint': 3584, 'julep': 3585, 'jane': 3586, 'fonda': 3587, 'daniel': 3588, 'schorr': 3589, 'anderson': 3590, 'richard': 3591, "nixon's": 3592, 'expecting': 3593, 'chauffeur': 3594, 'lift': 3595, "washin'": 3596, 'desperately': 3597, 'belly-aching': 3598, 'wh': 3599, 'abe': 3600, 'dea-d-d-dead': 3601, 'stooges': 3602, 'shopping': 3603, 'cans': 3604, 'wise': 3605, 'socratic': 3606, 'swelling': 3607, 'mushy': 3608, 'hearts': 3609, 'pinball': 3610, 'western': 3611, 'dishrag': 3612, 'crab': 3613, 'talkers': 3614, 'jewish': 3615, 'catch-phrase': 3616, 'grrrreetings': 3617, 'darn': 3618, "tootin'": 3619, 'fink': 3620, 'ping-pong': 3621, 'plug': 3622, "usin'": 3623, "phone's": 3624, 'four-drink': 3625, 'test-': 3626, 'test-lady': 3627, "g'ahead": 3628, 'clammy': 3629, 'lovelorn': 3630, 'you-need-man': 3631, 'moe-near-now': 3632, 'go-near-': 3633, 'endorsement': 3634, 'breakfast': 3635, 'rush': 3636, "'evening": 3637, "'morning": 3638, 'chauffeur:': 3639, '91': 3640, 'accidents': 3641, 'choose': 3642, 'whoever': 3643, 'stays': 3644, 'noooooooooo': 3645, 'pantsless': 3646, 'duffed': 3647, 'creates': 3648, 'awareness': 3649, 'bottomless': 3650, 'cheerleaders:': 3651, 'and:': 3652, 'perfunctory': 3653, 'brusque': 3654, 'ehhh': 3655, 'swell': 3656, 'wholeheartedly': 3657, 'supports': 3658, 'shaky': 3659, 'lecture': 3660, 'villanova': 3661, 'streetcorner': 3662, 'anger': 3663, 'ought': 3664, 'parasol': 3665, 'congratulations': 3666, 'cockroach': 3667, 'displeased': 3668, 'man_at_bar:': 3669, "scammin'": 3670, 'easter': 3671, 'giant': 3672, 'rumor': 3673, 'depression': 3674, 'depressant': 3675, 'sight-unseen': 3676, 'twenty-four': 3677, 'chipper': 3678, 'dirge-like': 3679, 'blooded': 3680, 'bachelorhood': 3681, 'jasper_beardly:': 3682, 'hot-rod': 3683, 'souped': 3684, 'gear-head': 3685, 'six-barrel': 3686, 'hollye': 3687, 'carb': 3688, 'betcha': 3689, 'edelbrock': 3690, 'intakes': 3691, 'meyerhof': 3692, 'lifters': 3693, 'dignity': 3694, 'breakdown': 3695, 'society': 3696, 'dateline:': 3697, 'burglary': 3698, 'creature': 3699, 'intoxicated': 3700, 'marjorie': 3701, 'heart-broken': 3702, 'sweater': 3703, 'cajun': 3704, 'sneering': 3705, 'choke': 3706, 'enthusiastically': 3707, 'stomach': 3708, 'bushes': 3709, 'tapping': 3710, 'further': 3711, 'zinged': 3712, 'spews': 3713, 'orifice': 3714, 'indifference': 3715, 'clapping': 3716, "hawkin'": 3717, 'vincent': 3718, "floatin'": 3719, 'horrors': 3720, 'unfresh': 3721, 'winston': 3722, 'wienerschnitzel': 3723, 'madison': 3724, 'avenue': 3725, 'robbers': 3726, 'various': 3727, 'impeach': 3728, 'crooks': 3729, 'allowance': 3730, 'cats': 3731, '$42': 3732, 'bury': 3733, 'businessman_#2:': 3734, 'boston': 3735, 'suits': 3736, 'vehicle': 3737, 'oooo': 3738, 'ignoring': 3739, 'followed': 3740, 'begging': 3741, 'combines': 3742, 'handling': 3743, 'rugged': 3744, 'driveability': 3745, 'sturdy': 3746, '4x4': 3747, "ya'": 3748, 'cadillac': 3749, 'automobiles': 3750, 'beefs': 3751, 'fat-free': 3752, 'th-th-th-the': 3753, 'groan': 3754, 'jay:': 3755, 'shoulda': 3756, 'shill': 3757, 'indifferent': 3758, '35': 3759, 'hammer': 3760, 'country-fried': 3761, 'endorsed': 3762, 'federal': 3763, 'ruled': 3764, 'unsafe': 3765, 'chorus:': 3766, 'lanes': 3767, 'sixty-five': 3768, 'tons': 3769, 'unexplained': 3770, 'fires': 3771, 'courts': 3772, 'blinds': 3773, 'squirrel': 3774, 'squashing': 3775, "smackin'": 3776, 'canyoner-oooo': 3777, 'hyahh': 3778, 'blissful': 3779, 'hiding': 3780, 'rash': 3781, 'whatchacallit': 3782, 'homesick': 3783, 'diving': 3784, 'tourist': 3785, 'pennies': 3786, 'micronesian': 3787, 'swamp': 3788, 'mirror': 3789, 'puke-pail': 3790, "fendin'": 3791, 'starlets': 3792, 'pointy': 3793, 'ugliness': 3794, 'dozen': 3795, 'ram': 3796, 'players': 3797, 'maxed': 3798, 'tenuous': 3799, 'pinchpenny': 3800, 'besides': 3801, 'tabs': 3802, 'ungrateful': 3803, 'ingrates': 3804, "renee's": 3805, 'insured': 3806, 'wreck': 3807, 'awkwardly': 3808, 'insist': 3809, 'model': 3810, 'represents': 3811, 'olive': 3812, "car's": 3813, 'toy': 3814, 'waterfront': 3815, "department's": 3816, 'moonlight': 3817, 'cruise': 3818, 'righ': 3819, 'alibi': 3820, 'tracks': 3821, '10:15': 3822, 'wham': 3823, 'insurance': 3824, 'clams': 3825, 'troubles': 3826, 'betrayed': 3827, 'low-life': 3828, 'y-you': 3829, 'hmf': 3830, 'locked': 3831, 'clearing': 3832, 'graveyard': 3833, 'we-we-we': 3834, 'brandy': 3835, 'fwooof': 3836, 'hawaii': 3837, 'yelp': 3838, 'murderously': 3839, 'oh-ho': 3840, "g'night": 3841, 'mommy': 3842, 'sincerely': 3843, 'tearfully': 3844, 'beady': 3845, "homer'll": 3846, 'naval': 3847, 'strictly': 3848, 'forbids': 3849, 'hah': 3850, 'thorn': 3851, 'grants': 3852, 'wondered': 3853, "that'd": 3854, 'heatherton': 3855, 'tempting': 3856, 'agent_miller:': 3857, 'flashing': 3858, 'badge': 3859, 'united': 3860, 'states': 3861, 'wiping': 3862, 'signal': 3863, 'activity': 3864, 'cause': 3865, 'commit': 3866, 'crimes': 3867, 'fired': 3868, 'moonshine': 3869, 'basement': 3870, 'telemarketing': 3871, 'uhhhh': 3872, 'george': 3873, 'seething': 3874, 'charlie:': 3875, 'militia': 3876, 'sorts': 3877, 'officials': 3878, 'drag': 3879, 'high-definition': 3880, 'conspiracy': 3881, 'musta': 3882, 'ratted': 3883, 'transmission': 3884, 'disaster': 3885, 'wishful': 3886, 'elect': 3887, 'vengeful': 3888, 'slogan': 3889, 'appeals': 3890, 'slobs': 3891, 'triumphantly': 3892, 'u2:': 3893, 'sanitation': 3894, 'blokes': 3895, 'courteous': 3896, 'easygoing': 3897, 'the_edge:': 3898, 'overflowing': 3899, 'bono:': 3900, 'arse': 3901, 'knocks': 3902, 'omit': 3903, 'detail': 3904, 'spellbinding': 3905, 'thomas': 3906, 'dictating': 3907, 'fluoroscope': 3908, 'repeating': 3909, 'telegraph': 3910, 'breathless': 3911, 'firm': 3912, 'believer': 3913, 'fletcherism': 3914, 'heliotrope': 3915, 'alva': 3916, 'wore': 3917, 'pajamas': 3918, 'rubs': 3919, 'temples': 3920, 'menlo': 3921, 'tasimeter': 3922, 'ore': 3923, 'separator': 3924, 'watt': 3925, 'steam': 3926, 'engine': 3927, 'unusually': 3928, 'focused': 3929, 'squeal': 3930, 'waste': 3931, "somebody's": 3932, 'gus': 3933, 'yoink': 3934, 'peeved': 3935, 'citizens': 3936, 'murdered': 3937, 'watered': 3938, 'highball': 3939, 'derisive': 3940, 'grocery': 3941, 'absorbent': 3942, 'youuu': 3943, 'ointment': 3944, 'aisle': 3945, 'coy': 3946, 'kim_basinger:': 3947, 'alec_baldwin:': 3948, 'ron_howard:': 3949, 'statesmanlike': 3950, 'doctor': 3951, 'polenta': 3952, 'life-threatening': 3953, 'donor': 3954, 'sucker': 3955, 'lists': 3956, 'spine': 3957, 'vestigial': 3958, 'plaintive': 3959, 'buttocks': 3960, 'harvesting': 3961, 'eyeing': 3962, 'hostile': 3963, "'round": 3964, 'y': 3965, 'dime': 3966, 'quimby': 3967, 'puke-holes': 3968, 'reserved': 3969, 'cronies': 3970, 'dã¼ffenbraus': 3971, 'semi-imported': 3972, 'guzzles': 3973, 'generosity': 3974, 'greatly': 3975, 'appreciated': 3976, 'stagey': 3977, 'roach': 3978, 'hubub': 3979, 'sniper': 3980, 'blessing': 3981, 'disguise': 3982, 'ruuuule': 3983, 'die-hard': 3984, 'winded': 3985, "brockman's": 3986, 'microphone': 3987, 'woooooo': 3988, 'ga': 3989, 'ninth': 3990, 'outs': 3991, 'j': 3992, "'s": 3993, 'jumping': 3994, 'technical': 3995, 'stan': 3996, 'kadlubowski': 3997, 'injury': 3998, "football's": 3999, 'champs': 4000, 'harrowing': 4001, 'enjoys': 4002, 'scornful': 4003, 'bronco': 4004, 'nagurski': 4005, 'reconsidering': 4006, 'coupon': 4007, 'travel': 4008, 'agency': 4009, 'charter': 4010, 'dreamily': 4011, 'quarterback': 4012, 'wally': 4013, 'it:': 4014, 'count': 4015, 'broncos': 4016, 'hillary': 4017, 'adventure': 4018, 'assassination': 4019, 'scarf': 4020, 'lance': 4021, 'supervising': 4022, 'bumbling': 4023, 'sidekick': 4024, 'infiltrate': 4025, 'idiots': 4026, 'destroyed': 4027, 'shipment': 4028, 'indeedy': 4029, 'insulin': 4030, 'haplessly': 4031, "spaghetti-o's": 4032, 'dum-dum': 4033, 'unintelligent': 4034, 'shutup': 4035, 'diminish': 4036, 'bid': 4037, 'encore': 4038, 'encores': 4039, 'reactions': 4040, 'clap': 4041, 'erasers': 4042, 'sideshow_mel:': 4043, 'barbara': 4044, 'arts': 4045, 'stalking': 4046, 'bumped': 4047, 'sympathy': 4048, 'guiltily': 4049, 'maude': 4050, 'shriners': 4051, 'old_jewish_man:': 4052, 'traitor': 4053, 'astrid': 4054, 'dealer': 4055, 'gunter': 4056, 'cecil': 4057, 'hampstead-on-cecil-cecil': 4058, 'eurotrash': 4059, 'gunter:': 4060, 'adrift': 4061, 'decadent': 4062, 'luxury': 4063, 'meaningless': 4064, 'located': 4065, 'cecil_terwilliger:': 4066, 'hotel': 4067, 'practice': 4068, 'affectations': 4069, 'bon': 4070, 'soir': 4071, 'feld': 4072, 'priceless': 4073, 'sketch': 4074, 'certificate': 4075, 'authenticity': 4076, 'sketching': 4077, 'twelve-step': 4078, 'novelty': 4079, 'item': 4080, 'chosen': 4081, 'squadron': 4082, '8': 4083, 'monday': 4084, 'municipal': 4085, 'fortress': 4086, 'vengeance': 4087, 'studied': 4088, 'fastest': 4089, 'theory': 4090, 'donut-shaped': 4091, 'universe': 4092, 'intriguing': 4093, 'computer_voice_2:': 4094, 'larry': 4095, 'flynt': 4096, 'stink': 4097, "hell's": 4098, 'jazz': 4099, 'regretted': 4100, 'helpless': 4101, 'frescas': 4102, 'hushed': 4103, "bladder's": 4104, 'urine': 4105, 'demand': 4106, 'slaps': 4107, 'extreme': 4108, 'slapped': 4109, "duelin'": 4110, 'shack': 4111, "b-52's:": 4112, 'sat-is-fac-tion': 4113, 'feat': 4114, 'forgotten': 4115, 'depressed': 4116, 'shred': 4117, 'shreda': 4118, 'rivalry': 4119, 'spreads': 4120, 'wildfever': 4121, 'th': 4122, 'writer:': 4123, 'preparation': 4124, 'additional-seating-capacity': 4125, 'ivy-covered': 4126, 'founded': 4127, 'kegs': 4128, 'imported-sounding': 4129, 'tuborg': 4130, 'kings': 4131, 'accounta': 4132, 'sun': 4133, 'sky': 4134, 'sail': 4135, 'waters': 4136, 'theme': 4137, 'tyson/secretariat': 4138, 'wildest': 4139, 'calendars': 4140, 'liquor': 4141, 'examines': 4142, 'expired': 4143, '1973': 4144, 'rhode': 4145, 'signed': 4146, 'updated': 4147, 'poster': 4148, 'moe-lennium': 4149, 'sticker': 4150, 'viva': 4151, 'relative': 4152, 'stickers': 4153, 'uglier': 4154, 'pigtown': 4155, 'cauliflower': 4156, 'ear': 4157, 'lizard': 4158, 'caveman': 4159, 'snout': 4160, 'emphasis': 4161, 'maher': 4162, 'crapmore': 4163, 'kisser': 4164, 'spotting': 4165, 'windowshade': 4166, 'grope': 4167, 'softer': 4168, 'complicated': 4169, 'maintenance': 4170, "neat's-foot": 4171, 'hooters': 4172, 'wraps': 4173, 'crushed': 4174, 'hike': 4175, 'mabel': 4176, 'voted': 4177, 'chastity': 4178, 'bono': 4179, 'influence': 4180, 'glummy': 4181, 'shindig': 4182, 'videotaped': 4183, 'slot': 4184, 'package': 4185, 'tha': 4186, 'occasion': 4187, 'older': 4188, 'flew': 4189, 'upsetting': 4190, 'stage': 4191, 'talkative': 4192, 'coherent': 4193, 'yourse': 4194, 'soaking': 4195, 'shag': 4196, 'disgracefully': 4197, 'presents': 4198, 'without:': 4199, 'morning-after': 4200, 'boozebag': 4201, 'whirlybird': 4202, 'b-day': 4203, 'punkin': 4204, 'tanking': 4205, "handwriting's": 4206, 'afloat': 4207, 'santeria': 4208, 'breaks': 4209, 'straighten': 4210, 'finish': 4211, 'suspiciously': 4212, 'world-class': 4213, 'alcoholism': 4214, 'raging': 4215, 'barney-type': 4216, 'bad-mouth': 4217, 'catty': 4218, 'consulting': 4219, 'amends': 4220, 'disgraceful': 4221, 'behavior': 4222, 'barstools': 4223, 'closet': 4224, 'drop-off': 4225, 'bulletin': 4226, 'broken': 4227, 'trapping': 4228, 'youngsters': 4229, 'trucks': 4230, 'unavailable': 4231, 'blaze': 4232, 'burt_reynolds:': 4233, 'feisty': 4234, 'supreme': 4235, 'court': 4236, 'birth': 4237, 'competing': 4238, 'cross-country': 4239, 'race': 4240, 'flown': 4241, 'heroism': 4242, 'charges': 4243, 'binoculars': 4244, 'grieving': 4245, 'slab': 4246, 'tear': 4247, 'reluctantly': 4248, 'clenched': 4249, 'resigned': 4250, 'according': 4251, 'uses': 4252, 'appearance-altering': 4253, 'cosmetics': 4254, 'warned': 4255, 'tall': 4256, 'clandestine': 4257, 'disturbing': 4258, 'pulitzer': 4259, 'guinea': 4260, 'chew': 4261, 'telephone': 4262, 'experiments': 4263, 'ears': 4264, 'winces': 4265, 'hmmmm': 4266, 'dawning': 4267, 'appalled': 4268, 'fire_inspector:': 4269, 'brainiac': 4270, 'distinct': 4271, 'strain': 4272, 'anti-intellectualism': 4273, 'einstein': 4274, 'appendectomy': 4275, 'lipo': 4276, 'sampler': 4277, 'dramatically': 4278, 'crayon': 4279, 'art': 4280, 'carney': 4281, 'flourish': 4282, 'crayola': 4283, 'oblongata': 4284, 'deeper': 4285, 'pusillanimous': 4286, 'pilsner-pusher': 4287, 'inanely': 4288, 'extended': 4289, 'warranty': 4290, 'sacajawea': 4291, 'manatee': 4292, 'cranberry': 4293, 'aah': 4294, 'painted': 4295, 'choices': 4296, 'scanning': 4297, "soakin's": 4298, 'nectar': 4299, 'nitwit': 4300, "knockin'": 4301, 'badmouths': 4302, "o'": 4303, 'mindless': 4304, 'droning': 4305, 'befriend': 4306, "raggin'": 4307, 'conditioners': 4308, 'loneliness': 4309, 'guttural': 4310, 'heartless': 4311, 'owns': 4312, 'family-owned': 4313, 'eye-gouger': 4314, 'brine': 4315, 'massive': 4316, 'occasional': 4317, 'total': 4318, 'rip-off': 4319, 'gangrene': 4320, 'cup': 4321, "coffee'll": 4322, 'waking-up': 4323, 'instantly': 4324, "nick's": 4325, 'rude': 4326, 'hitchhike': 4327, 'emergency': 4328, 'dollface': 4329, 'nash': 4330, 'bridges': 4331, 'illegally': 4332, 'smuggled': 4333, '2nd_voice_on_transmitter:': 4334, '3rd_voice:': 4335, 'presses': 4336, 'snitch': 4337, 'lotsa': 4338, 'mission': 4339, 'fireworks': 4340, 'incriminating': 4341, 'recorder': 4342, 'hootie': 4343, 'blowfish': 4344, 'cheaper': 4345, 'blank': 4346, 'wells': 4347, 'aer': 4348, 'lingus': 4349, 'leprechaun': 4350, 'cursed': 4351, "heat's": 4352, 'dejected': 4353, 'slugger': 4354, 'italian': 4355, "spyin'": 4356, 'assumed': 4357, 'stupidest': 4358, 'valley': 4359, 'series': 4360, 'quitcher': 4361, 'bellyaching': 4362, 'dumb-asses': 4363, 'yak': 4364, "d'ya": 4365, 'shesh': 4366, 'smiled': 4367, 'nailed': 4368, 'jigger': 4369, 'illustrates': 4370, 'swigmore': 4371, 'fills': 4372, 'alma': 4373, 'mater': 4374, 'rekindle': 4375, 'urban': 4376, "tinklin'": 4377, 'chips': 4378, "when's": 4379, 'natured': 4380, 'splattered': 4381, 'fonzie': 4382, 'hemorrhage-amundo': 4383, 'yello': 4384, 'booger': 4385, 'dirty': 4386, 'teen': 4387, 'hardhat': 4388, 'wrecking': 4389, 'giggle': 4390, 'fainted': 4391, 'prettied': 4392, 'renew': 4393, 'zeal': 4394, 'twentieth': 4395, 'dean': 4396, 'design': 4397, 'certified': 4398, 'contractors': 4399, 'pages': 4400, 'hippies': 4401, 'rem': 4402, 'apology': 4403, 'eco-fraud': 4404, 'reluctant': 4405, 'rainforest': 4406, 'peter_buck:': 4407, 'michael': 4408, 'supplying': 4409, 'mike_mills:': 4410, 'gluten': 4411, 'ate': 4412, 'michael_stipe:': 4413, 'mmmmm': 4414, 'alternative': 4415, 'rockers': 4416, 'gabriel': 4417, 'mortal': 4418, 'equivalent': 4419, 'gabriel:': 4420, 'temper': 4421, 'deliberately': 4422, 'girl-bart': 4423, 'loathe': 4424, 'knives': 4425, "lady's": 4426, "'n'": 4427, 'creme': 4428, 'martini': 4429, 'amber_dempsey:': 4430, 'annoying': 4431, 'night-crawlers': 4432, 'bragging': 4433, 'mole': 4434, 'wowww': 4435, 'amber': 4436, 'proves': 4437, 'buffet': 4438, 'clothespins': 4439, 'attach': 4440, 'clothespins:': 4441, 'swallowed': 4442, 'inserted': 4443, 'clipped': 4444, 'sixteen': 4445, 'magnanimous': 4446, "clancy's": 4447, 'op': 4448, 'lovers': 4449, 'newsweek': 4450, 'failure': 4451, 'thrust': 4452, 'trivia': 4453, 'lifetime': 4454, 'supply': 4455, 'chug-monkeys': 4456, 'beverage': 4457, 'hops': 4458, 'grains': 4459, 'grain': 4460, "time's": 4461, 'reading:': 4462, 'woulda': 4463, 'arrange': 4464, 'escort': 4465, 'orgasmville': 4466, 'enlightened': 4467, 'television': 4468, 'producers': 4469, 'booking': 4470, 'mid-seventies': 4471, 'alky': 4472, "round's": 4473, 'payday': 4474, 'rented': 4475, 'swings': 4476, "battin'": 4477, 'cage': 4478, 'perverted': 4479, 'winner': 4480, 'sprawl': 4481, 'hockey-fight': 4482, 'settled': 4483, "what'd": 4484, 'lookalike:': 4485, 'chuck': 4486, 'exited': 4487, 'trunk': 4488, 'rainier': 4489, 'wolfcastle': 4490, 'ab': 4491, 'roller': 4492, 'backward': 4493, 'leftover': 4494, 'lookalike': 4495, 'lookalikes': 4496, 'macaulay': 4497, 'culkin': 4498, 'killing': 4499, 'alpha-crow': 4500, 'enveloped': 4501, 'crow': 4502, 'crowbar': 4503, 'sloppy': 4504, 'wacky': 4505, 'tobacky': 4506, 'spacey': 4507, 'intervention': 4508, 'poisoning': 4509, 'excuses': 4510, 'funeral': 4511, 'interrupting': 4512, 'forty-seven': 4513, 'here-here-here': 4514, 'pepper': 4515, 'shaker': 4516, 'dash': 4517, 'dinks': 4518, 'squishee': 4519, 'canoodling': 4520, 'junkyard': 4521, 'rabbits': 4522, 'soothing': 4523, 'promise': 4524, 'tropical': 4525, 'windelle': 4526, 'muhammad': 4527, 'ali': 4528, 'anti-lock': 4529, 'brakes': 4530, 'johnny': 4531, 'mathis': 4532, 'versus': 4533, 'pepsi': 4534, 'meditative': 4535, 'lily-pond': 4536, 'fry': 4537, 'squirrels': 4538, 'super-genius': 4539, 'certainly': 4540, 'lenford': 4541, 'celebration': 4542, 'pasta': 4543, 'mini-beret': 4544, "this'll": 4545, 'speed': 4546, 'nos': 4547, 'killer': 4548, 'stab': 4549, 'simon': 4550, 'up-bup-bup': 4551, "pickin'": 4552, 'homer_doubles:': 4553, 'len-ny': 4554, 'piano': 4555, 'cell-ee': 4556, 'cattle': 4557, "rustlin'": 4558, "calf's": 4559, 'sneak': 4560, 'snatch': 4561, 'ghouls': 4562, 'grammy': 4563, 'judges': 4564, 'perfected': 4565, 'device': 4566, 'flayvin': 4567, 'space-time': 4568, 'continuum': 4569, "wait'll": 4570, 'wasted': 4571, 'plotz': 4572, 'absentminded': 4573, 'polishing': 4574, 'diapers': 4575, 'yuh-huh': 4576, 'alter': 4577, 'consciousness': 4578, 'glitz': 4579, 'glamour': 4580, 'beligerent': 4581, 'liable': 4582, 'taunting': 4583, 'accelerating': 4584, 'snapping': 4585, 'cab_driver:': 4586, 'newest': 4587, 'supermodel': 4588, 'longest': 4589, 'spit-backs': 4590, "tonight's": 4591, 'cock': 4592, 'scoffs': 4593, 'tokens': 4594, 'reality': 4595, 'gimmick': 4596, 'lincoln': 4597, 'kennedy': 4598, 'mckinley': 4599, 'simple': 4600, 'slit': 4601, 'quick-like': 4602, 'sideshow_bob:': 4603, 'haikus': 4604, 'skinheads': 4605, 'concentrate': 4606, 'detective': 4607, 'unbelievable': 4608, 'digging': 4609, 'intimacy': 4610, 'cobbling': 4611, 'shoes': 4612, 'schizophrenia': 4613, 'hiring': 4614, 'swan': 4615, 'delts': 4616, 'clench': 4617, 'bulked': 4618, 'managed': 4619, 'femininity': 4620, 'fierce': 4621, 'glyco-load': 4622, 'ripping': 4623, 'gel': 4624, 'frightened': 4625, 'sacrifice': 4626, 'period': 4627, 'delicately': 4628, 'yammering': 4629, 'pile': 4630, 'disco_stu:': 4631, 'stu': 4632, 'ducked': 4633, 'slim': 4634, 'bupkus': 4635, 'perplexed': 4636, 'rump': 4637, 'payback': 4638, 'revenge': 4639, 'subscriptions': 4640, 'brick': 4641, 'cerebral': 4642, 'booze-bags': 4643, 'victorious': 4644, 'gallon': 4645, 'icelandic': 4646, 'boyhood': 4647, 'anti-crime': 4648, 'dealie': 4649, 'streetlights': 4650, 'strongly': 4651, 'pro': 4652, 'con': 4653, "i'unno": 4654, 'superdad': 4655, 'crystal': 4656, 'cheaped': 4657, 'shelf': 4658, 'paramedic:': 4659, 'ingested': 4660, 'defiantly': 4661, 'ihop': 4662, 'burger': 4663, 'absentmindedly': 4664, "doctor's": 4665, 'neanderthal': 4666, 'taylor': 4667, 'ing': 4668, 'voters': 4669, 'november': 4670, 'practically': 4671, 'everywhere': 4672, 'resenting': 4673, 'appreciate': 4674, 'shout': 4675, 'f-l-a-n-r-d-s': 4676, 'flame': 4677, 'researching': 4678, 'indigenous': 4679, 'overhearing': 4680, 'delightfully': 4681, 'byrne': 4682, 'singer': 4683, 'artist': 4684, 'composer': 4685, 'wrestle': 4686, 'el': 4687, 'diablo': 4688, 'philip': 4689, 'rewound': 4690, 'produce': 4691, 'rolls': 4692, 'kahlua': 4693, 'fleabag': 4694, 'unsanitary': 4695, "wearin'": 4696, 'walked': 4697, 'dark': 4698, 'dreary': 4699, 'drunkening': 4700, 'hangover': 4701, 'barber': 4702, 'frat': 4703, 'julienne': 4704, 'potatoes': 4705, 'groin': 4706, 'shortcomings': 4707, 'banquet': 4708, 'poulet': 4709, 'au': 4710, 'vin': 4711, 'avec': 4712, 'champignons': 4713, 'ã': 4714, 'kisses': 4715, 'botanical': 4716, 'gardens': 4717, 'blossoming': 4718, 'sumatran': 4719, 'occurs': 4720, 'customers-slash-only': 4721, 'replaced': 4722, "mopin'": 4723, 'alarm': 4724, 'tummies': 4725, 'elves:': 4726, 'cakes': 4727, 'pets': 4728, 'brotherhood': 4729, "i'd'a": 4730, 'pizza': 4731, "y'money's": 4732, 'counter': 4733, 'leonard': 4734, 'competitive': 4735, 'macgregor': 4736, 'musketeers': 4737, 'accusing': 4738, 'lungs': 4739, 'devils:': 4740, 'apulina': 4741, 'including': 4742, 'bouquet': 4743, 'earrings': 4744, 'hilton': 4745, "city's": 4746, 'society_matron:': 4747, 'remote': 4748, 'sharity': 4749, 'aristotle:': 4750, 'weep': 4751, 'mamma': 4752, 'flush-town': 4753, 'population': 4754, 'nonchalant': 4755, 'ninety-eight': 4756, 'outstanding': 4757, 'flush': 4758, 'jacks': 4759, 'multi-national': 4760, 'manipulation': 4761, 'macho': 4762, 'undermine': 4763, 'affects': 4764, 'majority': 4765, 'shareholder': 4766, 'inherent': 4767, 'legal': 4768, 'liability': 4769, 'malfeasance': 4770, 'result': 4771, 'deny': 4772, 'showed': 4773, 'louse': 4774, 'jogging': 4775, 'intruding': 4776, 'sending': 4777, 'swooning': 4778, 'odor': 4779, 'eaters': 4780, 'beanbag': 4781, 'temple': 4782, 'doom': 4783, 'gentle': 4784, 'nightmares': 4785, 'orders': 4786, 'contemptuous': 4787, 'chateau': 4788, 'latour': 4789, 'eighteen': 4790, 'eighty-six': 4791, 'initially': 4792, "collector's": 4793, 'bidet': 4794, 'ladder': 4795, 'fountain': 4796, 'in-in-in': 4797, 'chipped': 4798, 'nail': 4799, 'sticking': 4800, 'poke': 4801, 'bachelor': 4802, 'peaked': 4803, 'and/or': 4804, 'buddies': 4805, 'chug-a-lug': 4806, 'a-lug': 4807, 'disposal': 4808, 'boisterous': 4809, 'exciting': 4810, 'photographer': 4811, 'van': 4812, 'notch': 4813, 'wiggle': 4814, 'friction': 4815, 'killjoy': 4816, 'wussy': 4817, 'grinch': 4818, 'consoling': 4819, 'picked': 4820, 'zoomed': 4821, 'junebug': 4822, 'windshield': 4823, "secret's": 4824, 'bail': 4825, "bringin'": 4826, 'easily': 4827, 'sobriety': 4828, 'urge': 4829, 'sponsor': 4830, 'white_rabbit:': 4831, 'lorre': 4832, 'warmth': 4833, 'penmanship': 4834, 'sucks': 4835, 'anyhoo': 4836, 'cyrano': 4837, 'americans': 4838, 'permanent': 4839, 'visas': 4840, 'dutch': 4841, "leavin'": 4842, "president's": 4843, 'rebuttal': 4844, 'mull': 4845, 'mugs': 4846, "thinkin'": 4847, 'symphonies': 4848, 'fuhgetaboutit': 4849, 'filth': 4850, 'oughta': 4851, 'hideous': 4852, 'frankie': 4853, 'fella': 4854, 'dads': 4855, 'malted': 4856, 'tooth': 4857, 'blinded': 4858, "soundin'": 4859, 'thorough': 4860, 'winks': 4861, 'infestation': 4862, 'sanitary': 4863, 'utensils': 4864, 'hygienically': 4865, 'stored': 4866, 'parked': 4867, 'hydrant': 4868, 'exhale': 4869, 'whaddya': 4870, 'hunky': 4871, 'dory': 4872, 'rife': 4873, 'starters': 4874, 'predecessor': 4875, 'trash': 4876, 'wednesday': 4877, 'chicken': 4878, 'skins': 4879, 'dispenser': 4880, 'john': 4881, 'danny': 4882, 'mountain': 4883, "summer's": 4884, 'falling': 4885, 'bide': 4886, 'tribute': 4887, 'e': 4888, 'acceptance': 4889, 'hafta': 4890, 'reopen': 4891, 'crestfallen': 4892, 'nor': 4893, 'pen': 4894, 'parrot': 4895, 'brief': 4896, 'contact': 4897, 'blocked': 4898, 'protecting': 4899, 'investment': 4900, 'cigars': 4901, 'microwave': 4902, 'beans': 4903, 'stupidly': 4904, 'jerk-ass': 4905, 'doy': 4906, 'cheerier': 4907, 'darkness': 4908, 'tactful': 4909, 'remodel': 4910, "changin'": 4911, 'susie-q': 4912, 'face-macer': 4913, 'guff': 4914, 'grub': 4915, 'proper': 4916, 'old-time': 4917, 'whaaa': 4918, 'britannia': 4919, 'meatpies': 4920, 'lager': 4921, 'classy': 4922, 'asses': 4923, 'so-ng': 4924, 'arm-pittish': 4925, "renovatin'": 4926, 'drapes': 4927, "idea's": 4928, 'lindsay': 4929, 'naegle': 4930, 'mis-statement': 4931, 'allow': 4932, 'credit': 4933, 'bumpy-like': 4934, 'counterfeit': 4935, 'moe-clone': 4936, 'socialize': 4937, 'e-z': 4938, 'oopsie': 4939, "enjoyin'": 4940, 'adult': 4941, 'tickets': 4942, "santa's": 4943, 'sleigh-horses': 4944, 'sells': 4945, 'impress': 4946, "liftin'": 4947, 'dumbbell': 4948, 'forty-nine': 4949, 'ninety-nine': 4950, "lefty's": 4951, 'victim': 4952, 'hustle': 4953, "breakin'": 4954, 'nerd': 4955, 'sugar-free': 4956, 'flat': 4957, 'buds': 4958, 'goldarnit': 4959, 'life-partner': 4960, 'whup': 4961, 'yee-ha': 4962, 'gol-dangit': 4963, "dimwit's": 4964, 'kazoo': 4965, 'head-gunk': 4966, 'hears': 4967, 'cocking': 4968, 'texan': 4969, 're-al': 4970, 'moe-heads': 4971, 'polls': 4972, 'negative': 4973, 'ads': 4974, 'hurting': 4975, 'homeless': 4976, 'bum:': 4977, 'annual': 4978, 'w-a-3-q-i-zed': 4979, 'mason': 4980, 'arrived': 4981, "rentin'": 4982, 'las': 4983, 'nevada': 4984, 'stingy': 4985, 'rat-like': 4986, 'sued': 4987, 'settlement': 4988, 'partially': 4989, 'risquã©': 4990, 'plane': 4991, 'soul-crushing': 4992, 'blackjack': 4993, 'nelson_muntz:': 4994, 'nelson': 4995, 'pair': 4996, 'paints': 4997, 'noggin': 4998, 'meanwhile': 4999, "yieldin'": 5000, 'moe_recording:': 5001, 'ew': 5002, 'considering:': 5003, "table's": 5004, 'wobbly': 5005, 'jam': 5006, 'ford': 5007, 'captain': 5008, 'kirk': 5009, 'five-fifteen': 5010, 'eternity': 5011, 'fortune': 5012, 'fica': 5013, 'helping': 5014, 'steamed': 5015, 'cappuccino': 5016, '-ry': 5017, 'otherwise': 5018, 'neighbors': 5019, 'wife-swapping': 5020, 'strolled': 5021, 'donation': 5022, 'lewis': 5023, 'notorious': 5024, 'idealistic': 5025, 'law-abiding': 5026, 'archaeologist': 5027, 'excavating': 5028, 'mayan': 5029, 'pyramid': 5030, 'unearth': 5031, 'pre-columbian': 5032, 'donate': 5033, 'statues': 5034, 'handed': 5035, 'dilemma': 5036, 'edner': 5037, "playin'": 5038, 'coin': 5039, 'poorer': 5040, 'worldly': 5041, 'possessions': 5042, "'ceptin'": 5043, 'nucular': 5044, 'obsessive-compulsive': 5045, 'powered': 5046, 'non-american': 5047, "tv's": 5048, 'misfire': 5049, 'prolonged': 5050, 'playoff': 5051, "hobo's": 5052, 'owes': 5053, 'fist': 5054, "puttin'": 5055, 'screws': 5056, "tony's": 5057, 'all-all-all': 5058, 'stars': 5059, 'firing': 5060, 'pure': 5061, 'polish': 5062, 'heck': 5063, "challengin'": 5064, 'sudoku': 5065, 'puzzle': 5066, 'numeral': 5067, 'repeated': 5068, 'column': 5069, 'salvation': 5070, 'cocks': 5071, 'stripes': 5072, 'repay': 5073, 'colonel:': 5074, 'fishing': 5075, "listenin'": 5076, 'bursts': 5077, 'published': 5078, 'author': 5079, 'earlier': 5080, 'newly-published': 5081, 'snail': 5082, 'trail': 5083, 'name:': 5084, 'bonfire': 5085, 'vanities': 5086, 'coined': 5087, 'phrase': 5088, 'radical': 5089, 'chic': 5090, "squeezin'": 5091, "'roids": 5092, 'vermont': 5093, 'thrilled': 5094, "wouldn't-a": 5095, 'outlive': 5096, 'wizard': 5097, 'upn': 5098, 'assert': 5099, 'herself': 5100, 'backbone': 5101, 'notices': 5102, 'unlocked': 5103, 'beeps': 5104, 'declan': 5105, 'fruit': 5106, 'oddest': 5107, 'thing:': 5108, 'affection': 5109, 'knuckle-dragging': 5110, 'sub-monkeys': 5111, "sippin'": 5112, 'cuckoo': 5113, 'de-scramble': 5114, 'scrutinizing': 5115, 'shoe': 5116, 'inserts': 5117, "writin'": 5118, 'creepy': 5119, 'kills': 5120, 'title:': 5121, 'pontiff': 5122, 'gargoyles': 5123, 'good-looking': 5124, 'open-casket': 5125, 'material': 5126, 'sour': 5127, 'paparazzo': 5128, 'joy': 5129, 'robin': 5130, 'williams': 5131, 'bits': 5132, 'co-sign': 5133, 'photos': 5134, 'turlet': 5135, 'attractive_woman_#1:': 5136, 'attractive_woman_#2:': 5137, 'trade': 5138, 'bras': 5139, 'panties': 5140, 'volunteer': 5141, 'assume': 5142, 'dentist': 5143, 'mary': 5144, "school's": 5145, 'bake': 5146, "betsy'll": 5147, 'runs': 5148, 'depending': 5149, 'strips': 5150, 'eggshell': 5151, 'malabar': 5152, 'ivory': 5153, 'mediterranean': 5154, 'ecru': 5155, 'tow': 5156, 'lobster-politans': 5157, 'smelling': 5158, 'one-hour': 5159, 'zone': 5160, 'correction': 5161, 'lobster-based': 5162, 'designer': 5163, 'laughter': 5164, 'unhook': 5165, 'moving': 5166, 'tow-talitarian': 5167, 'totalitarians': 5168, 'stalin': 5169, 'forced': 5170, 'labor': 5171, 'insensitive': 5172, 'winch': 5173, 'enforced': 5174, 'fatty': 5175, 'ralph': 5176, 'ralphie': 5177, 'tow-joes': 5178, 'territorial': 5179, "family's": 5180, 'remembers': 5181, 'process': 5182, 'splash': 5183, 'jaegermeister': 5184, 'add': 5185, 'sloe': 5186, 'triple-sec': 5187, 'quadruple-sec': 5188, 'gunk': 5189, "dog's": 5190, 'absolut': 5191, 'stripe': 5192, 'aquafresh': 5193, 'funniest': 5194, 'venom': 5195, 'louisiana': 5196, 'loboto-moth': 5197, 'sweetie': 5198, 'pregnancy': 5199, 'presto:': 5200, 'ultimate': 5201, 'bleacher': 5202, 'menace': 5203, 'swig': 5204, 'wipes': 5205, 'entering': 5206, 'forget-me-drinks': 5207, 'rickles': 5208, 'arabs': 5209, 'gibson': 5210, 'mexicans': 5211, 'grammys': 5212, 'hispanic_crowd:': 5213, 'jeers': 5214, 'sternly': 5215, 'disturbance': 5216, 'filed': 5217, 'infor': 5218, 'ripper': 5219, 'doppler': 5220, "queen's": 5221, 'surgeonnn': 5222, 'piling': 5223, 'unkempt': 5224, 'attractive': 5225, 'spits': 5226, 'bottoms': 5227, 'retain': 5228, 'misconstrue': 5229, "cuckold's": 5230, 'horns': 5231, 'moon-bounce': 5232, 'amiable': 5233, 'newsies': 5234, 'scruffy_blogger:': 5235, 'access': 5236, 'politicians': 5237, 'issues': 5238, 'declare': 5239, 'frontrunner': 5240, 'mansions': 5241, 'abolish': 5242, 'democracy': 5243, 'dictator': 5244, 'juan': 5245, 'perã³n': 5246, 'madonna': 5247, 'dennis': 5248, 'kucinich': 5249, 'twerpy': 5250, 'unbelievably': 5251, 'manuel': 5252, 'fake': 5253, 'moustache': 5254, 'ees': 5255, 'mild': 5256, 'backing': 5257, 'reminded': 5258, 'quarry': 5259, 'stones': 5260, 'woodchucks': 5261, 'mailbox': 5262, 'cell': 5263, 'butter': 5264, 'tasty': 5265, 'almond': 5266, 'listens': 5267, 'compromise:': 5268, 'luckiest': 5269, 'remaining': 5270, 'scratcher': 5271, 'kick-ass': 5272, 'shush': 5273, 'propose': 5274, 'willing': 5275, 'halvsies': 5276, 'lugs': 5277, 'splendid': 5278, 'weather': 5279, 'way:': 5280, 'tying': 5281, 'crippling': 5282, 'refinanced': 5283, 'twenty-six': 5284, 'cowboy': 5285, 'encouraged': 5286, 'half-day': 5287, 'encouraging': 5288, 'widow': 5289, 'option': 5290, 'pep': 5291, 'squad': 5292, 'cheered': 5293, 'runners': 5294, 'ninety-seven': 5295, 'break-up': 5296, 'cheated': 5297, 'showered': 5298, 'soaps': 5299, 'massage': 5300, 'oils': 5301, 'maiden': 5302, 'nicer': 5303, "she'll": 5304, 'parenting': 5305, 'childless': 5306, 'goodwill': 5307, 'attached': 5308, 'direction': 5309, "mecca's": 5310, "don'tcha": 5311, 'oughtta': 5312, 'dint': 5313, "son's": 5314, "bashir's": 5315, 'derek': 5316, 'jeter': 5317, 'mariah': 5318, 'carey': 5319, 'muslim': 5320, 'espousing': 5321, 'view': 5322, 'fbi_agent:': 5323, 'fayed': 5324, 'statue': 5325, "liberty's": 5326, 'principles': 5327, 'discriminate': 5328, 'employment': 5329, 'housing': 5330, 'patriotic': 5331, 'bauer': 5332, 'sanctuary': 5333, 'super-tough': 5334, 'africanized': 5335, 'honeys': 5336, 'environment': 5337, 'dna': 5338, 'strains': 5339, 'species': 5340, 'protesting': 5341, 'inclination': 5342, 'anonymous': 5343, 'partners': 5344, 'privacy': 5345, 'buzziness': 5346, 'connor-politan': 5347, 'oh-so-sophisticated': 5348, 'connor': 5349, 'kidneys': 5350, 'guilt': 5351, 'haircuts': 5352, 'graves': 5353, 'dig': 5354, 'ballot': 5355, 'gore': 5356, 'presidential': 5357, 'stolen': 5358, 'falsetto': 5359, 'albert': 5360, 'landlord': 5361, 'and-and': 5362, 'getaway': 5363, 'flanders:': 5364, 'expose': 5365, 'dateline': 5366, 'nominated': 5367, 'peabody': 5368, 'exclusive:': 5369, 'forty-two': 5370, 'evergreen': 5371, 'terrace': 5372, 'suburban': 5373, 'actress': 5374, 'billiard': 5375, "spiffin'": 5376, 'inquiries': 5377, 'enabling': 5378, 'mags': 5379, 'taught': 5380, 'abcs': 5381, 'a-b-': 5382, 'forgets': 5383, 'p-k': 5384, "s'pose": 5385, "cleanin'": 5386, 'month': 5387, "she'd": 5388, 'stood': 5389, 'regretful': 5390, 'term': 5391, 'tidy': 5392, 'benjamin': 5393, 'life-sized': 5394, 'legoland': 5395, "stealin'": 5396, 'chinese_restaurateur:': 5397, 'espn': 5398, 'ling': 5399, 'chow': 5400, 'passenger': 5401, 'incredible': 5402, 'thought_bubble_lenny:': 5403, "somethin':": 5404, 'generally': 5405, 'limericks': 5406, 'coast': 5407, 'massachusetts': 5408, 'nantucket': 5409, 'unusual': 5410, 'personal': 5411, 'characteristic': 5412, 'simplest': 5413, 'a-a-b-b-a': 5414, 'dumbass': 5415, 'whistling': 5416, 'nonchalantly': 5417, 'chained': 5418, 'tomato': 5419, 'tomahto': 5420, 'comedies': 5421, 'reckless': 5422, 'gesture': 5423, 'blows': 5424, 'sidelines': 5425, "who'da": 5426, 'chapter': 5427, 'insults': 5428, 'disguised': 5429, 'suspenders': 5430, 'circus': 5431, 'clown-like': 5432, 'insecure': 5433, 'envy-tations': 5434, 'hate-hugs': 5435, 'spamming': 5436, 'faint': 5437, 'praise': 5438, 'frozen': 5439, 'toledo': 5440, 'take-back': 5441, "people's": 5442, 'eager': 5443, 'happily:': 5444, 'community': 5445, 'playhouse': 5446, 'bathed': 5447, 'glowers': 5448, 'sticking-place': 5449, 'fail': 5450, 'x-men': 5451, '2': 5452, 'macbeth': 5453, 'mac-who': 5454, 'gulliver_dark:': 5455, 'bedridden': 5456, 'unable': 5457, 'toe': 5458, 'paintings': 5459, 'melodramatic': 5460, 'nonsense': 5461, 'training': 5462, 'bleeding': 5463, "murphy's": 5464, "pressure's": 5465, 'bon-bons': 5466, 'declared': 5467, 'microbrew': 5468, 'cobra': 5469, 'solves': 5470, 'cupid': 5471, 'unattended': 5472, 'fl': 5473, 'ventriloquism': 5474, 'approval': 5475, 'cure': 5476, 'ails': 5477, 'cuddling': 5478, 'steaming': 5479, 'cocoa': 5480, 'rainbows': 5481, 'surprised/thrilled': 5482, 'full-bodied': 5483, 'full-blooded': 5484, 'harmony': 5485, 'loyal': 5486, 'hemoglobin': 5487, "disrobin'": 5488, 'rosey': 5489, 'bubbles-in-my-nose-y': 5490, "mo'": 5491, 'musical': 5492, 'kodos:': 5493, 'measure': 5494, 'distance': 5495, 'unrelated': 5496, 'seductive': 5497, 'cologne': 5498, 'shaved': 5499, 'knuckles': 5500, 'shakes': 5501, 'handwriting': 5502, 'idioms': 5503, 'midge:': 5504, 'gayer': 5505, 'occurred': 5506, 'timbuk-tee': 5507, 'fast-paced': 5508, 'nibble': 5509, 'teriyaki': 5510, 'frenchman': 5511, 'spoon': 5512, 'duke': 5513, 'amnesia': 5514, 'missing': 5515, 'squeeze': 5516, 'irishman': 5517, 'pretends': 5518, "o'reilly": 5519, 'radiator': 5520, 'rebuilt': 5521, 'briefly': 5522, 'uncreeped-out': 5523, 'mines': 5524, 'taste': 5525, 'romance': 5526, 'perverse': 5527, 'hearse': 5528, 'civil': 5529, 'nurse': 5530, 'proof': 5531, 'simultaneous': 5532, 'i/you': 5533, 'finale': 5534, 'indicates': 5535, 'half-beer': 5536, 'enjoyed': 5537, 'halloween': 5538, 'treehouse': 5539, 'horror': 5540, 'xx': 5541, 'shhh': 5542, 'habitrail': 5543, 'donuts': 5544, 'meals': 5545, 'philosophical': 5546, 'southern': 5547, 'indeed': 5548, 'gator': 5549, 'mccall': 5550, 'recruiter': 5551, 'specializes': 5552, 'headhunters': 5553, 'valuable': 5554, 'protesters': 5555, 'marched': 5556, 'plants': 5557, 'radiation': 5558, "poisonin'": 5559, 'passports': 5560, 'loafers': 5561, 'hooray': 5562, 'nap': 5563, 'awake': 5564, 'meteor': 5565, 'flexible': 5566, 'marshmallow': 5567, 'dumbest': 5568, "stabbin'": 5569, 'humanity': 5570, 'mocking': 5571, 'official': 5572, 'releasing': 5573, 'hounds': 5574, 'releases': 5575, 'wolverines': 5576, 'horses': 5577, "eatin'": 5578, 'wish-meat': 5579, 'bust': 5580, 'exchanged': 5581, 'whispered': 5582, 'huddle': 5583, 'nursemaid': 5584, "elmo's": 5585, 'reunion': 5586, 'andrew': 5587, 'mccarthy': 5588, 'attend': 5589, 'lied': 5590, 'itchy': 5591, 'planted': 5592, 'chair': 5593, 'refill': 5594, 'cozies': 5595, 'sassy': 5596, 'cushions': 5597, 'cushion': 5598, 'flash': 5599, 'drives': 5600, 'data': 5601, 'hammy': 5602, 'estranged': 5603, "tomorrow's": 5604, 'forecast': 5605, 'cloudy': 5606, 'sunny': 5607, 'guessing': 5608, 'thunder': 5609, 'storms': 5610, 'exultant': 5611, 'ahem': 5612, 'wagering': 5613, 'installed': 5614, "america's": 5615, "blowin'": 5616, 'homeland': 5617, 'mm-hmm': 5618, 'tsking': 5619, 'presided': 5620, 'suave': 5621, 'debonair': 5622, 'offa': 5623, "narratin'": 5624, 'cricket': 5625, 'uniforms': 5626, 'rain': 5627, "'pu": 5628, 'she-pu': 5629, 'everyday': 5630, 'mimes': 5631, 'saving': 5632, 'gheet': 5633, 'darjeeling': 5634, 'limited': 5635, 'low-blow': 5636, 'boxer:': 5637, 'pre-recorded': 5638, 'rug': 5639, "mother's": 5640, 'panicked': 5641, 'carny:': 5642, 'teacup': 5643, 'whispers': 5644, 'rutabaga': 5645, 'putty': 5646, 'innocuous': 5647, 'flashbacks': 5648, 'ferry': 5649, 'pointedly': 5650, 'lovejoy': 5651, 'ralph_wiggum:': 5652, 'popping': 5653, 'man_with_crazy_beard:': 5654, 'outrageous': 5655, 'beard': 5656, 'expense': 5657, 'beards': 5658, "askin'": 5659, 'scatter': 5660, 'cockroaches': 5661, 'rip': 5662, 'stretch': 5663, 'tee': 5664, 'california': 5665, 'judgments': 5666, 'legally': 5667, 'side:': 5668, 'murdoch': 5669, 'rupert_murdoch:': 5670, 'jay': 5671, 'leno': 5672, 'jay_leno:': 5673, 'iran': 5674, 'weapon': 5675, 'rig': 5676, 'leak': 5677, 'disappear': 5678, 'nbc': 5679, 'howya': 5680, 'button-pusher': 5681, 'obama': 5682, 'booth': 5683, 'cliff': 5684, 'lee': 5685, 'zack': 5686, 'grenky': 5687, 'completely': 5688, 'colossal': 5689, 'exception:': 5690, 'inning': 5691, 'domed': 5692, 'bunion': 5693, 'notably': 5694, 'ineffective': 5695, 'portentous': 5696, 'dexterous': 5697, 'understood': 5698, 'poin-dexterous': 5699, 'laid': 5700, 'key': 5701, 'developed': 5702, 'statistician': 5703, 'bill_james:': 5704, 'taxes': 5705, 'eight-year-old': 5706, 'ballclub': 5707, 'sagacity': 5708, 'stengel': 5709, 'single-mindedness': 5710, 'steinbrenner': 5711, 'stein-stengel-': 5712, 'stats': 5713, 'ratio': 5714, 'occupied': 5715, 'sobo': 5716, 'conversion': 5717, 'factor': 5718, 'refreshingness': 5719, 'effervescence': 5720, 'benjamin:': 5721, 'minus': 5722, 'rueful': 5723, 'advertise': 5724, 'specials': 5725, 'scientific': 5726, 'annus': 5727, 'horribilis': 5728, 'resolution': 5729, 'fixes': 5730, 'courthouse': 5731, 'compare': 5732, 'exquisite': 5733, 'reward': 5734, 'planned': 5735, 'addiction': 5736, 'compels': 5737, 'executive': 5738, 'average-looking': 5739, '_burns_heads:': 5740, 'hangout': 5741, 'offense': 5742, 'whatchamacallit': 5743, 'swishkabobs': 5744, "grandmother's": 5745, 'urinal': 5746, "getting'": 5747, 'renovations': 5748, "friend's": 5749, 'lainie:': 5750, 'carlotta:': 5751, 'jã¤germeister': 5752, 'pink': 5753, 'lemonade': 5754, 'strawberry': 5755, 'chapstick': 5756, "cupid's": 5757, 'wazoo': 5758, 'drains': 5759, 'scram': 5760, 'crinkly': 5761, 'eva': 5762, 'braun:': 5763, "man's_voice:": 5764, 'huhza': 5765, '3': 5766, 'whoopi': 5767, 'seminar': 5768, 'motor': 5769, 'lodge': 5770, 'tornado': 5771, 'kissingher': 5772, 'earth': 5773, 'casting': 5774, 'pall': 5775, 'serum': 5776, 'walther': 5777, 'hotenhoffer': 5778, 'pharmaceutical': 5779, 'occupation': 5780, 'renders': 5781, 'tolerable': 5782, 'normals': 5783, 'irrelevant': 5784, 'elaborate': 5785, 'extract': 5786, 'synthesize': 5787, 'scrutinizes': 5788, 'grease': 5789, 'germans': 5790, 'when-i-get-a-hold-of-you': 5791, 'dammit': 5792, 'typed': 5793, 'rapidly': 5794, 'donated': 5795, 'haiti': 5796, "y'see": 5797, 'pushes': 5798, 'strangles': 5799, 'sue': 5800, 'hollowed-out': 5801, 'contented': 5802, 'phony': 5803, 'grin': 5804, 'plastered': 5805, 'freaky': 5806, 'slipped': 5807, 'mickey': 5808, 'churchy': 5809, 'brainheaded': 5810, 'fence': 5811, 'sheet': 5812, 'wistful': 5813, 'prayers': 5814, 'choked': 5815, 'iddilies': 5816, 'diddilies': 5817, 'christian': 5818, 'wuss': 5819, 'confession': 5820, 'make:': 5821, 'solely': 5822, 'noble': 5823, 'intention': 5824, 'two-thirds-empty': 5825, 'poetry': 5826, 'multi-purpose': 5827, 'email': 5828, 'edna-lover-one-seventy-two': 5829, 'lowest': 5830, "edna's": 5831, 'drummer': 5832, 'gulps': 5833, 'plucked': 5834, 'wikipedia': 5835, 'frankenstein': 5836, 'neighboreeno': 5837, 'plain': 5838, 'bagged': 5839, 'tiger': 5840, 'prompting': 5841, 'sen': 5842, 'cesss': 5843, 'surprising': 5844, 'entrance': 5845, 'jewelry': 5846, 'pronto': 5847, 'drawer': 5848, "linin'": 5849, 'presidents': 5850, 'upgrade': 5851, 'commanding': 5852, 'appropriate': 5853, 'reaction': 5854, 'sooo': 5855, 'fresco': 5856, "speakin'": 5857, 'farthest': 5858, 'drove': 5859, 'roz': 5860, 'ditched': 5861, 'lady-free': 5862, 'eighty-three': 5863, 'souvenir': 5864, 'sizes': 5865, 'hare-brained': 5866, 'schemes': 5867, 'pillows': 5868, 'adopted': 5869, 'capuchin': 5870, 'bonding': 5871, 'phase': 5872, 'safecracker': 5873, 'caper': 5874, 'fantasy': 5875, 'novel': 5876, 'brag': 5877, 'publish': 5878, 'modestly': 5879, 'lucinda': 5880, 'placed': 5881, 'fifth': 5882, 'shard': 5883, 'stained-glass': 5884, 'read:': 5885, "'your": 5886, 'parents': 5887, "'": 5888, 'gregor': 5889, 'understood:': 5890, 'journey': 5891, 'reader': 5892, 'selection': 5893, 'steampunk': 5894, 'frink-y': 5895, 'mock-up': 5896, 'title': 5897, 'tuna': 5898, 'itself': 5899, 'kansas': 5900, 'golden': 5901, 'literary': 5902, 'lis': 5903, 'milhouses': 5904, 'jacksons': 5905, 'xanders': 5906, 'aidens': 5907, 'dreamy': 5908, 'aiden': 5909, 'vampire': 5910, 'transylvania': 5911, 'prep': 5912, 'brooklyn': 5913, 'fuzzlepitch': 5914, 'bloodball': 5915, 'lame': 5916, 'publishers': 5917, 'sistine': 5918, 'chapel': 5919, 'mural': 5920, 'hems': 5921, 'haws': 5922, 'watched': 5923, 'bluff': 5924, 'conversations': 5925, 'annie': 5926, 'meaning': 5927, 'brain-switching': 5928, 'ceremony': 5929, 'sleeping': 5930, 'switched': 5931, 'dashes': 5932, 'lennyy': 5933, 'sheets': 5934, 'wind': 5935, 'dignified': 5936, 'stumble': 5937, 'typing': 5938, 'lead': 5939, 'pledge': 5940, 'allegiance': 5941, 'conclude': 5942, 'thanking': 5943, 'hosting': 5944, 'fumigated': 5945, 'er': 5946, 'adjourned': 5947, 'convenient': 5948, 'sangre': 5949, 'de': 5950, 'los': 5951, 'muertos': 5952, 'friend:': 5953, 'mexican': 5954, 'mexican_duffman:': 5955, 'ho-la': 5956, 'pepto-bismol': 5957, 'facebook': 5958, 'scrubbing': 5959, 'hardy': 5960, 'unhappy': 5961, 'taxi': 5962, 'wears': 5963, 'nemo': 5964, 'brace': 5965, 'lear': 5966, 'be-stainã¨d': 5967, 'swatch': 5968, 'gentles': 5969, 'begin': 5970, 'medieval': 5971, 'self-satisfied': 5972, 'tapestry': 5973, 'sponge:': 5974, 'gutenberg': 5975, 'bartholomã©:': 5976, 'overstressed': 5977, 'helps': 5978, 'recap:': 5979, 'unjustly': 5980, 'lofty': 5981, 'perch': 5982, 'wound': 5983, 'barter': 5984, 'persia': 5985, 'raggie': 5986, 'continued': 5987, 'enterprising': 5988, 'seamstress': 5989, 'fledgling': 5990, 'thousand-year': 5991, 'grace': 5992, 'predictable': 5993, 'startled': 5994, 'sensitivity': 5995, 'jobless': 5996, 'washouts': 5997, 'error': 5998, 'blamed': 5999, 'rent': 6000, 'pizzicato': 6001, 'buyer': 6002, 'specified': 6003, 'stepped': 6004, 'done:': 6005, 'arguing': 6006, 'guts': 6007, 'rationalizing': 6008, 'pack': 6009, 'adjust': 6010, 'runaway': 6011, 'monorails': 6012, 'nascar': 6013, 'gordon': 6014, 'jeff_gordon:': 6015, "plank's": 6016, 'land': 6017, 'traitors': 6018, 'lou': 6019, 'eliminate': 6020, 'bulldozing': 6021, 'tire': 6022, 'sinkhole': 6023, 'administration': 6024, 'solved': 6025, 'fears': 6026, 'most:': 6027, "s'okay": 6028, 'nuked': 6029, 'swimmers': 6030, 'shame': 6031, 'wrap': 6032, 'plums': 6033, 'tin': 6034, 'philosophic': 6035, 'samples': 6036, 'shelbyville': 6037, 'sperm': 6038, 'necklace': 6039, 'eww': 6040, 'fund': 6041, 'lend': 6042, 'sesame': 6043, 'frogs': 6044, 'settles': 6045, 'woe:': 6046, 'gamble': 6047, "daughter's": 6048, 'fdic': 6049, 'grubby': 6050, 'site': 6051, 'onion': 6052, 'rings': 6053, 'badmouth': 6054, 'country': 6055, 'prettiest': 6056, "aristotle's": 6057, 'poetics': 6058, 'rice': 6059, 'promotion': 6060, 'poured': 6061, 'hooky': 6062, 'throats': 6063, 'grind': 6064, 'crunch': 6065, 'nature': 6066, 'dipping': 6067, 'edge': 6068, 'groveling': 6069, 'brown': 6070, 'wiggle-frowns': 6071, 'abusive': 6072, 'tolerance': 6073, 'dejected_barfly:': 6074, 'slurred': 6075, 'hammock': 6076, 'bleak': 6077, 'icy': 6078, 'chill': 6079, 'dropping': 6080, 'janette': 6081, 'cheryl': 6082, 'rotten': 6083, 'pretend': 6084, 'improv': 6085, 'imaginary': 6086, 'chip': 6087, 'ends': 6088, 'skydiving': 6089, "pullin'": 6090, 'app': 6091, 'random': 6092, 'occurrence': 6093, 'squeezed': 6094, 'sap': 6095, "choosin'": 6096, 'adequate': 6097, 'carnival': 6098, 'miracle': 6099, "tree's": 6100, 'disillusioned': 6101, 'reporter': 6102, 'kenny': 6103, 'brockelstein': 6104, 'investigating': 6105, 'cartoons': 6106, 'thirty-three': 6107, 'short_man:': 6108, 'gruff': 6109, 'rancid': 6110, 'innocence': 6111, 'man_with_tree_hat:': 6112, 'hoax': 6113, 'tree_hoper:': 6114, 'crappy': 6115, 'pretentious_rat_lover:': 6116, 'manchego': 6117, 'aziz': 6118, 'lurks': 6119, 'racially-diverse': 6120, 'network': 6121, 'experienced': 6122, 'acronyms': 6123, 'kinderhook': 6124, 'collapse': 6125, 'rome': 6126, 'inexorable': 6127, 'march': 6128, 'progress': 6129, '_eugene_blatz:': 6130, 'slaves': 6131, 'supermarket': 6132, 'starve': 6133, 'unsourced': 6134, 'undated': 6135, 'convinced': 6136, 'beyond': 6137, 'suspended': 6138, 'voodoo': 6139, 'curse': 6140, 'gestated': 6141, 'popped': 6142, 'acquitted': 6143, 'nightmare': 6144, 'in-ground': 6145, 'shades': 6146, 'grey': 6147, 'what-for': 6148, 'fiction': 6149, 'sheriff': 6150, 'kissed': 6151, 'said:': 6152, 'imitating': 6153, 'griffith': 6154, "'now": 6155, 'aunt': 6156, 'asks': 6157, "fishin'": 6158, "hole'": 6159, 'argue': 6160, 'stirrers': 6161, 'holy': 6162, 'faiths': 6163, 'easy-going': 6164, 'offshoot': 6165, 'protestantism': 6166, 'handler': 6167, "thing's": 6168, 'rims': 6169, 'ribbon': 6170, 'cherry': 6171, 'blurbs': 6172, 'sedaris': 6173, 'flack': 6174, 'pews': 6175, 'catholic': 6176, 'sexton': 6177, 'rector': 6178, 'whim': 6179, "nothin's": 6180, 'mid-conversation': 6181, 'padres': 6182, 'tigers': 6183, 'polygon': 6184, 'hexa-': 6185, 'octa-': 6186, 'decide:': 6187, 'loudly': 6188, "beggin'": 6189, 'legend': 6190, 'buzz': 6191, 'recorded': 6192, 'options': 6193, 'carefully': 6194, 'committing': 6195, 'press': 6196, 'life-extension': 6197, 'male_singers:': 6198, 'painless': 6199, 'brings': 6200, 'delays': 6201, 'ron': 6202, 'moe-ron': 6203, 'libraries': 6204, 'newspaper': 6205, 'rods': 6206, 'compressions': 6207, 'gees': 6208, 'singing/pushing': 6209, "stayin'": 6210, 'living': 6211, 'fools': 6212, 'lease': 6213, 'post-suicide': 6214, 'afterglow': 6215, 'shorter': 6216, 'applesauce': 6217, 'leaving': 6218, 'choked-up': 6219, 'passes': 6220, 'reentering': 6221, 'noosey': 6222, 'noose': 6223, 'worldview': 6224, 'cleaning': 6225, 'growing': 6226, 'carpet': 6227, 'layer': 6228, 'congoleum': 6229, 'hardwood': 6230, 'jig': 6231, 'improved': 6232, 'non-losers': 6233, 'getcha': 6234, 'aged': 6235, 'venture': 6236, 'capitalists': 6237, 'mostly': 6238, 'kentucky': 6239, 'kool': 6240, 'aid': 6241, 'fantastic': 6242, 'startup': 6243, 'branding': 6244, 'specialists': 6245, 'touch': 6246, 'rafter': 6247, 'comforting': 6248, 'holidays': 6249, 'expensive': 6250, 'beer:': 6251, 'platinum': 6252, 'paste': 6253, 'hairs': 6254, 'youth': 6255, 'babar': 6256, 'confidential': 6257, 'cousin': 6258, 'celeste': 6259, 'takeaway': 6260, 'royal': 6261, 'trainers': 6262, 'average': 6263, 'schmoe': 6264, "can't-believe-how-bald-he-is": 6265, 'science': 6266, 'exhibit': 6267, 'hunger': 6268, "games'd": 6269, 'womb': 6270, 'life:': 6271, 'ninety-six': 6272, "number's": 6273, 'winning': 6274, 'celebrate': 6275, "ragin'": 6276, 'mini-dumpsters': 6277, 'gasoline': 6278, 'build': 6279, 'swimming': 6280, 'freaking': 6281, "cashin'": 6282, 'safety': 6283, 'ripped': 6284, 'tense': 6285, 'voicemail': 6286, 'offensive': 6287, 'sickened': 6288, 'moolah-stealing': 6289, 'jackpot-thief': 6290, "something's": 6291, 'reflected': 6292, 'lenses': 6293, 'sunglasses': 6294, 'geyser': 6295, 'strokkur': 6296, 'geysir': 6297, 'minors': 6298, 'fat_in_the_hat:': 6299, 'pawed': 6300, 'skunk': 6301, 'furry': 6302, 'knit': 6303, 'thnord': 6304, 'leathery': 6305, 'hidden': 6306, 'selfish': 6307, 'radioactive': 6308, 'hellhole': 6309, 'superpower': 6310, 'whoa-ho': 6311, 'looooooooooooooooooong': 6312, 'experience': 6313, 'schedule': 6314, 'hers': 6315, 'ideas': 6316, 'divorced': 6317, 's-a-u-r-c-e': 6318, 'touches': 6319, 'earpiece': 6320, 'senators:': 6321, 'abercrombie': 6322, 'billingsley': 6323, 'beaumont': 6324, "plaster's": 6325, 'flaking': 6326, 'lay': 6327, "stallin'": 6328, 'groans': 6329, 'squeals': 6330, 'liser': 6331, 'cletus_spuckler:': 6332, 'conditioning': 6333, 'barkeeps': 6334, 'gin-slingers': 6335, 'beer-jerks': 6336, 'compete': 6337, 'stores': 6338, 'hooch': 6339, 'cap': 6340, 'masks': 6341, 'uninhibited': 6342, 'invulnerable': 6343, 'shuts': 6344, 'nick': 6345, 'fury': 6346, 'batmobile': 6347, 'wolveriskey': 6348, "'ere": 6349, 'portfolium': 6350, "boy's": 6351, 'knock-up': 6352, 'powers': 6353, 'created': 6354, 'virility': 6355, 'virile': 6356, "brady's": 6357, 'libido': 6358, 'rocks': 6359, 'sets': 6360, 'legs:': 6361, 'kidnaps': 6362, 'grateful': 6363, "must've": 6364, 'corn': 6365, 'eighty-five': 6366, 'goal': 6367, 'nfl_narrator:': 6368, 'breathtaking': 6369, 'ignorance': 6370, 'dislike': 6371, 'rookie': 6372, 'housewife': 6373, 'savvy': 6374, 'veteran': 6375, "tv'll": 6376, "yesterday's": 6377, 'whatsit': 6378, 'lifestyle': 6379, 'contract': 6380, 'fast-food': 6381, 'hibachi': 6382, "how're": 6383, 'transfer': 6384, 'hyper-credits': 6385, 'ding-a-ding-ding-ding-ding-ding-ding': 6386, 'ding-a-ding-ding-a-ding-ding': 6387, 'blade': 6388, 'spender': 6389, 'gossipy': 6390, 'jukebox_record:': 6391, 'robot': 6392, 'incapable': 6393, 'emotion': 6394, 'terrifying': 6395, 'quebec': 6396, 'nordiques': 6397, 'spooky': 6398, 'colorado': 6399, 'avalanche': 6400, "toot's": 6401, 'verdict': 6402, 'overturned': 6403, 'sequel': 6404, 'neon': 6405, 'repairman': 6406, 'bolting': 6407, 'wrapped': 6408, 'shoulders': 6409, 'si-lent': 6410, 'ho-ly': 6411, 'eve': 6412, "startin'": 6413, 'gift:': 6414, 'shrieks': 6415, 'angrily': 6416, 'wenceslas': 6417, 'karaoke_machine:': 6418, 'doooown': 6419, 'weight': 6420, 'thirty-nine': 6421, "foolin'": 6422, 'car:': 6423, 'habit': 6424, 'hateful': 6425, 'chubby': 6426, 'chunky': 6427, 'blobbo': 6428, 'slobbo': 6429, 'michelin': 6430, 'stay-puft': 6431, 'chumbawamba': 6432, 'balloon': 6433, 'papa': 6434, 'grandã©': 6435, 'augustus': 6436, 'gloop': 6437, 'beached': 6438, 'whale': 6439, 'boned': 6440, 'wisconsin': 6441, 'skinny': 6442, 'butterball': 6443, 'dumptruck': 6444, 'jelly': 6445, 'pudgy': 6446, 'wudgy': 6447, 'lard': 6448, 'blubberino': 6449, 'buddha': 6450, 'tubman': 6451, 'ton': 6452, 'blob': 6453, 'saget': 6454, 'chub': 6455, 'hub': 6456, 'calvin': 6457, 'manfred': 6458, 'manboobs': 6459, '21': 6460, 'lump': 6461, 'fatso': 6462, 'harvey': 6463, 'obese': 6464, 'cannoli': 6465, 'mahatma': 6466, 'gumbo': 6467, 'salvador': 6468, 'deli': 6469, 'elmer': 6470, 'pantry': 6471, 'sponge': 6472, 'snackie': 6473, 'onassis': 6474, 'foodie': 6475, 'hoagie': 6476, 'carmichael': 6477, 'load': 6478, 'belts': 6479, 'homunculus': 6480, "feelin's": 6481, 'goblins': 6482, 'pridesters:': 6483, 'movement': 6484, 'drinking:': 6485, 'relaxed': 6486, 'apron': 6487, 'limber': 6488, "tap-pullin'": 6489, 'hook': 6490, 'sideshow': 6491, 'laney': 6492, 'fontaine': 6493, 'vulgar': 6494, 'fulla': 6495, 'jimmy': 6496, 'stewart': 6497, 'super-nice': 6498, "can'tcha": 6499, 'items': 6500, 'shells': 6501, 'lime': 6502, "high-falutin'": 6503, 'theatah': 6504, 'exits': 6505, 'sight': 6506, 'tomatoes': 6507, 'bachelorette': 6508, 'lady_duff:': 6509, 'hearing': 6510, 'interesting': 6511, 'clubs': 6512, "lovers'": 6513, 'spiritual': 6514, 'other_book_club_member:': 6515, 'liven': 6516, 'charming': 6517, 'whaaaa': 6518, 'bones': 6519, 'dazed': 6520, 'bounced': 6521, 'sass': 6522, 'heaving': 6523, "coaster's": 6524, 'mouths': 6525, "snappin'": 6526, 'ruint': 6527, "i-i'll": 6528, 'savings': 6529, 'rubbed': 6530, 'defected': 6531, 'north': 6532, 'korea': 6533, 'dae': 6534, 'pickles': 6535, 'background': 6536, 'ummmmmmmmm': 6537, 'ehhhhhhhh': 6538, 'errrrrrr': 6539, 'ehhhhhhhhh': 6540, 'ehhhhhh': 6541, 'kay': 6542, 'apply': 6543, 'jerking': 6544, 'chunk': 6545, 'oak': 6546, 'poplar': 6547, 'knowledge': 6548, 'wood': 6549, 'something:': 6550, 'elizabeth': 6551, 'languages': 6552, 'portuguese': 6553, 'eu': 6554, 'nã£o': 6555, 'quero': 6556, 'dizer': 6557, 'para': 6558, 'mostrar': 6559, 'je': 6560, 'ne': 6561, 'veux': 6562, 'pas': 6563, 'montrer': 6564, 'refiero': 6565, 'presumir': 6566, 'watashi': 6567, 'koji': 6568, 'suru': 6569, 'wakede': 6570, 'arimasen': 6571, 'majesty': 6572, 'notice': 6573, 'repressed': 6574, 'spelling': 6575, 'grammar': 6576, 'ze-ro': 6577, 'kemi': 6578, 'prince': 6579, 'trashed': 6580, 'happens': 6581, 'cruiser': 6582, 'answered': 6583, 'tank': 6584, 'gil_gunderson:': 6585, 'mumble': 6586, 'conclusions': 6587, 'tied': 6588, 'jernt': 6589, 'elocution': 6590, 'pronounce': 6591, 'over-pronouncing': 6592, 'online': 6593, 'pernt': 6594, 'tease': 6595, 'thrown': 6596, 'rom': 6597, 'coms': 6598, 'wheels': 6599, 'witches': 6600, "treatin'": 6601, 'countryman': 6602, 'chinua': 6603, 'achebe': 6604, 'apart': 6605, 'ease': 6606, 'optimistic': 6607, 'amused': 6608, 'comment': 6609, 'eaten': 6610, 'string': 6611, 'eats': 6612, 'stretches': 6613, 'moon': 6614, 'dregs': 6615, 'bugs': 6616, 'mice': 6617, 'treats': 6618, 'bar:': 6619, 'cab': 6620, 'waist': 6621, 'shyly': 6622, 'lifts': 6623, 'index': 6624, 'examples': 6625, 'albeit': 6626, 'depressing': 6627, 'bedtime': 6628, 'premise': 6629, "cheerin'": 6630, 'pine': 6631, 'suffering': 6632, 'silence': 6633, 'rafters': 6634, 'badly': 6635, 'smiles': 6636, 'divine': 6637, 'four-star': 6638, 'brother-in-law': 6639, 'nachos': 6640, 'triangle': 6641, 'atari': 6642, 'oblivious': 6643, 'aims': 6644, 'dumpster': 6645, 'gags': 6646, 'psst': 6647, 'asleep': 6648, 'mellow': 6649, 'aghast': 6650, 'kirk_voice_milhouse:': 6651, 'milks': 6652, 'lumpa': 6653, 'coal': 6654, 'stocking': 6655, 'sucking': 6656, 'getup': 6657, 'part-time': 6658, 'selective': 6659, 'reaches': 6660, 'opens': 6661, 'whoops': 6662, 'explanation': 6663, 'anxious': 6664, 'bloodiest': 6665, 'thirsty': 6666, 'log': 6667, 'eddie': 6668, 'pretzels': 6669, 'peeping': 6670, 'toms': 6671, 'terrorizing': 6672, 'neighborhood': 6673, 'scent': 6674, 'bobo': 6675, 'wieners': 6676, 'figures': 6677, 'disappointment': 6678, 'onto': 6679, 'dealt': 6680, 'control': 6681, 'tremendous': 6682, 'tv-station_announcer:': 6683, 'this:': 6684, 'small_boy:': 6685, 'furiously': 6686, '_marvin_monroe:': 6687, 'monroe': 6688, 'gimmicks': 6689, 'pills': 6690, 'fad': 6691, 'diets': 6692, 'bliss': 6693, '1-800-555-hugs': 6694, "life's": 6695, 'heh-heh': 6696, 'runt': 6697, 'gut': 6698, 'tragedy': 6699, 'ohhhh': 6700, 'hottest': 6701, 'heave-ho': 6702, 'dingy': 6703, 'flophouse': 6704, 'yellow-belly': 6705, 'jackass': 6706, "'er": 6707, 'hunka': 6708, 'beef': 6709, 'contemplates': 6710, 'jams': 6711, 'yells': 6712, 'drunkenly': 6713, "larry's": 6714, 'difference': 6715, 'slop': 6716, 'hose': 6717, 'beings': 6718, 'candles': 6719, 'tablecloth': 6720, 'drift': 6721, 'deals': 6722, 'capitol': 6723, 'curiosity': 6724, "c'mom": 6725, 'employees': 6726, 'spouses': 6727, 'decision': 6728, 'simpsons': 6729, 'faced': 6730, "should've": 6731, 'listened': 6732, 'bites': 6733, 'oooh': 6734, "costume's": 6735, 'ape-like': 6736, 'saga': 6737, 'riveting': 6738, 'humiliation': 6739, "rasputin's": 6740, "professor's": 6741, 'patented': 6742, 'coma': 6743, 'show-off': 6744, 'muscles': 6745, 'engraved': 6746, 'richard:': 6747, 'audience:': 6748, 'ref': 6749, 'issuing': 6750, 'warning': 6751, 'rasputin': 6752, 'referee': 6753, 'permitting': 6754, 'smitty:': 6755, 'squabbled': 6756, 'washed': 6757, 'refreshment': 6758, 'trustworthy': 6759, 'sharing': 6760, 'birthplace': 6761, 'roy': 6762, 'scum-sucking': 6763, 'pus-bucket': 6764, 'eyeballs': 6765, 'often': 6766, 'bull': 6767, 'connection': 6768, 'lighten': 6769, 'ironic': 6770, 'snotty': 6771, 'sister-in-law': 6772, 'picky': 6773, 'blur': 6774, 'decided': 6775, 'happiness': 6776, 'pancakes': 6777, 'disdainful': 6778, 'heals': 6779, 'wounds': 6780}
{1: '||period||', 2: '||return|', 3: '||comma||', 4: '||left_parentheses||', 5: '||right_parentheses||', 6: 'the', 7: 'i', 8: 'you', 9: '||exclamation_mark||', 10: 'moe_szyslak:', 11: '||question_mark||', 12: 'a', 13: 'homer_simpson:', 14: 'to', 15: 'and', 16: 'of', 17: 'my', 18: 'it', 19: 'that', 20: 'in', 21: '||quotation_mark||', 22: 'me', 23: 'is', 24: 'this', 25: "i'm", 26: 'for', 27: 'your', 28: 'homer', 29: 'on', 30: 'hey', 31: 'moe', 32: 'oh', 33: 'no', 34: 'lenny_leonard:', 35: 'what', 36: 'with', 37: 'yeah', 38: 'all', 39: 'just', 40: 'like', 41: 'but', 42: 'barney_gumble:', 43: 'so', 44: 'be', 45: 'here', 46: 'carl_carlson:', 47: "don't", 48: 'have', 49: 'up', 50: "it's", 51: 'well', 52: 'out', 53: 'do', 54: 'was', 55: 'got', 56: 'are', 57: 'get', 58: 'we', 59: 'uh', 60: "that's", 61: 'one', 62: "you're", 63: 'not', 64: 'now', 65: 'can', 66: 'know', 67: '||dash||', 68: 'at', 69: 'right', 70: '/', 71: 'how', 72: 'if', 73: 'back', 74: 'marge_simpson:', 75: 'about', 76: 'he', 77: 'from', 78: 'go', 79: 'gonna', 80: 'there', 81: 'they', 82: 'beer', 83: 'good', 84: 'who', 85: 'an', 86: 'man', 87: 'okay', 88: 'little', 89: 'his', 90: 'as', 91: 'some', 92: "can't", 93: 'then', 94: 'never', 95: "i'll", 96: 'think', 97: 'come', 98: 'could', 99: 'him', 100: "i've", 101: 'see', 102: 'want', 103: 'really', 104: 'look', 105: 'too', 106: 'guys', 107: 'been', 108: 'when', 109: 'make', 110: 'why', 111: 'ya', 112: 'bar', 113: 'her', 114: 'did', 115: 'time', 116: 'say', 117: 'ah', 118: 'or', 119: 'gotta', 120: 'marge', 121: 'take', 122: 'into', 123: 'love', 124: 'down', 125: 'more', 126: 'our', 127: 'am', 128: 'off', 129: 'guy', 130: 'sure', 131: 'barney', 132: 'two', 133: "there's", 134: 'thing', 135: 'lisa_simpson:', 136: 'would', 137: "we're", 138: 'where', 139: "he's", 140: 'had', 141: 'big', 142: 'tell', 143: 'let', 144: 'need', 145: 'money', 146: 'drink', 147: 'bart_simpson:', 148: "what's", 149: 'sorry', 150: 'over', 151: 'us', 152: 'something', 153: 'only', 154: 'ever', 155: 'by', 156: 'day', 157: 'will', 158: 'way', 159: 'wait', 160: 'she', 161: 'chief_wiggum:', 162: 'give', 163: 'even', 164: 'huh', 165: 'new', 166: "i'd", 167: 'god', 168: "didn't", 169: "ain't", 170: 'those', 171: 'great', 172: 'people', 173: 'phone', 174: "moe's", 175: 'eh', 176: 'has', 177: 'life', 178: 'much', 179: 'maybe', 180: 'lenny', 181: 'were', 182: 'than', 183: 'going', 184: 'mean', 185: 'place', 186: 'these', 187: 'should', 188: 'mr', 189: 'around', 190: "you've", 191: 'better', 192: 'wanna', 193: 'still', 194: 'help', 195: 'friend', 196: 'old', 197: 'home', 198: "'em", 199: 'name', 200: 'please', 201: 'night', 202: 'before', 203: 'noise', 204: 'last', 205: 'whoa', 206: 'tv', 207: 'aw', 208: 'seymour_skinner:', 209: 'boy', 210: 'face', 211: 'any', 212: 'made', 213: 'hello', 214: 'call', 215: 'thanks', 216: 'duff', 217: 'three', 218: 'drunk', 219: 'put', 220: "'cause", 221: 'listen', 222: 'their', 223: 'looking', 224: 'car', 225: 'bad', 226: 'again', 227: 'first', 228: 'very', 229: "let's", 230: 'best', 231: 'does', 232: 'wow', 233: 'yes', 234: 'another', 235: 'looks', 236: 'every', 237: 'ooh', 238: 'while', 239: 'them', 240: 'kent_brockman:', 241: 'said', 242: 'work', 243: 'wife', 244: 'other', 245: 'guess', 246: 'apu_nahasapeemapetilon:', 247: 'dad', 248: 'sweet', 249: "won't", 250: 'play', 251: 'feel', 252: 'tonight', 253: 'years', 254: 'singing', 255: 'springfield', 256: 'thought', 257: 'sobs', 258: 'everybody', 259: 'find', 260: 'voice', 261: "they're", 262: 'after', 263: 'dr', 264: 'things', 265: 'buy', 266: 'kids', 267: 'might', 268: 'check', 269: 'nice', 270: 'keep', 271: 'happy', 272: 'minute', 273: 'girl', 274: 'since', 275: 'head', 276: 'because', 277: 'shut', 278: 'show', 279: 'beat', 280: 'world', 281: 'sighs', 282: 'use', 283: 'bart', 284: "who's", 285: 'lisa', 286: 'sings', 287: 'chuckle', 288: 'friends', 289: 'always', 290: "isn't", 291: "you'll", 292: 'stupid', 293: 'kid', 294: 'c', 295: 'someone', 296: 'krusty_the_clown:', 297: 'ow', 298: 'which', 299: 'carl', 300: 'seen', 301: 'lot', 302: 'remember', 303: 'hundred', 304: 'anything', 305: 'laugh', 306: "here's", 307: 'talk', 308: 'job', 309: 'chuckles', 310: 'next', 311: 'glass', 312: 'through', 313: 'hell', 314: 'thank', 315: 'simpson', 316: 'laughs', 317: 'matter', 318: 'pretty', 319: 'five', 320: 'lost', 321: 'house', 322: 'says', 323: 'away', 324: 'hear', 325: 'long', 326: 'outta', 327: 'kind', 328: "nothin'", 329: 'hope', 330: 'woman', 331: 'happened', 332: 'believe', 333: 'tavern', 334: 'nervous', 335: 'once', 336: 'four', 337: 'family', 338: 'turn', 339: "c'mon", 340: '_montgomery_burns:', 341: 'waylon_smithers:', 342: 'book', 343: 'comes', 344: 'real', 345: 'wish', 346: "homer's", 347: 'stop', 348: 'ned_flanders:', 349: 'fat', 350: 'actually', 351: 'business', 352: 'myself', 353: 'idea', 354: 'ask', 355: 'game', 356: 'grampa_simpson:', 357: "goin'", 358: 'wants', 359: 'wrong', 360: "doin'", 361: 'used', 362: 'loud', 363: 'today', 364: 'party', 365: 'enough', 366: 'nobody', 367: 'burns', 368: "we've", 369: 'done', 370: 'problem', 371: 'town', 372: "comin'", 373: 'getting', 374: 'many', 375: "wouldn't", 376: "she's", 377: 'duffman:', 378: 'must', 379: 'everything', 380: 'hold', 381: 'doing', 382: 'free', 383: 'watch', 384: 'sounds', 385: 'try', 386: 'reading', 387: 'dollars', 388: 'na', 389: 'um', 390: 'bucks', 391: 'maggie', 392: 'took', 393: 'true', 394: 'thinking', 395: 'nah', 396: 'gee', 397: 'woo', 398: 'sound', 399: 'sell', 400: 'excuse', 401: 'makes', 402: 'everyone', 403: 'daughter', 404: 'secret', 405: 'stuff', 406: "where's", 407: 'chief', 408: 'gimme', 409: 'care', 410: 'wanted', 411: 'leave', 412: 'baby', 413: 'pay', 414: 'under', 415: 'most', 416: 'pants', 417: 'yourself', 418: 'beautiful', 419: 'canyonero', 420: 'being', 421: 'edna', 422: 'kill', 423: 'kemi:', 424: 'pick', 425: 'own', 426: 'mouth', 427: 'pal', 428: 'tough', 429: 'tipsy', 430: 'quickly', 431: 'left', 432: 'worry', 433: 'smithers', 434: 'went', 435: 'knew', 436: 'points', 437: 'save', 438: 'dead', 439: "you'd", 440: 'hurt', 441: 'dinner', 442: 'sad', 443: 'school', 444: 'tomorrow', 445: 'till', 446: 'hoo', 447: 'drinking', 448: 'hate', 449: 'sign', 450: 'fine', 451: 'hi', 452: 'quit', 453: 'feeling', 454: 'win', 455: 'heard', 456: 'dog', 457: 'die', 458: 'camera', 459: 'told', 460: 'excited', 461: 'skinner', 462: 'funny', 463: 'gave', 464: 'break', 465: 'eyes', 466: 'came', 467: 'ladies', 468: 'saw', 469: 'gets', 470: 'booze', 471: 'forget', 472: "couldn't", 473: 'alcohol', 474: 'easy', 475: 'flaming', 476: 'without', 477: 'fire', 478: 'million', 479: "aren't", 480: 'calling', 481: 'eat', 482: 'sir', 483: 'loves', 484: 'barflies:', 485: 'twenty', 486: 'hand', 487: 'seven', 488: 'nuts', 489: 'super', 490: 'krusty', 491: 'clean', 492: 'gone', 493: 'gasp', 494: 'loser', 495: 'date', 496: 'mad', 497: 'hands', 498: 'anyone', 499: 'jacques:', 500: 'cash', 501: 'kinda', 502: 'bring', 503: 'fight', 504: 'room', 505: 'kirk_van_houten:', 506: 'drive', 507: 'surprised', 508: 'burn', 509: 'mom', 510: 'noises', 511: 'small', 512: 'read', 513: 'artie_ziff:', 514: 'meet', 515: 'problems', 516: 'door', 517: 'happen', 518: "wasn't", 519: 'high', 520: 'behind', 521: 'cut', 522: 'called', 523: "lookin'", 524: "haven't", 525: 'course', 526: 'anyway', 527: "talkin'", 528: 'low', 529: "we'll", 530: 'trouble', 531: "doesn't", 532: 'coming', 533: 'sadly', 534: 'each', 535: 'six', 536: 'seymour', 537: 'gentlemen', 538: 'geez', 539: 'turns', 540: "y'know", 541: "somethin'", 542: 'chance', 543: 'tape', 544: 'already', 545: "drinkin'", 546: 'bartender', 547: 'professor_jonathan_frink:', 548: 'upset', 549: 'dear', 550: 'self', 551: "it'll", 552: 'end', 553: 'ugly', 554: 'machine', 555: 'eye', 556: 'larry:', 557: 'works', 558: 'fun', 559: 'disgusted', 560: 'hot', 561: 'bottle', 562: 'realizing', 563: 'sing', 564: 'song', 565: 'wiggum', 566: 'hours', 567: 'start', 568: 'moan', 569: 'outside', 570: 'mmmm', 571: 'sigh', 572: 'throat', 573: 'steal', 574: 'uh-oh', 575: 'heart', 576: 'close', 577: "gettin'", 578: 'blame', 579: 'trying', 580: 'change', 581: 'war', 582: 'dump', 583: 'whatever', 584: 'snake_jailbird:', 585: 'stay', 586: 'learn', 587: 'live', 588: 'stand', 589: 'lady', 590: 'keys', 591: 'least', 592: 'm', 593: 'spend', 594: 'crazy', 595: 'whole', 596: 'straight', 597: 'quiet', 598: 'talking', 599: ':', 600: 'watching', 601: 'worried', 602: 'worse', 603: 'the_rich_texan:', 604: 'bar_rag:', 605: 'barflies', 606: 'lousy', 607: 'butt', 608: 'less', 609: 'ten', 610: 'late', 611: 'learned', 612: 'drinks', 613: 'probably', 614: 'such', 615: 'stick', 616: 'perfect', 617: 'greatest', 618: 'shocked', 619: 'private', 620: 'playing', 621: 'may', 622: 'blue', 623: 'anymore', 624: 'goodbye', 625: 'bowl', 626: "'bout", 627: 'special', 628: 'poor', 629: 'light', 630: 'joe', 631: 'second', 632: 'thinks', 633: 'year', 634: 'girls', 635: 'morning', 636: 'gasps', 637: "shouldn't", 638: 'pull', 639: 'thousand', 640: 'soon', 641: 'times', 642: 'ma', 643: 'apu', 644: 'police', 645: 'crowd:', 646: 'person', 647: 'far', 648: 'alive', 649: 'married', 650: 'marriage', 651: 'air', 652: 'heh', 653: 'bit', 654: 'turned', 655: 'young', 656: 'mother', 657: 'either', 658: 'front', 659: 'else', 660: 'whip', 661: 'point', 662: 'annoyed', 663: 'tsk', 664: 'delete', 665: 'anybody', 666: 'store', 667: 'kick', 668: 'cool', 669: 'moron', 670: 'minutes', 671: 'buddy', 672: 'open', 673: 'picture', 674: 'goes', 675: 'uh-huh', 676: 'couple', 677: 'found', 678: 'blood', 679: 'boys', 680: 'letter', 681: 'nothing', 682: 'lucky', 683: 'smell', 684: 'feet', 685: 'taking', 686: 'both', 687: 'turning', 688: 'eight', 689: 'miss', 690: 'walk', 691: 'join', 692: 'president', 693: 'ticket', 694: 'later', 695: "how'd", 696: 'king', 697: 'knows', 698: 'lemme', 699: 'jacques', 700: 'ass', 701: 'throw', 702: 'serious', 703: 'box', 704: 'shot', 705: 'mayor_joe_quimby:', 706: 'beers', 707: 'barn', 708: 'tab', 709: 'exactly', 710: 'boxing', 711: 'yet', 712: 'nods', 713: 'duffman', 714: 'card', 715: 'christmas', 716: 'angry', 717: 'agnes_skinner:', 718: 'american', 719: 'arm', 720: 'rev', 721: 'pig', 722: 'shotgun', 723: 'mind', 724: 'alone', 725: 'instead', 726: 'fifty', 727: 'patty_bouvier:', 728: 'youse', 729: 'goodnight', 730: 'days', 731: 'somebody', 732: 'proudly', 733: 'kiss', 734: 'top', 735: 'number', 736: 'full', 737: 'dry', 738: 'food', 739: 'collette:', 740: 'warmly', 741: 'ahh', 742: 'plant', 743: 'friendly', 744: 'english', 745: 'saying', 746: 'mrs', 747: 'paint', 748: 'hide', 749: 'afraid', 750: 'accident', 751: 'black', 752: 'using', 753: 's', 754: 'deal', 755: 'ready', 756: 'amazed', 757: 'rummy', 758: 'dance', 759: 'eggs', 760: 'walking', 761: 'nine', 762: 'welcome', 763: 'o', 764: 'damn', 765: "he'll", 766: 'together', 767: '||semicolon||', 768: 'fellas', 769: 'alright', 770: 'send', 771: 'wire', 772: 'etc', 773: 'forever', 774: 'plus', 775: 'seems', 776: 'advice', 777: 'ned', 778: 'butts', 779: 'huge', 780: 'story', 781: 'ball', 782: 'himself', 783: 'favorite', 784: 'intrigued', 785: 'happier', 786: 'making', 787: 'table', 788: 'hang', 789: 'broke', 790: 'sotto', 791: 'crap', 792: 'move', 793: 'finally', 794: 'lucius:', 795: 'though', 796: 'return', 797: 'word', 798: 'ha', 799: 'hmm', 800: 'sitting', 801: 'fast', 802: 'weird', 803: 'scared', 804: 'grampa', 805: 'son', 806: 'news', 807: 'cold', 808: 'terrible', 809: 'smile', 810: 'words', 811: "makin'", 812: 'run', 813: 'screw', 814: 'city', 815: 'renee:', 816: 'pour', 817: 'round', 818: 'channel', 819: 'telling', 820: 'losers', 821: 'japanese', 822: 'tap', 823: 'glove', 824: 'la', 825: 'inside', 826: 'seat', 827: 'human', 828: "ol'", 829: 'comic_book_guy:', 830: 'moans', 831: "kiddin'", 832: 'glad', 833: 'horrible', 834: 'homie', 835: 'peanuts', 836: 'young_marge:', 837: 'selma_bouvier:', 838: 'street', 839: 'means', 840: 'narrator:', 841: 'warm_female_voice:', 842: 'ice', 843: 'normal', 844: 'belch', 845: 'dunno', 846: 'honest', 847: 'gumbel', 848: 'milk', 849: 'smells', 850: 'laughing', 851: 'music', 852: 'tip', 853: 'seconds', 854: 'early', 855: 'half', 856: 'slow', 857: 'forgot', 858: 'invented', 859: 'harv:', 860: 'fill', 861: 'eating', 862: 'thirty', 863: 'power', 864: 'company', 865: 'bet', 866: 'hair', 867: 'sent', 868: 'denver', 869: 'ones', 870: 'football_announcer:', 871: 'class', 872: 'won', 873: 'star', 874: 'state', 875: 'uncle', 876: 'stool', 877: 'sick', 878: 'along', 879: 'takes', 880: 'holding', 881: 'lying', 882: 'tinkle', 883: 'gives', 884: 'desperate', 885: 'holds', 886: '_julius_hibbert:', 887: 'except', 888: 'honey', 889: 'principal', 890: 'nigel_bakerbutcher:', 891: 'group', 892: 'joey', 893: 'worst', 894: 'flanders', 895: 'hit', 896: 'al', 897: 'romantic', 898: 'birthday', 899: 'shall', 900: 'pass', 901: 'men', 902: 'admit', 903: 'dangerous', 904: 'brought', 905: 'charge', 906: 'hard', 907: 'write', 908: 'fall', 909: 'bitter', 910: 'lives', 911: 'touched', 912: 'impressed', 913: 'sex', 914: 'strong', 915: 'sips', 916: 'fat_tony:', 917: 'tony', 918: 'set', 919: "we'd", 920: 'heaven', 921: 'same', 922: 'giving', 923: 'health', 924: 'kent', 925: 'truth', 926: 'bag', 927: 'hank_williams_jr', 928: 'crack', 929: 'treasure', 930: 'plan', 931: 'rat', 932: "sayin'", 933: "that'll", 934: 'szyslak', 935: 'mister', 936: 'week', 937: 'lowers', 938: 'loved', 939: 'supposed', 940: 'tune', 941: 'slap', 942: 'across', 943: 'plastic', 944: 'dumb', 945: 'baseball', 946: 'quick', 947: 'became', 948: 'jukebox', 949: 'gold', 950: 'manjula_nahasapeemapetilon:', 951: 'water', 952: 'safe', 953: 'health_inspector:', 954: 'numbers', 955: 'maya:', 956: 'bow', 957: 'lou:', 958: 'walther_hotenhoffer:', 959: 'omigod', 960: 'princess', 961: 'young_homer:', 962: 'mike', 963: 'catch', 964: "how's", 965: "he'd", 966: 'speech', 967: 'little_man:', 968: 'closed', 969: 'wallet', 970: 'wrote', 971: 'grand', 972: 'troll', 973: 'invited', 974: 'government', 975: 'joint', 976: 'club', 977: 'cutting', 978: 'service', 979: 'quietly', 980: 'movie', 981: 'doubt', 982: 'accent', 983: 'nein', 984: 'speaking', 985: 'bee', 986: 'pop', 987: 'treat', 988: 'wonderful', 989: 'games', 990: 'fellow', 991: 'cheer', 992: 'yea', 993: 'coaster', 994: 'sunday', 995: 'luck', 996: 'jack', 997: 'cop', 998: 'dallas', 999: 'short', 1000: 'shirt', 1001: 'lord', 1002: 'asked', 1003: 'offended', 1004: 'wha', 1005: "smokin'_joe_frazier:", 1006: 'cleaned', 1007: 'piece', 1008: 'felt', 1009: "lisa's", 1010: 'clown', 1011: 'announcer:', 1012: 'testing', 1013: 'shaking', 1014: 'glasses', 1015: "callin'", 1016: 'pipe', 1017: 'red', 1018: 'cost', 1019: 'wall', 1020: 'center', 1021: 'all:', 1022: 'represent', 1023: 'ago', 1024: 'chanting', 1025: 'ad', 1026: 'handsome', 1027: 'sharps', 1028: 'named', 1029: 'names', 1030: 'swear', 1031: 'hospital', 1032: 'children', 1033: 'rest', 1034: 'strap', 1035: 'fingers', 1036: 'suddenly', 1037: 'man:', 1038: 'puzzled', 1039: 'brilliant', 1040: 'soul', 1041: 'saved', 1042: 'pool', 1043: 'local', 1044: 'daddy', 1045: 'dank', 1046: 'ashamed', 1047: 'side', 1048: 'customers', 1049: 'disappointed', 1050: 'hated', 1051: 'horrified', 1052: 'tongue', 1053: 'window', 1054: 'until', 1055: 'truck', 1056: 'selma', 1057: 'owe', 1058: 'dude', 1059: 'wonder', 1060: "tellin'", 1061: 'punch', 1062: 'jeez', 1063: 'yep', 1064: 'empty', 1065: 'biggest', 1066: 'tired', 1067: 'drederick', 1068: 'against', 1069: 'changing', 1070: 'evening', 1071: 'clears', 1072: 'favor', 1073: 'hanging', 1074: 'gay', 1075: 'deer', 1076: 'designated', 1077: 'writing', 1078: 'beloved', 1079: 'wine', 1080: 'suit', 1081: 'confused', 1082: 'french', 1083: 'having', 1084: 'during', 1085: 'clear', 1086: 'sober', 1087: 'longer', 1088: 'chug', 1089: 'jar', 1090: 'brockman', 1091: 'absolutely', 1092: "drivin'", 1093: 'wheel', 1094: 'driving', 1095: 'part', 1096: 'park', 1097: 'i-i', 1098: 'unless', 1099: 'hopeful', 1100: 'stunned', 1101: 'also', 1102: "world's", 1103: 'running', 1104: 'broad', 1105: 'filthy', 1106: 'dame', 1107: 'boring', 1108: 'totally', 1109: 'none', 1110: 'surgery', 1111: 'survive', 1112: "tryin'", 1113: 'mayor', 1114: "workin'", 1115: 'isotopes', 1116: 'lose', 1117: 'detective_homer_simpson:', 1118: 'exasperated', 1119: "guy's", 1120: 'act', 1121: 'needs', 1122: 'given', 1123: 'counting', 1124: 'caught', 1125: 'cow', 1126: 'college', 1127: 'p', 1128: 'fish', 1129: 'women', 1130: 'third', 1131: 'mine', 1132: 'lessons', 1133: 'x', 1134: 'few', 1135: 'thumb', 1136: 'dying', 1137: 'stories', 1138: 'speak', 1139: 'beach', 1140: 'bed', 1141: 'artie', 1142: 'billy_the_kid:', 1143: 'bank', 1144: 'jerks', 1145: 'proud', 1146: "one's", 1147: "sittin'", 1148: 'sauce', 1149: 'suicide', 1150: 'duh', 1151: 'edna_krabappel-flanders:', 1152: 'sob', 1153: 'rope', 1154: "i'm-so-stupid", 1155: 'america', 1156: 'mouse', 1157: 'pity', 1158: 'nineteen', 1159: 'african', 1160: 'nuclear', 1161: 'calm', 1162: '_zander:', 1163: 'tree', 1164: 'lloyd:', 1165: '_hooper:', 1166: 'glen:', 1167: 'bender:', 1168: 'adult_bart:', 1169: 'tv_wife:', 1170: 'tv_husband:', 1171: 'rotch', 1172: 'cares', 1173: 'sits', 1174: 'follow', 1175: 'bars', 1176: 'chocolate', 1177: 'usually', 1178: 'closing', 1179: 'pulled', 1180: 'hurry', 1181: 'fifteen', 1182: 'gin', 1183: 'hits', 1184: 'spot', 1185: 'smiling', 1186: "everyone's", 1187: 'feels', 1188: 'pitcher', 1189: 'amazing', 1190: 'offer', 1191: 'minimum', 1192: 'restaurant', 1193: 'dollar', 1194: 'ingredient', 1195: 'career', 1196: 'market', 1197: 'stock', 1198: 'hans:', 1199: "o'problem", 1200: 'calls', 1201: 'embarrassed', 1202: "today's", 1203: 'nose', 1204: 'domestic', 1205: 'pointed', 1206: 'weekly', 1207: 'sarcastic', 1208: 'belches', 1209: 'forty', 1210: 'ruined', 1211: 'ourselves', 1212: 'original', 1213: 'situation', 1214: 'almost', 1215: 'field', 1216: 'buffalo', 1217: 'pit', 1218: 'pickled', 1219: 'couch', 1220: 'heavyweight', 1221: 'championship', 1222: 'whee', 1223: 'father', 1224: 'beauty', 1225: 'amanda', 1226: 'huggenkiss', 1227: 'ivana', 1228: 'plow', 1229: 'teenage_barney:', 1230: 'hero', 1231: 'starts', 1232: 'answer', 1233: 'enjoy', 1234: 'yesterday', 1235: 'fridge', 1236: 'agent', 1237: 'island', 1238: 'sly', 1239: 'adeleine', 1240: 'scream', 1241: 'question', 1242: 'arrest', 1243: "what'll", 1244: 'knock', 1245: 'figured', 1246: 'stillwater:', 1247: 'respect', 1248: 'fbi', 1249: 'hm', 1250: 'teach', 1251: 'professional', 1252: 'snake', 1253: 'flower', 1254: 'clothes', 1255: 'polite', 1256: 'tail', 1257: 'liver', 1258: 'legs', 1259: 'understand', 1260: 'pulls', 1261: 'line', 1262: 'woman:', 1263: 'meeting', 1264: 'hugh:', 1265: 'rather', 1266: 'pub', 1267: 'wear', 1268: 'loaded', 1269: 'sense', 1270: 'different', 1271: 'movies', 1272: 'magic', 1273: 'deep', 1274: "they've", 1275: 'ahead', 1276: 'breath', 1277: 'boat', 1278: 'working', 1279: 'kidding', 1280: 'burp', 1281: 'blow', 1282: "livin'", 1283: 'choice', 1284: 'test', 1285: 'opportunity', 1286: 'rich', 1287: 'brain', 1288: 'train', 1289: 'yard', 1290: 'hungry', 1291: 'match', 1292: 'body', 1293: 'tatum', 1294: 'sit', 1295: 'dramatic', 1296: "buyin'", 1297: 'bill', 1298: 'twelve', 1299: 'gas', 1300: 'quite', 1301: 'finger', 1302: 'lie', 1303: 'south', 1304: 'fix', 1305: 'whiny', 1306: "o'clock", 1307: 'drivers', 1308: 'drug', 1309: 'upbeat', 1310: 'sold', 1311: 'betty:', 1312: 'explaining', 1313: 'sexy', 1314: 'dang', 1315: 'started', 1316: 'egg', 1317: 'mug', 1318: 'months', 1319: 'chick', 1320: 'threw', 1321: 'stirring', 1322: 'husband', 1323: 'illegal', 1324: 'cover', 1325: 'folks', 1326: "watchin'", 1327: 'case', 1328: 'sports', 1329: 'smooth', 1330: 'computer', 1331: 'selling', 1332: 'ride', 1333: 'renee', 1334: 'flowers', 1335: 'girlfriend', 1336: 'distraught', 1337: 'pain', 1338: 'sobbing', 1339: 'raises', 1340: 'arms', 1341: 'stagy', 1342: 'procedure', 1343: 'able', 1344: 'lips', 1345: 'especially', 1346: 'fan', 1347: "who'll", 1348: 'dennis_conroy:', 1349: 'bottom', 1350: 'road', 1351: 'bye', 1352: 'wally:', 1353: 'flips', 1354: 'character', 1355: 'partner', 1356: 'guns', 1357: "valentine's", 1358: 'amid', 1359: 'yellow', 1360: 'radishes', 1361: 'u', 1362: "bein'", 1363: 'bald', 1364: 'castle', 1365: 'busy', 1366: 're:', 1367: 'seem', 1368: 'jerk', 1369: 'sincere', 1370: 'precious', 1371: 'burt', 1372: 'garbage', 1373: 'died', 1374: "dad's", 1375: 'whisper', 1376: 'lotta', 1377: 'secrets', 1378: 'whaddaya', 1379: 'sees', 1380: 'pickle', 1381: 'rob', 1382: 'coat', 1383: 'trip', 1384: 'ooo', 1385: 'band', 1386: 'neck', 1387: 'tom', 1388: 'gotten', 1389: 'buttons', 1390: 'eleven', 1391: 'cries', 1392: 'awkward', 1393: 'video', 1394: 'billboard', 1395: 'david_byrne:', 1396: 'france', 1397: 'sheepish', 1398: 'address', 1399: 'monster', 1400: 'meaningful', 1401: 'furious', 1402: 'new_health_inspector:', 1403: 'pipes', 1404: 'needed', 1405: 'moment', 1406: 'ominous', 1407: 'declan_desmond:', 1408: 'sister', 1409: 'milhouse_van_houten:', 1410: 'forget-me-shot', 1411: 'finding', 1412: 'shows', 1413: 'bees', 1414: 'vance', 1415: 'correct', 1416: 'pleased', 1417: 'cable', 1418: 'babies', 1419: 'clearly', 1420: 'yap', 1421: 'hoping', 1422: 'thoughtful', 1423: 'grim', 1424: 'frustrated', 1425: 'burps', 1426: 'therapy', 1427: 'foibles', 1428: 'books', 1429: 'twins', 1430: 'rag', 1431: 'keeps', 1432: 'dan_gillick:', 1433: 'ken:', 1434: "carl's", 1435: 'senator', 1436: 'senators', 1437: "moe's_thoughts:", 1438: 'teenage_bart:', 1439: 'eddie:', 1440: 'lately', 1441: 'puke', 1442: 'struggling', 1443: 'crummy', 1444: 'tells', 1445: 'spit', 1446: "'til", 1447: 'unison', 1448: 'thoughts', 1449: 'finished', 1450: 'concerned', 1451: 'burning', 1452: 'hiya', 1453: 'junior', 1454: 'cigarette', 1455: 'sucked', 1456: 'harv', 1457: 'cough', 1458: 'its', 1459: 'delicious', 1460: 'noticing', 1461: 'above', 1462: 'expect', 1463: 'accurate', 1464: 'tips', 1465: 'pardon', 1466: 'idiot', 1467: 'covering', 1468: 'frankly', 1469: 'kept', 1470: 'k', 1471: 'twenty-five', 1472: 'become', 1473: 'german', 1474: 'fritz:', 1475: 'buying', 1476: 'brains', 1477: 'crank', 1478: "bart's", 1479: 'lots', 1480: "they'll", 1481: 'cheap', 1482: 'hug', 1483: 'sniffs', 1484: 'bowling', 1485: 'gift', 1486: 'bret:', 1487: 'guest', 1488: 'whose', 1489: 'shares', 1490: 'odd', 1491: 'hates', 1492: 'whatcha', 1493: 'touchdown', 1494: 'fork', 1495: 'keeping', 1496: 'careful', 1497: 'prime', 1498: 'palmerston', 1499: 'elder', 1500: 'pfft', 1501: 'lottery', 1502: 'sadistic_barfly:', 1503: 'cents', 1504: 'customer', 1505: 'step', 1506: 'holiday', 1507: 'religion', 1508: 'born', 1509: 'tv_father:', 1510: 'toss', 1511: 'jack_larson:', 1512: 'pageant', 1513: 'age', 1514: 'endorse', 1515: 'puff', 1516: "where'd", 1517: 'stopped', 1518: 'ruin', 1519: 'sec', 1520: 'shove', 1521: 'mistake', 1522: 'slip', 1523: 'pathetic', 1524: 'har', 1525: 'ring', 1526: 'checks', 1527: 'pointing', 1528: 'aside', 1529: 'ordered', 1530: 'dressed', 1531: 'bus', 1532: 'gal', 1533: 'afternoon', 1534: 'kwik-e-mart', 1535: 'coney', 1536: 'single', 1537: 'darts', 1538: "havin'", 1539: 'pause', 1540: '_babcock:', 1541: 'higher', 1542: 'reads', 1543: 'sexual', 1544: 'moments', 1545: 'alley', 1546: 'fault', 1547: 'hmmm', 1548: 'roll', 1549: 'form', 1550: 'register', 1551: 'prank', 1552: 'coffee', 1553: 'label', 1554: 'innocent', 1555: 'double', 1556: 'hurts', 1557: 'loan', 1558: 'leans', 1559: 'fool', 1560: 'covers', 1561: 'crawl', 1562: 'following', 1563: 'celebrities', 1564: 'consider', 1565: 'imagine', 1566: 'moved', 1567: 'fumes', 1568: 'oil', 1569: 'exhaust', 1570: 'gag', 1571: 'stole', 1572: 'killed', 1573: 'understanding', 1574: 'raising', 1575: 'natural', 1576: 'stools', 1577: 'texas', 1578: 'rid', 1579: 'barney-shaped_form:', 1580: 'snaps', 1581: 'bright', 1582: 'beginning', 1583: 'cute', 1584: 'evil', 1585: '&', 1586: 'exit', 1587: 'midnight', 1588: 'compliment', 1589: "stinkin'", 1590: 'glum', 1591: 'salad', 1592: 'complete', 1593: "c'mere", 1594: 'knocked', 1595: 'bob', 1596: 'fact', 1597: 'cannot', 1598: 'incredulous', 1599: 'fans', 1600: 'saturday', 1601: 'parking', 1602: 'general', 1603: 'trust', 1604: "could've", 1605: 'stayed', 1606: 'shape', 1607: 'taken', 1608: "gentleman's", 1609: "barney's", 1610: 'mafia', 1611: 'crime', 1612: 'indignant', 1613: 'entire', 1614: 'grow', 1615: 'modern', 1616: 'diet', 1617: 'shoot', 1618: 'enemy', 1619: 'accept', 1620: 'enemies', 1621: 'list', 1622: 'invite', 1623: 'lonely', 1624: 'singers:', 1625: 'toward', 1626: 'defensive', 1627: 'walks', 1628: 'snort', 1629: 'mechanical', 1630: 'suppose', 1631: 'sometime', 1632: 'fancy', 1633: 'kissing', 1634: 'per', 1635: 'traffic', 1636: 'peter', 1637: 'pained', 1638: 'extra', 1639: 'cheers', 1640: 'driver', 1641: 'program', 1642: 'inspector', 1643: 'heads', 1644: 'recommend', 1645: 'severe', 1646: 'checking', 1647: 'showing', 1648: 'fever', 1649: 'spending', 1650: 'switch', 1651: 'casual', 1652: 'rough', 1653: 'pissed', 1654: 'scene', 1655: 'church', 1656: 'threatening', 1657: 'turkey', 1658: 'scam', 1659: 'jesus', 1660: 'spinning', 1661: 'pats', 1662: "seein'", 1663: 'toilet', 1664: 'der', 1665: 'crowd', 1666: 'boo', 1667: 'wide', 1668: 'toasting', 1669: 'order', 1670: 'bunch', 1671: 'pays', 1672: 'law', 1673: 'wasting', 1674: 'corpses', 1675: 'sleep', 1676: 'screams', 1677: 'aww', 1678: 'seeing', 1679: 'military', 1680: 'hunter', 1681: 'reminds', 1682: 'panicky', 1683: 'ridiculous', 1684: 'campaign', 1685: 'public', 1686: "they'd", 1687: 'focus', 1688: 'knowing', 1689: 'jolly', 1690: 'upon', 1691: 'edison', 1692: 'played', 1693: 'middle', 1694: 'worked', 1695: 'james', 1696: 'hole', 1697: 'corner', 1698: 'summer', 1699: 'operation', 1700: 'comfortable', 1701: 'inspection', 1702: 'season', 1703: 'grunt', 1704: 'wooooo', 1705: 'history', 1706: 'team', 1707: 'grabbing', 1708: 'root', 1709: 'spanish', 1710: 'weeks', 1711: 'coach:', 1712: "wife's", 1713: 'leg', 1714: 'grabs', 1715: 'peace', 1716: 'toys', 1717: 'changed', 1718: 'international', 1719: 'who-o-oa', 1720: 'hour', 1721: 'men:', 1722: "men's", 1723: 'hilarious', 1724: 'frink', 1725: 'paying', 1726: 'searching', 1727: 'embarrassing', 1728: 'past', 1729: 'challenge', 1730: 'tears', 1731: 'cocktail', 1732: 'stadium', 1733: 'finest', 1734: 'license', 1735: 'ho', 1736: 'dynamite', 1737: 'rub', 1738: 'grunts', 1739: 'chinese', 1740: 'uncomfortable', 1741: 'helicopter', 1742: 'sweetly', 1743: 'fly', 1744: 'suck', 1745: 'film', 1746: 'fireball', 1747: 'mudflap', 1748: "ridin'", 1749: 'teeth', 1750: 'closer', 1751: 'happily', 1752: '_timothy_lovejoy:', 1753: 'chest', 1754: 'popular', 1755: 'directions', 1756: 'bought', 1757: 'tried', 1758: 'wearing', 1759: 'delighted', 1760: 'button', 1761: 'future', 1762: 'drunks', 1763: 'serve', 1764: 'spoken', 1765: 'thankful', 1766: 'looked', 1767: 'ancient', 1768: 'losing', 1769: 'lindsay_naegle:', 1770: 'teenage', 1771: 'ohmygod', 1772: 'uneasy', 1773: "i-i'm", 1774: 'terrified', 1775: 'scum', 1776: 'afford', 1777: 'anniversary', 1778: 'feed', 1779: 'ã€', 1780: 'starting', 1781: "robbin'", 1782: 'banks', 1783: 'fair', 1784: 'backwards', 1785: 'rats', 1786: 'staying', 1787: 'death', 1788: 'andy', 1789: 'mock', 1790: 'flatly', 1791: 'sisters', 1792: 'subject', 1793: 'likes', 1794: 'peach', 1795: 'miserable', 1796: 'jump', 1797: 'dive', 1798: 'bless', 1799: 'attention', 1800: 'paris', 1801: 'cards', 1802: 'ziffcorp', 1803: 'sec_agent_#1:', 1804: 'fraud', 1805: 'perhaps', 1806: 'ground', 1807: 'jail', 1808: 'ran', 1809: "kids'", 1810: 'gary_chalmers:', 1811: 'dancing', 1812: 'wiener', 1813: 'vomit', 1814: 'bike', 1815: 'floor', 1816: 'glen', 1817: 'breaking', 1818: 'british', 1819: 'letters', 1820: 'clone', 1821: 'tradition', 1822: 'push', 1823: 'vegas', 1824: 'system', 1825: 'bar-boy', 1826: 'foot', 1827: 'motel', 1828: 'awful', 1829: 'child', 1830: 'yee-haw', 1831: 'workers', 1832: 'then:', 1833: 'clientele', 1834: 'army', 1835: 'milhouse', 1836: 'greystash', 1837: 'dirt', 1838: 'doors', 1839: 'size', 1840: 'reason', 1841: 'feelings', 1842: 'mel', 1843: 'bite', 1844: 'powerful', 1845: 'wipe', 1846: 'image', 1847: 'pockets', 1848: 'share', 1849: 'jamaican', 1850: 'l', 1851: "lenny's", 1852: 'midge', 1853: 'gently', 1854: 'unlike', 1855: 'meant', 1856: 'sniffles', 1857: 'election', 1858: 'al_gore:', 1859: 'nobel', 1860: 'sadder', 1861: 'yo', 1862: 'unlucky', 1863: 'somewhere', 1864: 'met', 1865: 'relax', 1866: 'anguished', 1867: 'talk-sings', 1868: 'tastes', 1869: 'kang:', 1870: "year's", 1871: 'bitterly', 1872: 'woo-hoo', 1873: 'cameras', 1874: 'nards', 1875: 'gary:', 1876: 'fourth', 1877: 'scotch', 1878: 'drop', 1879: 'weak', 1880: 'opening', 1881: '_kissingher:', 1882: 'text', 1883: 'f', 1884: 'hall', 1885: 'wayne:', 1886: 'nation', 1887: 'kermit', 1888: 'belly', 1889: 'despite', 1890: 'r', 1891: 'theater', 1892: 'twenty-two', 1893: 'sixty-nine', 1894: 'source', 1895: 'brother', 1896: 'book_club_member:', 1897: 'literature', 1898: 'troy:', 1899: 'pocket', 1900: 'marvin', 1901: 'carve', 1902: 'effervescent', 1903: 'social', 1904: 'vote', 1905: 'corkscrew', 1906: 'folk', 1907: 'neat', 1908: 'tick', 1909: 'effects', 1910: 'trick', 1911: 'judge', 1912: 'mumbling', 1913: 'closes', 1914: 'smoothly', 1915: 'gum', 1916: 'satisfaction', 1917: 'payments', 1918: 'distributor', 1919: 'spent', 1920: 'tester', 1921: 'gums', 1922: "bartender's", 1923: 'brightening', 1924: 'homers', 1925: 'syrup', 1926: 'knife', 1927: 'doll', 1928: 'charm', 1929: 'lighting', 1930: "tester's", 1931: 'busted', 1932: 'barkeep', 1933: 'bartenders', 1934: 'barf', 1935: 'measurements', 1936: 'benefits', 1937: 'prefer', 1938: 'hired', 1939: "shan't", 1940: 'regret', 1941: 'genius', 1942: 'mcstagger', 1943: 'successful', 1944: 'sale', 1945: 'yours', 1946: 'compliments', 1947: 'aerosmith', 1948: 'refund', 1949: 'henry', 1950: 'reserve', 1951: 'swill', 1952: 'ech', 1953: 'interested', 1954: 'owner', 1955: 'confident', 1956: '100', 1957: 'awwww', 1958: 'bucket', 1959: 'conspiratorial', 1960: 'teddy', 1961: 'bear', 1962: 'beneath', 1963: 'seek', 1964: 'bears', 1965: 'blend', 1966: 'greedy', 1967: 'sector', 1968: 'recently', 1969: 'shaken', 1970: 'recall', 1971: 'inspire', 1972: 'peanut', 1973: 'slyly', 1974: 'pleasure', 1975: 'thirteen', 1976: 'studio', 1977: 'apartment', 1978: 'listening', 1979: 'deeply', 1980: 'victory', 1981: 'bread', 1982: 'bets', 1983: 'troy', 1984: 'troy_mcclure:', 1985: 'bret', 1986: 'handle', 1987: 'retired', 1988: 'comedy', 1989: "buffalo's", 1990: 'excellent', 1991: 'riding', 1992: 'whistles', 1993: 'dan', 1994: 'wins', 1995: 'aggravated', 1996: 'teams', 1997: 'cowboys', 1998: 'clock', 1999: 'cars', 2000: "maggie's", 2001: 'handing', 2002: 'minister', 2003: 'wade_boggs:', 2004: 'jumps', 2005: 'poking', 2006: "showin'", 2007: 'gals', 2008: 'fudd', 2009: 'miles', 2010: 'finishing', 2011: 'dryer', 2012: 'feast', 2013: 'snake-handler', 2014: 'prove', 2015: 'laramie', 2016: 'cigarettes', 2017: 'prohibit', 2018: 'smoke', 2019: 'product', 2020: '250', 2021: 'animals', 2022: '_powers:', 2023: 'standards', 2024: 'b', 2025: 'sausage', 2026: 'ah-ha', 2027: 'sooner', 2028: 'linda', 2029: 'project', 2030: 'snow', 2031: "fallin'", 2032: 'prayer', 2033: 'wave', 2034: 'yoo', 2035: 'cheery', 2036: 'sack', 2037: 'chilly', 2038: 'willy', 2039: 'appear', 2040: 'remembered', 2041: 'snap', 2042: 't-shirt', 2043: 'plum', 2044: 'deserve', 2045: 'civic', 2046: 'ragtime', 2047: 'isle', 2048: 'babe', 2049: 'village', 2050: 'tenor:', 2051: 'paid', 2052: 'lib', 2053: 'remains', 2054: 'witty', 2055: 'served', 2056: 'cops', 2057: 'andalay', 2058: 'sometimes', 2059: 'based', 2060: 'realize', 2061: 'insightful', 2062: 'code', 2063: 'cueball', 2064: 'clinton', 2065: 'tang', 2066: "it'd", 2067: 'nasa', 2068: 'astronaut', 2069: 'shrugging', 2070: 'rap', 2071: 'advantage', 2072: 'generous', 2073: 'pin', 2074: 'cola', 2075: 'forbidden', 2076: 'present', 2077: 'entirely', 2078: 'bold', 2079: 'teacher', 2080: 'sugar', 2081: 'pleading', 2082: 'pulling', 2083: 'ohh', 2084: 'greetings', 2085: 'giggles', 2086: 'advance', 2087: 'gosh', 2088: 'bash', 2089: 'poet', 2090: 'alcoholic', 2091: 'large', 2092: 'pouring', 2093: 'honored', 2094: 'virtual', 2095: 'inflated', 2096: 'self-esteem', 2097: 'male_inspector:', 2098: 'detecting', 2099: 'rage', 2100: 'reasons', 2101: 'writers', 2102: 'alfalfa', 2103: 'murmur', 2104: 'hollywood', 2105: 'restaurants', 2106: 'pressure', 2107: 'inspired', 2108: 'memories', 2109: 'blew', 2110: 'pad', 2111: 'stinks', 2112: 'ahhh', 2113: 'rolling', 2114: 'wondering', 2115: 'ringing', 2116: 'ye', 2117: 'jebediah', 2118: 'cutie', 2119: 'bums', 2120: 'angel', 2121: 'blood-thirsty', 2122: 'pirate', 2123: 'jubilant', 2124: 'waylon', 2125: 'delivery', 2126: 'forward', 2127: 'darkest', 2128: 'calculate', 2129: 'results', 2130: 'billion', 2131: 'space', 2132: 'considering', 2133: 'freeze', 2134: 'reasonable', 2135: 'ha-ha', 2136: 'themselves', 2137: 'raise', 2138: 'oof', 2139: 'belt', 2140: 'steak', 2141: 'meal', 2142: 'awe', 2143: 'percent', 2144: 'manage', 2145: 'realized', 2146: "hadn't", 2147: 'boxer', 2148: 'gorgeous', 2149: "meanin'", 2150: 'lucius', 2151: 'famous', 2152: 'don', 2153: 'manager', 2154: 'somehow', 2155: 'row', 2156: 'politics', 2157: 'agreement', 2158: '