Often interchangeably used with explainability (although there is a subtle difference between the two). It refers to interpreting decisions made by a machine learning model (or, explaining what part of the input was responsible for the prediction of the model).
In the example here, we will provide explanations for the decisions made by the Logistic Regression classifier. We will:
(1) train a logistic regression classifier to classify Amazon reviews as positive or negative
(2) look at weights the classifier assigned to invididual tokens
(3) highlight the words so to indicate to which prediction decision they contributed
We will be loading a corpus of Amazon reviews labeled for sentiment (positive or negative)
# importing the Python's Pandas library for data loading and manipulation
import pandas as pd
# Step #1: loading our annotated reviews
train_data = pd.read_csv('reviews_train.csv', delimiter = '\t') # in our file, the values are actually TAB-separated
eval_data = pd.read_csv('reviews_test.csv', delimiter = '\t')
# let's see what our data actually looks like
train_data
label | score | content | |
---|---|---|---|
0 | NEG | 2.0 | cons tips extremely easy on carpet and if you... |
1 | NEG | 1.0 | It's a nice look, but it tips over very easil... |
2 | NEG | 1.0 | I have bought and returned three of these uni... |
3 | NEG | 1.0 | I knew these were inexpensive CD cases, but I... |
4 | NEG | 2.0 | I used a 25 pack of these doing DVD backups, ... |
... | ... | ... | ... |
1795 | POS | 5.0 | I just recieved my HDMI cable and am very imp... |
1796 | POS | 5.0 | This is the perfect keyboard ( I know cuz I a... |
1797 | POS | 5.0 | SanDisk has done it again. They never seem to... |
1798 | POS | 5.0 | Fast shipping, Very happy with the GARMIN. Th... |
1799 | POS | 5.0 | The SanDisk 1GB Micro SD Card arrived quickly... |
1800 rows × 3 columns
# let us preprocess (tokenize and lemmatize) the texts
# install spacy with pip or conda, e.g., pip install spacy
import spacy
# wordcloud library displays texts as word clouds, based on word frequency statistics
import wordcloud
# wordcloud has its own list of STOPWORDS
from wordcloud import STOPWORDS
# removing the repetitions if there are any, converting the list to set
stopwords = set(list(STOPWORDS) + ['.', "?", "!", ",", "(", ")", ":", ";", "\"", "'"])
print(stopwords)
{"let's", 'than', 'yours', 'com', "when's", '.', 'cannot', "why's", 'further', 'it', "i'd", "that's", 'did', "he'd", 'by', 'not', 'can', 'off', 'our', 'some', 'no', 'get', 'having', 'but', 'else', "she'd", 'my', 'same', 'i', 'out', 'during', 'where', 'with', 'few', "how's", "isn't", "hasn't", 'them', 'its', "can't", 'their', "doesn't", "you're", "it's", 'from', 'to', 'we', "aren't", "they'd", 'ours', 'below', 'she', 'the', "she's", 'too', 'his', 'yourself', "shouldn't", 'because', "couldn't", 'only', 'doing', 'myself', 'been', 'who', "he's", ',', 'what', 'your', "mustn't", "you've", 'own', ')', 'should', 'most', 'any', 'an', 'at', 'could', 'does', 'down', 'which', 'a', 'or', 'up', "'", 'and', 'over', 'www', 'against', 'himself', 'of', "weren't", 'have', 'since', 'yourselves', 'otherwise', 'hence', "i've", 'would', "we've", 'there', "haven't", 'be', 'about', "i'll", 'when', "who's", 'being', 'after', 'all', 'then', "there's", 'ourselves', '!', "here's", 'ever', 'in', 'they', 'very', 'like', "where's", 'shall', 'both', 'this', "don't", 'more', 'were', 'are', 'if', 'that', 'ought', 'therefore', 'r', "won't", "they're", 'once', 'do', 'so', "he'll", "she'll", 'until', "you'll", 'before', 'just', 'her', 'again', 'while', 'under', "you'd", 'for', "wasn't", 'through', '?', 'herself', 'was', "we'll", 'into', 'how', "they'll", "wouldn't", 'you', 'hers', ';', 'whom', 'why', "hadn't", 'those', 'however', 'him', 'theirs', 'he', 'nor', 'had', 'above', 'http', 'is', 'between', 'as', "they've", 'such', "i'm", 'other', 'each', 'on', 'here', "we're", '"', 'am', 'has', 'k', 'themselves', 'also', 'me', "shan't", "we'd", ':', "what's", '(', 'these', 'itself', "didn't"}
# The model we want to load needs to be first downloaded:
# in command line: python -m spacy download en_core_web_sm
# load the spacy models for English
nlp = spacy.load("en_core_web_sm")
train_data["tokens"] = train_data.content.apply(lambda x: [t.text.lower() for t in nlp(x, disable=["parser", "ner"]) if (t.text.strip() != "" and (t.text.lower() not in stopwords))])
eval_data["tokens"] = eval_data.content.apply(lambda x: [t.text.lower() for t in nlp(x, disable=["parser", "ner"]) if (t.text.strip() != "" and (t.text.lower() not in stopwords))])
train_data
label | score | content | tokens | |
---|---|---|---|---|
0 | NEG | 2.0 | cons tips extremely easy on carpet and if you... | [cons, tips, extremely, easy, carpet, lot, cds... |
1 | NEG | 1.0 | It's a nice look, but it tips over very easil... | ['s, nice, look, tips, easily, steady, rug, su... |
2 | NEG | 1.0 | I have bought and returned three of these uni... | [bought, returned, three, units, now, one, def... |
3 | NEG | 1.0 | I knew these were inexpensive CD cases, but I... | [knew, inexpensive, cd, cases, ca, n't, even, ... |
4 | NEG | 2.0 | I used a 25 pack of these doing DVD backups, ... | [used, 25, pack, dvd, backups, last, 5, failed... |
... | ... | ... | ... | ... |
1795 | POS | 5.0 | I just recieved my HDMI cable and am very imp... | [recieved, hdmi, cable, impressed, price, $, 5... |
1796 | POS | 5.0 | This is the perfect keyboard ( I know cuz I a... | [perfect, keyboard, know, cuz, typing, right, ... |
1797 | POS | 5.0 | SanDisk has done it again. They never seem to... | [sandisk, done, never, seem, let, products, ma... |
1798 | POS | 5.0 | Fast shipping, Very happy with the GARMIN. Th... | [fast, shipping, happy, garmin, tech, support,... |
1799 | POS | 5.0 | The SanDisk 1GB Micro SD Card arrived quickly... | [sandisk, 1, gb, micro, sd, card, arrived, qui... |
1800 rows × 4 columns
We have already seen the Scikit-Learn library in Python the last time. It offers many machine learning (but also text processing) methods, models, and tools that can be used out of the box with a very consistent and uniform API (same functions, like fit, transform, fit_transform, ...)
# we will use the sklearn library for text preprocessing (and later also for classification and clustering algorithms/models)
import sklearn
# for this we need the TfidfVectorizer class from scikit-learn (sklearn)
from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer
# dummy function, returning our already tokenized text. TfidfVectorizer usually expects raw text and performs tokenization of
# its own. Since we already tokenized the texts ourselves with SpaCy, we just provide those tokens
def dummy(tokenized_text):
return tokenized_text
# Converting Pandas data series into a list of tokenized texts (input format required by scikit-learn's TfidfVectorizer)
train_set = train_data["tokens"].tolist()
eval_set = eval_data["tokens"].tolist()
# initializing the TF-IDF vectorizer
vectorizer = TfidfVectorizer(tokenizer = dummy, preprocessor = dummy)
# vectorizer learns the vocabulary from the (tokenized) train set tweets
vectorizer.fit(train_set)
# let's see what the vocabulary looks like
print(vectorizer.vocabulary_)
print()
# let's see how many different words we have in our vocabulary
print(len(vectorizer.vocabulary_))
{'cons': 2506, 'tips': 10017, 'extremely': 3973, 'easy': 3546, 'carpet': 1990, 'lot': 6045, 'cds': 2046, 'stacked': 9340, 'top': 10058, 'poorly': 7500, 'designed': 3046, 'vertical': 10641, 'cd': 2042, 'rack': 7905, 'nt': 6827, 'individual': 5288, 'slots': 9079, 'want': 10785, 'bottom': 1717, 'stack': 9339, 'basically': 1452, 'pull': 7798, 'whole': 10927, 'putting': 7832, 'together': 10037, 'pain': 7138, 'one': 6943, 'bought': 1719, 'break': 1745, 'piece': 7373, 'metal': 6340, 'fit': 4198, 'guide': 4733, 'holes': 4981, '..': 74, '...': 75, 'even': 3817, 'well': 10889, 'gaps': 4514, 'casses': 2016, 'loose': 6029, 'fitting': 4202, 'pros': 7749, '..........': 82, 'guess': 4729, 'hold': 4976, '....': 76, "'s": 15, 'nice': 6744, 'look': 6020, 'easily': 3543, 'steady': 9389, 'rug': 8526, 'surface': 9653, 'dispite': 3243, 'picture': 7368, 'box': 1725, 'shows': 8934, 'advice': 891, 'need': 6685, 'holds': 4979, 'save': 8626, 'money': 6506, 'invest': 5472, 'something': 9172, 'nicer': 6746, 'sturdy': 9523, 'returned': 8380, 'three': 9958, 'units': 10412, 'now': 6820, 'defective': 2958, 'finally': 4160, 'gave': 4526, 'returning': 8381, 'system': 9728, 'dvd': 3469, 'player': 7438, 'constantly': 2533, 'gives': 4594, 'bad': 1417, 'disc': 3196, 'errors': 3777, 'skips': 9037, 'slightest': 9063, 'smudge': 9117, 'sound': 9203, 'quality': 7853, 'price': 7633, "n't": 6633, 'work': 11037, 'essentially': 3793, 'useless': 10530, 'complete': 2410, 'rip': 8451, '-': 23, 'point': 7480, 'knew': 5695, 'inexpensive': 5299, 'cases': 2012, 'ca': 1894, 'open': 6962, 'without': 10997, 'breaking': 1750, 'two': 10283, 'pieces': 7374, 'used': 10526, '25': 340, 'pack': 7117, 'backups': 1413, 'last': 5779, '5': 483, 'failed': 4019, 'thought': 9949, 'software': 9142, 'got': 4635, 'new': 6725, 'first': 4195, 'package': 7118, 'burner': 1844, 'another': 1110, 'reviewer': 8400, 'suggested': 9592, 'implying': 5198, 'people': 7274, 'learn': 5831, 'read': 7975, 'brand': 1739, 'require': 8286, 'firmware': 4192, 'upgrade': 10484, 'mention': 6314, 'suck': 9571, 'high': 4931, 'failure': 4022, 'rate': 7942, 'consensus': 2508, 'seems': 8748, 'tdk': 9823, 'sony': 9183, 'best': 1553, "'m": 13, 'buying': 1870, 'frustration': 4426, 'discs': 3227, 'compusa': 2435, 'needed': 6686, 'ones': 6948, 'ordered': 7001, 'online': 6950, 'wated': 10832, 'good': 4625, 'bucks': 1808, 'burned': 1843, 'much': 6592, 'bang': 1434, 'buck': 1804, 'many': 6189, 'never': 6721, 'memorex': 6307, 'usually': 10541, 'verbatim': 10624, 'ridata': 8426, 'mam': 6163, 'disgruntled': 3230, 'making': 6156, 'coasters': 2285, 'maybe': 6256, 'burners': 1845, 'whatever': 10902, 'case': 2010, 'wo': 11012, 'buy': 1866, 'made': 6123, 'products': 7694, 'dvds': 3479, 'successfully': 9567, 'showed': 8930, 'movies': 6567, 'excellent': 3856, 'problem': 7667, 'every': 3827, '3': 372, 'burns': 1847, 'using': 10537, 'plextor': 7453, 'love': 6055, 'going': 4620, 'try': 10232, 'luck': 6079, 'different': 3132, 'unacceptable': 10323, 'less': 5869, 'cost': 2648, 'bothers': 1714, 'time': 10003, 'wasted': 10826, 'burning': 1846, 'hope': 5006, 'live': 5970, 'crap': 2706, 'latest': 5791, 'opinion': 6977, 'product': 7689, 'liteon': 5964, 'sohw-802s': 9148, 'hates': 4836, 'rarely': 7941, 'decent': 2927, 'burn': 1842, 'often': 6918, "'ll": 12, 'discover': 3219, 'watching': 10831, 'horrid': 5019, 'will': 10948, 'skip': 9032, 'stutter': 9524, 'stop': 9435, 'disappointing': 3191, 'unfortunately': 10391, 'found': 4360, 'late': 5787, 'uses': 10535, 'cmc': 2273, 'media': 6286, '0': 105, '50': 493, '%': 7, 'success': 9565, '[': 686, 'reviews': 8404, 'machine': 6112, 'clear': 2217, 'lexar': 5884, 'serious': 8809, 'control': 2582, 'problems': 7670, 'worked': 11042, 'others': 7023, 'miserable': 6438, 'latter': 5794, 'group': 4709, 'sigh': 8956, 'mine': 6409, 'dead': 2900, 'arrival': 1219, 'tried': 10191, 'device': 3094, '*': 18, 'windows': 10964, 'xp': 11117, 'machines': 6114, 'unrecognized': 10446, 'tech': 9831, 'support': 9631, 'subsequently': 9552, 'proved': 7765, 'contradiction': 2574, 'terms': 9880, 'return': 8378, 'email': 3630, 'requests': 8284, 'help': 4906, 'cash': 2014, 'back': 1394, 'offer': 6904, 'sounded': 9208, 'true': 10222, 'sure': 9650, 'enough': 3720, 'rejected': 8171, 'upcs': 10479, 'kept': 5653, 'copies': 2621, 'hounding': 5034, 'contacting': 2548, 'better': 1557, 'business': 1853, 'bureau': 1840, 'say': 8634, 'whoops': 10928, 'mistake': 6458, 'fleeting': 4242, 'suspicion': 9678, 'intentional': 5403, 'please': 7447, 'expect': 3904, 'purchase': 7811, 'promised': 7726, 'date': 2875, "'ve": 16, 'denied': 3010, 'twice': 10279, 'second': 8728, 'said': 8582, 'u': 10298, 'p': 7105, 'c': 1879, 'number': 6837, 'invalid': 5464, 'original': 7012, 'barcode': 1440, 'meticulous': 6349, 'filing': 4145, 'paperwork': 7176, 'yet': 11143, 'state': 9369, 'required': 8287, 'submitted': 9547, 'meanwhile': 6276, 'phoned': 7339, 'amaz0n': 1046, 'lodge': 5995, 'formal': 4339, 'complaint': 2405, 'average': 1360, 'worse': 11057, 'definitely': 2967, 'worth': 11060, 'full': 4437, 'asking': 1248, 'free': 4385, 'lunch': 6088, '&': 8, 'pay': 7239, 'verdict': 10626, 'poor': 7498, 'rating': 7946, 'given': 4593, 'purchased': 7812, 'discouraged': 3217, 'binders': 1579, 'logic': 6004, 'pricey': 7637, 'low': 6059, 'alternatives': 1037, 'expense': 3914, 'tco': 9819, 'total': 10070, 'ownership': 7098, 'flap': 4220, 'customer': 2812, 'service': 8816, 'rebates': 8010, 'zippers': 11176, 'sleeve': 9052, 'binding': 1580, 'give': 4591, 'pause': 7233, '.....': 77, 'someone': 9169, 'xtreme': 11124, 'management': 6168, 'paying': 7242, 'attention': 1308, 'fix': 4204, 'content': 2556, 'lose': 6038, 'everything': 3832, 'everyone': 3831, 'markt': 6219, 'collection': 2314, '1500': 229, 'disks': 3237, '/': 102, 'years': 11139, 'worst': 11059, 'avoid': 1362, 'month': 6520, 'ago': 934, 'use': 10524, 'dx4330': 3490, 'kodak': 5708, '3mp': 428, 'digital': 3145, 'camera': 1931, '2': 290, 'days': 2885, 'everytime': 3834, 'wanted': 10786, 'reformat': 8130, 'card': 1973, 'wth': 11094, 'always': 1043, 'confidence': 2468, 'previous': 7629, 'purchases': 7813, 'amazon': 1051, 'threw': 9960, 'away': 1369, 'shipping': 8892, 'packages': 7120, 'tested': 9890, 'ok.i': 6927, 'longer': 6016, 'needless': 6689, 'confident': 2469, 'buyers': 1869, 'beware': 1558, 'game': 4505, 'pad': 7126, 'due': 3439, '$': 6, '15': 223, 'built': 1823, 'pretty': 7621, 'comfortable': 2339, 'hand': 4775, 'programming': 7711, 'alright': 1027, 'nostromo': 6792, 'n50/52': 6636, 'example': 3849, 'relavant': 8179, 'firstly': 4196, 'toggle': 10038, 'lock': 5989, 'shift': 8883, 'button': 1862, 'press': 7613, 'accident': 756, 'momentary': 6501, 'go': 4614, 'agian': 932, 'interupting': 5439, 'play': 7432, 'buttons': 1864, '7': 569, '8': 613, 'paddles': 7130, 'rather': 7945, 'thumb': 9974, 'quite': 7879, 'far': 4052, 'normal': 6785, 'hard': 4807, 'quickly': 7868, 'mapped': 6193, 'limited': 5931, '10': 144, 'reason': 8002, 'way': 10844, 'invoke': 5481, 'fight': 4134, 'nhl06': 6739, 'ship': 8888, 'ill': 5159, 'soon': 9187, 'logitech': 6008, 'thing': 9931, 'hours': 5036, 'row': 8512, 'spent': 9270, 'several': 8835, 'hardware': 4814, 'sucks': 9576, 'express': 3950, 'endless': 3686, 'old': 6929, 'story': 9451, 'must': 6614, 'computer': 2436, 'fly': 4280, 'either': 3596, 'type': 10289, 'exceeds': 3852, 'requirements': 8289, 'advertised': 887, 'ads': 874, 'exchanged': 3869, 'item': 5539, 'supposedly': 9638, 'checked': 2140, 'told': 10039, 'person': 7313, 'trouble': 10210, 'check': 2138, 'websites': 10866, 'review': 8397, 'hundreds': 5085, 'reading': 7980, 'ulead': 10311, 'movie': 6566, 'factory': 4014, 'came': 1930, 'bundled': 1838, 'uleads': 10312, 'cap': 1959, 'wiz': 11001, 'program': 7706, 'duh': 3443, 'complaints': 2406, 'final': 4157, 'solution': 9159, 'version': 10638, 'might': 6385, 'aggravation': 929, 'p.s.': 7108, 'consider': 2514, 'refund': 8135, 'allow': 1005, 'trade': 10107, 'think': 9934, 'star': 9359, 'packed': 7123, 'ju': 5609, 'sd': 8698, 'nikon': 6754, 'coolpix': 2614, 's6': 8565, 'fuji': 4433, 'sandisk': 8602, 'novi': 6818, 'replacing': 8255, 'absolutely': 729, 'range': 7932, 'channel': 2104, 'distance': 3258, 'approx': 1186, '110': 176, 'ft': 4431, 'house': 5037, 'barn': 1444, 'room': 8495, 'attempting': 1305, 'currently': 2800, 'four': 4361, 'immediately': 5181, 'third': 9941, 'horrible': 5017, 'searching': 8718, 'internet': 5429, 'variety': 10591, 'similar': 8979, 'settled': 8828, '900': 653, 'megahertz': 6298, 'wireless': 10984, 'intercom': 5409, 'radio': 7908, 'shack': 8844, '43': 452, '3102': 389, 'beautiful': 1486, 'half': 4766, 'reporter': 8264, 'featues': 4093, 'claims': 2198, '300': 383, 'feet': 4110, 'opposed': 6984, '1000': 155, 'warranty': 10809, 'extend': 3953, 'warrarnty': 10811, 'year': 11138, 'anyway': 1143, 'happier': 4802, 'rs': 8519, 'recommend': 8074, 'reporters': 8265, '4': 432, 'arrived': 1221, 'faulty': 4076, 'batteries': 1465, 'pleased': 7448, 'wore': 11036, 'couple': 2672, 'months': 6523, 'ther': 9918, 'charge': 2112, 'recharge': 8046, 'per': 7277, 'instructions': 5375, 'know': 5702, 'monster': 6518, 'makes': 6155, 'little': 5967, 'disappointed': 3190, 'jnr': 5584, 'unit': 10410, 'powers': 7567, 'fails': 4021, 'detect': 3073, 'multiple': 6601, 'computers': 2437, 'may': 6254, 'lemon': 5857, 'exchange': 3868, 'bookstand': 1684, 'despite': 3060, 'description': 3034, 'suitable': 9598, 'heavy': 4893, 'books': 1681, 'put': 7829, 'stand': 9350, 'props': 7748, 'likely': 5922, 'snap': 9118, 'flimsy': 4256, 'plastic': 7425, 'parts': 7202, 'afraid': 914, 'book': 1677, 'ten': 9869, 'minutes': 6431, 'fallen': 4030, 'importantly': 5202, 'handle': 4780, 'large': 5771, 'manuals': 6181, 'particular': 7194, 'holder': 4977, 'page': 7132, 'manual': 6178, 'fits': 4200, 'happen': 4797, 'middle': 6378, 'chapter': 2106, 'based': 1447, 'estimate': 3800, 'totally': 10071, 'worthless': 11061, 'anyone': 1139, 'needing': 6688, 'training': 10116, 'five': 4203, 'six': 9015, 'hundred': 5084, 'pages': 7135, 'anticipate': 1125, 'big': 1569, 'glue': 4610, 'rubber': 8521, 'keep': 5644, 'eye': 3975, 'retainers': 8365, 'fell': 4111, 'ok': 6926, 'policy': 7490, 'see': 8741, 'rid': 8425, 'hunk': 5088, 'send': 8773, 'stopped': 9439, 'playing': 7440, 'dependability': 3018, 'questionable': 7862, 'memory': 6309, 'purchasing': 7814, 'listed': 5951, 'accessory': 755, 'received': 8033, 'wrong': 11087, 'shape': 8856, 'size': 9019, 'opened': 6963, 'unable': 10322, 'fact': 4010, 'emailed': 3631, 'company': 2370, 'sent': 8790, 'response': 8333, 'buys': 1872, 'extra': 3968, 'started': 9365, 'reported': 8263, 'weeks': 10876, 'counting': 2666, 'still': 9423, 'astonished': 1274, 'contacted': 2547, 'n.e.w.': 6634, 'asked': 1246, 'shame': 8855, 'embarrassment': 3638, 'part': 7192, 'reps': 8277, 'informed': 5311, 'take': 9773, 'least': 5836, 'receive': 8032, 'warrantied': 10806, 'pre': 7578, 'paid': 7137, 'label': 5726, 'instead': 5368, 'printer': 7647, 'week': 10871, 'covered': 2680, 'words': 11035, 'replacement': 8252, 'possibly': 7535, 'eight': 3593, 'cancelled': 1949, 'contract': 2570, 'really': 7994, 'math': 6238, 'grado': 4647, 'sennheiser': 8778, 'koss': 5711, 'stay': 9384, 'feeling': 4107, 'simple': 8982, 'wish': 10990, 'battery': 1466, 'died': 3127, '13': 208, '30': 381, 'outside': 7048, 'warrantly': 10808, 'apple': 1169, 'sorry': 9197, 'tough': 10080, 'figuring': 4140, 'ipod': 5495, 'within': 10996, 'period': 7295, 'becuase': 1495, 'took': 10052, 'store': 9444, 'course': 2675, 'past': 7219, '12': 188, 'keeps': 5646, 'track': 10100, 'substnatial': 9558, 'investment': 5477, 'fantastic': 4046, 'cause': 2034, "'d": 10, 'fan': 4040, 'cfii': 2082, 'cards': 1976, 'lost': 6044, 'data': 2871, 'wrote': 11090, 'girlfriend': 4588, 'pix': 7399, 'care': 1978, 'losing': 6040, 'ziplock': 11173, 'none': 6774, 'file': 4141, 'removal': 8218, 'programs': 7712, 'images': 5173, 'day': 2883, 'age': 923, 'make': 6153, 'upset': 10498, 'chances': 2096, 'great': 4676, 'grand': 4658, 'mother': 6537, 'actual': 815, 'right': 8438, 'written': 11086, 'tells': 9856, 'important': 5201, 'pictures': 7371, 'frederic': 4384, 'ups': 10497, 'plug': 7460, 'test': 9887, 'works': 11050, 'times': 10005, 'shutdown': 8940, 'outage': 7029, 'set': 8822, '1': 115, 'minute': 6430, 'small': 9092, 'phone': 7337, 'accessories': 753, 'attached': 1296, 'power': 7555, 'cut': 2818, 'held': 4899, 'allowed': 1007, 'shut': 8939, 'restored': 8349, 'seconds': 8731, 'beeped': 1504, 'clicked': 2228, 'temporarily': 9864, 'dropped': 3408, 'rebooting': 8014, 'switches': 9706, 'causes': 2036, 'interrupted': 5432, 'drop': 3405, 'devices': 3095, 'cable': 1900, 'modem': 6480, 'broadband': 1776, 'connection': 2499, 'aps': 1191, 'lightning': 5916, 'hit': 4959, 'near': 6669, 'motherboard': 6538, 'plus': 7465, 'router': 8506, 'fried': 4410, 'stayed': 9385, 'intact': 5384, 'filed': 4142, 'claim': 2195, 'saying': 8635, 'backend': 1397, 'surges': 9661, 'caused': 2035, 'damage': 2852, 'though': 9948, 'hurt': 5094, 'awaiting': 1366, 'resolution': 8318, 'drives': 3401, 'writing': 11085, 'verification': 10627, 'proboem': 7673, 'arises': 1205, 'external': 3965, 'firewire': 4188, 'enclosure': 3667, 'drive': 3396, 'fine': 4166, 'internal': 5425, 'ide': 5126, 'bus': 1850, 'issue': 5531, 'import': 5199, 'drai': 3369, 'end': 3683, 'december': 2926, 'quick': 7866, 'running': 8543, 'yesterday': 11142, 'equivalent': 3761, 'lockjaw': 5992, 'tray': 10164, 'release': 8181, 'operates': 6971, 'probably': 7665, 'next': 6736, 'recommendation': 8075, 'goes': 4618, 'depends': 3022, 'inconvenient': 5255, 'went': 10891, 'backup': 1412, 'working': 11046, 'job': 5585, 'done': 3317, 'previously': 7631, 'developed': 3091, 'strategy': 9466, 'keeping': 5645, 'handy': 4789, 'seething': 8750, 'hair': 4764, 'pulling': 7800, 'rage': 7913, '100': 153, 'reliable': 8185, 'risk': 8455, 'known': 5706, 'fail': 4018, 'traveled': 10156, 'completely': 2411, 'anything': 1140, 'rubbish': 8523, 'walmart': 10780, 'remove': 8219, 'scuff': 8696, '-100': 46, 'stars': 9363, 'seem': 8745, 'skipping': 9036, 'line': 5933, 'noticeably': 6808, 'although': 1038, '6': 527, 'disk': 3236, 'changer': 2100, 'perhaps': 7294, 'lease': 5834, 'durable': 3456, '40': 440, 'lights': 5917, 'reassuring': 8007, 'led': 5844, 'gold': 4621, 'refuses': 8142, 'xd': 11111, 'erased': 3767, 'photos': 7351, 'irreplaceable': 5512, 'cheap': 2127, 'yes': 11141, 'junk': 5623, 'looking': 6024, 'keyboard': 5656, 'takes': 9775, 'minor': 6424, 'spill': 9273, 'destroyed': 3064, 'includes': 5244, 'cleaning': 2215, 'apart': 1149, 'dry': 3422, 'self': 8762, 'destructs': 3068, 'count': 2661, '10s': 173, 'screws': 8691, 'called': 1923, 'dell': 2994, 'nobody': 6762, 'retail': 8361, 'street': 9476, 'prices': 7635, 'competition': 2397, 'retirement': 8367, 'keyboards': 5657, 'anylonger': 1137, 'positive': 7529, 'upon': 10493, 'setting': 8825, 'dreaded': 3386, 'unplug': 10433, 'protect': 7753, 'screen': 8685, 'turn': 10259, 'moments': 6502, 'mode': 6477, 'short': 8910, 'wires': 10986, 'overheating': 7069, 'protects': 7759, 'stone': 9430, 'cold': 2309, 'speakers': 9238, 'plugged': 7462, 'options': 6996, 'unhook': 10396, 'repack': 8234, 'exactly': 3846, 'reship': 8311, 'enormous': 3719, 'hastle': 4831, 'receiver': 8034, 'authorized': 1339, 'center': 2062, 'happens': 4801, 'across': 797, 'town': 10094, 'monday': 6504, 'friday': 4408, '9': 647, '5pm': 523, 'convenient': 2589, 'already': 1026, 'needs': 6690, 'repairs': 8240, 'video': 10655, 'inputs': 5338, 'audio': 1326, 'doornail': 3324, 'start': 9364, 'broken': 1783, 'forever': 4332, 'load': 5977, 'comes': 2335, 'hdmi': 4855, "'re": 14, 'user': 10532, 'television': 9853, 'crappy': 2709, 'god': 4616, 'waste': 10825, 'charging': 2117, '2nd': 370, 'generation': 4544, 'shuffle': 8937, 'according': 770, 'derable': 3030, 'orange': 6997, 'green': 4682, 'flashing': 4225, 'death': 2915, 'contents': 2557, 'space': 9222, 'un': 10320, 'recoverable': 8095, 'ended': 3684, 'pitching': 7395, 'extensive': 3959, 'attempts': 1306, 'revive': 8411, 'apparently': 1161, 'likes': 5923, 'hush': 5097, 'suffered': 9583, 'blinking': 1625, 'salesman': 8586, 'figure': 4137, 'sign': 8958, 'appointment': 1177, 'genius': 4549, 'bar': 1438, 'engineering': 3703, 'whether': 10912, 'involve': 5482, 'understanding': 10364, 'things': 9933, 'appear': 1164, 'trendy': 10180, 'haircut': 4765, 'offered': 6905, 'discount': 3214, 'answer': 1114, 'question': 7861, 'retitled': 8368, 'idiot': 5135, 'extendable': 3954, 'arm': 1207, 'breaks': 1751, 'broke': 1781, 'waiting': 10758, 'consumer': 2542, 'usb': 10520, 'flash': 4222, 'i.e.': 5108, '512': 505, 'mb': 6259, 'mini': 6412, '256': 346, 'performance': 7288, 'wise': 10989, 'taking': 9776, 'long': 6015, 'copy': 2623, 'files': 4143, 'delete': 2981, 'doubt': 3340, 'micro': 6365, 'capacity': 1964, 'planning': 7420, 'gb': 4527, 'wasting': 10827, 'writer': 11082, 'brands': 1742, 'personal': 7315, '200': 309, 'dvd+r': 3472, 'philips': 7332, 'flaws': 4238, 'playback': 7434, 'flawless': 4235, 'overall': 7055, 'recorder': 8088, 'moderate': 6483, 'inconvenience': 5254, 'recorded': 8087, 'finalized': 4158, 'unexplained': 10382, 'reasons': 8005, 'irrelevant': 5511, 'waist': 10752, 'june': 5622, '17': 245, '2006': 316, 'specific': 9246, 'panasonic': 7158, 'dmr': 3289, 'e55': 3513, 'able': 719, 'record': 8084, 'watch': 10828, 'rams': 7928, 'es10s': 3779, 'recently': 8039, 'begun': 1520, 'noises': 6766, 'starting': 9366, 'shutting': 8945, 'occasionally': 6879, 'ejecting': 3600, 'today': 10033, 'happy': 4805, 'dying': 3493, 'especially': 3788, 'follow': 4301, 'strange': 9461, 'hear': 4878, 'actually': 817, 'write': 11081, '--': 25, 'post': 7536, 'results': 8357, 'update': 10480, 'november': 6817, 'letter': 5877, 'authorizing': 1340, 'repair': 8237, 'including': 5245, 'labor': 5732, 'places': 7409, 'hour': 5035, 'home': 4986, 'research': 8296, 'chose': 2168, 'brought': 1787, 'fixed': 4206, 'entire': 3732, 'mechanism': 6285, 'means': 6273, 'shop': 8904, 'july': 5615, 'beginning': 1516, 'hearing': 4880, 'fundamentally': 4452, 'efforts': 3587, 'model': 6478, 'difficulties': 3139, 'continues': 2564, 'fans': 4044, 'lasts': 5784, '90': 652, 'steadily': 9388, 'declines': 2937, 'ihome': 5155, 'songs': 9180, 'anymore': 1138, 'static': 9373, 'christmas': 2169, 'loved': 6056, 'spite': 9281, 'glaring': 4601, 'bright': 1765, 'light': 5910, 'lowest': 6066, 'blocked': 1630, 'sleep': 9050, 'awhile': 1379, 'register': 8151, 'ipods': 5496, 'existence': 3889, 'enjoy': 3713, 'thirty': 9943, 'song': 9179, 'disgrace': 3229, 'become': 1491, 'nothing': 6803, 'nuisance': 6833, 'pick': 7359, 'stations': 9379, 'alarm': 977, 'vaguely': 10574, 'annoying': 1104, 'beep': 1503, 'functions': 4450, 'disabled': 3180, 'almost': 1013, 'display': 3244, 'white': 10923, 'violet': 10677, 'visibility': 10686, 'clock': 2243, 'husband': 5096, 'sleeps': 9051, 'dark': 2866, 'fall': 4029, 'asleep': 1250, 'throw': 9968, 'sweater': 9692, 'towel': 10090, 'switched': 9705, 'features': 4096, 'satisfied': 8618, 'interface': 5417, 'intuitive': 5458, 'overriding': 7083, 'docking': 3297, 'port': 7511, 'reviewers': 8401, 'mentioned': 6315, 'constructed': 2535, 'walking': 10770, 'table': 9757, 'sits': 9010, 'recognize': 8064, 'reliably': 8186, 'justify': 5628, 'mistakenly': 6460, 'believed': 1531, 'hype': 5100, 'killed': 5677, 'emitting': 3647, 'stoppable(i.e': 9438, 'feature': 4094, 'shriek': 8936, 'smart': 9095, 'talented': 9778, 'idiotically': 5136, 'convince': 2604, 'ear': 3518, 'piercing': 7375, 'defeated': 2955, 'silenced': 8970, 'addition': 834, 'prevent': 7623, 'ask': 1245, 'stoppable': 9437, 'a.m.': 695, 'apc': 1152, 'deliterious': 2988, 'matter': 6242, 'let': 5875, 'honest': 4993, 'ai': 944, 'decides': 2931, 'cpenusa.com': 2689, 'delivery': 2993, 'pen': 7267, 'damaged': 2853, 'connector': 2502, 'connect': 2495, 'pc': 7247, 'main': 6142, 'office': 6909, 'sweden': 9696, 'e': 3497, 'mails': 6141, 'cpenusa': 2688, "great(i'll": 4677, "'em": 11, 'screwed': 8689, 'interested': 5413, 'electronic': 3610, 'equipments': 3758, 'ahead': 941, 'trust': 10224, 'respect': 8326, 'sales': 8585, 'charged': 2113, 'sooo': 9189, 'frustrated': 4424, 'mouse': 6556, 'owned': 7095, 'loses': 6039, 'sproadically': 9314, 'sometimes': 9174, 'changed': 2099, 'tempremental': 9866, 'shopping': 8907, 'word': 11034, 'experience': 3918, 'prepared': 7600, 'replace': 8249, 'sounds': 9212, 'gets': 4565, 'life': 5902, 'dock': 3295, 'major': 6150, 'flaw': 4233, 'structural': 9503, 'aside': 1241, 'electronics': 3611, 'bit': 1591, 'deteriorated': 3081, 'volume': 10719, 'fluctuated': 4274, 'cuts': 2822, 'added': 831, 'kind': 5679, 'bumping': 1835, 'stress': 9483, 'simply': 8987, 'performs': 7293, 'remote': 8213, 'connected': 2497, 'hd': 4844, 'assigning': 1259, 'positions': 7528, 'various': 10593, 'tv': 10268, 'routinely': 8509, 'activated': 805, 'logistics': 6007, 'harmony': 4820, 'perfectly': 7284, 'remotely': 8214, 'satellite': 8613, 'certain': 2072, 'replay': 8256, '10min': 172, 'pics': 7367, 'canon': 1955, 'pro1': 7662, '250': 341, 'initially': 5322, 'cycles': 2836, 'suppose': 9636, 'weekend': 10872, 'rear': 8000, 'pleasy': 7451, 'thank': 9904, 'epiphane': 3744, 'flaviu': 4232, '4x': 480, 'slowing': 9085, '2x': 371, 'dru500a': 3416, 'compatibility': 2386, 'list': 5950, 'lesson': 5872, 'learned': 5832, 'lite': 5963, 'dvdrw': 3478, 'sohw-1673s': 9147, 'revision': 8409, 'js02': 5607, 'fast': 4062, 'g4': 4488, 'mac': 6107, 'os': 7018, 'x': 11101, 'tiger': 9990, 'toast': 10028, 'titanium': 10020, 'nominally': 6771, '16x': 243, 'capable': 1962, '6x': 567, 'setup': 8831, 'slow': 9081, 'ata': 1285, '33': 398, '8x': 645, '+': 19, '-r': 66, 'bother': 1711, 'verifying': 10630, 'maxell': 6249, 'verify': 10629, 'ignorable': 5147, 'gotten': 4637, '20': 302, 'failures': 4023, 'aborted': 722, 'blank': 1603, 'band': 1430, 'referring': 8123, 'manufacturer': 6184, 'id': 5124, 'mag': 6126, 'am3': 1045, 'videohelp.com': 10659, 'sold': 9150, 'names': 6645, 'mixed': 6464, 'imho': 5177, 'btw': 1800, 'players': 7439, 'format': 4340, 'demo': 3006, 'outdated': 7031, 'opperate': 6981, 'stated': 9370, 'included': 5243, 'mailed': 6139, 'tiger.com': 9991, 'reply': 8261, 'sell': 8764, 'false': 4034, 'advertisement': 888, 'intended': 5396, 'functional': 4446, 'pm': 7468, 'series': 8807, 'stereo': 9408, 'browse': 1789, 'drunk': 3421, 'night': 6750, 'exception': 3860, 'slight': 9062, 'advantage': 881, 'respects': 8328, 'inferior': 5301, 'ergonomics': 3773, 'appearance': 1165, 'fm': 4282, 'reception': 8041, 'laughably': 5795, 'hiss': 4955, 'abounds': 723, 'local': 5982, 'heard': 4879, 'unreachable': 10442, 'stuck': 9509, 'honored': 4997, 'habit': 4757, 'proprietary': 7747, 'connectors': 2503, 'market': 6212, 'antenna': 1121, 'weird': 10885, 'noticed': 6809, 'damned': 2857, 'grrr': 4713, 'proceeds': 7678, 'replacements': 8253, 'quit': 7878, 'infrequent': 5315, 'outages': 7030, 'g5': 4489, 'hungry': 5087, '23': 332, 'inch': 5236, 'lcd': 5816, 'comment': 2348, 'belkin': 1534, 'seen': 8749, 'competing': 2396, 'web': 10860, 'stores': 9446, 'dealers': 2908, 'selling': 8768, 'refurbished': 8138, 'reflection': 8129, 'popularity': 7506, 'reliability': 8184, 'decide': 2929, 'precious': 7582, 'becomes': 1492, 'fear': 4088, 'loss': 6041, 'blackout': 1598, 'switch': 9704, 'surge': 9657, 'suppressors': 9642, 'potential': 7546, 'storms': 9450, 'users': 10534, 'flexibility': 4246, 'essential': 3792, 'insurance': 5382, 'puchased': 7793, 'identical': 5130, 'operational': 6974, 'accept': 741, 'alarms': 978, 'vary': 10594, 'depending': 3021, 'vendor': 10616, 'factors': 4013, 'begrudge': 1519, 'wear': 10855, 'tear': 9828, 'branded': 1740, 'explain': 3933, 'recurrent': 8101, 'frustated': 4423, 'hidden': 4927, 'costs': 2656, 'silicon': 8972, 'construction': 2536, 'feels': 4108, 'grippy': 4699, 'sticky': 9419, 'mean': 6270, 'instance': 5364, 'opening': 6965, 'requiring': 8291, 'push': 7826, 'cover': 2678, 'around': 1214, 'flip': 4257, 'edge': 3563, 'headphone': 4865, 'jack': 5550, 'somewhat': 9175, 'difficult': 3138, 'headphones': 4866, 'seated': 8724, 'pop': 7501, 'armband': 1208, 'satisfactory': 8616, 'standard': 9351, 'frills': 4414, 'velcro': 10614, 'tempted': 9867, 'rated': 7943, '2000': 310, 'mah': 6137, 'run': 8538, 'juice': 5612, 'shot': 8920, 'frames': 4375, '1600': 236, 'contrast': 2577, 'shots': 8921, 'mp3': 6571, 'supply': 9630, 'hr': 5054, 'peak': 7261, 'current': 2799, 'flashlight': 4226, 'dimly': 3157, 'yeah': 11137, 'panasonics': 7159, 'lenmars': 5862, 'duration': 3459, 'charger': 2114, 'plan': 7414, 'complain': 2401, 'affairs': 900, 'department': 3016, 'regarding': 8147, 'action': 801, 'taken': 9774, 'shady': 8849, 'offs': 6916, 'tip': 10015, 'nowadays': 6821, 'nimh': 6755, 'sanyo': 8610, 'lenmar': 5861, 'handed': 4776, 'non': 6772, 'spring': 9313, 'leaf': 5823, 'contacts': 2549, 'managed': 6167, 'bent': 1549, 'path': 7224, 'seeing': 8742, 'slot': 9078, 'impossible': 5206, 'tool': 10053, 'side': 8950, 'types': 10292, 'gps': 4639, 'us': 10514, 'map': 6190, 'canada': 1938, 'twain': 10272, 'meet': 6292, 'car': 1970, 'eastern': 3545, 'swap': 9686, 'faraway': 4053, 'tomtom': 10044, 'nearby': 6670, 'canadian': 1939, 'contiguous': 2559, 'border': 1699, 'cross': 2751, 'trips': 10204, 'oh': 6920, 'provide': 7767, 'changing': 2103, 'later': 5790, 'maps': 6197, 'dated': 2876, 'iffy': 5144, 'terrific': 9885, 'pda': 7256, 'stylus': 9535, 'sitting': 9011, 'trip': 10199, 'amazing': 1048, '600': 536, 'mile': 6393, 'waypoints': 10848, 'roads': 8470, 'force': 4322, 'routes': 8508, 'choices': 2162, 'database': 2872, 'route': 8505, 'road': 8467, 'waypoint': 10847, 'tell': 9854, 'circles': 2184, 'indications': 5284, 'garmin': 4519, 'i2': 5109, 'se': 8704, 'fl': 4209, 'usa': 10516, 'sc': 8641, 'c330': 1886, 'destination': 3061, 'manufactures': 6186, 'helps': 4911, 'inav': 5230, 'iguidance': 5154, 'mapopolis': 6191, 'navigon': 6665, 'navigator': 6664, 'blue': 1643, 'logger': 6001, 'atlas': 1290, '.out': 97, '2.1.1': 295, '.blue': 92, 'v': 10549, 'impractical': 5208, 'bcuz': 1470, 'onoff': 6952, 'mone': 6505, 'hub': 5065, 'powered': 7559, 'forget': 4333, 'unpowered': 10437, '1.1': 122, '2.0': 292, 'compliant': 2418, 'clunky': 2269, 'comke': 2345, 'adapte': 823, 'older': 6930, 'pci': 7251, 'adapter': 824, 'realized': 7992, 'ports': 7523, 'convenience': 2588, 'located': 5985, 'backplane': 1410, 'floor': 4262, 'shopped': 8905, 'looked': 6021, 'appropriate': 1184, 'cord': 2625, 'solved': 9162, 'getting': 4566, 'extension': 3958, 'besides': 1552, 'solving': 9164, 'immediate': 5180, 'approach': 1182, 'option': 6994, 'moving': 6568, 'laptop': 5769, 'purpose': 7821, 'supposed': 9637, 'compact': 2363, 'reader': 7977, 'inkjet': 5328, 'drivers': 3400, 'installed': 5359, 'correctly': 2640, '98': 667, 'available': 1356, 'disappearing': 3187, 'cables': 1901, 'bring': 1771, 'eventually': 3824, 'deduced': 2943, 'wiring': 10987, 'inside': 5348, 'draw': 3378, 'ac': 738, 'adapters': 826, 'combination': 2328, 'sooner': 9188, 'possible': 7534, 'improved': 5215, 'messing': 6338, 'suspect': 9677, 'discontinued': 3213, 'necessary': 6679, 'somebody': 9166, 'listing': 5960, 'suggests': 9596, 'soundsticks': 9214, 'along': 1016, 'airport': 960, 'thinking': 9935, 'connecting': 2498, 'says': 8636, 'faqs': 4051, 'install': 5357, 'smooth': 9110, 'w2k': 10742, 'inspiron': 5354, 'notebook': 6797, '24': 334, 'nowhere': 6822, 'sending': 8775, 'd': 2841, 'link': 5939, 'website': 10863, 'talking': 9783, 'staff': 9341, 'appears': 1168, 'countless': 2667, 'versions': 10639, 'driver': 3399, 'download': 3343, 'automatic': 1345, 'match': 6233, 'screens': 8686, 'sp': 9220, 'questions': 7863, 'reboot': 8012, 'talk': 9779, 'senior': 8777, 'etc': 3805, 'easier': 3541, 'clearly': 2222, 'knows': 5707, 'speaks': 9241, 'intelligble': 5392, 'english': 3706, 'resort': 8323, 'calling': 1926, 'technical': 9834, 'speaking': 9240, 'alone': 1015, 'cnet': 2276, 'site': 9007, 'dwl': 3487, 'g650': 4493, 'reports': 8267, 'operating': 6972, 'believe': 1530, 'font': 4306, 'message': 6332, 'boxes': 1726, 'news': 6734, 'utterly': 10548, 'well-': 10890, 'reduce': 8110, 'clutter': 2271, 'desk': 3053, 'hooking': 5001, 'powermac': 7565, 'hooked': 5000, 'happened': 4799, 'targus': 9807, 'adaptor': 827, 'come': 2334, 'info': 5308, 'volt': 10715, '2.1': 294, 'amp': 1070, 'shacks': 8846, 'online-': 6951, 'carry': 1998, '181': 251, 'decided': 2930, 'ran': 7929, 'lasted': 5780, 'hung': 5086, 'boot': 1695, 'prompt': 7730, 'rma': 8465, 'replaced': 8251, 'm230': 6101, 'c150': 1885, 'arrives': 1222, 'intend': 5395, 'runs': 8544, 'rave': 7957, 'unless': 10415, 'lifetime': 5907, 'suggest': 9591, 'exercise': 3881, 'thier': 9928, 'rights': 8439, 'unsuccessful': 10457, 'attachment': 1300, 'advance': 877, 'cam': 1928, 'las': 5776, 'vegas': 10607, 'error': 3776, 'formatted': 4343, 'recording': 8090, 'appeared': 1166, 'bare': 1441, 'spot': 9305, 'outer': 7034, 'expected': 3907, 'purports': 7820, 'spindle': 9275, 'stick': 9414, 'sometime': 9173, 'understand': 10362, 'problematic': 7669, 'insane': 5341, 'single': 8994, 'messes': 6337, 'scared': 8656, 'related': 8175, 'notch': 6794, 'items': 5540, 'consumers': 2543, 'fooled': 4312, 'frisbee': 4415, 'find': 4163, 'careful': 1981, 'larger': 5773, 'labels': 5731, 'apply': 1176, 'awful': 1377, 'direct': 3167, 'macintosh': 6116, 'templates': 9863, 'print': 7644, 'style': 9530, 'awfully': 1378, 'template': 9862, 'appleworks': 1170, 'powerpoint': 7566, 'misrepresent': 6450, 'macs': 6120, 'feel': 4106, 'cheated': 2136, 'lied': 5898, 'serveral': 8814, 'shown': 8933, 'rebel': 8011, 'viking': 10674, 'fortunately': 4351, 'occuring': 6889, 'mega': 6297, 'pixel': 7400, 'sec': 8727, 'a40': 697, 'impressed': 5209, 'note': 6796, 'click': 2227, 'wheel': 10905, 'photo': 7346, '60': 533, 'vacation': 10571, 'ordering': 7002, '60gb': 542, 'separately': 8796, 'grr': 4712, 'heres': 4913, 'spindles': 9276, 'imac': 5171, 'w/': 10737, 'intel': 5391, 'chip': 2157, 'hardly': 4811, 'kicker': 5670, 'freind': 4398, 'overseas': 7085, 'idea': 5127, 'deal': 2905, 'ideas': 5129, 'mail': 6138, 'rebate': 8009, 'upc': 10475, 'stating': 9375, 'resubmit': 8353, 'hoax': 4971, 'perpetrated': 7308, 'companies': 2368, 'sets': 8824, 'earphones': 3530, 'flight': 4253, 'ears': 3535, 'sore': 9194, 'adjust': 850, 'coming': 2344, 'foam': 4284, 'difference': 3130, 'felt': 4114, 'definition': 2968, 'terrible': 9883, 'frustrating': 4425, 'unlucky': 10420, 'chance': 2095, 'somewhere': 9176, '-4': 48, 'opinio': 6976, 'upconverter': 10478, 'hdtv': 4856, 'co.': 2279, 'provider': 7770, 'trees': 10174, 'expecting': 3908, 'magically': 6133, 'signals': 8961, '550': 515, 'noticable': 6804, 'turned': 10261, 'wife': 10941, 'okay': 6928, 'ready': 7984, 'quot;it': 7887, 'on!!"': 6941, 'reaction': 7974, 'image': 5172, 'certianly': 2074, 'noticably': 6805, 'instances': 5365, 'insisting': 5352, 'preferred': 7594, 'directly': 3172, 'thru': 9972, 'improve': 5214, 'close': 2251, '---': 26, 'rapid': 7938, 'chargers': 2115, 'shelf': 8874, 'hoping': 5013, '---they': 39, 'decision': 2933, 'behind': 1524, 'prior': 7653, 'loaded': 5978, 'sealed': 8708, 'target.com': 9806, 'mfg': 6356, 'contains': 2552, 'viruses': 10683, 'quicktime': 7870, 'hip': 4952, 'target': 9805, 'notified': 6811, 'corupt': 2646, 'gone': 4623, 'useful': 10527, 'drawing': 3382, 'tablet': 9759, 'paint': 7142, 'pro': 7660, 'access': 748, 'norton': 6790, 'caught': 2033, 'excited': 3871, 'arg': 1202, 'pass': 7205, 'expensive': 3916, 'assign': 1257, 'experienced': 3919, 'doa': 3293, 'pressed': 7614, 'clean': 2210, 'motor': 6544, 'popped': 7502, 'cleaned': 2212, 'glued': 4611, 'mutilating': 6618, 'voiding': 10710, 'properly': 7742, 'carousel': 1987, 'rotation': 8499, 'trapped': 10150, 'refuse': 8140, 'altogether': 1040, 'directed': 3168, 'function': 4445, 'carefully': 1983, 'repaired': 8238, 'malfunctioning': 6161, 'circumstances': 2189, 'loading': 5979, 'unplugging': 10435, 'plugging': 7463, 'corrected': 2637, 'toss': 10066, 'heck': 4894, 'dirty': 3177, 'unplugged': 10434, 'removed': 8221, 'holding': 4978, 'sides': 8953, 'catches': 2026, 'lift': 5908, 'expertise': 3927, 'knowledge': 5704, 'eyeroll': 3978, 'nudged': 6831, 'lense': 5866, 'slides': 9059, 'slid': 9055, 'elation': 3603, 'dumb': 3446, 'satisfaction': 8615, 'calculated': 1913, 'lol': 6014, 'hopefully': 5008, 'downrating': 3349, 'solely': 9154, 'viewing': 10670, 'hi': 4925, 'cyberhome': 2833, 'april': 1190, 'region': 8149, 'code': 2296, 'automatically': 1346, 'change': 2098, 'choose': 2163, 'settings': 8826, 'yo': 11145, 'fiddling': 4129, 'replugging': 8260, 'repeatedly': 8244, 'lighter': 5912, 'socket': 9137, 'restarted': 8344, 'blew': 1621, 'fuses': 4462, 'sockets': 9138, 'mechanic': 6281, 'avail': 1353, 'refunded': 8136, 'toshiba': 10064, 'a60': 701, 'cycled': 2835, 'watt': 10837, 'lamp': 5750, 'heat': 4887, 'spec': 9242, 'sheet': 8870, '400': 443, 'watts': 10839, 'min': 6406, '140': 216, 'continuous': 2565, '2a': 363, 'input': 5337, '240': 337, 'vac': 10570, 'drew': 3390, 'agree': 937, '230': 333, 'inverter': 5471, 'demand': 2999, 'manages': 6170, 'draws': 3385, 'amps': 1077, 'continuously': 2566, 'talked': 9781, 'linksys': 5944, 'notice': 6806, 'operation': 6973, 'cleaner': 2213, 'music': 6610, 'cassette': 2017, 'deck': 2934, 'ejected': 3599, 'coby': 2292, 'unresponsive': 10449, 'luckily': 6081, 'bet': 1555, 'returns': 8382, 'distortion': 3266, 'interference': 5419, 'transmitter': 10143, 'frequencies': 4400, 'sf': 8842, 'bay': 1468, 'area': 1200, 'farther': 4057, 'order': 7000, 'postage': 7537, 'spending': 9268, 'originally': 7013, 'replugged': 8259, 'overused': 7091, 'mines': 6410, 'requires': 8290, 'switching': 9707, 'via': 10649, 'explicitly': 3939, 'specifications': 9249, 'misleading': 6445, 'buyer': 1868, 'seeking': 8744, 'x2': 11103, 'roughly': 8501, '14': 212, 'sports': 9304, 'event': 3820, 'ncaa': 6667, 'nfl': 6737, 'finals': 4161, '1200': 194, 'hrs': 5055, '799': 610, 'extended': 3955, 'super': 9612, 'powershot': 7568, 'a510': 700, 'transfers': 10130, 'sudden': 9578, 'converter': 2599, 'transfer': 10124, 'joke': 5597, 'unreliable': 10448, 'dvdrs': 3477, 'imation': 5176, 'ensure': 3722, 'nano': 6646, 'picked': 7360, 'burnt': 1848, 'toasted': 10029, 'liked': 5921, 'travel': 10153, 'leave': 5839, '~$20': 11190, 'network': 6716, 'trendnet': 10179, 'signal': 8959, 'meter': 6345, 'generally': 4540, '~95': 11194, 'strength': 9480, 'cycling': 2837, 'regain': 8145, 'stable': 9338, 'flawlessly': 4236, 'packaging': 7121, 'title': 10021, 'stuff': 9515, 'eveything': 3836, 'involving': 5485, 'networking': 6718, 'linksis': 5943, 'recover': 8094, 'gigs': 4581, 'hardrive': 4812, 'spend': 9267, 'dedicated': 2942, 'storage': 9443, 'supplies': 9629, 'cordless': 2628, 'headsets': 4872, 'employees': 3653, 'alot': 1019, 'voice': 10703, 'stops': 9441, 'longest': 6017, 'lived': 5971, 'lt': 6071, 'colleagues': 2312, 'complained': 2402, 'happening': 4800, 'experiences': 3920, 'plantronics': 7422, 'cartoonist': 2004, 'color': 2318, 'clients': 2234, 'staples': 9357, '2500': 343, 'toner': 10048, 'cartridges': 2007, 'leaking': 5827, 'rapidly': 7939, 'dimished': 3156, 'reluctant': 8193, 'hp': 5045, 'knowing': 5703, 'markedly': 6209, 'perform': 7287, '1/2': 138, 'giant': 4569, 'magenta': 6130, 'spew': 9271, 'everywhere': 3835, 'cyan': 2831, 'streak': 9471, 'feed': 4101, 'answers': 1118, 'deny': 3015, 'issues': 5533, 'lackluster': 5740, 'calls': 1927, 'accomplished': 768, 'doorstop': 3326, 'paperweight': 7175, 'considering': 2518, 'stamped': 9348, 'obviously': 6874, 'design': 3043, 'leakage': 5825, 'powder': 7554, 'ruins': 8532, 'printed': 7646, 'greyish': 4687, 'dirt': 3176, 'wash': 10818, 'bigger': 1570, 'furious': 4457, 'pleasure': 7450, 'domestic': 3312, 'international': 5427, 'pocket': 7471, 'annual': 1106, 'aka': 970, 'tour': 10084, 'practically': 7572, 'sale': 8584, 'buggy': 1818, 'touchy': 10079, 'compatible': 2389, 'dsl': 3427, 'modems': 6482, 'houses': 5040, 'ethernet': 3807, '70': 572, 'hotels': 5031, 'hot': 5028, 'cools': 2615, 'excellent-': 3857, 'homes': 4989, 'alabama': 976, 'bangkok': 1436, 'netgear': 6713, 'hassle': 4828, 'wi': 10931, 'fi': 4125, 'desktop': 3056, 'wgr101': 10898, 'encrypted': 3679, 'laptops': 5770, 'wired': 10983, 'hotel': 5030, 'encryption': 3680, 'severe': 8836, 'trying': 10234, 'wep': 10892, 'multi': 6598, 'ability': 716, 'seemingly': 8747, 'random': 7930, 'intervals': 5441, 'restablish': 8342, 'unencrypted': 10373, 'sangean': 8606, 'dt200v': 3431, '2.5': 299, 'padded': 7128, 'briefcase': 1764, 'significant': 8965, 'shocks': 8897, 'temperature': 9859, 'extremes': 3974, 'occasions': 6881, 'faint': 4024, 'noise': 6765, 'speaker': 9236, 'earphone': 3529, 'volumn': 10721, 'significantly': 8966, 'affected': 902, 'corrosion': 2642, 'wary': 10815, 'sensitive': 8787, 'tiny': 10014, 'waft': 10750, 'air': 950, 'kidding': 5673, 'whim': 10915, 'shortly': 8917, 'became': 1490, 'maddening': 6122, 'mailing': 6140, 'fro': 4417, '-(oh': 24, 'have!)-': 4840, 'physically': 7356, 'shave': 8868, 'underside': 10361, 'touched': 10075, 'conversely': 2595, 'move': 6561, 'guts': 4741, 'thankfully': 9906, 'shorting': 8916, 'scanned': 8648, 'fuzz': 4470, 'station': 9376, 'intelligent': 5393, 'crackle': 2695, 'existed': 3888, 'anywhere': 1146, 'planet': 7418, 'zero': 11169, 'turning': 10262, 'supplied': 9628, 'seemed': 8746, 'trial': 10184, 'act': 798, 'joggled': 5593, 'shorted': 8914, 'pair': 7147, 'cancelling': 1950, 'position': 7525, 'recommended': 8078, 'shorts': 8918, 'prevented': 7624, 'removing': 8223, 'presets': 7612, 'clears': 2223, 'weirdly': 10886, 're': 7968, 'messed': 6335, 'correct': 2636, 'screwdriver': 8688, 'pushing': 7828, 'board': 1653, 'direction': 3169, 'scooting': 8673, 'minimal': 6416, 'movement': 6563, 'prayer': 7577, 'repeat': 8242, 'process': 7679, 'fixing': 4208, 'wall': 10774, '_': 688, 'receipt': 8029, 'voids': 10711, 'split': 9286, 'grudgingly': 4714, 'exclusively': 3875, 'listen': 5954, 'pulls': 7801, 'nicely': 6745, 'amount': 1066, 'fault': 4074, 'low-': 6060, 'indoors': 5292, 'saturated': 8625, 'cubby': 2783, 'environment': 3739, 'window': 10962, 'strong': 9498, 'environs': 3741, 'electrical': 3607, 'field': 4132, 'musical': 6611, 'criticism': 2748, 'canniness': 1953, 'lacking': 5739, 'fullness': 4441, 'midrange': 6382, 'warmth': 10798, 'bass': 1456, 'signature': 8962, 'boost': 1694, 'helped': 4907, 'clarity': 2202, 'ignore': 5150, 'lesser': 5871, 'aspects': 1253, 'higher': 4932, 'importance': 5200, 'fealt': 4087, 'palm': 7151, 'rest': 8341, 'base': 1446, 'hump': 5082, 'palms': 7154, 'puts': 7830, 'hands': 4784, 'uncomfortable': 10347, 'angle': 1089, 'slick': 9054, 'compatability': 2384, 'bothered': 1712, 'respond': 8329, 'slide': 9056, 'add': 830, 'value': 10582, 'adjustments': 856, 'aa': 704, 'reformatted': 8132, 'speed': 9259, 'minolta': 6423, 'xg': 11112, 'faster': 4063, 'cripples': 2740, 'fourteen': 4362, 'dishonest': 3235, 'slowest': 9084, 'curse': 2802, 'formatting': 4344, 'transferred': 10128, 'o': 6851, 'ses': 8819, 'detailed': 3071, 'gaming': 4512, 'ips': 5498, 'engineer': 3701, 'dual': 3434, 'ip': 5489, 'segment': 8752, ']': 687, 'bridging': 1762, 'appliances': 1171, 'ms': 6580, 'dhcp': 3102, 'handshake': 4787, 'xbox': 11108, '48': 467, '54': 511, 'mbps': 6260, 'reproduced': 8272, 'booting': 1697, 'kinds': 5681, 'games': 4511, 'xbmc': 11107, 'leaving': 5841, 'spotty': 9309, 'details': 3072, 'show': 8928, 'swift': 9698, 'cycle': 2834, 'solves': 9163, 'nic': 6741, 'buffer': 1814, 'filled': 4147, 'buffers': 1815, 'figured': 4138, 'select': 8755, 'g': 4480, 'tired': 10018, 'f.': 3985, 'detected': 3074, 'configuring': 2478, 'disconnected': 3209, 'call': 1922, 'woman': 11019, 'india': 5278, 'headset': 4871, 'ton': 10045, 'accent': 740, 'session': 8820, 'chat': 2123, 'unknown': 10414, 'lady': 5744, 'mixing': 6465, 'discounted': 3215, 'gigabeat': 4575, 'f40': 3991, '150': 228, 'bargain': 1443, 'gig': 4574, 'regret': 8155, 'failing': 4020, 'pointed': 7481, 'tracks': 10105, 'application': 1172, 'starts': 9367, 'till': 9998, 'displayed': 3245, 'directory': 3174, 'hangs': 4794, 'library': 5893, 'hanging': 4793, 'restart': 8343, 'wait': 10756, 'resume': 8358, 'sync': 9721, 'present': 7604, 'microsoft': 6371, 'synchronize': 9724, '35': 406, '18': 249, 'encrypt': 3678, '8100': 631, 'consuming': 2544, 'messages': 6333, 'quitted': 7880, 'obvious': 6873, 'fragility': 4371, '1986': 277, 'unreasonable': 10445, 'estimation': 3802, 'greater': 4678, 'maintenance': 6149, 'provided': 7769, 'explorer': 3943, 'bump': 1834, 'casette': 2013, 'kit': 5686, 'primary': 7641, 'loosly': 6035, 'cheaply': 2133, 'annoy': 1100, 'co': 2278, 'workers': 11044, 'siemens': 8955, '8825': 642, 'motorola': 6549, '7081': 579, 'rich': 8422, 'handset': 4785, 'lit': 5962, 'displays': 3247, 'prompts': 7734, 'accessing': 752, 'reasonable': 8003, 'fairly': 4026, 'sort': 9198, 'phonebook': 7338, 'alphabetically': 1024, 'shared': 8860, 'handsets': 4786, 'maximum': 6251, 'barely': 1442, 'speakerphone': 9237, 'distorted': 3265, 'fuzzy': 4472, 'hears': 4882, 'adequate': 844, 'search': 8715, 'sorted': 9199, 'name': 6642, 'z': 11157, 'scroll': 8693, 'outgoing': 7035, 'level': 5881, 'indicator': 5286, 'cradle': 2698, 'indication': 5283, 'showstopper': 8935, 'echo': 3557, 'earpiece': 3531, 'distracting': 3269, 'disconcerting': 3206, 'mount': 6550, 'bracket': 1734, 'straight': 9454, 'nose': 6791, 'location': 5987, 'mounts': 6555, 'strikes': 9492, 'unexcusable': 10377, 'oversight': 7086, 'microphone': 6368, 'front': 4418, 'listening': 5959, 'highest': 4933, 'rca': 7966, 'creative': 2726, 'moron': 6530, 'watches': 10830, 'itunes': 5544, 'm$': 6094, 'wma': 11008, 'elsewhere': 3627, 'conversion': 2596, 'ripped': 8453, '64kbps': 549, 'protected': 7754, 'converted': 2598, 'discovering': 3221, 'convert': 2597, 'licking': 5894, 'google': 4631, 'hate': 4833, 'grab': 4641, '99': 671, 'kill': 5676, 'upcoming': 10476, 'espect': 3790, 'completly': 2414, 'silent': 8971, 'obviusly': 6875, 'intention': 5402, 'conjunction': 2493, 'recent': 8038, 'ride': 8428, 'incredibly': 5264, 'folder': 4294, 'exclamation': 3872, 'restore': 8348, 'samsung': 8597, 'connections': 2500, 'disapointed': 3184, 'dvi': 3480, 'newer': 6729, 'humax': 5078, 'tuner': 10250, 'charm': 2118, 'sir': 9000, 't451': 9735, 'thoughts': 9951, 'factor': 4011, 'declined': 2936, 'mainstream': 6146, '3rd': 429, 'duracell': 3457, 'batch': 1459, 'mr.': 6579, 'loftin': 5997, 'silver': 8975, 'black': 1595, 'ka': 5635, 'intelligible': 5394, 'warning': 10801, 'anyways': 1145, 'menu': 6317, 's': 8555, 'listened': 5956, 'noooo': 6782, 'city': 2193, 'metropolitan': 6352, 'driving': 3402, 'span': 9229, 'channels': 2105, 'kudos': 5718, 'tunebase': 10243, 'highly': 4937, 'massage': 6227, 'voip': 10713, 'voicepulse': 10706, 'numbers': 6838, 'ringing': 8444, 'indicating': 5282, 'incoming': 5248, 'ring': 8442, 'reset': 8308, 'defaults': 2954, 'erasing': 3770, 'at&t': 1281, 'workaround': 11040, 'callers': 1925, 'mic': 6361, 'mouth': 6559, 'adjustment': 855, 'affect': 901, 'picks': 7363, 'caller': 1924, 'resend': 8303, 'unusable': 10465, 'described': 3032, 'c550': 1890, 'transparent': 10146, 'powerful': 7561, 'untrue': 10464, 'stabilized': 9337, 'levels': 5883, 'antiroll': 1128, 'crossbars': 2752, 'vague': 10573, 'covers': 2683, 'equalization': 3753, 'deliver': 2989, 'frequency': 4401, '18hz': 254, '20khz': 325, 'aiwa': 967, 'buds': 1812, 'japan': 5561, 'walkman': 10771, '1990': 281, 'compare': 2375, 'mx400': 6628, 'reputable': 8278, 'marketplace': 6215, 'retracts': 8374, 'lines': 5937, 'automated': 1344, 'disconects': 3207, 'telling': 9855, 'pny': 7470, 'mad': 6121, 'samething': 8592, 'helper': 4908, 'determined': 3085, 'apearently': 1153, 'ink': 5326, 'cartidges': 2002, 'troubles': 10211, 'dish': 3233, 'networks': 6719, 'technology': 9841, 'dvr': 3484, 'rooms': 8496, 'menus': 6318, 'pricing': 7638, 'dispute': 3251, 'net': 6709, 'hassel': 4827, 'cancel': 1942, 'missing': 6454, 'ohio': 6922, 'michigan': 6364, 'tbd': 9818, 'consistently': 2525, 'murphy': 6605, 'law': 5801, 'prompting': 7732, 'j.clark': 5548, 'san': 8599, 'jose': 5599, 'emails': 3633, 'meets': 6295, 'expectations': 3906, 'began': 1511, 'followed': 4302, 'covering': 2681, 'excessively': 3867, 'smell': 9105, 'left': 5848, '#': 5, 'manufactured': 6183, 'trusted': 10225, 'manufacture': 6182, 'flawed': 4234, 'place': 7406, 'competitors': 2400, 'rangemax': 7933, 'recognized': 8065, 'rep': 8233, 'suprize': 9648, 'inquiry': 5339, 'resolved': 8321, 'explore': 3942, 'shoot': 8900, 'smoothly': 9114, 'contrary': 2576, 'programmable': 7708, 'predefined': 7587, 'paste': 7220, 'neither': 6702, 'irritation': 5517, 'popup': 7507, 'weak': 10852, 'officedepot': 6910, 'locate': 5984, 'wants': 10788, 'gamer': 4509, 'monitor': 6510, 'veiwing': 10613, 'scale': 8642, '=': 682, 'ghosting': 4567, 'operations': 6975, 'lack': 5737, 'brightness': 1767, 'gamers': 4510, 'saw': 8633, 'controller': 2584, 'forward': 4355, 'hiding': 4929, 'dash': 2868, 'sight': 8957, 'boy': 1730, 'adpater': 873, 'artists': 1233, 'albums': 983, 'hell': 4902, 'alpine': 1025, 'scrolling': 8694, '3000': 384, 'reached': 7970, 'reciever': 8055, 'defeats': 2956, 'controls': 2587, 'flat': 4228, 'uselss': 10531, 'artsts': 1234, 'thinks': 9937, 'showing': 8932, 'damn': 2856, 'sense': 8782, 'bunch': 1837, 'practicalness': 7573, 'cares': 1984, '9847': 669, 'hijacks': 4942, 'intuitve': 5460, 'locked': 5990, 'catalog': 2024, 'artist': 1232, 'album': 982, 'imports': 5205, 'slowly': 9086, 'knob': 5697, 'circling': 2185, 'eqauls': 3751, 'spots': 9307, 'unlike': 10416, 'circle': 2183, 'equals': 3756, 'dozens': 3358, 'spin': 9274, '........': 80, 'cumbersome': 2791, 'deactivate': 2899, 'cheaper': 2129, 'form': 4338, 'jacks': 5552, 'infinitely': 5303, 'buzz': 1873, 'muffled': 6595, 'background': 1398, 'electical': 3605, 'outlet': 7036, 'jeep': 5568, 'liberty': 5892, 'ridiculously': 8434, 'percent': 7279, 'tape': 9799, 'pt-1750': 7786, 'scissors': 8670, 'eliminate': 3620, 'instruction': 5374, 'states': 9372, 'brother': 1786, 'invalidate': 5465, 'tactic': 9765, 'increase': 5258, 'additional': 835, 'dollars': 3310, 'printing': 7649, 'empty': 3655, 'freebie': 4386, '1.15': 125, 'cartridge': 2006, 'fully': 4442, 'consumed': 2541, 'sheets': 8871, 'text': 9895, '17.99': 246, '14.99': 215, 'calculate': 1912, 'outrageous': 7045, 'obscene': 6861, 'hp720c': 5050, 'pavilion': 7236, 'among': 1065, 'vowed': 10728, 'future': 4468, 'pixima': 7403, 'hog': 4975, 'fidelity': 4131, 'fair': 4025, 'incident': 5239, 'operate': 6969, 'overbearing': 7058, 'daytime': 2886, 'prints': 7651, 'jobs': 5587, 'spoke': 9293, '1.5': 132, 'researching': 8298, 'mission': 6455, 'share': 8859, 'etrex': 3809, 'vista': 10694, 'cx': 2827, 'replaces': 8254, 'attachement': 1297, 'lugs': 6086, 'microsd': 6370, '010': 109, '10361': 163, '00': 108, 'anoying': 1112, 'vtech': 10733, 'phones': 7341, 'begining': 1514, 'noted': 6799, 'rechargeable': 8047, 'baterries': 1460, 'conversations': 2594, 'standing': 9353, 'head': 4858, '45': 459, 'daily': 2849, 'ritual': 8456, 'legibible': 5854, 'conversation': 2593, 'shipped': 8890, 'opposite': 6985, 'telephone': 9851, 'speak': 9235, 'attempted': 1304, 'voicemail': 10704, 'amplified': 1074, 'loud': 6047, 'shouted': 8926, 'severely': 8837, 'suppressed': 9640, 'audible': 1322, 'usable': 10518, 'approximately': 1188, 'suddenely': 9579, 'activate': 804, 'disturbances': 3274, 'embarrased': 3635, 'face': 4005, 'increasing': 5261, 'sensitivity': 8788, 'security': 8740, 'activation': 807, 'i.e': 5107, 'thin': 9930, 'valubles': 10581, 'uniformly': 10399, 'crashes': 2713, 'dss': 3429, 'crude': 2762, 'looks': 6025, 'ported': 7520, '3.1': 374, 'ds-2': 3424, 'finder': 4164, 'compuer': 2434, 'double': 3336, 'clicking': 2230, 'relanch': 8174, 'exporting': 3946, 'aiff': 946, 'nearly': 6674, 'export': 3945, 'selected': 8756, 'asks': 1249, 'saved': 8627, 'olympus': 6932, 'reveals': 8389, 'painful': 7139, 'ways': 10849, 'converting': 2600, 'build': 1820, 'europe': 3812, 'bud': 1809, 'leads': 5822, 'solder': 9151, 'superglue': 9619, 'sheath': 8869, 'fraying': 4380, 'lead': 5819, 'revealing': 8388, 'wire': 10982, 'underneath': 10360, 'sounding': 9209, 'corners': 2633, 'warned': 10800, 'aweful': 1372, 'remember': 8204, 'loosen': 6030, 'falls': 4033, 'srf': 9327, 'hm01v': 4967, 's2': 8560, ':)': 677, 'seldom': 8754, 'class': 2203, 'reunion': 8384, 'preset': 7611, 'dial': 3109, 'huge': 5070, '60,000': 535, 'farmland': 4055, 'tune': 10242, 'crystal': 2773, 'overrode': 7084, 'drove': 3411, 'nuts': 6843, 'fax': 4083, 'spotless': 9306, 'carrying': 1999, 'closed': 2252, 'perfect': 7282, 'you(sarcasm': 11147, 'z22': 11161, 'sylus': 9714, 'affortable': 910, 'utilize': 10545, 'predecessors': 7586, 'fantastically': 4047, 'enter': 3724, 'codes': 2300, 'vcr': 10600, 'duty': 3466, 'flipped': 4258, 'longevity': 6018, 'goal': 4615, 'elsewher': 3626, 'specs': 9254, 'exceptions': 3863, 'rules': 8534, 'rule': 8533, 'difficulty': 3140, 'tweaking': 10275, 'improvement': 5216, 'considered': 2517, 'shipment': 8889, 'webcam': 10861, 'acer': 782, 'ferrari': 4118, 'east': 3544, 'meadow': 6269, 'guy': 4742, 'acceptable': 743, 'namebrand': 6643, 'sharp': 8863, 'suffices': 9587, 'costco': 2650, 'rechargable': 8045, 'upto': 10503, 'lasting': 5782, 'dese': 3035, 'em': 3629, 'mi': 6359, 'skool': 9038, 'n': 6632, 'da': 2846, 'turrble': 10267, 'hav': 4839, 'lik': 5920, 'puttin': 7831, 'pressure': 7618, 'ur': 10506, 'f': 3980, 'king': 5682, 'dog': 3306, 'h.ear': 4748, 'dose': 3332, 'alwayz': 1044, 'portablity': 7517, 'earpeice': 3528, 'particularly': 7195, 'combo': 2332, 'rotates': 8498, 'freely': 4390, 'accidently': 760, 'professional': 7696, 'picker': 7361, 'locks': 5993, 'spontaneously': 9297, 'combinations': 2329, 'inadvertently': 5225, 'engage': 3697, 'surprise': 9664, 'ruined': 8530, 'ruining': 8531, 'stressor': 9485, 'mobility': 6475, 'theft': 9914, 'deterrant': 3087, 'transport': 10148, 'ambient': 1058, 'pod': 7475, 'headpohones': 4868, 'bank': 1437, 'plane': 7415, 'frequently': 4403, 'cry': 2772, 'travels': 10162, 'uneven': 10375, 'lengths': 5859, 'irritating-': 5516, 'weight': 10882, 'shorter': 8915, 'uncomfortable-': 10348, 'workout': 11048, 'cords': 2629, 'produce': 7685, 'rub': 8520, 'clothing': 2261, 'effect': 3578, 'disruptive': 3253, 'stationary': 9377, 'wearing': 10856, 'stethescope': 9411, 'effect-': 3579, 'hunt': 5089, 'jog': 5589, 'models': 6479, 'persistent': 7312, 'suffer': 9582, 'retract': 8369, 'arrow': 1225, 'fashion': 4058, 'macally': 6108, 'downloaded': 3345, 'kensington': 5651, 'ugly': 10307, 'ice': 5120, 'console': 2528, 'initial': 5319, 'pcs': 7255, 'isolation': 5527, 'inserts': 5347, 'canal': 1940, 'commute': 2361, 'j': 5546, 'train': 10114, 'rail': 7918, 'classical': 2206, 'earbuds': 3520, 'mdr': 6268, 'ex71': 3843, 'attenuation': 1310, 'superb': 9615, 'partnership': 7201, 'etymotic': 3811, 'evident': 3838, 'rock': 8481, 'grunge': 4715, 'sonys': 9185, 'muddy': 6594, 'seal': 8707, 'balanced': 1426, 'string': 9493, 'rei': 8162, 'jacket': 5551, 'length': 5858, 'symmetric': 9718, 'strung': 9508, 'neck': 6683, 'solid': 9155, 'fragile': 4370, 'er6': 3765, 'replaceable': 8250, 'eartips': 3538, 'tightly': 9997, 'ridiculous': 8433, 'bulky': 1829, 'portability': 7514, 'comfort': 2337, 'sadly': 8576, 'flanged': 4219, 'canals': 1941, 'smaller': 9093, 'altec': 1032, 'lansing': 5762, 'documentation': 3301, 'alteclansing.com/inmotionearphones': 1033, '404': 447, 'visit': 10689, 'pathetic': 7225, '1/19/2006)i': 137, '1/10/2006': 136, 'suit': 9597, 'impression': 5210, 'deeper': 2949, 'reproduction': 8274, 'defect': 2957, 'backlight': 1401, 'shortcoming': 8911, 'early': 3525, 'handspring': 4788, 'visors': 10693, 'neutral': 6720, 'expedited': 3910, 'ps': 7775, 'grey': 4686, 'result': 8354, 'assume': 1266, 'repeated': 8243, 'beginnings': 1517, 'ends': 3690, 'sentences': 8792, 'installation': 5358, 'server': 8813, 'froze': 4420, 'waited': 10757, 'gentleman': 4552, 'whose': 10930, 'explained': 3935, 'win': 10951, 'encountered': 3672, 'insisted': 5350, 'typically': 10295, 'encounter': 3671, 'incompatible': 5249, 'exit': 3893, 'freezing': 4397, 'disabling': 3182, 'firm': 4190, 'advised': 893, 'contact': 2546, 'configuration': 2473, 'fellow': 4112, 'supervisor': 9625, 'fluent': 4275, 'situation': 9013, 'analysis': 1082, 'frozen': 4421, 'occurred': 6890, 'coincidently': 2307, 'exact': 3845, 'freeze': 4395, 'expressed': 3951, 'skepticism': 9024, 'towards': 10089, 'explanation': 3937, 'reassured': 8006, 'emphasis': 3650, 'symptoms': 9719, 'understood': 10365, 'technician': 9836, 'bill': 1575, 'repairing': 8239, 'stunned': 9517, 'intuitively': 5459, 'heaven': 4890, 'aaron': 707, 'neville': 6724, 'limb': 5926, 'severing': 8838, 'zz': 11186, 'tomorrow': 10043, 'demanding': 3000, 'retailers': 8363, 'protector': 7757, 'dlp': 3288, 'strip': 9495, 'purple': 7819, 'neato': 6676, 'mill': 6398, 'independent': 5272, 'circuitry': 2187, 'minimize': 6418, 'subwoofer': 9564, 'thinkpad': 9936, 'thereafter': 9919, 't60': 9751, 'hey': 4923, 'universal': 10413, 'introduced': 5453, 'smarttip': 9099, 'lenovo': 5864, 'manufacturers': 6185, 'someday': 9167, 'brick': 1759, 'lightweight': 5919, 'sleek': 9049, 'reviewrs': 8403, 'brilliant': 1769, 'tangled': 9791, 'igo': 5153, 'volts': 10718, '120': 192, 'capability': 1961, 'delay': 2979, 'supporting': 9633, 'unforgivable': 10385, 'shocked': 8896, 'highs': 4938, 'leading': 5821, 'tinny': 10012, 'brassy': 1743, 'voices': 10707, 'virtually': 10681, 'blanks': 1605, 'coaster': 2284, 'speeds': 9261, 'unsatisfactory': 10451, 'attempt': 1303, 'kx': 5721, 'tg6700b.': 9902, 'layout': 5810, 'answering': 1117, 'silly': 8974, 'chintzy': 2156, 'wonderful': 11023, 'responsibility': 8336, 'seller': 8766, 'consolidating': 2530, 'regularly': 8160, '890': 643, 'disappointment': 3192, 'remotes': 8215, 'simpler': 8983, 'fooling': 4313, 'key': 5654, 'presses': 7615, 'basic': 1451, 'juggle': 5611, 'sit': 9006, 'cypress': 2840, 'at2lp': 1284, 'rc42': 7965, 'western': 10894, 'housing': 5041, 'drive-': 3397, 'housings': 5042, 'void': 10708, 'backed': 1395, 'pickup': 7364, 'regardless': 8148, 'cs50': 2776, 'invariably': 5467, 'building': 1821, 'exposed': 3948, 'door': 3323, 'cubicles': 2785, 'lots': 6046, 'deteriorates': 3082, 'gear': 4531, 'specifically': 9247, 'ntsc': 6828, 'ieee': 5141, 'common': 2354, 'ohm': 6923, 'hookup': 5003, 'ineffective': 5297, 'shielding': 8881, 'conductance': 2460, 'wreck': 11077, 'grounding': 4707, 'chromatic': 2170, 'aberrations': 713, 'skin': 9029, 'tones': 10049, 'blotching': 1637, 'grays': 4674, 'highlights': 4936, 'murky': 6604, 'shadows': 8848, 'noisy': 6768, 'reds': 8109, 'balance': 1425, 'impedance': 5190, 'mismatching': 6446, 'bleeding': 1615, 'patterns': 7230, 'offers': 6908, 'ar': 1195, 'belden': 1528, 'viewsonics': 10673, 'vast': 10597, 'sharper': 8865, 'grainy': 4654, 'lighting': 5914, 'focus': 4287, 'colors': 2322, 'disappear': 3185, 'weighs': 10881, 'pound': 7552, 'warm': 10796, 'motion': 6539, 'wrt54gl': 11092, 'dummies': 3447, 'foot': 4315, 'cat5e': 2023, 'patch': 7222, 'hook': 4999, 'surfed': 9655, 'changes': 2101, 'de': 2897, 'activating': 806, 'welcome': 10888, 'password': 7217, 'freaked': 4382, 'unimpressed': 10401, 'young': 11151, 'amused': 1078, 'laughing': 5797, 'logon': 6012, 'gripe': 4695, 'rom': 8493, 'installing': 5361, 'deep': 2948, 'wizard': 11002, 'norm': 6784, 'stinks': 9424, 'wusb54gc': 11095, 'primarily': 7640, 'unannounced': 10328, 'existent': 3890, 'rude': 8524, 'provides': 7771, 'tungsten': 10253, 't5': 9738, 'helpful': 4909, 'redirect': 8106, 'planned': 7419, 'county': 2671, 'beach': 1471, 'mid': 6377, 'sentence': 8791, 'giving': 4595, 'stuttering': 9526, 'francisco': 4376, 'oakland': 6855, 'friend': 4411, 'bear': 1477, 'mind': 6407, 'acknowledged': 786, 'solutions': 9160, 'summary': 9603, 'mapquest': 6196, 'directions': 3171, 'finished': 4178, 'teleatlas': 9849, 'producers': 7687, 'gui': 4732, 'graphic': 4664, 'interacts': 5405, 'art': 1228, 'presentations': 7606, 'viewed': 10667, '3d': 424, '2d.': 364, 'icon': 5122, 'driven': 3398, 'irritants': 5514, 'vie': 10664, 'ignores': 5151, 'desires': 3052, 'annoyingly': 1105, 'bluetooth': 1646, 'informing': 5312, 'interstate': 5437, 'highway': 4939, 'plain': 7413, 'mapping': 6194, 'certainly': 2073, 'irritant': 5513, 'effort': 3585, 'appealing': 1163, 'casual': 2020, 'newest': 6730, 'allowance': 1006, 'travelling': 10161, 'ending': 3685, 'begin': 1513, 'anew': 1087, 'omission': 6936, 'wisconsin': 10988, 'minnesota': 6422, 'create': 2720, 'idiosyncracies': 5134, 'anomalies': 1108, 'bugs': 1819, 'computes': 2438, 'tends': 9873, 'prefer': 7590, 'expressways': 3952, 'preferences': 7593, 'metro': 6351, 'laced': 5735, 'convoluted': 2607, 'creating': 2723, 'alternative': 1036, 'logical': 6006, 'tedious': 9845, 'clueless': 2267, 'guessing': 4731, 'grasping': 4669, 'straws': 9468, 'interrupting': 5433, 'contradicting': 2573, 'condition': 2457, 'claiming': 2197, 'party': 7203, 'repackaged': 8236, 'insulting': 5381, 'lying': 6090, 'eyes': 3979, 'deceiving': 2925, 'unanswered': 10329, 'riding': 8436, 'introduce': 5452, 'history': 4958, 'possesing': 7531, 'contempt': 2555, 'customers': 2813, 'marginally': 6205, 'abandon': 710, 'jerr': 5572, 'obtain': 6871, 'tend': 9870, 'proof': 7738, 'nonsense': 6778, 'nut': 6842, '269': 348, 'mobile': 6473, 'axims': 1383, 'wm5': 11007, 'bumps': 1836, 'touratech': 10085, '60c': 540, 'falling': 4031, 'ground': 4705, 'rental': 8230, 'trolling': 10209, 'valley': 10578, 'portable': 7515, 'ique': 5499, '3600': 412, '700': 574, 'unique': 10409, 'palmpilot': 7153, 'integrated': 5389, 'palmv.': 7156, 'awkward': 1380, 'chore': 2167, 'synced': 9722, 'fitfully': 4199, 'irritating': 5515, 'seamlessly': 8712, 'address': 839, 'entered': 3725, 'section': 8733, 'cleanly': 2216, 'retype': 8383, 'graffiti': 4651, 'letters': 5879, 'drawn': 3384, 'backward': 1414, 'engaged': 3698, 'recognizes': 8066, 'satellites': 8614, 'sky': 9039, 'randomly': 7931, 'navigation': 6662, 'orders': 7003, 'deployed': 3023, 'windshield': 10967, 'except': 3858, 'propped': 7745, 'passenger': 7210, 'seat': 8723, 'dashboard': 2869, 'navigate': 6660, 'acts': 814, 'stupid': 9519, 'dangerous': 2862, 'unhelpful': 10395, 'simulate': 8989, 'storm': 9449, 'ottawa': 7026, 'ui': 10310, 'inconsistent': 5252, 'arbitrary': 1196, 'entirely': 3733, 'imagine': 5174, 'grandma': 4660, 'atrocious': 1293, 'information': 5310, 'shuts': 8942, 'occasion': 6877, 'apparent': 1160, 'savings': 8631, 'secure': 8736, 'max': 6248, 'california': 1921, 'counties': 2665, 'hostile': 5027, 'fatal': 4068, 'tethered': 9894, 'resting': 8345, 'tradeoff': 10108, 'implementation': 5194, 'shark': 8862, 'antennae': 1122, 'enjoyment': 3717, 'bathroom': 1461, 'dollar': 3309, '1.50': 133, 'penny': 7271, 'pric': 7632, '128': 203, 'wpa': 11066, 'opted': 6987, 'typing': 10296, 'assure': 1271, 'micro$oft': 6366, 'unaware': 10331, 'patience': 7226, 'favour': 4081, 'disappoint': 3189, 'consistency': 2523, 'carries': 1996, 'dubious': 3435, 'tradition': 10109, 'mn-700': 6472, 'conspiratively': 2531, 'proceeded': 7677, 'functioning': 4449, 'infrastructure': 5314, 'deserve': 3039, 'favor': 4077, 'shoddy': 8898, 'manage': 6165, '20/10': 308, 'vision': 10688, 'bestbuy': 1554, '11': 175, "woudn't": 11063, 'reconnected': 8082, 'intermittently': 5424, 'cutting': 2824, 'afternoon': 918, 'fire': 4184, 'son': 9178, 'extinguish': 3966, 'flames': 4216, 'mx75': 6629, 'pads': 7131, 'inserted': 5344, 'vibration': 10653, 'sweating': 9693, 'unusually': 10469, 'stiff': 9420, 'consequently': 2511, 'maintains': 6148, 'corkscrew': 2630, 'substantially': 9556, 'slack': 9045, 'ugliest': 10306, 'shade': 8847, 'conventional': 2592, 'lime': 5927, 'annoyances': 1102, 'hunting': 5091, 'awesome': 1373, 'locations': 5988, 'miles': 6395, 'separate': 8795, 'rabbit': 7902, 'misc': 6435, 'popular': 7505, 'adjusting': 854, 'hue': 5068, 'blurry': 1650, 'sooooo': 9190, 'reasonably': 8004, 'o.k': 6854, 'powerbook': 7556, 'macbook': 6109, 'saitek': 8583, 'illuminate': 5162, 'keys': 5662, 'embedded': 3639, 'splashed': 9283, 'reducing': 8114, 'harder': 4810, 'fn': 4283, 'compactflash': 2365, 'officejet': 6911, '7130': 585, 'backwards': 1415, 'amber': 1055, 'cp': 2686, 'updated': 10481, 'cpf': 2690, 'articles': 1230, 'thumbs': 9975, 'dud': 3437, 'cameras': 1932, 'dealing': 2910, 'hassles': 4830, 'tekxon': 9846, 'stressful': 9484, 'quot;this': 7892, 'lt;whatever>."': 6073, 'famous': 4039, 'auction': 1319, 'gas': 4520, 'injected': 5323, 'plated': 7429, 'shielded': 8880, 'analog': 1080, 'swinging': 9701, 'equipment': 3757, 'backedup': 1396, 'treid': 10175, 'regonize': 8154, 'redail': 8103, 'uniden': 10397, 'fluke': 4276, 'updating': 10483, 'downloading': 3346, 'nero': 6706, 'plays': 7443, 'layer': 5807, 'jumping': 5620, 'pixellated': 7401, 'unwatchable': 10471, 'dissapointing': 3255, 'sping': 9277, 'selector': 8761, 'thick': 9925, 'rigid': 8440, 'tension': 9875, 'e.g.': 3501, 'twisted': 10282, 'odd': 6894, 'angles': 1091, 'slip': 9071, 'depth': 3029, 'compensate': 2392, 'traction': 10106, 'angled': 1090, 'pin': 7378, 'corded': 2627, 'land': 5753, 'forth': 4349, 'disconnecting': 3210, 'sporatic': 9300, '1.20': 127, 'dealbreaker': 2906, 'logged': 6000, 'administrator': 859, 'willing': 10949, 'expose': 3947, 'skype': 9042, 'drops': 3410, 'dismal': 3239, 'acknowledging': 787, 'reinstalling': 8170, 'vosky': 10725, 'dph-50u': 3360, 'hurry': 5093, 'carried': 1995, 'grief': 4688, 'periods': 7297, 'scrolls': 8695, 'replug': 8258, 'unexceptible': 10376, 'wondering': 11025, 'laser': 5777, '6000': 537, 'mx': 6625, 'body': 1660, 'pointer': 7482, 'flickers': 4250, 'disappears': 3188, 'mx320': 6627, 'microsot': 6373, 'tigerdirect': 9992, 'payed': 7241, 'buy.com': 1867, 'rikaline': 8441, '6010': 538, 'evertime': 3826, 'initializing': 5320, 'embarrassed': 3636, 'friends': 4413, 'complaining': 2403, '---i': 35, 'sp2': 9221, '---signal': 36, 'peripheral': 7298, 'annoyance': 1101, "c'm": 1880, 'special': 9245, 'insert': 5343, 'sticker': 9415, 'readers': 7978, 'deducted': 2945, '---told': 40, 'mom': 6498, 'connects': 2504, 'firewall': 4187, 'deduct': 2944, '---stupid': 38, 'supports': 9635, 'hexidecimal': 4922, 'passwords': 7218, 'alphabet': 1023, 'z.': 11160, '---slow': 37, 'impatient': 5189, "---can't": 34, 'hibernate': 4926, 'disables': 3181, '--overall': 44, 'alongside': 1018, 'wrt54gs': 11093, 'bars': 1445, 'flaky': 4215, 'firmwares': 4193, 'rectify': 8100, 'dice': 3121, 'dropout': 3406, 'v3': 10559, 'toy': 10096, 'ilove': 5166, 'abanded': 709, 'brudle': 1795, 'hits': 4962, 'alive': 994, 'safe': 8577, 'becuse': 1496, 'die': 3126, 'wast': 10824, 'ginger': 4585, 'newborn': 6728, 'kittin': 5689, 'refurbs': 8139, 'testing': 9892, 'biggest': 1571, 'fade': 4015, 'walk': 10766, 'bandwidth': 1433, 'snapping': 9121, 'popping': 7503, 'marginal': 6204, 'cents': 2069, 'wallmart': 10776, 'broadcast': 1777, 'gain': 4501, 'dials': 3114, 'variable': 10585, 'disguised': 3231, 'medium': 6291, 'real': 7985, 'garbage': 4516, 'improving': 5218, 'roof': 8494, 'cabling': 1903, 'preamp': 7579, 'adjustable': 852, 'uhf': 10309, 'vhf': 10647, 'assuming': 1268, 'advise': 892, 'antennas': 1123, 'forced': 4323, 'brings': 1773, 'kenned': 5649, 'presentation': 7605, 'view': 10666, 'document': 3300, 'presenter': 7608, 'pgup': 7326, 'pgdown': 7325, 'notes': 6801, 'neat': 6675, 'trick': 10186, 'discovered': 3220, 'pres': 7602, 'b': 1385, 'beem': 1502, 'somethimg': 9170, 'expansion': 3901, 'missled': 6456, 'recieved': 8054, 'bussiness': 1856, 'hang': 4791, 'manufacturing': 6187, 'louder': 6048, 'interview': 5442, 'regular': 8159, 'hamstrung': 4774, 'taping': 9803, 'squeal': 9321, 'feedback': 4102, 'unampflied': 10326, 'plugs': 7464, 'thrilled': 9961, 'improves': 5217, 'loops': 6028, 'men': 6311, 'females': 4115, 'hanger': 4792, 'placed': 7407, 'adhesive': 848, 'removable': 8217, 'permanent': 7300, 'mounting': 6554, 'mechanical': 6282, 'miss': 6451, 'greatly': 4680, 'hopes': 5011, 'treo': 10181, '650': 551, 'verified': 10628, 'attaching': 1299, 'pure': 7815, 'booklet': 1678, 'outlined': 7038, 'configure': 2476, 'hp-1200': 5046, 'contraption': 2575, 'somehow': 9168, 'corrupts': 2645, 'beast': 1478, 'phenomenal': 7329, 'debug': 2920, 'steer': 9397, 'detecting': 3075, 'wifi': 10942, 'tot': 10069, 'active': 808, 'cancels': 1951, 'detection': 3076, 'thanks': 9907, 'magellen': 6129, 'created': 2721, 'roadblock': 8468, 'traffic': 10111, 'longtime': 6019, 'wacom': 10748, 'intuos': 5461, 'tablets': 9760, 'capabilities': 1960, '2.5ghz': 301, 'graphire': 4666, 'leaves': 5840, 'desired': 3051, 'lies': 5900, 'responsiveness': 8340, 'thinner': 9939, 'grip': 4694, 'toothpick': 10057, 'manipulate': 6174, 'effectively': 3581, 'durability': 3455, 'additionally': 836, 'molded': 6496, 'whenever': 10908, 'selecting': 8757, 'behaves': 1521, 'attractive': 1316, 'responsive': 8339, 'deficiencies': 2960, 'mercedes': 6319, 'honda': 4992, 'civic': 2194, 'mileage': 6394, 'benz': 1550, 'general': 4539, 'pink)is': 7384, 'discharge': 3200, 'backlighting': 1402, 'hitting': 4963, 'dies': 3129, 'gladly': 4599, 'thet': 9924, 'realistically': 7989, 'evaluate': 3814, 'dig': 3141, 'discman': 3204, 'clued': 2266, 'transpod': 10147, 'advising': 894, 'unusual': 10468, '192kbps': 262, 'aac': 706, 'encoded': 3669, 'sub': 9536, 'woofer': 11028, 'thumping': 9978, 'stoped': 9436, 'meaning': 6271, 'scan': 8646, 'scansnap': 8653, 'minus': 6428, 'jams': 5557, 'feeds': 4105, 'incredible': 5263, 'rollers': 8490, 'grade': 4646, 'copier': 2620, 'paper': 7171, 'thankful': 9905, 'organizing': 7010, 'sizes': 9021, 'weights': 10883, 'adf': 846, 'flatbed': 4229, 'scanner': 8649, 'baby': 1391, 'jam': 5554, 'consume': 2540, 'reorganizing': 8232, 'misfeeds': 6441, 'clearing': 2221, 'deeply': 2950, 'documents': 3304, 'lifting': 5909, 'lid': 5895, 'glass': 4602, 'creates': 2722, 'pitched': 7394, 'flow': 4270, 'anywayer': 1144, 'sorely': 9195, 'dissappointed': 3256, 'flowing': 4271, 'abysmal': 737, 'nonuse': 6780, 'redial': 8104, 'friendly': 4412, 'requested': 8282, 'refused': 8141, 'exhibiting': 3884, 'traits': 10119, 'letting': 5880, 'smash': 9100, 'hammer': 4771, 'decreased': 2940, 'gambling': 4504, 'cells': 2058, '2255': 331, 'suckered': 9573, 'cassettes': 2018, 'ratio': 7948, '2002': 312, 'chevy': 2147, 'tahoe': 9770, 'eject': 3598, 'harley': 4816, 'davidson': 2881, 'fltri': 4273, 'cpa-9c.': 2687, 'simulated': 8990, 'fools': 4314, 'auto': 1341, 'troubleshooting': 10213, 'generic': 4547, 'rf': 8417, 'normally': 6786, 'gpss': 4640, 'trex': 10183, 'staring': 9361, 'tree': 10173, 'overcast': 7059, 'seattle': 8726, 'enemy': 3692, 'mediocre': 6290, 'waas': 10745, 'claimed': 2196, 'accuracy': 777, '5.5': 489, 'indicated': 5280, 'traveling': 10159, '350': 407, 'crossed': 2753, 'conducted': 2461, 'placing': 7410, 'unobstructed': 10426, 'motionless': 6540, 'moved': 6562, 'quarter': 7857, 'reporting': 8266, 'inaccurate': 5222, 'lane': 5756, 'hwy': 5098, 'tacoma': 9764, 'wa': 10744, '38th': 418, 'compass': 2383, 'accurate': 778, 'readings': 7981, 'understandable': 10363, 'determine': 3084, 'mounted': 6553, 'bike': 1573, '5.3': 488, 'ounces': 7027, 'wal-mart.com': 10765, 'sells': 8769, 'tempermental': 9861, 'mostly': 6534, 'nightmare': 6752, 'archaic': 1197, 'minues': 6426, 'staggering': 9342, 'receiving': 8037, 'amazingly': 1049, 'throughout': 9966, 'floors': 4266, 'startup': 9368, 'cruzer': 2771, 'u3': 10301, 'compelled': 2391, 'negative': 6692, 'mere': 6325, 'higlhly': 4941, 'hidrance': 4930, 'liability': 5889, 'educational': 3574, 'institution': 5370, 'wher': 10909, 'responsibel': 8335, 'sessions': 8821, 'launch': 5798, 'preloaded': 7596, 'anti': 1124, 'virus': 10682, 'intruder': 5454, 'preventing': 7625, 'ticked': 9985, 'lets': 5876, 'uninstaller': 10406, 'offending': 6903, 'uninstall': 10403, 'cheesy': 2144, 'cluttering': 2272, 'scratching': 8682, 'tearing': 9829, 'spare': 9231, 'closing': 2257, 'e.': 3500, 'noticeable': 6807, 'gap': 4513, 'latch': 5785, 'unexpectedly': 10380, 'purse': 7824, 'brief': 1763, 'destructive': 3067, 'toddler': 10036, 'backing': 1400, 'dru-710a': 3415, 'attemped': 1302, 'lockups': 5994, 'film': 4151, 'physical': 7355, 'obtained': 6872, 'writes': 11084, 'premium': 7598, 'successful': 9566, 'recordings': 8091, 'asin': 1243, 'b0001mku4s': 1389, 'recognition': 8062, 'amplifier': 1075, 'yay': 11135, 'hum': 5074, 'witht': 10999, 'eh': 3591, 'rec': 8019, 'funny': 4456, 'labtec': 5734, 'equivelent': 3762, 'dialog-301': 3112, 'whopping': 10929, 'chrystal': 2172, '185': 253, 'wedding': 10867, 'readable': 7976, 'corrupted': 2644, 'flashcard': 4223, 'faith': 4027, 'ruin': 8529, 'malfunctioned': 6160, 'ebay': 3553, '782c': 605, 'dvd+rw': 3473, 'googled': 4632, 'amazed': 1047, 'struggling': 9507, 'excuse': 3877, 'mr': 6578, "clean'ing": 2211, "skipdr'ing": 9034, 'fundamental': 4451, 'badly': 1419, 'person(s': 7314, 'responsible': 8337, 'usual': 10540, 'corporate': 2634, 'practice': 7574, 'promoted': 7729, 'ladder': 5742, 'inflict': 5307, 'quid': 7872, 'quo': 7881, 'agreement': 939, 'quot;product"': 7889, 'posted': 7540, 'freezes': 4396, 'combined': 2331, 'quot;defective"': 7884, 'firmly': 4191, 'belief': 1529, 'quot;dirty"': 7885, 'agrees': 940, 'drawer': 3381, 'jiggling': 5580, 'fixes': 4207, 'dime': 3150, '@&*!"': 685, 'millionaire': 6402, 'arrogant': 1224, 'criminal': 2738, '~i': 11195, 'mvsv3': 6623, 'm': 6093, 'pioneer': 7388, 'v555': 10564, 'wega': 10878, 'kv-27fs12': 5719, 'naked': 6641, 'regading': 8144, 'visual': 10695, 'sharpness': 8866, 'composite': 2424, 'component': 2421, 'video~~': 10663, 'alledged': 998, 'ultra': 10315, 'benchmark': 1544, 'rattling': 7956, 'darn': 2867, 'cowon': 2684, 'iaudio': 5113, 'dealt': 2913, '800': 623, 'submit': 9546, 'ticket': 9986, 'electrogalaxy': 3609, 'officially': 6914, 'arranged': 1216, 'wound': 11064, 'deleting': 2983, 'hte': 5057, 'assigned': 1258, '192.168.0.10': 259, '.0': 86, 'subnet': 9548, 'configured': 2477, 'existing': 3891, 'picking': 7362, '.10': 88, 'incorrectly': 5257, 'specificy': 9250, 'ssid': 9331, 'swearing': 9690, 'wirelessly': 10985, 'aggrevation': 931, 'plague': 7411, 'everytihing': 3833, 'banging': 1435, 'legacy': 5850, 'sounblaster': 9202, 'compatibiltiy': 2387, 'bios': 1587, 'chipsets': 2160, 'yada': 11129, 'aforementioned': 913, 'employee': 3652, 'conflicts': 2483, 'systems': 9730, 'expired': 3931, 'jamming': 5556, '2005': 315, 'marks': 6218, 'fedex': 4099, 'materials': 6237, 'fourth': 4363, 'mutlifunction': 6619, 'tooth': 10056, 'kbd': 5641, 'acceptably': 744, 'mainly': 6144, 'mighty': 6386, '610': 544, 'ergonomic': 3771, 'proper': 7741, 'shortcut': 8913, 'utter': 10547, 'touch': 10074, 'cream': 2719, 'secondly': 8730, 'widgets': 10938, 'f12': 3989, 'allows': 1009, 'browsers': 1791, 'thirdly': 9942, 'logitechs': 6009, 'comforting': 2342, 'cursor': 2804, 'osx': 7020, 'adjustability': 851, 'compared': 2376, 'gasp': 4522, 'horrendous': 5016, 'clatter': 2208, 'nonexistant': 6775, 'shallow': 8854, 'texture': 9896, 'uniform': 10398, 'raised': 7923, 'dots': 3335, 'asdf': 1238, 'jkl': 5583, 'rows': 8513, 'typist': 10297, 'unforgiveable': 10386, 'sin': 8992, 'transforms': 10134, 'peck': 7263, 'typer': 10291, 'visually': 10696, 'superior': 9620, 'requirement': 8288, 'deserves': 3041, 'outlets': 7037, 'nwb': 6847, 'remodeling': 8211, 'at&t': 1280, 'comparing': 2378, 'colored': 2319, 'shirts': 8894, 'reverse': 8392, 'adhere': 847, 'flake': 4212, 'chunks': 2174, 'admit': 862, '140.00': 217, '1989': 279, 'woot.com': 11031, 'transmission': 10141, 'hissing': 4956, 'granted': 4662, 'crazy': 2717, 'configurable': 2472, '~15': 11192, 'terribly': 9884, 'cracked': 2694, 'material': 6236, 'zeros': 11170, 'played': 7437, 'tapes': 9802, 'vhs': 10648, 'dlink': 3286, 'hah': 4762, 'uninitiated': 10402, '.ftp': 93, 'ap': 1148, 'manager': 6169, 'addresses': 841, 'dwl-2100ap': 3488, 'gibberish': 4570, 'involved': 5483, 'dope': 3327, 'blah': 1600, 'assessment': 1256, 'confusing': 2488, 'moniter': 6509, 'cool': 2609, 'whe': 10904, 'nat': 6654, 'angry.i': 1093, 'hassle.i': 4829, 't': 9732, 'ic': 5118, 'bad.the': 1418, 'adapter.so': 825, 'trinidadian': 10197, 'work.i': 11038, 'family': 4038, 'relocated': 8192, 'intouch': 5449, 'grandmother': 4661, 'lifecam': 5903, 'tag': 9767, 'pentium': 7273, 'processor': 7681, 'ram': 7926, 'askes': 1247, 'uninstalled': 10405, 'following': 4305, 'stepwise': 9407, 'tools': 10054, 'updates': 10482, 'crashed': 2712, 'hoped': 5007, 'conectivity': 2466, 'recognizing': 8067, 'assurity': 1273, 'investing': 5476, 'earlier': 3524, 'assurance': 1270, 'checking': 2141, 'kb': 5640, 'cpu': 2691, 'usage': 10519, 'lo': 5976, 'behold': 1526, 'task': 9808, 'dutifully': 3465, 'resources': 8325, 'overrated': 7082, 'snug': 9130, 'circuit': 2186, 'reduction': 8115, 'thise': 9944, 'ammount': 1064, 'mowing': 6569, 'lawn': 5802, 'flying': 4281, 'cancelleation': 1948, 'drum': 3417, 'pairs': 7149, 'heaphones': 4877, 'cabinet': 1899, 'bag': 1421, 'morning': 6529, 'pulled': 7799, 'earbud': 3519, 'peice': 7266, 'squeeze': 9322, 'improperly': 5213, 'noone': 6781, 'filter': 4154, 'kids': 5675, 'ambiant': 1057, 'cranked': 2704, 'painfully': 7140, 'inline': 5331, 'triangle': 10185, 'clip': 2238, 'naturally': 6657, 'expert': 3926, 'bode': 1659, 'avaya': 1359, 'roadwarrior': 8473, 'worker': 11043, 'gn': 4613, 'netcom': 6712, 'listener': 5957, 'airplane': 957, 'humming': 5081, 'chatted': 2125, 'dragon': 3368, 'tests': 9893, 'passed': 7209, 'cheapo': 2134, 'mike': 6389, 'antonline': 1131, 'stonewalls': 9432, 'zen': 11166, 'approved': 1185, 'unsigned': 10455, 'warnings': 10802, 'groovy': 4703, 'graphics': 4665, 'accommodate': 762, 'speedbooster': 9260, 'procedure': 7675, 'reinstall': 8168, 'connectivity': 2501, 'wanna': 10784, 'f5d7010': 3992, '54mbps': 512, '108': 165, 'http://www.amazon.com/exec/obidos/tg/detail/-/b000085bcx/qid=1125546516/sr=8-5/ref=pd_bbs_unbuck_5/002-4891207-7082407?v=glance&s=electronics&n=17259': 5062, 'typed': 10290, 'yard': 11133, 'gravity': 4672, 'lower': 6062, 'sinks': 8998, 'downward': 3355, 'pointing': 7483, 'toward': 10088, 'leash': 5835, 'fence': 4116, 'pet': 7322, 'responsible--': 8338, 'cheap--': 2128, 'volunteer': 10722, 'animal': 1094, 'shelter': 8877, 'guardianship': 4726, 'pets': 7324, 'doodad': 3321, 'fighting': 4136, 'bait': 1423, 'lab': 5725, 'happen--': 4798, 'include': 5242, 'encrypts': 3682, 'fingerprint': 4172, 'steal': 9390, 'contain': 2550, 'admin': 858, 'privledges': 7659, 'videos': 10661, 'codec': 2297, 'vix': 10699, 'unreadable': 10443, 'utility': 10543, 'upgraded': 10485, '1.06': 121, 'triggering': 10194, 'communication': 2358, 'edt': 3572, 'atlantic': 1289, 'vote': 10726, 'addressing': 842, 'scheme': 8664, 'default': 2953, 'beyond': 1560, 'resellers': 8301, 'outlining': 7039, 'cf': 2080, '4300': 453, '-another': 53, 'kingston': 5683, 'forgot': 4335, 'glowing': 4609, 'unstable': 10456, 'footprint': 4317, 'inches': 5238, 'folded': 4293, 'eat': 3548, 'subaru': 9540, 'ashtray': 1240, 'park': 7190, 'mountains': 6552, 'hills': 4944, 'mph': 6577, 'resulting': 8356, 'stopping': 9440, 'shakes': 8852, 'wobbles': 11015, 'lest': 5874, 'knock': 5699, 'stolen': 9428, 'griffin': 4690, 'reccommend': 8028, 'manually': 6180, 'finger': 4169, 'wiggle': 10944, 'adjusts': 857, 'fingernail': 4170, 'catch': 2025, 'ridge': 8430, 'smashing': 9102, 'dcs-900w': 2892, 'craped': 2707, 'fifth': 4133, 'resolve': 8320, 'drill': 3394, 'thanksgiving': 9908, 'graduate': 4650, 'student': 9510, 'majoring': 6151, 'suggestion': 9594, 'dealer': 2907, 'drastically': 3377, 'credited': 2731, 'credit': 2730, 'account': 771, '52': 506, 'anybody': 1133, 'answered': 1115, 'convincing': 2606, 'truth': 10229, 'slower': 9083, '1.0': 119, '32bit': 396, '45min': 463, 'extreme': 3972, 'iii': 5157, 'aware': 1368, 'sustained': 9681, 'upload': 10490, 'caps': 1967, 'ii': 5156, 'slows': 9087, 'tasks': 9810, 'uploading': 10492, 'acting': 800, 'sparatic': 9230, 'honestly': 4994, '16': 234, 'pcmcia': 7254, 'praise': 7576, '32': 390, 'kinda': 5680, 'uploaded': 10491, 'glad': 4597, 'treat': 10168, '19': 255, 'panel': 7161, 'dongle': 3318, 'wake': 10761, 'ctrl': 2779, 'responding': 8331, 'dug': 3442, 'ancient': 1085, 'quietkey': 7874, 'frankly': 4378, 'behemoth': 1523, 'mice': 6362, 'consolidate': 2529, 'onto': 6956, 'increments': 5266, 'pixels': 7402, 'unbearable': 10332, 'causing': 2037, 'bluetooh': 1645, 'cabe': 1898, 'xbr960': 11110, 'pts1000': 7787, 'owner': 7096, 'examination': 3847, 'produces': 7688, 'finest': 4168, 'pitch': 7393, 'priced': 7634, 'somethinfg': 9171, 'mislead': 6444, '11010': 179, 'repositionable': 8269, 'tab': 9756, 'snaps': 9122, 'rendering': 8227, 'shout': 8925, 'transmitters': 10144, 'remained': 8198, 'broadcasting': 1778, 'nyc': 6849, 'unused': 10467, 'icarplay': 5119, 'givben': 4590, 'tuning': 10254, 'heartbeat': 4885, 'expedition': 3911, 'drown': 3413, 'misbehave': 6434, 'continual': 2560, 'notorious': 6813, 'thieves': 9929, 'industry': 5296, 'personally': 7316, '1,600': 118, 'dcr': 2890, 'pc5': 7250, 'cdx': 2047, 'c90': 1892, '1,200': 117, 'ambiguous': 1059, 'statement': 9371, '~$780': 11191, 'handycam': 4790, 'unfortunate': 10390, 'testament': 9888, 'widely': 10934, 'publicized': 7791, 'qc': 7845, 'fiasco': 4126, '1,000': 116, 'insult': 5380, 'indeed': 5269, 'blatant': 1611, 'ahold': 943, 'literally': 5965, 'beforehand': 1507, 'seriously': 8810, 'gag': 4500, 'coverage': 2679, 'whoever': 10926, 'ashamed': 1239, 'liable': 5890, 'damages': 2854, 'losses': 6042, 'belong': 1539, 'unfriendly': 10394, 'prison': 7655, '161.80': 239, 'warrant': 10804, 'confirmation': 2480, 'providing': 7772, 'faltered': 4035, 'earplugs': 3534, 'lanyard': 5764, 'persuaded': 7318, 'pessimistic': 7321, 'quietly': 7875, 'cu': 2780, 'terribl': 9882, 'disability': 3178, 't33': 9734, 'clerk': 2225, 'smiled': 9107, 'surely': 9651, 'begins': 1518, 'distort': 3264, 'distorts': 3267, 'volumes': 10720, 'impossibly': 5207, 'tight': 9993, 'discomfort': 3205, 'underdash': 10356, 'cupholder': 2794, 'glove': 4607, 'compartment': 2381, 'suffice': 9586, 'installer': 5360, '700p': 576, 'north': 6787, 'carolina': 1986, 'misnamed': 6447, 'streets': 9478, 'exits': 3894, 'referred': 8122, 'lacked': 5738, 'critical': 2747, 'heading': 4864, '101': 159, '101n': 161, 'approaching': 1183, 'complex': 2416, 'interchange': 5406, 'actively': 809, 'basis': 1454, 'lists': 5961, 'fingers': 4174, 'areas': 1201, 'familiar': 4036, 'unfamiliar': 10384, 'territory': 9886, 'unclear': 10344, 'useles': 10529, 'moment': 6499, 'ordeal': 6999, 'sorting': 9200, 'outlook': 7040, 'ipaq': 5492, 'foreshadowing': 4331, 'fun': 4444, 'techno': 9839, 'handheld': 4777, 'essence': 3791, 'downloads': 3347, 'handhelds': 4778, 'rings': 8446, 'water': 10833, 'terminate': 9879, 'insists': 5353, 'microwave': 6375, 'flashy': 4227, 'conceived': 2442, 'sites': 9009, 'featured': 4095, 'tg5576': 9901, 'underwhelmed': 10366, 'pansonic': 7167, 'representative': 8270, 'assured': 1272, 'ringtones': 8448, 'wallpapers': 10777, 'monthly': 6522, 'lieu': 5901, 'worn': 11053, 'edison': 3566, 'struck': 9502, 'custom': 2811, 'dinky': 3163, 'hole': 4980, 'keypad': 5660, 'regional': 8150, 'coding': 2301, 'busily': 1852, 'principle': 7643, 'secretely': 8732, 'catridges': 2031, 'snotty': 9128, 'us$': 10515, '75': 593, 'sixth': 9017, '-koss': 62, 'spark': 9232, '09/15/2006': 113, '-apple': 54, 'viewer': 10668, 'preceding': 7581, '20-$30': 304, 'edges': 3565, 'enhance': 3708, 'reduced': 8111, 'aaa': 705, 'saver': 8628, 'alkalines': 996, 'legend': 5852, 'heavier': 4891, 'towns': 10095, 'shorelines': 8909, 'detail': 3070, 'drain': 3370, 'cell': 2054, 'deadline': 2902, 'ripoff': 8452, 'tinkering': 10010, 'actiontec': 803, 'antonline.com': 1132, 'cars': 2000, 'curved': 2807, 'sloping': 9075, '1988': 278, '300e': 385, 'daewoo': 2848, 'lanos': 5761, 'freaks': 4383, 'armour': 1211, 'protective': 7756, 'coating': 2287, 'jolts': 5598, 'experiment': 3923, 'daughter': 2878, 'powerline': 7563, 'etherernet': 3806, 'module': 6492, 'overheat': 7068, 'detector': 3077, 'remain': 8196, 'ibook': 5116, 'fruitless': 4422, 'struggle': 9505, 'step': 9401, 'hack': 4761, 'ibooks': 5117, 'compensation': 2393, 'strongly': 9501, 'drink': 3395, 'coffee': 2302, 'thermal': 9922, 'carafe': 1971, 'coffeemaker': 2303, 'hotter': 5033, 'fresher': 4405, 'tasting': 9814, 'cup': 2793, 'capresso': 1966, 'mt-500': 6588, 'leaked': 5826, 'slightly': 9064, 'taste': 9811, 'japanese': 5562, 'zojirushi': 11178, 'leaks': 5828, 'mechanically': 6283, 'reuseable': 8385, 'mesh': 6330, 'filters': 4156, 'grounds': 4708, 'krups': 5714, 'proaroma': 7664, 'definite': 2966, 'thrown': 9971, 'concerned': 2446, 'beans': 1476, 'basics': 1453, '\x1athe': 4, 'mm': 6468, 'padding': 7129, 'modifications': 6488, '\x1aat': 1, 'slider': 9057, '\x1aafter': 0, 'mute': 6616, '\x1ai': 2, 'portion': 7521, '\x1ain': 3, 'matched': 6234, 'observations': 6865, 'exceptionally': 3862, 'chord': 2165, 'robust': 8480, 'rests': 8352, 'beneath': 1547, 'accidentally': 758, 'extraordinary': 3970, 'desire': 3050, 'foremost': 4328, 'uncomfortably': 10349, 'resorted': 8324, 'airspace': 962, 'frame': 4373, 'cooler': 2611, 'insulated': 5379, 'muffs': 6596, 'chatting': 2126, 'summer': 9604, 'exhaustion': 3883, 'y': 11127, 'splitter': 9288, 'crawl': 2715, 'disconnect': 3208, 'splitters': 9289, 'logitek': 6010, 'onboard': 6942, 'output': 7042, 'beam': 1473, 'earpieces': 3532, "5'10": 485, 'uglier': 10305, 'feals': 4086, 'palmone': 7152, 'tx': 10286, 'comments': 2349, 'comparison': 2379, 'lexus': 5886, 'concept': 2444, 'doubling': 3339, 'intriguing': 5451, 'realty': 7998, 'sobering': 9135, 'meaningful': 6272, 'ins': 5340, 'und': 10353, 'serves': 8815, 'purposes': 7823, 'acquire': 792, 'oem': 6899, 'precise': 7583, 'nav': 6659, 'phoenix': 7335, 'az': 1384, 'neighborhood': 6699, 'seven': 8833, 'freeways': 4394, 'exist': 3886, 'yards': 11134, 'intersection': 5436, 'clumsy': 2268, 'soft': 9140, 'disrupt': 3252, 'navigational': 6663, 'aid': 945, 'truly': 10223, 'reality': 7990, 'marketing': 6214, 'poi': 7479, 'interest': 5412, 'prone': 7735, 'advanced': 878, 'hints': 4951, 'scrambled': 8675, 'puzzle': 7833, 'h10': 4749, 'subscription': 9549, 'reinstalled': 8169, 'affecting': 903, 'iriver': 5503, 'desperately': 3058, 'bug': 1817, 'caution': 2038, 'fry': 4427, 'bazillion': 1469, 'initiallize': 5321, 'hawaii': 4841, 'alaska': 980, 'haha': 4763, 'attach': 1294, 'stands': 9355, 'bose': 1708, 'aftermarket': 917, 'mazda': 6258, 'f1500': 3990, 'crt': 2758, 'kvm': 5720, 'signs': 8968, 'horror': 5022, 'stories': 9447, 'overlay': 7073, 'associated': 1264, 'w': 10735, 'lcds': 5817, 'responds': 8332, 'flicker': 4248, 'refresh': 8133, 'monitors': 6513, 'printers': 7648, 'height': 4897, 'upper': 10494, 'tilt': 9999, 'jaggies': 5553, 'refesh': 8125, 'era': 3766, 'blacking': 1597, 'vga': 10646, 'nonstandard': 6779, 'cluster': 2270, 'arrows': 1226, 'context': 2558, 'multimedia': 6600, 'screwing': 8690, 'employer': 3654, 'choice': 2161, 'winxp': 10977, 'dreading': 3387, 've': 10603, 'eventual': 3823, 'xm': 11115, 'john': 5594, 'quaility': 7849, 'locally': 5983, 'lexmark': 5885, 'bells': 1538, 'whistles': 10921, 'epson': 3749, 'dull': 3444, 'mild': 6392, 'brown': 1788, 'haze': 4843, 'passably': 7207, 'fortune': 4352, 'inks': 5329, 'boots': 1698, 'speechless': 9258, 'compatable': 2385, 'promises': 7727, 'anycom': 1134, 'lynksys': 6091, 'finish': 4177, 'conflicting': 2482, 'oppinions': 6982, 'atleast': 1291, 'um': 10318, 'peace': 7259, 'gadgets': 4499, 'jointed': 5596, 'freak': 4381, 'nature': 6658, 'comfortably': 2341, 'dust': 3461, 'magnet': 6135, 'encrusted': 3677, 'lint': 5946, 'sneak': 9125, 'sticks': 9418, 'dna': 3290, 'sample': 8594, 'paradise': 7180, 'forensic': 4329, 'experts': 3928, 'paranoid': 7183, 'scratches': 8681, 'shiny': 8887, 'sansa': 8607, 'morals': 6526, 'guys': 4743, 'sister': 9005, 'concern': 2445, 'businesses': 1854, 'intermittent': 5423, 'problems-': 7671, 'staticy': 9374, 'blocky': 1634, 'apex': 1154, 'resaon': 8295, 'sport': 9301, 'dive': 3276, 'abused': 736, 'swear': 9689, 'loathe': 5981, 'usability': 10517, 'source': 9218, 'lugging': 6085, 'compressed': 2431, 'usb1': 10522, 'worry': 11055, 'rush': 8546, 'taped': 9800, 'italian': 5536, 'specification': 9248, 'thickness': 9927, 'turns': 10264, '3.5': 378, 'amazo': 1050, 'organize': 7008, 'adore': 872, 'spacing': 9227, 'anytime': 1141, 'hugely': 5071, 'overpriced': 7081, 'sorts': 9201, 'annoyed': 1103, 'belt': 1540, 'jogging': 5592, 'activity': 812, 'flex': 4243, 'biceps': 1564, 'constrict': 2534, 'muscle': 6606, 'slips': 9074, 'waistband': 10753, 'sweatpants': 9694, 'remains': 8200, 'treadmill': 10167, 'stays': 9387, 'advertise': 886, 'world': 11052, 'destined': 3062, 'forgotten': 4336, 'whilst': 10914, 'problmes': 7672, 'roll': 8488, 'distinct': 3261, 'buzzing': 1876, 'gracious': 4645, 'c01u': 1884, 'witih': 11000, 'ableton': 720, '10.4.7': 150, 'macbookpro': 6110, 'scratch': 8679, 'lag': 5745, 'distracted': 3268, 'builtin': 1825, 'centrino': 2068, 'enbale': 3663, '108mbps': 167, 'reproduce': 8271, "coudln't": 2657, 'enable': 3659, 'g.': 4483, 'bout': 1723, 'wpc54gx': 11070, 'h3': 4752, 'indestructable': 5275, 'square': 9318, 'crown': 2757, 'loosens': 6032, 'earpads': 3527, 'wobbly': 11016, 'stalks': 9345, 'shapes': 8858, 'bummer': 1833, 'components': 2422, 'impressive': 5211, 'translates': 10140, 'functionality': 4447, 'schedule': 8662, 'readily': 7979, 'keystrokes': 5664, 'reverting': 8396, 'accessed': 749, 'involves': 5484, 'trait': 10118, 'scientific': 8668, 'atlanta': 1288, 'vastly': 10598, 'pricetag': 7636, 'relatives': 8178, 'steering': 9398, 'sad': 8574, 'study': 9514, 'natural': 6656, 'slowed': 9082, 'wears': 10857, 'emergencies': 3641, 'continue': 2562, 'maintain': 6147, 'sofware': 9145, 'scanning': 8651, 'parameters': 7182, 'sided': 8951, 'definitively': 2969, 'scans': 8652, 'ages': 927, 'observed': 6866, 'modes': 6486, 'soho': 9146, 'troubleshoot': 10212, 'savvy': 8632, 'folds': 4297, 'packing': 7124, 'feeder': 4103, 'indicates': 5281, 'platform': 7430, 'trasnfer': 10152, "wasen't": 10817, 'picutered': 7372, 'hinges': 4949, 'fold': 4292, 'warp': 10803, 'headband': 4861, 'massive': 6228, 'cushioning': 2808, 'funky': 4455, 'styling': 9533, 'mattered': 6243, 'fate': 4069, 'gamble': 4503, 'central': 2066, 'missed': 6452, 'handled': 4781, 'released': 8182, 'zipper': 11175, 'doubled': 3337, 'pinched': 7380, 'dim': 3149, 'calculator': 1916, 'trash': 10151, 'struggled': 9506, 'firing': 4189, 'digits': 3148, 'rpn': 8518, 'devotee': 3096, 'hps': 5052, '11c.': 185, 'horribly': 5018, 'entries': 3735, 'bust': 1857, 'wobble': 11014, 'absent': 727, 'jvc': 5629, 'ha': 4756, 'fx55v.': 4477, 'array': 1217, 'offerings': 6907, 'daunting': 2880, 'jplug': 5606, 'shure': 8938, '500': 496, 'distributed': 3272, 'warranties': 10807, '119': 184, '499': 475, 'girl': 4587, 'tricky': 10189, 'bulb': 1826, 'saving': 8630, 'red': 8102, 'whirls': 10917, 'transmit': 10142, 'dismally': 3240, 'product-': 7690, 'disaster': 3195, '37': 415, 'mopre': 6524, 'owners': 7097, 'fritz': 4416, 'cs': 2775, 'supported': 9632, 'notable': 6793, 'folks': 4300, 'disposable': 3248, 'commodity': 2353, 'breakdowns': 1748, 'wow': 11065, 'refer': 8118, 'household': 5039, 'nov.': 6815, 'stock': 9427, 'informs': 5313, '29th': 361, 'anticipated': 1126, 'hill': 4943, 'discouraging': 3218, '201': 320, '7575': 596, 'american': 1062, 'metiocracy': 6350, 'relative': 8176, 'adjusted': 853, 'independently': 5273, 'cancellation': 1946, 'philps': 7334, 'arrange': 1215, 'reconnect': 8081, 'faq': 4050, 'insistent': 5351, 'refurbish': 8137, 'thereof': 9920, 'jumpdrives': 5618, 'jumpdrive': 5617, 'keychain': 5658, 'terk': 9878, 'multiswitch': 6602, '154.00': 232, 'asap': 1237, 'crapped': 2708, 'protection': 7755, 'pinch': 7379, 'wor': 11033, 'caramel': 1972, 'veiled': 10611, 'indistinct': 5287, 'abundant': 734, 'stax': 9383, 'superclean': 9616, 'clinical': 2237, 'hd600s': 4852, 'borrowed': 1706, 'w20': 10741, 'describing': 3033, 'auditioning': 1331, 'rare': 7940, '-small': 69, '-recording': 68, '-hold': 59, '-bugs': 55, 'corrupt': 2643, 'f***ed': 3982, '-software': 70, 'recorders': 8089, '-mic': 63, 'noice': 6764, '-device': 58, '-a': 50, 'ds-2200': 3425, 'smokes': 9109, 'ironic': 5507, '4.99': 438, 'matching': 6235, '3.99': 379, 'fw': 4476, 'blackberry': 1596, 'ma': 6105, 'tons': 10051, 'inserting': 5345, 'everyday': 3830, 'fuse': 4460, 'blown': 1641, 'relatively': 8177, 'roadtrip': 8471, 'drama': 3374, 'regard': 8146, 'vehicle': 10608, 'million': 6401, 'translate': 10139, 'equalizer': 3754, 'bless': 1618, 'conditions': 2459, 'favorite': 4080, 'equally': 3755, 'recharging': 8052, 'behavior': 1522, 'incarnation': 5234, 'tender': 9871, 'resuscitation': 8359, 'iogear': 5487, 'exists': 3892, 'deaths': 2916, 'suddenly': 9580, 'technologically': 9840, 'qa': 7842, 'necessity': 6682, 'riddled': 8427, 'clauses': 2209, 'exclude': 3873, 'policies': 7489, 'reputations': 8280, 'crutchfield.com': 2770, 'yr': 11153, '29.99': 358, '59.99': 518, 'crutchfield': 2769, 'boon': 1691, 'consitently': 2527, 'lips': 5949, 'vo': 10701, 'ad': 821, 'appolgies': 1179, 'happ': 4795, 'z-5450': 11158, 'points': 7485, 'ease': 3540, 'guarantee': 4723, 'tracking': 10103, 'cyber': 2832, 'searched': 8716, 'amazon.com': 1052, 'rigg': 8437, 'continued': 2563, 'receives': 8036, 'threads': 9955, 'futzed': 4469, 'half-': 4767, 'toooo': 10055, 'plier': 7455, 'recept': 8040, 'verry': 10633, 'vice': 10654, 'clamp': 2199, 'forcefully': 4324, 'snapped': 9119, 'securely': 8739, 'delicate': 2985, 'pays': 7246, 'retractable': 8370, 'feasible': 4091, 'exposing': 3949, 'gentle': 4551, 'trv33': 10231, 'clogged': 2247, 'heads': 4870, 'compound': 2425, 'lubricates': 6076, 'clogging': 2248, 'compounds': 2427, 'mix': 6463, 'stil': 9422, 'zr-90': 11183, 'abc': 711, 'warehouse': 10795, 'camcorder': 1929, 'packs': 7125, 'videotape': 10662, 'sons': 9182, 'basketball': 1455, 'coaches': 2281, 'deleted': 2982, 'inform': 5309, 'tossing': 10068, '340.00': 403, 'irive': 5502, 'realize': 7991, 'wrapped': 11075, 'smallest': 9094, 'palmtop': 7155, 'reduces': 8112, 'remaining': 8199, 'incessantly': 5235, 'injury': 5325, 'chinese': 2155, 'meat': 6280, 'bones': 1673, 'microtrack': 6374, 'drains': 3373, 'woefully': 11017, 'wgt624v3': 10899, 'connetion': 2505, 'desktops': 3057, 'novelty': 6816, 'brining': 1774, 'ibm': 5115, 'r51': 7900, 'vpn': 10729, 'rediculous': 8105, 'browsing': 1793, 'msn': 6584, 'yahoo': 11130, 'routers': 8507, 'thinkvantage': 9938, '95': 661, '97': 665, '@': 684, '54mbs': 513, 'winsocks': 10974, 'winsockxp': 10975, 'rebooted': 8013, 'website)and': 10864, 'yea': 11136, 'stability': 9336, 'conection': 2465, 'hammered': 4772, 'upsets': 10499, 'bin': 1578, 'cared': 1979, 'completes': 2412, 'cnnot': 2277, 'hated': 4834, 'cat': 2021, 'stranded': 9460, 'enjoyed': 3715, 'january': 5560, 'iopd': 5488, 'upsetting': 10500, 'finlay': 4180, 'serial': 8806, 'angry': 1092, 'dont': 3320, 'signed': 8963, 'vonage': 10724, 'tone': 10046, 'everthing': 3825, 'dad': 2847, 'clue': 2265, 'flee': 4240, 'droves': 3412, 'p.': 7106, 'o.': 6853, 's.': 8556, 'pos': 7524, 'offset': 6917, 'layers': 5808, 'crc': 2718, 'im': 5168, 'hasnt': 4826, 'recalled': 8025, 'crummy': 2766, 'recognizable': 8063, 'gift': 4572, 'school': 8666, 'f8v366': 3993, 'apl': 1156, 'f8v367': 3994, 'you)': 11148, 'f8v7067': 3995, '15!)': 224, 'occupied': 6884, 'twin': 10280, 'wishing': 10993, 'skipped': 9035, 'father': 4070, 'gifts': 4573, 'iron': 5505, 'precisely': 7584, 'cooled': 2610, 'styed': 9529, 'broadcasts': 1779, 'radios': 7910, 'filliped': 4149, 'expandable': 3897, 'mischance': 6437, 'reimbursement': 8164, 'team': 9826, 'fulfilled': 4436, 'sellers': 8767, 'acquisition': 794, 'luckier': 6080, 'whatsoever': 10903, 'practical': 7571, 'boo': 1676, 'footsteps': 4318, 'birthday': 1590, 'goods': 4629, 'confirmed': 2481, '1.0.5.0': 120, '1.12': 124, 'uninstalling': 10407, 'facility': 4008, 's182': 8559, 'spins': 9279, 'daxon0016s': 2882, 'compaq': 2371, '7970': 609, 'amd': 1060, 'k7': 5633, 'chipset': 2159, 'frequent': 4402, 'irq': 5508, 'sharing': 8861, 'ot': 7021, 'fa310,fa311': 3998, 'fa312': 3999, 'irqs': 5509, 'reformating': 8131, 'absolutly': 731, 'mmorpg': 6469, 'log': 5998, 'crash': 2711, 'destroys': 3065, 'forcing': 4326, 'mmorpgs': 6470, 'edition': 3570, 'beg': 1510, 'cheapest': 2130, 'tower': 10093, 'lightening': 5911, 'strike': 9491, 'dfe-530tx+': 3099, 'minimum': 6419, '10.2': 147, '10.3': 148, 'realtek': 7996, 'modern': 6485, 'gigabytes': 4578, 'gigabyte': 4577, 'canceled': 1943, 'velocity': 10615, 'uncompatibility': 10350, 'hace': 4759, 't7200': 9754, '7200': 587, '7400': 592, '24.00': 335, 'depot': 3025, 'clearance': 2218, '44.00': 455, 'september': 8802, 'borderline': 1702, 'powerjolt': 7562, 'overwhelming': 7094, 'public': 7789, 'transportation': 10149, 'majority': 6152, 'block': 1629, 'hn110': 4970, 'beefy': 1501, 'scrawny': 8683, 'batt': 1463, 'tad': 9766, 'thus': 9981, 'hn': 4969, 'wind': 10958, 'blowing': 1640, 'merchandise': 6320, 'authorization': 1338, 'hefty': 4896, 'stethascope': 9410, 'warrenty': 10812, 'crackling': 2697, 'whipping': 10916, 'scrap': 8676, 'resolder': 8316, 'resoldered': 8317, 'persisted': 7311, 'im3c': 5169, 'finding': 4165, 'mojo': 6494, 'wonderfully': 11024, 'propreitary': 7746, 'copying': 2624, 'copied': 2619, 'tries': 10192, 'adding': 833, 'floppy': 4268, 'seventh': 8834, 'work??,': 11039, 'degree': 2976, 'distances': 3259, 'objects': 6859, 'skycaddie': 9040, 'modify': 6490, 'attaches': 1298, 'again,': 921, 'often,': 6919, 'probally': 7666, 'skygolf': 9041, 'modified': 6489, 'weaker': 10853, 'clipped': 2239, 'handles': 4782, 'interfaces': 5418, 'correction': 2639, 'tin': 10008, 'nickel': 6747, 'oxygen': 7101, 'tipped': 10016, 'sheilded': 8872, 'supreme': 9645, 'cheapie': 2131, 'visible': 10687, 'oscilloscope': 7019, 'leg': 5849, 'bidding': 1568, 'estate': 3798, 'wrong-': 11088, 'confusion': 2490, 'standards': 9352, 'reach': 7969, 'production)-': 7692, 'largely': 5772, 'bluray': 1648, 'implements': 5196, 'pins': 7387, 'versus': 10640, 'designer': 3047, 'mentioning': 6316, 'harsh': 4824, 'treatment': 10169, 'shielding-': 8882, 'toughened': 10081, 'certified': 2078, 'nuclear': 6830, 'fallout': 4032, 'blow': 1639, 'entertainment': 3729, 'fare': 4054, 'emp': 3649, 'plusses': 7467, 'increased': 5259, 'sturdiness': 9522, 'branding': 1741, 'worrying': 11056, 'tmds': 10026, '80': 621, 'richer': 8423, 'vibrant': 10651, 'digitally': 3146, 'suckers': 9574, 'abide': 714, 'presence': 7603, 'favorable': 4078, 'flexibe': 4245, 'st': 9334, 'louis': 6052, 'intereference': 5411, 'dlo': 3287, 'junky': 5625, 'compression': 2432, 'ex81lp': 3844, 'medical': 6289, 'blasting': 1609, 'er-6': 3763, 'dissapointed': 3254, 'studied': 9512, 'vacuum': 10572, 'earplug': 3533, 'environmental': 3740, 'attenuated': 1309, 'ex51': 3841, '325': 393, 'encouraged': 3675, "new'model-": 6726, 'effective': 3580, 'supposted': 9639, 'ocz': 6893, 'msh-128': 6583, '20th': 326, 'p100': 7109, 'c:13:01': 1893, 'travled': 10163, 'arizona': 1206, 'x51v.': 11106, 'recoginize': 8060, 'oneday': 6947, 'wiped': 10980, 'recived': 8058, 'swindled': 9699, 'formating': 4341, 'deletion': 2984, 'remedy': 8203, 'disceted': 3199, 'suffering': 9584, 'bulgaria': 1827, 'fortunate': 4350, 'mabey': 6106, 'mark': 6208, 'stitched': 9425, 'supple': 9626, 'leather': 5837, 'scratched': 8680, 'speck': 9253, 'toughskin': 10082, 'heal': 4874, 'constant': 2532, 'smashed': 9101, 'totaly': 10072, 'inaudible': 5229, 'lean': 5829, 'renders': 8228, 'fhd351': 4124, 'c340': 1887, 'pilots': 7377, 'guaranteed': 4724, 'wrongly': 11089, 'assumed': 1267, 'achieve': 784, 'valuable': 10580, 'notification': 6810, 'illegal': 5160, 'stones': 9431, 'publicity': 7790, 'legal': 5851, 'actions': 802, 'ironed': 5506, 'crumbled': 2765, 'peeling': 7265, 'quot;burned': 7883, 'out"': 7028, '450': 460, 'discussion': 3228, 'admitted': 864, 'cart': 2001, 'deals': 2912, 'disney': 3242, 'convention': 2591, 'scandisk': 8647, 'invented': 5468, 'tecnology': 9844, 'costing': 2652, '50.00': 495, 'recovered': 8096, 'anatomy': 1083, 'dare': 2865, 'hooks': 5002, 'unuseable': 10466, 'jiggle': 5578, 'sweet': 9697, 'adds': 843, 'considerable': 2515, 'tie': 9988, 'settles': 8830, 'generates': 4543, 'uh': 10308, 'pt': 7785, 'convinced': 2605, 'persuading': 7319, 'busy': 1859, 'reference': 8121, 'permission': 7302, 'limitations': 5930, 'inclined': 5241, 'optical': 6989, 'shined': 8885, 'wrist': 11079, 'mushes': 6607, ':-/': 679, 'donate': 3316, 'ball': 1427, 'awesomefun': 1374, 'isntalled': 5524, 'ed': 3562, 'coincidence': 2306, 'reminds': 8209, 'overheats': 7070, 'windowsxp-kb884020-x86-enu.exe': 10965, '-------------------------------------': 31, 'di-624': 3105, 'encrpted': 3676, 'searches': 8717, 'endlessly': 3687, 'bps': 1733, '1499.99': 221, 'honor': 4996, 'agreed': 938, 'tvhd': 10269, 'august': 1333, 'amozon': 1069, "dosen't": 3333, '......': 78, 'protocol': 7761, '524': 507, 'd.': 2843, 'di-52': 3104, 'trained': 10115, 'consisted': 2522, 'script': 8692, 'whizzes': 10924, 'mastered': 6230, 'voicemails': 10705, '3:00': 421, 'afford': 908, 'epiphany': 3745, 'ceo': 2071, 'stephen': 9402, 'joe': 5588, 'responded': 8330, '1.23': 128, 'pings': 7382, 'blink': 1623, 'misery': 6440, 'forces': 4325, ':(': 676, 'sand': 8600, 'walkie': 10768, 'talkies': 9782, 'walkies': 10769, 'humberto': 5079, 'gonzalez': 4624, 'costa': 2649, 'ric': 8421, 'usefull': 10528, '283': 356, '1311': 209, 'registration': 8153, 'warrany': 10810, 'departments': 3017, '2003': 313, '2004': 314, 'invoice': 5480, 'belittled': 1532, 'fyi': 4479, 'cdos': 2043, 'kds': 5643, 'trays': 10165, 'returnable': 8379, 'mart': 6221, 'fashioned': 4059, 'adorama': 871, 'pkg': 7405, '270': 351, 'papers': 7173, 'instructed': 5373, 'aug': 1332, '28th': 357, 'gal': 4502, 'boombox': 1686, 'functioned': 4448, 'boomboxes': 1687, 'roady': 8475, 'delphi': 2997, 'los': 6037, 'angeles': 1088, 'xt': 11122, 'xm2go': 11116, 'receivers': 8035, 'hissy': 4957, 'monaural': 6503, 'imo': 5187, 'plenty': 7452, 'interruptions': 5435, 'professionally': 7697, 'voided': 10709, 'subscriptions': 9550, 'joined': 5595, 'allloooooonnnng': 1002, 'relevant': 8183, 'cancellations': 1947, 'accounts': 773, 'charges': 2116, 'energizers': 3694, '1600mah': 238, 'energizer': 3693, '2500mah': 345, 'duracells': 3458, 'upgrading': 10487, 'rayovac': 7961, 'rechargeables': 8048, 'rayovacs': 7962, "spec'ed": 9243, 'appearing': 1167, '4th': 479, '5th': 525, 'lucky': 6082, 'trusty': 10228, 'bags': 1422, 'idpod': 5139, 'headed': 4863, 'bending': 1546, 'earclips': 3521, '96': 663, 'beautifull': 1487, 'weekly': 10875, 'dosent': 3334, 'tim': 10002, 'disconnects': 3211, '2_0_0_7': 362, 'published': 7792, 'nov': 6814, 'zboard': 11164, 'playbility': 7435, 'efficiency': 3584, '-the': 71, 'mirroring': 6433, 'interpret': 5431, 'command': 2346, 'patches': 7223, '-according': 51, 'winamp': 10957, '-you': 73, 'macros': 6119, 'autofire': 1342, 'numpad': 6841, 'differently': 3136, 'compacted': 2364, 'attack': 1301, 'commands': 2347, 'pvping': 7834, 'warcraft': 10792, 'arsenal': 1227, 'spells': 9266, 'abilities': 715, 'programmed': 7709, 'remembering': 8207, 'wailed': 10751, 'remembered': 8206, 'bindings': 1581, 'revamping': 8386, 'enhancing': 3711, 'contoured': 2568, 'quiet': 7873, 'hums': 5083, 'audiophile': 1328, 'overly': 7077, 'omit': 6937, 'v2.50': 10554, 'wli': 11006, 'tx4': 10287, 'g54hp': 4491, 'digit': 3144, 'hex': 4921, '64': 546, 'encryption--': 3681, 'lame': 5748, 'crud': 2761, 'fades': 4017, 'smells': 9106, 'shoppers': 8906, 'bringing': 1772, 'parties': 7196, 'workouts': 11049, 'dishnetwork': 3234, '942': 660, '21"': 328, 'traditional': 10110, 'pounds': 7553, '19"': 256, 'weigh': 10879, 'bobbed': 1657, 'bend': 1545, 'archos': 1199, '8/26': 620, '10/1': 152, 'delayed': 2980, 'align': 992, 'centimeters': 2065, 'cardstock': 1977, 'trim': 10196, 'cutter': 2823, 'experiance': 3917, 'measure': 6277, 'previewed': 7628, 'beginner': 1515, 'stamper': 9349, 'paperstock': 7174, 'justice': 5626, 'glossy': 4606, 'beat': 1480, 'garim': 4518, 'summit': 9605, 'identify': 5132, 'sideways': 8954, 'overexposed': 7064, 'viewsonic': 10672, 'immediatly': 5183, 'ps2': 7777, 'creepy': 2733, 'washed': 10820, 'pstwo': 7783, '870': 639, 'iway': 5545, 'maryland': 6225, 'york': 11146, 'island': 5522, 'jersey': 5573, 'turnpike': 10263, 'chart': 2119, 'obstructions': 6869, 'recalculate': 8020, 'acted': 799, 'retried': 8375, 'blocks': 1633, 'bronx': 1784, 'journey': 5601, 'recalculating': 8021, 'visiting': 10691, 'calculating': 1914, 'operated': 6970, 'stretch': 9486, 'redirecting': 8107, '1.2.0': 126, 'charting': 2120, '212': 329, 'ny': 6848, 'calculations': 1915, 'c530': 1889, '350c': 408, 'packaged': 7119, 'eleven': 3618, '865': 637, 'cities': 2192, 'georgia': 4562, 'tybee': 10288, 'pine': 7381, 'mountain': 6551, 'newnan': 6732, 'rely': 8194, 'episodes': 3746, 'newly': 6731, 'highways': 4940, 'reacting': 7973, 'sequences': 8804, 'sixty': 9018, 'way.)two': 10845, 'views': 10671, 'enroute': 3721, 'passanger': 7208, 'wim': 10950, 'unfortunalty': 10389, 'booted': 1696, 'unfortunaltey': 10388, 'economical': 3560, 'tweak': 10273, 'gotcha': 4636, 'specfic': 9244, 'neighbors': 6700, 'equal': 3752, 'rejection': 8172, 'dropouts': 3407, 'magellan': 6128, 'roadmate': 8469, 'locating': 5986, 'sytem': 9731, 'rw': 8549, 'moreover': 6527, 'pardon': 7185, 'machines.': 6115, 'cpus': 2692, '3ghz': 425, 'solve': 9161, 'rudeness': 8525, 'easycd': 3547, 'creator': 2727, 'uninstallation': 10404, 'roxio': 8514, '10gb': 169, 'lie': 5897, 'nerovision': 6707, '1gb': 286, 'quarrel': 7856, 'patiently': 7228, 'freed': 4387, '720': 586, '710': 582, 'wonder': 11021, 'et': 3804, 'al': 975, 'ridicolous': 8432, 'software(s': 9143, 'incompetence': 5250, '720ul': 590, '710ul': 583, 'manning': 6176, 'ia': 5112, 'runaround': 8539, 'mercy': 6324, '...............': 84, 'cardbus': 1975, 'shock': 8895, 'bsod': 1798, 'inoperative': 5335, 'narrow': 6649, 'identifying': 5133, 'fa511': 4000, 'culprit': 2789, 'inactivity': 5224, 'wildly': 10947, 'inappropriate': 5227, 'responses': 8334, 'requesting': 8283, 'escalated': 3781, 'permissions': 7303, 'contradicted': 2572, 'enabled': 3660, 'straightforward': 9457, 'article': 1229, 'ninety': 6757, '3com': 423, 'smc': 9103, 'xircom': 11114, 'tremendous': 10177, 'seprately': 8800, 'gimic': 4583, 'contribute': 2578, 'cox': 2685, 'tivo': 10024, 'series2': 8808, 'signing': 8967, 'commitment': 2352, '12.95': 191, 'surprised': 9665, 'seperate': 8798, 'relies': 8188, 'tuners': 10251, 'tricycle': 10190, 'interuppted': 5438, 'corner': 2631, '1/4': 140, 'asnd': 1251, 'similarly': 8980, '42': 450, 'akai': 971, 'plasma': 7423, 'wishlist': 10994, 'suggestions': 9595, 'compete': 2394, 'artifacts': 1231, 'dnr': 3291, 'stuttered': 9525, 'heath': 4888, 'clubs': 2264, 'rebroadcasts': 8017, 'circular': 2188, 'minumum': 6427, 'custumer': 2817, 'military': 6396, 'deployment': 3024, 'aol': 1147, 'blogs': 1635, 'tanking': 9794, 'absolute': 728, 'untouched': 10463, 'overnight': 7078, 'possibilites': 7532, 'lamination': 5749, 'ridges': 8431, 'smoothe': 9111, 'pockets': 7473, 'intense': 5398, 'finicky': 4176, 'brain': 1736, 'surgery': 9660, 'sincerely': 8993, 'befw11s4': 1509, 'unobtrusive': 10427, 'hide': 4928, 'furniture': 4458, 'allowing': 1008, 'equipped': 3760, 'howver': 5044, 'locking': 5991, 'borrow': 1705, 'painlessly': 7141, 'stream': 9473, 'submersed': 9544, 'internally': 5426, 'waterproofness': 10836, 'baloney': 1428, 'integrity': 5390, 'humidity': 5080, 'invested': 5473, 'mapsource': 6198, 'absolutley': 730, 'stellar': 9399, 'bliss': 1626, 'klipsch': 5691, 'backordered': 1405, 'retailer': 8362, 'inc.': 5233, '360': 411, 'tax': 9817, 'occurances': 6887, '125': 200, '970': 666, "hasen't": 4825, 'guessed': 4730, 'refered': 8120, 'lube': 6075, 'klipschhorns': 5692, 'rocked': 8482, 'promedia': 7722, 'fabulous': 4004, 'division': 3281, 'vow': 10727, 'cent': 2061, 'inc': 5232, 'uncooperative': 10352, 'unsympathetic': 10459, 'curt': 2805, 'unprofessional': 10440, 'ultimately': 10314, 'elswhere': 3628, 'klipsh': 5693, 'designing': 3048, 'heed': 4895, 'garage': 4515, 'reviewed': 8399, 'blast': 1606, 'lacie': 5736, 'swipes': 9702, 'biometric': 1584, 'sensor': 8789, 'swiping': 9703, 'partioned': 7198, 'partition': 7199, 'partion': 7197, 'biometrics': 1585, 'slam': 9046, 'stomp': 9429, 'cease': 2049, 'forbid': 4320, 'jiggled': 5579, 'reinserted': 8167, 'jan': 5558, 'md7001': 6266, 'prominently': 7724, 'protectors': 7758, 'lifespan': 5906, 'extent': 3961, 'accurately': 779, 'dislike': 3238, 'invisible': 5479, 'shield': 8879, 'nails': 6639, 'tacky': 9763, 'produced': 7686, 'boxwave': 1727, 'cleartouch': 2224, 'fellowes': 4113, 'writeright': 11083, 'm130': 6098, 'imitators': 5179, 'triumph': 10206, 'substance': 9553, 'ruthlessly': 8548, 'exploits': 3941, 'naivete': 6640, 'salespeople': 8587, 'for"---but': 4319, 'interconnects': 5410, 'optimal': 6992, 'gauge': 4525, 'fraction': 4369, 'disgusted': 3232, 'crucial': 2760, 'markets': 6216, 'win98se': 10956, 'promising': 7728, 'advertising': 890, 'production': 7691, 'a612': 702, 'waits': 10759, 'flukey': 4277, 'pro4aat': 7663, 'vinyl': 10676, 'breathe': 1755, 'leatherette': 5838, 'washing': 10822, 'ocean': 6892, 'truck': 10219, 'nestled': 6708, 'bullet': 1830, 'gimick': 4584, 'costly': 2655, 'ratpadzgs': 7952, 'ratpadz': 7951, 'compaired': 2367, 'ratpad': 7950, 'density': 3012, 'o(tm': 6852, 'g7': 4494, 'gs': 4716, 'curser': 2803, 'mousepad': 6557, 'jittered': 5581, 'indicative': 5285, 'grooves': 4702, 'budge': 1810, 'stickers': 9416, 'recomend': 8070, 'bubbles': 1802, 'tennessee': 9874, 'technically': 9835, 'complicated': 2419, 'moreso': 6528, 'peripherals': 7299, 'grandchildren': 4659, 'sweat': 9691, 'becoming': 1493, 'establish': 3797, 'dunno': 3451, 'headache': 4860, 'troublshooting': 10216, '22': 330, 'wizards': 11003, 'beasty': 1479, 'dp': 3359, 'g321': 4487, 'z320': 11162, 'psc': 7778, '1250': 201, 'photosmart': 7353, '7310': 591, 'parallel': 7181, 'laserjet': 5778, '1100': 177, 'waves': 10842, 'sensed': 8783, 'secured': 8737, 'wps54gu2': 11073, 'closer': 2254, 'l': 5722, 'pinned': 7386, 'methods': 6348, 'unnoticable': 10424, 'mp530': 6574, 'lengthy': 5860, 'reenter': 8117, 'traveldrive': 10155, 'logo': 6011, 'ilussion': 5167, 'didn': 3124, 'services': 8817, '250.00': 342, 'previousl': 7630, 'grievances': 4689, 'retraction': 8373, 'bounces': 1720, 'threatens': 9957, '5month': 521, 'tint': 10013, 'tube': 10235, 'posts': 7543, 'som': 9165, 'reseting': 8309, 'sexy': 8841, 'moves': 6565, 'lightly': 5915, 'pity': 7396, 'lowercase': 6063, 's510': 8563, 'subtract': 9560, 'wide': 10933, 'fancy': 4041, 'cat5': 2022, 'sheilding': 8873, 'oz': 7103, '12.0': 189, '14.0': 213, '10.0': 146, '4.0': 433, 'deceived': 2924, '30.00': 382, 'clix': 2242, 'gel': 4536, 'ooze': 6960, 'staple': 9356, 'bean': 1474, 'definately': 2962, 'outs': 7047, 'two+': 10284, 'vendors': 10617, '4750': 466, 'smoothed': 9112, 'fanned': 4043, 'fed': 4098, 'champ': 2093, 'laying': 5809, 'nokia': 6769, '6682': 559, 'voltage': 10716, 'isse': 5530, 'ir': 5500, 'jet': 5574, 'apps': 1189, 'members': 6305, 'dye': 3492, 'deterioration': 3083, 'stained': 9343, 'bands': 1431, 'however(before': 5043, 'broke)was': 1782, 'organization': 7007, 'commonly': 2355, 'characters': 2111, 'encounters': 3673, 'transferring': 10129, 'correcting': 2638, 'undisclosed': 10368, 'emergency': 3642, 'cranking': 2705, 'crank': 2703, 'heartattack': 4884, 'voltages': 10717, 'cope': 2617, 'typewriter': 10293, 'q': 7838, 'spaced': 9224, 'overlapping': 7072, 'spaces': 9225, 'esoteric': 3786, 'tabs': 9762, 'binds': 1582, 'resistance': 8312, 'gears': 4533, 'stripped': 9496, 'guidelines': 4734, 'warrantee': 10805, 'diminish': 3153, 'closely': 2253, 'describe': 3031, 'overcompressed': 7061, 'mp3s': 6572, 'mushy': 6608, 'slanted': 9047, 'oversized': 7087, '|\\': 11187, 'accomodate': 764, 'consequence': 2509, 'miniaturized': 6413, 'shell': 8875, 'programmer': 7710, 'pipe': 7390, 'escape': 3782, 'character': 2108, 'immideatley': 5185, 'styli': 9532, 'throwing': 9970, 'placement': 7408, 'av': 1351, 'reprogrammed': 8276, 'narrowed': 6650, 'eaten': 3549, 'lg': 5888, 'theory': 9917, 'ge': 4530, 'superadio': 9613, 'dissimilar': 3257, 'boards': 1655, 'superadio2': 9614, 'overated.piossibly': 7056, 'recieve': 8053, 'steps': 9406, 'ehter': 3592, '55': 514, 'phillips': 7333, 'conked': 2494, 'learning': 5833, 'defunct': 2971, 'reservations': 8306, 'fears': 4090, 'leds': 5845, 'endure': 3691, 'monsters': 6519, 'whirred': 10919, 'vcd': 10599, 'countries': 2668, 'recommed': 8073, 'intutive': 5463, 'occational': 6883, 'burden': 1839, 'bound': 1722, 'restrictions': 8351, 'touchpad': 10077, 'faults': 4075, 'superseding': 9623, 'pushes': 7827, 'rename': 8224, 'named': 6644, 'tags': 9769, 'unprovoked': 10441, 'negligence': 6696, 'overlook': 7075, 'craps': 2710, 'versed': 10637, 'disable': 3179, 'bs': 1797, 'unlock': 10419, 'staying': 9386, 'ordinary': 7004, 'pliers': 7456, 'evidence': 3837, 'refute': 8143, 'st_jx410': 9335, 'strde': 9470, '197': 263, 'monoral': 6516, 'jx410': 5630, 'onkyo': 6949, 'sr304': 9326, 'expandability': 3896, 'orchestra': 6998, 'softly': 9141, 'flashes': 4224, 'capacitor': 1963, 'blend': 1617, 'rolloff': 8492, 'decoder': 2938, 'pll': 7457, 'khz': 5668, 'pilot': 7376, 'selectivity': 8760, 'alternate': 1035, 'flippin': 4259, 'steaming': 9392, 'turd': 10258, 'china': 2154, 'claps': 2200, 'scammed': 8645, 'comparable': 2372, 'status': 9382, 'discontinue': 3212, 'gashes': 4521, 'dings': 3161, 'unpresentable': 10439, 'rhinoskin': 8420, 'latching': 5786, 'boxwave.com': 1728, 'hardcase': 4808, 'availab': 1354, 'le': 5818, 'liner': 5936, 'sliding': 9061, 'motions': 6541, 'march': 6201, 'lip': 5948, 'reminding': 8208, 'insufficient': 5378, 'delighted': 2987, 'rugged': 8527, 'dealership': 2909, 'toughskins': 10083, 'clips': 2241, 'rough': 8500, 'enjoys': 3718, 'pastime': 7221, 'melt': 6303, 'dependant': 3020, 'holy': 4985, 'grail': 4652, 'itchy': 5538, 'fabric': 4002, 'crushed': 2768, 'review-': 8398, 'substandard': 9554, 'avoi': 1361, 'surroundings': 9672, 'extention': 3962, 'performed': 7289, 'mids': 6384, 'treble': 10171, 'argh': 1203, 'discharged': 3201, 'belkins': 1536, 'seiko': 8753, 'promptly': 7733, 'skins': 9031, 'shelled': 8876, 'definetly': 2965, 'iskin': 5521, 'waiste': 10754, 'exercising': 3882, 'safety': 8581, 'meant': 6274, 'incher': 5237, 'brighter': 1766, 'bulkier': 1828, 'confused': 2487, 'psyched': 7784, 'formats': 4342, 'triple': 10200, 'homemade': 4987, 'confirm': 2479, 'gon': 4622, 'na': 6638, 'breaker': 1749, 'realizing': 7993, 'subsequent': 9551, 'lb': 5814, 'miserably': 6439, 'flopped': 4267, 'audiovox': 1330, 'roadtrips': 8472, 'temperatures': 9860, 'shelves': 8878, 'parents': 7186, 'sat': 8611, 'interior': 5421, 'resent': 8304, 'desert': 3038, 'funds': 4453, 'certificate': 2075, 'processing': 7680, 'practices': 7575, 'inventory': 5470, 'prove': 7764, 'centric': 2067, 'unwooded': 10472, 'bush': 1851, 'valleys': 10579, 'overhead': 7067, 'canopy': 1956, 'confrm': 2485, 'tramper': 10120, 'qualities': 7852, 'oziexplorer': 7104, 'percentage': 7280, 'meters': 6346, 'guatemala': 4728, 'certificates': 2076, 'inexpesive': 5300, 'preteen': 7619, 'indicate': 5279, 'symbols': 9717, '40.00': 441, 'wigging': 10943, 'daughters': 2879, 'bedroom': 1498, 'lookes': 6022, 'dumpster': 3450, 'spacebar': 9223, 'glitch': 4604, 'twist': 10281, 'handling': 4783, 'crush': 2767, 'sick': 8948, 'phasing': 7328, 'verbal': 10622, 'affirmations': 905, 'records': 8092, 'wav': 10840, 'delivers': 2992, 'fussier': 4466, 'simplest': 8984, 'pauses': 7235, 'forwards': 4358, 'reverses': 8394, 'specify': 9252, 'markers': 6211, 'chapters': 2107, 'defined': 2963, 'grabs': 4643, 'spartan': 9234, 'smple': 9116, 'win2': 10952, 'novice': 6819, 'hater': 4835, 'humanity': 5076, 'waking': 10763, 'labeled': 5727, 'organized': 7009, 'layed': 5806, 'confusingly': 2489, 'buzzer': 1875, 'increment': 5265, 'timex': 10006, 'comapared': 2326, 'g-54lp(beware': 4482, 'g54lp': 4492, 'ex': 3840, '71': 581, '81': 630, 'e2c': 3508, 'nasty': 6653, 'evidently': 3839, 'sm': 9091, 'thee': 9912, 'rewrites': 8416, '80.00': 622, 'passport': 7216, 'x50': 11104, 'escort': 3784, 'radar': 7906, 'reseller': 8300, 'cal"s': 1911, 'thumbwheel': 9976, 'cigarette': 2178, 'ignition': 5146, 'excessive': 3866, '�': 11196, 'parked': 7191, 'sun': 9606, 'engineers': 3704, 'accounted': 772, 'margin': 6203, 'country': 2669, 'ski': 9025, 'troubling': 10215, 'furthermore': 4459, 'coaxial': 2289, 'degrades': 2975, 'dropping': 3409, 'partial': 7193, 'dysfunctional': 3496, 'monroe': 6517, 'toledo': 10040, 'detroit': 3089, 'radi': 7907, 'shutoff': 8941, 'bel': 1527, 'rx65': 8551, 'selfcal': 8763, 'requiered': 8285, 'valentine': 10575, 'detectors': 3078, 'http://www.radarbusters.com/': 5063, 'www.007radardetectors.com': 11097, 'www.consumersearch.com': 11099, 'surrounding': 9671, 'fat': 4065, 'browser': 1790, 'spinning': 9278, 'didnt': 3125, 'one(that': 6945, 'one---': 6946, 'debate': 2918, '369.00': 413, '7/19/05': 571, 'birth': 1589, 'may)and': 6255, '93.00': 658, 'pissed': 7391, 'idle': 5138, 'neet': 6691, 'especiatlly': 3789, '1:1': 285, 'delivered': 2990, 'sunday': 9607, 'watched': 10829, 'football': 4316, 'season': 8721, 'blaming': 1602, 'ie': 5140, 'skypephone': 9043, 'competitor': 2399, 'numerous': 6840, 'postponements': 7542, 'asus': 1278, 'p525': 7111, 'smartphone': 9098, 'ce': 2048, 'gsm': 4717, 'chats': 2124, 'whereas': 10910, 'processors': 7682, 'alergic': 986, 'symbian': 9715, 'sonyericsson': 9184, 'logging': 6002, 'proticol': 7760, 'purchace': 7810, 'united': 10411, 'postal': 7538, 'expierance': 3929, 'recieving': 8057, 'tonight': 10050, 'tanks': 9795, 'experiencing': 3922, 'figures': 4139, 'malfunctions': 6162, 'linkage': 5940, 'babysit': 1392, 'inconsistently': 5253, 'graps': 4667, 'disclosed': 3203, 'doc': 3294, 'misses': 6453, 'page(s': 7133, 'expedient': 3909, 'acrobat': 796, 'omitted': 6938, '+90': 22, 'fouls': 4359, 'swing': 9700, 'fujitsu': 4435, 'revisions': 8410, 'g700ap': 4495, 'appalling': 1159, 'report': 8262, 'pixma': 7404, 'ip6000d': 5491, 'laid': 5746, 'anothe': 1109, 'chemical': 2145, 'squishy': 9325, 'beds': 1499, 'slippers': 9072, 'brookstone': 1785, 'theese': 9913, 'fvs338': 4475, 'throughput': 9967, 'fvs318': 4474, '1.2mbps': 131, 'infuriated': 5316, 'comprehension': 2430, 'deptartment': 3028, 'netgears': 6714, 'wich': 10932, 'resulted': 8355, 'insist': 5349, 'sued': 9581, 'venting': 10620, 'prosafe': 7750, '30mbs': 387, 'fsv318v3': 4430, 'measured': 6278, '25mbs': 347, '6.5mbs': 532, 'keyword': 5665, 'blocking': 1632, 'checkbox': 2139, '5mbs': 520, 'keywords': 5666, 'surprisingly': 9667, 'varying': 10595, 'waterproof': 10835, 'clever': 2226, 'gadget': 4498, 'mising': 6443, 'limits': 5932, 'typical': 10294, 'limitation': 5929, 'thingie': 9932, 'fumble': 4443, 'lifesaver': 5905, '50cent': 501, 'dance': 2859, 'airline': 954, 'craze': 2716, ';-)': 681, 'tiresome': 10019, 'canceling': 1944, 'discernible': 3198, 'cloth': 2259, 'loop': 6027, 'stronger': 9499, 'machinery': 6113, 'yanked': 11132, 'surround': 9669, 'he-592': 4857, 'radioshack': 7911, 'receipts': 8031, 'standpoint': 9354, 'outstanding': 7050, 'planes': 7417, 'trains': 10117, 'pennies': 7270, 'silicone': 8973, 'touchpoints': 10078, 'flange': 4218, 'boat': 1656, 'sleeves': 9053, 'picky': 7365, 'lows': 6068, 'prefers': 7595, 'crowded': 2756, 'affordable': 909, 'educate': 3573, 'impedence': 5191, 'spectrum': 9256, 'tangle': 9790, 'untangling': 10461, 'thes': 9923, 'proving': 7773, 'troublesome': 10214, 'hurts': 5095, 'pocketbooks': 7472, 'meantime': 6275, 'tvs': 10271, 'conference': 2467, 'shortcomings': 8912, 'baffles': 1420, 'varient': 10588, 'resetted': 8310, 'lowering': 6065, 'duplex': 3453, 'airplane(with': 958, 'deluxe': 2998, 'motivation': 6542, 'infinity': 5305, 'desperation': 3059, 'gen': 4538, 'disappeared': 3186, 'titles': 10023, 'pot': 7545, 'pdf': 7258, 'artwork': 1235, 'official': 6913, 'odors': 6897, 'implemented': 5195, 'strap': 9462, 'shoulder': 8922, 'lastly': 5783, 'compartments': 2382, 'stupidly': 9520, 'depress': 3026, 'button"---not': 1863, 'executed': 3879, 'spends': 9269, 'lord': 6036, 'screech': 8684, 'tuned': 10247, 'eton': 3808, 'receptionist': 8042, 'classic': 2205, '1st': 289, 'gym': 4745, 'unfreeze': 10393, 'exicted': 3885, 'finnaly': 4181, 'amped': 1071, 'dang': 2861, 'happe': 4796, 'reviews!!!!!!!like': 8405, 'reviews-': 8408, 'contour': 2567, 'designs': 3049, 'today(11': 10034, '05': 111, '.........': 81, 'recommendations': 8076, 'eating': 3550, 'h.': 4747, 'dec.': 2921, 'posting': 7541, 'rats': 7953, 'differentce': 3133, 'faceplate': 4006, 'chassis': 2122, 'tighted': 9994, 'tighten': 9995, 'maxtor': 6253, 'winning': 10971, 'trusting': 10226, 'gamepad': 4507, 'controllers': 2585, 'dsc': 3426, 's40': 8562, 'veiw': 10612, 'durring': 3460, 'bothering': 1713, 'persistance': 7310, 'restocking': 8347, 'fee': 4100, 'restock': 8346, 'fees': 4109, 'f@#k': 3997, 'isp': 5528, 'apartment': 1150, 'landlord': 5754, 'assumption': 1269, 'cloning': 2250, 'arose': 1213, 'tuesday': 10239, 'x.': 11102, 'wrt54': 11091, 'hp4705': 5048, 'hp5510': 5049, 'alignment': 993, 'voila': 10712, 'grammar': 4655, 'inability': 5220, 'variant': 10586, 'knowlege': 5705, 'hire': 4953, 'native': 6655, 'periodically': 7296, 'eithernet': 3597, 'f8z063': 3996, 'blk': 1627, 'nanos': 6647, 'wider': 10935, 'sb': 8637, 'conclusion': 2452, 'blaster': 1608, 'ca-739': 1897, 'horrified': 5021, 'denver': 3014, 'amounts': 1067, 'river': 8460, 'winter': 10976, 'oregon': 7005, 'wash.': 10819, 'dc': 2888, 'interuption': 5440, 'hillsides': 4945, 'tall': 9785, 'pacific': 7115, 'northwest': 6789, 'wondered': 11022, 'nw': 6846, 'tunnel': 10255, 'flutuates': 4279, 'ruling': 8535, 'sunlight': 9609, 'remainder': 8197, 'inducing': 5293, '~30': 11193, 'simcity': 8978, 'enjoyable': 3714, 'slimmer': 9066, 'keyboads': 5655, 'inlets': 5330, 'datavac': 2874, 'sucking': 9575, 'child': 2150, 'substantial': 9555, 'reaches': 7971, 'matte': 6241, 'comcast': 2333, 'concluded': 2451, 'rural': 8545, '1s': 288, '0s': 114, 'reads': 7983, 'nifty': 6749, 'gradually': 4649, 'gradual': 4648, 'transistor': 10136, 'advertises': 889, 'resuted': 8360, 'mess': 6331, 'undone': 10371, 'orgaized': 7006, 'genre': 4550, 'author': 1336, 'dvd740e': 3475, 'cdr': 2045, 'lightscribe': 5918, 'dvdr': 3476, '30pk': 388, 'presented': 7607, 'bonus': 1675, 'vent': 10618, 'flakey': 4214, 'ignoring': 5152, 'suffers': 9585, 'damaging': 2855, 'developer': 3092, 'filmmaking': 4153, 'filmmaker': 4152, 'heavily': 4892, 'harddrive': 4809, 'daisychain': 2850, 'rpm': 8517, '----': 27, 'bridge': 1760, 'varioius': 10592, 'projects': 7719, 'associate': 1263, '-----': 28, 'housed': 5038, 'indestructive': 5276, 'sidenote': 8952, 'jabra': 5549, 'lacks': 5741, 'boomy': 1690, 'ripping': 8454, 'ultraata': 10316, 'frying': 4428, 'segate': 8751, 'baracuda': 1439, '7200.8': 588, 'bidder': 1567, 'playlists': 7442, 'unbelievable': 10334, 'documented': 3302, 'forums': 4354, 'raving': 7958, 'fixable': 4205, 'occurs': 6891, 'statistically': 9381, 'jsut': 5608, 'thread': 9954, 'forum': 4353, 'titled': 10022, 'befsr41': 1508, 'v4': 10561, 'url': 10513, 'occur': 6886, 'simplicity': 8985, 'tricks': 10188, 'treats': 10170, 'shouting': 8927, 'sx700s': 9712, 'cellphone': 2057, 'pager': 7134, 'affair': 899, 'lousy': 6054, 'former': 4346, 'category': 2028, 'laws': 5804, 'cruise': 2763, 'midland': 6381, 'cobra': 2291, 'stylish': 9534, 't6500r': 9753, 'confronted': 2486, 'undestand': 10367, 'forgiven': 4334, 'recharged': 8049, 'mexican': 6353, 'riviera': 8462, 'puerto': 7797, 'vallarta': 10577, 'mazatlan': 6257, 'cabo': 1904, 'lucas': 6077, 'encased': 3664, 'keyed': 5659, 'alkaline': 995, 'conductors': 2463, 'recharger': 8050, 'outsourced': 7049, "int'l": 5383, 'ltd': 6074, 'genuine': 4556, 'mistaken': 6459, 'talkabout': 9780, 'rounded': 8504, 'vibrate': 10652, 'noaa': 6761, 'qt': 7846, 'ensures': 3723, 'ptt': 7788, 'garbled': 4517, 'merchants': 6322, 'gmrs': 4612, 'lake': 5747, 'vehicles': 10609, 'i-5': 5105, 'communications': 2359, 'largest': 5774, 'communicate': 2356, 'spouse': 9310, 'reviewing': 8402, 'gxt500': 4744, 'wattage': 10838, 'increases': 5260, 'reveiw': 8390, 'biopod': 1586, 'omnipass': 6940, '2.09': 293, 'v2.09': 10552, 'firefox': 4186, 'halfway': 4768, 'sectors': 8735, 'unformattable': 10387, 'cute': 2819, 'ornaments': 7017, 'embroidered': 3640, 'royal': 8515, 'pouch': 7550, 'sew': 8840, 'fleece': 4241, 'tuck': 10237, 'catching': 2027, 'monogrammed': 6515, 'millenium': 6400, 'request': 8281, 'deaf': 2904, 'hl-1440': 4964, 'envelopes': 3738, 'realtime': 7997, 'monitoring': 6512, 'crisscrossing': 2744, 'automotive': 1347, 'boiled': 1662, '2720': 353, '2730': 354, 'unacceptably': 10324, 'routing': 8511, 'lookup': 6026, 'deficient': 2961, 'suction': 9577, '1.25': 129, 'prohibits': 7715, 'compounding': 2426, 'positioning': 7527, 'beanbag': 1475, 'friction': 4406, 'fabricate': 4003, 'dismount': 3241, 'remount': 8216, 'straw': 9467, 'timely': 10004, 'manner': 6175, 'gtm11': 4719, 'factoring': 4012, 'wheels': 10907, 'lay': 5805, '750': 595, 'linux': 5947, '98se': 670, 'maufacturer': 6246, '.zip': 101, 'winzip': 10978, 'unzip': 10473, 'dvd+': 3470, 'jitters': 5582, 'rejects': 8173, 'sonic': 9181, 'playable': 7433, 'copiable': 2618, 'transmitting': 10145, 'buzzed': 1874, 'surprising': 9666, 'hunted': 5090, 'wrapping': 11076, 'tunecast': 10244, 'bridges': 1761, 'trucks': 10221, 'distant': 3260, 'poo': 7497, 'diamond': 3117, '60;<<although': 539, 'nmea-0183': 6760, 'regrettably': 8156, 'developing': 3093, 'website.>>>': 10865, 'ml-300': 6467, 'forms': 4347, 'applications': 1173, 'printwheel': 7652, 'chief': 2149, 'pencil': 7269, 'sized': 9020, 'aloh': 1014, 'dire': 3166, 'excedrin': 3850, 'migraine': 6388, '39': 419, 'busted': 1858, 'engaging': 3699, 'bobbing': 1658, 'stoop': 9434, 'considers': 2519, 'duds': 3438, 'xtrememac': 11125, 'crashing': 2714, 'erases': 3769, 'sensing': 8786, 'triggers': 10195, 'splotchy': 9290, 'painted': 7143, 'legs': 5855, '1/4th': 142, 'expander': 3899, 'explaination': 3934, 'expanded': 3898, 'unexpanded': 10378, 'srx': 9329, 'utilizing': 10546, 'fleas': 4239, 'abmismal': 721, 'quickzoom': 7871, 'cams': 1936, '34': 400, 'skeptical': 9023, 'waiving': 10760, 'rebuttal': 8018, 'electric': 3606, 'eardrums': 3523, 'chair': 2085, 'stood': 9433, 'puddle': 7794, 'kididng': 5674, 'occured': 6888, 'membrane': 6306, 'positioned': 7526, 'isolated': 5526, 'hx2755': 5099, '94': 659, 'wal': 10764, 'wanders': 10783, 'trails': 10113, 'surfaces': 9654, 'precision': 7585, 'erratically': 3775, '984': 668, 'attendent': 1307, 'tansaction': 9796, 'retune': 8377, 'sporadically': 9299, 'tap': 9798, 'jammed': 5555, 'podtape': 7478, 'sender': 8774, 'recoton': 8093, '2950': 359, 'emma': 3648, 'mary': 6224, '32746': 395, 'chin': 2153, 'bacl': 1416, 'yrs': 11154, 'bot': 1710, '760': 600, 'at-65': 1282, 'round': 8503, 'rectangular': 8099, 'cardboard': 1974, 'pictured': 7369, 'at-65)in': 1283, 'jennifer': 5569, 'investigate': 5474, 'apologetic': 1157, 'motorcycles': 6547, 'motorcycle': 6546, 'helmut': 4905, 'unsafe': 10450, 'distractions': 3270, 'ryder': 8553, 'lapse': 5768, 'concentration': 2443, 'outright': 7046, 'motorcycles-': 6548, 'headstets': 4873, 'breakup': 1752, 'usless': 10538, '1/8': 143, 'discrace': 3223, 'bogus': 1661, 'opens': 6968, 'opportunity': 6983, 'bruce': 1794, 'payn': 7244, 'frail': 4372, '85': 635, 'survive': 9673, 'hurricane': 5092, 'alley': 1000, 'west': 10893, 'coast': 2283, 'florida': 4269, 'assemble': 1255, 'touting': 10087, 'assistance': 1261, 'butter': 1860, 'knife': 5696, 'hinge': 4948, 'injured': 5324, 'inappropriately': 5228, '20.18': 307, 'science': 8667, 'rhapsody': 8419, 'caliber': 1919, 'patient': 7227, 'mtp': 6590, 'host': 5026, 'reverted': 8395, 'msd': 6582, 'mass': 6226, 'drag': 3365, 'dragging': 3367, 'pointless': 7484, 'scattered': 8658, '82': 633, 'suggesting': 9593, 'dump': 3448, 'method': 6347, '8+gb': 614, 'swan': 9685, 'bach': 1393, 'cantata': 1958, 'playlist': 7441, 'm3u': 6103, 'syncing': 9725, 'hopeless': 5009, 'plagued': 7412, 'hopelessly': 5010, 'throughly': 9965, 'overhaul': 7066, 'merit': 6328, 'e280': 3507, 'versatility': 10636, 'msc': 6581, 'drawbacks': 3380, 'creations': 2725, 'folders': 4295, 'catogorizing': 2029, 'wishes': 10992, 'adopts': 869, 'mentality': 6313, 'masters': 6231, 'settle': 8827, 'dumping': 3449, 'e200': 3503, 'itrip': 5543, 'opinions': 6978, 'hoaxes': 4972, 'interferes': 5420, 'forbidden': 4321, 'tagged': 9768, 'phony': 7344, 'hesitant': 4916, 'cound': 2660, 'helping': 4910, 'blackouts': 1599, 'spike': 9272, 'irregular': 5510, 'lt;2': 6072, 'es': 3778, '500s': 500, 'unexpected': 10379, 'conditioning': 2458, 'offline': 6915, 'breakage': 1746, 'slim': 9065, 'tastes': 9813, 'satisfy': 8619, 'openion': 6966, 'intime': 5447, 'bye': 1878, 'kira': 5684, 'outdoor': 7033, 'trail': 10112, 'wild': 10945, 'weather': 10859, 'muc': 6591, 'pretend': 7620, 'photographer': 7348, '127': 202, 'smartmedia': 9097, 'breeze': 1756, 'respectable': 8327, 'aways': 1370, 'glow': 4608, 'minuses': 6429, 'linked': 5941, 'unrelated': 10447, 'runners': 8542, 'shutter': 8943, 'fps': 4366, 'ultimate': 10313, 'duo': 3452, 'succession': 9568, 'digitial': 3147, 'sdsdh-512': 8702, '901': 655, 'unopened': 10428, 'sdsdh-1024': 8701, 'absoultely': 732, 'excelent': 3853, 'loosened': 6031, 'appreciate': 1180, 'consistantly': 2521, 'pleasantly': 7446, 'proven': 7766, 'cake': 1910, 'paintshop': 7146, 'painter': 7144, 'photoshop': 7352, 'nulooq': 6835, 'expectation': 3905, 'doubts': 3341, 'junkie': 5624, 'ti': 9984, 'brush': 1796, 'pan': 7157, 'zoom': 11180, 'horizontally': 5015, 'nec': 6677, '2500a': 344, '4x.': 481, 'qualified': 7850, "f'n": 3981, 'stamp': 9347, 'g15': 4486, 'lanning': 5760, 'paced': 7114, 'qam': 7843, 'unscrambled': 10453, 'discovery': 3222, 'weep': 10877, 'happiness': 4804, 'illuminated': 5163, 'negatives': 6693, 'def': 2952, 'criterion': 2746, 'worried': 11054, 'commercials': 2351, 'preceded': 7580, 'contributors': 2581, 'contributor': 2580, 'individuals': 5290, 'consistent': 2524, 'individually': 5289, 'displaying': 3246, 'variability': 10584, 'breath': 1754, 'flipping': 4260, 'stumbled': 9516, 'altitude': 1039, '10,000': 145, 'sea': 8705, 'kick': 5669, 'blame': 1601, 'shipper': 8891, 'eagle': 3517, 'dallas': 2851, 'livelihood': 5972, 'weary': 10858, 'perosn': 7307, 'tossed': 10067, '.....................': 85, 'omen': 6933, 'occasional': 6878, 'signaled': 8960, 'lx': 6089, 'dx': 3489, 'availability': 1355, 'unfair': 10383, 'downright': 3350, 'crisp': 2741, 'degraded': 2974, 'anyday': 1135, 'owning': 7099, 'viable': 10650, '9510i': 662, 'recovery': 8097, 'fanstastic': 4045, 'guides': 4735, 'quot;abc"': 7882, 'admitt': 863, 'ohtherwise': 6925, 'energy': 3695, 'sprare': 9311, '7900': 608, 'gtx': 4720, 'bi---': 1563, 'college': 2316, 'dorm': 3329, 'fantasy': 4048, 'lives': 5973, 'playstation': 7444, 'downside': 3351, 'budget': 1811, 'h5': 4755, '2700mah': 352, 'intuos3': 5462, '6x11': 568, 'programed': 7707, 'strips': 9497, 'progams': 7705, 'joy': 5602, 'alowing': 1020, 'versa': 10634, 'eraser': 3768, 'inactive': 5223, '20d': 323, 'slr': 9088, 'transient': 10135, 'fiddly': 4130, 'insecure': 5342, 'buckle': 1806, 'junction': 5621, 'edged': 3564, 'chasis': 2121, 'lens': 5865, 'plate': 7428, 'tripod': 10201, 'fujifilm': 4434, 'i`ve': 5111, 'don`t': 3315, 'ventilation': 10619, 'greatest': 4679, 'recordable': 8086, 'edit': 3567, 'you`ve': 11150, 'vcrs': 10602, 'stored': 9445, 'a++': 690, 'effusive': 3588, 'nemo': 6704, 'harry': 4823, 'potter': 7549, 'kdf-42e2000': 5642, '3lcd': 426, 'projection': 7717, 'loads': 5980, 'sacrifice': 8571, 'squat': 9319, 'recode': 8059, 'awaits': 1367, 'sharpen': 8864, 'transfered': 10126, 'editing': 3569, 'proficient': 7698, 'scored': 8674, 'gross': 4704, 'ignorance': 5148, 'astonishing': 1275, 'framed': 4374, 'challenged': 2088, 'jewel': 5576, 'conserve': 2512, 'accidentaly': 759, 'crack': 2693, 'cats': 2032, 'knocking': 5701, 'corner(s': 2632, 'drained': 3371, 'cochlear': 2293, 'implant': 5193, 'draining': 3372, 'counts': 2670, 'values': 10583, 'washer': 10821, 'settlement': 8829, 'esaki': 3780, 'si': 8947, 'ta': 9755, 'campion': 1935, 'tremendo': 10176, 'di': 3103, 'sistema': 9004, 'pa': 7112, 'por': 7508, 'potret': 7547, 'ariba': 1204, 'bo': 1652, 'hopi': 5012, 'bon': 1671, 'facil': 4007, 'pone': 7494, 'saca': 8568, 'systema': 9729, 'aki': 973, 'chip.(tremendo': 2158, 'quirks': 7877, 'alswys': 1028, 'dj': 3284, 'flexible': 4247, 'backpack': 1406, 'nascar': 6652, 'racing': 7904, 'reprogramable': 8275, 'dv': 3467, 'supermarkets': 9621, 'stealing': 9391, 'theatre': 9911, 'hardy': 4815, 'walkmen': 10772, 'shortwave': 8919, 'fh': 4123, 'e656': 3515, '1992': 282, 'mhcec70': 6357, 'pluses': 7466, 'unattractive': 10330, 'resembles': 8302, 'vs': 10731, 'glance': 4600, 'skimpy': 9028, 'suits': 9601, 'blasted': 1607, 'pm71sd': 7469, 'crippled': 2739, 'drm': 3403, 'brian': 1758, 'wap54': 10789, 'client': 2233, 'repeater': 8245, 'virtual': 10680, 'hesitated': 4918, 'newness': 6733, 'investigation': 5475, '192.168.1.245': 260, 'userid': 10533, 'telnet': 9857, 'mobilemate': 6474, 'peron': 7306, 'handhleds': 4779, 'delorme': 2996, 'plans': 7421, 'hh': 4924, 'nemerous': 6703, 'mappoint': 6195, 'storing': 9448, '50,000': 494, 'analize': 1079, 'elevation': 3616, 'yellow': 11140, 'stiched': 9413, 'acrilic': 795, 'mux': 6621, 'scraped': 8677, 'serface': 8805, 'setups': 8832, 'uplink': 10489, 'latitude': 5793, 'pp01l': 7570, 'walls': 10778, 'inbetween': 5231, '11mb': 186, 'cisco': 2190, 'aironet': 956, 'closest': 2255, 'neighbor': 6698, 'subject': 9541, 'aback': 708, 'snooping': 9127, 'pertains': 7320, 'pauh217u': 7231, 'dryer': 3423, 'inaccessible': 5221, '/inconvenient': 104, 'ben': 1542, 'formed': 4345, 'dpi': 3361, 'minidisc': 6414, 'lectures': 5843, 'lessons': 5873, 'mono': 6514, 'minidiscs': 6415, 'trickier': 10187, 'agc': 922, 'booming': 1689, 'mikes': 6390, 'refining': 8128, 'batter': 1464, 'classes': 2204, '.rec': 99, 'converts': 2601, '.mp3': 95, 'amout': 1068, 'molding': 6497, 'adaptors': 828, 'alows': 1021, 'ifp-799': 5145, 'marathon': 6199, 'marathons': 6200, 'hubby': 5066, 'rehoboth': 8161, 'sirius': 9003, '2007': 317, 'lettering': 5878, 'daylight': 2884, 'sunglasses': 9608, 'adapt': 822, 'bolt': 1667, 'little/': 5968, 'costl': 2653, 'valid': 10576, 'cleared': 2219, 'importing': 5204, '40x': 448, 'fastest': 4064, 'sucker': 9572, 'jpeg': 5604, 'raw': 7959, '444': 458, 'hesitate': 4917, 'awsome': 1381, '5yrs': 526, 'ebooks': 3556, 'winding': 10961, 'costed': 2651, 'electricity': 3608, 'wool': 11030, 'peacoat': 7260, 'clothes': 2260, 'scarf': 8657, 'comparied': 2377, 'abuse': 735, 'flawlessy': 4237, 'deattaches': 2917, 'reattaches': 8008, '10.4.8': 151, 'ahhhhh': 942, '480mb': 470, 'ships': 8893, 'hazards': 4842, '9.1': 648, 'slinger': 9069, 'tamrac': 9788, 'unfotunately': 10392, 'sufficient': 9588, 'bottle': 1715, 'addressed': 840, 'pouches': 7551, 'backpacks': 1409, 'duffel': 3441, 'lowepro': 6061, 'customizable': 2814, 'vests': 10644, 'belts': 1541, 'waisted': 10755, 'hood': 4998, 'lenses': 5867, 'tubes': 10236, 'teleconverters': 9850, 'evenly': 3819, 'vest': 10643, 'manageable': 6166, 'thousands': 9953, 'strapped': 9464, 'zoos': 11182, 'unzipping': 10474, 'safer': 8579, 'rain': 7920, 'snow': 9129, 'ipo': 5494, 'gray': 4673, 'closure': 2258, 'elements': 3615, 'f/2.8l': 3986, 'usm': 10539, 'f/4l': 3988, 'f/3.5': 3987, '4.5': 436, 'ef': 3577, 'efs': 3589, 'res': 8294, '2gbs': 365, 'jpegs': 5605, '8.2': 616, 'mp': 6570, 'beautifully': 1488, 'pink': 7383, 'buff': 1813, 'boys': 1731, 'aged': 924, 'procedures': 7676, 'permitted': 7305, 'occassionally': 6882, 'hinder': 4947, 'children': 2152, 'skipdoctor': 9033, 'contained': 2551, 'useable': 10525, 'necessarily': 6678, 'passes': 7212, 'acheive': 783, 'repeating': 8246, 'buffing': 1816, 'sanding': 8601, 'severity': 8839, 'grime': 4692, 'visable': 10685, 'fill': 4146, 'carefull': 1982, 'ebookman': 3555, 'flier': 4251, 'huh': 5072, 'arrive': 1220, 'rio': 8450, 'flickering': 4249, 'checks': 2142, 'lately': 5788, 'rj45': 8463, 'relief': 8187, 'ergonomically': 3772, 'ccradio': 2041, 'reputation': 8279, "60's": 534, 'tinnier': 10011, 'immediatey': 5182, 'neareast': 6671, 'happily': 4803, 'roar': 8476, 'lawnmower': 5803, 'exclusivey': 3876, 'plop': 7458, 'follower': 4303, 'bitter': 1594, 'scam': 8644, 'followers': 4304, 'counterparts': 2664, 'paused': 7234, 'embarrassing': 3637, 'met': 6339, 'ca-709': 1896, 'ca-706': 1895, 'prepackaged': 7599, 'transcriptionist': 10123, '.i': 94, 'comparably': 2374, 'theater': 9910, 'compliment': 2420, 'effects': 3582, 'screw': 8687, 'banana': 1429, 'coax': 2288, 'selections': 8759, 'language': 5758, 'frys': 4429, 'polk': 7491, 'r15': 7895, 'indecently': 5268, 'cerwin': 2079, 'vega': 10606, 'master': 6229, 'pronounced': 7737, 'profile': 7699, 'armoire': 1210, 'enterntainment': 3726, 'hellboy': 4904, 'missus': 6457, 'weekends': 10873, 'drawback': 3379, 'ss': 9330, 'mf650h': 6354, 'directional': 3170, '50khz': 502, 'boxy': 1729, 'spread': 9312, 'diaphragm': 3120, 'sustain': 9680, 'cutoff': 2821, 'punchy': 7807, 'midranges': 6383, 'lfe': 5887, 'perceived': 7278, 'humans': 5077, 'additions': 837, 'hz': 5102, 'rms': 8466, 'ssmf650h': 9332, 'studio': 9513, 'wharfedale': 10901, '8.4': 617, 'expand': 3895, '~$100': 11189, 'sdat': 8699, 'leb-404': 5842, 'overstock': 7088, 'mf650h.': 6355, 'apprehensive': 1181, 'soundstage': 9213, 'expansive': 3902, 'imaging': 5175, 'living': 5974, 'sep': 8794, 'dvd-224': 3474, 'germany': 4563, 'raise': 7922, 'planed': 7416, 'carr': 1994, 'nine': 6756, 'tines': 10009, 'sturdily': 9521, 'execution': 3880, 'cache': 1905, 'unchoppy': 10342, 'secondary': 8729, 'cellular': 2059, 'sling': 9067, 'accesories': 746, 'diminishing': 3155, 'appeal': 1162, 'modest': 6487, 'colbert': 2308, 'walks': 10773, 'porta': 7513, 'misgiving': 6442, '3x': 430, 'twenty': 10278, 'everyda': 3829, 'shoulders': 8923, 'snappier': 9120, 'eyeballs': 3976, 'soothing': 9191, 'guitar': 4736, 'addiction': 832, 'loudly': 6049, '=)': 683, 'linking': 5942, 'crossover': 2755, 'gigantic': 4579, 'halo': 4770, 'rewritable': 8415, '10x': 174, 'workday': 11041, 'soreness': 9196, 'gently': 4554, 'fadeout': 4016, 'nuvi': 6844, 'aggresive': 930, 'buch': 1803, 'unplugs': 10436, 'bottomline': 1718, 'tripping': 10203, 'recoils': 8068, 'amazonian': 1053, 'brainer': 1738, 'disclaimer': 3202, 'styles': 9531, 'hq': 5053, 'reveal': 8387, 'glitches': 4605, '15,600': 225, 'noises--': 6767, 'stretches': 9488, 'pun': 7805, 'lessen': 5870, 'endorsed': 3689, 'overstretch': 7089, 'undoubtedly': 10372, 'fool': 4311, 'hd-433': 4848, 'hd-437': 4849, 'hd-457': 4850, '437': 454, '457': 462, 'buck$': 1805, 'soundcard': 9205, 'soundmax': 9210, 'ac97': 739, 'k8v': 5634, 'metallica-': 6343, 'matters': 6244, 'it`s': 5535, 'varies': 10589, 'you`re': 11149, 'harman': 4818, 'kardon': 5637, 'drastic': 3376, 'recommand': 8072, 'won`t': 11020, 'can`t': 1937, 'retrieve': 8376, 'qaulity': 7844, 'blows': 1642, 'intimate': 5446, 'selection': 8758, 'varied': 10587, 'nonobtrusive': 6777, 'loyal': 6069, 'seminar': 8770, 'mics': 6376, 'coach': 2280, 'coaching': 2282, 'situations': 9014, 'captures': 1969, 'audibly': 1323, 'warn': 10799, 'expire': 3930, 'fresh': 4404, 'uninterrupted': 10408, 'merge': 6327, '190': 257, 'fused': 4461, 'lyra': 6092, 'rd2315': 7967, 'ruggedness': 8528, 'biking': 1574, '180': 250, 'degrees': 2978, 'memos': 6310, 'backlights': 1403, 'preference': 7592, 'prevents': 7627, '3.11': 375, '1.11': 123, 'w/20': 10738, '16x9': 244, 'dorky': 3328, 'ratios': 7949, '1680x1050': 241, '280': 355, 'm2': 6100, 'candle': 1952, '800:1': 625, '400:1': 445, '14ms': 222, 'www.apple.com/displays/specs.html': 11098, 'comparables': 2373, 'gateway': 4523, '21': 327, '599': 519, '1000:1': 156, '2405fpw': 339, '1920': 261, 'aiming': 948, 'undamaged': 10354, 'unadulterated': 10325, 'dos': 3331, 'scarce': 8654, 'engineered': 3702, 'aluminum': 1042, 'mint': 6425, 'auctions': 1320, 'px100': 7835, 'suprised': 9647, '149.95': 220, '124.95': 199, 'ollie': 6931, '...........': 83, 'pico': 7366, 'proximity': 7774, 'muted': 6617, 'tunes': 10252, 'piano': 7358, 'instrument': 5376, 'labelers': 5728, '1750': 248, 'offering': 6906, 'labeling': 5729, 'generated': 4542, 'margins': 6206, 'spelled': 9265, 'hyphen': 5101, 'cid': 2177, 'trough': 10217, 'rotate': 8497, 'clockwise': 2245, 'counterclockwise': 2663, 'pivoting': 7398, 'arms': 1212, 'swivel': 9708, 'xr70': 11121, 'incorrect': 5256, '9/32"h.': 651, 'remorse': 8212, 'regretting': 8158, 'regretted': 8157, 'dd': 2893, '5.1': 486, 'discernable': 3197, 'amplifiers': 1076, 'crosses': 2754, 'threshold': 9959, 'sloppy': 9077, 'panny': 7164, 'linear': 5935, 'cinema': 2179, 'weaknesses': 10854, '-it': 61, 'dsp': 3428, '-no': 65, 'knobs': 5698, 'upconvert': 10477, 'el': 3601, 'diego': 3128, '199.99': 280, 'r30': 7897, 'fronts': 4419, 'klh': 5690, '10inch': 170, 'tremor': 10178, '650.00': 552, 'colleague': 2311, 'ant': 1119, 'owns': 7100, 'roun': 8502, 'cylinder': 2838, 'shaped': 8857, 'costlier': 2654, 'outweighs': 7052, 'prev': 7622, 'bu': 1801, 'pump': 7802, 'consistant': 2520, 'clearer': 2220, '320': 391, 'archive': 1198, 'sol': 9149, 'marketed': 6213, 'spectacular': 9255, 'toslink': 10065, 'dts': 3433, 'boomier': 1688, 'crisper': 2742, 'dolby': 3308, 'gladiator': 4598, '1010': 160, 'rates': 7944, 'coldplay': 2310, 'scientist': 8669, 'indescribable': 5274, '65': 550, 'families': 4037, 'apartments': 1151, 'comfy': 2343, 'quickcam': 7867, 'stx': 9528, 'greece': 4681, 'instant': 5366, 'messenger': 6336, 'isight': 5520, 'anyhow': 1136, 'samll': 8593, 'shoe': 8899, 'hubs': 5067, 'usinf': 10536, 'e3s': 3512, 'alluded': 1011, 'milage': 6391, 'excluding': 3874, 'conduction': 2462, 'bone': 1672, 'jogged': 5590, 'impact': 5188, 'elipticals': 3624, 'bicycles': 1566, '2001': 311, 'bmw': 1651, '325ci': 394, 'unmounting': 10421, 'cure': 2796, 'urban': 10510, 'axim': 1382, 'x51v': 11105, '480': 468, '1100mah': 178, 'strengths': 9481, 'unconfirmed': 10351, '624': 545, 'mhz': 6358, 'pxa270': 7837, '2ghz': 366, 'blazes': 1612, 'astounded': 1276, 'qvga': 7893, 'moderately': 6484, 'tcpmp': 9820, 'odyssey': 6898, 'activesync': 810, 'deselect': 3037, 'entry': 3736, 'myriad': 6630, 'syncs': 9726, 'combine': 2330, 'bt': 1799, 'unbeatable': 10333, 'nicad': 6742, 'nicads': 6743, 'subtstanial': 9561, 'platinum': 7431, 'ex51lp': 3842, 'fontopia': 4307, 'seals': 8710, 'choppy': 2164, 'mbs': 6262, 'panoramic': 7165, 'stitching': 9426, 'mx(tm)500': 6626, '4000': 444, 'shines': 8886, 'awesomestufffree.com/plasma-t': 1375, 'triport': 10202, 'recess': 8043, 'earcups': 3522, 'retracted': 8371, 'microphoto': 6369, 'traveldock': 10154, 'enthusiasts': 3731, 'docked': 3296, 'attachable': 1295, 'serve': 8812, 'ff': 4122, 'rew': 8413, 'labs': 5733, 'finishing': 4179, 'cons;like': 2507, 'grill': 4691, 'guard': 4725, 't.v': 9733, 'rivaling': 8458, 'pristine': 7656, 'pumps': 7804, 'avr': 1363, 'ohms': 6924, 'jensen': 5570, 'iterm': 5542, 'hp8450': 5051, 'catridge': 2030, 'spit': 9280, 'profit': 7701, 'tops': 10062, 'hired': 4954, 'echoing': 3558, 'throwaway': 9969, 'unsatisfied': 10452, 'oddly': 6896, 'cushions': 2809, 'teach': 9825, 'orientation': 7011, 'medially': 6288, 'pinna': 7385, 'superoposterior': 9622, 'straightens': 9456, 'doctor': 3299, 'maneuver': 6171, 'examines': 3848, 'otoscope': 7024, 'insertion': 5346, 'lodges': 5996, 'relieve': 8189, 'eustachian': 3813, 'swallow': 9684, 'climbing': 2236, 'skyscraper': 9044, 'elevator': 3617, 'westinghouse': 10895, '37inch': 416, 'contemplating': 2553, 'seagate': 8706, 'par': 7177, '160': 235, '149': 219, 'actuality': 816, 'fuss': 4465, 'fart': 4056, '114': 182, 'a+': 689, 'whisper': 10920, 'flac': 4210, 'foobar2000': 4309, 'io': 5486, 'intensive': 5401, 'kitchen': 5687, 'counter': 2662, 'boston': 1709, 'acoustics': 791, 'tivoli': 10025, 'overpowering': 7079, 'cellphne': 2056, 'martin': 6222, 'logan': 5999, 'legendary': 5853, 'maximizing': 6250, 'bi': 1562, '12.00': 190, '66': 556, '69': 564, 'touches': 10076, 'pdas': 7257, 'appointments': 1178, 'dates': 2877, 'students': 9511, 'agenda': 925, 'akk': 974, 'meeting': 6293, 'techie': 9833, 'wpn311': 11072, 'completion': 2413, 'utilization': 10544, 'executable': 3878, 'wlancfg5.exe': 11005, 'routines': 8510, 'csrss.exe': 2777, 'net.exe': 6710, 'net1.exe': 6711, 'wlancfg5': 11004, 'mimo': 6405, 'configurator': 2475, 'wzc': 11100, 'microsoft.com': 6372, '871122': 640, 'queens': 7859, 'dependable': 3019, 'reservation': 8305, 'powercenter': 7557, 'hts800': 5059, 'acoustically': 790, 'iem': 5142, 'ety': 3810, 'er4p': 3764, 'im716': 5170, 'ksc75': 5715, 'bloated': 1628, 'tamed': 9787, 'eq': 3750, 'vol': 10714, 'phonendoscope': 7340, 'frictions': 4407, 'iems': 5143, 'beyer': 1559, 'dt770': 3432, 'physics': 7357, 'asymmetric': 1279, 'food': 4310, 'resistant': 8313, 'perspective': 7317, 'fang': 4042, 'theres': 9921, 'keyz': 5667, 'sansas': 8608, 'slipping': 9073, 'symbol': 9716, '5/5': 492, 'e6': 3514, 'goodie': 4626, 'q.': 7839, 'invaluable': 5466, 'trackballs': 10102, 'noncompliance': 6773, 'ominous': 6935, 'gb/5': 4528, 'datalife': 2873, 'r200': 7896, 'r300': 7898, 'r320': 7899, 'printable': 7645, 'verbatims': 10625, 'sticking': 9417, 'sources': 9219, 'taiwan': 9772, 'dries': 3392, 'instantly': 5367, 'superdrive': 9617, 'd2': 2845, 'recommends': 8080, '134': 210, 'notebooks': 6798, 'webcams': 10862, 'interchangeability': 5407, 'fusion': 4464, 'gieco': 4571, 'alien': 991, 'champion': 2094, 'bored': 1703, 'uncle': 10343, 'loves': 6058, 'carpel': 1989, 'movable': 6560, 'splice': 9284, 'retaining': 8366, 'extracted': 3969, 'outputted': 7044, 'rocker': 8483, 'radioshark': 7912, '10.4': 149, 'saves': 8629, 'widget': 10937, 'klunky': 5694, 'app': 1158, 'heart': 4883, 'dink': 3162, 'unessential': 10374, 'freeware': 4392, 'audacity': 1321, 'oddities': 6895, 'grasp': 4668, 'replied': 8257, 'rzr': 8554, 'recharges': 8051, 'eliminating': 3623, 'assortment': 1265, 'aebs': 895, 'trigger': 10193, 'cans': 1957, 'youth': 11152, 'headphones-': 4867, 'man-': 6164, 'peaks': 7262, 'threaten': 9956, 'career': 1980, 'cough': 2658, 'comfortable-': 2340, 'full-': 4438, 'thump': 9977, 'fatigue': 4072, 'line-': 5934, 'wins': 10973, 'rocket': 8484, 'engines': 3705, 'airplanes': 959, 'aircraft': 951, 'engine': 3700, 'apu': 1192, 'f-4': 3984, 'phantom': 7327, 'afterburner': 916, 'cx7300': 2830, '3yr': 431, 'meetings': 6294, 'fiber': 4127, 'optic': 6988, '-my': 64, 'obscenely': 6862, 'thx': 9982, 'certification': 2077, 'blurb': 1649, 'forefront': 4327, 'unparalleled': 10431, 'distribution': 3273, 'excellence': 3855, 'promise': 7725, 'cinemas': 2180, 'evaluated': 3815, 'degrade': 2973, 'stepped': 9404, 'cement': 2060, 'rolling': 8491, 'manhandled': 6172, '-i.e': 60, 'gamecube': 4506, 'coverings': 2682, 'transit': 10137, 'passing': 7213, 'walked': 10767, 'testimonials': 9891, 'smartly': 9096, 'topping': 10061, 'foresees': 4330, 'quibble': 7864, 'purposely': 7822, 'antec': 1120, 'purfect': 7817, 'imitates': 5178, 'flakes': 4213, 'raggedy': 7914, 'earmuff': 3526, 'likewise': 5925, 'thicker': 9926, 'chairs': 2086, 'qz-50': 7894, 'ur-10': 10507, 'ur-20': 10508, 'richest': 8424, 'adorable': 870, 'lifelike': 5904, 'lazer': 5812, 'tendonitis': 9872, 'flare': 4221, 'chronic': 2171, 'v200': 10555, 'effortless': 3586, 'v450': 10562, 'setpoint': 8823, 'sensativity': 8781, 'sensativities': 8780, 'jbl': 5565, 'panic': 7163, 'negativity': 6694, 'loosing': 6034, '3)wording': 373, 'visa': 10684, 'mc': 6263, 'sw': 9683, 'lastest': 5781, '2.55': 300, 'indoor': 5291, 'zenith': 11167, 'manhattan': 6173, '7th': 612, 'surrounded': 9670, 'taller': 9786, 'buildings': 1822, '3200': 392, 'atop': 1292, 'provide-': 7768, 'cushiony': 2810, 'wrists': 11080, 'supportive': 9634, 'lays': 5811, 'g.p.s': 4484, 'marine': 6207, 'breast': 1753, 'float': 4261, 'nuff': 6832, 'unbox': 10339, 'macos': 6117, 'airtunes': 964, '802.11': 626, '--the': 45, '2,300': 291, 'wave': 10841, 'applies': 1175, 'intruding': 5455, 'complains': 2404, 'debating': 2919, 'picturemate': 7370, 'ddp': 2895, 'fp50': 4365, '475': 465, '4800x1200dpi': 469, '4x6': 482, 'boarderless': 1654, 'beats': 1485, 'vivid': 10698, 'mixture': 6466, '1505': 230, 'characteristic': 2109, 'unbranded': 10340, 'about-': 724, 'marker': 6210, 'puppies': 7809, 'intending': 5397, 'definetely': 2964, 'trebley': 10172, 'difficlulty': 3137, 'delivering': 2991, 'earth': 3536, 'shaking': 8853, 'speakers/': 9239, 'woofers': 11029, 'chambered': 2090, 'enclosures': 3668, 'permit': 7304, 'chambers': 2091, 'human': 5075, 'cranium': 2702, 'resonating': 8322, 'chamber': 2089, 'reversed': 8393, 'jets': 5575, 'thundering': 9980, '69.99': 565, 'aficionados': 911, 'j&r': 5547, 'quickly(you': 7869, 'mitsubishi': 6462, 'dvp': 3481, 'ns700p': 6825, 'graininess': 4653, 'hesitation': 4919, 'diagram': 3108, 'intialize': 5444, 'finalizing': 4159, 'divx': 3283, 'instores': 5371, '8.00': 615, 'monthes': 6521, 'seamless': 8711, 'casing': 2015, 'clickwheel': 2232, 'raher': 7915, '6:00': 566, 'member': 6304, 'ipiod': 5493, 'availible': 1357, 'ibass': 5114, 'waay': 10746, 'accessorites': 754, 'prompted': 7731, 'trackball': 10101, 'turbo': 10257, 'suitcase': 9599, 'consulting': 2539, 'magazine': 6127, 'wase': 10816, '7.0': 570, 'scanners': 8650, 'feeding': 4104, 'roller': 8489, 'photographs': 7350, 'concert': 2449, 'receiption': 8030, 'achieving': 785, 'pressing': 7617, 'timing': 10007, 'everybody': 3828, 'closet': 2256, 'aw771': 1365, 'multifunction': 6599, 'midiland': 6380, 'thoroughly': 9947, 'aim': 947, '999': 672, 'customize': 2815, 'and/or': 1086, 'aesthetically': 897, 'pleasing': 7449, 'attractiveness': 1317, 'reproducing': 8273, 'paired': 7148, 'competent': 2395, 'qualms': 7854, 'markings': 6217, 'presently': 7609, 'audience': 1324, 'affluent': 907, 'ranges': 7934, 'soundtracks': 9216, 'matrix': 6240, 'snatch': 9124, 'ranging': 7935, 'differentiating': 3134, 'drowning': 3414, 'satisfying': 8620, 'ladies': 5743, 'gentlemen': 4553, 'toys': 10098, 'exploring': 3944, 'a-': 693, 'b-': 1387, 'sandisk.com': 8603, 'u3.com': 10302, 'c-': 1881, 'd-': 2842, 'http://portableapps.com': 5061, 'launchpad': 5799, 'e-': 3499, 'passable': 7206, 'demands': 3001, 'destruction': 3066, 'ya': 11128, 'g-': 4481, 'v1.0': 10550, 'prominent': 7723, 'billy': 1577, 'paks': 7150, 'folk': 4299, 'controlling': 2586, 'composing': 2423, 'instability': 5355, 'win2000': 10953, 'win2003': 10954, 'h-': 4746, 'ignorant': 5149, 'site(s': 9008, 'i-': 5104, 'expend': 3913, 'nics': 6748, 'expanding': 3900, 'quantity': 7855, 'transfering': 10127, 'occupy': 6885, 'rm': 8464, 'clarify': 2201, 'literature': 5966, 'traveler': 10157, 'characteristices': 2110, 'sx': 9710, 'jazz': 5564, 'pumping': 7803, 'divider': 3279, 'born': 1704, 'memories': 6308, 'showbiz': 8929, 'customized': 2816, 'invention': 5469, '1.75': 134, 'dc4000': 2889, 'e20s': 3504, 'e30s': 3510, 'e25': 3505, 'harmon': 4819, 'e30': 3509, 'bookshelf': 1682, 'kong': 5709, '7lbs': 611, 'bookshelves': 1683, 'lbs': 5815, 'cast': 2019, 'dutch': 3463, 'oven': 7053, 'tables': 9758, 'oomph': 6957, 'ooommphhhh': 6958, 'animals': 1095, 'singles': 8995, 'paul': 7232, 'revere': 8391, 'raiders': 7916, 'kicks': 5671, 'vintage': 10675, 'circa': 2182, 'drums': 3420, 'doors': 3325, 'airwaves': 965, '60s': 543, 'vivaldi': 10697, 'seasons': 8722, 'concertos': 2450, 'herbert': 4912, 'von': 10723, 'karajan': 5636, 'bpo': 1732, 'anne': 1097, 'sophie': 9192, 'mutter': 6620, 'fiddle': 4128, 'violins': 10678, 'harpsacord': 4821, '80s': 629, '70s': 580, 'inflation': 5306, 'advent': 883, 'loudspeakers': 6051, 'advents': 884, 'mcintosh': 6265, 'turntable': 10265, 'magnetic': 6136, 'jbls': 5566, 'perfomance': 7286, 'minded': 6408, 'repartitioned': 8241, 'usb2.0': 10523, 'interne': 5428, 'noel': 6763, 'lee': 5846, 'stunning': 9518, 'scenes': 8660, 'bold': 1665, 'unprepared': 10438, 'dramatic': 3375, 'warts': 10814, 'all"so': 997, 'strings': 9494, 'crews': 2735, 'mvs3': 6622, 'stretched': 9487, 'quot;over': 7888, 'head"': 4859, 'ktx': 5716, 'sportapros': 9303, 'portapros': 7519, 'mercury': 6323, 'cadmium': 1908, 'carpal': 1988, 'syndrom': 9727, 'eliminated': 3621, 'destroy': 3063, 'misplacing': 6449, 'spoiled': 9292, 'den': 3009, 'abilty': 717, 'ringer': 8443, 'tcx905': 9822, 'iraq': 5501, 'tent': 9876, 'w/o': 10739, 'compatiblity': 2390, 'overview': 7092, 'boiling': 1663, 'psp': 7781, 'coolest': 2613, 'prolonged': 7721, 'experimenting': 3924, 'situated': 9012, 'numeric': 6839, 'mimimum': 6404, 'anount': 1111, 'kepads': 5652, '913ns': 657, '712n.': 584, 'ratings': 7947, 'samsungs': 8598, 'brightnesses': 1768, 'interestingly': 5415, '5ms': 522, '8ms': 644, 'widescreen': 10936, 'challenge': 2087, 'strains': 9459, 'accommodation': 763, '3/4': 380, '87': 638, 'billion': 1576, 'diddly': 3123, '.pdf': 98, 'explanatory': 3938, 'interactive': 5404, 'surcharge': 9649, 'wood': 11027, 'lathe': 5792, 'streaming': 9474, 'dns': 3292, 'streams': 9475, 'realibly': 7987, 'hordes': 5014, 'neighbours': 6701, 'abeit': 712, 'pace': 7113, 'pacing': 7116, '5.8': 490, '900mhz': 654, 'tcx805': 9821, 'trivial': 10207, 'automagically': 1343, 'dialing': 3110, 'upright': 10496, 'researched': 8297, 'aliasing': 990, 'smoothing': 9113, 'downstairs': 3352, 'swaps': 9688, 'pip': 7389, 'sputter': 9315, 'whirr': 10918, "m's(which": 6095, 'grown': 4711, 'width': 10939, 'dimensions': 3152, 'comparitively': 2380, 'wrap': 11074, 'fills': 4150, 'seams': 8713, 'stale': 9344, 'colorful': 2320, 'joystick': 5603, 'wedging': 10870, 'upward': 10504, 'accidental': 757, 'wmp11': 11010, 'newbie': 6727, 'theoretical': 9916, 'maximums': 6252, 'wmas': 11009, 'creation': 2724, 'mortar': 6531, 'justified': 5627, 'apx-6420': 1193, 'mulling': 6597, 'makers': 6154, 'recall': 8024, 'sampling': 8595, '4.1': 434, 'sole': 9153, 'z-5500': 11159, 'langsing': 5757, 'fx6021': 4478, 'eyeing': 3977, 'declared': 2935, 'sub-$200': 9539, 'msrp': 6585, 'bitrate': 1592, 'shine': 8884, 'instruments': 5377, 'buzzy': 1877, 'discrete': 3224, 'shake': 8851, 'subjective': 9542, 'notches': 6795, 'sane': 8605, 'facing': 4009, 'babies': 1390, 'dialogue': 3113, 'seperately': 8799, 'blues': 1644, 'punchier': 7806, 'pandora': 7160, 'comforable': 2336, 'chameleon': 2092, 'improvment': 5219, 'skill': 9027, 'razor': 7963, 'diamondback': 3118, 'mousing': 6558, 'gripes': 4696, '1600dpi': 237, 'overlooked': 7076, 'squeak': 9320, 'erratic': 3774, 'wpc54gs': 11069, 'wpc54': 11068, 'v2.1': 10553, 'submission': 9545, 'a45': 699, 's121': 8558, 'phil': 7331, 'mesa': 6329, 'rails': 7919, 'structurally': 9504, 'fasioned': 4060, 'offices': 6912, 'solidly': 9156, '6.0': 529, 'megapixel': 6299, 's3': 8561, 'psd1grf3': 7779, 'apiece': 1155, 'rebranded': 8016, 'daneelec': 2860, 'shooting': 8903, 'm7480n': 6104, 'adobe': 866, 'premiere': 7597, 'intially': 5445, 'zooming': 11181, 'dcs-900': 2891, 'along-': 1017, 'dt': 3430, '200v': 319, 'zipped': 11174, '.75': 90, 'zip': 11172, 'purely': 7816, 'stepmania': 9403, 'revolution': 8412, 'clone': 2249, 'esspecially': 3794, '06': 112, 'wanting': 10787, 'patio': 7229, 'lound': 6053, 'brackets': 1735, 'thye': 9983, '42.99': 451, 'codeless': 2299, 'experince': 3925, 'bravo': 1744, 'networked': 6717, 'elapsed': 3602, 'approximate': 1187, 'slingbox': 9068, 'slinglink': 9070, 'renewed': 8229, 'acquired': 793, 'lan': 5751, '700w': 578, 'undock': 10369, 'undocking': 10370, 'forward/': 4356, 'buttonw': 1865, 'taskbar': 9809, 'hardship': 4813, ':-)': 678, 't5320': 9740, 't5400': 9741, 't5420': 9742, 't5600': 9744, 't5620': 9745, 't5700': 9746, 't5720': 9747, 't5800': 9748, 't5820': 9749, '53615': 510, 't4800': 9736, 't4900': 9737, 't5000': 9739, 't5500': 9743, 't5900': 9750, 't6500': 9752, 'fv500': 4473, 'extensively': 3960, 'rushing': 8547, '802.11b': 628, 'alert': 987, 'beeps': 1505, 'discourage': 3216, 'coltrane': 2324, 'goosebumps': 4633, 'passionate': 7214, 'lover': 6057, 'collector': 2315, 'bassheads': 1457, 'featuring': 4097, 'disproportionately': 3250, 'complemented': 2409, 'ue': 10304, 'recessed': 8044, 'unnatural': 10423, 'marvelous': 6223, 'pleasant': 7445, 'thumpy': 9979, 'overbalance': 7057, 'eb': 3552, 'ideal': 5128, 'rap': 7937, 'hop': 5005, 'basslines': 1458, 'comprise': 2433, 'overpowers': 7080, 'dominated': 3314, 'transformed': 10131, 'superficially': 9618, 'thinness': 9940, 'render': 8225, 'vulnerable': 10734, 'thoughtfully': 9950, 'blessing': 1620, 'entrance': 3734, 'attenuator': 1311, 'earwax': 3539, 'silvery': 8976, 'winder': 10959, 'tangling': 9793, 'unlikely': 10417, 'dominant': 3313, '1993': 283, 'gravis': 4671, 'upraded': 10495, 'midi': 6379, 'nfs': 6738, '3mins': 427, 'rumble': 8536, 'mw': 6624, 'ea': 3516, 'feather': 4092, '67': 560, 'progressive': 7713, 'gripped': 4697, 'race': 7903, 'betetr': 1556, 'cnd': 2275, 'snes': 9126, '4/5': 439, 'answereing': 1116, 'sattelite': 8624, 'satelite': 8612, 'aup': 1334, 'tel': 9847, 'simultaneous': 8991, 'observation': 6864, 'gigabit': 4576, 'intrusion': 5456, 'cradled': 2699, 'plastics': 7427, 'metals': 6344, 'bases': 1449, 'snugly': 9132, 'ghz': 4568, 'vs.': 10732, '2.4': 296, 'immune': 5186, 'heating': 4889, 'truckin': 10220, '9volt': 675, 'bedside': 1500, 'doubles': 3338, 'emptying': 3656, 'techniques': 9838, 'manufacuters': 6188, 'tread': 10166, 'laniard': 5759, 'docks': 3298, 'sleakest': 9048, 'drone': 3404, 'focuses': 4289, 'unimposing': 10400, 'sounddock': 9207, 'recomendation': 8071, 'listend': 5955, 'raido': 7917, 'disadvantage': 3183, 'easier(but': 3542, 'jogger': 5591, 'imported': 5203, 'proccess': 7674, 'finepix': 4167, 'devout': 3097, 's800': 8566, 'blotchy': 1638, 'drafts': 3364, 'msx': 6586, 'm1gn': 6099, 'idiots': 5137, 'accompanied': 765, 'paris': 7188, 'camping': 1934, 'northern': 6788, '10k': 171, 'usb07051c-01': 10521, '3.16': 376, 'verizon': 10632, 'polycom': 7493, 'communicator': 2360, 'pita': 7392, 'a.': 694, 'untangle': 10460, 'accepting': 745, 'b.': 1388, 'envariably': 3737, 'desheveled': 3042, 'ocasionally': 6876, 'peoples': 7275, 'sporadic': 9298, 'downfalls': 3342, 'bombed': 1670, 'unpack': 10429, 'corresponding': 2641, 'sbs': 8640, 'ep': 3743, 'quest': 7860, 'sceptical': 8661, 'harm': 4817, 'stalls': 9346, 'horse': 5024, 'flies': 4252, 'dusty': 3462, 'collect': 2313, 'horses': 5025, 'dashmount': 2870, 'blanket': 1604, 'pliable': 7454, 'f-250': 3983, 'mold': 6495, 'bouncy': 1721, 'creep': 2732, 'bolted': 1668, 'borrowing': 1707, 'dangling': 2864, 'toyota': 10097, 'avalon': 1358, 'floorboard': 4263, 'temtation': 9868, 'robber': 8478, 'hotas': 5029, 'sst': 9333, 'dogfight': 3307, 'obsessed': 6867, 'drumming': 3418, 'marching': 6202, 'tupperware': 10256, 'lids': 5896, 'parades': 7179, 'cumbersonme': 2792, 'cymbals': 2839, 'steep': 9396, 'performing': 7292, 'pots': 7548, 'pans': 7166, 'spoil': 9291, 'childhood': 2151, 'airt': 963, 'upstairs': 10501, 'powerlines': 7564, 'extender': 3956, 'whit': 10922, 'extending': 3957, 'disappoints': 3193, 'filet': 4144, 'mignon': 6387, 'talks': 9784, 'holster': 4984, 'worthwhile': 11062, 'cube': 2784, 'sucessfully': 9570, 'storag': 9442, 'duplication': 3454, 'teac': 9824, 'crts': 2759, 'jumped': 5619, 'flatscreen': 4231, 'bandwagon': 1432, 'immense': 5184, "e'nuf": 3498, '8.5x11': 618, 'rendered': 8226, 'prohibitive': 7714, 's041727': 8557, 'rivals': 8459, 'a++++++++++': 691, 'enables': 3661, 'emap': 3634, 'arriving': 1223, '12v': 207, 'yup': 11156, 'burst': 1849, 'poke': 7487, 'battle': 1467, 'sensetivity': 8784, 'illustrator': 5165, 'macromedia': 6118, 'impressively': 5212, 'lap': 5765, 'bed': 1497, 'telescopic': 9852, 'booklight': 1680, 'retracting': 8372, 'finnicky': 4182, 'technique': 9837, 'advandage': 880, '/-': 103, 'mature': 6245, 'alder': 985, 'fir': 4183, 'gilsson': 4582, 'hat': 4832, 'aquisition': 1194, 'sunny': 9610, 'convient': 2603, 'deskjet': 3054, '3930': 420, 'installs': 5362, 'convience': 2602, 'b+': 1386, 'outputs': 7043, 'napster': 6648, 'myslef': 6631, 'leader': 5820, 'sanso': 8609, 'outweighed': 7051, 'pressesd': 7616, '3am': 422, 'tuffwrap': 10240, 'xtrememac-': 11126, 'lining': 5938, 'bleed': 1614, 'surf': 9652, 'fingertips': 4175, 'rocks': 8486, 'gut': 4740, 'beaten': 1481, 'hewlett': 4920, 'packard': 7122, 'c3906a': 1888, 'cartrige': 2008, 'twords': 10285, 'allmost': 1003, 'reorder': 8231, 'konk': 5710, 'removeable': 8220, 'synch': 9723, 'simplifies': 8986, 'syched': 9713, 'scraping': 8678, '04': 110, 'repetition': 8247, 'curve': 2806, 'throttle': 9964, 'downloadable': 3344, 'ch': 2084, 'prod': 7684, 'goflight': 4619, 'modular': 6491, 'object': 6857, 'cockpit': 2294, 'sim': 8977, 'suited': 9600, 'aspiring': 1254, 'advaced': 876, 'flt': 4272, 'simmer': 8981, 'calender': 1918, 'con': 2440, 'razr': 7964, 'spair': 9228, 'phonetools': 7343, 'sx-1030': 9711, 'arrgghh': 1218, '1030': 162, 'quot;small"': 7890, 'airflow': 953, 'cfm': 2083, 'refugee': 8134, 'basement': 1448, 'swapping': 9687, 'wherever': 10911, 'w2k.': 10743, 'bits': 1593, 'oops': 6959, 'wonky': 11026, 'dgl-4300': 3101, 'omnimount': 6939, 'differences': 3131, 'mustang': 6615, 'tilting': 10001, 'reconnecting': 8083, 'moto': 6543, 'reseated': 8299, 'skinny': 9030, 'armed': 1209, 'h250': 4751, 'confortable': 2484, 'acustic': 820, 'properties': 7743, 'exceeded': 3851, 'vocals': 10702, 'multitracking': 6603, 'samson': 8596, 'c01b': 1883, 'condenser': 2456, 'freedom': 4388, 'portablility': 7516, 'headroom': 4869, 'millenia': 6399, '79': 606, 'latency': 5789, '44100hz': 457, 'fasoft': 4061, 'liberating': 5891, 'job.(if': 5586, 'scare': 8655, 'opossums': 6980, 'porch': 7509, 'prong': 7736, 'scoot': 8672, 'supplement': 9627, 'powersquid': 7569, 'temporary': 9865, 'sentry': 8793, 'accordance': 769, 'overload': 7074, 'cheaters': 2137, 'grounded': 4706, 'generators': 4546, 'monitored': 6511, 'generator': 4545, 'p.c.': 7107, 'cuando': 2782, 'compr': 2428, 'una': 10321, 'm105': 6097, 'pantalla': 7168, 'eleg': 3612, 'este': 3799, 'maletin': 6158, 'porque': 7510, 'lei': 5856, 'que': 7858, 'sus': 9675, 'dimensiones': 3151, 'ajustaban': 968, 'equipo': 3759, 'est': 3795, 'forrado': 4348, 'cuenta': 2787, 'divisiones': 3282, 'suficientes': 9590, 'para': 7178, 'llevar': 5975, 'cargador': 1985, 'poder': 7477, 'la': 5724, 'asimismo': 1242, 'puedo': 7796, 'incluir': 5247, 'documentos': 3303, 'otros': 7025, 'accesorios': 747, 'asa': 1236, 'moda': 6476, 'correa': 2635, 'incluida': 5246, 'ancha': 1084, 'ajustable': 969, 'largo': 5775, 'uno': 10425, 'desee': 3036, 'estoy': 3803, 'satisfecho': 8617, 'esta': 3796, 'compra': 2429, '6500b': 553, '2.4ghz': 297, 'tru8866': 10218, 'ans': 1113, 'mach': 6111, 'vm': 10700, 'bonkers': 1674, 'accumulated': 775, 'messaging': 6334, 'nope': 6783, 'md7081': 6267, '5.8ghz': 491, '6500b.': 554, 'blinked': 1624, 'relying': 8195, 'hmmm': 4968, 'implies': 5197, 'elegantly': 3614, 'limit': 5928, 'opion': 6979, '48gx': 472, 'obsolete': 6868, 'gret': 4685, 'woowho': 11032, 'eventhough': 3821, 'healthy': 4875, 'wax': 10843, 'underestimate': 10357, 'cafe': 1909, 'win98': 10955, '100.00': 154, 'audiobooks': 1327, 'technophobes': 9842, 'toysrus': 10099, '15.00': 226, 'kid': 5672, 'sears': 8719, 'grabbed': 4642, 'a400': 698, 'enthusiast': 3730, 'perplexing': 7309, 'unbiased': 10338, 'industries': 5295, 'sdsdb-128': 8700, 'a10': 696, '142': 218, '106': 164, '51': 503, 'estimates': 3801, 'complexity': 2417, 'scene': 8659, 'algorithm': 989, 'determining': 3086, 'intensely': 5399, 'washington': 10823, 'maine': 6143, 'guam': 4722, 'virgin': 10679, 'islands': 5523, 'd.c.': 2844, 'transferable': 10125, 'manu': 6177, 'issued': 5532, 'payable': 7240, 'uncertain': 10341, 'reimburse': 8163, 'breakdown': 1747, 'accidents': 761, 'seriousness': 8811, 'summarized': 9602, 'contracts': 2571, 'phrase': 7354, 'discretion': 3225, 'jerks': 5571, 'pricy': 7639, 'misplaced': 6448, 'backpacking': 1408, 'boonies': 1692, 'softwares': 9144, 'continually': 2561, 'adapts': 829, 'portions': 7522, 'negotiate': 6697, 'freeway': 4393, 'ramps': 7927, 'zillion': 11171, 'admirably': 860, 'cups': 2795, 'heaphone': 4876, 'snuggly': 9131, 'stretching': 9489, 'grow': 4710, '8.99': 619, 'eektech': 3576, 'eek': 3575, 'sufficiently': 9589, 'assignment': 1260, 'reinsert': 8166, 'upholstery': 10488, 'jeans': 5567, 'alter': 1034, 'dongles': 3319, 'begging': 1512, 'knocked': 5700, 'cautious': 2039, 'fab': 4001, 'v270': 10556, 'unpacked': 10430, 'wel': 10887, 'authority': 1337, 'habits': 4758, 'increasingly': 5262, 'podcasts': 7476, 'commuting': 2362, '--only': 43, '--no': 41, 'strenuous': 9482, '--nowhere': 42, 'gingerly': 4586, 'repackage': 8235, 'relieved': 8190, 'alleviate': 999, 'wringer': 11078, 'videophile': 10660, 'merely': 6326, '192': 258, 'subtle': 9559, 'nuances': 6829, 'vaseline': 10596, 'lossless': 6043, 'accustomed': 781, 'differentiation': 3135, 'bloody': 1636, 'miracle': 6432, 'endorse': 3688, 'stepping': 9405, 'overwhelmed': 7093, 'hd-600': 4851, 'hd-25': 4845, 'hd-25sp': 4846, 'cried': 2736, 'absence': 726, 'mccartney': 6264, 'lennon': 5863, "''": 9, 'economy': 3561, 'beatles': 1484, 'george': 4561, 'harrison': 4822, 'ringo': 8445, 'starr': 9362, 'decade': 2922, 'capture': 1968, 'analogue': 1081, 'warmer': 10797, 'solo': 9158, '1982': 276, 'tug': 10241, 'war': 10791, 'stereofield': 9409, 'silence': 8969, 'geoff': 4559, 'emerick': 3644, 'egg': 3590, 'milk': 6397, 'honey': 4995, 'dream': 3388, 'gorgeous': 4634, 'dictates': 3122, 'dividers': 3280, 'carpeting': 1991, 'ceilings': 2051, 'plaster': 7424, 'affects': 904, 'snare': 9123, 'inconsistencies': 5251, 'sabotaged': 8567, 'mistakes': 6461, 'phenomenally': 7330, 'sennhesier': 8779, 'noteworthy': 6802, 'isao': 5518, 'tomita': 10042, 'firebird': 4185, '1976': 271, 'eponymous': 3747, '1979': 274, 'steely': 9395, 'dan': 2858, 'gaucho': 4524, '1980': 275, 'walsh': 10781, 'smoker': 9108, '1973': 267, '10cc': 168, 'soundtrack': 9215, '1975': 270, 'godley': 4617, 'creme': 2734, 'consequences': 2510, '1977': 272, 'supertramp': 9624, 'crime': 2737, 'century': 2070, '1974': 269, 'xtc': 11123, 'peter': 7323, 'gabriel': 4497, 'kate': 5639, 'dreaming': 3389, 'pursuit': 7825, 'cobham': 2290, '1972': 266, 'frank': 4377, 'zappa': 11163, 'goodnight': 4628, 'vienna': 10665, 'prince': 7642, 'todd': 10035, 'rundgren': 8540, 'hermit': 4914, 'mink': 6421, 'hollow': 4983, '1978': 273, 'oyster': 7102, 'cult': 2790, 'agents': 926, 'venus': 10621, 'mars': 6220, '1971': 265, '1970': 264, 'karma': 5638, 'guitars': 4738, 'clipping': 2240, 'remasters': 8202, 'antiquated': 1127, 'acurate': 819, 'transcend': 10121, 'gbyte': 4529, 'retailing': 8364, 'har': 4806, '.wav': 100, '.msv': 96, '32meg': 397, 'hearts': 4886, 'npr': 6824, 'shackled': 8845, 'goodness': 4627, 'diminished': 3154, 'auxiliary': 1350, 'boom': 1685, 'hp12c': 5047, 'productivity': 7693, 'consultant': 2537, 'withstood': 10998, 'statistical': 9380, 'financial': 4162, 'mathematical': 6239, 'hint': 4950, '650mah': 555, '1000mah': 157, 'accupower': 776, 'postcards': 7539, 'camers': 1933, 'notepad': 6800, 'controlled': 2583, '535': 509, 'pong': 7496, 'purhcased': 7818, 'bf2': 1561, 'util': 10542, 'ne': 6668, 'enjoying': 3716, 'mucho': 6593, 'parusing': 7204, 'torn': 10063, 'reasign': 8001, 'reccomend': 8027, 'connectability': 2496, '1996': 284, 'winplay': 10972, 'l3enc': 5723, 'nomad': 6770, 'jukebox': 5613, '20gig': 324, 'africa': 915, '70,000': 573, 'zune': 11185, 'stray': 9469, ';)': 680, 'generous': 4548, 'e260': 3506, 'cartoon': 2003, 'flush': 4278, 'protrusion': 7763, 'phones(included': 7342, 'dvd+/-': 3471, '299': 360, 'thonk': 9946, '2.4gig': 298, 'p4': 7110, 'drumroll': 3419, 'fridge': 4409, 'crammmed': 2701, 'emi': 3646, 'suppression': 9641, '75db': 597, 'cured': 2797, 'rattle': 7954, 'surgemaster': 9659, 'investments': 5478, 'belkin.com': 1535, 'wakes': 10762, 'astounding': 1277, 'dynamics': 3495, 'tho': 9945, 'iterations': 5541, 'contributing': 2579, '-controls': 57, "-can't": 56, 'listem': 5953, 'goofey': 4630, 'sink': 8997, 'moster': 6533, 'inprovement': 5336, 'mt': 6587, '6.1': 530, 'runing': 8541, 'ceiling': 2050, 'intall': 5385, 'brezz': 1757, 'surond': 9662, 'wayne': 10846, 'mn': 6471, 'soldier': 9152, 'serving': 8818, 'combat': 2327, 'duties': 3464, 'eclipse': 3559, 'encases': 3665, 'exterior': 3963, 'proteck': 7752, 'veary': 10604, 'agai': 920, 'omg': 6934, 'yamaha': 11131, 'wharfdale': 10900, 'diamonds': 3119, 'insted': 5369, 'toned': 10047, 'opener': 6964, 'painters': 7145, '123.5': 198, '121': 197, 'ht': 5056, 'dvrs': 3485, 'filtering': 4155, 'benefit': 1548, 'diversity': 3277, 'dimmed': 3158, 'esp': 3787, 'viewers': 10669, 'cablevision': 1902, 'logic3': 6005, 'ambiance': 1056, '59.00': 517, 'atachee': 1286, 'wished': 10991, 'unsightly': 10454, 'ons': 6953, 'peeled': 7264, 'girls': 4589, 'church': 2175, '75th': 598, 'anniversary': 1098, 'celebration': 2052, 'sweatshirts': 9695, 'quot;invent': 7886, 'it!"': 5534, 'hammermill': 4773, 'project': 7716, 'wet': 10896, 'spotted': 9308, 'laundered': 5800, 'lookin': 6023, 'ysp-1': 11155, 'companion': 2369, 'hitachi': 4960, 'ultravision': 10317, 'infiniti': 5304, 'concerns': 2448, 'aestethic': 896, 'visited': 10690, 'salesroom': 8588, 'demonstrations': 3008, 'enhancement': 3710, 'leveling': 5882, 'centering': 2064, 'mimic': 6403, 'designation': 3045, 'minimalistic': 6417, 'leak': 5824, 'subway': 9562, 'rider': 8429, 'spongy': 9296, 'becomming': 1494, 'modem(moto4200)+wlanrouter': 6481, 'steelbar': 9394, 'enforced': 3696, 'concrete': 2453, 'performenc': 7290, '9mbits': 673, 'penatration': 7268, 'g120': 4485, 'demention': 3002, 'allover': 1004, 'allrange': 1010, 'adjacent': 849, 'negihbor': 6695, 'celeron': 2053, '800/256mbram': 624, 'mine~': 6411, '5stars': 524, 'config': 2471, 'pavillion': 7237, 'zd7050': 11165, 'e3c': 3511, 'sealing': 8709, 'foams': 4285, 'industrial': 5294, 'detergent': 3079, 'soak': 9133, 'rinse': 8449, 'rockin': 8485, 'landscape': 5755, 'conglomerate': 2492, 'buyout': 1871, 'audiophiles': 1329, 'trio': 10198, 'magical': 6132, 'magic': 6131, 'madness': 6124, 'intec': 5387, 'nasal': 6651, 'splits': 9287, 'sixteen': 9016, 'fraternity': 4379, 'moterola': 6536, 'blazing': 1613, 'soo': 9186, 'upwards': 10505, 'relax': 8180, 'sack': 8570, 'entertain': 3727, 'ubiquitous': 10303, 'substituted': 9557, 'italy': 5537, 'squeezebox': 9323, 'medialife': 6287, 'realplayer': 7995, 'windvd': 10968, 'powerdvd': 7558, 'worship': 11058, 'biggies': 1572, 'keystroke': 5663, 'alt+right': 1031, 'alt+left': 1030, 'browsin': 1792, 'admittedly': 865, 'dweller': 3486, 'plasticky': 7426, 'quot;standard"': 7891, 'trustworthy': 10227, 'applied': 1174, 'berate': 1551, 'bench': 1543, 'measurements': 6279, 'recom': 8069, 'cfd': 2081, 'v5': 10563, 'oritron': 7016, 'op5034': 6961, 'rp2410': 8516, 'fuzziness': 4471, 'lent': 5868, 'inferiority': 5302, '6600gt': 558, 'verto': 10642, 'ddr3': 2896, 'quadrofx': 7848, 'agp': 936, 'parhelia': 7187, 'dl256': 3285, 'beater': 1482, 'pcie': 7252, 'sacrificing': 8573, 'shuttle': 8946, 'xpc': 11118, 'sb75g2': 8638, 'delight': 2986, 'absurdly': 733, 'zippy': 11177, 'windowing': 10963, 'nvidia': 6845, 'grace': 4644, 'ducks': 3436, 'panels': 7162, 'alas': 979, '3840': 417, '2400': 338, 'cuz': 2825, 'realestate': 7986, 'geforce': 4535, '7800': 602, 'gt': 4718, 'quadro': 7847, '7800gt': 603, '6800ultra': 563, 'ddl': 2894, '6800gt': 562, '6600': 557, 'g5(pci': 4490, '4500': 461, '3400': 404, '3450': 405, '4400': 456, '7800gtx': 604, 'v8': 10569, 'v7': 10568, 'madrid': 6125, 'undergoing': 10359, 'veer': 10605, 'topographical': 10060, 'contours': 2569, 'rivers': 8461, 'existance': 3887, 'tailored': 9771, 'independant': 5271, 'deduction': 2946, 'transitioning': 10138, 'zones': 11179, 'envision': 3742, 'en-7100': 3658, 'resisted': 8314, 's560d': 8564, 'surpassed': 9663, 'gotton': 4638, 'flooring': 4265, 'nj': 6759, '700p.': 577, 'n70': 6637, 'favourite': 4082, 'str': 9453, 'de898': 2898, 'miscalculated': 6436, 'hulk': 5073, 'tears': 9830, 'private': 7658, 'ryan': 8552, 'gunfight': 4739, 'distinctly': 3262, 'codecs': 2298, '330': 399, 'progam': 7703, 'emergenies': 3643, 'abroad': 725, 'comfortability': 2338, 'clickers': 2229, 'seek': 8743, 'perfection': 7283, 'adequately': 845, 'awe': 1371, '1200x1600p': 195, 'almanac': 1012, 'recalibrate': 8022, 'recalibration': 8023, 'hertz': 4915, 'neverlost': 6722, 'navigating': 6661, 'lazy': 5813, 'spell': 9264, 'recreation': 8098, '175': 247, 'chugged': 2173, 'specified': 9251, 'icons': 5123, 'burger': 1841, 'krispy': 5713, 'kreme': 5712, 'pois': 7486, 'geocacher': 4557, 'geocaches': 4558, 'c5xx': 1891, 'sirf': 9002, 'cloud': 2262, 'speech': 9257, 'announcing': 1099, 'topo': 10059, 'adventures': 885, 'enabling': 3662, 'fingerprints': 4173, 'inevitable': 5298, 'ammonia': 1063, 'cleaners': 2214, 'fog': 4291, 'antiseptic': 1129, 'alcohol': 984, 'towelettes': 10091, 'tryed': 10233, 'wardriving': 10793, 'netstumbler': 6715, 'pocketwarrior': 7474, 'kismet': 5685, 'airsnort': 961, 'wcf12': 10850, 'prism': 7654, 'lucent': 6078, 'orinoco': 7015, 'photgrapher': 7345, 'obessed': 6856, 'cheapies': 2132, 'originals': 7014, 'expensicve': 3915, 'selle': 8765, 'morter': 6532, 'payment': 7243, 'compatibilty': 2388, 'communicating': 2357, 'interet': 5416, 'cartoons': 2005, 'sublime': 9543, 'squalling': 9317, 'downstream': 3353, '-7': 49, '+9': 21, 'upstream': 10502, 'rg59': 8418, 'r6': 7901, 'untill': 10462, 'mot': 6535, '6412': 547, '36xbr800': 414, 'unlimited': 10418, 'realistic': 7988, 'ago.my': 935, 'vehile': 10610, 'radio.the': 7909, 'indash': 5267, 'poor.on': 7499, 'aux': 1349, 'manual.i': 6179, 'into.xm': 5448, '40.00.all': 442, 'powerex': 7560, 'outdone': 7032, 'weeklong': 10874, 'http://esupport.sony.com/us/perl/model-documents.pl?mdl=dvpns90v&loc=3': 5060, 'ns90v': 6826, '76': 599, 'decrease': 2939, '-15': 47, 'db': 2887, '+5': 20, '77': 601, 'sacd': 8569, 'objective': 6858, 'evaluation': 3816, 'surprize': 9668, 'optional': 6995, 'conveniently': 2590, 'downmixed': 3348, 'pcm': 7253, 'prologic': 7720, 'pseudo': 7780, 'slideshow': 9060, 'onscreen': 6954, 'tweaks': 10276, 'shooters': 8902, 'geek': 4534, '84': 634, 'exploiting': 3940, 'xr55': 11120, 'amping': 1072, 'mains': 6145, 'sq': 9316, 'thousand': 9952, 'boutique': 1724, 'shops': 8908, 'profits': 7702, 'hl-2070n': 4965, 'i"ve': 5103, 'curling': 2798, 'keypads': 5661, '1280': 204, 'gentoo': 4555, 'resolutions': 8319, 'tabloid': 9761, 'drawings': 3383, 'slurps': 9090, 'homer': 4988, 'simpson': 8988, 'beer': 1506, 'niagara': 6740, 'cite': 2191, 'clog': 2246, 'streaks': 9472, 'unclogging': 10345, 'mtink': 6589, 'blasts': 1610, 'reservoir': 8307, 'sponge': 9295, 'sandpaper': 8604, 'overflow': 7065, 'smear': 9104, 'windex': 10960, 'towels': 10092, 'somone': 9177, 'nozzle': 6823, 'vey': 10645, 'mat': 6232, 'cue': 2786, 'proofs': 7740, 'parchase': 7184, 'profesional': 7695, 'workhorses': 11045, 'acomadate': 788, 'payolla': 7245, 'cartriges': 2009, 'expences': 3912, 'nullified': 6834, 'printouts': 7650, 'cadadate': 1907, '205': 321, 'bullets': 1831, 'whizzing': 10925, 'swords': 9709, 'acounstic': 789, 'dynamic': 3494, 'coupling': 2673, 'supra': 9644, 'aural': 1335, '20,000': 303, 'spl': 9282, '1khz': 287, 'vrms': 10730, '112': 181, 'thd': 9909, '0.5': 106, '):': 17, '206': 322, 'singnal': 8996, 'copper': 2622, 'ofc': 6900, '6.3': 531, 'id.with': 5125, 'coordinates': 2616, 'bingo': 1583, 'unexpensive': 10381, '4121s': 449, 'admire': 861, 'faithful': 4028, 'satsfied': 8623, 'moneys': 6507, 'wpa2': 11067, 'privacy': 7657, 'xbox360': 11109, 'gizmos': 4596, 'carpool': 1993, 'passengers': 7211, 'chords': 2166, 'referbished': 8119, 'hd841': 4854, '642': 548, '850': 636, '480p': 471, '720p': 589, 'explaining': 3936, 'index': 5277, 'offbrand': 6902, 'perfomace': 7285, 'discription': 3226, 'suprise': 9646, 'mp4': 6573, 'instread': 5372, 'flack': 4211, 'chane': 2097, 'technosavy': 9843, 'ray': 7960, '1080p': 166, 'pivot': 7397, 'compacts': 2366, 'deflection': 2970, 'sloppiness': 9076, 'altough': 1041, 'decreases': 2941, 'sofa': 9139, '500-$600': 497, 'lowered': 6064, 'miniplug': 6420, 'umbrella': 10319, 'foldup': 4298, 'intrusive': 5457, 'buckles': 1807, 'straps': 9465, 'tightened': 9996, 'luggage': 6084, 'clocks': 2244, 'expecially': 3903, 'holidays': 4982, 'sdsdqu-1024': 8703, 'e10m.': 3502, 'u.s.': 10299, 'repetitions': 8248, 'wg111': 10897, 'america': 1061, 'wallets': 10775, 'wiping': 10981, 'nylon': 6850, 'remember-': 8205, 'refers': 8124, 'accompaning': 766, 'booklets': 1679, 'travelers': 10158, 'pops': 7504, 'parites': 7189, 'flexability': 4244, 'record--': 8085, 'teriffic': 9877, 'stutters': 9527, 'icing': 5121, 'wierd': 10940, '.......': 79, 'dorms': 3330, 'creatures': 2729, 'lansings': 5763, 'sbl': 8639, 'soundcards': 9206, 'fonts': 4308, 'acually': 818, 'hd650': 4853, 'cancell': 1945, 'denon': 3011, 'cheapy': 2135, 'doohickey': 3322, 'speedy': 9262, 'vcr+': 10601, 'tvio': 10270, 'events': 3822, 'commercial': 2350, 'advances': 879, 'granular': 4663, 'clicks': 2231, 'forwarding': 4357, 'deadzone': 2903, 'blockiness': 1631, 'blur': 1647, 'animated': 1096, 'lp': 6070, 'freespace': 4391, 'adopted': 867, '-ram': 67, 'sensible': 8785, 'interesting': 5414, 'trivially': 10208, 'hts': 5058, 'reviews,(which': 8407, 'hls-5687w': 4966, 'directv': 3175, 'successor': 9569, '49g.': 476, 'securedigital': 8738, '0.9': 107, '49': 473, 'accessible': 751, 'recognice': 8061, 'fat16': 4066, 'fat32': 4067, 'metallic': 6342, 'distinguish': 3263, 'tomato': 10041, 'turquiose': 10266, 'tan': 9789, 'anodized': 1107, 'tastefully': 9812, 'geared': 4532, 'buttery': 1861, 'calculators': 1917, 'ingeniousness': 5317, 'floored': 4264, 'wwii': 11096, 'shooter': 8901, 'strictly': 9490, 'pap2': 7170, 'extreamly': 3971, 'bell': 1537, 'salt': 8589, '911': 656, 'optics': 6991, 'susceptible': 9676, 'emf': 3645, 'flimpsy': 4254, '5001': 498, 'seaseme': 8720, '15.4': 227, 'chicago': 2148, 'downtown': 3354, 'wacker': 10747, 'dr.': 3362, 'reroute': 8293, 'soundwise': 9217, '5.1s': 487, 'tweaked': 10274, 'reaching': 7972, 'soundblaster': 9204, '128kbps': 206, 'encoding': 3670, 'loudness': 6050, 'homework': 4991, 'sparse': 9233, 'paperback': 7172, 'pens': 7272, 'bottles': 1716, 'squeezed': 9324, 'testbooks': 9889, 'courteous': 2676, 'bicycle': 1565, 'coolers': 2612, 'tunedok': 10248, 'tunecok': 10246, 'rubbery': 8522, 'wan': 10782, 'u2': 10300, '960': 664, 'dv5139us': 3468, '1.8': 135, 'wdth': 10851, '14.1': 214, 'meg': 6296, 'megapixels': 6300, 'wildfire': 10946, 'robbery': 8479, 'kittens': 5688, 'resize': 8315, 'helicopter': 4901, 'police': 7488, 'poll': 7492, 'deer': 2951, 'dept': 3027, 'wafer': 10749, 'hug': 5069, 'tunecastii': 10245, 'crackles': 2696, 'safest': 8580, 'safely': 8578, 'congestion': 2491, 'lighters': 5913, 'spoken': 9294, 'overlap': 7071, 'rewind': 8414, 'greetings': 4684, 'greeting': 4683, 'sequence': 8803, 'elderly': 3604, 'gemstar': 4537, 'ebook': 3554, '1150': 183, 'openness': 6967, 'beauty': 1489, 'photographing': 7349, 'shattering': 8867, 'domain': 3311, 'moisture': 6493, 'condensation': 2455, 'dew': 3098, 'temp': 9858, 'completo': 2415, 'colocar': 2317, 'peque': 7276, 'inal': 5226, 'mbrica': 6261, 'casera': 2011, 'problemas': 7668, 'sencillo': 8772, 'instalar': 5356, 'tanto': 9797, 'cualquier': 2781, 'bolsa': 1666, 'experiencia': 3921, 'puede': 7795, 'hacerse': 4760, 'tiene': 9989, 'fuerte': 4432, 'atenuaciones': 1287, 'saludo': 8590, '27': 349, 'video4': 10656, 'dvp360': 3482, 'dinosaur': 3165, 'elite': 3625, 'projector': 7718, 'playe': 7436, 'linkysys': 5945, 'expirience': 3932, 'intermittant': 5422, 'amazons': 1054, '}': 11188, 'intensified': 5400, 'videocamera': 10657, 'addresing': 838, 'feared': 4089, '3.2': 377, 'firmwave': 4194, '4.32': 435, 'jansport': 5559, 'kelty': 5648, 'backpacker': 1407, 'proofing': 7739, 'sophisticated': 9193, 'lumbar': 6087, 'kennisington': 5650, 'strap--': 9463, 'slung': 9089, 'journalist': 5600, 'tote': 10073, 'microcassette': 6367, 'interviews': 5443, 'transcribe': 10122, '.avi': 91, 'ware': 10794, 'fewer': 4121, 'momentarily': 6500, 'opt': 6986, 'fullest': 4440, '1.26': 130, 'leery': 5847, 'encourage': 3674, 'jump': 5616, 'conside': 2513, 'cvr600': 2826, 'groove': 4701, 'contemporary': 2554, 'creature': 2728, 'flammable': 4217, 'wally': 10779, 'm1000': 6096, 'sv': 9682, 'subways': 9563, 'beating': 1483, 'preemptively': 7588, 'bummed': 1832, 'deadbolt': 2901, 'preface': 7589, 'reviews(here': 8406, 'focused': 4288, 'develop': 3090, 'bash': 1450, 'alt': 1029, 'cod2': 2295, 'rumor': 8537, 'nonexistent': 6776, 'illiterate': 5161, 'judging': 5610, 'grammatical': 4656, 'quietness': 7876, 'rival': 8457, 'confidently': 2470, 'design(no': 3044, 'laughed': 5796, 'concerning': 2447, 'illumination': 5164, 'demerits': 3003, 'capitalize': 1965, 'deserved': 3040, 'aesthetics': 898, 'eliminates': 3622, 'sacrificed': 8572, 'one(although': 6944, 'recap': 8026, 'recommending': 8079, 'activities': 811, 'throbbing': 9963, 'complement': 2407, 'backspace': 1411, '100ma': 158, 'ps/2': 7776, 'separates': 8797, 'visor': 10692, 'techgnet': 9832, 'accurrate': 780, 'coure': 2674, 'spekaers': 9263, 'cmss': 2274, 'neo': 6705, 'din': 3160, 'megaworks': 6301, 'gigaworks': 4580, 'crystalizer': 2774, 'belive': 1533, 'asio': 1244, 'audigy': 1325, 'zs': 11184, 'esi': 3785, 'juli@': 5614, 'theme': 9915, 'beacuse': 1472, 'warrnty': 10813, "could't": 2659, 'urc9910': 10511, '880': 641, 'urc9910s': 10512, 'identically': 5131, 'afik': 912, 'progammable': 7704, 'mappable': 6192, 'obscure': 6863, 'looses': 6033, 'performer': 7291, 'epsom': 3748, 'draft': 3363, 'q5949x': 7840, '120.00': 193, 'divided': 3278, 'cx2610': 2828, 'lapdesk': 5766, 'reposition': 8268, 'versatile': 10635, 'curropt': 2801, 'steve': 9412, 'cdpcx355': 2044, '301': 386, 'hobby': 4973, 'sear': 8714, 'sickening': 8949, 'dent': 3013, 'xplode': 11119, 'adult': 875, 'males': 6157, '27"': 350, 'tau': 9815, 'deciding': 2932, 'criteria': 2745, 'consideration': 2516, '16:9': 242, 'enhanced': 3709, '36"': 409, 'freq': 4399, 'grinding': 4693, 'htz': 5064, 'enjo': 3712, 'unmute': 10422, 'melody': 6302, 'strain': 9458, 'raises': 7924, 'malfunction': 6159, 'pc155': 7248, 'spacial': 9226, 'imperfections': 5192, 'sock': 9136, 'obligated': 6860, 'pc165': 7249, '155s': 233, 'fuller': 4439, '165s': 240, 'tangles': 9792, 'dg5': 3100, 'killer': 5678, 'otherhand': 7022, 'steller': 9400, 'deminish': 3004, 'complementary': 2408, 'ur29': 10509, 'sportapro': 9302, 'nc20': 6666, 'folding': 4296, 'seats': 8725, 'overdrives': 7062, 'akg': 972, 'k240s': 5631, 'ditto': 3275, 'hd-420s': 4847, 'k26p': 5632, 'strongest': 9500, '1812': 252, 'overture': 7090, 'cannon': 1954, 'stow': 9452, 'px100s': 7836, 'straighten': 9455, 'gripping': 4698, 'steel': 9393, 'unbending': 10336, 'fitted': 4201, 'unbent': 10337, 'sliders': 9058, 'headbands': 4862, 'portapro': 7518, 'scalp': 8643, 'distribute': 3271, 'suspicions': 9679, 'satisified': 8622, 'autoroute': 1348, 'caching': 1906, 'phoenomenal': 7336, 'm37v': 6102, 'srf-59': 9328, 'cousin': 2677, 'evening': 3818, 'aired': 952, 'remixes': 8210, 'eighties': 3594, 'blessfully': 1619, 'interruption': 5434, 'fish': 4197, 'necessitated': 6680, 'musicality': 6612, 'nevertheless': 6723, 'sinuses': 8999, 'slouch': 9080, 'hauled': 4838, 'woai': 11013, 'antonio': 1130, 'dxing': 3491, 'xin': 11113, 'feng': 4117, 'thrills': 9962, 'aiplane': 949, 'entertained': 3728, 'mechanics': 6284, 'einstein': 3595, 'roaring': 8477, 'airliner': 955, 'haul': 4837, 'caveat': 2040, 'sam': 8591, 'club': 2263, 'fussy': 4467, 'traveller': 10160, 'doesn;t': 3305, 'fofill': 4290, 'hoe': 4974, 'logi3': 6003, 'ippod': 5497, 'proposed': 7744, 'onstage': 6955, 'toaster': 10030, 'ovens': 7054, 'delonghi': 2995, 'alfredo': 988, 'cuisinart': 2788, 'tob-30bc': 10032, 'toasts': 10031, 'bakes': 1424, 'cooking': 2608, 'reinforcement': 8165, 'workstations': 11051, 'assisted': 1262, 'aggravating': 928, 'woes': 11018, 'unamplified': 10327, 'mice(cordless': 6363, 'optical)and': 6990, 'weighing': 10880, 'grams': 4657, 'liek': 5899, 'ringtone': 8447, 'cos': 2647, 'readjusting': 7982, 'changin': 2102, 'exchanges': 3870, '2hr': 367, 'likethe': 5924, 'transformers': 10133, "shoulldn't": 8924, 'restraint': 8350, 'wedges': 10869, 'backin': 1399, 'transformer': 10132, 'digging': 3142, 'quibbles': 7865, 'stiffness': 9421, 'shutters': 8944, 'overcome': 7060, 'carpets': 1992, 'tucked': 10238, 'degradation': 2972, 'mp830': 6576, 'saddened': 8575, 'demise': 3005, 'cx6400': 2829, 'dried': 3391, 'videography': 10658, 'weddings': 10868, 'lapel': 5767, 'iriver-795': 5504, 'recommende': 8077, 'lancing': 5752, 'intalled': 5386, 'ilink': 5158, 'realy': 7999, 'teamed': 9827, '60cs': 541, 'nearest': 6672, 'consultants': 2538, 'broad': 1775, 'geography': 4560, 'aging': 933, 'v2': 10551, 'deteriorate': 3080, 'v2s': 10558, 'v6': 10565, 'v6s': 10567, 'concur': 2454, 'reducetreble': 8113, 'overemphasized': 7063, 'flatness': 4230, 'coloring': 2321, 'albeit': 981, 'uncolored': 10346, 'v600': 10566, 'musicians': 6613, 'talent': 9777, 'isqueez': 5529, 'awesomestufffree.com/portabledv': 1376, 'editor': 3571, 'newspaper': 6735, 'elegant': 3613, 'fob': 4286, 'sub-$150': 9537, '20.00': 305, 'classy': 2207, 'starbucks': 9360, 'qualit': 7851, 'g710': 4496, 'passive': 7215, 'varieties': 10590, 'crammed': 2700, 'backlit': 1404, 'scolds': 8671, '9/05': 650, 'tele': 9848, 'hitch': 4961, 'i.d': 5106, 'rattles': 7955, 'v3.0_20': 10560, 'scheduled': 8663, 'emailing': 3632, 'incidents': 5240, 'fr114p': 4367, 'highlander': 4934, 'windsheild': 10966, 'signels': 8964, 'ishuffle': 5519, 'livable': 5969, 'alpahbetical': 1022, 'blind': 1622, 'helen': 4900, 'keller': 5647, 'engraved': 3707, '79.00': 607, 'decades': 2923, 'degreed': 2977, 'eazy': 3551, 'dulls': 3445, 'necklace': 6684, 'greasy': 4675, 'soap': 9134, 'detracts': 3088, 'pants': 7169, 'dangled': 2863, 'labelled': 5730, '24.99': 336, '49.99': 474, '34.99': 401, 'cingular': 2181, '8125': 632, 'noting': 6812, 'demon': 3007, 'attest': 1312, 'inherently': 5318, 'occasionnally': 6880, 'wit': 10995, 'paws': 7238, 'reboots': 8015, 'duet': 3440, '36.95': 410, 'dealmac': 2911, 'thud': 9973, 'desks': 3055, 'abit': 718, 'activly': 813, "6'3": 528, 'posture': 7544, 'raising': 7925, 'tritton': 10205, '8x10s': 646, 'tg2700': 9897, 'tg2720': 9898, 'tg2730': 9899, 'tg2740': 9900, 'tga271v': 9903, 'registered': 8152, 'instaltion': 5363, 'grips': 4700, 'sizing': 9022, 'ofen': 6901, 'interchangeable': 5408, 'metalic': 6341, 'indented': 5270, 'bordered': 1700, 'merchant': 6321, 'horrific': 5020, 'prospective': 7751, 'employ': 3651, 'braindead': 1737, 'dimwits': 3159, 'detachable': 3069, 'needed-': 6687, 'built!)and': 1824, 'wipe': 10979, 'tickets': 9987, 'lug': 6083, 'diagonally': 3107, 'accross': 774, 'chest': 2146, 'wheeled': 10906, 'aisle': 966, "5'1": 484, 'decently': 2928, 'foward': 4364, 'affixed': 906, 'defend': 2959, 'nightly': 6751, 'preferable': 7591, 'cheep': 2143, 'cone': 2464, 'yield': 11144, 'removes': 8222, 'listeners': 5958, 'monies': 6508, 'twelve': 10277, 'boose': 1693, 'acceptabl': 742, 'unbelievably': 10335, 'giveaway': 4592, 'movements': 6564, 'musi': 6609, 'deemed': 2947, 'consists': 2526, 'enclosed': 3666, 'drifted': 3393, 'profiler': 7700, 'gamepads': 4508, 'splinter': 9285, 'wing': 10970, 'alliance': 1001, 'diagonal': 3106, 'fighter': 4135, '500:1': 499, '700:1': 575, '20.1': 306, 'unreal': 10444, 'tournament': 10086, 'aspect': 1252, '4:3': 477, 'centered': 2063, 'horrors': 5023, 'excess': 3865, 'cordage': 2626, 'earthshaking': 3537, 'pluged': 7461, 'stremlined': 9479, 'requirments': 8292, 'boke': 1664, 'nightstand': 6753, 'veritable': 10631, 'attracts': 1318, 'possibility': 7533, 'truthfully': 10230, 'fingernails': 4171, 'survived': 9674, 'ferret': 4119, 'puncture': 7808, 'refills': 8127, 'inkject': 5327, 'flimsiness': 4255, 'dialtone': 3115, 'paging': 7136, '110v': 180, 'directories': 3173, 'oher': 6921, 'extort': 3967, 'undeliverd': 10355, 'bomb': 1669, 'diggiti': 3143, 'chyrsler': 2176, 'cruiser': 2764, 'column': 2325, 'attract': 1315, 'unwanted': 10470, 'scuffing': 8697, 'blemishes': 1616, 'jay': 5563, 'shahee': 8850, 'partner': 7200, '.01': 87, 'a9': 703, '4.50': 437, 'trepidation': 10182, 'carring': 1997, 'menbers': 6312, 'staps': 9358, 'upgrades': 10486, 'favorably': 4079, 'obtaibed': 6870, 'sunrocket': 9611, 'hella': 4903, 'shower': 8931, 'underestimated': 10358, 'nearley': 6673, 'supprised': 9643, 'moral': 6525, 'highley': 4935, 'stationed': 9378, 'homesick': 4990, 'fantatstic': 4049, 'mp780': 6575, 'borderless': 1701, '1/2x11': 139, 'turnaround': 10260, 'verbati': 10623, 'i5': 5110, 'prevention': 7626, '56': 516, '2mp': 369, 'dragged': 3366, 'mia': 6360, 'dialog': 3111, 'cutie': 2820, 'dvpnss550': 3483, 'mavica': 6247, '.42': 89, 'workload': 11047, 'faxing': 4085, 'integrate': 5388, 'photocopying': 7347, 'faxes': 4084, 'logs': 6013, 'fathom': 4071, 'hall': 4769, 'taut': 9816, 'guitarist': 4737, 'rediscover': 8108, 'percussion': 7281, 'sections': 8734, 'dearly': 2914, 'ktxpro1s': 5717, 'escapes': 3783, 'edith': 3568, 'funeral': 4454, 'disposal': 3249, 'fork': 4337, 'sub-$20': 9538, 'plopped': 7459, 'adopters': 868, 'h120': 4750, 'h320': 4753, 'h340': 4754, 'av500': 1352, 'coat': 2286, 'reencode': 8116, 'pro-4aa': 7661, '1/4"-to-3.5': 141, 'watergate': 10834, 'hearings': 4881, '1973/1974': 268, 'senators': 8771, 'attorneys': 1314, '4aa': 478, 'extermely': 3964, 'fatiguing': 4073, 'coiled': 2305, 'positives': 7530, 'surged': 9658, 'fusing': 4463, 'coil': 2304, 'paddded': 7127, 'preserved': 7610, 'listeining': 5952, 'concealed': 2441, 'weighty': 10884, 'nite': 6758, 'generaly': 4541, 'q9b': 7841, 'tilted': 10000, 'downwards': 3356, 'unpleasant': 10432, 'disassemble': 3194, 'crispness': 2743, '120dpi': 196, '1280x1024': 205, 'computing': 2439, 'surfing': 9656, '400x300': 446, 'psps': 7782, 'ip4000': 5490, 'refilled': 8126, '13x19': 211, 'satisifed': 8621, 'w.this': 10736, 'windy': 10969, 'lowrance': 6067, 'sgood': 8843, '340': 402, 'advantages': 882, 'businessweek': 1855, 'ranks': 7936, 'excerpt': 3864, 'streetpilot': 9477, 'tmj': 10027, 'crooked': 2750, 'preparing': 7601, 'dinner': 3164, 'elfishly': 3619, 'glasses': 4603, 'necessitiy': 6681, 'w2': 10740, 'ridiculus': 8435, 'dozen': 3357, 'competitive': 2398, 'schmucks': 8665, 'exceptable': 3859, 'num': 6836, 'grave': 4670, 'skid': 9026, 'broadside': 1780, 'proclaiming': 7683, 'intrigued': 5450, 'fetish': 4120, 'outmatch': 7041, 'heights': 4898, 'brilliantly': 1770, 'emulated': 3657, 'innovative': 5333, 'pones': 7495, 'geting': 4564, 'anyuse': 1142, 'soundock': 9211, 'unsure': 10458, 'solitaire': 9157, 'tunejuice': 10249, '9v': 674, '-------': 29, 'efficently': 3583, '-use': 72, '-adjust': 52, 'port(extra': 7512, 'raio': 7921, 'consummes': 2545, '2mg': 368, 'rx': 8550, 'v2700': 10557, 'hookups': 5004, '46': 464, 'batman': 1462, 'permanently': 7301, 'reload': 8191, '680': 561, 'jiffy': 5577, 'accompany': 767, 'n.y.c.': 6635, 'protrude': 7762, 'tard': 9804, '75.99': 594, 'zens': 11168, 'isolate': 5525, 'leap': 5830, 'wap55ag': 10790, 'wmp55ag': 11011, 'wpc55ag': 11071, 'configurations': 2474, '----------------------------------------': 32, 'a+g': 692, 'climb': 2235, 'attic': 1313, 'cellar': 2055, '802.11a': 627, 'interoperate': 5430, '11mbps': 187, 'hotspots': 5032, 'whichever': 10913, '152': 231, '--------------------------------': 30, '---------------------------------------------': 33, '200mhz': 318, 'smoothness': 9115, 'freeing': 4389, 'inobtrusive': 5334, '530': 508, 'aw-810': 1364, 'calibrate': 1920, 'exceptional': 3861, 'trackman': 10104, 'sept.': 8801, 'behing': 1525, 'sends': 8776, 'recieves': 8056, '510': 504, 'colour': 2323, 'fr300': 4368, 'roadways': 8474, 'ctrex': 2778, 'magmount': 6134, 'remarkedly': 8201, 'hilly': 4946, 'guarentee': 4727, 'birds': 1588, 'gtx600vp4': 4721, 'ample': 1073, 'terrain': 9881, 'rocky': 8487, 'c.': 1882, 'inluding': 5332, 'siren': 9001, 'criticisms': 2749, 'afterthought': 919, '9.99': 649, 'filling': 4148, 'excellecnt': 3854, 'motorala': 6545, 'accesses': 750, 'syn1301b': 9720, 'diameter': 3116, 'tapered': 9801, 'optimization': 6993} 11197
C:\Goran\System\miniconda3\lib\site-packages\sklearn\feature_extraction\text.py:528: UserWarning: The parameter 'token_pattern' will not be used since 'tokenizer' is not None' warnings.warn(
# Step 2: Create TF-IDF vectors for train set and evaluation set reviews, convert the "string" labels into numeric labels
# Creating now TF-IDF vectors for train set, and then for evaluation set
train_tfidf_vectors = vectorizer.transform(train_set)
eval_tfidf_vectors = vectorizer.transform(eval_set)
# Converting labels "POS" and "NEG" into numeric labels, as required by the logistic regression classifier
# for the train set
train_labels = train_data["label"].tolist()
train_labels = [(1 if tl == "POS" else 0) for tl in train_labels]
# for the evaluation set
eval_labels = eval_data["label"].tolist()
eval_labels = [(1 if el == "POS" else 0) for el in eval_labels]
# Step 3: Train the logistic regression classifier on the training set
# For this we need the LogisticRegression class
from sklearn.linear_model import LogisticRegression
# we now train ("fit") the logistic regression classifier by providing the training input (tf-idf vectors of train tweets) and
# corresponding offensiveness labels for those tweets
classifier = LogisticRegression(C = 32) # , solver = 'lbfgs'
classifier.fit(train_tfidf_vectors, train_labels)
# the result is a trained classifier, which we can examine more closely in the next steps and make predictions with
print(classifier)
LogisticRegression(C=32)
accuracy = classifier.score(eval_tfidf_vectors, eval_labels)
print("Classification accuracy: " + str(accuracy * 100) + "%")
Classification accuracy: 84.5%
classifier.coef_[0]
print(classifier.coef_.shape)
(1, 11197)
# Step 5: Intepretability of the classifier: analysis of weights assigned to individual terms
# let's build a dictionary with words from our vocabulary as keys and their associated weights
# (produced by the LogisticRegression) classifier as values
# initialize the empty dictionary
weights_dict = {}
# for each term in the "vectorizer.vocabulary_" (dict that maps terms to IDs)
for term in vectorizer.vocabulary_:
# we add that term and look up the LR weight at the corresponding ID
ind = vectorizer.vocabulary_[term]
weights_dict[term] = classifier.coef_[0][ind]
# let's sort terms according to their LR weights, from lowest (largest negative values) to highest (largest positive values)
weights_sorted = list(sorted(weights_dict.items(), key=lambda item: item[1]))
# 20 terms with smallest weights (most indicative of the 0 class: "not offensive")
#print(weights_sorted[:100])
weights_sorted.reverse()
#print()
print(weights_sorted[:10])
[('great', 9.36429348761589), ('price', 8.558540037039485), ('excellent', 8.008258603871655), ('best', 7.067083137232206), ('perfect', 6.73393209671803), ('highly', 6.7284463947457365), ('works', 6.6023646579660955), ('fast', 5.557290493355246), ('memory', 5.343965437492039), ('comfortable', 5.0672909465467715)]
# normalizing weights
min_w = abs(min([weights_dict[w] for w in weights_dict]))
max_w = max([weights_dict[w] for w in weights_dict])
print(min_w, max_w)
for w in weights_dict:
divisor = min_w if (weights_dict[w] < 0) else max_w
weights_dict[w] = weights_dict[w] / divisor
print(weights_dict)
1.0 1.0 {'cons': 0.17164649635369597, 'tips': -0.2963109598939644, 'extremely': -0.08104025810291997, 'easy': 0.5080995228453113, 'carpet': -0.018221057108278666, 'lot': 0.38573809147241733, 'cds': -0.12029429259592637, 'stacked': -0.05249297188361589, 'top': 0.35022803854718193, 'poorly': -0.5912781512206062, 'designed': -0.10830718728623398, 'vertical': -0.03409449417998313, 'cd': -0.008756438963416052, 'rack': -0.2191249415477048, 'nt': -0.0919567402061493, 'individual': -0.17177562564005314, 'slots': -0.09899495348263787, 'want': 0.4069663124617991, 'bottom': -0.12454538759656071, 'stack': -0.029359905122326918, 'basically': -0.010418289573054724, 'pull': -0.03446390062788012, 'whole': -0.270104660298292, 'putting': -0.07704033105264774, 'together': -0.08720545256521785, 'pain': -0.01098783672358554, 'one': 0.24495891697627378, 'bought': 0.09121721668970012, 'break': -0.05557895749239894, 'piece': -0.41819321010405, 'metal': -0.19095942250963685, 'fit': 0.11042267815821837, 'guide': -0.14618740471959374, 'holes': 0.0794662587381603, '..': -0.03694226719799112, '...': 0.14487439735877333, 'even': -0.47820253757811065, 'well': 0.24939869543029553, 'gaps': -0.05249297188361589, 'casses': -0.05249297188361589, 'loose': 0.11896756901537989, 'fitting': -0.026562241429948813, 'pros': 0.2328481547098475, '..........': -0.05249297188361589, 'guess': -0.2588117245549615, 'hold': -0.05092897410076774, '....': -0.19567486828650776, "'s": 0.1442486911087914, 'nice': 0.1704213178062822, 'look': 0.08665776963561275, 'easily': 0.16314061562242058, 'steady': -0.05963777351529807, 'rug': -0.06345237625616665, 'surface': -0.041390820407129256, 'dispite': -0.17469656957426308, 'picture': 0.002709676951548766, 'box': -0.03535674642217266, 'shows': 0.005765995707075719, 'advice': -0.17878574622087393, 'need': 0.2552440929626895, 'holds': 0.21204595272764631, 'save': -0.11946742700265087, 'money': -0.5057600403835996, 'invest': -0.13056822623041153, 'something': -0.39043438405876135, 'nicer': -0.21027103887314083, 'sturdy': 0.09513992653183247, 'returned': -0.7466676054757891, 'three': -0.06045958196404239, 'units': -0.25091581288988385, 'now': -0.036307368813352975, 'defective': -0.2240974904414028, 'finally': -0.286917680719614, 'gave': -0.502443336940297, 'returning': -0.5820485537815365, 'system': 0.02469098831064028, 'dvd': 0.1423710305093516, 'player': 0.16326325725539556, 'constantly': -0.07315859266669278, 'gives': 0.1576670611797879, 'bad': -0.5406682055810564, 'disc': -0.00458287180975325, 'errors': -0.08389607192957652, 'skips': 0.013656601101386083, 'slightest': -0.3475654348613605, 'smudge': -0.020449175659942948, 'sound': 0.13212173515536546, 'quality': 0.20457640434952548, 'price': 0.9139546991300518, "n't": -0.24530234269662968, 'work': -0.7507624239329042, 'essentially': -0.07518443015055819, 'useless': -0.4080964353654972, 'complete': -0.084374371312534, 'rip': -0.08256689656084569, '-': -0.22299586006912236, 'point': -0.34324938578818104, 'knew': -0.17312968696367625, 'inexpensive': 0.1406006720673648, 'cases': -0.05286345812581206, 'ca': -0.18534384171185475, 'open': -0.06600551477314713, 'without': 0.39490272428537554, 'breaking': -0.18941093359226097, 'two': -0.355437342098213, 'pieces': -0.15977776716456804, 'used': 0.4678525378900957, '25': -0.327989308232661, 'pack': 0.15228753344058843, 'backups': -0.027482342131003926, 'last': 0.2893760358223661, '5': 0.09184134201527179, 'failed': -0.11658066705567226, 'thought': -0.19281874197412185, 'software': -0.34213095163388935, 'got': -0.042797470059025955, 'new': 0.015296892812353234, 'first': -0.23944682994830616, 'package': -0.1181083231216613, 'burner': -0.060169870876644375, 'another': -0.25093430138415795, 'reviewer': 0.03300660308259211, 'suggested': -0.06515191129670442, 'implying': -0.05632725122849354, 'people': 0.11096531347687365, 'learn': -0.01016398934551832, 'read': -0.10744111146199016, 'brand': -0.051502667214353204, 'require': -0.06326142169459346, 'firmware': -0.15243533886062688, 'upgrade': 0.11238791665909964, 'mention': 0.03549449773887165, 'suck': -0.15194289603057623, 'high': 0.12434455171873163, 'failure': -0.18166289926999885, 'rate': -0.10845242422707431, 'consensus': -0.023742865056461077, 'seems': -0.08184995549179107, 'tdk': -0.30874223317276245, 'sony': 0.04849071668763467, 'best': 0.7546840716364023, "'m": -0.5198009392522512, 'buying': 0.16017019255430076, 'frustration': -0.22711417818722965, 'discs': -0.10985830508321524, 'compusa': -0.024750455619160526, 'needed': -0.023230036264423007, 'ones': -0.002140516106318196, 'ordered': 0.17676911158642108, 'online': 0.021103741242080757, 'wated': -0.049151833566474595, 'good': 0.3990024117488568, 'bucks': -0.13988912295302716, 'burned': 0.03216275848072063, 'much': 0.027510538466407535, 'bang': -0.27403192176730956, 'buck': 0.02168657395560933, 'many': -0.0331825570614176, 'never': 0.22369582418920808, 'memorex': -0.29570081666123815, 'usually': 0.14230695896644083, 'verbatim': -0.13161261057585955, 'ridata': -0.2518607917702546, 'mam': -0.049151833566474595, 'disgruntled': -0.011748024519389444, 'making': -0.29346624374874863, 'coasters': -0.15127267035290012, 'maybe': -0.46366336899888777, 'burners': 0.02367487887902096, 'whatever': -0.1162893469603294, 'case': 0.19418768837773076, 'wo': -0.1541363179910779, 'buy': -0.39472948441131495, 'made': 0.2808998522289605, 'products': -0.43274554546307314, 'dvds': 0.14141597254383245, 'successfully': -0.040420250849153884, 'showed': -0.04900848509176513, 'movies': 0.43380780853700374, 'excellent': 0.8551909030256721, 'problem': -0.1620786675552094, 'every': -0.3721901069478039, '3': -0.1896458227147264, 'burns': -0.3138426949775593, 'using': 0.35957827164572825, 'plextor': -0.13129671330637172, 'love': 0.4646622148951031, 'going': -0.19256856733249839, 'try': -0.5312787147203607, 'luck': -0.1454829676093364, 'different': -0.2640275464197874, 'unacceptable': -0.4031554037339833, 'less': 0.08471554549584297, 'cost': -0.2964081419769598, 'bothers': -0.02478044846394095, 'time': 0.11780245600768421, 'wasted': -0.21019210860790077, 'burning': -0.11398425767556107, 'hope': -0.6133074074718539, 'live': -0.47179237556436765, 'crap': -0.2039672563824367, 'latest': -0.3319097708540439, 'opinion': 0.2489599433675864, 'product': 0.06772700732919654, 'liteon': -0.03782432210853847, 'sohw-802s': -0.03782432210853847, 'hates': -0.03782432210853847, 'rarely': -0.04254579305984101, 'decent': 0.2648720411430176, 'burn': 0.19748455135794535, 'often': -0.4068589972438982, "'ll": -0.00015474605702678682, 'discover': 0.0012259613025087308, 'watching': 0.07970471924017028, 'horrid': -0.08626986181481708, 'will': -0.24806175228164423, 'skip': 0.006732997722172158, 'stutter': -0.0409700295065204, 'stop': -0.22617415468270213, 'disappointing': -0.39157136681762883, 'unfortunately': -0.6121967533720276, 'found': 0.0771444116882826, 'late': -0.003751626861324886, 'uses': -0.13190581937014306, 'cmc': -0.07748604791669017, 'media': 0.0038924363370543215, '0': -0.2564117560742351, '50': -0.15248662440271885, '%': -0.12385857728729824, 'success': 0.027793246115083672, '[': 0.0342467636411372, 'reviews': 0.03027626578005327, 'machine': 0.08273188194530293, 'clear': 0.5140603651677723, 'lexar': -0.2932119367809486, 'serious': -0.21815024894513715, 'control': 0.01178072117022482, 'problems': 0.5248570868206615, 'worked': -0.3931370951394435, 'others': 0.08832679202422676, 'miserable': -0.033689210301176734, 'latter': -0.03866204501742575, 'group': -0.015653338890243194, 'sigh': -0.028798998320788475, 'mine': -0.022755717431117064, 'dead': -0.16608657371723357, 'arrival': -0.028798998320788475, 'tried': -0.5522479892724574, 'device': -0.18882079428978507, '*': 0.07469515396943484, 'windows': -0.203497811343152, 'xp': 0.058341374587834914, 'machines': 0.054708872778621395, 'unrecognized': -0.028798998320788475, 'tech': -0.162914324647974, 'support': -0.31871386258002066, 'subsequently': -0.028798998320788475, 'proved': -0.0019081068653591569, 'contradiction': -0.028798998320788475, 'terms': 0.05879625483071221, 'return': -1.0, 'email': 0.04062244869791436, 'requests': -0.12090317367269214, 'help': -0.5228316253863342, 'cash': -0.1264292465089037, 'back': -0.8824826317522915, 'offer': 0.058918945261645275, 'sounded': -0.13630895335756296, 'true': -0.40296813278585225, 'sure': 0.011469323892088268, 'enough': 0.13957125235013346, 'rejected': -0.08115896548903133, 'upcs': -0.07909482140320252, 'kept': -0.16497969372987567, 'copies': 0.04387561890781178, 'hounding': -0.07909482140320252, 'contacting': -0.11616071093124733, 'better': 0.16231146116866893, 'business': -0.0904644560075857, 'bureau': -0.07909482140320252, 'say': 0.5330371910057138, 'whoops': -0.07909482140320252, 'mistake': -0.25544153267230507, 'fleeting': -0.00567360032784379, 'suspicion': -0.07909482140320252, 'intentional': -0.07909482140320252, 'please': 0.09741925985901813, 'expect': -0.24184236287929695, 'purchase': 0.028953501186585358, 'promised': -0.3228317392119186, 'date': -0.05915030943396038, "'ve": 0.36525184486807455, 'denied': -0.0932811370531075, 'twice': 0.03132422925476226, 'second': 0.03514625218208476, 'said': -0.3786074499327778, 'u': -0.17194053792077746, 'p': -0.24690728856818, 'c': -0.13064305610523141, 'number': 0.08677912094228867, 'invalid': -0.10753954361155119, 'original': -0.2749419326212994, 'barcode': -0.15029654595802192, 'meticulous': -0.05178925845639292, 'filing': -0.13305191032601155, 'paperwork': -0.05178925845639292, 'yet': 0.14121162040749005, 'state': -0.0758627016123545, 'required': 0.16976732977841372, 'submitted': -0.08801036834756222, 'meanwhile': 0.002484670412638232, 'phoned': -0.05178925845639292, 'amaz0n': -0.05178925845639292, 'lodge': -0.04083597237215337, 'formal': -0.05178925845639292, 'complaint': 0.13789759671737037, 'average': -0.10812674607803593, 'worse': -0.28665560523782174, 'definitely': 0.07955391144786249, 'worth': 0.3486148969935322, 'full': 0.15711575112979623, 'asking': 0.015592957217789569, 'free': 0.056695774245340884, 'lunch': 0.04398061828032207, '&': 0.032149910197717055, 'pay': -0.2290702520287946, 'verdict': -0.015675156866168174, 'poor': -0.8818059506705672, 'rating': -0.04365469612705807, 'given': -0.2896230578352065, 'purchased': -0.3091851025922016, 'discouraged': -0.00396635285470508, 'binders': -0.015675156866168174, 'logic': 0.002033591340614938, 'pricey': -0.012931548728343543, 'low': -0.25747327836895856, 'alternatives': -0.017868719570488554, 'expense': -0.0372800210979558, 'tco': -0.015675156866168174, 'total': -0.2828777947821844, 'ownership': -0.19312635371692974, 'flap': 0.0022643091651078826, 'customer': -0.28913395752299936, 'service': -0.1425675560957401, 'rebates': -0.06507045936851803, 'zippers': -0.015675156866168174, 'sleeve': -0.11319222884685531, 'binding': -0.015675156866168174, 'give': 0.12584355150924068, 'pause': -0.07084053892392216, '.....': -0.25153366418097917, 'someone': 0.06881882675438886, 'xtreme': -0.015675156866168174, 'management': -0.06150962013943755, 'paying': 0.03995130328800724, 'attention': -0.17013656658155488, 'fix': -0.25532844089960244, 'content': 0.052713620454799284, 'lose': -0.07168085315396658, 'everything': 0.05345124523412091, 'everyone': 0.14081622866293933, 'markt': -0.015675156866168174, 'collection': -0.029447129346690807, '1500': -0.21194004414158354, 'disks': -0.21081502620273357, '/': 0.1575647943205798, 'years': 0.14793228950974457, 'worst': -0.593986562337492, 'avoid': -0.19409525487939283, 'month': 0.07986550067557756, 'ago': 0.23687313087985015, 'use': 0.36783955280836855, 'dx4330': -0.04958973423971321, 'kodak': 0.1778749815367213, '3mp': -0.04958973423971321, 'digital': 0.012542427780424898, 'camera': 0.03095898919747954, '2': -0.10065732330861857, 'days': -0.2373292620977166, 'everytime': -0.21115856141238912, 'wanted': 0.1448710135242069, 'reformat': -0.04958973423971321, 'card': -0.32202933501068237, 'wth': -0.04958973423971321, 'always': 0.06948695051341812, 'confidence': 0.004039309107871675, 'previous': 0.2034138895022561, 'purchases': 0.1810653334438151, 'amazon': 0.04626537853135644, 'threw': -0.0810455854945506, 'away': -0.3001509784028652, 'shipping': 0.13289163476971355, 'packages': -0.0006018364399903967, 'tested': -0.19401222579406727, 'ok.i': -0.04958973423971321, 'longer': -0.2466340640920501, 'needless': -0.029253616880168882, 'confident': 0.07081802322672509, 'buyers': 0.030383850360298132, 'beware': -0.35246163407957354, 'game': 0.1432904501559296, 'pad': -0.31360160412914556, 'due': -0.4160334206294897, '$': 0.012101968392210768, '15': -0.03306527957306884, 'built': 0.22657986081967205, 'pretty': 0.45636978846612647, 'comfortable': 0.5411290187826954, 'hand': 0.08421041312201816, 'programming': -0.18254438557832492, 'alright': -0.01565002677723701, 'nostromo': -0.060128384298983636, 'n50/52': -0.060128384298983636, 'example': -0.07703421181695239, 'relavant': -0.060128384298983636, 'firstly': -0.09716875163582907, 'toggle': -0.08956102473139455, 'lock': -0.20590334299217689, 'shift': 0.026400382435537332, 'button': -0.0453981873548305, 'press': 0.20472321194629495, 'accident': -0.12055469415573243, 'momentary': -0.06444586052028906, 'go': 0.3479375688114233, 'agian': -0.060128384298983636, 'interupting': -0.060128384298983636, 'play': -0.02301309650324902, 'buttons': 0.05273633117080411, '7': 0.11530939364888045, '8': -0.29116371855306694, 'paddles': -0.060128384298983636, 'rather': -0.2723673625820495, 'thumb': 0.008236685900622924, 'quite': 0.17531266001154297, 'far': 0.22110917026886395, 'normal': 0.08813746079942333, 'hard': -0.052094180213375925, 'quickly': 0.21472821428894853, 'mapped': -0.060128384298983636, 'limited': 0.05506005235551089, '10': -0.04244225044891451, 'reason': 0.05141275803178613, 'way': -0.3265926388732519, 'invoke': -0.060128384298983636, 'fight': -0.07426424597623699, 'nhl06': -0.060128384298983636, 'ship': -0.28749274380329054, 'ill': -0.055571839511608066, 'soon': 0.14976297063233387, 'logitech': -0.1196954255736639, 'thing': -0.4612917116355265, 'hours': -0.14450895858251753, 'row': -0.1352696629596622, 'spent': -0.13417458102286312, 'several': -0.2271196497610954, 'hardware': -0.16286037306714699, 'sucks': -0.4231780784511111, 'express': -0.06400455500118579, 'endless': 0.1020231628411136, 'old': -0.15213519350687904, 'story': -0.006506294020921458, 'must': -0.0025621791699542797, 'computer': -0.3005100432663905, 'fly': 0.04269134102418076, 'either': -0.10237778736634634, 'type': -0.1302607890465017, 'exceeds': -0.029125293895459297, 'requirements': 0.033800999338482206, 'advertised': 0.2040311121411542, 'ads': -0.010269329362319139, 'exchanged': -0.1042106918056203, 'item': -0.5329240511079817, 'supposedly': 0.0008618068824792376, 'checked': -0.05557379170699391, 'told': -0.2828908585166928, 'person': -0.10533029684733715, 'trouble': 0.012310336099524123, 'check': 0.11712095246986393, 'websites': -0.09248028465289725, 'review': 0.16723228193967063, 'hundreds': 0.010351838983955107, 'reading': -0.02029161297922825, 'ulead': -0.019432589298661748, 'movie': 0.15471599837130398, 'factory': -0.16687953934084998, 'came': 0.12471007464361823, 'bundled': 0.004362099040192421, 'uleads': -0.009716294649330874, 'cap': 0.18173579706895288, 'wiz': -0.019432589298661748, 'program': 0.06008023916813352, 'duh': 0.0812515710662517, 'complaints': 0.13113630085611827, 'final': -0.09792234522140518, 'solution': -0.11162065094259978, 'version': -0.005791229077966883, 'might': -0.0992875612092181, 'aggravation': -0.027525484209614235, 'p.s.': 0.00468166284158967, 'consider': 0.07071468824375536, 'refund': -0.500290330741043, 'allow': 0.183298758580754, 'trade': 0.12761120637001025, 'think': -0.08216128092176374, 'star': -0.019440498698415836, 'packed': -0.09510622467227957, 'ju': -0.009716294649330874, 'sd': -0.16686631199990473, 'nikon': -0.20241622912510218, 'coolpix': -0.25452093700281714, 's6': -0.09636819389243606, 'fuji': -0.13759818135539023, 'sandisk': 0.014084937777535958, 'novi': -0.05301047724385051, 'replacing': -0.11907641969436894, 'absolutely': -0.07185007487632936, 'range': 0.0752260306058863, 'channel': 0.0660102031871456, 'distance': -0.17567392502787868, 'approx': -0.06286900643635991, '110': 0.10942686987622921, 'ft': -0.06174865371638328, 'house': 0.1573365579205647, 'barn': 0.1819225589454276, 'room': 0.11691543583403442, 'attempting': -0.03654448781429396, 'currently': 0.02343845537840366, 'four': -0.12520855111288087, 'immediately': 0.0012952602638284937, 'third': 0.014130782794410995, 'horrible': -0.2768704248518343, 'searching': -0.023756910535672256, 'internet': -0.03477795081949193, 'variety': 0.034890864232902545, 'similar': -0.04074046757355086, 'settled': 0.04059899996563604, '900': -0.02326044958148933, 'megahertz': -0.032402024452991486, 'wireless': 0.0947894980244588, 'intercom': 0.04339854977008802, 'radio': -0.27704190494742126, 'shack': -0.048588156554684944, '43': -0.032402024452991486, '3102': -0.032402024452991486, 'beautiful': -0.046594159287219813, 'half': -0.24660043127795264, 'reporter': -0.06480404890598297, 'featues': -0.032402024452991486, 'claims': -0.20769893595105018, '300': 0.09445081764858473, 'feet': -0.12398971272256709, 'opposed': 0.0319846885669988, '1000': -0.18174715893453675, 'warranty': -0.38896873361571155, 'extend': 0.08491791329395328, 'warrarnty': -0.032402024452991486, 'year': -0.5000848112462006, 'anyway': -0.05402435060295455, 'happier': 0.16043037275388525, 'rs': -0.024021251949247455, 'recommend': 0.17216655609245116, 'reporters': -0.032402024452991486, '4': 0.01623525227080335, 'arrived': -0.06136903407461698, 'faulty': -0.25274527155084325, 'batteries': 0.08389664079843423, 'pleased': 0.4118863097099461, 'wore': -0.09723591495652312, 'couple': 0.11291938533969469, 'months': -0.2888894524424289, 'ther': -0.05259409953018849, 'charge': -0.6063622050976372, 'recharge': -0.0031471804435297805, 'per': 0.10283629289961503, 'instructions': 0.009908504361755254, 'know': -0.0911722022246664, 'monster': -0.05492957940195267, 'makes': 0.15603204452490557, 'little': 0.4080139166807749, 'disappointed': -0.7542766753983504, 'jnr': -0.05657277379064692, 'unit': -0.15425504939723936, 'powers': 0.05545319520791322, 'fails': -0.22028590181476235, 'detect': -0.1102733426091528, 'multiple': 0.03708149994133849, 'computers': 0.0324231956910446, 'may': -0.33166644858995403, 'lemon': 0.0031333651377388, 'exchange': -0.18140980622147476, 'bookstand': -0.1422324532288637, 'despite': -0.0031706377408485084, 'description': -0.4061745115908858, 'suitable': -0.1492590705149639, 'heavy': 0.1768585382104042, 'books': -0.04403788678531428, 'put': -0.24943909421702534, 'stand': 0.040562630870504254, 'props': -0.1422324532288637, 'likely': 0.1445169824788449, 'snap': -0.08495166406778504, 'flimsy': -0.2585214069567502, 'plastic': -0.2233565004780954, 'parts': -0.09916781273612715, 'afraid': -0.11726141961665959, 'book': 0.0754952278737801, 'ten': -0.19068084276068306, 'minutes': -0.1800550893531582, 'fallen': -0.0025346596395373006, 'importantly': -0.21425636000143986, 'handle': -0.2179114360032047, 'large': -0.11714364371218583, 'manuals': -0.02261846030814538, 'particular': -0.220874363076376, 'holder': 0.14264161126526184, 'page': 0.06773207703598595, 'manual': -0.06785804212520731, 'fits': 0.2324786903640654, 'happen': -0.004229967390322427, 'middle': 0.18970681628895955, 'chapter': -0.08271914060424507, 'based': -0.1716674804998142, 'estimate': -0.02872614533051353, 'totally': -0.20114459375111043, 'worthless': -0.3910783846284716, 'anyone': 0.09973163096516288, 'needing': -0.04311476663216159, 'training': -0.06028588382870002, 'five': 0.12434538913879795, 'six': -0.08506746813784359, 'hundred': -0.11489672766994326, 'pages': -0.03804463530956124, 'anticipate': -0.02538090047781744, 'big': 0.253141484077942, 'glue': -0.013713806251221225, 'rubber': -0.08374524367690245, 'keep': 0.06864343828061528, 'eye': 0.12256979874287825, 'retainers': -0.02538090047781744, 'fell': -0.1603805701642463, 'ok': -0.3217961477989036, 'policy': -0.14560994046563075, 'see': 0.029623577098080923, 'rid': 0.0668725944175717, 'hunk': -0.05280875520859187, 'send': -0.3715351600553914, 'stopped': -0.27268554985825416, 'playing': -0.18042619692369027, 'dependability': -0.10641983856500721, 'questionable': -0.0627110844050589, 'memory': 0.5706747064857949, 'purchasing': -0.12740951879688422, 'listed': 0.06714772875987973, 'accessory': -0.04092788193050698, 'received': -0.2759771393529847, 'wrong': 0.1410286460021365, 'shape': 0.07521286776367936, 'size': 0.32662896936392644, 'opened': -0.03827502901875967, 'unable': -0.3827931203103288, 'fact': 0.03423278399200804, 'emailed': 0.021391885004324124, 'company': -0.29278490961365866, 'sent': -0.06628000949414739, 'response': -0.48030863381741334, 'buys': 0.039246119691016455, 'extra': 0.43908630966060025, 'started': -0.5416528660969706, 'reported': -0.14889226836528519, 'weeks': -0.3748937814469899, 'counting': 0.0567133460610788, 'still': -0.04845750928235532, 'astonished': -0.010777164757030366, 'contacted': -0.2544115788864269, 'n.e.w.': 0.17847343093127976, 'asked': -0.169450256161188, 'shame': -0.09907629474851241, 'embarrassment': -0.010777164757030366, 'part': -0.040306868081165244, 'reps': -0.010777164757030366, 'informed': -0.040990487917660606, 'take': -0.1955555645762976, 'least': -0.19252124585975286, 'receive': 0.1254846671312997, 'warrantied': -0.010777164757030366, 'pre': 0.002259126363742007, 'paid': 0.10842961696001606, 'label': -0.12247303257617542, 'instead': -0.039847731218199484, 'printer': -0.18919848520894303, 'week': 0.09807935572825825, 'covered': 0.10518719205275251, 'words': 0.05900152204797899, 'replacement': -0.3058849166235608, 'possibly': 0.013848508364929502, 'eight': -0.1446150892011424, 'cancelled': -0.05940295813261845, 'contract': 0.3159705665351176, 'really': 0.07311015480853146, 'math': 0.03223378595303185, 'grado': -0.010777164757030366, 'sennheiser': -0.10524934780950654, 'koss': -0.1411842396010467, 'stay': -0.13646539605888294, 'feeling': -0.1523255929229296, 'simple': 0.4560634697077544, 'wish': 0.2447512662786865, 'battery': 0.1888540909397756, 'died': -0.5051241217520162, '13': -0.11632312783449177, '30': -0.27573202508358696, 'outside': 0.11059339543864455, 'warrantly': -0.009208493776121393, 'apple': -0.24596145832909655, 'sorry': -0.26585385588943233, 'tough': -0.1537527253911074, 'figuring': -0.03744253560027429, 'ipod': -0.04031167146084576, 'within': -0.3303607519524193, 'period': -0.01442025882611124, 'becuase': -0.1788808547784397, 'took': -0.052733417128591864, 'store': 0.006412220052111907, 'course': -0.07508283621080977, 'past': 0.22857610060281855, '12': 0.07581338063062465, 'keeps': -0.0479593804541118, 'track': -0.19494879447505783, 'substnatial': -0.009208493776121393, 'investment': 0.3706221940969896, 'fantastic': 0.42888679406408475, 'cause': 0.16015394895969817, "'d": -0.31668847491160856, 'fan': 0.015811625093340775, 'cfii': -0.02992204025833219, 'cards': -0.024816878100388875, 'lost': -0.1795529319622326, 'data': 0.18402421649278963, 'wrote': 0.03395402856052337, 'girlfriend': -0.01425516499530084, 'pix': -0.02992204025833219, 'care': 0.19207330561557595, 'losing': -0.002560490557014507, 'ziplock': -0.02992204025833219, 'none': -0.1926250429846311, 'file': -0.2691607893735308, 'removal': -0.05984408051666438, 'programs': 0.077723006682682, 'images': 0.17207608969295268, 'day': -0.1424635397109605, 'age': -0.09577456698184758, 'make': 0.050357160137123116, 'upset': -0.11789077812072031, 'chances': -0.0723243950757236, 'great': 1.0, 'grand': -0.02992204025833219, 'mother': 0.003643229916506355, 'actual': -0.3054643198065668, 'right': 0.14134700357870056, 'written': -0.06277211757233947, 'tells': -0.07427136309413342, 'important': 0.09329849906688738, 'pictures': 0.019953425869375093, 'frederic': -0.02992204025833219, 'ups': -0.24019535668931477, 'plug': 0.16767567901871455, 'test': -0.21963380348999303, 'works': 0.7050574254958587, 'times': -0.44608347435504564, 'shutdown': -0.1258420114898295, 'outage': 0.05360204475431748, 'set': 0.038862987543209625, '1': -0.05521336722236129, 'minute': 0.12207432888339344, 'small': 0.22626158127991533, 'phone': -0.057167998954897985, 'accessories': -0.1943756899803183, 'attached': 0.0563716110573397, 'power': 0.32782750976283964, 'cut': -0.15269862868419498, 'held': 0.0005232166590396201, 'allowed': 0.21862073369624724, 'shut': -0.3034755105981736, 'restored': -0.15430160444506485, 'seconds': -0.25314636214793396, 'beeped': -0.07940489919365305, 'clicked': -0.06292100574491474, 'temporarily': -0.06292100574491474, 'dropped': 0.12241814197376955, 'rebooting': -0.09884545911461545, 'switches': -0.06093020471821255, 'causes': -0.16375177349559397, 'interrupted': -0.06292100574491474, 'drop': 0.06785336198633164, 'devices': -0.008002990342545214, 'cable': 0.10518898222111002, 'modem': -0.03089526446367168, 'broadband': -0.0027994220083304056, 'connection': -0.22946276105985025, 'aps': -0.0386936143732733, 'lightning': 0.013177666610798847, 'hit': -0.030047569863215166, 'near': 0.2083290140213919, 'motherboard': -0.1066557840848025, 'plus': 0.26574629790307147, 'router': -0.32295059069769316, 'fried': -0.049432862304793636, 'stayed': -0.20996819293892477, 'intact': -0.04168032684912152, 'filed': -0.12966140876508214, 'claim': -0.10633335007138892, 'saying': -0.22098504910894423, 'backend': -0.049432862304793636, 'surges': 0.03989076989950013, 'caused': -0.011441606433461326, 'damage': -0.07260539750507558, 'though': 0.10622762456177619, 'hurt': -0.2709409779654731, 'awaiting': -0.0967793499759372, 'resolution': 0.1486674562582799, 'drives': -0.3540848254204495, 'writing': -0.09084777008714236, 'verification': -0.06857375257288988, 'proboem': -0.0967793499759372, 'arises': -0.0582857332096383, 'external': -0.060651045945894544, 'firewire': -0.1654455408248618, 'enclosure': -0.0967793499759372, 'drive': 0.17336884356531976, 'fine': 0.19126245861108693, 'internal': -0.21838420206598236, 'ide': -0.0967793499759372, 'bus': -0.13988235090369938, 'issue': -0.1022988610468742, 'import': -0.14786256976305567, 'drai': -0.1524308957229412, 'end': -0.25080682245451696, 'december': 0.0065958008942609385, 'quick': 0.20231804794764885, 'running': -0.08863993776257638, 'yesterday': -0.2381810027756286, 'equivalent': -0.07479051741859909, 'lockjaw': -0.04749476578169804, 'tray': 0.043601379321774686, 'release': 0.020339854199017793, 'operates': 0.005422245485086683, 'probably': 0.08989998377439906, 'next': -0.12532429952985724, 'recommendation': 0.20070343624922987, 'goes': -0.16993921441365775, 'depends': -0.08239505888298171, 'inconvenient': -0.06295879961428558, 'went': -0.38578799283420395, 'backup': 0.08761638357522614, 'working': -0.3665429482936456, 'job': 0.2508043715237418, 'done': -0.2508256444878634, 'previously': 0.07352600681260259, 'developed': -0.10566013213403634, 'strategy': -0.05570746188762252, 'keeping': 0.19299732479795428, 'handy': 0.22527813288470164, 'seething': -0.04749476578169804, 'hair': -0.19230002401613175, 'pulling': -0.09192806843890587, 'rage': -0.04749476578169804, '100': 0.2048325113953877, 'reliable': 0.10812983150589058, 'risk': -0.023274035950619422, 'known': -0.25986570709526663, 'fail': -0.13115057583778417, 'traveled': -0.04950334989758178, 'completely': -0.13227951128505488, 'anything': -0.345722221027785, 'rubbish': -0.044512582980601526, 'walmart': 0.11278434054314106, 'remove': -0.013711840077593558, 'scuff': -0.0649060866433974, '-100': -0.0649060866433974, 'stars': 0.18131344482529654, 'seem': 0.11146256429467032, 'skipping': -0.23571067986961178, 'line': -0.22075604717431394, 'noticeably': -0.07520538075641076, 'although': -0.08364463561699771, '6': -0.18201276328306126, 'disk': -0.004576831208717887, 'changer': -0.004226295856371476, 'perhaps': -0.22778438720772062, 'lease': -0.006731738762026122, 'durable': 0.08981073306737258, '40': -0.45162047678312717, 'lights': -0.2982322300225543, 'reassuring': -0.006731738762026122, 'led': -0.011672298205609765, 'gold': -0.24439784005704832, 'refuses': -0.055493505238223516, 'xd': -0.009578854741484042, 'erased': 0.036318735069426684, 'photos': 0.18141178970308108, 'irreplaceable': -0.006731738762026122, 'cheap': -0.5028052563799278, 'yes': -0.1193416887214886, 'junk': -0.48138349496826655, 'looking': 0.08676271449342629, 'keyboard': -0.17111046935421845, 'takes': 0.08067508733027579, 'minor': 0.40396383591334867, 'spill': -0.0023068282765965147, 'destroyed': 0.027616694506342077, 'includes': 0.09579214427130077, 'cleaning': -0.0519144767302469, 'apart': -0.3581091251776881, 'dry': 0.10788572043284213, 'self': 0.02022262027853444, 'destructs': -0.0345755460797704, 'count': -0.17433890744806252, '10s': -0.0691510921595408, 'screws': -0.02303055761972607, 'called': -0.43538888660215574, 'dell': -0.03310635365959429, 'nobody': 0.038908269961663376, 'retail': -0.09611904951247026, 'street': -0.03537153382261534, 'prices': -0.0029309451219714238, 'competition': -0.029338769349805033, 'retirement': -0.0345755460797704, 'keyboards': -0.1297458976454676, 'anylonger': -0.0345755460797704, 'positive': 0.017219781891715028, 'upon': 0.019821073430132126, 'setting': 0.1510493004334648, 'dreaded': -0.060680112465119916, 'unplug': -0.041557588125953004, 'protect': 0.102096119287919, 'screen': 0.27480327426569934, 'turn': -0.19718892363701435, 'moments': -0.023541322046501806, 'mode': -0.055316847539472795, 'short': -0.0835266289054502, 'wires': 0.035012267358612355, 'overheating': -0.03005233911974606, 'protects': 0.1764869099731852, 'stone': -0.06481835206079495, 'cold': 0.017373322659932893, 'speakers': 0.09664075820493558, 'plugged': 0.11999999324040057, 'options': 0.10058281306421356, 'unhook': -0.043142358915671974, 'repack': -0.043142358915671974, 'exactly': 0.1637452150797023, 'reship': -0.043142358915671974, 'enormous': 0.03613457969266116, 'hastle': -0.043142358915671974, 'receiver': 0.12554033837998352, 'authorized': -0.008987267466589774, 'center': 0.21321014820029688, 'happens': 0.29565596221920293, 'across': 0.3253157647436013, 'town': 0.06159257984419792, 'monday': -0.09667140854994655, 'friday': -0.035512589383028294, '9': -0.07650286635270821, '5pm': -0.043142358915671974, 'convenient': -0.0177740014307996, 'already': -0.3227786365288305, 'needs': 0.23023087971943404, 'repairs': 0.05477599390454712, 'video': 0.13174232599885763, 'inputs': -0.07469153419566693, 'audio': 0.1382430910859155, 'doornail': -0.043142358915671974, 'start': -0.1407797195636692, 'broken': -0.3435805795522977, 'forever': -0.13034569126147325, 'load': 0.11500380627351622, 'comes': 0.13514760535829187, 'hdmi': -0.1665772943105993, "'re": 0.018906371166708565, 'user': -0.22263413481692768, 'television': 0.11267895210019997, 'crappy': -0.2725068849157864, 'god': -0.14699500908714017, 'waste': -0.797590720981618, 'charging': -0.03823701931783432, '2nd': -0.16278529160444236, 'generation': -0.035860949508452825, 'shuffle': -0.07354071653004071, 'according': 0.10660222397546877, 'derable': -0.05454163553949817, 'orange': -0.022479309064326755, 'green': -0.28931566318229024, 'flashing': -0.10822151472371352, 'death': -0.2672389939952763, 'contents': -0.043490768547851576, 'space': 0.35148042998817053, 'un': 0.033130224288049084, 'recoverable': -0.020863703946473813, 'ended': -0.04379455788768935, 'pitching': -0.020863703946473813, 'extensive': -0.05023475606588962, 'attempts': -0.21592593565818244, 'revive': -0.020863703946473813, 'apparently': -0.13209306309619862, 'likes': 0.07567013231532149, 'hush': -0.04172740789294763, 'suffered': -0.015538948984229578, 'blinking': -0.06419984492904503, 'salesman': -0.0027965878540459886, 'figure': -0.24788879610196266, 'sign': -0.08381059185834813, 'appointment': -0.005593175708091977, 'genius': -0.011186351416183954, 'bar': -0.002340547566895294, 'engineering': -0.10329017566863889, 'whether': 0.08267524490936252, 'involve': -0.0027965878540459886, 'understanding': -0.010439227744457942, 'things': -0.309670919633604, 'appear': 0.02801007674367982, 'trendy': -0.0027965878540459886, 'haircut': -0.0027965878540459886, 'offered': -0.06782478068745403, 'discount': 0.10684482456452134, 'answer': 0.012095848103988248, 'question': 0.07273659320531398, 'retitled': -0.0027965878540459886, 'idiot': -0.07341398983416343, 'extendable': -0.001985283874340643, 'arm': -0.18091274416473335, 'breaks': -0.17250252095690427, 'broke': -0.20059278937671243, 'waiting': -0.10042897931638185, 'consumer': -0.04362433186007179, 'usb': 0.15994312596684493, 'flash': -0.051335075444335, 'i.e.': 0.05273241920146267, '512': 0.15792568915859417, 'mb': 0.03352809842529368, 'mini': -0.1505852491255949, '256': 0.11546937808030151, 'performance': -0.09183405126858944, 'wise': 0.04090081686270335, 'taking': -0.03703105027471666, 'long': 0.24523105626313943, 'copy': -0.1948336479410054, 'files': -0.3502053802319219, 'delete': -0.0876119643422143, 'doubt': -0.08531133767589333, 'micro': -0.19701190999627322, 'capacity': 0.12104463605976075, 'planning': 0.02692739848007686, 'gb': 0.33240977013847206, 'wasting': -0.09411450567987177, 'writer': -0.2842612372999486, 'brands': 0.07473487111875467, 'personal': -0.07019960943481575, '200': 0.1209693184410708, 'dvd+r': -0.10037434653504823, 'philips': -0.48085861924163625, 'flaws': -0.04178972312678711, 'playback': -0.13530229430527094, 'flawless': 0.15130697603685977, 'overall': 0.3029258761110478, 'recorder': -0.4478180697280236, 'moderate': 0.00024180792549803996, 'inconvenience': -0.07910965044645306, 'recorded': 0.1534573656147199, 'finalized': -0.05506539446997318, 'unexplained': -0.05506539446997318, 'reasons': 0.030908954801538668, 'irrelevant': -0.05506539446997318, 'waist': 0.028816049364328664, 'june': -0.1023378201821204, '17': -0.07814321068122612, '2006': -0.13184340396699748, 'specific': 0.21911070822801346, 'panasonic': -0.027335349260882262, 'dmr': -0.01573404820151262, 'e55': -0.03260014363541787, 'able': 0.09274595956084801, 'record': 0.11382426956318589, 'watch': 0.2193547985097764, 'rams': -0.035581093070716385, 'es10s': -0.035581093070716385, 'recently': 0.04727801901917454, 'begun': 0.002672973410847117, 'noises': -0.031788721406107424, 'starting': -0.22818514091373898, 'shutting': -0.017790546535358193, 'occasionally': 0.08567382759539774, 'ejecting': -0.017790546535358193, 'today': -0.22038371868548598, 'happy': 0.508895052842088, 'dying': -0.06670302351489281, 'especially': 0.24231241398406753, 'follow': -0.08670467125968334, 'strange': -0.17024445391434287, 'hear': -0.21934997261036063, 'actually': 0.09634526399840276, 'write': -0.20734248749974943, '--': -0.04666315178239577, 'post': -0.21777810427511748, 'results': -0.1418125239126094, 'update': 0.16909753589127935, 'november': -0.14882328850933094, 'letter': -0.12126617491333146, 'authorizing': -0.017790546535358193, 'repair': 0.11665147734268834, 'including': 0.1262859070963629, 'labor': -0.059666839540861924, 'places': 0.10154067488261033, 'hour': -0.2046880832757298, 'home': 0.2672714999742369, 'research': 0.09998749906330893, 'chose': 0.01321467325763601, 'brought': 0.1272928529438867, 'fixed': -0.09726997051633014, 'entire': 0.03063910831213903, 'mechanism': -0.08414674896036785, 'means': -0.21056462937249953, 'shop': -0.16409354051645403, 'july': -0.018124554041617388, 'beginning': -0.19467317202998763, 'hearing': 0.13522652657714498, 'fundamentally': -0.017790546535358193, 'efforts': -0.02359478448272919, 'model': -0.016209349913723206, 'difficulties': -0.0001960908919974775, 'continues': 0.05901239153765816, 'fans': 0.1570886235976932, 'lasts': 0.1602263245446035, '90': 0.008074177014566924, 'steadily': -0.10218957550801101, 'declines': -0.10218957550801101, 'ihome': -0.12831813574552833, 'songs': -0.06721456383874612, 'anymore': -0.251795869401429, 'static': -0.16202212000348917, 'christmas': -0.07554123732206766, 'loved': -0.24843895095207452, 'spite': -0.043941834423524374, 'glaring': -0.027430094463788312, 'bright': 0.27860338071401664, 'light': 0.04953670915843999, 'lowest': -0.03957469656068561, 'blocked': -0.005716916207460334, 'sleep': -0.04062733174470541, 'awhile': -0.003918228136439047, 'register': -0.00793642703488676, 'ipods': -0.04143492906359634, 'existence': -0.10561586411690896, 'enjoy': 0.12241660717216415, 'thirty': -0.06367032557470358, 'song': -0.29194130364281745, 'disgrace': -0.016580916271779992, 'become': 0.25494815714924934, 'nothing': -0.4046718103241428, 'nuisance': 0.020704037800214594, 'pick': 0.04139380897500868, 'stations': -0.002080937982296849, 'alarm': -0.4950442699644315, 'vaguely': 0.02398645101186333, 'annoying': -0.3627144843705243, 'beep': 0.060926957231891184, 'functions': -0.07453494621375098, 'disabled': -0.087109528821385, 'almost': -0.3135898288199759, 'display': -0.4461723913637673, 'white': -0.0324400129007504, 'violet': -0.08252814045914666, 'visibility': -0.08252814045914666, 'clock': -0.08758505244538908, 'husband': -0.03445775311719603, 'sleeps': -0.08252814045914666, 'dark': 0.0777683617976482, 'fall': -0.22145341675124, 'asleep': -0.032341640572882684, 'throw': -0.08361318305049187, 'sweater': -0.01502913416439956, 'towel': -0.08252814045914666, 'switched': -0.04452110895786714, 'features': 0.1536250117009895, 'satisfied': 0.26697220445815245, 'interface': -0.06455172054796147, 'intuitive': -0.017356626529154286, 'overriding': -0.13676958343330578, 'docking': 0.043170697134953334, 'port': 0.10834926608680136, 'reviewers': -0.1573415942987977, 'mentioned': -0.06461548619360025, 'constructed': -0.07453196486266452, 'walking': -0.042199286232537325, 'table': 0.08178252472458565, 'sits': -0.11598166680353396, 'recognize': -0.16780403736542038, 'reliably': -0.15520286334565547, 'justify': -0.1500136914220836, 'mistakenly': -0.1525694343085333, 'believed': -0.046879178197555056, 'hype': -0.2244766699654985, 'killed': -0.061090933068296834, 'emitting': -0.027334463987925346, 'stoppable(i.e': -0.030545466534148417, 'feature': 0.1926401516260915, 'shriek': -0.09163639960244532, 'smart': -0.13424713390114948, 'talented': -0.030545466534148417, 'idiotically': -0.030545466534148417, 'convince': -0.03534492669528897, 'ear': 0.026925023484312305, 'piercing': -0.061090933068296834, 'defeated': -0.030545466534148417, 'silenced': -0.030545466534148417, 'addition': 0.14804766614795256, 'prevent': 0.10461415490388014, 'ask': -0.1619357785851934, 'stoppable': -0.030545466534148417, 'a.m.': -0.030545466534148417, 'apc': -0.016055021947807446, 'deliterious': -0.061090933068296834, 'matter': -0.2272577741321278, 'let': 0.09787623964384863, 'honest': -0.04271723240742249, 'ai': 0.19078459075720716, 'decides': -0.017022018046245414, 'cpenusa.com': -0.017022018046245414, 'delivery': 0.3095323827856096, 'pen': 0.026881261956739025, 'damaged': -0.014555485794446271, 'connector': 0.1092867533598985, 'connect': 0.03241612610880357, 'pc': 0.1242322194915983, 'main': 0.013631108058397725, 'office': -0.12750315255459582, 'sweden': -0.017022018046245414, 'e': -0.0853225851354252, 'mails': -0.07007987568831134, 'cpenusa': -0.017022018046245414, "great(i'll": -0.017022018046245414, "'em": 0.0715283877623625, 'screwed': -0.10188203253581292, 'interested': 0.006849379178088415, 'electronic': 0.0676669766496074, 'equipments': -0.10242345613252017, 'ahead': -0.1618609468037545, 'trust': -0.2926308158482428, 'respect': -0.014521545183368467, 'sales': -0.08082231327115139, 'charged': -0.11247030715441664, 'sooo': 0.025710746500887394, 'frustrated': -0.11026399851661282, 'mouse': 0.0597780451882621, 'owned': 0.04389066727480401, 'loses': -0.05400193298920184, 'sproadically': -0.04018375606130441, 'sometimes': -0.05248940998258471, 'changed': -0.43961552305925605, 'tempremental': -0.04018375606130441, 'shopping': -0.07380829629917651, 'word': -0.010952441768216744, 'experience': -0.24264161652388586, 'prepared': 0.026929942846518232, 'replace': -0.15198074293201716, 'sounds': -0.011672530302622199, 'gets': -0.031780078936587026, 'life': 0.011703873584668427, 'dock': 0.06798089357816121, 'major': -0.32852689854725836, 'flaw': -0.41028537080771127, 'structural': -0.14879373044473476, 'aside': -0.07041275479240837, 'electronics': -0.15864640436734767, 'bit': 0.48526652925782554, 'deteriorated': -0.14879373044473476, 'volume': 0.2264373129694298, 'fluctuated': -0.10621222429110451, 'cuts': -0.22955508982884956, 'added': 0.08851737297195064, 'kind': -0.19314741261578464, 'bumping': -0.012322894832452745, 'stress': -0.16452628507508774, 'simply': -0.10898250240337373, 'performs': 0.06654860077892157, 'remote': -0.11039215298909072, 'connected': 0.00805232007799718, 'hd': 0.28326446835096025, 'assigning': -0.10443251688526983, 'positions': 0.008855907832562031, 'various': -0.032696896413334384, 'tv': -0.007075530048304399, 'routinely': -0.09173689302435879, 'activated': -0.05198286226159052, 'logistics': -0.10443251688526983, 'harmony': -0.018898948610350717, 'perfectly': 0.41230950414882794, 'remotely': -0.2162005933132223, 'satellite': -0.039206521842631556, 'certain': -0.05500086577092463, 'replay': -0.10443251688526983, '10min': -0.08097537383009702, 'pics': -0.07954625426475466, 'canon': 0.08539949839708573, 'pro1': -0.048085134030901956, '250': 0.09201813965258364, 'initially': 0.03624841676288472, 'cycles': -0.048085134030901956, 'suppose': -0.16051348410184277, 'weekend': 0.11570182905864529, 'rear': 0.0917187640038679, 'pleasy': -0.04483282498890625, 'thank': 0.265284373128953, 'epiphane': -0.04483282498890625, 'flaviu': -0.04483282498890625, '4x': -0.06827037728152421, 'slowing': -0.060158544932738124, '2x': -0.07865262446876595, 'dru500a': -0.060158544932738124, 'compatibility': -0.07642873505294934, 'list': -0.2637201581973204, 'lesson': 0.11230697562831109, 'learned': 0.1886227974530555, 'lite': -0.043908829865195564, 'dvdrw': -0.043908829865195564, 'sohw-1673s': -0.043908829865195564, 'revision': -0.05215808463754645, 'js02': -0.043908829865195564, 'fast': 0.5934553952954018, 'g4': 0.06302573365232855, 'mac': 0.07967511742777346, 'os': 0.10193827008683314, 'x': 0.058490736086882135, 'tiger': -0.09894891460113944, 'toast': -0.18047577783523028, 'titanium': 0.03617686031700699, 'nominally': -0.08021920831530183, '16x': 0.15018913903291606, 'capable': 0.045255597723850634, '6x': -0.043908829865195564, 'setup': -0.08804849174166708, 'slow': -0.13427469627367086, 'ata': -0.043908829865195564, '33': -0.043908829865195564, '8x': -0.024559815528677267, '+': 0.3473552476620695, '-r': 0.006312063000672711, 'bother': -0.2207430230731821, 'verifying': -0.043908829865195564, 'maxell': -0.2434949858278283, 'verify': -0.10709732386731856, 'ignorable': -0.043908829865195564, 'gotten': 0.17909189111734866, '20': -0.008101011458358192, 'failures': -0.05923916401406459, 'aborted': -0.043908829865195564, 'blank': -0.08200639312103088, 'band': -0.2861352622828299, 'referring': -0.043908829865195564, 'manufacturer': 0.0003361527995274869, 'id': 0.01235893894135093, 'mag': -0.004371364026173124, 'am3': -0.043908829865195564, 'videohelp.com': -0.043908829865195564, 'sold': -0.040668549403376886, 'names': 0.0037135220161323475, 'mixed': 0.02131798468734293, 'imho': -0.02162147479549161, 'btw': 0.026426440957244654, 'players': 0.09031801208325363, 'format': 0.08224124256309373, 'demo': -0.0014009388789859771, 'outdated': -0.08935150379086595, 'opperate': -0.01296912944587143, 'stated': -0.10278714996321976, 'included': 0.09522672133260582, 'mailed': -0.11176351760365914, 'tiger.com': -0.01296912944587143, 'reply': -0.06538656543755147, 'sell': -0.30177550610163323, 'false': -0.01296912944587143, 'advertisement': -0.01296912944587143, 'intended': 0.045918418346905014, 'functional': -0.05908797137191534, 'pm': -0.043351233177910425, 'series': 0.269630719773716, 'stereo': 0.12821679190165503, 'browse': -0.016028980256924865, 'drunk': -0.043351233177910425, 'night': 0.07877213410816113, 'exception': -0.0033104238358382192, 'slight': -0.0032999935903575035, 'advantage': 0.04016149947769866, 'respects': -0.043351233177910425, 'inferior': -0.01396299732447311, 'ergonomics': -0.07906490576445646, 'appearance': -0.012675893285007301, 'fm': -0.16972647143193775, 'reception': 0.2718733738429763, 'laughably': -0.043351233177910425, 'hiss': -0.28427314976030715, 'abounds': -0.043351233177910425, 'local': 0.1037115183129175, 'heard': -0.036638210086752866, 'unreachable': -0.043351233177910425, 'stuck': -0.25111704803058127, 'honored': -0.06989744491051761, 'habit': -0.07840595437778998, 'proprietary': 0.09274955273432954, 'connectors': -0.11637134344024394, 'market': -0.11802449823218798, 'antenna': -0.1479603115833767, 'weird': 0.018742501214397068, 'noticed': 0.09772265129832225, 'damned': -0.007276258960535844, 'grrr': -0.043351233177910425, 'proceeds': -0.043351233177910425, 'replacements': -0.03095372610807973, 'quit': -0.17131284910377292, 'infrequent': -0.0838244998417788, 'outages': 0.03293522797598083, 'g5': -0.045020498664470526, 'hungry': -0.024734347367872958, '23': -0.11764811278653925, 'inch': -0.10880350861968081, 'lcd': 0.03846803949472838, 'comment': 0.10224140081053312, 'belkin': 0.1347195570691047, 'seen': 0.01830198675234385, 'competing': -0.02083617206639499, 'web': 0.04048218959503186, 'stores': 0.16844484518037778, 'dealers': -0.009645696991456678, 'selling': -0.2981626272993652, 'refurbished': 0.05904142009397751, 'reflection': -0.03775631490483479, 'popularity': -0.02083617206639499, 'reliability': -0.19574308755560207, 'decide': 0.00980914360417122, 'precious': 0.0946639458381682, 'becomes': -0.23125229430342553, 'fear': 0.05357564262043722, 'loss': -0.13940048635143318, 'blackout': 0.02186108310989492, 'switch': -0.10101769717344074, 'surge': 0.05492170270561724, 'suppressors': -0.02083617206639499, 'potential': -0.14236160187927133, 'storms': -0.02083617206639499, 'users': 0.11631731022472444, 'flexibility': -0.02083617206639499, 'essential': -0.18221635995701066, 'insurance': -0.02083617206639499, 'puchased': -0.02083617206639499, 'identical': 0.021432627109680188, 'operational': 0.016379086895455128, 'accept': -0.057081750422743736, 'alarms': -0.02083617206639499, 'vary': 0.0698641279897068, 'depending': 0.26968381576700606, 'vendor': -0.0591044815713643, 'factors': 0.07568604090896465, 'begrudge': -0.02083617206639499, 'wear': 0.20906864819704635, 'tear': 0.09766193870006447, 'branded': -0.0545077166166702, 'explain': 0.018511703487902688, 'recurrent': -0.02083617206639499, 'frustated': -0.02083617206639499, 'hidden': -0.039385441271554966, 'costs': -0.1423511220411066, 'silicon': -0.05065020558108987, 'construction': 0.15267415453195227, 'feels': -0.0032806514717116687, 'grippy': -0.04107374977953462, 'sticky': 0.028224279036385996, 'mean': 0.07152077184190687, 'instance': -0.02226264507375418, 'opening': -0.09014082768987965, 'requiring': -0.0707135004387518, 'push': -0.11000273057411326, 'cover': 0.05481841973012894, 'around': 0.07766304730409893, 'flip': -0.007875833566141594, 'edge': -0.19133760031587072, 'headphone': -0.08984717007042393, 'jack': -0.4553493359564634, 'somewhat': 0.058497859699754025, 'difficult': -0.03447029366395667, 'headphones': -0.17829202604005173, 'seated': -0.04107374977953462, 'pop': 0.12535116431568533, 'armband': -0.5292638085070674, 'satisfactory': -0.03152158567884427, 'standard': -0.2680027925980613, 'frills': -0.08825090746545047, 'velcro': -0.01392849140619612, 'tempted': -0.0508899537091602, 'rated': -0.04759029266680378, '2000': 0.01853086133515246, 'mah': -0.19097207177562164, 'run': 0.20336542026119644, 'juice': -0.05755923567220149, 'shot': 0.1425866098005606, 'frames': -0.12493932101793329, '1600': -0.0508899537091602, 'contrast': -0.1605982559965264, 'shots': -0.05164533533774604, 'mp3': 0.18346099012171144, 'supply': 0.06826107944148271, 'hr': -0.0508899537091602, 'peak': -0.02410922528904612, 'current': -0.014480130636415112, 'flashlight': -0.2133802869174801, 'dimly': -0.0508899537091602, 'yeah': -0.2259870593511066, 'panasonics': -0.0508899537091602, 'lenmars': -0.0508899537091602, 'duration': -0.0508899537091602, 'charger': -0.11836462956106768, 'plan': 0.11198200347607878, 'complain': 0.13334604622386767, 'affairs': -0.0508899537091602, 'department': -0.017063312538537254, 'regarding': 0.07730355781812716, 'action': -0.017051977078090676, 'taken': 0.12733006227182078, 'shady': -0.08979802231983411, 'offs': -0.032307682994956594, 'tip': 0.0020203516863941443, 'nowadays': -0.06635110020236311, 'nimh': 0.045785175423806675, 'sanyo': -0.030247413712750977, 'lenmar': 0.2112764149716875, 'handed': -0.08128295457366864, 'non': 0.027018538874643793, 'spring': -0.16989086494582462, 'leaf': -0.024163278817490755, 'contacts': -0.1356710311045592, 'managed': -0.08498153502424598, 'bent': -0.024163278817490755, 'path': -0.051088895583659547, 'seeing': -0.18832759061454202, 'slot': 0.06373674997738293, 'impossible': -0.18366471235955298, 'tool': -0.1517753622915157, 'side': -0.3653626161347606, 'types': -0.1881545124204241, 'gps': -0.017517344739811418, 'us': -0.14299255335063996, 'map': -0.13521032550834064, 'canada': -0.01488666531693439, 'twain': -0.04656633824963183, 'meet': -0.09770600482380848, 'car': -0.04694663514547014, 'eastern': -0.016347015744470974, 'swap': 0.10515845036706496, 'faraway': -0.008173507872235487, 'tomtom': -0.3475158615584165, 'nearby': 0.005594647254223237, 'canadian': -0.003991902198869375, 'contiguous': -0.008173507872235487, 'border': -0.009155322878180562, 'cross': -0.18470368461792153, 'trips': 0.24474633991794487, 'oh': -0.11994136707397662, 'provide': -0.17355889632560645, 'changing': -0.035229573484421794, 'later': 0.005415444196170778, 'maps': -0.00039404612326820896, 'dated': -0.06510333223958277, 'iffy': -0.032551666119791385, 'terrific': 0.14315809477546357, 'pda': -0.15687366457566757, 'stylus': -0.04540885350574523, 'sitting': 0.19011025334725218, 'trip': -0.08486427082600252, 'amazing': 0.48867473319986954, '600': 0.002143163509552299, 'mile': -0.167068506252304, 'waypoints': -0.004444667261463174, 'roads': 0.22060291121420778, 'force': 0.1289808166160315, 'routes': -0.056842046592869504, 'choices': -0.07716600994906991, 'database': -0.050627675533062355, 'route': 0.10202651354316494, 'road': -0.0810040587817709, 'waypoint': -0.05068579044281424, 'tell': -0.4084698703979273, 'circles': 0.14239743000758395, 'indications': -0.032551666119791385, 'garmin': 0.08879514608183987, 'i2': -0.032551666119791385, 'se': -0.0059837166355522975, 'fl': -0.0370343346214573, 'usa': -0.01534468876199804, 'sc': -0.0012125176084612234, 'c330': -0.032551666119791385, 'destination': -0.07414125566444493, 'manufactures': -0.032551666119791385, 'helps': 0.05332782408373634, 'inav': -0.08984263975290355, 'iguidance': -0.08984263975290355, 'mapopolis': -0.044921319876451773, 'navigon': -0.044921319876451773, 'navigator': -0.10960642796339197, 'blue': -0.23160623351248796, 'logger': -0.13476395962935525, 'atlas': -0.08984263975290355, '.out': -0.044921319876451773, '2.1.1': -0.044921319876451773, '.blue': -0.044921319876451773, 'v': 0.015303457981964159, 'impractical': -0.05747119291515003, 'bcuz': -0.044921319876451773, 'onoff': -0.044921319876451773, 'mone': 0.06710556116134066, 'hub': 0.21968782939981318, 'powered': 0.09086654521507125, 'forget': -0.11620166449828219, 'unpowered': -0.05208767757781843, '1.1': 0.0037559522057874625, '2.0': 0.11847177077539253, 'compliant': -0.01154105773814054, 'clunky': -0.19250742292467735, 'comke': -0.08135084609482764, 'adapte': -0.08135084609482764, 'older': 0.019370714924301414, 'pci': -0.1556455316198273, 'adapter': 0.14899615271439812, 'realized': -0.11177074719147538, 'ports': 0.14868472460150983, 'convenience': 0.07091942677395362, 'located': -0.01161200847612038, 'backplane': -0.04237651559602172, 'floor': 0.1844635176875274, 'shopped': -0.01186521958321545, 'looked': 0.0858812514924534, 'appropriate': -0.07694305088493668, 'cord': -0.18678066161916532, 'solved': 0.2375258099850267, 'getting': 0.1618613422390558, 'extension': 0.1936891369797061, 'besides': 0.21036746743922283, 'solving': -0.1805097162734737, 'immediate': -0.033283209183284, 'approach': -0.12602610365575578, 'option': 0.19732727690837842, 'moving': -0.1645124072678361, 'laptop': 0.32597383244736844, 'purpose': -0.18690362990654252, 'supposed': -0.07850339989366308, 'compact': 0.22095414319711107, 'reader': -0.004490927295379721, 'inkjet': -0.010447025454474462, 'drivers': -0.18192831826319583, 'installed': -0.07206938323508738, 'correctly': 0.02923946808946519, '98': -0.4310627945864934, 'available': 0.11171761504744986, 'disappearing': -0.15043093398703106, 'cables': 0.005564699724242395, 'bring': -0.10665004364258074, 'eventually': -0.11170340691847498, 'deduced': -0.04237651559602172, 'wiring': -0.24047848221570658, 'inside': -0.06153242117003719, 'draw': 0.20793512943364503, 'ac': -0.15461846832636542, 'adapters': -0.06637936837976725, 'combination': -0.2533287378436177, 'sooner': -0.07752573667647704, 'possible': 0.03415921944152261, 'improved': -0.028402561485490477, 'messing': -0.07584989978235294, 'suspect': -0.025769154737902505, 'discontinued': -0.0015498094244564857, 'necessary': 0.13508321704695053, 'somebody': -0.051189514128786286, 'listing': -0.049120665514786784, 'suggests': -0.05292850862289086, 'soundsticks': -0.06100223569921219, 'along': -0.2709296275521462, 'airport': -0.2115186465170843, 'thinking': 0.09580436573631308, 'connecting': -0.1028894733217709, 'says': -0.15110265676752385, 'faqs': -0.06100223569921219, 'install': 0.2081199401805478, 'smooth': 0.2947710902490702, 'w2k': -0.0255424583089191, 'inspiron': 0.09475763555310132, 'notebook': 0.26782261268342095, '24': 0.035561790125200964, 'nowhere': -0.06566043842085843, 'sending': -0.2696707640148844, 'd': 0.011740811825770067, 'link': -0.048187691844183644, 'website': -0.07051481782965689, 'talking': 0.11968124171957878, 'staff': -0.006463056945183179, 'appears': -0.0723455613950114, 'countless': -0.025706865821711878, 'versions': 0.0421047990712456, 'driver': 0.10580792914700168, 'download': 0.002316749709038115, 'automatic': 0.0233285567210668, 'match': -0.010594196628491724, 'screens': 0.06416098362933202, 'sp': -0.03965551705382905, 'questions': 0.14314972522953948, 'reboot': -0.041611360818605364, 'talk': -0.09225264211761207, 'senior': -0.008706020136975263, 'etc': 0.02718667438351197, 'easier': 0.3117159998246422, 'clearly': -0.08759339473319284, 'knows': -0.04351162969495669, 'speaks': 0.04454445968191985, 'intelligble': -0.008706020136975263, 'english': -0.10224531070121978, 'resort': -0.04365211868958966, 'calling': -0.0234030492630186, 'technical': -0.34144218677452237, 'speaking': -0.13596421382426233, 'alone': -0.2210866370912172, 'cnet': 0.1304225249857133, 'site': 0.12503833206492815, 'dwl': -0.007223723909445151, 'g650': -0.017412040273950526, 'reports': -0.05856046454602991, 'operating': 0.029519334192847923, 'believe': -0.22612090428584003, 'font': -0.1863157415135626, 'message': -0.17436190356556366, 'boxes': 0.03200154366570561, 'news': 0.021244091353535485, 'utterly': -0.15855025597280417, 'well-': -0.05694735256280791, 'reduce': -0.11184275456587892, 'clutter': 0.04028905799531664, 'desk': 0.09456143050829684, 'hooking': 0.19761543456964425, 'powermac': 0.01429723114950244, 'hooked': 0.10801746520188459, 'happened': -0.42390350580436037, 'targus': -0.14100940827325237, 'adaptor': -0.07525256510207302, 'come': -0.02193787917654152, 'info': 0.2339830656099786, 'volt': 0.04547545241923549, '2.1': 0.07318920628058308, 'amp': -0.18151064183811805, 'shacks': -0.05694735256280791, 'online-': -0.05694735256280791, 'carry': 0.10772620787134465, '181': -0.008202994337709548, 'decided': -0.038283911599652144, 'ran': -0.04773924877883369, 'lasted': -0.31639396103287293, 'hung': -0.022874630106608302, 'boot': -0.046552438982035184, 'prompt': 0.043588620922987736, 'rma': -0.04572720626051796, 'replaced': 0.037200603189090034, 'm230': -0.02460898301312859, 'c150': -0.02460898301312859, 'arrives': 0.02009841194882839, 'intend': -0.10032567220295194, 'runs': 0.04317321152951706, 'rave': -0.14413566041726716, 'unless': -0.36822258556614784, 'lifetime': 0.010524606585600648, 'suggest': -0.201476731474404, 'exercise': 0.019058267768843107, 'thier': -0.0067560152901511355, 'rights': -0.053175004530085127, 'unsuccessful': -0.10069197952944411, 'attachment': 0.07075994387325917, 'advance': -0.08996514736548439, 'cam': -0.028666382529001746, 'las': 0.01584616845036775, 'vegas': 0.033775437438692164, 'error': -0.6392765530616812, 'formatted': -0.14708090303864474, 'recording': 0.3475038185432245, 'appeared': -0.17285133003656233, 'bare': -0.1218456714026624, 'spot': -0.07103625135625385, 'outer': -0.11545198916281812, 'expected': 0.40870826373196434, 'purports': -0.1218456714026624, 'spindle': 0.04535797717610169, 'stick': -0.19601424797339534, 'sometime': -0.03763080898412661, 'understand': -0.09476612006869982, 'problematic': -0.09272843955610253, 'insane': -0.011725069473034101, 'single': 0.1155459124051856, 'messes': -0.07608530298108197, 'scared': -0.03763080898412661, 'related': -0.3894731790079917, 'notch': -0.06275023152279957, 'items': -0.06977328895079747, 'consumers': -0.08665239740591064, 'fooled': -0.24193271605301547, 'frisbee': -0.03763080898412661, 'find': 0.029480754192485907, 'careful': -0.34988095231116484, 'larger': 0.03884625563472838, 'labels': -0.5030420989765552, 'apply': 0.06744393560928158, 'awful': -0.3312335611597781, 'direct': -0.04681304768943408, 'macintosh': 0.06284503278226683, 'templates': -0.08330920658361336, 'print': 0.05733386310611344, 'style': -0.021778015089316063, 'awfully': 0.045508235227097404, 'template': -0.05095843438923506, 'appleworks': -0.05095843438923506, 'powerpoint': -0.11425377689552847, 'misrepresent': -0.10087619884032689, 'macs': 0.09309195807241233, 'feel': 0.04509054235001329, 'cheated': -0.10087619884032689, 'lied': -0.07384633782255466, 'serveral': -0.06422986470306248, 'shown': 0.06914767202615738, 'rebel': -0.048994742765716526, 'viking': -0.2569194588122499, 'fortunately': -0.07722764035463466, 'occuring': -0.06422986470306248, 'mega': 0.07902309131982546, 'pixel': 0.06046458393254991, 'sec': -0.1592449240422536, 'a40': -0.06422986470306248, 'impressed': 0.16891492781267547, 'note': 0.13660341521743255, 'click': -0.14650921685205823, 'wheel': -0.07338640280097555, 'photo': -0.24127007141829826, '60': -0.1283647973116737, 'vacation': -0.055220139547981564, 'ordering': 0.05923351384236438, '60gb': -0.03680892166200304, 'separately': -0.03433083709771974, 'grr': -0.03680892166200304, 'heres': -0.060006252686630054, 'spindles': 0.11281431019168554, 'imac': 0.20543978162298177, 'w/': -0.06893503165871478, 'intel': 0.014455435245289186, 'chip': -0.09345170985243383, 'hardly': -0.13317746989915888, 'kicker': -0.060006252686630054, 'freind': -0.060006252686630054, 'overseas': -0.03559238206043817, 'idea': -0.29445000980213826, 'deal': -0.2163800393492528, 'ideas': -0.05718215093840919, 'mail': -0.3353941792081774, 'rebate': 0.2812960124276053, 'upc': -0.03558174102295736, 'stating': 0.029076800796658347, 'resubmit': -0.07116348204591472, 'hoax': -0.03558174102295736, 'perpetrated': -0.03558174102295736, 'companies': -0.1253716713855447, 'sets': 0.04609502723765156, 'earphones': 0.10210768091929519, 'flight': 0.17596671614242645, 'ears': -0.35097706834237896, 'sore': 0.09551026818846632, 'adjust': -0.18786580000182046, 'coming': -0.3540876248539292, 'foam': 0.009072919631641868, 'difference': -0.13932345807088087, 'felt': 0.12192512191659129, 'definition': 0.27481399404717444, 'terrible': -0.742501223645194, 'frustrating': -0.1142278095534382, 'unlucky': -0.007319082783860928, 'chance': -0.10302384502317528, 'somewhere': -0.10463512973631083, '-4': -0.007319082783860928, 'opinio': -0.29012215279677955, 'upconverter': -0.06747428814656682, 'hdtv': -0.03533881185708324, 'co.': -0.016868572036641705, 'provider': 0.04150938866879475, 'trees': 0.07134140109880764, 'expecting': -0.14093748366676376, 'magically': -0.08976924506804246, 'signals': 0.016915412840216366, '550': -0.0023889303491727997, 'noticable': 0.060590538322409834, 'turned': -0.13388265481786343, 'wife': -0.0659086542382674, 'okay': -0.29962290437132466, 'ready': 0.003916225325164533, 'quot;it': -0.016868572036641705, 'on!!"': -0.016868572036641705, 'reaction': -0.010927900238744454, 'image': -0.1623029292506103, 'certianly': -0.016868572036641705, 'noticably': 0.05372429505117645, 'instances': -0.01708526610738177, 'insisting': -0.016868572036641705, 'preferred': 0.013047975276373875, 'directly': -0.12370589140497432, 'thru': -0.2502428644755658, 'improve': 0.08517157929454737, 'close': 0.24501670459656288, '---': 0.07288931920668822, 'rapid': -0.03346171059557333, 'chargers': -0.07384041079937229, 'shelf': 0.027595427168623874, 'hoping': -0.32164912342221147, '---they': -0.010067021985101614, 'decision': 0.05873456954111789, 'behind': -0.08771674086836179, 'prior': 0.22314203920273198, 'loaded': -0.054288467096903305, 'sealed': -0.05670790938429068, 'target.com': -0.014142255632351783, 'mfg': 0.003126798475714855, 'contains': -0.20240433236163147, 'viruses': -0.24667326609184512, 'quicktime': -0.014142255632351783, 'hip': 0.04937683536742418, 'target': -0.18795414576129305, 'notified': -0.014142255632351783, 'corupt': -0.014142255632351783, 'gone': -0.08622606357757676, 'useful': 0.13886341355011658, 'drawing': -0.09637608492618349, 'tablet': 0.05554372290621006, 'paint': 0.06047560756079828, 'pro': 0.27858930250986064, 'access': -0.01741908426706788, 'norton': -0.23190921505643705, 'caught': -0.17823087920439848, 'excited': -0.2685147556910453, 'arg': -0.09311389866663863, 'pass': -0.019585456985370592, 'expensive': 0.2770227718106634, 'assign': -0.10239828947023884, 'experienced': 0.027624112042932126, 'doa': -0.015240517720654694, 'pressed': -0.053831159993600386, 'clean': 0.11146177167008627, 'motor': -0.02887569061943448, 'popped': -0.12875930341581335, 'cleaned': -0.07150940985007145, 'glued': 0.007587679510350892, 'mutilating': -0.015240517720654694, 'voiding': -0.015240517720654694, 'properly': -0.02579550554902375, 'carousel': 0.026018283388658744, 'rotation': -0.038073215721803326, 'trapped': 0.015394425210265711, 'refuse': 0.017377335933973125, 'altogether': -0.1725773751525055, 'directed': -0.06541102285099408, 'function': -0.1318357025922287, 'carefully': -0.13175845601167147, 'repaired': -0.13088980691125307, 'malfunctioning': -0.13241444239655448, 'circumstances': 0.0369683009023184, 'loading': 0.0521907335846514, 'unplugging': -0.027802105905403378, 'plugging': 0.04614061746681278, 'corrected': -0.06255481863309356, 'toss': -0.07190654396870555, 'heck': -0.18783974505143794, 'dirty': 0.06913127404040552, 'unplugged': 0.0220599200795607, 'removed': -0.008622450161840713, 'holding': 0.0980954572727072, 'sides': 0.06369040571260459, 'catches': -0.013390464581548009, 'lift': 0.04534812951475315, 'expertise': -0.027262936605990246, 'knowledge': 0.08158183042061083, 'eyeroll': -0.013390464581548009, 'nudged': -0.013390464581548009, 'lense': 0.00036732360994700183, 'slides': -0.0705464213599604, 'slid': 0.04454104317747271, 'elation': -0.013390464581548009, 'dumb': -0.05237293489220548, 'satisfaction': 0.03884580377762373, 'calculated': -0.013390464581548009, 'lol': -0.017503256785979332, 'hopefully': 0.058283809266707405, 'downrating': -0.013390464581548009, 'solely': 0.004164006725603304, 'viewing': 0.1563893412296723, 'hi': 0.19690163722222034, 'cyberhome': -0.07365745719289339, 'april': -0.14350714620210087, 'region': -0.2939357524507263, 'code': 0.06096469706345005, 'automatically': -0.2224511799474097, 'change': -0.012200475641659032, 'choose': -0.06437101525459796, 'settings': -0.10639040224091335, 'yo': -0.013427016985128654, 'fiddling': -0.16161049035080785, 'replugging': -0.007347411664402814, 'repeatedly': -0.07095217328226573, 'lighter': -0.1661482199029949, 'socket': -0.10836750750065044, 'restarted': -0.03128609766996094, 'blew': -0.14233325867030827, 'fuses': -0.009291442089510653, 'sockets': -0.007347411664402814, 'mechanic': -0.0024533056101911674, 'avail': -0.09379087324218892, 'refunded': -0.06666591377671935, 'toshiba': 0.03840166701621968, 'a60': -0.03735353193885703, 'cycled': -0.03735353193885703, 'watt': -0.0864552573698342, 'lamp': -0.08784887396066418, 'heat': 0.09166351323398682, 'spec': -0.06014559064656641, 'sheet': -0.011356275006989382, '400': -0.06535540521988593, 'watts': -0.12251610875743438, 'min': -0.16236394168316276, '140': 0.001569326578135802, 'continuous': -0.15467754683559287, '2a': -0.07470706387771406, 'input': 0.0068860115800166675, '240': -0.008463370201733982, 'vac': -0.03735353193885703, 'drew': -0.047605567804212, 'agree': -0.40391265523776587, '230': -0.03735353193885703, 'inverter': 0.015234840109337004, 'demand': -0.02600269675024032, 'manages': -0.10904914402042687, 'draws': -0.16960716452192426, 'amps': 0.05586917145129586, 'continuously': 0.14610124779893152, 'talked': -0.15233974574000236, 'linksys': -0.2608105812981706, 'notice': 0.035287529766881105, 'operation': 0.0010187283741414624, 'cleaner': -0.07421856099266953, 'music': 0.046585219847793125, 'cassette': 0.14244076471241618, 'deck': -0.011796383230593226, 'ejected': -0.07310150582043552, 'coby': -0.007591530190814787, 'unresponsive': -0.04163880262649461, 'luckily': 0.019978357931568526, 'bet': 0.037201360197206705, 'returns': -0.05864752202039785, 'distortion': 0.006759780501526062, 'interference': 0.016418603004161987, 'transmitter': -0.2365348797346978, 'frequencies': -0.11783527386752488, 'sf': -0.05488486234674342, 'bay': -0.06982360907976858, 'area': -0.08398113305020818, 'farther': -0.1011561852208573, 'order': 0.04275144911959041, 'postage': 0.12451178319388982, 'spending': -0.03612690071353084, 'originally': 0.18132528323461608, 'replugged': -0.027395413692631265, 'overused': -0.027395413692631265, 'mines': -0.027395413692631265, 'requires': -0.07978994101941098, 'switching': 0.09301167371507944, 'via': 0.0659179282043966, 'explicitly': -0.2319423995533593, 'specifications': -0.12656341084557737, 'misleading': -0.43699670080803077, 'buyer': -0.05539274371420849, 'seeking': -0.10409244171674358, 'x2': -0.11988879970986181, 'roughly': -0.07624695676880368, '14': 0.012075869196634748, 'sports': -0.15423280924883603, 'event': 0.0322232243007859, 'ncaa': -0.059944399854930906, 'nfl': -0.059944399854930906, 'finals': -0.059944399854930906, '1200': -0.01872367986614669, 'hrs': -0.11222848396538287, '799': -0.059944399854930906, 'extended': -0.10612057959594906, 'super': 0.19316654599694105, 'powershot': -0.03962720768679778, 'a510': -0.06827714662692477, 'transfers': -0.10876401537772339, 'sudden': -0.22858979327304374, 'converter': 0.05019344204920657, 'transfer': -0.17094410375776117, 'joke': -0.15912855745373727, 'unreliable': -0.4150740637376335, 'dvdrs': -0.01854896667443285, 'imation': -0.01854896667443285, 'ensure': 0.06745189308189593, 'nano': 0.24283666508913784, 'picked': -0.1839367198825387, 'burnt': 0.006274455201138407, 'toasted': -0.1272966521992123, 'liked': 0.11897479702191621, 'travel': 0.10433572115565087, 'leave': 0.07926164574872424, '~$20': -0.01837624601299483, 'network': -0.14097366058333635, 'trendnet': 0.04248179968152976, 'signal': -0.06167180626866162, 'meter': 0.046923056180914344, 'generally': 0.13267695470884003, '~95': -0.01837624601299483, 'strength': -0.032456078632727786, 'cycling': -0.08414809926245516, 'regain': -0.01837624601299483, 'stable': -0.0008227644665546851, 'flawlessly': 0.12724395439694036, 'packaging': -0.1642450668851196, 'title': 0.016406509547308604, 'stuff': 0.006647423129364733, 'eveything': -0.03692890957834891, 'involving': -0.022131917013357535, 'networking': -0.08063429989112175, 'linksis': -0.03692890957834891, 'recover': -0.038452312186311594, 'gigs': -0.028183339348785162, 'hardrive': -0.03692890957834891, 'spend': -0.11924994966587556, 'dedicated': -0.03035475524513003, 'storage': -0.1211474246409817, 'supplies': 0.0890468836370983, 'cordless': -0.020391796696361972, 'headsets': 0.09186913334800258, 'employees': 0.04084147076078139, 'alot': 0.0962390265611772, 'voice': -0.11569828707095384, 'stops': -0.1716029523169494, 'longest': 0.11313667173461708, 'lived': -0.0755934598875797, 'lt': -0.009758791341039666, 'colleagues': -0.012792756296328575, 'complained': 0.056289588205642595, 'happening': 0.09011777319775903, 'experiences': -0.007992998086086575, 'plantronics': -0.22638581163388005, 'cartoonist': -0.0743602508640998, 'color': -0.1633600977028595, 'clients': -0.016406370642192088, 'staples': -0.2150903776938549, '2500': -0.1659881423799141, 'toner': 0.18250091922072986, 'cartridges': -0.17651625966282714, 'leaking': -0.04111860992138293, 'rapidly': -0.08705474725278901, 'dimished': -0.0743602508640998, 'reluctant': -0.09962774223779132, 'hp': -0.06439847668174774, 'knowing': -0.07678008017973306, 'markedly': -0.0743602508640998, 'perform': 0.19927515601716558, '1/2': 0.1329922058725742, 'giant': -0.019035670146246967, 'magenta': -0.1837760634041702, 'spew': -0.023468260533693157, 'everywhere': -0.019355756191280098, 'cyan': -0.029668774908507375, 'streak': -0.05328070571982762, 'feed': -0.1232957039564419, 'answers': -0.03642046232445476, 'deny': -0.023468260533693157, 'issues': 0.23221478325721223, 'lackluster': -0.023468260533693157, 'calls': 0.17357922715775403, 'accomplished': -0.10764511757923727, 'doorstop': -0.04345760292974046, 'paperweight': -0.06600847900122458, 'considering': 0.28302989380240867, 'stamped': -0.023468260533693157, 'obviously': -0.20198983594493228, 'design': 0.04051884971641704, 'leakage': -0.08519039565230423, 'powder': -0.09472338920660314, 'ruins': -0.04061442669853525, 'printed': 0.05985444007198766, 'greyish': -0.1468308283949838, 'dirt': 0.09256519646159539, 'wash': 0.010537263180381335, 'bigger': -0.11393561412388978, 'furious': -0.03718540681591332, 'pleasure': -0.13750767661223776, 'domestic': -0.04700244919940684, 'international': -0.031456542488788375, 'pocket': 0.0530830354408282, 'annual': -0.06864456083171114, 'aka': -0.023060735587175155, 'tour': -0.04700244919940684, 'practically': -0.08822603522936898, 'sale': 0.09269117357334404, 'buggy': 0.031289164015022346, 'touchy': -0.04272520253758995, 'compatible': -0.05510086926987731, 'dsl': 0.08247116276583756, 'modems': -0.09400489839881368, 'houses': -0.04700244919940684, 'ethernet': -0.11302822111656936, '70': -0.05257040860994269, 'hotels': -0.07902019832661597, 'hot': -0.08644655138041418, 'cools': 0.01289192602191744, 'excellent-': -0.04700244919940684, 'homes': -0.030023164870773562, 'alabama': -0.04700244919940684, 'bangkok': -0.04700244919940684, 'netgear': 0.28196373445561956, 'hassle': 0.020435232098109518, 'wi': 0.11128314556453102, 'fi': 0.11618331159869325, 'desktop': 0.016158779223594717, 'wgr101': -0.15510316869972315, 'encrypted': -0.10698230315992302, 'laptops': -0.06776590792243137, 'wired': 0.008694109956881276, 'hotel': -0.15529088361420337, 'encryption': 0.01584880288191626, 'severe': 0.0027731360015629545, 'trying': -0.06938149081713836, 'wep': -0.055347785512203936, 'multi': -0.0033552756721296115, 'ability': -0.007835878851752305, 'seemingly': 0.09454848246271169, 'random': 0.07791106322124193, 'intervals': -0.066133284088008, 'restablish': -0.051701056233240894, 'unencrypted': -0.051701056233240894, 'sangean': 0.04003009519613128, 'dt200v': -0.07178992191755951, '2.5': 0.017993990157846317, 'padded': -0.04876247699795726, 'briefcase': -0.0947951018837473, 'significant': -0.10179805400178284, 'shocks': -0.22265265007248836, 'temperature': 0.008730449255538668, 'extremes': -0.06758285005300037, 'occasions': -0.03046902874519291, 'faint': -0.11345348910503525, 'noise': -0.08392602572541707, 'speaker': -0.021471093534001187, 'earphone': -0.16678361465765457, 'volumn': -0.13516570010600074, 'significantly': -0.18250770446882036, 'affected': -0.08696557149241287, 'corrosion': -0.06758285005300037, 'wary': -0.004070982181175535, 'sensitive': -0.18773259295791456, 'tiny': -0.2981270776965528, 'waft': -0.004070982181175535, 'air': -0.34053859079191334, 'kidding': 0.02228510861193179, 'whim': 0.006461969807493218, 'shortly': -0.006769660180796448, 'became': -0.08975456103341038, 'maddening': -0.06463001908458638, 'mailing': -0.0061537813678724015, 'fro': 0.05127987204013454, '-(oh': -0.004070982181175535, 'have!)-': -0.004070982181175535, 'physically': -0.024680597482512064, 'shave': -0.004070982181175535, 'underside': -0.004070982181175535, 'touched': 0.09206235954675872, 'conversely': -0.11203246471523917, 'move': -0.1424432567529336, 'guts': -0.025615620517277747, 'thankfully': -0.01733142526640509, 'shorting': -0.004070982181175535, 'scanned': -0.019042534495337913, 'fuzz': -0.021004791205838723, 'station': 0.2707481129649951, 'intelligent': -0.015218972075683599, 'crackle': -0.004070982181175535, 'existed': -0.018859520451116277, 'anywhere': -0.02136947510437631, 'planet': -0.004070982181175535, 'zero': -0.08485012141662794, 'turning': 0.19259198098514446, 'supplied': 0.1322815243267227, 'seemed': -0.45078355554778093, 'trial': 0.1180718698408068, 'act': -0.011920963546215647, 'joggled': -0.004070982181175535, 'shorted': -0.004070982181175535, 'pair': 0.1541503410029939, 'cancelling': 0.11606455357050614, 'position': 0.009931503486015144, 'recommended': 0.07702237555367664, 'shorts': -0.19297935304993846, 'prevented': -0.04799787052151723, 'removing': -0.029265530011545714, 'presets': -0.07914971731858186, 'clears': -0.0288359728074313, 'weirdly': -0.045689834405040666, 're': 0.07170337831832316, 'messed': -0.18645206926710525, 'correct': -0.010916661016550165, 'screwdriver': -0.004070982181175535, 'pushing': 0.04221414364890269, 'board': -0.09126159006680731, 'direction': 0.053996433112953976, 'scooting': -0.004070982181175535, 'minimal': -0.04247078750563719, 'movement': -0.24214772000563342, 'prayer': -0.004070982181175535, 'repeat': -0.3595467044524948, 'process': -0.11085414842130092, 'fixing': -0.004820527315198431, 'wall': -0.2068489607369179, '_': -0.08316694282596375, 'receipt': 0.13377794228450138, 'voids': -0.004070982181175535, 'split': 0.0143589558937473, 'grudgingly': -0.004070982181175535, 'exclusively': 0.01745908283498484, 'listen': 0.07697194914841372, 'pulls': -0.07912839647937654, 'nicely': 0.22874207864049637, 'amount': 0.022368561766969188, 'fault': -0.12955015633950018, 'low-': -0.004070982181175535, 'indoors': 0.008968656075513292, 'saturated': -0.00814196436235107, 'cubby': -0.004070982181175535, 'environment': -0.009876195035892188, 'window': 0.27984237786006666, 'strong': -0.017770970253985188, 'environs': -0.004070982181175535, 'electrical': 0.07137888432572106, 'field': 0.0916392292129842, 'musical': 0.06897341440838756, 'criticism': -0.004070982181175535, 'canniness': -0.004070982181175535, 'lacking': -0.05269417816934817, 'fullness': -0.004070982181175535, 'midrange': 0.04515479382514286, 'warmth': -0.002235674652070965, 'bass': 0.33639991213751214, 'signature': -0.03284148637712081, 'boost': -0.10436107458353058, 'helped': 0.1838416042775814, 'clarity': -0.013715850201517934, 'ignore': -0.020407407325377786, 'lesser': 0.0864182199665102, 'aspects': 0.07593020729308124, 'higher': 0.19158637444517332, 'importance': -0.004070982181175535, 'fealt': -0.05999157970964031, 'palm': -0.3745153087320505, 'rest': -0.15288299881286738, 'base': 0.18308711430431754, 'hump': -0.05999157970964031, 'palms': -0.05999157970964031, 'puts': -0.16347470810756246, 'hands': -0.12036970595410293, 'uncomfortable': -0.25148599265145427, 'angle': 0.07797932606993414, 'slick': -0.03211104690267721, 'compatability': -0.006529319712673244, 'bothered': 0.03868997736421982, 'respond': 0.032986612314531705, 'slide': -0.18286318834379692, 'add': 0.10527588529172255, 'value': 0.3918781477148599, 'adjustments': -0.07594500470527965, 'aa': 0.03995750989077669, 'reformatted': -0.1401417015561314, 'speed': -0.18277554483278086, 'minolta': -0.043349849233842344, 'xg': -0.043349849233842344, 'faster': 0.3438015492169696, 'cripples': -0.043349849233842344, 'fourteen': -0.043349849233842344, 'dishonest': -0.043349849233842344, 'slowest': -0.043349849233842344, 'curse': -0.043349849233842344, 'formatting': 0.034487548829161274, 'transferred': 0.07864600983742794, 'o': -0.02524449004930642, 'ses': -0.02666161379774363, 'detailed': 0.0832288166441043, 'gaming': -0.2421621884021056, 'ips': -0.022274543010876145, 'engineer': 0.013372361783531492, 'dual': 0.13924436846757318, 'ip': -0.1370889608034663, 'segment': -0.022274543010876145, ']': 0.15676335526358814, 'bridging': -0.022274543010876145, 'appliances': -0.022274543010876145, 'ms': 0.012391536558899862, 'dhcp': -0.06220944316260814, 'handshake': -0.022274543010876145, 'xbox': 0.10005184263758855, '48': -0.1024469238538313, '54': -0.10230688657282645, 'mbps': -0.11088479669069135, 'reproduced': -0.022274543010876145, 'booting': 0.05667923890926952, 'kinds': 0.08897915247615892, 'games': 0.11830004446663095, 'xbmc': -0.022274543010876145, 'leaving': -0.08902144011050515, 'spotty': -0.0350306662931151, 'details': -0.01898772189576172, 'show': 0.1052694561191904, 'swift': -0.022274543010876145, 'cycle': 0.02676330457193177, 'solves': 0.06526484490149441, 'nic': -0.022274543010876145, 'buffer': 0.025669707177333356, 'filled': -0.0839596105308093, 'buffers': -0.022274543010876145, 'figured': -0.10560342112059651, 'select': 0.08833561714565213, 'g': 0.4618134965894108, 'tired': -0.07394561013445898, 'f.': -0.022274543010876145, 'detected': 0.02014113217810417, 'configuring': -0.0429873723411739, 'disconnected': -0.22044933515444456, 'call': -0.1358884677836151, 'woman': -0.04614631048830009, 'india': -0.04399688980908444, 'headset': 0.08294356976145698, 'ton': 0.22696991456263657, 'accent': 0.019280612046745308, 'session': -0.040975192075536224, 'chat': -0.19475115183033903, 'unknown': -0.07788070441327197, 'lady': -0.03434018227289144, 'mixing': -0.004182238083751965, 'discounted': -0.0348305158802785, 'gigabeat': -0.18870416954460068, 'f40': -0.01898961214966023, '150': -0.10866364619779038, 'bargain': 0.046674385002916506, 'gig': -0.240134679196695, 'regret': 0.10249467572053851, 'failing': -0.10992553498094694, 'pointed': -0.12574069421340706, 'tracks': 0.09954405876835089, 'application': 0.004127758631200723, 'starts': -0.027304550262200033, 'till': 0.12322706733332478, 'displayed': 0.013659423542964061, 'directory': 0.027812623093125065, 'hangs': -0.23270659522743767, 'library': 0.02011654228053501, 'hanging': 0.06658272999416712, 'restart': 0.05037093180715111, 'wait': -0.03533803403307987, 'resume': -0.03998395337274326, 'sync': -0.23000655311236476, 'present': -0.13730416719259972, 'microsoft': -0.17615252009751026, 'synchronize': 0.016121975112144506, '35': -0.08593140131596007, '18': 0.003935976141400073, 'encrypt': -0.01898961214966023, '8100': -0.01898961214966023, 'consuming': 0.058459059044692334, 'messages': 0.07282062102528065, 'quitted': -0.01898961214966023, 'obvious': 0.1018624465177855, 'fragility': -0.01898961214966023, '1986': -0.01898961214966023, 'unreasonable': -0.01898961214966023, 'estimation': -0.01898961214966023, 'greater': 0.10119381057596873, 'maintenance': -0.01898961214966023, 'provided': 0.14247902759404926, 'explorer': 0.015706362629587092, 'bump': 0.058172120882855324, 'casette': -0.07271529821325044, 'kit': -0.1702041239133879, 'primary': -0.15403558255006858, 'loosly': -0.11660070440297941, 'cheaply': -0.1691662521612584, 'annoy': -0.056590477072564045, 'co': -0.07125212811188561, 'workers': -0.11105670368782282, 'siemens': -0.1263212536639941, '8825': -0.2147645097927222, 'motorola': -0.0038852099697874814, '7081': -0.12929215539384578, 'rich': -0.09538641690854456, 'handset': 0.005340407658089826, 'lit': 0.04568237331753127, 'displays': 0.07699421599538253, 'prompts': -0.062254146232026665, 'accessing': -0.039313070385251135, 'reasonable': 0.04965317668622678, 'fairly': -0.032786388040990794, 'sort': 0.018277292268563637, 'phonebook': -0.15725228154100454, 'alphabetically': -0.07862614077050227, 'shared': -0.07678898040532024, 'handsets': 0.11218700639324904, 'maximum': -0.00576666159357143, 'barely': -0.2662558693773054, 'speakerphone': -0.23902903468874115, 'distorted': -0.10980958691164174, 'fuzzy': -0.01089995133854879, 'hears': -0.021161758748381575, 'adequate': 0.05239725915996774, 'search': -0.19630395444513693, 'sorted': 0.11546689723526508, 'name': -0.1264159518576423, 'z': 0.044410805932854125, 'scroll': -0.01233726943547831, 'outgoing': -0.0453348631775477, 'level': 0.05367513321194439, 'indicator': 0.020061916895982787, 'cradle': 0.04981282282403428, 'indication': -0.054997925342192826, 'showstopper': -0.039313070385251135, 'echo': 0.017530172985552494, 'earpiece': 0.10139603743775459, 'distracting': -0.1050824123975949, 'disconcerting': 0.0023364419091515174, 'mount': 0.20098469567613586, 'bracket': -0.02238606834057666, 'straight': -0.16430682893858284, 'nose': -0.07555019959675074, 'location': 0.09154519805928155, 'mounts': 0.04665003961774159, 'strikes': -0.02248522822876496, 'unexcusable': -0.022564512616730946, 'oversight': 0.011457483346538623, 'microphone': -0.26922705488943144, 'front': 0.22976646270450526, 'listening': 0.2021044501375224, 'highest': 0.06042719328597141, 'rca': -0.03861703828986611, 'creative': -0.26821591759573943, 'moron': -0.047537054821408964, 'watches': -0.07235826049485582, 'itunes': 0.03116852107818715, 'm$': -0.09507410964281793, 'wma': -0.08311549469517102, 'elsewhere': 0.022400598082584287, 'conversion': 0.021879855703703908, 'ripped': -0.1680125693231233, '64kbps': -0.047537054821408964, 'protected': 0.008244957923713226, 'converted': 0.02251731417871123, 'discovering': 0.03666755063157445, 'convert': -0.06896705194932283, 'licking': -0.047537054821408964, 'google': -0.23091052845528645, 'hate': -0.04789364103167971, 'grab': -0.04972005153251221, '99': -0.021282117799318268, 'kill': -0.11176823407345465, 'upcoming': -0.047537054821408964, 'espect': -0.2041336217718621, 'completly': -0.2041336217718621, 'silent': -0.1754802603576275, 'obviusly': -0.2041336217718621, 'intention': -0.11126024519965079, 'conjunction': -0.15190832418446817, 'recent': -0.10423220940162403, 'ride': 0.049932610143451246, 'incredibly': -0.0422214325094351, 'folder': -0.10827931897780989, 'exclamation': -0.02686519633928873, 'restore': 0.0029661645677302177, 'samsung': -0.03592057127531002, 'connections': -0.08572062842511131, 'disapointed': -0.19254209542785383, 'dvi': 0.13004296672194635, 'newer': 0.14566969369158564, 'humax': -0.023497556472993186, 'tuner': -0.20163994685905104, 'charm': 0.0731587593196572, 'sir': -0.023497556472993186, 't451': -0.023497556472993186, 'thoughts': -0.10940576125081522, 'factor': 0.11388540964783306, 'declined': -0.030064510846780013, 'mainstream': -0.023497556472993186, '3rd': 0.012602936546566879, 'duracell': 0.02218164511241361, 'batch': -0.02979754037804749, 'mr.': -0.0932138202874239, 'loftin': -0.09708002009328633, 'silver': -0.14723713523307663, 'black': -0.306964631846461, 'ka': -0.023658582762861934, 'intelligible': -0.023658582762861934, 'warning': -0.04583507030945937, 'anyways': -0.2592294813855886, 'menu': -0.08132903768222867, 's': 0.0004696216684500625, 'listened': 0.03127487523789503, 'noooo': -0.015919910865768664, 'city': 0.17203511900392085, 'metropolitan': -0.07717010905588916, 'driving': -0.02439227772110238, 'span': -0.1031338538193058, 'channels': 0.11764146078349488, 'kudos': -0.015919910865768664, 'tunebase': -0.08106177687681426, 'highly': 0.7185215204589631, 'massage': -0.004627190820148133, 'voip': 0.12264807956182293, 'voicepulse': -0.12087988319414139, 'numbers': 0.07810483774117082, 'ringing': -0.03195337808255785, 'indicating': -0.12087988319414139, 'incoming': -0.1996206766852902, 'ring': 0.08205773533529767, 'reset': -0.2630377580216131, 'defaults': -0.15923707026645642, 'erasing': -0.0532419553079475, 'at&t': -0.18286574792906551, 'workaround': -0.12087988319414139, 'callers': 0.012347434461739384, 'mic': -0.0962276692717868, 'mouth': -0.0356401983926101, 'adjustment': 0.060016082237038755, 'affect': 0.03022216527439373, 'picks': -0.014862693571308549, 'caller': 0.14616574702679916, 'resend': -0.043570790857502074, 'unusable': -0.3448147952462869, 'described': 0.005835755887216673, 'c550': -0.01671430899419241, 'transparent': -0.03824101561752786, 'powerful': 0.04330913987589764, 'untrue': -0.03024038892784801, 'stabilized': -0.050819365782802585, 'levels': 0.0749310330149474, 'antiroll': -0.025409682891401292, 'crossbars': -0.025409682891401292, 'vague': -0.0472368347267085, 'covers': 0.18566091030621373, 'equalization': -0.009672123284339982, 'deliver': -0.05464966939424235, 'frequency': -0.14538578577180047, '18hz': -0.025409682891401292, '20khz': -0.01319504319421239, 'aiwa': 0.019221516883394876, 'buds': -0.11099384438944944, 'japan': 0.07165502488304068, 'walkman': -0.22369485496726985, '1990': -0.025409682891401292, 'compare': 0.12235097167257114, 'mx400': -0.063571135815721, 'reputable': -0.0731500154057036, 'marketplace': -0.002551064602720917, 'retracts': -0.007817570229326288, 'lines': -0.023040052269310576, 'automated': 0.0019321349311111206, 'disconects': -0.061384033519333275, 'telling': -0.0340529130983209, 'pny': 0.18725975595484692, 'mad': -0.031752573607862954, 'samething': -0.1142073901668841, 'helper': -0.1142073901668841, 'determined': -0.04105441553936052, 'apearently': -0.1142073901668841, 'ink': 0.1932032221607999, 'cartidges': -0.07463337830722853, 'troubles': -0.10615251388680554, 'dish': -0.23997772927320268, 'networks': 0.010172723857609063, 'technology': 0.07383830027968974, 'dvr': -0.1713637884099481, 'rooms': 0.18015215141313654, 'menus': 0.09436371595647566, 'pricing': -0.12668171756554267, 'dispute': -0.02963908188145094, 'net': -0.013358115077204432, 'hassel': -0.02963908188145094, 'cancel': -0.08264530229043579, 'missing': 0.0489734743674765, 'ohio': -0.02963908188145094, 'michigan': -0.02963908188145094, 'tbd': -0.02963908188145094, 'consistently': 0.10276670316441687, 'murphy': -0.02963908188145094, 'law': -0.07133221963620827, 'prompting': -0.05176449545138243, 'j.clark': -0.02963908188145094, 'san': 0.08483119869279453, 'jose': -0.10412725356506784, 'emails': -0.029192638401049773, 'meets': -0.4912874665688523, 'expectations': -0.268552613574837, 'began': 0.12537828630810094, 'followed': -0.08558843620298946, 'covering': -0.05224280371939059, 'excessively': -0.0022507845513861056, 'smell': 0.0069607520558066915, 'left': -0.02020620037935533, '#': -0.02506868820728344, 'manufactured': -0.016279930727646448, 'trusted': 0.023505821208717748, 'manufacture': -0.14093123846084613, 'flawed': -0.02696515904640155, 'place': 0.31035970732447227, 'competitors': 0.04316895139463713, 'rangemax': 0.03298062582490501, 'recognized': -0.09171859329874314, 'rep': -0.09273902837511731, 'suprize': -0.02291616970792216, 'inquiry': -0.02291616970792216, 'resolved': -0.021261929678918455, 'explore': 0.01808658902086613, 'shoot': 0.06928456916057461, 'smoothly': 0.03422653974103963, 'contrary': 0.00581023400411403, 'programmable': -0.08926233491552413, 'predefined': -0.10834508463738722, 'paste': -0.02322554982298157, 'neither': -0.14845853092824549, 'irritation': -0.10834508463738722, 'popup': -0.08460005666034186, 'weak': -0.06824416920969235, 'officedepot': -0.10834508463738722, 'locate': 0.08177616679871706, 'wants': -0.04846728563786818, 'gamer': -0.0032899594740088208, 'monitor': 0.27254958596685097, 'veiwing': -0.049199815596561176, 'scale': -0.0370513230108854, '=': -0.16539342666390536, 'ghosting': -0.09839963119312235, 'operations': 0.020306028429740764, 'lack': -0.09027952546643382, 'brightness': 0.16831268144370967, 'gamers': -0.027067871683417222, 'saw': -0.08650343592278574, 'controller': 0.09367226377151815, 'forward': -0.21266692620116592, 'hiding': 0.010793945967399486, 'dash': 0.1986240013150706, 'sight': -0.10254256732969455, 'boy': -0.02463981708895608, 'adpater': -0.026352900646022127, 'artists': -0.038746961114961065, 'albums': 0.027752629492528748, 'hell': -0.05941042988576428, 'alpine': -0.11980990617486315, 'scrolling': 0.075961458941262, '3000': -0.03581075794701409, 'reached': -0.026352900646022127, 'reciever': -0.004504772713457703, 'defeats': -0.15671695417888018, 'controls': 0.046315047545315374, 'flat': 0.025399209174957423, 'uselss': -0.026352900646022127, 'artsts': -0.026352900646022127, 'thinks': -0.03072802714821024, 'showing': -0.07688916164555122, 'damn': 0.04732071024299384, 'sense': 0.16878303837639141, 'bunch': -0.1432023927698833, 'practicalness': -0.026352900646022127, 'cares': -0.04292264626303505, '9847': -0.07367103082975049, 'hijacks': -0.07367103082975049, 'intuitve': -0.07367103082975049, 'locked': -0.20748592527784973, 'catalog': -0.15346432082829814, 'artist': -0.008986394791792873, 'album': 0.050048126242666705, 'imports': -0.07367103082975049, 'slowly': -0.0666511355759493, 'knob': 0.0384128047028109, 'circling': -0.07367103082975049, 'eqauls': -0.07367103082975049, 'spots': -0.1490105890621901, 'unlike': -0.06432797860834727, 'circle': -0.07367103082975049, 'equals': 0.002313323494891478, 'dozens': -0.08655146213320282, 'spin': -0.0014846921633251482, '........': -0.12243768194016993, 'cumbersome': -0.25910414657070824, 'deactivate': -0.07367103082975049, 'cheaper': 0.14789316282306136, 'form': 0.1631173357447338, 'jacks': -0.03007573287139232, 'infinitely': -0.005826829921817562, 'buzz': -0.13272465634699837, 'muffled': -0.0049271392839660005, 'background': 0.05575364433751557, 'electical': -0.07599684550173766, 'outlet': 0.28853743129481707, 'jeep': -0.10836674865723356, 'liberty': -0.10530963306261504, 'ridiculously': -0.08876840068151991, 'percent': -0.06087335782480073, 'tape': -0.03139559528526148, 'pt-1750': -0.0939109563206595, 'scissors': -0.10437167447756981, 'eliminate': -0.116805202522917, 'instruction': -0.06368565862064061, 'states': -0.05999432618761813, 'brother': -0.04968063421481077, 'invalidate': -0.10636980103564132, 'tactic': -0.10636980103564132, 'increase': 0.1169831179566718, 'additional': 0.1516631978859492, 'dollars': 0.03304688569174528, 'printing': -0.06012407789443557, 'empty': 0.0604222920415543, 'freebie': -0.04428044103699453, '1.15': -0.08856088207398906, 'cartridge': 0.07023194930746203, 'fully': 0.11275728997151169, 'consumed': -0.04428044103699453, 'sheets': -0.021336938963648792, 'text': 0.07092922956094232, '17.99': -0.04428044103699453, '14.99': -0.04428044103699453, 'calculate': 0.005896988647250055, 'outrageous': 0.08904968023705624, 'obscene': -0.04428044103699453, 'hp720c': -0.04428044103699453, 'pavilion': -0.009248800238706405, 'among': 0.0087528200749611, 'vowed': -0.04428044103699453, 'future': 0.1403933310714458, 'pixima': -0.04428044103699453, 'hog': -0.04428044103699453, 'fidelity': -0.1543017811183677, 'fair': -0.2772827973926882, 'incident': -0.07437545847907338, 'operate': 0.05770522020234131, 'overbearing': -0.026745749474195373, 'daytime': -0.031512574688446086, 'prints': 0.10209272308316016, 'jobs': -0.0330583427459549, 'spoke': -0.1462162175111792, '1.5': 0.05541710673025598, 'researching': -0.05402525349571669, 'mission': -0.003812347786243913, 'share': 0.09147138863680444, 'etrex': -0.13236618047038737, 'vista': -0.08212798358446224, 'cx': -0.1490669048092027, 'replaces': -0.055041419777584574, 'attachement': -0.04570565174022309, 'lugs': -0.04570565174022309, 'microsd': 0.05956543677437714, '010': -0.04570565174022309, '10361': -0.04570565174022309, '00': -0.04570565174022309, 'anoying': -0.05541305541304784, 'vtech': -0.03535927083472931, 'phones': 0.12071667952072737, 'begining': -0.012267201627121839, 'noted': -0.01864006531958328, 'rechargeable': -0.06733725893384154, 'baterries': -0.011786423611576462, 'conversations': -0.08347540311653753, 'standing': 0.021170722345901893, 'head': -0.22764991473266702, '45': -0.13920094777650519, 'daily': 0.08870814400456871, 'ritual': -0.019858461157470877, 'legibible': -0.019858461157470877, 'conversation': 0.09838526828620127, 'shipped': 0.1627764478658255, 'opposite': 0.13859780759057846, 'telephone': 0.25643364369860544, 'speak': -0.08476166373201681, 'attempted': 0.021479862790938456, 'voicemail': -0.029078454957303757, 'amplified': -0.0183210398142787, 'loud': 0.07834528253464516, 'shouted': -0.029078454957303757, 'severely': 0.006200576957172343, 'suppressed': -0.029078454957303757, 'audible': -0.04918101517590678, 'usable': -0.30424872196487746, 'approximately': -0.028910506130499267, 'suddenely': -0.03425550557856818, 'activate': -0.04684935983542495, 'disturbances': -0.03425550557856818, 'embarrased': -0.03425550557856818, 'face': 0.08911721746846898, 'increasing': -0.04383501550276748, 'sensitivity': 0.14026282561148318, 'security': 0.20640815139373503, 'activation': -0.06630119541881005, 'i.e': -0.0024403863743013704, 'thin': -0.10707337974648373, 'valubles': -0.03425550557856818, 'uniformly': -0.01258691003217243, 'crashes': -0.15622652079027685, 'dss': 0.06563910509231624, 'crude': -0.07976643391268058, 'looks': 0.2920528583900929, 'ported': -0.04627413724500047, '3.1': -0.06629451333198746, 'ds-2': -0.01258691003217243, 'finder': -0.05693439866826773, 'compuer': -0.01258691003217243, 'double': -0.21052466735690603, 'clicking': 0.09830612725728603, 'relanch': -0.01258691003217243, 'exporting': -0.01258691003217243, 'aiff': -0.01258691003217243, 'nearly': -0.01181592032014753, 'export': -0.01258691003217243, 'selected': 0.13422307151317647, 'asks': -0.01258691003217243, 'saved': 0.18839972019206025, 'olympus': -0.08963969469632553, 'reveals': -0.0011780285993063105, 'painful': -0.36173856417885597, 'ways': 0.03372986362481236, 'converting': 0.09110921703654093, 'build': -0.18689269786706003, 'europe': 0.02681788114362864, 'bud': -0.2866148402291745, 'leads': 0.15705275382486544, 'solder': -0.062007541256828516, 'superglue': -0.062007541256828516, 'sheath': -0.062007541256828516, 'fraying': -0.062007541256828516, 'lead': 0.011679707872818757, 'revealing': -0.062007541256828516, 'wire': 0.021450493027355178, 'underneath': -0.04619989686727658, 'sounding': -0.004717085362998018, 'corners': -0.028594634376167827, 'warned': -0.17831073577934156, 'aweful': -0.020693199511924484, 'remember': 0.09179868339706217, 'loosen': 0.0014069779364968775, 'falls': -0.12541311617507586, 'srf': -0.061924511434060144, 'hm01v': -0.020693199511924484, 's2': -0.08817339259384142, ':)': 0.06114814841614551, 'seldom': -0.17578735631056336, 'class': 0.09397711720816203, 'reunion': -0.05500211716809547, 'preset': -0.023971073637232287, 'dial': 0.09336134299277005, 'huge': -0.01666569222679999, '60,000': -0.05500211716809547, 'farmland': -0.05500211716809547, 'tune': 0.0659918427523768, 'crystal': 0.019441815292524527, 'overrode': -0.05500211716809547, 'drove': -0.11601306738220904, 'nuts': -0.02819371145996214, 'fax': -0.18278835854814265, 'spotless': -0.05500211716809547, 'carrying': -0.059579881186745065, 'closed': -0.06260040133433234, 'perfect': 0.7191073310147246, 'you(sarcasm': -0.05567599973996816, 'z22': -0.05567599973996816, 'sylus': -0.05567599973996816, 'affortable': -0.05567599973996816, 'utilize': -0.03200602019270152, 'predecessors': 0.0033727949226072178, 'fantastically': 0.028807394944353127, 'enter': 0.08808380198114087, 'codes': 0.0005156320625175911, 'vcr': -0.09046773448029562, 'duty': -0.12447667134559445, 'flipped': -0.07532510295975262, 'longevity': -0.002087589161625765, 'goal': -0.08535395344093132, 'elsewher': -0.15307787390477717, 'specs': -0.028407326855816047, 'exceptions': -0.04568602153397522, 'rules': -0.08552853468233296, 'rule': -0.09137204306795044, 'difficulty': -0.036318921652120216, 'tweaking': 0.01067403905867851, 'improvement': -0.11555844133670012, 'considered': 0.04715826534611111, 'shipment': -0.05820041776589586, 'webcam': -0.11194981099782718, 'acer': -0.08649513425930734, 'ferrari': -0.06205722766197656, 'east': 0.009836871643213348, 'meadow': -0.07063266547020415, 'guy': -0.09034113240759, 'acceptable': -0.12401991139513716, 'namebrand': -0.07063266547020415, 'sharp': 0.01647293096918227, 'suffices': -0.07063266547020415, 'costco': -0.12951023358954905, 'rechargable': -0.11856097197450743, 'upto': -0.06879237211597117, 'lasting': 0.0870970723126103, 'dese': -0.11538573834107999, 'em': -0.07319645823320285, 'mi': 0.004502818089867773, 'skool': -0.05769286917053999, 'n': 0.11092043731474245, 'da': -0.11538573834107999, 'turrble': -0.11538573834107999, 'hav': -0.05769286917053999, 'lik': -0.05769286917053999, 'puttin': -0.05769286917053999, 'pressure': 0.013711905294149283, 'ur': -0.05769286917053999, 'f': -0.08258119773564612, 'king': 0.026411266561470425, 'dog': -0.2504243206814552, 'h.ear': -0.05769286917053999, 'dose': 0.016388609836975782, 'alwayz': -0.05769286917053999, 'portablity': -0.11294533793043661, 'earpeice': -0.11294533793043661, 'particularly': -0.16309139350859136, 'combo': -0.38426564945769065, 'rotates': -0.0627209452854174, 'freely': -0.0627209452854174, 'accidently': -0.02590173986883077, 'professional': 0.061040969277492196, 'picker': -0.02590173986883077, 'locks': -0.09753370777013833, 'spontaneously': -0.11299456028232421, 'combinations': -0.06808570425019336, 'inadvertently': -0.02590173986883077, 'engage': -0.02590173986883077, 'surprise': 0.04559186994925509, 'ruined': 0.016129473122337604, 'ruining': -0.0932861890043773, 'stressor': -0.0932861890043773, 'mobility': -0.0932861890043773, 'theft': -0.13355507442959524, 'deterrant': -0.0932861890043773, 'transport': -0.0425147643217059, 'ambient': -0.04109037077069018, 'pod': 0.10331896031417338, 'headpohones': -0.0425147643217059, 'bank': 0.06394853480420319, 'plane': 0.13291077178469834, 'frequently': 0.01852997646694977, 'cry': -0.0425147643217059, 'travels': 0.077735681958825, 'uneven': -0.025157847714674143, 'lengths': -0.0850295286434118, 'irritating-': -0.0425147643217059, 'weight': 0.040578715592943126, 'shorter': 0.1387750546704636, 'uncomfortable-': -0.0425147643217059, 'workout': -0.044708185491657004, 'cords': -0.1861229108503787, 'produce': 0.11704365180211217, 'rub': -0.0427465614251339, 'clothing': -0.0425147643217059, 'effect': 0.00894482341501792, 'disruptive': -0.0425147643217059, 'stationary': -0.05393570401477664, 'wearing': -0.015534278148973972, 'stethescope': -0.0850295286434118, 'effect-': -0.0425147643217059, 'hunt': -0.08782366584480719, 'jog': -0.07230386718919429, 'models': 0.12470658264405327, 'persistent': -0.07230386718919429, 'suffer': -0.04675818752291726, 'retract': -0.11883922253899781, 'arrow': 0.06468697269035441, 'fashion': -0.0204127674536454, 'macally': -0.08430977129123311, 'downloaded': -0.0919269379903769, 'kensington': 0.055568076806916146, 'ugly': -0.14753627590275076, 'ice': -0.0335815143148868, 'console': -0.15944607214708573, 'initial': -0.02856666961159308, 'pcs': -0.093850081070795, 'isolation': -0.09445962485034565, 'inserts': -0.08060947964199841, 'canal': 0.12185227450685364, 'commute': -0.003348341212342219, 'j': -0.12728411644073126, 'train': -0.140860233482882, 'rail': -0.04412316733974173, 'classical': -0.024891782262561606, 'earbuds': -0.1571739121094299, 'mdr': -0.10332816217044404, 'ex71': -0.010403791493723141, 'attenuation': -0.04412316733974173, 'superb': 0.14741251865414084, 'partnership': -0.04412316733974173, 'etymotic': -0.04412316733974173, 'evident': -0.1117498181210685, 'rock': 0.21307774121253475, 'grunge': -0.04412316733974173, 'sonys': -0.09004748160692227, 'muddy': -0.16634438703764687, 'seal': -0.0802680912491895, 'balanced': 0.00012798990298146728, 'string': 0.02970884556415818, 'rei': -0.07606793797981937, 'jacket': 0.0917737979329225, 'length': -0.20625504515081813, 'symmetric': -0.04412316733974173, 'strung': -0.04412316733974173, 'neck': 0.11200901164240401, 'solid': 0.24943701999098203, 'fragile': -0.10590119701086982, 'er6': -0.04412316733974173, 'replaceable': 0.014073392997342317, 'eartips': -0.04412316733974173, 'tightly': -0.02516038834226843, 'ridiculous': -0.21586785728554198, 'bulky': 0.2240990401014715, 'portability': 0.15285384211756656, 'comfort': 0.06877342741123275, 'sadly': -0.3673326448872869, 'flanged': -0.03844072564157122, 'canals': 0.014185602515456761, 'smaller': -0.12269383492300664, 'altec': 0.22142123825594792, 'lansing': 0.13231942431873872, 'documentation': -0.10881863152310789, 'alteclansing.com/inmotionearphones': -0.04412316733974173, '404': -0.04412316733974173, 'visit': -0.022361392939991353, 'pathetic': -0.04412316733974173, '1/19/2006)i': -0.04412316733974173, '1/10/2006': -0.04412316733974173, 'suit': -0.029764187355686877, 'impression': 0.03649720404965366, 'deeper': -0.04565586105448965, 'reproduction': -0.002195269433234802, 'defect': -0.07881180805297501, 'backlight': -0.2228075313321533, 'shortcoming': -0.20123479842186554, 'early': 0.039845323394826465, 'handspring': 0.01814881740949803, 'visors': -0.05734128580269274, 'neutral': -0.09452647928468418, 'expedited': -0.05734128580269274, 'ps': 0.0024290310915069937, 'grey': -0.15335490374397906, 'result': -0.27389875214912646, 'assume': -0.2361933846584295, 'repeated': -0.06048019455334831, 'beginnings': -0.030935306430917745, 'ends': -0.12228137503459946, 'sentences': -0.030935306430917745, 'installation': 0.08678948725341702, 'server': -0.1138004220373991, 'froze': -0.09093710735653221, 'waited': -0.005794344028947377, 'gentleman': -0.008214826596250403, 'whose': -0.0565111559819824, 'explained': -0.011615275615636352, 'win': 0.09574198861429105, 'encountered': -0.03753767005046682, 'insisted': -0.008214826596250403, 'typically': 0.07132322138889742, 'encounter': 0.08422671195902152, 'incompatible': -0.19490178018729495, 'exit': 0.00031103081649774806, 'freezing': -0.09252683082445122, 'disabling': -0.008214826596250403, 'firm': 0.10329979204788108, 'advised': -0.08591399187994642, 'contact': -0.10510070248065445, 'configuration': 0.15798012292005273, 'fellow': 0.03389384163748138, 'supervisor': -0.008214826596250403, 'fluent': -0.008214826596250403, 'situation': 0.03723657496571803, 'analysis': 0.06830488488938903, 'frozen': -0.008214826596250403, 'occurred': -0.08128243032398734, 'coincidently': -0.008214826596250403, 'exact': -0.17731176844028357, 'freeze': -0.21830451078440005, 'expressed': -0.008214826596250403, 'skepticism': -0.008214826596250403, 'towards': 0.07526908398970071, 'explanation': 0.12764602899120472, 'reassured': -0.008214826596250403, 'emphasis': -0.008214826596250403, 'symptoms': -0.008214826596250403, 'understood': -0.008223181830777379, 'technician': -0.10428025383060019, 'bill': 0.12022877437922934, 'repairing': -0.106192002448152, 'stunned': -0.03726297713261585, 'intuitively': -0.03726297713261585, 'heaven': -0.03337279911577666, 'aaron': -0.03726297713261585, 'neville': -0.03726297713261585, 'limb': -0.03726297713261585, 'severing': -0.03726297713261585, 'zz': -0.03726297713261585, 'tomorrow': -0.11323039885416664, 'demanding': -0.04891722800563795, 'retailers': 0.0894359840074419, 'protector': 0.011009255932989176, 'dlp': 0.002690828653061636, 'strip': 0.03126361962686046, 'purple': -0.02708230041743877, 'neato': -0.09772733700092615, 'mill': -0.09772733700092615, 'independent': -0.08531920929412032, 'circuitry': -0.15610071907125173, 'minimize': -0.09772733700092615, 'subwoofer': -0.3188795129914905, 'thinkpad': -0.09363822731137497, 'thereafter': -0.01028331040825392, 't60': -0.03084993122476174, 'hey': 0.2071835611464406, 'universal': -0.08880778461708778, 'introduced': 0.004900428623395023, 'smarttip': -0.01028331040825392, 'lenovo': -0.01028331040825392, 'manufacturers': 0.05015962454163106, 'someday': -0.01028331040825392, 'brick': 0.12315184229393282, 'lightweight': 0.08500244520121462, 'sleek': 0.02220834120233138, 'reviewrs': -0.01028331040825392, 'brilliant': -0.015093092715754342, 'tangled': 0.023414875608109058, 'igo': -0.02056662081650784, 'volts': -0.01028331040825392, '120': -0.04452386988340977, 'capability': 0.09316816148135817, 'delay': -0.06430246740608281, 'supporting': -0.1896445792339978, 'unforgivable': -0.01028331040825392, 'shocked': -0.05230773966711187, 'highs': -0.04672942183442462, 'leading': -0.07616337996362331, 'tinny': -0.1869768821677721, 'brassy': -0.08468424778000745, 'voices': -0.08469398601897044, 'virtually': -0.10017298055319707, 'blanks': -0.0706452463638852, 'coaster': -0.030504624620238178, 'speeds': 0.001955582246866266, 'unsatisfactory': -0.12388750128764307, 'attempt': 0.03784984647078468, 'kx': 0.05344957081545069, 'tg6700b.': -0.05775267412503211, 'layout': -0.13567689830172489, 'answering': -0.031134709396584685, 'silly': -0.03598416137090566, 'chintzy': -0.05775267412503211, 'wonderful': 0.11919345214990537, 'responsibility': -0.0217497824332515, 'seller': 0.03250695728703129, 'consolidating': -0.06426046469798453, 'regularly': -0.060932634433232186, '890': -0.06426046469798453, 'disappointment': -0.3020848749810934, 'remotes': -0.06411381690203966, 'simpler': -0.0016871026338004494, 'fooling': -0.15709558368462775, 'key': -0.2955997367619208, 'presses': -0.11508372692351548, 'basic': 0.119216465462761, 'juggle': -0.06426046469798453, 'sit': -0.024306145128619967, 'cypress': -0.07805660090552616, 'at2lp': -0.05203773393701744, 'rc42': -0.05203773393701744, 'western': -0.0894452615159309, 'housing': -0.02125535859746664, 'drive-': -0.02601886696850872, 'housings': -0.02601886696850872, 'void': -0.03921914259500631, 'backed': -0.03602637777622251, 'pickup': -0.08089744269068036, 'regardless': -0.07378466375211457, 'cs50': -0.08089744269068036, 'invariably': -0.08089744269068036, 'building': 0.07245468240761466, 'exposed': -0.11566254737609884, 'door': -0.057443779945498825, 'cubicles': -0.08089744269068036, 'lots': 0.12578152092300537, 'deteriorates': -0.08089744269068036, 'gear': -0.07918071494271639, 'specifically': -0.12721457393480115, 'ntsc': -0.008620476596395693, 'ieee': 0.004841159700387106, 'common': -0.25117707980332304, 'ohm': -0.008620476596395693, 'hookup': 0.04618335260265058, 'ineffective': -0.02449121446625188, 'shielding': -0.06733666740683447, 'conductance': -0.008620476596395693, 'wreck': -0.008620476596395693, 'grounding': 0.0077645525862846485, 'chromatic': -0.008620476596395693, 'aberrations': -0.008620476596395693, 'skin': 0.08838427503292315, 'tones': -0.013374921230120325, 'blotching': -0.008620476596395693, 'grays': -0.008620476596395693, 'highlights': -0.032493057739143946, 'murky': -0.008620476596395693, 'shadows': -0.008620476596395693, 'noisy': 0.04461444926427595, 'reds': -0.017240953192791387, 'balance': 0.027297131638163163, 'impedance': 0.01742499424097328, 'mismatching': -0.008620476596395693, 'bleeding': -0.008620476596395693, 'patterns': -0.017240953192791387, 'offers': 0.04211335263651167, 'ar': -0.008620476596395693, 'belden': -0.008620476596395693, 'viewsonics': 0.010075515898168382, 'vast': -0.03271308942793239, 'sharper': 0.04202478307974043, 'grainy': -0.08710951321000662, 'lighting': -0.06193176213447375, 'focus': -0.10093750513668197, 'colors': 0.1576593375992161, 'disappear': 0.03713225706761891, 'weighs': -0.055690229273529845, 'pound': -0.0965948780278743, 'warm': 0.08603362848576523, 'motion': -0.1336676240551802, 'wrt54gl': -0.014335463337819036, 'dummies': -0.014335463337819036, 'foot': -0.024702603969412668, 'cat5e': -0.014335463337819036, 'patch': 0.08181858338021149, 'hook': -0.005387250626409693, 'surfed': -0.014335463337819036, 'changes': 0.07229500903735164, 'de': 0.11932108280132663, 'activating': -0.014335463337819036, 'welcome': -0.014335463337819036, 'password': -0.011319488177789187, 'freaked': -0.014335463337819036, 'unimpressed': -0.014335463337819036, 'young': -0.021483322322425436, 'amused': -0.014335463337819036, 'laughing': -0.014335463337819036, 'logon': -0.014335463337819036, 'gripe': 0.0317930982927062, 'rom': -0.02623475311760964, 'installing': 0.24491187729712507, 'deep': -0.22802133395752078, 'wizard': 0.05175419815089592, 'norm': -0.014335463337819036, 'stinks': -0.036237653431479465, 'wusb54gc': -0.014335463337819036, 'primarily': 0.07939765500294049, 'unannounced': -0.014335463337819036, 'existent': -0.3000220138219992, 'rude': -0.04653290219701052, 'provides': 0.16064328512527806, 'tungsten': -0.07023375393656185, 't5': 0.014763324228771425, 'helpful': -0.06870272229078707, 'redirect': -0.016068973434453467, 'planned': 0.01847807889532894, 'county': -0.016068973434453467, 'beach': 0.16368431889914925, 'mid': 0.08021879878371323, 'sentence': -0.016068973434453467, 'giving': 0.038480869404029096, 'stuttering': -0.016068973434453467, 'francisco': 0.0745397681413168, 'oakland': -0.013054706786826397, 'friend': 0.022114102173077826, 'bear': 0.010816188653698629, 'mind': 0.003731039784347119, 'acknowledged': -0.052269099164546876, 'solutions': 0.0011564899060739404, 'summary': -0.07656577470680521, 'mapquest': -0.03213794686890693, 'directions': -0.0716083256063438, 'finished': 0.019776111055555892, 'teleatlas': -0.0011531581820385683, 'producers': -0.0011531581820385683, 'gui': 4.123591635157164e-05, 'graphic': 0.04289276007626746, 'interacts': -0.0011531581820385683, 'art': 0.08757888257405175, 'presentations': -0.06537726451535117, 'viewed': 0.038686944851283045, '3d': 0.022270927385793587, '2d.': -0.0011531581820385683, 'icon': -0.02846874642423254, 'driven': -0.08997837343858588, 'irritants': -0.0011531581820385683, 'vie': -0.0011531581820385683, 'ignores': -0.02536053257162194, 'desires': 0.02873918753600128, 'annoyingly': 0.1216187598110685, 'bluetooth': 0.0443294308276033, 'informing': -0.0011531581820385683, 'interstate': -0.012452767117844038, 'highway': -0.20449416457219238, 'plain': 0.013595803573818819, 'mapping': -0.1612659543670408, 'certainly': 0.04897738942735566, 'irritant': -0.0011531581820385683, 'effort': -0.03626737850528633, 'appealing': 0.021052215753543452, 'casual': 0.07823278219548589, 'newest': 0.08315828322013963, 'allowance': -0.0011531581820385683, 'travelling': -0.14289962100545542, 'ending': -0.0011531581820385683, 'begin': -0.2018532322820037, 'anew': -0.0011531581820385683, 'omission': -0.0011531581820385683, 'wisconsin': -0.0011531581820385683, 'minnesota': -0.0011531581820385683, 'create': -0.060514854188349725, 'idiosyncracies': -0.0011531581820385683, 'anomalies': -0.0011531581820385683, 'bugs': 0.05518127364248302, 'computes': -0.0011531581820385683, 'tends': -0.10024642971621249, 'prefer': 0.12261918405670078, 'expressways': -0.0023063163640771366, 'preferences': 0.015262141191541807, 'metro': -0.08868231132136883, 'laced': -0.0011531581820385683, 'convoluted': -0.0011531581820385683, 'creating': 0.020778128636497833, 'alternative': -0.08336937648499942, 'logical': 0.09270443001493024, 'tedious': 0.020068544611838122, 'clueless': -0.0011531581820385683, 'guessing': 0.06387417406517826, 'grasping': -0.0011531581820385683, 'straws': -0.0011531581820385683, 'interrupting': -0.0011531581820385683, 'contradicting': -0.0011531581820385683, 'condition': 0.18173780704528203, 'claiming': 0.16816760269773315, 'party': 0.10941536088004054, 'repackaged': -0.0011531581820385683, 'insulting': -0.0011531581820385683, 'lying': 0.07598361958985474, 'eyes': -0.11970658773946181, 'deceiving': -0.0011531581820385683, 'unanswered': -0.0011531581820385683, 'riding': -0.01600505247202268, 'introduce': -0.03167806620285171, 'history': 0.00030979383516036203, 'possesing': -0.0011531581820385683, 'contempt': -0.0011531581820385683, 'customers': -0.07554849328128994, 'marginally': -0.0011531581820385683, 'abandon': -0.0011531581820385683, 'jerr': -0.0011531581820385683, 'obtain': -0.06463914878054265, 'tend': -0.223169913440132, 'proof': -0.00385181294096847, 'nonsense': -0.01895411342612967, 'nut': -0.0050539081215957874, '269': -0.0050539081215957874, 'mobile': -0.11647463293146518, 'axims': -0.0050539081215957874, 'wm5': -0.0050539081215957874, 'bumps': -0.14013148793481273, 'touratech': -0.11794432853686868, '60c': -0.11794432853686868, 'falling': -0.22562544808566562, 'ground': -0.19901000256395762, 'rental': -0.01235265486444754, 'trolling': -0.01235265486444754, 'valley': -0.0242627532233313, 'portable': 0.12901650355875757, 'ique': -0.035155192531563004, '3600': -0.08646858405113289, '700': 0.1490444535551201, 'unique': -0.020319509298009613, 'palmpilot': -0.02470530972889508, 'integrated': -0.006534830681854307, 'palmv.': -0.01235265486444754, 'awkward': -0.05478809230881579, 'chore': -0.01235265486444754, 'synced': -0.01235265486444754, 'fitfully': -0.01235265486444754, 'irritating': -0.1252382587898216, 'seamlessly': -0.01235265486444754, 'address': -0.23552743515490884, 'entered': -0.030024851100785104, 'section': -0.05860510623039596, 'cleanly': -0.01235265486444754, 'retype': -0.01235265486444754, 'graffiti': -0.01235265486444754, 'letters': 0.017302771627170657, 'drawn': -0.01235265486444754, 'backward': -0.00213959211495607, 'engaged': 0.045378688483405365, 'recognizes': -0.06045613585444506, 'satellites': 0.09287320314293034, 'sky': -0.040540318973255336, 'randomly': -0.021835632738652747, 'navigation': 0.17145520931088593, 'orders': -0.06305886914235019, 'deployed': 0.0029251156422470596, 'windshield': 0.17814243788701625, 'except': -0.07180424961665194, 'propped': -0.01235265486444754, 'passenger': 0.029772461399325732, 'seat': 0.03891152015310524, 'dashboard': 0.06372190045707024, 'navigate': -0.0911171038908831, 'acts': 0.13885818690708357, 'stupid': 0.0009255780307782503, 'dangerous': -0.029889307167195574, 'unhelpful': -0.022546659773722152, 'simulate': -0.01235265486444754, 'storm': 0.05807913941908877, 'ottawa': -0.01235265486444754, 'ui': 0.005265338108198877, 'inconsistent': -0.01235265486444754, 'arbitrary': -0.01235265486444754, 'entirely': 0.06971767652441266, 'imagine': -0.12091364247172116, 'grandma': -0.00038323018352195835, 'atrocious': -0.03959699936037849, 'information': 0.009931388109692282, 'shuts': -0.2284347656016756, 'occasion': -0.0505283240077915, 'apparent': 0.011726870674194543, 'savings': 0.015338839474232108, 'secure': 0.07453913672129123, 'max': 0.05714666139586995, 'california': -0.08831704573400238, 'counties': -0.01235265486444754, 'hostile': -0.03068584218619758, 'fatal': -0.18383762361333403, 'tethered': -0.08889480376522747, 'resting': -0.004390700264442849, 'tradeoff': 0.0048089120712312555, 'implementation': -0.13335095188173962, 'shark': -0.06547998525586626, 'antennae': -0.029606173691547714, 'enjoyment': -0.005202264563208846, 'bathroom': -0.005202264563208846, 'dollar': -0.08587550356337198, '1.50': -0.10796544863367738, 'penny': 0.009488957303818553, 'pric': 0.017200645149888415, '128': 0.09777350793731536, 'wpa': -0.11607138924389462, 'opted': 0.04944998924191542, 'typing': -0.0005003588882344131, 'assure': -0.029311507056853602, 'micro$oft': -0.04766495623109872, 'unaware': -0.0218394016145701, 'patience': -0.07148232317270699, 'favour': -0.025082135812088017, 'disappoint': -0.015287421110744144, 'consistency': -0.015287421110744144, 'carries': 0.01491890145976102, 'dubious': -0.015287421110744144, 'tradition': -0.015287421110744144, 'mn-700': -0.015287421110744144, 'conspiratively': -0.015287421110744144, 'proceeded': -0.015287421110744144, 'functioning': 0.017331706850428633, 'infrastructure': -0.01964172565033917, 'deserve': -0.022506132551815904, 'favor': -0.27173766783484654, 'shoddy': -0.09950796833498403, 'manage': -0.10650339845369276, '20/10': -0.0854817136318218, 'vision': 0.0016743417882894747, 'bestbuy': -0.033991244772768506, '11': 0.012477470842769388, "woudn't": -0.025010846256394173, 'reconnected': -0.025010846256394173, 'intermittently': -0.08302403554536882, 'cutting': -0.09424598238500916, 'afternoon': -0.043615093691886965, 'fire': 0.03186512224149204, 'son': 0.07587538784415875, 'extinguish': -0.04476272727051608, 'flames': 0.10268012013505932, 'mx75': -0.055210654429220615, 'pads': -0.11059656145937177, 'inserted': -0.09301475208399124, 'vibration': 0.0692412435723024, 'sweating': -0.02571939790035586, 'unusually': -0.055210654429220615, 'stiff': -0.07612486603371096, 'consequently': -0.055210654429220615, 'maintains': -0.055210654429220615, 'corkscrew': -0.055210654429220615, 'substantially': -0.14349482912067876, 'slack': -0.055210654429220615, 'ugliest': -0.055210654429220615, 'shade': -0.055210654429220615, 'conventional': -0.010478286038107585, 'lime': -0.055210654429220615, 'annoyances': -0.007116506219384001, 'hunting': -0.02787276543912031, 'awesome': 0.41497671185864443, 'locations': -0.020683409239264528, 'miles': 0.016738933442490504, 'separate': 0.12541301145597197, 'rabbit': -0.02787276543912031, 'misc': -0.02787276543912031, 'popular': 0.10479073214789217, 'adjusting': 0.045860368491306, 'hue': -0.02787276543912031, 'blurry': -0.08305451675063098, 'sooooo': -0.02787276543912031, 'reasonably': 0.18751221900971526, 'o.k': -0.132104481791898, 'powerbook': 0.09822275972017815, 'macbook': 0.016208429219603422, 'saitek': 0.022493499299409664, 'illuminate': 0.006112942563137703, 'keys': -0.16641587286304776, 'embedded': -0.05958548901721872, 'splashed': -0.05958548901721872, 'reducing': -0.16466226832481307, 'harder': -0.2737280442426392, 'fn': -0.05958548901721872, 'compactflash': 0.22818388593299457, 'officejet': -0.02846225839178822, '7130': -0.02846225839178822, 'backwards': -0.008735017012106093, 'amber': -0.02846225839178822, 'cp': -0.02846225839178822, 'updated': -0.025580978642422876, 'cpf': -0.02846225839178822, 'articles': -0.012648229180520231, 'thumbs': 0.06974537382433818, 'dud': -0.05111705252825416, 'cameras': 0.21014166611319476, 'dealing': -0.16571942198854572, 'hassles': 0.016332095190490795, 'tekxon': -0.31851486380483385, 'stressful': -0.0012335580957052812, 'quot;this': -0.020109717101476493, 'lt;whatever>."': -0.0012335580957052812, 'famous': -0.011007040385868935, 'auction': -0.011007040385868935, 'gas': -0.03188161492265114, 'injected': -0.10762104706219092, 'plated': -0.15988432847948839, 'shielded': -0.10762104706219092, 'analog': 0.10274305234134702, 'swinging': -0.15319752609130516, 'equipment': 0.19234713259486416, 'backedup': -0.0633977121585767, 'treid': -0.0633977121585767, 'regonize': -0.0633977121585767, 'redail': -0.04898726604294565, 'uniden': 0.15988063388997295, 'fluke': -0.06906493778822465, 'updating': -0.07494971917392734, 'downloading': -0.021297924845638114, 'nero': -0.11242941129001209, 'plays': 0.03908661682152946, 'layer': -0.1291933789651235, 'jumping': -0.05276963266013258, 'pixellated': -0.04817730395535014, 'unwatchable': -0.01644194368733423, 'dissapointing': -0.07694102421043388, 'sping': -0.07694102421043388, 'selector': -0.07694102421043388, 'thick': 0.15422966273090902, 'rigid': -0.07694102421043388, 'tension': 0.0077572405461580046, 'e.g.': 0.04398340113117582, 'twisted': -0.141848855829748, 'odd': 0.010749029365321874, 'angles': -0.034916981706065095, 'slip': -0.15689959479067522, 'depth': -0.0645981740854438, 'compensate': 0.027801739982760237, 'traction': -0.07694102421043388, 'angled': -0.036109780167536694, 'pin': -0.06811500920970619, 'corded': 0.20878123164407503, 'land': -0.11365454017475143, 'forth': -0.02135001630716059, 'disconnecting': 0.11996980903157728, 'sporatic': -0.03788484672491716, '1.20': -0.03788484672491716, 'dealbreaker': -0.03788484672491716, 'logged': -0.05989018935403787, 'administrator': -0.056267307466673626, 'willing': -0.013085255454073057, 'expose': 0.0011404875249042953, 'skype': -0.012386378723265087, 'drops': -0.2717405040545695, 'dismal': -0.09260324302200997, 'acknowledging': -0.06398537604801954, 'reinstalling': -0.0643702665999881, 'vosky': -0.09739065933484632, 'dph-50u': -0.06398537604801954, 'hurry': -0.12510811524686694, 'carried': -0.03304418189131618, 'grief': -0.0032993634676701574, 'periods': -0.010473165118334784, 'scrolls': -0.0059108712924712875, 'replug': 0.03567942840613372, 'unexceptible': -0.0032993634676701574, 'wondering': 0.00897291419104661, 'laser': -0.27429759256075836, '6000': 0.2603529429669691, 'mx': -0.0248638806133553, 'body': -0.0887912859783286, 'pointer': -0.23306877317679836, 'flickers': -0.041645863809800905, 'disappears': -0.041645863809800905, 'mx320': -0.041645863809800905, 'microsot': -0.041645863809800905, 'tigerdirect': -0.12555655085826475, 'payed': -0.1196223533158735, 'buy.com': -0.041852183619421626, 'rikaline': -0.029605997172679227, '6010': -0.029605997172679227, 'evertime': -0.029605997172679227, 'initializing': -0.029605997172679227, 'embarrassed': -0.1823192088519337, 'friends': 0.09207290783861426, 'complaining': 0.13543608546153763, '---i': -0.02458356204844899, 'sp2': -0.21002753579344474, '---signal': -0.012291781024224496, 'peripheral': -0.012291781024224496, 'annoyance': -0.11275399564931998, "c'm": -0.03687534307267351, 'special': 0.1768193528355172, 'insert': -0.0758486579877531, 'sticker': -0.055690844343065156, 'readers': 0.10211650380175402, 'deducted': -0.02458356204844899, '---told': -0.012291781024224496, 'mom': -0.03744733338276708, 'connects': 0.08580792613673026, 'firewall': -0.22735899518044275, 'deduct': -0.04916712409689798, '---stupid': -0.012291781024224496, 'supports': 0.09956855855656623, 'hexidecimal': -0.012291781024224496, 'passwords': -0.012291781024224496, 'alphabet': -0.012291781024224496, 'z.': -0.012291781024224496, '---slow': -0.012291781024224496, 'impatient': -0.012291781024224496, "---can't": -0.012291781024224496, 'hibernate': -0.012291781024224496, 'disables': -0.012291781024224496, '--overall': -0.012291781024224496, 'alongside': -0.015302786413500725, 'wrt54gs': -0.04867150636819205, 'bars': -0.015302786413500725, 'flaky': -0.045601031699603674, 'firmwares': -0.015302786413500725, 'rectify': -0.015302786413500725, 'dice': 0.11016888836100402, 'dropout': -0.015302786413500725, 'v3': 0.06665844911529158, 'toy': -0.051044682701808286, 'ilove': -0.07867784577501806, 'abanded': -0.07867784577501806, 'brudle': -0.07867784577501806, 'hits': -0.031016390110772344, 'alive': -0.07674086895683271, 'safe': -0.06625456582939587, 'becuse': -0.07867784577501806, 'die': 0.011851403878142942, 'wast': -0.07867784577501806, 'ginger': -0.07867784577501806, 'newborn': -0.07867784577501806, 'kittin': -0.07867784577501806, 'refurbs': -0.07975979928961814, 'testing': -0.05005967438576918, 'biggest': 0.021625936853974233, 'fade': 0.0066737994381463606, 'walk': -0.056020361319264196, 'bandwidth': -0.3015854095371139, 'snapping': 0.023709883595815426, 'popping': 0.006833062173517148, 'marginal': 0.03645710877180761, 'cents': 0.29956003857832647, 'wallmart': -0.045192101941775864, 'broadcast': 0.12186357622625225, 'gain': -0.0641373124531423, 'dials': -0.03012806796118398, 'variable': -0.01882471251376987, 'disguised': -0.01506403398059199, 'medium': -0.03268576215713833, 'real': -0.006863960605515663, 'garbage': -0.12891024782247043, 'improving': -0.0035264336262469526, 'roof': -0.03887416467000487, 'cabling': -0.04726342642740229, 'preamp': -0.019944690123661707, 'adjustable': -0.02266772656745658, 'uhf': -0.01506403398059199, 'vhf': -0.01506403398059199, 'assuming': 0.03871246208411303, 'advise': -0.08208963925430443, 'antennas': 0.03444085990860613, 'forced': -0.10859152236766981, 'brings': 0.0925550846484281, 'kenned': -0.03794140369551885, 'presentation': -0.22335879907200729, 'view': -0.1568809569874497, 'document': -0.029064972258217744, 'presenter': -0.09274364037813876, 'pgup': -0.02318591009453469, 'pgdown': -0.02318591009453469, 'notes': 0.08376614892375135, 'neat': 0.11608845263869562, 'trick': 0.0735737832700387, 'discovered': 0.10050255875114393, 'pres': -0.02318591009453469, 'b': 0.07120172763531132, 'beem': -0.06330293682192671, 'somethimg': -0.06330293682192671, 'expansion': -0.031110669065642138, 'missled': -0.06330293682192671, 'recieved': -0.11623994997683537, 'bussiness': -0.08217371690996038, 'hang': -0.1306105383519991, 'manufacturing': 0.020884837243084087, 'louder': -0.05414378936142178, 'interview': -0.04169508713568541, 'regular': 0.10212558995340032, 'hamstrung': -0.04169508713568541, 'taping': -0.04169508713568541, 'squeal': -0.04169508713568541, 'feedback': -0.2071885325209877, 'unampflied': -0.04169508713568541, 'plugs': 0.1961106608593738, 'thrilled': 0.045852957252770804, 'improves': -0.13838536711692795, 'loops': -0.1628618296226487, 'men': -0.08316072354346035, 'females': -0.08316072354346035, 'hanger': -0.13307439708276356, 'placed': -0.015647086115181136, 'adhesive': -0.1052548079725082, 'removable': 0.0735710073298699, 'permanent': 0.0901800995666174, 'mounting': -0.03292780138943764, 'mechanical': -0.029129601310822525, 'miss': 0.07503383679865586, 'greatly': -0.15524714329167974, 'hopes': -0.23955137315457026, 'treo': -0.1691445539088218, '650': 0.13748522983318268, 'verified': -0.15849882589624706, 'attaching': -0.004503198767105274, 'pure': -0.01575573000426229, 'booklet': -0.0018079599482052986, 'outlined': -0.014676196494572476, 'configure': -0.052617032713437616, 'hp-1200': -0.008747453302364037, 'contraption': -0.015114565221215636, 'somehow': -0.1317666891585879, 'corrupts': -0.008747453302364037, 'beast': -0.008747453302364037, 'phenomenal': 0.02352902586536836, 'debug': -0.008747453302364037, 'steer': -0.186111802977465, 'detecting': -0.04800792896325149, 'wifi': -0.04999363272713572, 'tot': -0.04800792896325149, 'active': 0.033006857483666226, 'cancels': -0.04800792896325149, 'detection': -0.12039346274827303, 'thanks': 0.021924620624817724, 'magellen': -0.0991778430345158, 'created': -0.027723005393236775, 'roadblock': -0.0991778430345158, 'traffic': -0.0991133217890276, 'longtime': -0.034881221894819917, 'wacom': 0.03299544224417582, 'intuos': -0.14267851968733408, 'tablets': -0.034881221894819917, 'capabilities': 0.022242719834165058, '2.5ghz': -0.034881221894819917, 'graphire': -0.10960983255284915, 'leaves': 0.07813419167791656, 'desired': 0.06885394176010917, 'lies': -0.0040730353401927195, 'responsiveness': -0.06976244378963983, 'thinner': -0.00035983080633298633, 'grip': 0.152170088879814, 'toothpick': -0.034881221894819917, 'manipulate': -0.025801295760037406, 'effectively': 0.08017309714538108, 'durability': 0.17209907523963122, 'additionally': -0.020172377920516033, 'molded': -0.10680365761984356, 'whenever': -0.1828952241052977, 'selecting': 0.05981738559415711, 'behaves': -0.034881221894819917, 'attractive': -0.008525458655679899, 'responsive': 0.00461303687653918, 'deficiencies': 0.0005044333323393806, 'mercedes': -0.06138459385389826, 'honda': -0.034881221894819917, 'civic': -0.06976244378963983, 'mileage': -0.020963070555277456, 'benz': -0.034881221894819917, 'general': 0.003556679399793878, 'pink)is': -0.00548683765071443, 'discharge': -0.03594962527039225, 'backlighting': -0.052509075505203125, 'hitting': -0.07848482558807894, 'dies': -0.2922267378135607, 'gladly': 0.07090762027001908, 'thet': -0.00548683765071443, 'realistically': -0.00548683765071443, 'evaluate': -0.07019670464073892, 'dig': -0.0011117934437930885, 'discman': -0.00548683765071443, 'clued': -0.00942845657953757, 'transpod': -0.039863171890384824, 'advising': -0.00942845657953757, 'unusual': -0.02729518976676406, '192kbps': 0.00032635074914901625, 'aac': 0.023375349762974843, 'encoded': 0.06375582500969962, 'sub': 0.10439991765649462, 'woofer': 0.0656656986895166, 'thumping': -0.13539201606909632, 'stoped': -0.06769600803454816, 'meaning': -0.08090342751295879, 'scan': -0.16185964848130627, 'scansnap': -0.10211760899756928, 'minus': 0.13841475812032783, 'jams': -0.06054323687487106, 'feeds': -0.08189037545941451, 'incredible': 0.09697768630250288, 'rollers': -0.029497299454235643, 'grade': -0.21552303678306872, 'copier': -0.029497299454235643, 'paper': 0.13008342299777115, 'thankful': -0.04808510830959928, 'organizing': -0.08376582222799336, 'sizes': 0.048602370953957655, 'weights': -0.0536519310471598, 'adf': -0.245816951225876, 'flatbed': -0.06330005820249482, 'scanner': 0.004158211952064169, 'baby': 0.08839071427164419, 'jam': -0.1441536570854447, 'consume': -0.040945187729707254, 'reorganizing': -0.040945187729707254, 'misfeeds': -0.040945187729707254, 'clearing': -0.20450783248952537, 'deeply': -0.0014879467648724358, 'documents': 0.1481383174102684, 'lifting': -0.12345228700984527, 'lid': -0.05978012589083408, 'glass': 0.07435489757079451, 'creates': 0.12549197209451918, 'pitched': -0.01379504134487362, 'flow': -0.17232280117139812, 'anywayer': -0.17232280117139812, 'sorely': -0.19836711041783175, 'dissappointed': -0.06094514416991605, 'flowing': -0.17232280117139812, 'abysmal': -0.13029135143164994, 'nonuse': -0.01866084782271989, 'redial': 0.05020596347933514, 'friendly': 0.21748342370172538, 'requested': -0.061996081489557056, 'refused': -0.05247373169940811, 'exhibiting': -0.01866084782271989, 'traits': -0.01866084782271989, 'letting': 0.020717926920064442, 'smash': -0.0061442856147613505, 'hammer': -0.059856277122910195, 'decreased': 0.024185554939802296, 'gambling': -0.01746607243602818, 'cells': -0.01746607243602818, '2255': -0.01746607243602818, 'suckered': -0.09614929992766165, 'cassettes': -0.16159046036596567, 'ratio': -0.008335014968106342, '2002': -0.16703472784972567, 'chevy': -0.029725860958988364, 'tahoe': -0.05945172191797673, 'eject': -0.24779784329971144, 'harley': -0.05945172191797673, 'davidson': -0.029725860958988364, 'fltri': -0.029725860958988364, 'cpa-9c.': -0.029725860958988364, 'simulated': -0.05945172191797673, 'fools': -0.046309330670360756, 'auto': 0.12363892693197472, 'troubleshooting': -0.13473925161067296, 'generic': 0.029243082430800597, 'rf': 0.02179808117888238, 'normally': 0.17808612250317488, 'gpss': -0.016937932180925635, 'trex': -0.016937932180925635, 'staring': 0.004591749322213428, 'tree': 0.0329192201135676, 'overcast': -0.016937932180925635, 'seattle': 0.07031835195110937, 'enemy': -0.016937932180925635, 'mediocre': 0.03352076480864963, 'waas': 0.009934549960147334, 'claimed': 0.05734428260570769, 'accuracy': 0.11582406815740401, '5.5': -0.04487732910945503, 'indicated': -0.018057073187668776, 'traveling': 0.19484645415522225, '350': -0.031260904531681, 'crossed': -0.04045970650026125, 'conducted': -0.018057073187668776, 'placing': 0.024652957395734063, 'unobstructed': -0.018057073187668776, 'motionless': -0.018057073187668776, 'moved': -0.08910805131892023, 'quarter': -0.018057073187668776, 'reporting': -0.018057073187668776, 'inaccurate': -0.018057073187668776, 'lane': 0.02478433711732587, 'hwy': -0.03611414637533755, 'tacoma': -0.018057073187668776, 'wa': 0.021093471839146838, '38th': -0.018057073187668776, 'compass': -0.12540554410224866, 'accurate': 0.2577988833550402, 'readings': -0.018057073187668776, 'understandable': -0.0005803222122136774, 'determine': -0.018057073187668776, 'mounted': 0.09661571004252686, 'bike': 0.01712658611250692, '5.3': -0.018057073187668776, 'ounces': 0.03817233253697573, 'wal-mart.com': -0.018057073187668776, 'sells': 0.060450357604445594, 'tempermental': -0.06515930212091382, 'mostly': -0.11521862042716674, 'nightmare': -0.057272289658092834, 'archaic': -0.06515930212091382, 'minues': -0.06515930212091382, 'staggering': -0.06515930212091382, 'receiving': -0.09488410106468172, 'amazingly': -0.15116074004860863, 'throughout': 0.0526349692712588, 'floors': -0.07382195153292682, 'startup': -0.05588269823137503, 'cruzer': 0.0923141746165596, 'u3': 0.05873939986614339, 'compelled': -0.08814787520159717, 'negative': 0.2608256076502429, 'mere': 0.014263285161373618, 'higlhly': -0.04741194058488146, 'hidrance': -0.04741194058488146, 'liability': -0.08774941609519461, 'educational': -0.04741194058488146, 'institution': -0.04741194058488146, 'wher': -0.04741194058488146, 'responsibel': -0.04741194058488146, 'sessions': -0.006016394347022865, 'launch': -0.04854767459946041, 'preloaded': -0.024273837299730205, 'anti': -0.014331706153060024, 'virus': -0.024273837299730205, 'intruder': -0.024273837299730205, 'preventing': -0.1250955969600977, 'ticked': -0.024273837299730205, 'lets': 0.09593814201353817, 'uninstaller': 0.005978818087137701, 'offending': -0.024273837299730205, 'uninstall': -0.037958197656607524, 'cheesy': -0.008689550961478942, 'cluttering': -0.011266089507081137, 'scratching': 0.17804303814540728, 'tearing': -0.011266089507081137, 'spare': 0.29721775544948537, 'closing': -0.06720476033515149, 'e.': -0.12294820383349617, 'noticeable': -0.08694275034403633, 'gap': -0.10815229554614392, 'latch': -0.14142593539968343, 'unexpectedly': -0.10138904330245233, 'purse': -0.043744661148897954, 'brief': -0.0871921790992937, 'destructive': -0.04172669193947353, 'toddler': 0.06763059761117968, 'backing': 0.05437481973443388, 'dru-710a': -0.04172669193947353, 'attemped': -0.04172669193947353, 'lockups': -0.04172669193947353, 'film': 0.005802767592348601, 'physical': -0.07166172102531168, 'obtained': -0.057872523548723194, 'writes': 0.0024726344541157845, 'premium': 0.10720257645319743, 'successful': -0.10947787089754744, 'recordings': 0.059590887395391576, 'asin': -0.04172669193947353, 'b0001mku4s': -0.04172669193947353, 'recognition': 0.012902777184570516, 'amplifier': 0.14200714395012468, 'yay': 0.11516336115874944, 'hum': -0.15972913566879152, 'witht': -0.029296480705845767, 'eh': -0.029296480705845767, 'rec': -0.0133802948638907, 'funny': -0.14260222677406525, 'labtec': -0.013625275312625485, 'equivelent': -0.029296480705845767, 'dialog-301': -0.058592961411691534, 'whopping': 0.005063575805698052, 'chrystal': -0.029296480705845767, '185': -0.029296480705845767, 'wedding': -0.03846975425646063, 'readable': -0.1230521529960458, 'corrupted': -0.19479415326835892, 'flashcard': -0.08733544518611143, 'faith': 0.09632387855537797, 'ruin': -0.0002694922297592078, 'malfunctioned': 0.010652605454364009, 'ebay': 0.02374723150210498, '782c': -0.013514673228551917, 'dvd+rw': -0.013514673228551917, 'googled': -0.013514673228551917, 'amazed': 0.11047404402279354, 'struggling': 0.01806841381032368, 'excuse': -0.14408204112004366, 'mr': -0.013514673228551917, "clean'ing": -0.013514673228551917, "skipdr'ing": -0.013514673228551917, 'fundamental': -0.013514673228551917, 'badly': 0.1305494930671947, 'person(s': -0.013514673228551917, 'responsible': -0.025282770860161487, 'usual': -0.05754976425949347, 'corporate': -0.052400653177323134, 'practice': -0.12803784919189787, 'promoted': -0.11406501523217887, 'ladder': -0.013514673228551917, 'inflict': -0.013514673228551917, 'quid': -0.013514673228551917, 'quo': -0.013514673228551917, 'agreement': -0.013514673228551917, 'quot;product"': -0.019978396936133996, 'posted': -0.1392255579008127, 'freezes': -0.24825962309533015, 'combined': -0.056210816804434856, 'quot;defective"': -0.019978396936133996, 'firmly': 0.047555325317607984, 'belief': -0.008233926943405065, 'quot;dirty"': -0.019978396936133996, 'agrees': -0.019978396936133996, 'drawer': 0.0055650127253281095, 'jiggling': -0.019978396936133996, 'fixes': -0.02927388602192501, 'dime': -0.019978396936133996, '@&*!"': -0.019978396936133996, 'millionaire': -0.019978396936133996, 'arrogant': -0.019978396936133996, 'criminal': -0.019978396936133996, '~i': -0.06855743332082162, 'mvsv3': -0.06855743332082162, 'm': 0.043900522210275614, 'pioneer': -0.011910588148709593, 'v555': -0.06855743332082162, 'wega': 0.015235935592905802, 'kv-27fs12': -0.06855743332082162, 'naked': -0.06855743332082162, 'regading': -0.06855743332082162, 'visual': -0.05458452125594713, 'sharpness': -0.06855743332082162, 'composite': -0.21416388183028212, 'component': 0.06851860005074249, 'video~~': -0.06855743332082162, 'alledged': -0.06855743332082162, 'ultra': 0.13621183637572462, 'benchmark': -0.06855743332082162, 'rattling': -0.049148196887130534, 'darn': -0.015294564751206979, 'cowon': -0.0001590028560606256, 'iaudio': -0.0001590028560606256, 'dealt': -0.0001590028560606256, '800': -0.0551287714505434, 'submit': -0.0001590028560606256, 'ticket': -0.07951047459014737, 'electrogalaxy': -0.0046196516306855765, 'officially': 0.031618957947885565, 'arranged': -0.09843964690256211, 'wound': -0.023536548673305305, 'deleting': -0.08719814376720444, 'hte': -0.01696443811135072, 'assigned': -0.01696443811135072, '192.168.0.10': -0.01696443811135072, '.0': -0.01696443811135072, 'subnet': -0.01696443811135072, 'configured': 0.012127470956441011, 'existing': -0.024115285283240327, 'picking': 0.11996110709003989, '.10': -0.01696443811135072, 'incorrectly': 0.042216989380484245, 'specificy': -0.01696443811135072, 'ssid': -0.01696443811135072, 'swearing': -0.01696443811135072, 'wirelessly': -0.0068999331082579395, 'aggrevation': -0.019820644975235318, 'plague': 0.005737827953035698, 'everytihing': -0.021855117141141828, 'banging': -0.009044705145873395, 'legacy': -0.038448397960578536, 'sounblaster': -0.07689679592115707, 'compatibiltiy': -0.038448397960578536, 'bios': -0.1463627409735652, 'chipsets': -0.038448397960578536, 'yada': -0.07689679592115707, 'aforementioned': -0.08311317865584249, 'employee': -0.0029858355091219053, 'conflicts': -0.05576899437266039, 'systems': 0.0672921822229501, 'expired': -0.01794766541226769, 'jamming': -0.01757388331729097, '2005': -0.061745618871816246, 'marks': -0.04907085938310311, 'fedex': -0.008689913996286472, 'materials': 0.034665884594922175, 'fourth': -0.04705832048411606, 'mutlifunction': -0.008689913996286472, 'tooth': -0.21428842944699605, 'kbd': -0.03571473824116586, 'acceptably': -0.126560467755695, 'mainly': -0.08489257275258169, 'mighty': -0.08492256218972022, '610': -0.058829407899374894, 'ergonomic': 0.1469120088150441, 'proper': -0.16898433841610583, 'shortcut': -0.029414703949687447, 'utter': 0.01482774620052289, 'touch': 0.06552355899125308, 'cream': 0.0059291809724809075, 'secondly': -0.078889438895914, 'widgets': -0.029414703949687447, 'f12': -0.029414703949687447, 'allows': 0.4220188289543249, 'browsers': -0.029414703949687447, 'thirdly': -0.029414703949687447, 'logitechs': -0.14478329695203784, 'comforting': 0.036578810852421796, 'cursor': -0.21597688970713935, 'osx': -0.046861295121142385, 'adjustability': -0.013737355315855172, 'compared': 0.27387182402023896, 'gasp': -0.029414703949687447, 'horrendous': -0.029414703949687447, 'clatter': -0.029414703949687447, 'nonexistant': -0.029414703949687447, 'shallow': -0.058829407899374894, 'texture': -0.029414703949687447, 'uniform': -0.0006339895254746572, 'raised': 0.01608552368800576, 'dots': -0.007421070742913131, 'asdf': -0.029414703949687447, 'jkl': -0.029414703949687447, 'rows': 0.0632397622449748, 'typist': -0.020922722550335764, 'unforgiveable': -0.029414703949687447, 'sin': 0.09138017600211484, 'transforms': -0.029414703949687447, 'peck': -0.029414703949687447, 'typer': -0.029414703949687447, 'visually': -0.002065464609914438, 'superior': 0.022651914936034648, 'requirement': 0.038106377735602666, 'deserves': 0.011025234080462753, 'outlets': 0.06994378606689956, 'nwb': -0.046575081238475737, 'remodeling': -0.023287540619237868, 'at&t': -0.023287540619237868, 'comparing': -0.050437155874486814, 'colored': 0.02121937578488771, 'shirts': -0.03196104349660859, 'reverse': -0.10135493989893704, 'adhere': -0.11780007403435623, 'flake': -0.02478804432553302, 'chunks': -0.05414507823185004, 'admit': 0.019307675947175376, '140.00': -0.1627063481523465, '1989': -0.1459894715266021, 'woot.com': -0.022098373072090016, 'transmission': -0.13259148381112396, 'hissing': 0.11676096184143107, 'granted': 0.07922344350027169, 'crazy': 0.0036958626595121704, 'configurable': -0.022098373072090016, '~15': -0.022098373072090016, 'terribly': -0.17884567323413073, 'cracked': -0.2202734390630709, 'material': 0.011213455557885641, 'zeros': 0.085559846459782, 'played': 0.005472461823994289, 'tapes': -0.0886321527803349, 'vhs': 0.028622044485958238, 'dlink': -0.0661956902124083, 'hah': -0.0019746142269822455, 'uninitiated': -0.0019746142269822455, '.ftp': -0.0019746142269822455, 'ap': 0.11554324334119319, 'manager': 0.1031227176128417, 'addresses': -0.055053187467000504, 'dwl-2100ap': -0.003949228453964491, 'gibberish': -0.0019746142269822455, 'involved': -0.13628632387653983, 'dope': -0.0019746142269822455, 'blah': -0.005923842680946729, 'assessment': -0.0019746142269822455, 'confusing': -0.2206075737358469, 'moniter': 0.018531702431086237, 'cool': 0.19564230852433348, 'whe': -0.007649120895020619, 'nat': -0.007649120895020619, 'angry.i': -0.007649120895020619, 'hassle.i': -0.007649120895020619, 't': 0.14992256391902148, 'ic': -0.1536402629259733, 'bad.the': -0.007649120895020619, 'adapter.so': -0.007649120895020619, 'trinidadian': -0.007649120895020619, 'work.i': -0.007649120895020619, 'family': 0.09384764086199888, 'relocated': -0.010475510418096324, 'intouch': -0.010475510418096324, 'grandmother': -0.015958893753167717, 'lifecam': -0.010475510418096324, 'tag': 0.026520574091160445, 'pentium': 0.0026469935229743204, 'processor': 0.009729794634055615, 'ram': 0.10861346487816283, 'askes': -0.010475510418096324, 'uninstalled': -0.045329660854550126, 'following': -0.0716673632635668, 'stepwise': -0.010475510418096324, 'tools': -0.05633906854867385, 'updates': 0.0155207201600308, 'crashed': -0.16975096344061813, 'hoped': 0.14515197782134387, 'conectivity': -0.010475510418096324, 'recognizing': -0.06087572987704529, 'assurity': -0.010475510418096324, 'investing': 0.016020655306114382, 'earlier': 0.12655486667365698, 'assurance': -0.14151130128516234, 'checking': -0.04940008737229995, 'kb': -0.09454197800934507, 'cpu': 0.04030588542714619, 'usage': 0.09449421827097952, 'lo': -0.13508442603565213, 'behold': -0.13508442603565213, 'task': 0.1154577752843739, 'dutifully': -0.046557709708861784, 'resources': 0.06669854811701563, 'overrated': -0.09405159537012077, 'snug': 0.03587459596000763, 'circuit': 0.003202276482196095, 'reduction': -0.23533354454810385, 'thise': -0.037046009441339595, 'ammount': -0.037046009441339595, 'mowing': 0.013683777590958702, 'lawn': 0.013683777590958702, 'flying': 0.09348020618183871, 'cancelleation': -0.037046009441339595, 'drum': -0.020825482075166178, 'pairs': -0.06138376059998434, 'heaphones': -0.037046009441339595, 'cabinet': -0.031178785573630675, 'bag': 0.04984322608289044, 'morning': -0.044202401259565566, 'pulled': 0.023365871030943935, 'earbud': -0.06823894442488154, 'peice': -0.031522641683912576, 'squeeze': -0.031093115712278973, 'improperly': -0.037046009441339595, 'noone': -0.037046009441339595, 'filter': -0.12418896613074704, 'kids': 0.13187745032830242, 'ambiant': -0.11750429701527468, 'cranked': -0.15170878566698215, 'painfully': -0.1396370802897612, 'inline': -0.07873332347288502, 'triangle': -0.11750429701527468, 'clip': 0.0011665587717871585, 'naturally': -0.041183112479917246, 'expert': 0.1021247702434406, 'bode': -0.11750429701527468, 'avaya': -0.018563399263530362, 'roadwarrior': -0.018563399263530362, 'worker': -0.018563399263530362, 'gn': -0.018563399263530362, 'netcom': -0.018563399263530362, 'listener': 0.050159425083365204, 'airplane': -0.055823632496142785, 'humming': -0.1807700428979347, 'chatted': -0.018563399263530362, 'dragon': -0.03303821534215993, 'tests': -0.11514334947220685, 'passed': -0.18856062394504738, 'cheapo': -0.016266162411164, 'mike': 0.012973863922379569, 'antonline': -0.0441285334840143, 'stonewalls': -0.0448777046938034, 'zen': 0.0579093442459358, 'approved': -0.001325805838049048, 'unsigned': -0.001325805838049048, 'warnings': -0.028240381965988926, 'groovy': -0.001325805838049048, 'graphics': 0.05421566196833776, 'accommodate': 0.07738074595991651, 'speedbooster': -0.005430891292175148, 'procedure': 0.02157259559837152, 'reinstall': -0.11487842586787865, 'connectivity': 0.11627730981789096, 'wanna': -0.005430891292175148, 'f5d7010': -0.005430891292175148, '54mbps': -0.09308017337195747, '108': -0.0912434521132833, 'http://www.amazon.com/exec/obidos/tg/detail/-/b000085bcx/qid=1125546516/sr=8-5/ref=pd_bbs_unbuck_5/002-4891207-7082407?v=glance&s=electronics&n=17259': -0.005430891292175148, 'typed': -0.03335864848174338, 'yard': 0.0007795759872797465, 'gravity': -0.03335864848174338, 'lower': -0.09836498494654544, 'sinks': -0.03335864848174338, 'downward': -0.056812570403522396, 'pointing': 0.08414927189078723, 'toward': 0.13985074350092486, 'leash': -0.0455038790663366, 'fence': -0.0455038790663366, 'pet': -0.0455038790663366, 'responsible--': -0.0455038790663366, 'cheap--': -0.0455038790663366, 'volunteer': -0.0455038790663366, 'animal': -0.0455038790663366, 'shelter': -0.0455038790663366, 'guardianship': -0.0455038790663366, 'pets': 0.04137534378516856, 'doodad': -0.0455038790663366, 'fighting': 0.0069353167985470214, 'bait': -0.05062759697283057, 'lab': -0.030585622124712355, 'happen--': -0.0455038790663366, 'include': -0.0537233683997774, 'encrypts': -0.059228389266780576, 'fingerprint': -0.19068201184299413, 'steal': -0.05528858817957558, 'contain': 0.078211013985738, 'admin': 0.03556562498344176, 'privledges': -0.059228389266780576, 'videos': 0.0772459643119614, 'codec': -0.043344675015026216, 'vix': -0.043344675015026216, 'unreadable': 0.006055434861495419, 'utility': 0.01575643393269621, 'upgraded': 0.007451907334939827, '1.06': -0.043344675015026216, 'triggering': -0.043344675015026216, 'communication': 0.03943178832751376, 'edt': -0.043344675015026216, 'atlantic': -0.043344675015026216, 'vote': -0.043344675015026216, 'addressing': -0.08150225909213603, 'scheme': -0.043344675015026216, 'default': 0.24213269179402286, 'beyond': 0.09430499669061858, 'resellers': -0.17768437897042666, 'outlining': -0.17768437897042666, 'cf': 0.19156963054173434, '4300': -0.12106248418473542, '-another': -0.17768437897042666, 'kingston': 0.20575669562344495, 'forgot': 0.036097951086085586, 'glowing': -0.1566735053410429, 'unstable': -0.16262643749979788, 'footprint': -0.12527058266690042, 'inches': -0.20417982399109927, 'folded': -0.06786433251847322, 'eat': -0.10288897798782377, 'subaru': -0.04236630420401061, 'ashtray': -0.04236630420401061, 'park': -0.035806274240809725, 'mountains': -0.005967108210553838, 'hills': -0.04236630420401061, 'mph': -0.04236630420401061, 'resulting': 0.025144836257593353, 'stopping': 0.018640535833218615, 'shakes': 0.06635448600589433, 'wobbles': -0.04236630420401061, 'lest': -0.04236630420401061, 'knock': -0.05940933909084578, 'stolen': 0.08279950645890363, 'griffin': -0.016999341213005583, 'reccommend': 0.02570964070904756, 'manually': -0.09900813877769862, 'finger': -0.026731747602947994, 'wiggle': -0.09263856005636492, 'adjusts': -0.032066180390069234, 'fingernail': -0.09263856005636492, 'catch': -0.06720928070948708, 'ridge': -0.09263856005636492, 'smashing': -0.09263856005636492, 'dcs-900w': -0.005177060122616788, 'craped': -0.005177060122616788, 'fifth': -0.02325065905884961, 'resolve': -0.05647274836206232, 'drill': 0.008197691180442961, 'thanksgiving': -0.023123502236343605, 'graduate': 0.009355275198880847, 'student': -0.022759911815254632, 'majoring': -0.023123502236343605, 'suggestion': -0.08372483898246116, 'dealer': -0.026635756953123813, 'drastically': -0.29529322373191846, 'credited': -0.21134986670386086, 'credit': -0.20806118313038652, 'account': -0.19437446372503767, '52': -0.09144223119236011, 'anybody': 0.12087105903638147, 'answered': -0.13933996080667554, 'convincing': -0.08035838152357712, 'truth': -0.1287431433433373, 'slower': 0.16264571834497932, '1.0': 0.07969222099735561, '32bit': -0.10427534942173962, '45min': -0.10427534942173962, 'extreme': -0.0786698646600834, 'iii': -0.153783196030467, 'aware': -0.20864719006309734, 'sustained': -0.025044156580683347, 'upload': -0.001255596512370881, 'caps': -0.11963794783200091, 'ii': 0.19337098800935248, 'slows': -0.025044156580683347, 'tasks': 0.04359020335371669, 'uploading': -0.0751324697420502, 'acting': -0.11811367877529998, 'sparatic': -0.025044156580683347, 'honestly': -0.1657541862016936, '16': 0.12024213060164304, 'pcmcia': -0.06373012700335363, 'praise': -0.025044156580683347, '32': 0.09627867129274312, 'kinda': -0.09524530696475982, 'uploaded': -0.025044156580683347, 'glad': 0.38826435678966503, 'treat': 0.07666976570203476, '19': 0.07954624383446868, 'panel': 0.01753837216612981, 'dongle': -0.033556176452328224, 'wake': -0.01695222266598296, 'ctrl': -0.021129288312982674, 'responding': -0.016778088226164112, 'dug': -0.016778088226164112, 'ancient': -0.006584397081829512, 'quietkey': -0.016778088226164112, 'frankly': -0.08037485766548587, 'behemoth': -0.016778088226164112, 'mice': -0.10288361060689634, 'consolidate': -0.09625243211119766, 'onto': 0.07140899616953487, 'increments': -0.13418597318299783, 'pixels': 0.12288026746082474, 'unbearable': -0.07047397728330583, 'causing': -0.06532736054383408, 'bluetooh': -0.09625243211119766, 'cabe': -0.03986342149463559, 'xbr960': -0.07972684298927118, 'pts1000': -0.03986342149463559, 'owner': 0.007125553884894666, 'examination': -0.03986342149463559, 'produces': 0.06963879389885692, 'finest': -0.03986342149463559, 'pitch': -0.008937294461753427, 'priced': -0.03998033486820692, 'somethinfg': -0.03986342149463559, 'mislead': -0.014203150040268408, '11010': -0.03986342149463559, 'repositionable': -0.17369411799950907, 'tab': -0.09017474678875476, 'snaps': -0.03368018130160107, 'rendering': -0.22328034730351856, 'shout': -0.17369411799950907, 'transmitters': 0.04942422718961448, 'remained': 0.016715341282665136, 'broadcasting': -0.07297936786240926, 'nyc': 0.013921649957845266, 'unused': -0.013739501292066419, 'icarplay': -0.09323155217548991, 'givben': -0.0978358998059223, 'tuning': 0.019814746059249287, 'heartbeat': -0.04512142759433863, 'expedition': -0.09778266191098393, 'drown': -0.09778266191098393, 'misbehave': -0.09778266191098393, 'continual': -0.09778266191098393, 'notorious': -0.012190409991136653, 'thieves': -0.012190409991136653, 'industry': 0.03836476961665552, 'personally': 0.07400163006123196, '1,600': -0.012190409991136653, 'dcr': -0.046945849215709975, 'pc5': -0.012190409991136653, 'cdx': -0.012190409991136653, 'c90': -0.012190409991136653, '1,200': -0.012190409991136653, 'ambiguous': -0.012190409991136653, 'statement': -0.0010900396066411801, '~$780': -0.012190409991136653, 'handycam': -0.012190409991136653, 'unfortunate': -0.012190409991136653, 'testament': -0.012190409991136653, 'widely': -0.012190409991136653, 'publicized': -0.012190409991136653, 'qc': 0.0668735157187867, 'fiasco': -0.012190409991136653, '1,000': 0.01684744719450567, 'insult': -0.02374999848025912, 'indeed': 0.06893573790595556, 'blatant': -0.012190409991136653, 'ahold': -0.024380819982273306, 'literally': 0.029195041785603157, 'beforehand': 0.0648184252641489, 'seriously': 0.053344220048077866, 'gag': -0.012190409991136653, 'coverage': 0.10195596398819767, 'whoever': -0.05808677411147627, 'ashamed': 0.03744983217332036, 'liable': 0.017805046870286532, 'damages': -0.012190409991136653, 'losses': -0.012190409991136653, 'belong': 0.0015472418080062103, 'unfriendly': -0.012190409991136653, 'prison': -0.012190409991136653, '161.80': -0.003104017925004812, 'warrant': -0.003104017925004812, 'confirmation': -0.003104017925004812, 'providing': -0.011434370065725397, 'faltered': -0.003104017925004812, 'earplugs': -0.15777604295517345, 'lanyard': 0.03864262260246187, 'persuaded': -0.04908017050384078, 'pessimistic': -0.04908017050384078, 'quietly': -0.04908017050384078, 'cu': -0.0082436574786063, 'terribl': -0.04908017050384078, 'disability': -0.02839935066671558, 't33': -0.02839935066671558, 'clerk': -0.02839935066671558, 'smiled': -0.02839935066671558, 'surely': -0.01977833772534812, 'begins': 0.042500158868045125, 'distort': 0.04581422619915801, 'distorts': -0.05564952526871651, 'volumes': -0.008380838268066257, 'impossibly': -0.01802621399824073, 'tight': -0.08416037803094249, 'discomfort': -0.01802621399824073, 'underdash': -0.02001511546683918, 'cupholder': -0.02001511546683918, 'glove': -0.09578263898926952, 'compartment': 0.023293179935058417, 'suffice': 0.007625739189081337, 'installer': -0.02697067217399294, '700p': -0.02001511546683918, 'north': 0.06784697786812029, 'carolina': -0.011706077457462924, 'misnamed': -0.02001511546683918, 'streets': 0.09124470959595342, 'exits': -0.02001511546683918, 'referred': -0.04174956921272338, 'lacked': 0.012503284433564585, 'critical': 0.04795309806175755, 'heading': -0.02001511546683918, '101': -0.02001511546683918, '101n': -0.02001511546683918, 'approaching': -0.02001511546683918, 'complex': 0.18255130207019427, 'interchange': -0.02001511546683918, 'actively': -0.06126459739543264, 'basis': -0.09212364487778842, 'lists': -0.016134986246675195, 'fingers': 0.02968848717380784, 'areas': 0.077824429225261, 'familiar': 0.10346937987138528, 'unfamiliar': 0.03886146697768031, 'territory': -0.02001511546683918, 'unclear': -0.26876259446516804, 'useles': -0.2620044394577984, 'moment': -0.04187515855746796, 'ordeal': -0.03420977326102085, 'sorting': -0.03420977326102085, 'outlook': -0.12165106546181328, 'ipaq': -0.09183845820286189, 'foreshadowing': -0.03420977326102085, 'fun': 0.05765341934652097, 'techno': 0.07782787835053002, 'handheld': -0.010627506097395989, 'essence': -0.010736871414686263, 'downloads': 0.037660031785235394, 'handhelds': -0.010736871414686263, 'rings': -0.039631343597184475, 'water': 0.1883571958118007, 'terminate': -0.050075459471460984, 'insists': -0.07596823982478666, 'microwave': -0.04635796129891215, 'flashy': -0.006002178274385596, 'conceived': -0.049220314597864606, 'sites': -0.008712377242264063, 'featured': -0.07045337310065637, 'tg5576': -0.049220314597864606, 'underwhelmed': -0.049220314597864606, 'pansonic': -0.049220314597864606, 'representative': -0.09253936978721816, 'assured': -0.06586209934039867, 'ringtones': -0.03491142260685531, 'wallpapers': -0.049220314597864606, 'monthly': -0.07750187379804839, 'lieu': -0.0030904784021970897, 'worn': -0.04635301942490817, 'edison': -0.049220314597864606, 'struck': -0.049220314597864606, 'custom': 0.01539754384966918, 'dinky': -0.049220314597864606, 'hole': -0.0760205846891535, 'keypad': -0.037875708280213374, 'regional': -0.017785930630064877, 'coding': -0.017785930630064877, 'busily': -0.017785930630064877, 'principle': -0.040674127623607524, 'secretely': -0.017785930630064877, 'catridges': -0.017785930630064877, 'snotty': -0.017785930630064877, 'us$': 0.02885999288859245, '75': 0.1530638052325491, 'sixth': -0.05568168032912077, '-koss': -0.04520328926888298, 'spark': -0.04520328926888298, '09/15/2006': -0.09040657853776596, '-apple': -0.04520328926888298, 'viewer': 0.004196194875472886, 'preceding': -0.04007814011220438, '20-$30': -0.0787033779536569, 'edges': -0.0656432262932053, 'enhance': -0.021319851082754106, 'reduced': -0.16688575225852167, 'aaa': 0.001142038040254173, 'saver': -0.09713886593008093, 'alkalines': -0.11241581616683313, 'legend': -0.3372474485004998, 'heavier': -0.16600056297948068, 'towns': -0.11241581616683313, 'shorelines': -0.11241581616683313, 'detail': 0.03387223556394651, 'drain': -0.07896397805527425, 'cell': 0.12764038299883548, 'deadline': -0.035889226394751526, 'ripoff': -0.05391777623772599, 'tinkering': 0.06988448395591655, 'actiontec': 0.02351050821653289, 'antonline.com': -0.001043565001211923, 'cars': 0.180368323264848, 'curved': 0.014429143418081755, 'sloping': -0.029867935833560406, '1988': -0.029867935833560406, '300e': -0.029867935833560406, 'daewoo': -0.029867935833560406, 'lanos': -0.029867935833560406, 'freaks': -0.017158857387731503, 'armour': -0.029867935833560406, 'protective': 0.07969835779744877, 'coating': 0.14258365050336616, 'jolts': -0.029867935833560406, 'experiment': -0.029867935833560406, 'daughter': 0.021001850213681776, 'powerline': -0.06964972616590309, 'etherernet': -0.09325539424554706, 'module': -0.18651078849109412, 'overheat': -0.09325539424554706, 'detector': -0.022460258664185915, 'remain': 0.0399538581314576, 'ibook': -0.007582336894932679, 'fruitless': -0.1072150330637128, 'struggle': 0.024945795826802057, 'step': -0.15313799965337554, 'hack': 0.05227162150219293, 'ibooks': -0.007097496638399022, 'compensation': -0.06743752527603687, 'strongly': 0.04940672804403311, 'drink': -0.0068449074312105325, 'coffee': -0.13804277028221176, 'thermal': -0.05575038887424011, 'carafe': -0.07957186642940066, 'coffeemaker': -0.053047910952933874, 'hotter': -0.06353115237013482, 'fresher': -0.026523955476466937, 'tasting': -0.026523955476466937, 'cup': 0.2002047357145665, 'capresso': -0.10609582190586775, 'mt-500': -0.026523955476466937, 'leaked': -0.009037205287472873, 'slightly': 0.2598142484538191, 'taste': -0.10005594305400606, 'japanese': -0.026523955476466937, 'zojirushi': -0.07957186642940066, 'leaks': -0.026523955476466937, 'mechanically': -0.026523955476466937, 'reuseable': -0.026523955476466937, 'mesh': -0.023025378105904003, 'filters': -0.026523955476466937, 'grounds': -0.026523955476466937, 'krups': -0.026523955476466937, 'proaroma': -0.026523955476466937, 'definite': 0.01248923902134046, 'thrown': 0.04591994077439501, 'concerned': 0.02514712458427071, 'beans': -0.026523955476466937, 'basics': -0.026567887658053412, '\x1athe': -0.053135775316106824, 'mm': 0.17932780717480692, 'padding': 0.11928440036947076, 'modifications': -0.009078854618806444, '\x1aat': -0.026567887658053412, 'slider': -0.09774270999728582, '\x1aafter': -0.026567887658053412, 'mute': 0.05196049989176443, '\x1ai': -0.026567887658053412, 'portion': -0.0186390681798165, '\x1ain': -0.026567887658053412, 'matched': 0.014451018765223046, 'observations': -0.025922646094488782, 'exceptionally': -0.04820007159426779, 'chord': -0.04025701633023317, 'robust': 0.032761088422835656, 'rests': -0.06690056574372912, 'beneath': -0.04025701633023317, 'accidentally': 0.01884113445458854, 'extraordinary': -0.014157512033307756, 'desire': 0.019067346198092715, 'foremost': -0.030897747507628942, 'uncomfortably': -0.04025701633023317, 'resorted': -0.04025701633023317, 'airspace': -0.04025701633023317, 'frame': 0.10108163289041129, 'cooler': 0.0227491340732644, 'insulated': 0.04694966775177475, 'muffs': -0.04025701633023317, 'chatting': -0.04025701633023317, 'summer': 0.09681631301044986, 'exhaustion': -0.04025701633023317, 'y': 0.08028910424551854, 'splitter': -0.004213798650744283, 'crawl': -0.04025701633023317, 'disconnect': -0.009390247045271262, 'splitters': 0.02531758200525459, 'logitek': -0.04025701633023317, 'onboard': -0.05092993497277381, 'output': 0.2617680227479349, 'beam': -0.16102806532093267, 'earpieces': -0.017127490954562223, "5'10": -0.04025701633023317, 'uglier': -0.04025701633023317, 'feals': -0.05051314049898443, 'palmone': -0.025087156699745695, 'tx': -0.15903041401357118, 'comments': 0.023719217857567962, 'comparison': -0.005301425796396787, 'lexus': -0.025087156699745695, 'concept': -0.2574712218501208, 'doubling': -0.046502612571775626, 'intriguing': -0.025087156699745695, 'realty': -0.025087156699745695, 'sobering': -0.025087156699745695, 'meaningful': -0.025087156699745695, 'ins': -0.025087156699745695, 'und': -0.025087156699745695, 'serves': 0.05622365784654905, 'purposes': 0.11673940394627154, 'acquire': 0.1029649835363911, 'oem': 0.10559236390000017, 'precise': 0.14797719459910963, 'nav': 0.025958671959531682, 'phoenix': -0.025087156699745695, 'az': 0.015578919063331892, 'neighborhood': 0.0531542847409459, 'seven': -0.08701731732287175, 'freeways': -0.025087156699745695, 'exist': -0.025087156699745695, 'yards': -0.012262751731312574, 'intersection': -0.025087156699745695, 'clumsy': -0.025087156699745695, 'soft': 0.042505912432913656, 'disrupt': -0.025087156699745695, 'navigational': -0.025087156699745695, 'aid': -0.009389700181596324, 'truly': -0.15716651792966269, 'reality': 0.1779329802782523, 'marketing': -0.1844278458031661, 'poi': -0.0075962096865188605, 'interest': 0.003801861582043707, 'prone': 0.05449271653057663, 'advanced': 0.06535987434303851, 'hints': -0.027416848200984428, 'scrambled': -0.14094507126020347, 'puzzle': -0.053560954196478765, 'h10': -0.23259943985750745, 'subscription': -0.20825166051593463, 'reinstalled': -0.17333599397196608, 'affecting': -0.11629971992875372, 'iriver': -0.044593470861966654, 'desperately': -0.11629971992875372, 'bug': 0.013484168711497387, 'caution': -0.10455583785023866, 'fry': 0.014122219497774223, 'bazillion': -0.010167061194815549, 'initiallize': -0.010167061194815549, 'hawaii': 0.16010833637283794, 'alaska': -0.010167061194815549, 'haha': -0.010167061194815549, 'attach': -0.19000470714418202, 'stands': -0.3766560980219823, 'bose': 0.20465234347127015, 'aftermarket': -0.059111305000854625, 'mazda': -0.13215337574826155, 'f1500': -0.13215337574826155, 'crt': -0.0696682155664563, 'kvm': -0.12330612859138375, 'signs': -0.0688655249837073, 'horror': 0.002688369794789248, 'stories': 0.002688369794789248, 'overlay': -0.03841449914603474, 'associated': -0.04777205360364764, 'w': 0.02233818390786555, 'lcds': 0.031487084426375996, 'responds': 0.06001933580367606, 'flicker': 0.02931482394195282, 'refresh': -0.0467085921915657, 'monitors': -0.17909125595928374, 'printers': 0.12807426422836213, 'height': 0.12307484821982109, 'upper': -0.09814426525885184, 'tilt': 0.0756281895041061, 'jaggies': -0.03841449914603474, 'refesh': -0.03841449914603474, 'era': -0.06314386879472672, 'blacking': -0.03841449914603474, 'vga': -0.012726053177828987, 'nonstandard': -0.026392928895884245, 'cluster': -0.026392928895884245, 'arrows': -0.026392928895884245, 'context': -0.026392928895884245, 'multimedia': -0.04415150061809159, 'screwing': 0.04273910676747773, 'employer': -0.029735294223908113, 'choice': 0.10302890181247366, 'winxp': -0.11585891417839284, 'dreading': -0.026392928895884245, 've': 0.11353784034566397, 'eventual': -0.05670741986163022, 'xm': -0.157679816563585, 'john': 0.07410534263399393, 'quaility': -0.004641085109465059, 'locally': 0.185533867329609, 'lexmark': -0.2278225503508104, 'bells': -0.02255600372455709, 'whistles': -0.02255600372455709, 'epson': 0.18752618800084941, 'dull': -0.07225489298771019, 'mild': -0.07528690597986692, 'brown': -0.07528690597986692, 'haze': -0.07528690597986692, 'passably': -0.07528690597986692, 'fortune': -0.13276287695916972, 'inks': 0.08532328668079539, 'boots': -0.07035829037709355, 'speechless': -0.07035829037709355, 'compatable': 0.06669984574786275, 'promises': -0.10967931232566325, 'anycom': -0.03169225456024409, 'lynksys': -0.05740487497761799, 'finish': -0.07482987703380167, 'conflicting': -0.09064644547236583, 'oppinions': -0.05740487497761799, 'atleast': -0.16425831328318632, 'um': -0.07767272763254314, 'peace': -0.08043449458129724, 'gadgets': -0.0614849214175777, 'jointed': -0.07767272763254314, 'freak': -0.07767272763254314, 'nature': -0.08385923542042864, 'comfortably': 0.051503582925526335, 'dust': -0.033275911024345524, 'magnet': -0.03894266540555471, 'encrusted': -0.07767272763254314, 'lint': -0.06241652975430689, 'sneak': -0.03979064489871158, 'sticks': -0.04282742980421518, 'dna': -0.07767272763254314, 'sample': -0.10447581260392058, 'paradise': -0.07767272763254314, 'forensic': -0.07767272763254314, 'experts': -0.13084195032173046, 'paranoid': -0.05627738740510087, 'scratches': 0.2794717492331367, 'shiny': 0.02626918105732995, 'sansa': 0.03487879530898005, 'morals': -0.017722076175452305, 'guys': 0.08206519276453, 'sister': 0.06266391807897316, 'concern': -0.019493975771092124, 'businesses': 0.033372146249553584, 'intermittent': -0.16129079026687115, 'problems-': -0.02237130620339922, 'staticy': -0.02237130620339922, 'blocky': -0.04923660694150645, 'apex': -0.0032106821810863003, 'resaon': -0.07653221855877193, 'sport': 0.03699495450355392, 'dive': -0.07653221855877193, 'abused': -0.09584079849936634, 'swear': -0.0799942744488254, 'loathe': -0.07653221855877193, 'usability': -0.21073887978237843, 'source': -0.03428109059831367, 'lugging': -0.03322187212004143, 'compressed': -0.04705369880403241, 'usb1': -0.07495628290760152, 'worry': 0.15541547426439664, 'rush': -0.07495628290760152, 'taped': -0.057404293456119866, 'italian': -0.06924861481599558, 'specification': -0.01695586799031813, 'thickness': -0.13849722963199115, 'turns': 0.06847697433552165, '3.5': -0.01846883598891931, 'amazo': -0.06924861481599558, 'organize': -0.2580072177315282, 'adore': -0.065720540843162, 'spacing': -0.053729676698694884, 'anytime': 0.024536526824730225, 'hugely': -0.03812944337229196, 'overpriced': -0.14019333920133997, 'sorts': -0.07663691731861082, 'annoyed': -0.14136082158901933, 'belt': 0.09348709845044186, 'jogging': -0.11399632497697991, 'activity': 0.03536052088813843, 'flex': -0.1131836662907893, 'biceps': -0.0215211834499044, 'constrict': -0.0215211834499044, 'muscle': -0.0215211834499044, 'slips': -0.0215211834499044, 'waistband': -0.0215211834499044, 'sweatpants': -0.0215211834499044, 'remains': -0.0215211834499044, 'treadmill': -0.0215211834499044, 'stays': 0.1423214690717416, 'advertise': -0.05225412021553331, 'world': 0.2966763264236463, 'destined': -0.0215211834499044, 'forgotten': 0.0840901175460702, 'whilst': -0.020748252713446613, 'problmes': -0.020748252713446613, 'roll': 0.1488236645512437, 'distinct': -0.005477657154575595, 'buzzing': -0.06881434206794897, 'gracious': -0.005477657154575595, 'c01u': -0.04871138078130568, 'witih': -0.04871138078130568, 'ableton': -0.04871138078130568, '10.4.7': -0.04871138078130568, 'macbookpro': -0.04871138078130568, 'scratch': -0.0647488245493071, 'lag': 0.1423000787104336, 'distracted': -0.04871138078130568, 'builtin': 0.0026343477585268698, 'centrino': 0.020580024643090795, 'enbale': -0.06900329012019574, '108mbps': -0.03790029583640386, 'reproduce': 0.01674952951009186, "coudln't": -0.06900329012019574, 'enable': 0.008111761628729248, 'g.': -0.023335420413445884, 'bout': -0.06900329012019574, 'wpc54gx': -0.06900329012019574, 'h3': -0.07272771391187002, 'indestructable': -0.02424257130395664, 'square': 0.0019191870032117956, 'crown': -0.08872982588146114, 'loosens': -0.02424257130395664, 'earpads': -0.02424257130395664, 'wobbly': -0.02424257130395664, 'stalks': -0.02424257130395664, 'shapes': -0.02424257130395664, 'bummer': -0.02424257130395664, 'components': -0.09652866536206078, 'impressive': 0.12519450916912195, 'translates': -0.03369356278902351, 'functionality': 0.13690337672480118, 'schedule': 0.06446269911523028, 'readily': 0.0896680778496059, 'keystrokes': -0.09578692001377072, 'reverting': -0.03369356278902351, 'accessed': -0.02520176949405775, 'involves': -0.007495907319922934, 'trait': -0.011755723103107525, 'scientific': -0.03369356278902351, 'atlanta': -0.21146480565687334, 'vastly': 0.048104112774372834, 'pricetag': -0.03369356278902351, 'relatives': -0.03369356278902351, 'steering': 0.07989580298969476, 'sad': -0.12803148947224752, 'study': -0.18263022639160886, 'natural': 0.14803116734882818, 'slowed': -0.05953965486971512, 'wears': -0.05953965486971512, 'emergencies': -0.11455003892482134, 'continue': -0.12477870338383677, 'maintain': -0.06780532321996113, 'sofware': -0.031836574960752685, 'scanning': -0.11805683352532897, 'parameters': -0.06953277119386118, 'sided': -0.015685029427882642, 'definitively': -0.031836574960752685, 'scans': 0.04536556861345791, 'ages': -0.031836574960752685, 'observed': -0.031836574960752685, 'modes': 0.0094078758794094, 'soho': -0.031836574960752685, 'troubleshoot': -0.0031392662659190935, 'savvy': -0.08722099223156182, 'folds': 0.050932940116899736, 'packing': 0.01377130223822964, 'feeder': 0.025129430311929667, 'indicates': 0.024263257952809043, 'platform': -0.10067179159777494, 'trasnfer': -0.09038124552854603, "wasen't": -0.054516314375077674, 'picutered': -0.054516314375077674, 'hinges': -0.09471380538599533, 'fold': -0.09278967655055206, 'warp': -0.054516314375077674, 'headband': 0.22809196017204716, 'massive': 0.04189654092652264, 'cushioning': -0.013754113900656702, 'funky': -0.041684806963249436, 'styling': 0.03717665285174821, 'mattered': -0.041684806963249436, 'fate': -0.041684806963249436, 'gamble': -0.021520594489346682, 'central': -0.009614879186415128, 'missed': -0.061829075848793755, 'handled': -0.04717299295686206, 'released': -0.1575168893001272, 'zipper': -0.046340029950127676, 'doubled': -0.14957896398252618, 'pinched': -0.10337193812110256, 'dim': -0.10337193812110256, 'calculator': 0.03785707346950446, 'trash': -0.013216871500774831, 'struggled': -0.009435307753353913, 'firing': -0.016032777521532444, 'digits': -0.016032777521532444, 'rpn': -0.040720560877883165, 'devotee': -0.040720560877883165, 'hps': -0.040720560877883165, '11c.': -0.040720560877883165, 'horribly': -0.02016354524847947, 'entries': -0.040720560877883165, 'bust': -0.040720560877883165, 'wobble': -0.040720560877883165, 'absent': -0.040720560877883165, 'jvc': -0.12726274679684701, 'ha': -0.07305725869516108, 'fx55v.': -0.07305725869516108, 'array': -0.07305725869516108, 'offerings': -0.04067438363120308, 'daunting': -0.07305725869516108, 'jplug': -0.07305725869516108, 'shure': 0.04141153947435874, '500': -0.06166814184628923, 'distributed': 0.0030987561626494293, 'warranties': -0.08806149075625787, '119': -0.010933547868576993, '499': -0.010933547868576993, 'girl': -0.010933547868576993, 'tricky': 0.07507372557305783, 'bulb': -0.03280064360573113, 'saving': 0.07528303717829464, 'red': 0.11503107540265134, 'whirls': -0.0640363610083995, 'transmit': 0.1730605241508754, 'dismally': -0.0640363610083995, 'product-': -0.0640363610083995, 'disaster': 0.2390979072204634, '37': -0.06275096384445832, 'mopre': -0.11857007699709042, 'owners': 0.04735228649838361, 'fritz': -0.006897781786642988, 'cs': 0.017089134987694383, 'supported': 0.050644855883628076, 'notable': -0.006897781786642988, 'folks': 0.10991986585127494, 'disposable': -0.0482464227672325, 'commodity': -0.006897781786642988, 'breakdowns': -0.006897781786642988, 'wow': 0.10091193269680433, 'refer': 0.019799759172269317, 'household': -0.04053081212305877, 'nov.': -0.03005866763498946, 'stock': 0.1080495108846991, 'informs': -0.01502933381749473, '29th': -0.01502933381749473, 'anticipated': -0.01502933381749473, 'hill': -0.12315234327059922, 'discouraging': -0.01502933381749473, '201': -0.01502933381749473, '7575': -0.01502933381749473, 'american': -0.02168694666636041, 'metiocracy': -0.01502933381749473, 'relative': 0.051790269936659944, 'adjusted': 0.05050378757301094, 'independently': -0.05664019767453603, 'cancellation': -0.03964271060562245, 'philps': -0.18390704313258355, 'arrange': 0.07915809815162679, 'reconnect': -0.026547133926167515, 'faq': -0.15571907407695712, 'insistent': -0.029734865900812174, 'refurbish': -0.029734865900812174, 'thereof': -0.029734865900812174, 'jumpdrives': -0.023263199390033438, 'jumpdrive': -0.023263199390033438, 'keychain': -0.023263199390033438, 'terk': -0.13297014276047625, 'multiswitch': -0.09916749175296437, '154.00': -0.049583745876482184, 'asap': -0.07858597493596123, 'crapped': -0.049583745876482184, 'protection': -0.14705175700025827, 'pinch': 0.006489895845077906, 'wor': -0.022082646733525307, 'caramel': -0.08068787717041977, 'veiled': -0.08068787717041977, 'indistinct': -0.08068787717041977, 'abundant': -0.08068787717041977, 'stax': -0.08068787717041977, 'superclean': -0.08068787717041977, 'clinical': -0.08068787717041977, 'hd600s': -0.028479835085192588, 'borrowed': -0.012123130488952224, 'w20': -0.08068787717041977, 'describing': -0.06608463021641812, 'auditioning': -0.08068787717041977, 'rare': 0.0034183049063147126, '-small': -0.051470783590550157, '-recording': -0.051470783590550157, '-hold': -0.051470783590550157, '-bugs': -0.051470783590550157, 'corrupt': -0.051470783590550157, 'f***ed': -0.051470783590550157, '-software': -0.051470783590550157, 'recorders': 0.07229024773418338, '-mic': -0.051470783590550157, 'noice': 0.07554460235445197, '-device': -0.051470783590550157, '-a': -0.051470783590550157, 'ds-2200': -0.051470783590550157, 'smokes': -0.051470783590550157, 'ironic': -0.05441455400492817, '4.99': 0.007247351433691531, 'matching': -0.04940773394564622, '3.99': -0.05441455400492817, 'fw': -0.05441455400492817, 'blackberry': -0.05621479148724455, 'ma': -0.05621479148724455, 'tons': -0.04523579321996316, 'inserting': 0.03277635554109879, 'everyday': 0.19277057658193847, 'fuse': -0.051513931979731524, 'blown': 0.010568137814893195, 'relatively': 0.0873508317207771, 'roadtrip': -0.08044782966515047, 'drama': -0.051513931979731524, 'regard': 0.05019369128431135, 'vehicle': -0.0012762689428938681, 'million': -0.1981343049102825, 'translate': -0.0280572295977322, 'equalizer': 0.054766771103902774, 'bless': -0.051513931979731524, 'conditions': 0.08680234986866292, 'favorite': 0.1699197382123131, 'equally': 0.1276226485685224, 'recharging': 0.0728198120444085, 'behavior': 0.02641788303632715, 'incarnation': -0.08141458067233359, 'tender': -0.040707290336166796, 'resuscitation': -0.040707290336166796, 'iogear': -0.040707290336166796, 'exists': -0.06716188352411553, 'deaths': -0.040707290336166796, 'suddenly': -0.1214028514039879, 'technologically': -0.040707290336166796, 'qa': -0.040707290336166796, 'necessity': 0.0032050336302091808, 'riddled': -0.016091442081742968, 'clauses': -0.016091442081742968, 'exclude': -0.016091442081742968, 'policies': -0.05034509185722617, 'reputations': -0.028480592320819387, 'crutchfield.com': -0.045146704687325886, 'yr': -0.13089569726581057, '29.99': 0.00359522857305428, '59.99': -0.045146704687325886, 'crutchfield': -0.07979188600294795, 'boon': -0.0793657315800118, 'consitently': -0.0793657315800118, 'lips': -0.0793657315800118, 'vo': -0.0793657315800118, 'ad': -0.12880176937657417, 'appolgies': -0.023878839233338212, 'happ': -0.023878839233338212, 'z-5450': -0.09441663396144932, 'points': -0.2419631150770269, 'ease': 0.06107974119664151, 'guarantee': -0.10740719494108913, 'tracking': -0.14559075020700896, 'cyber': -0.18584705217837685, 'searched': 0.23440299384411695, 'amazon.com': 0.23241956244163273, 'rigg': -0.06320020294673961, 'continued': 0.04797538558345782, 'receives': 0.13719880204616236, 'threads': -0.020297391828783793, 'futzed': -0.020297391828783793, 'half-': -0.020297391828783793, 'toooo': -0.020297391828783793, 'plier': -0.020297391828783793, 'recept': -0.020297391828783793, 'verry': 0.027392812044672664, 'vice': 0.0012699615760937758, 'clamp': -0.05008187437974692, 'forcefully': -0.020297391828783793, 'snapped': 0.0022607730205485514, 'securely': 0.12854769572549612, 'delicate': -0.017943935811699667, 'pays': -0.020297391828783793, 'retractable': 0.1032559453306942, 'feasible': 0.04745034149222059, 'exposing': -0.018778541570359183, 'gentle': -0.05839006744775311, 'trv33': -0.037328598032204986, 'clogged': -0.2443490657609125, 'heads': 0.08594183249745498, 'compound': -0.018830701603925824, 'lubricates': -0.037328598032204986, 'clogging': -0.029662641486175992, 'compounds': -0.037328598032204986, 'mix': -0.08908952061790361, 'stil': -0.037328598032204986, 'zr-90': -0.073471178575068, 'abc': -0.073471178575068, 'warehouse': -0.12542425016481346, 'camcorder': 0.0047458654252908895, 'packs': -0.09225563997115795, 'videotape': -0.073471178575068, 'sons': -0.05595064456925952, 'basketball': -0.073471178575068, 'coaches': -0.073471178575068, 'deleted': 0.02382081114665391, 'inform': -0.012871921789210192, 'tossing': -0.012871921789210192, '340.00': -0.005114841530777701, 'irive': -0.012871921789210192, 'realize': -0.10183524038071852, 'wrapped': -0.09192951198215389, 'smallest': 0.11757230243904936, 'palmtop': -0.012861354647189323, 'reduces': 0.11856117777799846, 'remaining': -0.0786691212082819, 'incessantly': -0.012861354647189323, 'injury': -0.012861354647189323, 'chinese': -0.0051355984684594335, 'meat': -0.0235525699568223, 'bones': -0.012861354647189323, 'microtrack': -0.06477567612176052, 'drains': -0.048369456012639936, 'woefully': -0.06477567612176052, 'wgt624v3': -0.011397151156208808, 'connetion': -0.011397151156208808, 'desktops': 0.04048397523256184, 'novelty': -0.011397151156208808, 'brining': -0.011397151156208808, 'ibm': -0.03495835495668362, 'r51': -0.011397151156208808, 'vpn': 0.11890800013197683, 'rediculous': -0.020129791063925685, 'browsing': -0.03603690567254733, 'msn': -0.011397151156208808, 'yahoo': 0.010880412683227625, 'routers': 0.12325530875776555, 'thinkvantage': -0.022794302312417615, '95': -0.052700667482137115, '97': -0.011397151156208808, '@': 0.017541731617030248, '54mbs': -0.011397151156208808, 'winsocks': -0.011397151156208808, 'winsockxp': -0.011397151156208808, 'rebooted': 0.03865909554083811, 'website)and': -0.011397151156208808, 'yea': 0.01840961237292795, 'stability': -0.011397151156208808, 'conection': -0.011397151156208808, 'hammered': -0.011397151156208808, 'upsets': -0.011397151156208808, 'bin': -0.015204330829419806, 'cared': 0.002846931351349686, 'completes': -0.03438844039570066, 'cnnot': -0.01719422019785033, 'hated': -0.0012118369241721262, 'cat': 0.026225077623501302, 'stranded': -0.005296343265398663, 'enjoyed': -0.029820881530544047, 'january': 0.015764951699593334, 'iopd': -0.0013575153558194643, 'upsetting': -0.0013575153558194643, 'finlay': -0.0013575153558194643, 'serial': -0.015839270087883536, 'angry': -0.0013575153558194643, 'dont': -0.09646151859986814, 'signed': -0.03622356867446429, 'vonage': -0.006291242397963419, 'tone': 0.13223980874106173, 'everthing': 0.0030367726014706425, 'dad': 0.02446550661113892, 'clue': -0.03622356867446429, 'flee': -0.03622356867446429, 'droves': -0.03622356867446429, 'p.': -0.034423641142294285, 'o.': -0.034423641142294285, 's.': -0.034423641142294285, 'pos': -0.034423641142294285, 'offset': 0.0301415619486844, 'layers': -0.02536589215855216, 'crc': -0.034423641142294285, 'im': -0.034423641142294285, 'hasnt': -0.034423641142294285, 'recalled': -0.034423641142294285, 'crummy': -0.034423641142294285, 'recognizable': -0.1308860752634299, 'gift': 0.19434543223671485, 'school': 0.04149623657955166, 'f8v366': -0.047666683514404215, 'apl': -0.14300005054321216, 'f8v367': -0.047666683514404215, 'you)': -0.047666683514404215, 'f8v7067': -0.047666683514404215, '15!)': -0.047666683514404215, 'occupied': -0.12009958351591576, 'twin': -0.02493600497468155, 'wishing': -0.047666683514404215, 'skipped': -0.05667375197662768, 'father': -0.11168280431166128, 'gifts': -0.054874941213362505, 'iron': 0.09810205738405649, 'precisely': -0.003488701583378145, 'cooled': -0.09205473434201975, 'styed': -0.09205473434201975, 'broadcasts': 0.01439834235879031, 'radios': -0.19935851213259448, 'filliped': -0.055842598004322716, 'expandable': -0.007785405854765036, 'mischance': -0.055842598004322716, 'reimbursement': 0.015546399016193996, 'team': -0.05594162957151519, 'fulfilled': -0.014803246958991108, 'sellers': -0.055842598004322716, 'acquisition': -0.009759292317667385, 'luckier': -0.055842598004322716, 'whatsoever': 0.14120268738873606, 'practical': -0.20882045194122476, 'boo': -0.14281243416351433, 'footsteps': -0.04823096156769613, 'birthday': -0.07085887054105763, 'goods': 0.07991891766876688, 'confirmed': -0.12228766310994967, '1.0.5.0': -0.01685068770420687, '1.12': -0.0056168959014023, 'uninstalling': -0.0056168959014023, 'facility': 0.04236964990027747, 's182': -0.06203913855502198, 'spins': 0.007826336926960914, 'daxon0016s': -0.06203913855502198, 'compaq': -0.0030427585715959537, '7970': -0.0030427585715959537, 'amd': -0.0030427585715959537, 'k7': -0.0030427585715959537, 'chipset': -0.0030427585715959537, 'frequent': 0.14206435694593525, 'irq': -0.0060855171431919075, 'sharing': 0.057166199378571175, 'ot': -0.0030427585715959537, 'fa310,fa311': -0.0030427585715959537, 'fa312': -0.0030427585715959537, 'irqs': -0.0030427585715959537, 'reformating': -0.0030427585715959537, 'absolutly': -0.09196964107153446, 'mmorpg': -0.04492185941448249, 'log': 0.04636148357157769, 'crash': 0.10761356809353968, 'destroys': -0.0744388256292797, 'forcing': -0.09713712705786728, 'mmorpgs': -0.04492185941448249, 'edition': -0.028050688881820794, 'beg': -0.04492185941448249, 'cheapest': 0.18739872858034853, 'tower': -0.07521351430071778, 'lightening': -0.008452299802320408, 'strike': -0.05340216383507081, 'dfe-530tx+': -0.008452299802320408, 'minimum': 0.15291592555360917, '10.2': -0.03380919920928163, '10.3': -0.025356899406961182, 'realtek': -0.008452299802320408, 'modern': 0.08305246117246634, 'gigabytes': -0.09913451299523846, 'gigabyte': -0.04956725649761923, 'canceled': -0.21580456222524047, 'velocity': -0.278359226672585, 'uncompatibility': -0.059989340414195125, 'hace': -0.059989340414195125, 't7200': -0.059989340414195125, '7200': -0.08072248537064615, '7400': -0.059989340414195125, '24.00': -0.059989340414195125, 'depot': -0.0677386476247526, 'clearance': 0.034031039936315434, '44.00': -0.059989340414195125, 'september': 0.026416626471227955, 'borderline': -0.006488218349374723, 'powerjolt': -0.12755046585075944, 'overwhelming': -0.0425168219502532, 'public': -0.007961986805824413, 'transportation': -0.05837146662612332, 'majority': -0.050369060825714004, 'block': 0.013782883304186862, 'hn110': -0.010819556895853944, 'beefy': -0.010819556895853944, 'scrawny': -0.010819556895853944, 'batt': -0.010819556895853944, 'tad': 0.05256078686313889, 'thus': 0.08814632220549723, 'hn': -0.010819556895853944, 'wind': 0.07478779943813108, 'blowing': -0.11642108721121351, 'merchandise': -0.010819556895853944, 'authorization': -0.010819556895853944, 'hefty': 0.10369768819713243, 'stethascope': -0.010819556895853944, 'warrenty': -0.01854004146319808, 'crackling': -0.1430965434768168, 'whipping': -0.042811956135690866, 'scrap': -0.042811956135690866, 'resolder': -0.042811956135690866, 'resoldered': -0.042811956135690866, 'persisted': -0.06392825016903984, 'im3c': -0.006963161210440545, 'finding': 0.1686896577488349, 'mojo': -0.05858883328781328, 'wonderfully': 0.06490416139941729, 'propreitary': -0.020852428160551585, 'copying': -0.028327655221131207, 'copied': 0.02090432537751287, 'tries': -0.05344673242599737, 'adding': -0.021423109125054976, 'floppy': 0.02967005995508028, 'seventh': -0.04094772998179122, 'work??,': -0.002747543040492707, 'degree': 0.015822648867855664, 'distances': -0.002747543040492707, 'objects': 0.025749337083079277, 'skycaddie': -0.005495086080985414, 'modify': -0.033443969303270676, 'attaches': 0.04471018072006893, 'again,': -0.002747543040492707, 'often,': -0.002747543040492707, 'probally': -0.002747543040492707, 'skygolf': -0.002747543040492707, 'modified': -0.0376035003072238, 'weaker': 0.045454130193481414, 'clipped': 0.04754504058047179, 'handles': 0.047215204130094585, 'interfaces': -0.05542682023807662, 'correction': -0.1269370759527938, 'tin': 0.042093573096261584, 'nickel': -0.054985784698490345, 'oxygen': -0.05542682023807662, 'tipped': -0.10657794081826528, 'sheilded': -0.05542682023807662, 'supreme': -0.05542682023807662, 'cheapie': -0.05542682023807662, 'visible': -0.02415749067139192, 'oscilloscope': -0.05542682023807662, 'leg': 0.007008907323654115, 'bidding': -0.04754986892180461, 'estate': -0.0007399574248957887, 'wrong-': -0.04754986892180461, 'confusion': -0.021550336562440764, 'standards': -0.08048110962347516, 'reach': 0.1396712582587754, 'production)-': -0.04754986892180461, 'largely': -0.04754986892180461, 'bluray': -0.04754986892180461, 'implements': -0.04754986892180461, 'pins': 0.24788971297571058, 'versus': -0.03564082423209703, 'designer': -0.022942279100725854, 'mentioning': -0.012206241273556179, 'harsh': -0.030598470432907414, 'treatment': 0.024907936186120923, 'shielding-': -0.04754986892180461, 'toughened': -0.04754986892180461, 'certified': -0.006442638797549253, 'nuclear': -0.04754986892180461, 'fallout': -0.04754986892180461, 'blow': -0.004281452074915261, 'entertainment': 0.02113343495003508, 'fare': -0.055405478089440185, 'emp': -0.04754986892180461, 'plusses': -0.04754986892180461, 'increased': 0.012058216300100864, 'sturdiness': -0.0038229821969672706, 'branding': -0.04754986892180461, 'worrying': 0.1096556060011653, 'tmds': -0.03824348033448499, '80': 0.0944690486374928, 'richer': -0.019121740167242496, 'vibrant': 0.05124098533617669, 'digitally': 0.0051152000323316845, 'suckers': 0.05138774953324613, 'abide': -0.08174049670952724, 'presence': -0.039012651438503236, 'favorable': -0.08174049670952724, 'flexibe': -0.08243544613942536, 'st': -0.08243544613942536, 'louis': -0.08243544613942536, 'intereference': -0.08243544613942536, 'dlo': -0.06570833692166754, 'junky': -0.1141021175026233, 'compression': -0.08001532464069014, 'ex81lp': -0.1141021175026233, 'medical': 0.09430822266872105, 'blasting': 0.002015563945649879, 'er-6': -0.1141021175026233, 'dissapointed': -0.26627554040304996, 'studied': -0.0533769385589527, 'vacuum': -0.13783929901041264, 'earplug': -0.1141021175026233, 'environmental': -0.1141021175026233, 'attenuated': -0.06691993677501586, 'ex51': -0.06691993677501586, '325': -0.043993085798485924, 'encouraged': -0.043993085798485924, "new'model-": -0.043993085798485924, 'effective': 0.08905981193699652, 'supposted': -0.043993085798485924, 'ocz': -0.01979818652155293, 'msh-128': -0.030852738558202596, '20th': -0.030852738558202596, 'p100': -0.030852738558202596, 'c:13:01': -0.06170547711640519, 'travled': -0.06060360784442072, 'arizona': -0.02379327463675451, 'x51v.': -0.06060360784442072, 'recoginize': -0.06060360784442072, 'oneday': -0.06060360784442072, 'wiped': -0.06060360784442072, 'recived': -0.011657221729714744, 'swindled': -0.011657221729714744, 'formating': -0.008736686676409896, 'deletion': -0.008736686676409896, 'remedy': -0.008736686676409896, 'disceted': -0.008736686676409896, 'suffering': -0.008736686676409896, 'bulgaria': -0.0301390009537155, 'fortunate': 0.008509605090702711, 'mabey': -0.02034805386271985, 'mark': -0.003403800346118681, 'stitched': -0.07132311431059526, 'supple': -0.07132311431059526, 'leather': 0.06627080713464287, 'scratched': 0.004994639123301512, 'speck': -0.069306591476238, 'toughskin': -0.0853921948790817, 'heal': -0.07132311431059526, 'constant': -0.17009879600183161, 'smashed': -0.014433296486733792, 'totaly': -0.07548195289353621, 'inaudible': 0.05967793091526597, 'lean': 0.019199233651131277, 'renders': -0.003926491557377646, 'fhd351': -0.07548195289353621, 'c340': 0.07889125875508443, 'pilots': -0.05408477805556812, 'guaranteed': 0.04449456604810683, 'wrongly': -0.0441410165741989, 'assumed': -0.08271554800314554, 'achieve': -0.005810776675456659, 'valuable': 0.0791451516190057, 'notification': -0.025940870699042433, 'illegal': -0.025940870699042433, 'stones': -0.025940870699042433, 'publicity': -0.025940870699042433, 'legal': -0.05182704662174143, 'actions': -0.025940870699042433, 'ironed': -0.07875960552792387, 'crumbled': -0.07875960552792387, 'peeling': -0.07875960552792387, 'quot;burned': -0.046393303793440685, 'out"': -0.046393303793440685, '450': -0.14417274541565853, 'discussion': -0.23798695062481207, 'admitted': -0.21196624508208425, 'cart': -0.038262083943574825, 'deals': 0.012076427493549702, 'disney': 0.004679380529010408, 'convention': -0.06798006639671103, 'scandisk': -0.11398836384389115, 'invented': -0.06798006639671103, 'tecnology': -0.06798006639671103, 'costing': 0.036397922748433884, '50.00': -0.02313320144254845, 'recovered': -0.06798006639671103, 'anatomy': 0.0406141225476436, 'dare': -0.1696300731186386, 'hooks': 0.011722898134614987, 'unuseable': -0.053973420828120365, 'jiggle': -0.0032847525303398646, 'sweet': 0.10104822099327183, 'adds': -0.036751602210537034, 'considerable': -0.07811877938250963, 'tie': -0.00470088311596666, 'settles': -0.006736758366423621, 'generates': -0.006736758366423621, 'uh': -0.013473516732847243, 'pt': 0.010458651799788832, 'convinced': 0.022367451340669028, 'persuading': -0.006736758366423621, 'busy': 0.06577604272932266, 'reference': 0.033047725865724166, 'permission': -0.009120737078020994, 'limitations': 0.028162842813258423, 'inclined': -0.006736758366423621, 'optical': 0.010645642939149479, 'shined': -0.12330434071964648, 'wrist': 0.20413776951722684, 'mushes': -0.12330434071964648, ':-/': -0.12330434071964648, 'donate': -0.12330434071964648, 'ball': -0.10674570647075639, 'awesomefun': -0.12330434071964648, 'isntalled': -0.03572509267450517, 'ed': -0.022974432798454632, 'coincidence': -0.06336767452748752, 'reminds': 0.04734827054748186, 'overheats': -0.050635164752970634, 'windowsxp-kb884020-x86-enu.exe': -0.05118473168356739, '-------------------------------------': -0.05118473168356739, 'di-624': 0.016044325776002486, 'encrpted': -0.05118473168356739, 'searches': -0.05118473168356739, 'endlessly': -0.05118473168356739, 'bps': -0.024517389941362887, '1499.99': -0.11733993168193127, 'honor': -0.12820687505258685, 'agreed': -0.12442917768285489, 'tvhd': -0.02918509000946039, 'august': 0.03557650157075688, 'amozon': -0.014592545004730196, "dosen't": -0.020137621238284196, '......': -0.1243256288159746, 'protocol': 0.002453940286599692, '524': -0.004617516414845296, 'd.': -0.004617516414845296, 'di-52': -0.004617516414845296, 'trained': -0.0016135970623438257, 'consisted': -0.001242962487985645, 'script': -0.001242962487985645, 'whizzes': -0.001242962487985645, 'mastered': -0.001242962487985645, 'voicemails': -0.001242962487985645, '3:00': -0.001242962487985645, 'afford': 0.08287947544652906, 'epiphany': -0.001242962487985645, 'ceo': -0.001242962487985645, 'stephen': 0.03175770487276157, 'joe': 0.007149852621448385, 'responded': -0.001242962487985645, '1.23': -0.00871672163917982, 'pings': -0.00871672163917982, 'blink': -0.00871672163917982, 'misery': -0.00871672163917982, 'forces': 0.05805228540897852, ':(': -0.038865204331539865, 'sand': -0.038865204331539865, 'walkie': -0.08024158229179533, 'talkies': -0.08024158229179533, 'walkies': -0.07265756035117418, 'humberto': -0.07265756035117418, 'gonzalez': -0.07265756035117418, 'costa': -0.07265756035117418, 'ric': -0.07265756035117418, 'usefull': -0.05991760783671915, '283': -0.001400102601144812, '1311': -0.001400102601144812, 'registration': 0.12861869443970597, 'warrany': -0.001400102601144812, 'departments': -0.001400102601144812, '2003': 0.05829402107834375, '2004': 0.12829982065919693, 'invoice': -0.009978165568198917, 'belittled': -0.001400102601144812, 'fyi': -0.001400102601144812, 'cdos': -0.006151320764225747, 'kds': -0.006151320764225747, 'trays': -0.006151320764225747, 'returnable': -0.006151320764225747, 'mart': -0.06473784140672087, 'fashioned': -0.006151320764225747, 'adorama': 0.0551180950878983, 'pkg': -0.002723229644098419, '270': -0.010868307573263718, 'papers': 0.13753762176705617, 'instructed': -0.009588594004566037, 'aug': -0.002723229644098419, '28th': -0.008609285509364297, 'gal': -0.002723229644098419, 'boombox': -0.11215503663432036, 'functioned': 0.01955508059350066, 'boomboxes': -0.07803734229722614, 'roady': 0.16115349367764764, 'delphi': -0.03901867114861307, 'los': 0.009823346178767895, 'angeles': -0.008433851887913514, 'xt': 0.041568374529512085, 'xm2go': -0.01686770377582703, 'receivers': 0.19929277558731556, 'hissy': -0.008433851887913514, 'monaural': -0.008433851887913514, 'imo': 0.0840448012081174, 'plenty': 0.27783707551067793, 'interruptions': 0.02168353738123017, 'professionally': -0.008433851887913514, 'voided': -0.008433851887913514, 'subscriptions': -0.008433851887913514, 'joined': -0.008433851887913514, 'allloooooonnnng': -0.008433851887913514, 'relevant': 0.10517222872251338, 'cancellations': -0.008433851887913514, 'accounts': -0.0201129278624865, 'charges': 0.16754900699079817, 'energizers': -0.1441882020453745, '1600mah': -0.11373193586513743, 'energizer': 0.08081724274922636, '2500mah': -0.08597337930350384, 'duracells': 0.02257439276018466, 'upgrading': 0.07336450332082518, 'rayovac': -0.04392005495872223, 'rechargeables': 0.06098816735538189, 'rayovacs': -0.04392005495872223, "spec'ed": -0.014640018319574087, 'appearing': -0.014640018319574087, '4th': 0.20091641715958944, '5th': -0.014640018319574087, 'lucky': 0.14098390324975216, 'trusty': -0.014640018319574087, 'bags': 0.0006533932727064938, 'idpod': -0.006358109614541539, 'headed': -0.006358109614541539, 'bending': 0.0037313195870563635, 'earclips': -0.006358109614541539, '96': -0.20929073033368972, 'beautifull': -0.10276921772258116, 'weekly': -0.13182083954174198, 'dosent': -0.10276921772258116, 'tim': -0.10276921772258116, 'disconnects': -0.00016237867029905278, '2_0_0_7': -0.03821001186804124, 'published': -0.02533022800578142, 'nov': -0.03821001186804124, 'zboard': -0.1476682024997037, 'playbility': -0.03691705062492592, 'efficiency': -0.018890243488361297, '-the': -0.035278999553076264, 'mirroring': -0.03691705062492592, 'interpret': -0.03691705062492592, 'command': -0.00014899824466800923, 'patches': -0.03691705062492592, '-according': -0.03691705062492592, 'winamp': -0.008703541102704816, '-you': -0.03691705062492592, 'macros': -0.00014899824466800923, 'autofire': -0.03691705062492592, 'numpad': -0.03691705062492592, 'differently': 0.04964544767070154, 'compacted': -0.03691705062492592, 'attack': -0.0161085712703461, 'commands': -0.0583396619420952, 'pvping': -0.03691705062492592, 'warcraft': -0.03691705062492592, 'arsenal': -0.03691705062492592, 'spells': -0.03691705062492592, 'abilities': 0.007299175685126513, 'programmed': 0.05816202803610448, 'remembering': -0.03691705062492592, 'wailed': -0.03691705062492592, 'remembered': -0.03691705062492592, 'bindings': -0.07383410124985185, 'revamping': -0.03691705062492592, 'enhancing': -0.03691705062492592, 'contoured': -0.03691705062492592, 'quiet': 0.0117410128369744, 'hums': -0.09593085719194724, 'audiophile': 0.09464666845523112, 'overly': -0.002710245554989855, 'omit': -0.09593085719194724, 'v2.50': -0.016557117547333487, 'wli': -0.016557117547333487, 'tx4': -0.016557117547333487, 'g54hp': -0.016557117547333487, 'digit': -0.07883938488020639, 'hex': -0.016557117547333487, '64': 0.04795451536717005, 'encryption--': -0.016557117547333487, 'lame': 0.028655283985156852, 'crud': -0.018873901634994944, 'fades': -0.03774780326998989, 'smells': -0.12620957195777713, 'shoppers': -0.018873901634994944, 'bringing': -0.08766883987933777, 'parties': -0.1751878130387852, 'workouts': 0.017534422742110495, 'dishnetwork': -0.15051343703853398, '942': -0.15051343703853398, '21"': -0.04781463747396204, 'traditional': 0.05024549839274784, 'pounds': 0.045457698771071295, '19"': -0.09562927494792409, 'weigh': 0.02782293432015944, 'bobbed': -0.04781463747396204, 'bend': -0.029221558461165264, 'archos': -0.11524913383652595, '8/26': -0.015900829226023268, '10/1': -0.015900829226023268, 'delayed': -0.05224298453596072, 'align': -0.016181455941740322, 'centimeters': -0.016181455941740322, 'cardstock': -0.016181455941740322, 'trim': 0.026459010523931216, 'cutter': -0.016181455941740322, 'experiance': -0.016181455941740322, 'measure': -0.0242773867958333, 'previewed': -0.016181455941740322, 'beginner': -0.016181455941740322, 'stamper': -0.016181455941740322, 'paperstock': -0.17693890631795434, 'justice': -0.10675049197712196, 'glossy': -0.03159403842743625, 'beat': 0.18649788269680054, 'garim': -0.24031841560018466, 'summit': -0.24031841560018466, 'identify': -0.08916045124720656, 'sideways': -0.12322082955423372, 'overexposed': -0.07876397318538189, 'viewsonic': 0.1975005150385965, 'immediatly': -0.11219564125276497, 'ps2': -0.12452569886108109, 'creepy': -0.11219564125276497, 'washed': -0.11219564125276497, 'pstwo': -0.11219564125276497, '870': -0.008740783019677019, 'iway': -0.017481566039354038, 'maryland': -0.017481566039354038, 'york': -0.001017593737781544, 'island': -0.08926852987134809, 'jersey': -0.008740783019677019, 'turnpike': -0.017481566039354038, 'chart': -0.017481566039354038, 'obstructions': -0.017481566039354038, 'recalculate': 0.06142058045496162, 'acted': -0.008740783019677019, 'retried': -0.008740783019677019, 'blocks': 0.004427369551370244, 'bronx': -0.04370391509838505, 'journey': 0.01869149540839864, 'recalculating': -0.008740783019677019, 'visiting': 0.026090411237643406, 'calculating': -0.008740783019677019, 'operated': 0.018312221229386874, 'stretch': 0.06550880567461208, 'redirecting': -0.008740783019677019, '1.2.0': -0.008740783019677019, 'charting': -0.008740783019677019, '212': -0.008740783019677019, 'ny': 0.13850399006035868, 'calculations': 0.054720346087729896, 'c530': 0.010399057907387743, '350c': -0.025228765462331274, 'packaged': 0.00030703510556209963, 'eleven': -0.04409559013743333, '865': -0.025228765462331274, 'cities': 0.02710822444489286, 'georgia': -0.025228765462331274, 'tybee': -0.05045753092466255, 'pine': -0.025228765462331274, 'mountain': -0.05045753092466255, 'newnan': -0.025228765462331274, 'rely': -0.0416780263737671, 'episodes': -0.025228765462331274, 'newly': 0.0022927410029600966, 'highways': 0.04599460821349309, 'reacting': -0.05045753092466255, 'sequences': -0.013810037826683942, 'sixty': -0.1339110018841092, 'way.)two': -0.025228765462331274, 'views': -0.025228765462331274, 'enroute': -0.025228765462331274, 'passanger': -0.025228765462331274, 'wim': -0.0004124355321516314, 'unfortunalty': -0.0004124355321516314, 'booted': 0.0511440203159063, 'unfortunaltey': -0.0004124355321516314, 'economical': -0.008494485858942549, 'tweak': -0.017685446735366716, 'gotcha': -0.017685446735366716, 'specfic': -0.017685446735366716, 'neighbors': 0.021058223724735523, 'equal': 0.08677087434546721, 'rejection': -0.047554743492986905, 'dropouts': -0.23777371746493445, 'magellan': -0.2315846500493952, 'roadmate': 0.25425479497212894, 'locating': 0.01771933331813856, 'sytem': -0.015801463018269176, 'rw': 0.03800646410199446, 'moreover': -0.010144333781321024, 'pardon': -0.005072166890660512, 'machines.': -0.005072166890660512, 'cpus': -0.005072166890660512, '3ghz': -0.005072166890660512, 'solve': -0.0200681180737675, 'rudeness': -0.005072166890660512, 'easycd': -0.005072166890660512, 'creator': -0.005072166890660512, 'uninstallation': -0.005072166890660512, 'roxio': -0.010144333781321024, '10gb': -0.01521650067198151, 'lie': 0.005045187884348707, 'nerovision': -0.005072166890660512, '1gb': 0.00031947693848103075, 'quarrel': -0.005072166890660512, 'patiently': -0.005072166890660512, 'freed': -0.005072166890660512, '720': -0.005072166890660512, '710': -0.010144333781321024, 'wonder': 0.08769349099113159, 'et': 0.04704793679032676, 'al': 0.11048737119194116, 'ridicolous': -0.005072166890660512, 'software(s': -0.005072166890660512, 'incompetence': -0.005072166890660512, '720ul': -0.035100995934432964, '710ul': -0.017550497967216482, 'manning': -0.017550497967216482, 'ia': -0.017550497967216482, 'runaround': -0.07240937881241007, 'mercy': -0.026203534956501823, '...............': -0.11602206048915431, 'cardbus': -0.04883251982187325, 'shock': 0.08887325241220889, 'bsod': -0.03840703297522291, 'inoperative': -0.024416259910936624, 'narrow': -0.024416259910936624, 'identifying': 0.0012922432884245663, 'fa511': -0.05247456894748526, 'culprit': -0.024416259910936624, 'inactivity': -0.024416259910936624, 'wildly': -0.024416259910936624, 'inappropriate': -0.024416259910936624, 'responses': -0.029143635097464426, 'requesting': -0.029143635097464426, 'escalated': -0.024416259910936624, 'permissions': -0.024416259910936624, 'contradicted': -0.024416259910936624, 'enabled': 0.13101081418777435, 'straightforward': 0.03672128148032004, 'article': -0.03500401172639913, 'ninety': -0.024416259910936624, '3com': -0.024416259910936624, 'smc': -0.025298880721128753, 'xircom': -0.024416259910936624, 'tremendous': 0.02471084242723257, 'seprately': -0.05370133003094817, 'gimic': -0.05370133003094817, 'contribute': -0.05370133003094817, 'cox': -0.10806850007289384, 'tivo': -0.03865357840491741, 'series2': -0.023888419731698543, 'signing': -0.023888419731698543, 'commitment': -0.023888419731698543, '12.95': -0.023888419731698543, 'surprised': 0.1676073626566246, 'seperate': -0.005683673986036365, 'relies': -0.020642307901304287, 'tuners': -0.023888419731698543, 'tricycle': -0.023888419731698543, 'interuppted': -0.023888419731698543, 'corner': 0.17032212374238978, '1/4': 0.06569952989773498, 'asnd': -0.023888419731698543, 'similarly': 0.01176664091813381, '42': 0.27829135672474103, 'akai': -0.023888419731698543, 'plasma': 0.1824963604560383, 'wishlist': -0.023888419731698543, 'suggestions': 0.013326650935858948, 'compete': 0.02582429611960446, 'artifacts': 0.037078841885344396, 'dnr': -0.029564018748879636, 'stuttered': -0.029564018748879636, 'heath': -0.06793846685121976, 'clubs': -0.02229384575675024, 'rebroadcasts': -0.06793846685121976, 'circular': 0.02950035549302793, 'minumum': -0.007898677764207487, 'custumer': -0.007898677764207487, 'military': -0.007898677764207487, 'deployment': -0.007898677764207487, 'aol': 0.013704128598056038, 'blogs': -0.007898677764207487, 'tanking': -0.007898677764207487, 'absolute': 0.03864709288561454, 'untouched': -0.017090870477370033, 'overnight': -0.07783439024888975, 'possibilites': -0.017090870477370033, 'lamination': -0.07867111695248012, 'ridges': -0.07867111695248012, 'smoothe': -0.07867111695248012, 'pockets': -0.04488639727753114, 'intense': -0.028167808943206123, 'finicky': -0.06275667599679788, 'brain': -0.20452066096202143, 'surgery': -0.028167808943206123, 'sincerely': -0.028167808943206123, 'befw11s4': -0.06439961986981535, 'unobtrusive': 0.06948472061941875, 'hide': -0.08071190933296725, 'furniture': -0.021466539956605205, 'allowing': 0.1582826220824397, 'equipped': -0.021466539956605205, 'howver': -0.021466539956605205, 'locking': 0.20622884876708894, 'borrow': -0.00045907778206032965, 'painlessly': -0.010060243518171717, 'stream': 0.046290744066800796, 'submersed': -0.010060243518171717, 'internally': -0.010060243518171717, 'waterproofness': -0.010060243518171717, 'baloney': -0.010060243518171717, 'integrity': -0.038107350805160096, 'humidity': -0.010060243518171717, 'invested': 0.08573649555933831, 'mapsource': 0.016389015287097658, 'absolutley': -0.010089284450793524, 'stellar': -0.006658878951093937, 'bliss': -0.0302678533523805, 'klipsch': -0.05930952058828015, 'backordered': -0.010089284450793524, 'retailer': 0.03248379118414231, 'inc.': -0.0035685985250648268, '360': 0.02361419612422376, 'tax': 0.07926607155546855, 'occurances': -0.010089284450793524, '125': -0.10717121898454801, '970': -0.010089284450793524, "hasen't": -0.010089284450793524, 'guessed': -0.010089284450793524, 'refered': -0.010089284450793524, 'lube': -0.010089284450793524, 'klipschhorns': -0.010089284450793524, 'rocked': -0.010089284450793524, 'promedia': 0.0489436594218679, 'fabulous': 0.25119765579128134, 'division': -0.02017856890158705, 'vow': -0.010089284450793524, 'cent': 0.004438669530249382, 'inc': -0.010089284450793524, 'uncooperative': 0.01742756819506818, 'unsympathetic': -0.010089284450793524, 'curt': -0.010089284450793524, 'unprofessional': -0.010089284450793524, 'ultimately': 0.06747423233368441, 'elswhere': -0.010089284450793524, 'klipsh': -0.018143127096975777, 'designing': -0.009071563548487888, 'heed': -0.009071563548487888, 'garage': -0.0074636816700785575, 'reviewed': -0.048462630861788446, 'blast': -0.06627783283931929, 'lacie': -0.1283158963419028, 'swipes': -0.04685676551300087, 'biometric': -0.04685676551300087, 'sensor': -0.030234207173040963, 'swiping': -0.04685676551300087, 'partioned': -0.04685676551300087, 'partition': 0.13923775534920574, 'partion': -0.04685676551300087, 'biometrics': -0.04685676551300087, 'slam': -0.053847485057183106, 'stomp': -0.053847485057183106, 'cease': -0.08808452400905563, 'forbid': -0.053847485057183106, 'jiggled': -0.053847485057183106, 'reinserted': -0.05678321719711305, 'jan': -0.07103501270651191, 'md7001': -0.07103501270651191, 'prominently': -0.07103501270651191, 'protectors': -0.08271420578359473, 'lifespan': -0.05141715495794419, 'extent': -0.04535569539912329, 'accurately': -0.05141715495794419, 'dislike': -0.0019653918458483696, 'invisible': -0.05141715495794419, 'shield': -0.03326483743991787, 'nails': -0.03579408305231887, 'tacky': -0.012064900014784703, 'produced': 0.001131470599405271, 'boxwave': -0.05141715495794419, 'cleartouch': -0.05141715495794419, 'fellowes': -0.05141715495794419, 'writeright': -0.05141715495794419, 'm130': -0.05141715495794419, 'imitators': -0.05915403893927259, 'triumph': -0.05915403893927259, 'substance': -0.05915403893927259, 'ruthlessly': -0.05915403893927259, 'exploits': -0.05915403893927259, 'naivete': -0.05915403893927259, 'salespeople': -0.05915403893927259, 'for"---but': -0.05915403893927259, 'interconnects': -0.05915403893927259, 'optimal': 0.001124549948550176, 'gauge': -0.05915403893927259, 'fraction': 0.07275145083911633, 'disgusted': -0.030135817300716225, 'crucial': -0.023587049152975943, 'markets': -0.0014328158032964051, 'win98se': -0.030135817300716225, 'promising': -0.030135817300716225, 'advertising': 0.005017085629900551, 'production': -0.0118680862311307, 'a612': -0.00367666269961063, 'waits': -0.00367666269961063, 'flukey': -0.00367666269961063, 'pro4aat': -0.11904939834231669, 'vinyl': -0.00969938022341412, 'breathe': -0.014780788191540915, 'leatherette': -0.11904939834231669, 'washing': 0.027290701260195366, 'ocean': -0.04750454220358679, 'truck': -0.10166616647080902, 'nestled': -0.04750454220358679, 'bullet': -0.034281234021275885, 'gimick': -0.04750454220358679, 'costly': -0.032420681527866445, 'ratpadzgs': -0.09874471101111924, 'ratpadz': -0.04937235550555962, 'compaired': -0.04937235550555962, 'ratpad': -0.04937235550555962, 'density': -0.04937235550555962, 'o(tm': -0.04937235550555962, 'g7': 0.006442918439627972, 'gs': -0.04937235550555962, 'curser': -0.04937235550555962, 'mousepad': -0.477739725995358, 'jittered': -0.004389305747583319, 'indicative': -0.004389305747583319, 'grooves': -0.004389305747583319, 'budge': -0.004389305747583319, 'stickers': -0.006451598968108062, 'recomend': 0.16053969825376369, 'bubbles': -0.011531898909918053, 'tennessee': -0.04844403711888224, 'technically': 0.04429269830758827, 'complicated': 0.012640242067322838, 'moreso': -0.04844403711888224, 'peripherals': -0.024295253040407156, 'grandchildren': 0.03900225982687245, 'sweat': -0.042624821528948934, 'becoming': -0.0016405601388160278, 'establish': -0.042624821528948934, 'dunno': -0.042624821528948934, 'headache': -0.042624821528948934, 'troublshooting': -0.042624821528948934, '22': -0.012573429664959028, 'wizards': -0.042624821528948934, 'beasty': -0.042624821528948934, 'dp': -0.05576774635387208, 'g321': -0.05576774635387208, 'z320': -0.02788387317693604, 'psc': -0.02788387317693604, '1250': -0.02788387317693604, 'photosmart': 0.0003219459873667996, '7310': -0.02788387317693604, 'parallel': -0.02788387317693604, 'laserjet': -0.02788387317693604, '1100': -0.02788387317693604, 'waves': -0.02788387317693604, 'sensed': -0.02788387317693604, 'secured': 0.013321610820267773, 'wps54gu2': -0.02788387317693604, 'closer': -0.07899550295764374, 'l': 0.03637827632252169, 'pinned': -0.0894243885572155, 'methods': -0.0894243885572155, 'unnoticable': -0.0894243885572155, 'mp530': -0.14397339014223076, 'lengthy': 0.06580409378962909, 'reenter': -0.07198669507111538, 'traveldrive': -0.1258466624729669, 'logo': -0.07156588860333021, 'ilussion': -0.018206374871036046, 'didn': -0.018206374871036046, 'services': 0.05732247210395744, '250.00': -0.018206374871036046, 'previousl': -0.2645376134380743, 'grievances': -0.04714087662697213, 'retraction': -0.025713196475564293, 'bounces': -0.04714087662697213, 'threatens': -0.04714087662697213, '5month': -0.09510097102416645, 'tint': -0.22215891204885255, 'tube': -0.07900469940186322, 'posts': -0.0703868664479341, 'som': -0.0703868664479341, 'reseting': -0.0703868664479341, 'sexy': -0.06231726579844643, 'moves': -0.011142852686528253, 'lightly': -0.014154414778099833, 'pity': -0.006017453811438733, 'lowercase': -0.09165018757392827, 's510': -0.09165018757392827, 'subtract': -0.09165018757392827, 'wide': 0.14312152294261163, 'fancy': 0.043180111418169506, 'cat5': -0.11417013499076262, 'sheilding': -0.1486343336407752, 'oz': -0.12110585976423556, '12.0': -0.12110585976423556, '14.0': -0.12110585976423556, '10.0': -0.12110585976423556, '4.0': -0.08971077963628316, 'deceived': -0.25782006230781757, '30.00': -0.25782006230781757, 'clix': -0.08019616227910596, 'gel': -0.08856476230231405, 'ooze': -0.07920617803145666, 'staple': -0.03960308901572833, 'bean': -0.019332755332975602, 'definately': 0.1216126066447249, 'outs': -0.01444892436800969, 'two+': -0.09286683429012292, 'vendors': -0.06850462920513954, '4750': -0.09286683429012292, 'smoothed': -0.023165451307929137, 'fanned': -0.023165451307929137, 'fed': 0.09898543555616444, 'champ': -0.023165451307929137, 'laying': -0.052800900733953646, 'nokia': -0.008457377807995676, '6682': -0.01975398386067216, 'voltage': -0.0031397070784672555, 'isse': -0.01975398386067216, 'ir': -0.09234245295071096, 'jet': 0.03879023819373147, 'apps': -0.10974901465365998, 'members': -0.06419317658561426, 'dye': -0.1475035870960227, 'deterioration': -0.07375179354801135, 'stained': -0.07375179354801135, 'bands': 0.05749705105576251, 'however(before': -0.05208874898241794, 'broke)was': -0.05208874898241794, 'organization': -0.04212764641415009, 'commonly': -0.014643446108591425, 'characters': -0.021152565284460963, 'encounters': -0.045147127197566875, 'transferring': 0.03997755016601868, 'correcting': -0.045147127197566875, 'undisclosed': -0.045147127197566875, 'emergency': -0.21198824427035334, 'cranking': -0.01179765339277031, 'crank': 0.10283335320242165, 'heartattack': -0.10599412213517667, 'voltages': -0.14044879639737484, 'cope': -0.10895873071652297, 'typewriter': -0.03753172648923792, 'q': -0.01876586324461896, 'spaced': 0.012159395714346878, 'overlapping': -0.01876586324461896, 'spaces': 0.09234963941467213, 'esoteric': -0.01876586324461896, 'tabs': -0.01876586324461896, 'binds': -0.023654929136221147, 'resistance': -0.029529942816205967, 'gears': -0.023654929136221147, 'stripped': -0.023654929136221147, 'guidelines': -0.028664951130447903, 'warrantee': -0.023654929136221147, 'diminish': -0.1743052100406372, 'closely': -0.1307290741001208, 'describe': 0.05187681029441621, 'overcompressed': -0.1743052100406372, 'mp3s': 0.009700402268791937, 'mushy': -0.010584959518048364, 'slanted': -0.010584959518048364, 'oversized': -0.010584959518048364, '|\\': -0.010584959518048364, 'accomodate': -0.010584959518048364, 'consequence': -0.010584959518048364, 'miniaturized': -0.010584959518048364, 'shell': 0.04033354787654883, 'programmer': -0.0010160315661218245, 'pipe': -0.010584959518048364, 'escape': -0.010584959518048364, 'character': -0.010584959518048364, 'immideatley': -0.06323799735228046, 'styli': -0.12647599470456092, 'throwing': -0.0853584829703193, 'placement': 0.05383922178090143, 'av': 0.15070836535119322, 'reprogrammed': -0.02462027878870209, 'narrowed': -0.02462027878870209, 'eaten': 0.008767821460679847, 'lg': -0.012323850723028293, 'theory': -0.02462027878870209, 'ge': -0.13472497428677033, 'superadio': -0.09325328499773214, 'dissimilar': -0.06673696902637098, 'boards': 0.1010879211640137, 'superadio2': -0.03162764137373997, 'overated.piossibly': -0.03162764137373997, 'recieve': -0.04637397373996185, 'steps': -0.06088300054502542, 'ehter': -0.05004643187931152, '55': -0.031337382016932355, 'phillips': -0.021465595867624986, 'conked': -0.07998024177528022, 'learning': 0.05472767381549905, 'defunct': -0.07998024177528022, 'reservations': -0.012702923893559077, 'fears': -0.039009658165771344, 'leds': 0.07713949012207268, 'endure': -0.04881355062828062, 'monsters': -0.022629338346986452, 'whirred': -0.022629338346986452, 'vcd': -0.15943715792390634, 'countries': -0.09342418065801827, 'recommed': -0.15943715792390634, 'intutive': -0.04528843664882859, 'occational': -0.04528843664882859, 'burden': -0.04528843664882859, 'bound': -0.0317780619114383, 'restrictions': -0.013139345526162999, 'touchpad': 0.09704255797723596, 'faults': -0.02590448334081902, 'superseding': -0.02590448334081902, 'pushes': -0.02590448334081902, 'rename': -0.02590448334081902, 'named': 0.11746300429140628, 'tags': -0.02833992997572947, 'unprovoked': -0.02590448334081902, 'negligence': -0.02590448334081902, 'overlook': -0.033167006073857676, 'craps': -0.002269283078280661, 'versed': -0.002269283078280661, 'disable': -0.002269283078280661, 'bs': 0.00626278213861517, 'unlock': 0.08043936537056964, 'staying': -0.02105809610262045, 'ordinary': 0.014692163229308164, 'pliers': -0.02105809610262045, 'evidence': -0.05113755224313077, 'refute': -0.05113755224313077, 'st_jx410': -0.047665689853020575, 'strde': -0.047665689853020575, '197': -0.047665689853020575, 'monoral': -0.047665689853020575, 'jx410': -0.047665689853020575, 'onkyo': -0.043068523431683665, 'sr304': -0.047665689853020575, 'expandability': -0.047665689853020575, 'orchestra': -0.14859625824344166, 'softly': -0.07429812912172083, 'flashes': -0.07429812912172083, 'capacitor': -0.03533198369967814, 'blend': -0.03533198369967814, 'rolloff': -0.03533198369967814, 'decoder': -0.010899243706560426, 'pll': -0.03533198369967814, 'khz': -0.03533198369967814, 'pilot': -0.03609544374457144, 'selectivity': 0.0675219047326569, 'alternate': -0.06433522296576966, 'flippin': -0.03533198369967814, 'steaming': -0.03533198369967814, 'turd': -0.03533198369967814, 'china': 0.14920199850644422, 'claps': -0.03533198369967814, 'scammed': -0.03533198369967814, 'comparable': 0.14401004029842596, 'status': 0.0361290552006953, 'discontinue': -0.02058861375657569, 'gashes': -0.07413292719081417, 'dings': -0.07413292719081417, 'unpresentable': -0.07413292719081417, 'rhinoskin': -0.07413292719081417, 'latching': -0.02438633871376325, 'boxwave.com': -0.02438633871376325, 'hardcase': -0.07369230152805366, 'availab': -0.02438633871376325, 'le': -0.02438633871376325, 'liner': -0.011446577318301874, 'sliding': 0.12484368173657776, 'motions': -0.011446577318301874, 'march': -0.037588322799253095, 'lip': -0.011446577318301874, 'reminding': -0.011446577318301874, 'insufficient': 0.01131003905411869, 'delighted': -0.017653817131309948, 'rugged': -0.03913099893781165, 'dealership': -0.017653817131309948, 'toughskins': -0.035307634262619896, 'clips': 0.0760633952005217, 'rough': 0.004695453605112823, 'enjoys': -0.030378777657811405, 'pastime': -0.05736738915398756, 'melt': -0.05736738915398756, 'dependant': -0.012340288682567138, 'holy': -0.11473477830797511, 'grail': -0.11473477830797511, 'itchy': -0.05736738915398756, 'fabric': -0.05736738915398756, 'crushed': -0.14374176117048124, 'review-': -0.05736738915398756, 'substandard': -0.06615539722468702, 'avoi': -0.06615539722468702, 'surroundings': -0.042482958783455066, 'extention': -0.042482958783455066, 'performed': 0.33475513625157727, 'mids': 0.01735636635401589, 'treble': -0.00923178350735999, 'argh': -0.042482958783455066, 'discharged': -0.03111584077903418, 'belkins': -0.03111584077903418, 'seiko': -0.005758224202548078, 'promptly': 0.01451344264609658, 'skins': -0.16603820642977135, 'shelled': -0.11753800243894041, 'definetly': -0.09324859347529957, 'iskin': -0.03555029723915735, 'waiste': -0.05923965478956419, 'exercising': -0.03202505041486704, 'safety': 0.018029008856339464, 'meant': 0.03950961427368546, 'incher': -0.08322591417479472, 'brighter': 0.18300257808205464, 'bulkier': 0.012268266154229381, 'confused': -0.05178039951141092, 'psyched': -0.08322591417479472, 'formats': 0.05573754694927652, 'triple': -0.004336510786505906, 'homemade': -0.05433606393111355, 'confirm': -0.06381486115857607, 'gon': 0.0014169072320530064, 'na': 0.0014169072320530064, 'breaker': -0.08322591417479472, 'realizing': -0.05036276237944074, 'subsequent': -0.05036276237944074, 'lb': -0.1510882871383222, 'miserably': -0.05036276237944074, 'flopped': -0.05036276237944074, 'audiovox': -0.05259841843426209, 'roadtrips': -0.02456173008931028, 'temperatures': -0.02456173008931028, 'shelves': -0.02456173008931028, 'parents': 0.008274750907536913, 'sat': 0.03723624795702639, 'interior': 0.08831262486714686, 'resent': -0.0049721927889821655, 'desert': -0.0049721927889821655, 'funds': -0.0049721927889821655, 'certificate': -0.0049721927889821655, 'processing': -0.04384195257497175, 'practices': -0.0049721927889821655, 'inventory': -0.0049721927889821655, 'prove': 0.004262804969448334, 'centric': -0.0961650273602752, 'unwooded': -0.0961650273602752, 'bush': -0.08041317183902034, 'valleys': -0.0961650273602752, 'overhead': -0.02738815843736418, 'canopy': -0.07677414772606421, 'confrm': -0.0961650273602752, 'tramper': -0.0961650273602752, 'qualities': 0.0023695164475495702, 'oziexplorer': -0.005008947022351995, 'percentage': 0.036772064353360834, 'meters': -0.005008947022351995, 'guatemala': -0.06448693858523698, 'certificates': -0.0033706934101741955, 'inexpesive': -0.04461279049585543, 'preteen': -0.04461279049585543, 'indicate': 0.004065393365484625, 'symbols': -0.08922558099171086, '40.00': -0.03920080973857562, 'wigging': -0.03920080973857562, 'daughters': 0.03480126173754788, 'bedroom': 0.055137312864641554, 'lookes': -0.03920080973857562, 'dumpster': -0.03920080973857562, 'spacebar': -0.32842922863069246, 'glitch': -0.03541227302833012, 'twist': -0.013167225021466883, 'handling': -0.0399568853783733, 'crush': -0.027153403840630055, 'sick': -0.08853397236571825, 'phasing': -0.09580090012757457, 'verbal': -0.05201429672205938, 'affirmations': -0.05201429672205938, 'records': 0.04399819345150716, 'wav': -0.09389365323965768, 'delivers': 0.13480967820291043, 'fussier': -0.05201429672205938, 'simplest': -0.05201429672205938, 'pauses': -0.05201429672205938, 'forwards': -0.05201429672205938, 'reverses': -0.05201429672205938, 'specify': -0.034917623816536306, 'markers': -0.05201429672205938, 'chapters': -0.05201429672205938, 'defined': -0.05201429672205938, 'grabs': -0.05201429672205938, 'spartan': -0.05201429672205938, 'smple': -0.05201429672205938, 'win2': -0.007382832798354299, 'novice': 0.054862631727932404, 'hater': -0.032191499114071445, 'humanity': -0.032191499114071445, 'waking': -0.025355714317366707, 'labeled': 0.08165914852735973, 'organized': 0.08574603992196989, 'layed': -0.025355714317366707, 'confusingly': -0.025355714317366707, 'buzzer': -0.025355714317366707, 'increment': -0.025355714317366707, 'timex': -0.025355714317366707, 'comapared': -0.030170414163188733, 'g-54lp(beware': -0.030170414163188733, 'g54lp': -0.09051124248956612, 'ex': -0.030170414163188733, '71': -0.030170414163188733, '81': -0.030170414163188733, 'e2c': -0.012889366656529492, 'nasty': -0.01454505582399664, 'evidently': -0.02222661013558468, 'sm': -0.03862767322306265, 'thee': -0.03862767322306265, 'rewrites': -0.03862767322306265, '80.00': -0.03862767322306265, 'passport': 0.07723624420441694, 'x50': -0.058756788381227616, 'escort': -0.1478318235832933, 'radar': -0.12286832024915716, 'reseller': -0.04095610674971909, 'cal"s': -0.020478053374859546, 'thumbwheel': -0.020478053374859546, 'cigarette': -0.04779601679981602, 'ignition': -0.020478053374859546, 'excessive': -0.07161171489173294, '�': 0.14312705193272862, 'parked': 0.003671099552507479, 'sun': -0.020478053374859546, 'engineers': 0.05359949779450857, 'accounted': -0.020478053374859546, 'margin': 0.12771653042350237, 'country': 0.15719144176530847, 'ski': -0.020478053374859546, 'troubling': -0.020478053374859546, 'furthermore': -0.016888560545440197, 'coaxial': -0.00921565608654576, 'degrades': -0.0214893580564902, 'dropping': 0.12606125621112918, 'partial': -0.0214893580564902, 'dysfunctional': -0.0214893580564902, 'monroe': -0.09548593160088817, 'toledo': -0.09548593160088817, 'detroit': -0.09548593160088817, 'radi': -0.09548593160088817, 'shutoff': -0.015333709810905987, 'bel': -0.09792397842984099, 'rx65': -0.032641326143280365, 'selfcal': -0.032641326143280365, 'requiered': -0.032641326143280365, 'valentine': -0.032641326143280365, 'detectors': -0.032641326143280365, 'http://www.radarbusters.com/': -0.12108159596716618, 'www.007radardetectors.com': -0.12108159596716618, 'www.consumersearch.com': -0.12108159596716618, 'surrounding': -0.03902597006884596, 'fat': -0.03902597006884596, 'browser': -0.06397699145782297, 'spinning': -0.00635794122267089, 'didnt': -0.01271588244534178, 'one(that': -0.00635794122267089, 'one---': -0.00635794122267089, 'debate': 0.04575417134824191, '369.00': -0.00635794122267089, '7/19/05': -0.00635794122267089, 'birth': -0.00635794122267089, 'may)and': -0.00635794122267089, '93.00': -0.00635794122267089, 'pissed': -0.05426113936841399, 'idle': 0.025989302840200904, 'neet': -0.07938524943013725, 'especiatlly': -0.07938524943013725, '1:1': -0.07938524943013725, 'delivered': 0.01789355351715786, 'sunday': -0.058827726525036005, 'watched': 0.021706638805775648, 'football': -0.006844354989083358, 'season': -0.07888264551458923, 'blaming': -0.058827726525036005, 'ie': -0.11636434295614091, 'skypephone': -0.05689902043659822, 'competitor': -0.03367130187643378, 'numerous': 0.07117030601684117, 'postponements': -0.05689902043659822, 'asus': -0.05059613811918964, 'p525': -0.05689902043659822, 'smartphone': 0.0026029767981723077, 'ce': -0.11379804087319643, 'gsm': -0.11379804087319643, 'chats': -0.05689902043659822, 'whereas': -0.028858537607080587, 'processors': -0.037272369115477176, 'alergic': -0.05689902043659822, 'symbian': -0.05689902043659822, 'sonyericsson': -0.05689902043659822, 'logging': 0.020905214136703182, 'proticol': -0.04453043563774448, 'purchace': -0.04453043563774448, 'united': 0.10887694790326563, 'postal': -0.04453043563774448, 'expierance': -0.04453043563774448, 'recieving': -0.04453043563774448, 'tonight': -0.04556742632979157, 'tanks': -0.004357448666582398, 'experiencing': -0.055065091375229414, 'figures': 0.04660961436755074, 'malfunctions': -0.04556742632979157, 'linkage': -0.09007701620817507, 'babysit': -0.09007701620817507, 'inconsistently': -0.09007701620817507, 'graps': -0.09007701620817507, 'disclosed': -0.09007701620817507, 'doc': -0.09007701620817507, 'misses': -0.09007701620817507, 'page(s': -0.09007701620817507, 'expedient': -0.09007701620817507, 'acrobat': -0.07106129610922637, 'omitted': -0.09007701620817507, '+90': -0.09007701620817507, 'fouls': -0.09007701620817507, 'swing': -0.09007701620817507, 'fujitsu': -0.07106129610922637, 'revisions': 0.03801454442937485, 'g700ap': -0.03226122116500764, 'appalling': -0.03226122116500764, 'report': 0.029913927629484426, 'pixma': 0.09282951907947666, 'ip6000d': -0.09889637298996641, 'laid': -0.08223661584945301, 'anothe': -0.12956077787884232, 'chemical': -0.05712668484795623, 'squishy': -0.05712668484795623, 'beds': -0.05712668484795623, 'slippers': -0.05712668484795623, 'brookstone': -0.05712668484795623, 'theese': -0.01634634072204761, 'fvs338': -0.01634634072204761, 'throughput': -0.0031731015702906947, 'fvs318': -0.01634634072204761, '1.2mbps': -0.01634634072204761, 'infuriated': -0.01634634072204761, 'comprehension': -0.01634634072204761, 'deptartment': -0.01634634072204761, 'netgears': -0.01634634072204761, 'wich': -0.01634634072204761, 'resulted': 0.05105881322496172, 'insist': 0.006978104348908576, 'sued': -0.01634634072204761, 'venting': -0.01634634072204761, 'prosafe': -0.01634634072204761, '30mbs': -0.042591800925906406, 'fsv318v3': -0.042591800925906406, 'measured': 0.04475984052978297, '25mbs': -0.042591800925906406, '6.5mbs': -0.042591800925906406, 'keyword': -0.042591800925906406, 'blocking': 0.013690433741410577, 'checkbox': -0.042591800925906406, '5mbs': -0.042591800925906406, 'keywords': -0.042591800925906406, 'surprisingly': 0.1494189139695957, 'varying': -0.1332745683258878, 'waterproof': -0.20028679308414657, 'clever': -0.030728134036354895, 'gadget': 0.1294107948977154, 'mising': -0.0736667249519972, 'limits': 0.09013209765052699, 'typical': 0.09730484824054467, 'limitation': -0.05168699407775577, 'thingie': -0.06681174352155482, 'fumble': -0.044668775669359444, 'lifesaver': -0.06681174352155482, '50cent': -0.06681174352155482, 'dance': -0.05008296334793779, 'airline': -0.05977116560383573, 'craze': -0.06681174352155482, ';-)': -0.018223327996920377, 'tiresome': -0.2860621808355373, 'canceling': -0.12500100901373165, 'discernible': -0.0841069251363788, 'cloth': 0.014858282156353963, 'loop': 0.0903783265229426, 'stronger': 0.17647668112451556, 'machinery': -0.0841069251363788, 'yanked': -0.0841069251363788, 'surround': 0.14537393916353056, 'he-592': -0.007957862580350446, 'radioshack': 0.026127085652127825, 'receipts': 0.08050644201512419, 'standpoint': 0.011993332645687388, 'outstanding': 0.3738494071235382, 'planes': -0.003975511960637467, 'trains': -0.007957862580350446, 'pennies': 0.04779453449307603, 'silicone': 0.0007188059477695435, 'touchpoints': -0.007957862580350446, 'flange': 0.04250283459691134, 'boat': 0.04391345991380564, 'sleeves': 0.12907934891451844, 'picky': 0.05036420318734271, 'lows': -0.04844128672150946, 'prefers': -0.03515677245908939, 'crowded': 0.06435151483438711, 'affordable': 0.16113190603487748, 'educate': -0.04774554045296218, 'impedence': -0.04774554045296218, 'spectrum': 0.0031017089450587655, 'tangle': -0.0300045333094696, 'untangling': -0.050751320455022494, 'thes': -0.050751320455022494, 'proving': -0.050751320455022494, 'troublesome': -0.03051872768209466, 'hurts': -0.04310483073035147, 'pocketbooks': -0.050751320455022494, 'meantime': -0.050751320455022494, 'tvs': 0.13676036774408637, 'conference': 0.0886108983777258, 'shortcomings': -0.06128901031276754, 'baffles': -0.06128901031276754, 'varient': -0.06128901031276754, 'resetted': -0.06128901031276754, 'lowering': -0.06128901031276754, 'duplex': -0.06128901031276754, 'airplane(with': -0.07162104571450893, 'deluxe': 0.02804894502628616, 'motivation': 0.013051036256022415, 'infinity': -0.01890321615185053, 'desperation': -0.01890321615185053, 'gen': 0.06968013804067878, 'disappeared': -0.01890321615185053, 'titles': -0.03780643230370106, 'pot': -0.01890321615185053, 'pdf': 0.05085606889953022, 'artwork': 0.04372986076608422, 'official': -0.01890321615185053, 'odors': -0.14889795392887314, 'implemented': -0.14889795392887314, 'strap': 0.06417887777573547, 'shoulder': 0.1178764032878656, 'lastly': -0.1208684710356975, 'compartments': -0.08157612646946354, 'stupidly': -0.007195559529710481, 'depress': -0.007195559529710481, 'button"---not': -0.007195559529710481, 'executed': -0.007195559529710481, 'spends': 0.015106260792397446, 'lord': 0.05232439129976783, 'screech': -0.007195559529710481, 'tuned': 0.014741154640508037, 'eton': -0.007195559529710481, 'receptionist': -0.007195559529710481, 'classic': 0.010896267295413655, '1st': 0.1735660442902181, 'gym': -0.10411885945661667, 'unfreeze': -0.0508773168593362, 'exicted': -0.0508773168593362, 'finnaly': -0.0508773168593362, 'amped': -0.0508773168593362, 'dang': -0.0508773168593362, 'happe': -0.0508773168593362, 'reviews!!!!!!!like': -0.06712614812968846, 'reviews-': -0.06712614812968846, 'contour': 0.007982451693428445, 'designs': -0.06712614812968846, 'today(11': -0.06712614812968846, '05': -0.06712614812968846, '.........': -0.06712614812968846, 'recommendations': -0.006852214608772248, 'eating': -0.006852214608772248, 'h.': 0.02559459019779441, 'dec.': -0.012708090210534552, 'posting': -0.03748358213799581, 'rats': 0.05672714453942632, 'differentce': -0.21586073746961684, 'faceplate': 0.11549192951580428, 'chassis': -0.015349924293675817, 'tighted': -0.015349924293675817, 'tighten': -0.015349924293675817, 'maxtor': -0.06225304376265365, 'winning': -0.015349924293675817, 'trusting': -0.017533131992591662, 'gamepad': 0.029043906567932556, 'controllers': -0.01947065428487736, 'dsc': 0.06574689495164876, 's40': -0.012124606870215009, 'veiw': -0.012124606870215009, 'durring': 0.02335923218063364, 'bothering': 0.017827900552367108, 'persistance': -0.0016695671131777504, 'restocking': -0.028854138515569526, 'fee': -0.04909742995309086, 'restock': -0.0016695671131777504, 'fees': -0.0016695671131777504, 'f@#k': -0.0016695671131777504, 'isp': -0.005767794696840243, 'apartment': 0.07936607004777943, 'landlord': -0.0028838973484201216, 'assumption': 0.021644880333576966, 'cloning': -0.0028838973484201216, 'arose': -0.0028838973484201216, 'tuesday': 0.07195996214339725, 'x.': 0.0019289180944340209, 'wrt54': -0.019317894660128357, 'hp4705': -0.011979448193752735, 'hp5510': -0.037338724004159496, 'alignment': -0.06211592546318443, 'voila': -0.04080362674223049, 'grammar': -0.031057962731592215, 'inability': -0.03861236868422118, 'variant': -0.031057962731592215, 'knowlege': -0.031057962731592215, 'hire': -0.031057962731592215, 'native': 0.09972191978948383, 'periodically': 0.033991488839557375, 'eithernet': -0.023084709229850064, 'f8z063': -0.10831003870717175, 'blk': -0.10831003870717175, 'nanos': -0.1387392608549153, 'wider': -0.0925275053432602, 'sb': -0.01916781421380974, 'conclusion': 0.04261009510023509, 'blaster': -0.01916781421380974, 'ca-739': -0.028766101652634223, 'horrified': -0.028766101652634223, 'denver': 0.004586951030816249, 'amounts': -0.03326744578490147, 'river': -0.028766101652634223, 'winter': -0.01323996922493509, 'oregon': -0.01323996922493509, 'wash.': -0.01323996922493509, 'dc': 0.03236381897432532, 'interuption': -0.01323996922493509, 'hillsides': -0.01323996922493509, 'tall': 0.038981305683715245, 'pacific': -0.01323996922493509, 'northwest': -0.01323996922493509, 'wondered': 0.028259640941283953, 'nw': -0.01323996922493509, 'tunnel': 0.10778023071506072, 'flutuates': -0.01323996922493509, 'ruling': -0.01323996922493509, 'sunlight': -0.010885509794344076, 'remainder': -0.01323996922493509, 'inducing': -0.01323996922493509, '~30': -0.07024538641343056, 'simcity': -0.01045714021054007, 'enjoyable': -0.03412395005915845, 'slimmer': -0.07024538641343056, 'keyboads': -0.0312923202945373, 'inlets': -0.0312923202945373, 'datavac': -0.0312923202945373, 'sucking': -0.1119827109938709, 'child': -0.1119827109938709, 'substantial': -0.003462353637777587, 'reaches': 0.0036312506392461807, 'matte': -0.02288914404722026, 'comcast': -0.046709882482669024, 'concluded': -0.09101539166595128, 'rural': -0.08594884290091466, '1s': -0.05702341291911156, '0s': -0.05702341291911156, 'reads': -0.04164399822600816, 'nifty': 0.06594611557784437, 'gradually': 0.02194487378907667, 'gradual': -0.03739826611805156, 'transistor': 0.03221192476478997, 'advertises': 0.1275797357425745, 'resuted': -0.028404970569138318, 'mess': -0.0327950627650669, 'undone': -0.028404970569138318, 'orgaized': -0.028404970569138318, 'genre': -0.028404970569138318, 'author': -0.028404970569138318, 'dvd740e': -0.06497996187922989, 'cdr': -0.06497996187922989, 'lightscribe': -0.12995992375845977, 'dvdr': -0.06497996187922989, '30pk': -0.06497996187922989, 'presented': -0.058213737473963356, 'bonus': 0.06514751846506178, 'vent': 0.049224899738980386, 'flakey': -0.006324773094761893, 'ignoring': -0.006324773094761893, 'suffers': -0.0020546673669511657, 'damaging': 0.041886475230801364, 'developer': -0.025157642066962176, 'filmmaking': -0.025157642066962176, 'filmmaker': -0.025157642066962176, 'heavily': 0.024909134357463336, 'harddrive': -0.025157642066962176, 'daisychain': -0.025157642066962176, 'rpm': -0.025157642066962176, '----': -0.001994765577148928, 'bridge': 0.0598482655653163, 'varioius': -0.025157642066962176, 'projects': -0.009515330806870908, 'associate': -0.025157642066962176, '-----': -0.025157642066962176, 'housed': -0.025157642066962176, 'indestructive': -0.025157642066962176, 'sidenote': -0.025157642066962176, 'jabra': -0.1282928431353179, 'lacks': 0.10726079148793065, 'boomy': 0.09081690658531828, 'ripping': -0.048617111415305315, 'ultraata': -0.06131049891371787, 'frying': -0.06131049891371787, 'segate': -0.06131049891371787, 'baracuda': -0.06131049891371787, '7200.8': -0.06131049891371787, 'bidder': -0.06131049891371787, 'playlists': -0.11010536885213953, 'unbelievable': 0.12884623451058508, 'documented': 0.015483670193156874, 'forums': 0.0882872590214533, 'raving': -0.03906505830941979, 'fixable': -0.03906505830941979, 'occurs': -0.022700075250676726, 'statistically': -0.039996872989623115, 'jsut': -0.039996872989623115, 'thread': -0.006581182654943128, 'forum': 0.013008633241190622, 'titled': -0.006581182654943128, 'befsr41': -0.006581182654943128, 'v4': -0.02846911203981883, 'url': -0.006581182654943128, 'occur': -0.006581182654943128, 'simplicity': -0.011809734447383551, 'tricks': -0.20582769413812974, 'treats': -0.15928442311884586, 'shouting': -0.0256640073089681, 'sx700s': -0.0256640073089681, 'cellphone': 0.1228500747619899, 'pager': -0.011982160171409599, 'affair': -0.011982160171409599, 'lousy': 0.01955764040560401, 'former': -0.009239218871955921, 'category': 0.05818473256715972, 'laws': -0.035946480514228794, 'cruise': -0.023964320342819197, 'midland': -0.05640438347660108, 'cobra': 0.08620281576499916, 'stylish': 0.1867486018878292, 't6500r': -0.035946480514228794, 'confronted': -0.011982160171409599, 'undestand': -0.011982160171409599, 'forgiven': -0.011982160171409599, 'recharged': -0.011982160171409599, 'mexican': -0.011982160171409599, 'riviera': -0.011982160171409599, 'puerto': -0.011982160171409599, 'vallarta': -0.011982160171409599, 'mazatlan': -0.011982160171409599, 'cabo': -0.011982160171409599, 'lucas': -0.011982160171409599, 'encased': -0.011982160171409599, 'keyed': -0.011982160171409599, 'alkaline': -0.011982160171409599, 'conductors': -0.011982160171409599, 'recharger': -0.011982160171409599, 'outsourced': -0.023964320342819197, "int'l": -0.011982160171409599, 'ltd': -0.011982160171409599, 'genuine': 0.008745209284263507, 'mistaken': 0.025269122070143472, 'talkabout': -0.011982160171409599, 'rounded': 0.01189412125091914, 'vibrate': 0.052625580958724695, 'noaa': 0.03645324731271804, 'qt': -0.0030973724203754347, 'ensures': -0.011982160171409599, 'ptt': -0.011982160171409599, 'garbled': -0.011982160171409599, 'merchants': 0.010050838315616225, 'gmrs': -0.018801461158867015, 'lake': 0.01674894685080116, 'vehicles': 0.10483081765377462, 'i-5': -0.011982160171409599, 'communications': 0.015048811665518863, 'largest': 0.1054333744662758, 'communicate': -0.026243391762914986, 'spouse': -0.011982160171409599, 'reviewing': 0.027424824537873465, 'gxt500': -0.011982160171409599, 'wattage': 0.08384452196164785, 'increases': -0.05440344143765735, 'reveiw': 0.002072654969347742, 'biopod': -0.04689671173607501, 'omnipass': -0.023448355868037504, '2.09': -0.023448355868037504, 'v2.09': -0.023448355868037504, 'firefox': -0.004634508474022362, 'halfway': -0.015158455568831027, 'sectors': -0.030316911137662054, 'unformattable': -0.015158455568831027, 'cute': 0.18363059608144086, 'ornaments': -0.015158455568831027, 'embroidered': -0.06935064371159896, 'royal': -0.06935064371159896, 'pouch': 0.13574869736785095, 'sew': -0.06935064371159896, 'fleece': -0.06935064371159896, 'tuck': -0.09658616956565608, 'catching': -0.06935064371159896, 'monogrammed': -0.06935064371159896, 'millenium': -0.0023241134648923174, 'request': 0.07688784561590882, 'deaf': 0.09800419094750899, 'hl-1440': -0.007493585581778332, 'envelopes': -0.014987171163556664, 'realtime': -0.06505906138587328, 'monitoring': 0.0019898029811487544, 'crisscrossing': -0.03252953069293664, 'automotive': -0.03252953069293664, 'boiled': -0.03252953069293664, '2720': -0.015693887620558396, '2730': -0.03252953069293664, 'unacceptably': -0.03252953069293664, 'routing': 0.10973218820611855, 'lookup': -0.03252953069293664, 'deficient': 0.0034144380006262153, 'suction': 0.2527370140615149, '1.25': -0.0072503505904338095, 'prohibits': -0.019389650856785207, 'compounding': -0.03252953069293664, 'positioning': -0.03252953069293664, 'beanbag': -0.03252953069293664, 'friction': 0.05154694226474369, 'fabricate': -0.038281127589750316, 'dismount': -0.03252953069293664, 'remount': -0.010392946538420059, 'straw': -0.03252953069293664, 'timely': 0.1291278008279121, 'manner': 0.1291278008279121, 'gtm11': -0.03252953069293664, 'factoring': -0.03252953069293664, 'wheels': -0.023570205469684524, 'lay': -0.024065201275440654, '750': -0.01762731336881048, 'linux': 0.047540941567630744, '98se': -0.07041858356075689, 'maufacturer': -0.044805994836409825, '.zip': -0.044805994836409825, 'winzip': -0.08961198967281965, 'unzip': -0.044805994836409825, 'dvd+': -0.06259929469817867, 'jitters': -0.06259929469817867, 'rejects': -0.06259929469817867, 'sonic': -0.0788886018722352, 'playable': -0.08500089132297443, 'copiable': -0.108536095538387, 'transmitting': -0.039313219164386286, 'buzzed': -0.03776578791404419, 'surprising': -0.03776578791404419, 'hunted': -0.03776578791404419, 'wrapping': -0.0027902466370485156, 'tunecast': -0.017727701369309266, 'bridges': 0.010403694283092353, 'trucks': -0.056992786493093396, 'distant': 0.16294989591997827, 'poo': -0.056992786493093396, 'diamond': -0.04313699232918477, '60;<<although': -0.015166298427772534, 'nmea-0183': -0.015166298427772534, 'regrettably': -0.015166298427772534, 'developing': 0.003238231757648679, 'website.>>>': -0.015166298427772534, 'ml-300': -0.028586627249706224, 'forms': -0.023191586473770957, 'applications': -0.021378016980726045, 'printwheel': -0.028586627249706224, 'chief': -0.028586627249706224, 'pencil': -0.028586627249706224, 'sized': 0.20876062329735617, 'aloh': -0.0778858170422945, 'dire': -0.06242184320201371, 'excedrin': -0.06242184320201371, 'migraine': -0.06242184320201371, '39': 0.016455648481817083, 'busted': -0.06242184320201371, 'engaging': -0.06242184320201371, 'bobbing': -0.06242184320201371, 'stoop': -0.06242184320201371, 'considers': -0.06242184320201371, 'duds': -0.06242184320201371, 'xtrememac': -0.06242184320201371, 'crashing': -0.00937353630301826, 'erases': -0.009670796607461915, 'sensing': -0.009670796607461915, 'triggers': -0.009670796607461915, 'splotchy': -0.07028567085443073, 'painted': -0.07028567085443073, 'legs': -0.048420976564496315, '1/4th': -0.046364267060934834, 'expander': -0.09272853412186967, 'explaination': -0.046364267060934834, 'expanded': -0.002979341178736671, 'unexpanded': -0.046364267060934834, 'srx': -0.028686550078710207, 'utilizing': -0.028686550078710207, 'fleas': -0.05973406988409652, 'abmismal': -0.05973406988409652, 'quickzoom': -0.05973406988409652, 'cams': -0.1667683075066628, '34': -0.08429083844803414, 'skeptical': 0.06010345883209955, 'waiving': -0.04214541922401707, 'rebuttal': -0.04214541922401707, 'electric': -0.08115061306841341, 'eardrums': -0.07841642846632627, 'chair': 0.044921440953357185, 'stood': -0.023689094709166622, 'puddle': -0.08115061306841341, 'kididng': -0.08115061306841341, 'occured': -0.08115061306841341, 'membrane': -0.08115061306841341, 'positioned': -0.04775341561827239, 'isolated': 0.001347387651115043, 'hx2755': -0.17866840092024647, '94': -0.17866840092024647, 'wal': -0.06123060568474906, 'wanders': -0.0074846961307288825, 'trails': -0.0074846961307288825, 'surfaces': 0.035809893031689514, 'precision': 0.0026695184988422406, 'erratically': -0.0074846961307288825, '984': -0.061441061132983886, 'attendent': -0.030720530566491943, 'tansaction': -0.05412519364939739, 'retune': -0.14918100931602277, 'sporadically': -0.0658613889951153, 'tap': -0.11725920602989706, 'jammed': -0.053118778848224135, 'podtape': -0.0658613889951153, 'sender': -0.006512565199840889, 'recoton': -0.006512565199840889, '2950': -0.006512565199840889, 'emma': -0.006512565199840889, 'mary': -0.006512565199840889, '32746': -0.006512565199840889, 'chin': -0.006512565199840889, 'bacl': -0.02144230530935537, 'yrs': -0.1580553265318328, 'bot': -0.05430469939100522, '760': -0.06321802631243022, 'at-65': -0.06321802631243022, 'round': 0.05595138852183613, 'rectangular': -0.05781271301704993, 'cardboard': -0.06321802631243022, 'pictured': 0.016689167161375567, 'at-65)in': -0.009775523557148695, 'jennifer': -0.009775523557148695, 'investigate': -0.009775523557148695, 'apologetic': -0.009775523557148695, 'motorcycles': -0.00784983182640316, 'motorcycle': -0.023549495479209457, 'helmut': -0.01569966365280632, 'unsafe': -0.00784983182640316, 'distractions': -0.00784983182640316, 'ryder': -0.00784983182640316, 'lapse': -0.00784983182640316, 'concentration': -0.00784983182640316, 'outright': -0.00784983182640316, 'motorcycles-': -0.00784983182640316, 'headstets': -0.00784983182640316, 'breakup': -0.00784983182640316, 'usless': -0.00784983182640316, '1/8': 0.02154209635972442, 'discrace': -0.00784983182640316, 'bogus': -0.00784983182640316, 'opens': -0.03397399240211569, 'opportunity': 0.0004429099967318928, 'bruce': -0.03397399240211569, 'payn': -0.03397399240211569, 'frail': -0.016117910441928222, '85': 0.18149447240446293, 'survive': -0.016117910441928222, 'hurricane': -0.016117910441928222, 'alley': -0.016117910441928222, 'west': -0.016117910441928222, 'coast': -0.016117910441928222, 'florida': -0.016117910441928222, 'assemble': 0.0903616501223776, 'touting': -0.016117910441928222, 'assistance': 0.06202682254070824, 'butter': -0.016117910441928222, 'knife': -0.016117910441928222, 'hinge': 0.05142135889438463, 'injured': -0.016117910441928222, 'inappropriately': -0.054108844677843916, '20.18': -0.18756287694943247, 'science': -0.10382090885578288, 'rhapsody': -0.1474335920938232, 'caliber': -0.10382090885578288, 'patient': -0.08231757302966648, 'mtp': -0.003017023669329443, 'host': 0.029626837139729464, 'reverted': -0.016095909020419463, 'msd': -0.016095909020419463, 'mass': -0.07653486598988785, 'drag': -0.022028784294786125, 'dragging': -0.016095909020419463, 'pointless': 0.021948800091673003, 'scattered': -0.016095909020419463, '82': -0.032191818040838927, 'suggesting': 0.03590643416956451, 'dump': -0.016095909020419463, 'method': -0.004340290990029864, '8+gb': -0.016095909020419463, 'swan': -0.016095909020419463, 'bach': -0.016095909020419463, 'cantata': -0.016095909020419463, 'playlist': 0.05135087951582376, 'm3u': -0.016095909020419463, 'syncing': -0.002673973181535262, 'hopeless': -0.016095909020419463, 'plagued': -0.07653486598988785, 'hopelessly': -0.011861923498114145, 'throughly': -0.016095909020419463, 'overhaul': -0.016095909020419463, 'merit': -0.016095909020419463, 'e280': -0.06463392559401919, 'versatility': -0.046738455933988426, 'msc': -0.06463392559401919, 'drawbacks': 0.053118553861998895, 'creations': -0.06463392559401919, 'folders': 0.07701736962849724, 'catogorizing': -0.06463392559401919, 'wishes': -0.06463392559401919, 'adopts': -0.06463392559401919, 'mentality': -0.06463392559401919, 'masters': -0.06463392559401919, 'settle': 0.17621036944641544, 'dumping': -0.06463392559401919, 'e200': -0.06463392559401919, 'itrip': 0.3619515421118047, 'opinions': -0.010247055490287378, 'hoaxes': -0.01438416800853621, 'interferes': 0.0004555032144797125, 'forbidden': -0.03359704833063283, 'tagged': 0.016064648916657032, 'phony': -0.03359704833063283, 'hesitant': 0.10207882278894488, 'cound': -0.05782493602000558, 'helping': -0.04435325636921918, 'blackouts': 0.10556841225466732, 'spike': 0.11175251928834795, 'irregular': 0.10556841225466732, 'lt;2': 0.10556841225466732, 'es': 0.06175182435799808, '500s': 0.030052347283626837, 'unexpected': 0.034465867299966514, 'conditioning': 0.030052347283626837, 'offline': 0.07587762652099193, 'breakage': 0.08862173791970757, 'slim': 0.1390246161311982, 'tastes': 0.13510867321464468, 'satisfy': 0.1352542724804013, 'openion': 0.06553536627398192, 'intime': 0.06553536627398192, 'bye': 0.06553536627398192, 'kira': 0.06553536627398192, 'outdoor': 0.2164726123814769, 'trail': 0.1403686046071993, 'wild': 0.136692995431141, 'weather': 0.1376898957349318, 'muc': 0.05933523044242866, 'pretend': 0.10091606713613217, 'photographer': 0.17445035645744159, '127': 0.10091606713613217, 'smartmedia': 0.10091606713613217, 'breeze': 0.11768569667777629, 'respectable': 0.0013939914369249292, 'aways': 0.0013939914369249292, 'glow': 0.05895317000998814, 'minuses': 0.11812350365728641, 'linked': 0.09790176480756202, 'unrelated': 0.09790176480756202, 'runners': 0.09790176480756202, 'shutter': 0.04058523651681843, 'fps': 0.11589660640309435, 'ultimate': 0.07971003195194913, 'duo': 0.08491173775294208, 'succession': 0.03344762577426946, 'digitial': 0.20799384894835868, 'sdsdh-512': 0.20799384894835868, '901': 0.22418490713995032, 'unopened': 0.20799384894835868, 'sdsdh-1024': 0.02847890425216006, 'absoultely': 0.02847890425216006, 'excelent': 0.08007461342394581, 'loosened': 0.01932465842918305, 'appreciate': 0.04967904696815284, 'consistantly': 0.027901600748002412, 'pleasantly': 0.03925709529953122, 'proven': 0.034811416300925435, 'cake': 0.0967990202849495, 'paintshop': 0.020353823926775972, 'painter': 0.020353823926775972, 'photoshop': 0.11057842775900713, 'nulooq': 0.02611836559796134, 'expectation': 0.08526200058187175, 'doubts': 0.05642713978203734, 'junkie': 0.14320076772119322, 'ti': 0.14731536964432893, 'brush': 0.050704108718692936, 'pan': 0.10124365204710711, 'zoom': 0.10762806706136946, 'horizontally': 0.0840920675462186, 'nec': 0.05955823883384147, '2500a': 0.05955823883384147, '4x.': 0.05955823883384147, 'qualified': 0.16557359729739898, "f'n": 0.16557359729739898, 'stamp': 0.19907023992888684, 'g15': 0.05328951714839374, 'lanning': 0.05328951714839374, 'paced': 0.05328951714839374, 'qam': 0.0496879462112116, 'unscrambled': 0.0496879462112116, 'discovery': 0.0496879462112116, 'weep': 0.0496879462112116, 'happiness': 0.0496879462112116, 'illuminated': 0.0496879462112116, 'negatives': 0.17501349592959364, 'def': 0.14664448404045022, 'criterion': 0.029328896808090102, 'worried': 0.15222332939231942, 'commercials': 0.15320101467509822, 'preceded': 0.029328896808090102, 'contributors': 0.029328896808090102, 'contributor': 0.058657793616180204, 'individuals': 0.029328896808090102, 'consistent': 0.029328896808090102, 'individually': 0.029328896808090102, 'displaying': 0.05544986926870838, 'variability': 0.029328896808090102, 'breath': 0.029328896808090102, 'flipping': 0.029328896808090102, 'stumbled': 0.08960735451772663, 'altitude': 0.09108333926141142, '10,000': 0.03483901227114192, 'sea': 0.03696119014141047, 'kick': 0.04249897614247166, 'blame': 0.10088920552732293, 'shipper': 0.029328896808090102, 'eagle': 0.16353330879107705, 'dallas': 0.029328896808090102, 'livelihood': 0.029328896808090102, 'weary': 0.06739032181859063, 'perosn': 0.03775876508210982, 'tossed': 0.041535750926246666, '.....................': 0.03775876508210982, 'omen': 0.03775876508210982, 'occasional': 0.04373166522470977, 'signaled': 0.03775876508210982, 'lx': 0.03775876508210982, 'dx': 0.0921423011719149, 'availability': 0.05005461846749139, 'unfair': 0.03775876508210982, 'downright': 0.03775876508210982, 'crisp': 0.3148969404110359, 'degraded': 0.05736107682401837, 'anyday': 0.039196285771155796, 'owning': 0.13920541660628796, 'viable': 0.10088450011310471, '9510i': 0.07366388119043829, 'recovery': 0.07366388119043829, 'fanstastic': 0.07366388119043829, 'guides': 0.08646887775648672, 'quot;abc"': 0.07366388119043829, 'admitt': 0.06334457646320933, 'ohtherwise': 0.06334457646320933, 'energy': 0.0723504237171935, 'sprare': 0.0723504237171935, '7900': 0.0723504237171935, 'gtx': 0.0723504237171935, 'bi---': 0.0723504237171935, 'college': 0.09842834387974342, 'dorm': 0.04230524603725448, 'fantasy': 0.0536720926192198, 'lives': 0.16930744468676678, 'playstation': 0.03618821970319387, 'downside': 0.16238730358140105, 'budget': 0.11359132288992266, 'h5': 0.07967306034045966, '2700mah': 0.07967306034045966, 'intuos3': 0.016327819578366116, '6x11': 0.016327819578366116, 'programed': 0.016327819578366116, 'strips': 0.016327819578366116, 'progams': 0.016327819578366116, 'joy': 0.029406099047326637, 'alowing': 0.016327819578366116, 'versa': 0.03408653520029817, 'eraser': 0.016327819578366116, 'inactive': 0.016327819578366116, '20d': 0.07488011350589982, 'slr': 0.013535177476198602, 'transient': 0.013535177476198602, 'fiddly': 0.013535177476198602, 'insecure': 0.013535177476198602, 'buckle': 0.02774801588763031, 'junction': 0.013535177476198602, 'edged': 0.013535177476198602, 'chasis': 0.013535177476198602, 'lens': 0.07801462048483838, 'plate': 0.013535177476198602, 'tripod': 0.0933902765728014, 'fujifilm': 0.08808118750471479, 'i`ve': 0.08808118750471479, 'don`t': 0.044040593752357395, 'ventilation': 0.07179006226064469, 'greatest': 0.07217487592706798, 'recordable': 0.044040593752357395, 'edit': 0.11515212492852975, 'you`ve': 0.044040593752357395, 'vcrs': 0.044040593752357395, 'stored': 0.1371994047408115, 'a++': 0.06248741240134171, 'effusive': 0.05195829339558034, 'nemo': 0.05195829339558034, 'harry': 0.05195829339558034, 'potter': 0.05195829339558034, 'kdf-42e2000': 0.05195829339558034, '3lcd': 0.05195829339558034, 'projection': 0.05195829339558034, 'loads': 0.14839886336391947, 'sacrifice': 0.05195829339558034, 'squat': 0.05195829339558034, 'recode': 0.022746341778872366, 'awaits': 0.022746341778872366, 'sharpen': 0.022746341778872366, 'transfered': 0.06820614184050748, 'editing': 0.1320711924319228, 'proficient': 0.06858996051201201, 'scored': 0.06858996051201201, 'gross': 0.06858996051201201, 'ignorance': 0.06858996051201201, 'astonishing': 0.06858996051201201, 'framed': 0.06858996051201201, 'challenged': 0.06858996051201201, 'jewel': 0.06352955577850583, 'conserve': 0.06352955577850583, 'accidentaly': 0.013745423345001655, 'crack': 0.13227042592500865, 'cats': 0.13066235566147982, 'knocking': 0.06138271161141662, 'corner(s': 0.06138271161141662, 'drained': 0.18329772980352568, 'cochlear': 0.09119373009839175, 'implant': 0.1823874601967835, 'draining': 0.0882601903787943, 'counts': 0.09119373009839175, 'values': 0.09880042044893882, 'washer': 0.06923036986064325, 'settlement': 0.06923036986064325, 'esaki': 0.06876440311643219, 'si': 0.03438220155821609, 'ta': 0.09403530255030225, 'campion': 0.03438220155821609, 'tremendo': 0.03438220155821609, 'di': 0.06876440311643219, 'sistema': 0.03438220155821609, 'pa': 0.10502451191917808, 'por': 0.06876440311643219, 'potret': 0.06876440311643219, 'ariba': 0.06876440311643219, 'bo': 0.13752880623286437, 'hopi': 0.03438220155821609, 'bon': 0.03438220155821609, 'facil': 0.03438220155821609, 'pone': 0.06876440311643219, 'saca': 0.03438220155821609, 'systema': 0.03438220155821609, 'aki': 0.03438220155821609, 'chip.(tremendo': 0.03438220155821609, 'quirks': 0.06757802604554781, 'alswys': 0.0034304993949482512, 'dj': 0.06727270322266744, 'flexible': 0.13387507120251124, 'backpack': 0.30733558870924416, 'nascar': 0.12481910092234301, 'racing': 0.11791065385197198, 'reprogramable': 0.11404101512663346, 'dv': 0.06241697975163379, 'supermarkets': 0.07679504115437677, 'stealing': 0.07679504115437677, 'theatre': 0.012066877210200909, 'hardy': 0.02662455687430376, 'walkmen': 0.02662455687430376, 'shortwave': 0.02662455687430376, 'fh': 0.02662455687430376, 'e656': 0.02662455687430376, '1992': 0.05963843959615095, 'mhcec70': 0.02662455687430376, 'pluses': 0.02662455687430376, 'unattractive': 0.02662455687430376, 'resembles': 0.02662455687430376, 'vs': 0.045617292798791655, 'glance': 0.02662455687430376, 'skimpy': 0.02662455687430376, 'suits': 0.02662455687430376, 'blasted': 0.06322956390453124, 'pm71sd': 0.02662455687430376, 'crippled': 0.02662455687430376, 'drm': 0.12731982673226877, 'brian': 0.09127526449402172, 'wap54': 0.09127526449402172, 'client': 0.07514246956260741, 'repeater': 0.030425088164673875, 'virtual': 0.030425088164673875, 'hesitated': 0.03169298452650475, 'newness': 0.030425088164673875, 'investigation': 0.04122034920051286, '192.168.1.245': 0.030425088164673875, 'userid': 0.06085017632934775, 'telnet': 0.030425088164673875, 'mobilemate': 0.05428917424856632, 'peron': 0.05897392810123074, 'handhleds': 0.05897392810123074, 'delorme': 0.05897392810123074, 'plans': 0.11260089715084586, 'hh': 0.11794785620246148, 'nemerous': 0.05897392810123074, 'mappoint': 0.05897392810123074, 'storing': 0.18657337794944398, '50,000': 0.05897392810123074, 'analize': 0.05897392810123074, 'elevation': 0.05897392810123074, 'yellow': 0.19757001780044128, 'stiched': 0.057556486568793516, 'acrilic': 0.057556486568793516, 'mux': 0.057556486568793516, 'scraped': 0.057556486568793516, 'serface': 0.057556486568793516, 'setups': 0.04249694045949037, 'uplink': 0.16469020347886607, 'latitude': 0.06050076133308427, 'pp01l': 0.06050076133308427, 'walls': 0.21172532548454448, 'inbetween': 0.06050076133308427, '11mb': 0.06050076133308427, 'cisco': 0.06050076133308427, 'aironet': 0.06050076133308427, 'closest': 0.07107120030084843, 'neighbor': 0.07865811414304608, 'subject': 0.18391388001172215, 'aback': 0.06050076133308427, 'snooping': 0.06050076133308427, 'pertains': 0.021277328991351548, 'pauh217u': 0.021277328991351548, 'dryer': 0.021277328991351548, 'inaccessible': 0.021277328991351548, '/inconvenient': 0.021277328991351548, 'ben': 0.06805839620507304, 'formed': 0.014339711539368744, 'dpi': 0.014339711539368744, 'minidisc': 0.021954044636290908, 'lectures': 0.021954044636290908, 'lessons': 0.021954044636290908, 'mono': 0.09688171195929103, 'minidiscs': 0.043908089272581816, 'trickier': 0.021954044636290908, 'agc': 0.021954044636290908, 'booming': 0.021954044636290908, 'mikes': 0.021954044636290908, 'refining': 0.021954044636290908, 'batter': 0.021954044636290908, 'classes': 0.043908089272581816, '.rec': 0.021954044636290908, 'converts': 0.025226610441723432, '.mp3': 0.10333576346440139, 'amout': 0.04612225884727755, 'molding': 0.021954044636290908, 'adaptors': 0.032479321749601775, 'alows': 0.021954044636290908, 'ifp-799': 0.021954044636290908, 'marathon': 0.021954044636290908, 'marathons': 0.021954044636290908, 'hubby': 0.1298670320077463, 'rehoboth': 0.017619571768691247, 'sirius': 0.017619571768691247, '2007': 0.017619571768691247, 'lettering': 0.07604387267894483, 'daylight': 0.017619571768691247, 'sunglasses': 0.017619571768691247, 'adapt': 0.017619571768691247, 'bolt': 0.017619571768691247, 'little/': 0.017619571768691247, 'costl': 0.027750147625480993, 'valid': 0.17366715553954784, 'cleared': 0.12962318332322362, 'importing': 0.009390174657099442, '40x': 0.051914028191886126, 'fastest': 0.06653095416539853, 'sucker': 0.051914028191886126, 'jpeg': 0.07318897152673012, 'raw': 0.051914028191886126, '444': 0.051914028191886126, 'hesitate': 0.217052152545149, 'awsome': 0.19882484861414637, '5yrs': 0.09247272178435513, 'ebooks': 0.12055978282781456, 'winding': 0.1311725386925991, 'costed': 0.056765145963197816, 'electricity': 0.13299806357410324, 'wool': 0.11353029192639563, 'peacoat': 0.056765145963197816, 'clothes': 0.056765145963197816, 'scarf': 0.056765145963197816, 'comparied': 0.056765145963197816, 'abuse': 0.11977676281224352, 'flawlessy': 0.051329427040280866, 'deattaches': 0.051329427040280866, 'reattaches': 0.051329427040280866, '10.4.8': 0.051329427040280866, 'ahhhhh': 0.17283691116369587, '480mb': 0.055637812919563726, 'ships': 0.06471207029156407, 'hazards': 0.055637812919563726, '9.1': 0.055637812919563726, 'slinger': 0.1209153086119266, 'tamrac': 0.0604576543059633, 'unfotunately': 0.03022882715298165, 'sufficient': 0.08257433760198722, 'bottle': 0.21350349795226822, 'addressed': 0.03022882715298165, 'pouches': 0.03733584760477251, 'backpacks': 0.050363668912874644, 'duffel': 0.0030511478138203576, 'lowepro': 0.006102295627640715, 'customizable': 0.0030511478138203576, 'vests': 0.0030511478138203576, 'belts': 0.0030511478138203576, 'waisted': 0.0030511478138203576, 'hood': 0.006102295627640715, 'lenses': 0.0418536399860586, 'tubes': 0.07931369826967835, 'teleconverters': 0.0030511478138203576, 'evenly': 0.0030511478138203576, 'vest': 0.0030511478138203576, 'manageable': 0.005395130280961699, 'thousands': 0.06830946924059242, 'strapped': 0.0030511478138203576, 'zoos': 0.0030511478138203576, 'unzipping': 0.0030511478138203576, 'safer': 0.0030511478138203576, 'rain': 0.08241668144580308, 'snow': 0.0030511478138203576, 'ipo': 0.21144188903489092, 'gray': 0.01268179767192348, 'closure': 0.01268179767192348, 'elements': 0.20447642945368952, 'f/2.8l': 0.01268179767192348, 'usm': 0.02536359534384696, 'f/4l': 0.01268179767192348, 'f/3.5': 0.01268179767192348, '4.5': 0.023124884299155334, 'ef': 0.01268179767192348, 'efs': 0.01268179767192348, 'res': 0.1389218383430567, '2gbs': 0.08048518166949944, 'jpegs': 0.012216020834111064, '8.2': 0.020960827774879443, 'mp': 0.16339738097663808, 'beautifully': 0.14943392223249158, 'pink': 0.18339667306650992, 'buff': 0.16628691247128904, 'boys': 0.06259379006975353, 'aged': 0.03147577769297088, 'procedures': 0.031296895034876766, 'permitted': 0.031296895034876766, 'occassionally': 0.08738245436528136, 'hinder': 0.031296895034876766, 'children': 0.08867993973191302, 'skipdoctor': 0.06259379006975353, 'contained': 0.06902931975187353, 'useable': 0.031296895034876766, 'necessarily': 0.04338485603673963, 'passes': 0.031296895034876766, 'acheive': 0.031296895034876766, 'repeating': 0.031296895034876766, 'buffing': 0.031296895034876766, 'sanding': 0.031296895034876766, 'severity': 0.031296895034876766, 'grime': 0.031296895034876766, 'visable': 0.031296895034876766, 'fill': 0.11894295412008114, 'carefull': 0.03469508863721194, 'ebookman': 0.10408526591163597, 'flier': 0.03469508863721194, 'huh': 0.03469508863721194, 'arrive': 0.2343081190276189, 'rio': 0.01206369948760619, 'flickering': 0.07044835800129251, 'checks': 0.0997842381100653, 'lately': 0.13089767478897998, 'rj45': 0.024014013611069338, 'relief': 0.18537372337404728, 'ergonomically': 0.08115987406303031, 'ccradio': 0.049881023958083734, 'reputation': 0.049881023958083734, "60's": 0.049881023958083734, 'tinnier': 0.049881023958083734, 'immediatey': 0.049881023958083734, 'neareast': 0.049881023958083734, 'happily': 0.15120244284223636, 'roar': 0.0503274451705019, 'lawnmower': 0.049881023958083734, 'exclusivey': 0.049881023958083734, 'plop': 0.06755177576921534, 'follower': 0.06755177576921534, 'bitter': 0.06755177576921534, 'scam': 0.06755177576921534, 'followers': 0.06755177576921534, 'counterparts': 0.10738078313269721, 'paused': 0.08361345740517521, 'embarrassing': 0.08361345740517521, 'met': 0.13463080940530836, 'ca-709': 0.14661586697350557, 'ca-706': 0.14661586697350557, 'prepackaged': 0.14661586697350557, 'transcriptionist': 0.12291382587517348, '.i': 0.12291382587517348, 'comparably': 0.0860674024941073, 'theater': 0.25180611137429126, 'compliment': 0.07750556351054178, 'effects': 0.03991441138372994, 'screw': 0.0013093072549428633, 'banana': 0.013149016690053474, 'coax': 0.04381213357147308, 'selections': 0.0013093072549428633, 'language': 0.010152468678517252, 'frys': 0.0013093072549428633, 'polk': 0.024803670684688868, 'r15': 0.008657850328155008, 'indecently': 0.0013093072549428633, 'cerwin': 0.0013093072549428633, 'vega': 0.0013093072549428633, 'master': 0.0013093072549428633, 'pronounced': 0.03203181500560564, 'profile': 0.056543160060108254, 'armoire': 0.030249637187166965, 'enterntainment': 0.0013093072549428633, 'hellboy': 0.0013093072549428633, 'missus': 0.0013093072549428633, 'weekends': 0.0429334167840934, 'drawback': 0.18049080575998638, 'ss': 0.019566819095607653, 'mf650h': 0.009783409547803826, 'directional': 0.03789258632630216, '50khz': 0.019566819095607653, 'boxy': 0.009783409547803826, 'spread': 0.090430515641277, 'diaphragm': 0.009783409547803826, 'sustain': 0.009783409547803826, 'cutoff': 0.009783409547803826, 'punchy': 0.019566819095607653, 'midranges': 0.009783409547803826, 'lfe': 0.009783409547803826, 'perceived': 0.009783409547803826, 'humans': 0.009783409547803826, 'additions': 0.0418826976680868, 'hz': 0.054637759048820886, 'rms': 0.009783409547803826, 'ssmf650h': 0.009783409547803826, 'studio': 0.15403163484042934, 'wharfedale': 0.009783409547803826, '8.4': 0.009783409547803826, 'expand': 0.023405374300947232, '~$100': 0.009783409547803826, 'sdat': 0.009783409547803826, 'leb-404': 0.009783409547803826, 'overstock': 0.009783409547803826, 'mf650h.': 0.009783409547803826, 'apprehensive': 0.015609716559971499, 'soundstage': 0.03534748042384563, 'expansive': 0.015609716559971499, 'imaging': 0.02289297214554508, 'living': 0.29077485935658653, 'sep': 0.06117927163345894, 'dvd-224': 0.30589635816729394, 'germany': 0.06117927163345894, 'raise': 0.10160702968873261, 'planed': 0.18741174325114482, 'carr': 0.18741174325114482, 'nine': 0.06333757145526213, 'tines': 0.06231067120394958, 'sturdily': 0.06231067120394958, 'execution': 0.026251205310997155, 'cache': 0.037141572432326485, 'unchoppy': 0.026251205310997155, 'secondary': 0.09624156320622518, 'cellular': 0.09624156320622518, 'sling': 0.10626984387426992, 'accesories': 0.05395563520266507, 'diminishing': 0.03455660120778546, 'appeal': 0.03455660120778546, 'modest': 0.03455660120778546, 'colbert': 0.03455660120778546, 'walks': 0.03455660120778546, 'porta': 0.03455660120778546, 'misgiving': 0.03455660120778546, '3x': 0.09915913607249945, 'twenty': 0.26016260760257004, 'everyda': 0.009146396261858529, 'shoulders': 0.05748845436687146, 'snappier': 0.05748845436687146, 'eyeballs': 0.05748845436687146, 'soothing': 0.05748845436687146, 'guitar': 0.05748845436687146, 'addiction': 0.05748845436687146, 'loudly': 0.08024760513406538, '=)': 0.08347766410560666, 'linking': 0.10671818124965078, 'crossover': 0.10671818124965078, 'gigantic': 0.10671818124965078, 'halo': 0.10671818124965078, 'rewritable': 0.16914947610711636, '10x': 0.08759655518489128, 'workday': 0.05109665136088201, 'soreness': 0.045337526922148125, 'gently': 0.05669589383383013, 'fadeout': 0.045337526922148125, 'nuvi': 0.05342089790689819, 'aggresive': 0.026710448953449095, 'buch': 0.11811715483223155, 'unplugs': 0.11811715483223155, 'bottomline': 0.11811715483223155, 'tripping': 0.012853198936882812, 'recoils': 0.012853198936882812, 'amazonian': 0.010760357928533984, 'brainer': 0.07647685852693965, 'disclaimer': 0.0273787010295613, 'styles': 0.05778146746549263, 'hq': 0.0273787010295613, 'reveal': 0.08611758051102852, 'glitches': 0.08928128939606099, '15,600': 0.0273787010295613, 'noises--': 0.0273787010295613, 'stretches': 0.045677995728254595, 'pun': 0.0273787010295613, 'lessen': 0.0273787010295613, 'endorsed': 0.0273787010295613, 'overstretch': 0.0273787010295613, 'undoubtedly': 0.0273787010295613, 'fool': 0.0423955333825984, 'hd-433': 0.003005027197398341, 'hd-437': 0.003005027197398341, 'hd-457': 0.003005027197398341, '437': 0.003005027197398341, '457': 0.006010054394796682, 'buck$': 0.003005027197398341, 'soundcard': 0.006010054394796682, 'soundmax': 0.003005027197398341, 'ac97': 0.003005027197398341, 'k8v': 0.003005027197398341, 'metallica-': 0.003005027197398341, 'matters': 0.08093154058789347, 'it`s': 0.006010054394796682, 'varies': 0.003005027197398341, 'you`re': 0.003005027197398341, 'harman': 0.045266540547984124, 'kardon': 0.050394234627220306, 'drastic': 0.003005027197398341, 'recommand': 0.006010054394796682, 'won`t': 0.003005027197398341, 'can`t': 0.003005027197398341, 'retrieve': 0.05374480989795509, 'qaulity': 0.03212319364818138, 'blows': 0.07686918919820616, 'intimate': 0.03212319364818138, 'selection': 0.10165417808464204, 'varied': 0.0818287020651978, 'nonobtrusive': 0.03212319364818138, 'loyal': 0.03212319364818138, 'seminar': 0.03864379534268349, 'mics': 0.015486820141708057, 'coach': 0.03470829791327451, 'coaching': 0.03470829791327451, 'situations': 0.056996531690430646, 'captures': 0.042061061145203096, 'audibly': 0.03470829791327451, 'warn': 0.04670106930590943, 'expire': 0.03470829791327451, 'fresh': 0.06930947605137354, 'uninterrupted': 0.09614318892714772, 'merge': 0.03470829791327451, '190': 0.07861471745797564, 'fused': 0.026204905819325327, 'lyra': 0.052409811638650654, 'rd2315': 0.052409811638650654, 'ruggedness': 0.026204905819325327, 'biking': 0.1005205028623877, '180': 0.061766383541769644, 'degrees': 0.0620739828937632, 'memos': 0.026204905819325327, 'backlights': 0.05451315274614613, 'preference': 0.026204905819325327, 'prevents': 0.04108289210442008, '3.11': 0.026204905819325327, '1.11': 0.026204905819325327, 'w/20': 0.011864696655225585, '16x9': 0.011864696655225585, 'dorky': 0.011864696655225585, 'ratios': 0.011864696655225585, '1680x1050': 0.04237491363148816, '280': 0.011864696655225585, 'm2': 0.059323483276127915, 'candle': 0.011864696655225585, '800:1': 0.011864696655225585, '400:1': 0.011864696655225585, '14ms': 0.011864696655225585, 'www.apple.com/displays/specs.html': 0.011864696655225585, 'comparables': 0.011864696655225585, 'gateway': 0.04656455259422876, '21': 0.07441537391454217, '599': 0.011864696655225585, '1000:1': 0.04237491363148816, '2405fpw': 0.011864696655225585, '1920': 0.011864696655225585, 'aiming': 0.011864696655225585, 'undamaged': 0.011864696655225585, 'unadulterated': 0.015039407597820239, 'dos': 0.04887494868300474, 'scarce': 0.015039407597820239, 'engineered': 0.0692741416414946, 'aluminum': 0.053806331246699285, 'mint': 0.015039407597820239, 'auctions': 0.015039407597820239, 'px100': 0.03714362331616374, 'suprised': 0.049900735444297545, '149.95': 0.049900735444297545, '124.95': 0.049900735444297545, 'ollie': 0.049900735444297545, '...........': 0.049900735444297545, 'pico': 0.20412172829022404, 'proximity': 0.029160246898603488, 'muted': 0.037197410016351164, 'tunes': 0.10581702971968793, 'piano': 0.14574606690051095, 'instrument': 0.03777526779498717, 'labelers': 0.010871233254971373, '1750': 0.03261369976491411, 'offering': 0.08824571928778474, 'labeling': 0.0388902565011367, 'generated': 0.024798028182667464, 'margins': 0.051121256656222414, 'spelled': 0.010871233254971373, 'hyphen': 0.010871233254971373, 'cid': 0.06884505595129711, 'trough': 0.034148528626481295, 'rotate': 0.041004468071877194, 'clockwise': 0.034148528626481295, 'counterclockwise': 0.034148528626481295, 'pivoting': 0.062349856557051525, 'arms': 0.0700341801791503, 'swivel': 0.08379489689094773, 'xr70': 0.08165443580144464, 'incorrect': 0.08165443580144464, '9/32"h.': 0.08165443580144464, 'remorse': 0.01558914556696083, 'regretting': 0.01558914556696083, 'regretted': 0.01558914556696083, 'dd': 0.01558914556696083, '5.1': 0.08541669576081196, 'discernable': 0.01558914556696083, 'amplifiers': 0.01558914556696083, 'crosses': 0.01558914556696083, 'threshold': 0.01558914556696083, 'sloppy': 0.02415867465055805, 'panny': 0.01558914556696083, 'linear': 0.01558914556696083, 'cinema': 0.06900614222649631, 'weaknesses': 0.02588115752324125, '-it': 0.047284428027996796, 'dsp': 0.01558914556696083, '-no': 0.01558914556696083, 'knobs': 0.17417229147996566, 'upconvert': 0.061754254891613874, 'el': 0.06467071913486978, 'diego': 0.00918806647423445, '199.99': 0.00918806647423445, 'r30': 0.00918806647423445, 'fronts': 0.00918806647423445, 'klh': 0.00918806647423445, '10inch': 0.00918806647423445, 'tremor': 0.00918806647423445, '650.00': 0.00918806647423445, 'colleague': 0.00918806647423445, 'ant': 0.051719846783727895, 'owns': 0.0349814016979205, 'roun': 0.02912183172884256, 'cylinder': 0.02912183172884256, 'shaped': 0.07195363837875951, 'costlier': 0.02912183172884256, 'outweighs': 0.05570778403437035, 'prev': 0.02912183172884256, 'bu': 0.03104874846396368, 'pump': 0.06714083102102551, 'consistant': 0.06714083102102551, 'clearer': 0.12315212421768021, '320': 0.016070588867364354, 'archive': 0.016070588867364354, 'sol': 0.10926050161261947, 'marketed': 0.01693973132273188, 'spectacular': 0.0786665198144773, 'toslink': 0.01693973132273188, 'dts': 0.0613130227312644, 'boomier': 0.01693973132273188, 'crisper': 0.01693973132273188, 'dolby': 0.0613130227312644, 'gladiator': 0.017864656030802138, '1010': 0.01693973132273188, 'rates': 0.15852937035791864, 'coldplay': 0.01693973132273188, 'scientist': 0.01693973132273188, 'indescribable': 0.01693973132273188, '65': 0.03309171325308505, 'families': 0.07656031616024597, 'apartments': 0.01693973132273188, 'comfy': 0.15259933092383862, 'quickcam': 0.08080509316811675, 'stx': 0.04235989498518542, 'greece': 0.02117994749259271, 'instant': 0.03999367320035697, 'messenger': 0.05801802375183194, 'isight': 0.06353984247777827, 'anyhow': 0.05515438551947705, 'samll': 0.0638169484167012, 'shoe': 0.0638169484167012, 'hubs': 0.02652315044826608, 'usinf': 0.07827293621732005, 'e3s': 0.1565458724346401, 'alluded': 0.07827293621732005, 'milage': 0.07827293621732005, 'excluding': 0.07827293621732005, 'conduction': 0.1565458724346401, 'bone': 0.07827293621732005, 'jogged': 0.07827293621732005, 'impact': 0.08512984801701058, 'elipticals': 0.07827293621732005, 'bicycles': 0.07827293621732005, '2001': 0.04670541799903897, 'bmw': 0.09341083599807794, '325ci': 0.04670541799903897, 'unmounting': 0.04670541799903897, 'cure': 0.11674773902585163, 'urban': 0.0917495299699281, 'axim': 0.1617368818601118, 'x51v': 0.12793584396939442, '480': 0.04638735217320822, '1100mah': 0.01171058952054248, 'strengths': 0.01171058952054248, 'unconfirmed': 0.01171058952054248, '624': 0.01171058952054248, 'mhz': 0.07439936754607056, 'pxa270': 0.01171058952054248, '2ghz': 0.01171058952054248, 'blazes': 0.01171058952054248, 'astounded': 0.01171058952054248, 'qvga': 0.01171058952054248, 'moderately': 0.042943677034560854, 'tcpmp': 0.01171058952054248, 'odyssey': 0.01171058952054248, 'activesync': 0.01171058952054248, 'deselect': 0.01171058952054248, 'entry': 0.04129080616996722, 'myriad': 0.01171058952054248, 'syncs': 0.02639646281143214, 'combine': 0.024816314741741494, 'bt': 0.02342117904108496, 'unbeatable': 0.01171058952054248, 'nicad': 0.03987570232774052, 'nicads': 0.03987570232774052, 'subtstanial': 0.003985772162819039, 'platinum': 0.139597964900455, 'ex51lp': 0.17975456389803912, 'fontopia': 0.17975456389803912, 'seals': 0.048641262648404765, 'choppy': 0.0001940811548480866, 'mbs': 0.0001940811548480866, 'panoramic': 0.0001940811548480866, 'stitching': 0.0001940811548480866, 'mx(tm)500': 0.03015064526853295, '4000': 0.06135520696841484, 'shines': 0.08278998626359227, 'awesomestufffree.com/plasma-t': 0.16480320621648947, 'triport': 0.05844791897081735, 'recess': 0.05844791897081735, 'earcups': 0.12453581658971805, 'retracted': 0.05844791897081735, 'microphoto': 0.045517716656677774, 'traveldock': 0.037987680838053324, 'enthusiasts': 0.011379429164169444, 'docked': 0.03250045106510017, 'attachable': 0.011379429164169444, 'serve': 0.10649031730960552, 'ff': 0.011379429164169444, 'rew': 0.011379429164169444, 'labs': 0.05960033443254973, 'finishing': 0.017310973267724985, 'cons;like': 0.017310973267724985, 'grill': 0.017310973267724985, 'guard': 0.017310973267724985, 't.v': 0.23046020031570724, 'rivaling': 0.007823090327106413, 'pristine': 0.007823090327106413, 'pumps': 0.007823090327106413, 'avr': 0.014450713138764226, 'ohms': 0.06853220591299666, 'jensen': 0.0009407519027541159, 'iterm': 0.030209306181596833, 'hp8450': 0.030209306181596833, 'catridge': 0.030209306181596833, 'spit': 0.030209306181596833, 'profit': 0.17895818188746176, 'tops': 0.049197843325471856, 'hired': 0.05439801965384925, 'echoing': 0.04677567264507068, 'throwaway': 0.04677567264507068, 'unsatisfied': 0.04677567264507068, 'oddly': 0.04677567264507068, 'cushions': 0.1055231135726194, 'teach': 0.056549458655516034, 'orientation': 0.04677567264507068, 'medially': 0.04677567264507068, 'pinna': 0.09355134529014136, 'superoposterior': 0.09355134529014136, 'straightens': 0.04677567264507068, 'doctor': 0.04677567264507068, 'maneuver': 0.04677567264507068, 'examines': 0.04677567264507068, 'otoscope': 0.04677567264507068, 'insertion': 0.10191899615497188, 'lodges': 0.04677567264507068, 'relieve': 0.04677567264507068, 'eustachian': 0.04677567264507068, 'swallow': 0.04677567264507068, 'climbing': 0.04677567264507068, 'skyscraper': 0.04677567264507068, 'elevator': 0.04677567264507068, 'westinghouse': 0.13029830917479984, '37inch': 0.026059661834959974, 'contemplating': 0.017854472547568834, 'seagate': 0.03966537267052907, 'par': 0.01243440017793999, '160': 0.009460159854417116, '149': 0.04973286346903904, 'actuality': 0.006130534653020164, 'fuss': 0.01615574882416493, 'fart': 0.006130534653020164, '114': 0.006130534653020164, 'a+': 0.006130534653020164, 'whisper': 0.029973107541384127, 'flac': 0.059946215082768255, 'foobar2000': 0.029973107541384127, 'io': 0.029973107541384127, 'intensive': 0.03765142981515761, 'kitchen': 0.14410493996831025, 'counter': 0.10538804665957596, 'boston': 0.08771863022892755, 'acoustics': 0.08934160837365983, 'tivoli': 0.07711042792750983, 'overpowering': 0.08633447976778505, 'cellphne': 0.04818782520594061, 'martin': 0.02106405737093141, 'logan': 0.012560422952342838, 'legendary': 0.012560422952342838, 'maximizing': 0.012560422952342838, 'bi': 0.013712909890643731, '12.00': 0.012560422952342838, '66': 0.0059570879405744645, '69': 0.0059570879405744645, 'touches': 0.0456799290671155, 'pdas': 0.03651443616914301, 'appointments': 0.055616325506238996, 'dates': 0.04766726751120962, 'students': 0.03651443616914301, 'agenda': 0.04766726751120962, 'akk': 0.07167426615198307, 'meeting': 0.08311773090008304, 'techie': 0.10311446905337032, 'wpn311': 0.1628952607416935, 'completion': 0.054298420247231166, 'utilization': 0.10859684049446233, 'executable': 0.054298420247231166, 'wlancfg5.exe': 0.10859684049446233, 'routines': 0.054298420247231166, 'csrss.exe': 0.054298420247231166, 'net.exe': 0.054298420247231166, 'net1.exe': 0.054298420247231166, 'wlancfg5': 0.054298420247231166, 'mimo': 0.09407922267193615, 'configurator': 0.054298420247231166, 'wzc': 0.10859684049446233, 'microsoft.com': 0.054298420247231166, '871122': 0.054298420247231166, 'queens': 0.07122864104059666, 'dependable': 0.03433420989664861, 'reservation': 0.045891697539584414, 'powercenter': 0.2115307481407141, 'hts800': 0.07051024938023791, 'acoustically': 0.07051024938023791, 'iem': 0.03541315243396606, 'ety': 0.014111049688845698, 'er4p': 0.04233314906653718, 'im716': 0.04233314906653718, 'ksc75': 0.014111049688845698, 'bloated': 0.014111049688845698, 'tamed': 0.014111049688845698, 'eq': 0.1448889331202715, 'vol': 0.014111049688845698, 'phonendoscope': 0.014111049688845698, 'frictions': 0.014111049688845698, 'iems': 0.014111049688845698, 'beyer': 0.014111049688845698, 'dt770': 0.014111049688845698, 'physics': 0.10576989738311303, 'asymmetric': 0.0547297933596552, 'food': 0.035099245454683715, 'resistant': 0.15912002883615609, 'perspective': 0.0273648966798276, 'fang': 0.066641632913394, 'theres': 0.033320816456697, 'keyz': 0.033320816456697, 'sansas': 0.020011603653797345, 'slipping': 0.10544130660615296, 'symbol': 0.1410985538976157, '5/5': 0.020011603653797345, 'e6': 0.026959950975162142, 'goodie': 0.016365648229082968, 'q.': 0.016365648229082968, 'invaluable': 0.07823535952294862, 'trackballs': 0.13063942721576294, 'noncompliance': 0.05157804611879146, 'ominous': 0.05157804611879146, 'gb/5': 0.05157804611879146, 'datalife': 0.03013139298171798, 'r200': 0.0438887109297842, 'r300': 0.03013139298171798, 'r320': 0.03013139298171798, 'printable': 0.059211748029586404, 'verbatims': 0.01616291130661138, 'sticking': 0.028664635089960463, 'sources': 0.061447421671242564, 'taiwan': 0.01616291130661138, 'dries': 0.01616291130661138, 'instantly': 0.17210163110549903, 'superdrive': 0.01616291130661138, 'd2': 0.01616291130661138, 'recommends': 0.01616291130661138, '134': 0.01616291130661138, 'notebooks': 0.11504239825512846, 'webcams': 0.052029947490894415, 'interchangeability': 0.012621204256818983, 'fusion': 0.012621204256818983, 'gieco': 0.029639363363937445, 'alien': 0.05691457739321854, 'champion': 0.029639363363937445, 'bored': 0.029639363363937445, 'uncle': 0.029639363363937445, 'loves': 0.15061977267852578, 'carpel': 0.05083165058337963, 'movable': 0.05083165058337963, 'splice': 0.07831922496734077, 'retaining': 0.07831922496734077, 'extracted': 0.07831922496734077, 'outputted': 0.07831922496734077, 'rocker': 0.07831922496734077, 'radioshark': 0.03439492946435203, '10.4': 0.050098319055001256, 'saves': 0.07196585772839616, 'widget': 0.06878985892870405, 'klunky': 0.03439492946435203, 'app': 0.06878985892870405, 'heart': 0.03858279565537821, 'dink': 0.03439492946435203, 'unessential': 0.03439492946435203, 'freeware': 0.03439492946435203, 'audacity': 0.03439492946435203, 'oddities': 0.03439492946435203, 'grasp': 0.03439492946435203, 'replied': 0.03439492946435203, 'rzr': 0.013684319500755597, 'recharges': 0.03752835109993218, 'eliminating': 0.013684319500755597, 'assortment': 0.08083177863422665, 'aebs': 0.1788414832664086, 'trigger': 0.02150816511348762, 'cans': 0.02150816511348762, 'youth': 0.02150816511348762, 'headphones-': 0.02150816511348762, 'man-': 0.02150816511348762, 'peaks': 0.02150816511348762, 'threaten': 0.02150816511348762, 'career': 0.02150816511348762, 'cough': 0.06452449534046292, 'comfortable-': 0.02150816511348762, 'full-': 0.02150816511348762, 'thump': 0.02150816511348762, 'fatigue': 0.02150816511348762, 'line-': 0.02150816511348762, 'wins': 0.05500386357112796, 'rocket': 0.05685238016177037, 'engines': 0.05693654842662922, 'airplanes': 0.05685238016177037, 'aircraft': 0.14087935106499955, 'engine': 0.05685238016177037, 'apu': 0.05685238016177037, 'f-4': 0.05685238016177037, 'phantom': 0.05685238016177037, 'afterburner': 0.05685238016177037, 'cx7300': 0.02424323607869131, '3yr': 0.1110535794139533, 'meetings': 0.1104477246455613, 'fiber': 0.0862477239719717, 'optic': 0.0862477239719717, '-my': 0.009348926808071931, 'obscenely': 0.009348926808071931, 'thx': 0.23173076691056638, 'certification': 0.02977214750911928, 'blurb': 0.009348926808071931, 'forefront': 0.009348926808071931, 'unparalleled': 0.009348926808071931, 'distribution': 0.013770715927784826, 'excellence': 0.009348926808071931, 'promise': 0.009348926808071931, 'cinemas': 0.009348926808071931, 'evaluated': 0.009348926808071931, 'degrade': 0.009348926808071931, 'stepped': 0.03224755849290839, 'cement': 0.01801944036901747, 'rolling': 0.03079829575271299, 'manhandled': 0.009348926808071931, '-i.e': 0.009348926808071931, 'gamecube': 0.009348926808071931, 'coverings': 0.009348926808071931, 'transit': 0.06918337075351079, 'passing': 0.009348926808071931, 'walked': 0.03169871282785723, 'testimonials': 0.00974204270630059, 'smartly': 0.00974204270630059, 'topping': 0.00974204270630059, 'foresees': 0.00974204270630059, 'quibble': 0.00974204270630059, 'purposely': 0.00974204270630059, 'antec': 0.0519908551619895, 'purfect': 0.02966238867381433, 'imitates': 0.02313746080579797, 'flakes': 0.02313746080579797, 'raggedy': 0.02313746080579797, 'earmuff': 0.02313746080579797, 'likewise': 0.02313746080579797, 'thicker': 0.039237386744690704, 'chairs': 0.02313746080579797, 'qz-50': 0.06941238241739375, 'ur-10': 0.02313746080579797, 'ur-20': 0.029774946683856728, 'richest': 0.02313746080579797, 'adorable': 0.08238370873863726, 'lifelike': 0.08238370873863726, 'lazer': 0.050989446929602805, 'tendonitis': 0.10197889385920561, 'flare': 0.050989446929602805, 'chronic': 0.050989446929602805, 'v200': 0.1623838861115294, 'effortless': 0.06007421506836, 'v450': 0.050989446929602805, 'setpoint': 0.17863495351556521, 'sensativity': 0.17614836199274256, 'sensativities': 0.03522967239854851, 'jbl': 0.12010619466592572, 'panic': 0.030564721529924385, 'negativity': 0.030564721529924385, 'loosing': 0.030564721529924385, '3)wording': 0.030564721529924385, 'visa': 0.06112944305984877, 'mc': 0.030564721529924385, 'sw': 0.1900339970621322, 'lastest': 0.030564721529924385, '2.55': 0.030564721529924385, 'indoor': 0.13607567779927063, 'zenith': 0.09165852803726267, 'manhattan': 0.0065736610723964115, '7th': 0.0065736610723964115, 'surrounded': 0.03783412270069199, 'taller': 0.0065736610723964115, 'buildings': 0.03783412270069199, '3200': 0.0065736610723964115, 'atop': 0.04189991521256412, 'provide-': 0.0065736610723964115, 'cushiony': 0.07032931919690034, 'wrists': 0.1483297405027763, 'supportive': 0.0777315269731311, 'lays': 0.09248664657359403, 'g.p.s': 0.04706733650450588, 'marine': 0.04706733650450588, 'breast': 0.04706733650450588, 'float': 0.04706733650450588, 'nuff': 0.04706733650450588, 'unbox': 0.10424506484126211, 'macos': 0.004489901445798541, 'airtunes': 0.008979802891597081, '802.11': 0.11784941901591825, '--the': 0.02675755646150882, '2,300': 0.03517558877773952, 'wave': 0.19736774756398048, 'applies': 0.09325525530647569, 'intruding': 0.09325525530647569, 'complains': 0.09325525530647569, 'debating': 0.0879702662815337, 'picturemate': 0.048158041719441436, 'ddp': 0.024079020859720718, 'fp50': 0.024079020859720718, '475': 0.048158041719441436, '4800x1200dpi': 0.024079020859720718, '4x6': 0.036912779217626146, 'boarderless': 0.024079020859720718, 'beats': 0.08527916314662234, 'vivid': 0.137143165978191, 'mixture': 0.05570418042544721, '1505': 0.05570418042544721, 'characteristic': 0.05570418042544721, 'unbranded': 0.05570418042544721, 'about-': 0.05570418042544721, 'marker': 0.05570418042544721, 'puppies': 0.018658311035654553, 'intending': 0.018658311035654553, 'definetely': 0.018658311035654553, 'trebley': 0.018658311035654553, 'difficlulty': 0.018658311035654553, 'delivering': 0.04912128292345468, 'earth': 0.05107273012509801, 'shaking': 0.12311409420900796, 'speakers/': 0.018658311035654553, 'woofers': 0.032561680402479476, 'chambered': 0.018658311035654553, 'enclosures': 0.018658311035654553, 'permit': 0.018658311035654553, 'chambers': 0.018658311035654553, 'human': 0.05770718331667841, 'cranium': 0.018658311035654553, 'resonating': 0.024722902706105127, 'chamber': 0.018658311035654553, 'reversed': 0.018658311035654553, 'jets': 0.05206192014750918, 'thundering': 0.018658311035654553, '69.99': 0.018658311035654553, 'aficionados': 0.018658311035654553, 'j&r': 0.005612008913763747, 'quickly(you': 0.005612008913763747, 'mitsubishi': 0.03699751664299058, 'dvp': 0.058621526472142166, 'ns700p': 0.03699751664299058, 'graininess': 0.03699751664299058, 'hesitation': 0.13912765889165368, 'diagram': 0.03317148951329505, 'intialize': 0.03317148951329505, 'finalizing': 0.03317148951329505, 'divx': 0.055909493265595724, 'instores': 0.07320952559231646, '8.00': 0.07320952559231646, 'monthes': 0.004498509191546059, 'seamless': 0.004498509191546059, 'casing': 0.004498509191546059, 'clickwheel': 0.018081924400304292, 'raher': 0.004498509191546059, '6:00': 0.004498509191546059, 'member': 0.004498509191546059, 'ipiod': 0.004498509191546059, 'availible': 0.052284422377466944, 'ibass': 0.004498509191546059, 'waay': 0.004498509191546059, 'accessorites': 0.004498509191546059, 'prompted': 0.007879596684330801, 'trackball': 0.05518984451649954, 'turbo': 0.007879596684330801, 'suitcase': 0.005196683449946363, 'consulting': 0.012873330273403578, 'magazine': 0.022123423152285195, 'wase': 0.012873330273403578, '7.0': 0.012873330273403578, 'scanners': 0.012873330273403578, 'feeding': 0.025746660546807156, 'roller': 0.012873330273403578, 'photographs': 0.012873330273403578, 'concert': 0.11622933023759564, 'receiption': 0.06885788124877396, 'achieving': 0.030394770892105714, 'pressing': 0.08324614935358822, 'timing': 0.04612990315982589, 'everybody': 0.04252960901805105, 'closet': 0.036758127422071, 'aw771': 0.06078954178421143, 'multifunction': 0.030394770892105714, 'midiland': 0.0019041081242600552, 'thoroughly': 0.0360134201335913, 'aim': 0.0019041081242600552, '999': 0.0019041081242600552, 'customize': 0.0019041081242600552, 'and/or': 0.27149487341990275, 'aesthetically': 0.0038082162485201104, 'pleasing': 0.0019041081242600552, 'attractiveness': 0.0019041081242600552, 'reproducing': 0.0019041081242600552, 'paired': 0.026493970224679197, 'competent': 0.02415922209121914, 'qualms': 0.0019041081242600552, 'markings': 0.0019041081242600552, 'presently': 0.0019041081242600552, 'audience': 0.0019041081242600552, 'affluent': 0.0019041081242600552, 'ranges': 0.030499550678494008, 'soundtracks': 0.0019041081242600552, 'matrix': 0.0019041081242600552, 'snatch': 0.0019041081242600552, 'ranging': 0.0019041081242600552, 'differentiating': 0.0019041081242600552, 'drowning': 0.0019041081242600552, 'satisfying': 0.0019041081242600552, 'ladies': 0.026972485068707783, 'gentlemen': 0.026972485068707783, 'toys': 0.16660288792160025, 'exploring': 0.026972485068707783, 'a-': 0.026972485068707783, 'b-': 0.10124819635103006, 'sandisk.com': 0.026972485068707783, 'u3.com': 0.05394497013741557, 'c-': 0.026972485068707783, 'd-': 0.026972485068707783, 'http://portableapps.com': 0.026972485068707783, 'launchpad': 0.026972485068707783, 'e-': 0.026972485068707783, 'passable': 0.026972485068707783, 'demands': 0.034176336054342706, 'destruction': 0.026972485068707783, 'ya': 0.05394497013741557, 'g-': 0.026972485068707783, 'v1.0': 0.026972485068707783, 'prominent': 0.02845676557579967, 'billy': 0.03472722474866627, 'paks': 0.026972485068707783, 'folk': 0.05926470098599609, 'controlling': 0.026972485068707783, 'composing': 0.026972485068707783, 'instability': 0.026972485068707783, 'win2000': 0.026972485068707783, 'win2003': 0.026972485068707783, 'h-': 0.026972485068707783, 'ignorant': 0.026972485068707783, 'site(s': 0.026972485068707783, 'i-': 0.026972485068707783, 'expend': 0.05204317667408832, 'nics': 0.06577115873028376, 'expanding': 0.01425696032275295, 'quantity': 0.022148493443824264, 'transfering': 0.160713703187363, 'occupy': 0.01425696032275295, 'rm': 0.01425696032275295, 'clarify': 0.03748867984768896, 'literature': 0.01425696032275295, 'traveler': 0.07020229622437792, 'characteristices': 0.008100572440133928, 'sx': 0.06367229550456609, 'jazz': 0.17575010492485096, 'pumping': 0.06367229550456609, 'divider': 0.06655227317514888, 'born': 0.06224369951090351, 'memories': 0.06224369951090351, 'showbiz': 0.06224369951090351, 'customized': 0.06224369951090351, 'invention': 0.07709924195670335, '1.75': 0.07709924195670335, 'dc4000': 0.07709924195670335, 'e20s': 0.08903620663810213, 'e30s': 0.08903620663810213, 'e25': 0.007419683886508493, 'harmon': 0.007419683886508493, 'e30': 0.007419683886508493, 'bookshelf': 0.022259051659525533, 'kong': 0.007419683886508493, '7lbs': 0.007419683886508493, 'bookshelves': 0.007419683886508493, 'lbs': 0.007419683886508493, 'cast': 0.030235808134352136, 'dutch': 0.007419683886508493, 'oven': 0.07391205003578143, 'tables': 0.007419683886508493, 'oomph': 0.007419683886508493, 'ooommphhhh': 0.007419683886508493, 'animals': 0.00888949770786044, 'singles': 0.007419683886508493, 'paul': 0.03450307146714359, 'revere': 0.007419683886508493, 'raiders': 0.007419683886508493, 'kicks': 0.09401532857548378, 'vintage': 0.007419683886508493, 'circa': 0.007419683886508493, 'drums': 0.025346759132790518, 'doors': 0.007419683886508493, 'airwaves': 0.007419683886508493, '60s': 0.007419683886508493, 'vivaldi': 0.007419683886508493, 'seasons': 0.007419683886508493, 'concertos': 0.007419683886508493, 'herbert': 0.007419683886508493, 'von': 0.007419683886508493, 'karajan': 0.007419683886508493, 'bpo': 0.007419683886508493, 'anne': 0.007419683886508493, 'sophie': 0.007419683886508493, 'mutter': 0.007419683886508493, 'fiddle': 0.007419683886508493, 'violins': 0.007419683886508493, 'harpsacord': 0.007419683886508493, '80s': 0.007419683886508493, '70s': 0.007419683886508493, 'inflation': 0.007419683886508493, 'advent': 0.10796171760035315, 'loudspeakers': 0.007419683886508493, 'advents': 0.014839367773016986, 'mcintosh': 0.007419683886508493, 'turntable': 0.016190446798437452, 'magnetic': 0.08810244655891068, 'jbls': 0.007419683886508493, 'perfomance': 0.007419683886508493, 'minded': 0.007419683886508493, 'repartitioned': 0.09338094065769766, 'usb2.0': 0.06794292645093397, 'interne': 0.06865533656885965, 'noel': 0.0770948537168258, 'lee': 0.0385474268584129, 'stunning': 0.045149808537555174, 'scenes': 0.0385474268584129, 'bold': 0.0385474268584129, 'unprepared': 0.0385474268584129, 'dramatic': 0.07993606736949184, 'warts': 0.0385474268584129, 'all"so': 0.0385474268584129, 'strings': 0.0385474268584129, 'crews': 0.0385474268584129, 'mvs3': 0.0385474268584129, 'stretched': 0.07483909389843639, 'quot;over': 0.03416344350458704, 'head"': 0.03416344350458704, 'ktx': 0.07493857157602402, 'sportapros': 0.04601576308520046, 'portapros': 0.03416344350458704, 'mercury': 0.14057935890496728, 'cadmium': 0.14057935890496728, 'carpal': 0.07872834610973153, 'syndrom': 0.07872834610973153, 'eliminated': 0.07872834610973153, 'destroy': 0.07872834610973153, 'misplacing': 0.03214340644842358, 'spoiled': 0.03214340644842358, 'den': 0.07413590971525398, 'abilty': 0.03214340644842358, 'ringer': 0.13495653813444883, 'tcx905': 0.026691338591959757, 'iraq': 0.1393543511072646, 'tent': 0.018204074795950192, 'w/o': 0.1299486492867245, 'compatiblity': 0.07003756711154191, 'overview': 0.07003756711154191, 'boiling': 0.07003756711154191, 'psp': 0.14721737663374146, 'coolest': 0.07003756711154191, 'prolonged': 0.008559793735088708, 'experimenting': 0.008559793735088708, 'situated': 0.008559793735088708, 'numeric': 0.007890980512383135, 'mimimum': 0.007890980512383135, 'anount': 0.007890980512383135, 'kepads': 0.007890980512383135, '913ns': 0.009399630517983497, '712n.': 0.009399630517983497, 'ratings': 0.11675277870636175, 'samsungs': 0.03759852207193399, 'brightnesses': 0.009399630517983497, 'interestingly': 0.009399630517983497, '5ms': 0.009399630517983497, '8ms': 0.009399630517983497, 'widescreen': 0.05108223482305197, 'challenge': 0.022252795015200347, 'strains': 0.009399630517983497, 'accommodation': 0.009399630517983497, '3/4': 0.052302879497008285, '87': 0.009399630517983497, 'billion': 0.009399630517983497, 'diddly': 0.009399630517983497, '.pdf': 0.009399630517983497, 'explanatory': 0.009399630517983497, 'interactive': 0.009399630517983497, 'surcharge': 0.009399630517983497, 'wood': 0.08697709282236524, 'lathe': 0.009399630517983497, 'streaming': 0.0579142163079439, 'dns': 0.0247114862165686, 'streams': 0.1635762461297934, 'realibly': 0.0247114862165686, 'hordes': 0.0247114862165686, 'neighbours': 0.0247114862165686, 'abeit': 0.0247114862165686, 'pace': 0.0724536083365161, 'pacing': 0.13353339479214504, '5.8': 0.10473274626491696, '900mhz': 0.13353339479214504, 'tcx805': 0.014904841642890741, 'trivial': 0.014904841642890741, 'automagically': 0.014904841642890741, 'dialing': 0.014904841642890741, 'upright': 0.014904841642890741, 'researched': 0.07325204369768404, 'aliasing': 0.03951674425602922, 'smoothing': 0.007795627397527792, 'downstairs': 0.04574145271644742, 'swaps': 0.007795627397527792, 'pip': 0.06681462592652267, 'sputter': 0.011302222872498336, 'whirr': 0.011302222872498336, "m's(which": 0.011302222872498336, 'grown': 0.04075287706159167, 'width': 0.025219107640230862, 'dimensions': 0.01587975306886326, 'comparitively': 0.011302222872498336, 'wrap': 0.011302222872498336, 'fills': 0.13131645525209545, 'seams': 0.011302222872498336, 'stale': 0.011302222872498336, 'colorful': 0.011302222872498336, 'joystick': 0.019645739080737204, 'wedging': 0.011302222872498336, 'upward': 0.011302222872498336, 'accidental': 0.029358291646821317, 'wmp11': 0.022604445744996673, 'newbie': 0.02021367616141735, 'theoretical': 0.011302222872498336, 'maximums': 0.011302222872498336, 'wmas': 0.011302222872498336, 'creation': 0.011302222872498336, 'mortar': 0.011302222872498336, 'justified': 0.03780732036736894, 'apx-6420': 0.012706141327094543, 'mulling': 0.012706141327094543, 'makers': 0.1445739803031908, 'recall': 0.037752625814568404, 'sampling': 0.012706141327094543, '4.1': 0.012706141327094543, 'sole': 0.012706141327094543, 'z-5500': 0.012706141327094543, 'langsing': 0.012706141327094543, 'fx6021': 0.012706141327094543, 'eyeing': 0.012706141327094543, 'declared': 0.012706141327094543, 'sub-$200': 0.012706141327094543, 'msrp': 0.012706141327094543, 'bitrate': 0.012706141327094543, 'shine': 0.012706141327094543, 'instruments': 0.012706141327094543, 'buzzy': 0.012706141327094543, 'discrete': 0.023872979859799182, 'shake': 0.05537129778684378, 'subjective': 0.04171582526026574, 'notches': 0.025412282654189086, 'sane': 0.012706141327094543, 'facing': 0.03211388773801703, 'babies': 0.019453668989845546, 'dialogue': 0.0169516186799943, 'seperately': 0.0026396960868266288, 'blues': 0.10853414731592757, 'punchier': 0.045770033099253, 'pandora': 0.091540066198506, 'comforable': 0.022060320104022087, 'chameleon': 0.0564873354021909, 'improvment': 0.022060320104022087, 'skill': 0.022060320104022087, 'razor': 0.04855111404643484, 'diamondback': 0.0841244509136479, 'mousing': 0.037523154510432845, 'gripes': 0.06987149649101491, '1600dpi': 0.037523154510432845, 'overlooked': 0.05398968341019905, 'squeak': 0.037523154510432845, 'erratic': 0.1107621271187537, 'wpc54gs': 0.0377912130538233, 'wpc54': 0.0377912130538233, 'v2.1': 0.0377912130538233, 'submission': 0.09988094638068179, 'a45': 0.0377912130538233, 's121': 0.0377912130538233, 'phil': 0.0377912130538233, 'mesa': 0.0377912130538233, 'rails': 0.03798389804705179, 'structurally': 0.03798389804705179, 'fasioned': 0.03798389804705179, 'offices': 0.055898867221586095, 'solidly': 0.05668025040017397, '6.0': 0.02254244869512889, 'megapixel': 0.13752458999136505, 's3': 0.02254244869512889, 'psd1grf3': 0.02254244869512889, 'apiece': 0.14531532096923114, 'rebranded': 0.02254244869512889, 'daneelec': 0.02254244869512889, 'shooting': 0.068693754491458, 'm7480n': 0.02254244869512889, 'adobe': 0.11918338201281235, 'premiere': 0.02254244869512889, 'intially': 0.010910730315282911, 'zooming': 0.010910730315282911, 'dcs-900': 0.010910730315282911, 'along-': 0.03397499360612459, 'dt': 0.03397499360612459, '200v': 0.03397499360612459, 'zipped': 0.03397499360612459, '.75': 0.03397499360612459, 'zip': 0.1262231331730223, 'purely': 0.018263568084601344, 'stepmania': 0.018263568084601344, 'revolution': 0.03655270760711499, 'clone': 0.018263568084601344, 'esspecially': 0.018263568084601344, '06': 0.03652713616920269, 'wanting': 0.10138948032438208, 'patio': 0.044757264940025035, 'lound': 0.044757264940025035, 'brackets': 0.044757264940025035, 'thye': 0.044757264940025035, '42.99': 0.025687605145185123, 'codeless': 0.025687605145185123, 'experince': 0.05480034732205186, 'bravo': 0.05480034732205186, 'networked': 0.10183294388299936, 'elapsed': 0.10183294388299936, 'approximate': 0.1339107664795077, 'slingbox': 0.11919697789696844, 'slinglink': 0.10183294388299936, 'renewed': 0.10183294388299936, 'acquired': 0.03491004448867925, 'lan': 0.023897364620246605, '700w': 0.029859966767242736, 'undock': 0.029859966767242736, 'undocking': 0.029859966767242736, 'forward/': 0.07574694642653691, 'buttonw': 0.07574694642653691, 'taskbar': 0.07574694642653691, 'hardship': 0.07574694642653691, ':-)': 0.0840653637597834, 't5320': 0.08286866434856748, 't5400': 0.08286866434856748, 't5420': 0.04143433217428374, 't5600': 0.08286866434856748, 't5620': 0.04143433217428374, 't5700': 0.08286866434856748, 't5720': 0.04143433217428374, 't5800': 0.08286866434856748, 't5820': 0.04143433217428374, '53615': 0.04143433217428374, 't4800': 0.04143433217428374, 't4900': 0.04143433217428374, 't5000': 0.04143433217428374, 't5500': 0.04143433217428374, 't5900': 0.04143433217428374, 't6500': 0.04143433217428374, 'fv500': 0.04143433217428374, 'extensively': 0.034799119048957904, 'rushing': 0.034799119048957904, '802.11b': 0.08790609342336521, 'alert': 0.034799119048957904, 'beeps': 0.034799119048957904, 'discourage': 0.06871300217504447, 'coltrane': 0.06871300217504447, 'goosebumps': 0.06871300217504447, 'passionate': 0.09481239866443703, 'lover': 0.06871300217504447, 'collector': 0.06871300217504447, 'bassheads': 0.003044030265619607, 'featuring': 0.003044030265619607, 'disproportionately': 0.003044030265619607, 'complemented': 0.003044030265619607, 'ue': 0.009132090796858804, 'recessed': 0.003044030265619607, 'unnatural': 0.003044030265619607, 'marvelous': 0.003044030265619607, 'pleasant': 0.003044030265619607, 'thumpy': 0.003044030265619607, 'overbalance': 0.003044030265619607, 'eb': 0.03348433292181564, 'ideal': 0.04066308703621408, 'rap': 0.003044030265619607, 'hop': 0.003044030265619607, 'basslines': 0.003044030265619607, 'comprise': 0.003044030265619607, 'overpowers': 0.003044030265619607, 'dominated': 0.003044030265619607, 'transformed': 0.003044030265619607, 'superficially': 0.003044030265619607, 'thinness': 0.003044030265619607, 'render': 0.003044030265619607, 'vulnerable': 0.003044030265619607, 'thoughtfully': 0.003044030265619607, 'blessing': 0.028194866543821244, 'entrance': 0.003044030265619607, 'attenuator': 0.003044030265619607, 'earwax': 0.02555125524527532, 'silvery': 0.003044030265619607, 'winder': 0.003044030265619607, 'tangling': 0.003044030265619607, 'unlikely': 0.014555617130636425, 'dominant': 0.003044030265619607, '1993': 0.010332464354047803, 'gravis': 0.04132985741619121, 'upraded': 0.010332464354047803, 'midi': 0.010332464354047803, 'nfs': 0.030997393062143497, '3mins': 0.010332464354047803, 'rumble': 0.010332464354047803, 'mw': 0.010332464354047803, 'ea': 0.010332464354047803, 'feather': 0.010332464354047803, '67': 0.010332464354047803, 'progressive': 0.029716526919708053, 'gripped': 0.010332464354047803, 'race': 0.010332464354047803, 'betetr': 0.010332464354047803, 'cnd': 0.010332464354047803, 'snes': 0.010332464354047803, '4/5': 0.010332464354047803, 'answereing': 0.011904301245599557, 'sattelite': 0.011904301245599557, 'satelite': 0.022951793701107944, 'aup': 0.011904301245599557, 'tel': 0.011904301245599557, 'simultaneous': 0.08347446461358876, 'observation': 0.08347446461358876, 'gigabit': 0.08347446461358876, 'intrusion': 0.011522981790475114, 'cradled': 0.011522981790475114, 'plastics': 0.011522981790475114, 'metals': 0.011522981790475114, 'bases': 0.011522981790475114, 'snugly': 0.033589614567932906, 'ghz': 0.1104443221518999, 'vs.': 0.08532998543693346, '2.4': 0.05823100192994847, 'immune': 0.011522981790475114, 'heating': 0.011522981790475114, 'truckin': 0.011522981790475114, '9volt': 0.011522981790475114, 'bedside': 0.011522981790475114, 'doubles': 0.012997606078319202, 'emptying': 0.0551002373832538, 'techniques': 0.0551002373832538, 'manufacuters': 0.0551002373832538, 'tread': 0.0551002373832538, 'laniard': 0.0551002373832538, 'docks': 0.03235568438410291, 'sleakest': 0.03235568438410291, 'drone': 0.03235568438410291, 'focuses': 0.03235568438410291, 'unimposing': 0.03235568438410291, 'sounddock': 0.1126267024055181, 'recomendation': 0.09491022661624737, 'listend': 0.09491022661624737, 'raido': 0.09491022661624737, 'disadvantage': 0.09491022661624737, 'easier(but': 0.09491022661624737, 'jogger': 0.091569180724323, 'imported': 0.02881587594816856, 'proccess': 0.02881587594816856, 'finepix': 0.07951176590756318, 'devout': 0.013633714356518407, 's800': 0.013633714356518407, 'blotchy': 0.013633714356518407, 'drafts': 0.013633714356518407, 'msx': 0.05598549212822935, 'm1gn': 0.05598549212822935, 'idiots': 0.025446076179286917, 'accompanied': 0.025446076179286917, 'paris': 0.025446076179286917, 'camping': 0.10682104220619869, 'northern': 0.025446076179286917, '10k': 0.025446076179286917, 'usb07051c-01': 0.03710167258204652, '3.16': 0.03710167258204652, 'verizon': 0.03710167258204652, 'polycom': 0.21560976393459602, 'communicator': 0.21560976393459602, 'pita': 0.03080139484779944, 'a.': 0.06160278969559888, 'untangle': 0.06160278969559888, 'accepting': 0.03080139484779944, 'b.': 0.06160278969559888, 'envariably': 0.03080139484779944, 'desheveled': 0.03080139484779944, 'ocasionally': 0.03080139484779944, 'peoples': 0.03080139484779944, 'sporadic': 0.03080139484779944, 'downfalls': 0.03080139484779944, 'bombed': 0.008378113977286064, 'unpack': 0.008378113977286064, 'corresponding': 0.0587179814778385, 'sbs': 0.03884131499036891, 'ep': 0.03722799858509681, 'quest': 0.01634375603746564, 'sceptical': 0.0625229590922883, 'harm': 0.005447918679155208, 'stalls': 0.053614914566851336, 'horse': 0.053614914566851336, 'flies': 0.053614914566851336, 'dusty': 0.053614914566851336, 'collect': 0.053614914566851336, 'horses': 0.053614914566851336, 'dashmount': 0.04979883632006783, 'blanket': 0.04979883632006783, 'pliable': 0.04979883632006783, 'f-250': 0.04979883632006783, 'mold': 0.07927524736439656, 'bouncy': 0.08315084381263965, 'creep': 0.06271661654995349, 'bolted': 0.04979883632006783, 'borrowing': 0.04979883632006783, 'dangling': 0.033821583288323735, 'toyota': 0.07192533297444138, 'avalon': 0.033821583288323735, 'floorboard': 0.033821583288323735, 'temtation': 0.033821583288323735, 'robber': 0.033821583288323735, 'hotas': 0.018840645883591974, 'sst': 0.009420322941795987, 'dogfight': 0.009420322941795987, 'obsessed': 0.04796661199813023, 'drumming': 0.09593322399626046, 'marching': 0.04796661199813023, 'tupperware': 0.04796661199813023, 'lids': 0.04796661199813023, 'parades': 0.04796661199813023, 'cumbersonme': 0.04796661199813023, 'cymbals': 0.04796661199813023, 'steep': 0.053410442701134125, 'performing': 0.06555690203109855, 'pots': 0.04796661199813023, 'pans': 0.04796661199813023, 'spoil': 0.04796661199813023, 'childhood': 0.04796661199813023, 'airt': 0.0202264848484555, 'upstairs': 0.038792328205152674, 'powerlines': 0.0202264848484555, 'extender': 0.0202264848484555, 'whit': 0.0202264848484555, 'extending': 0.0202264848484555, 'disappoints': 0.2530849433782285, 'filet': 0.058031733580031365, 'mignon': 0.058031733580031365, 'talks': 0.058031733580031365, 'holster': 0.058031733580031365, 'worthwhile': 0.08600980964150332, 'cube': 0.09841729475456847, 'sucessfully': 0.11291654494884304, 'storag': 0.11291654494884304, 'duplication': 0.06670461554787759, 'teac': 0.06670461554787759, 'crts': 0.004720007991511374, 'jumped': 0.004720007991511374, 'flatscreen': 0.004720007991511374, 'bandwagon': 0.004720007991511374, 'immense': 0.004720007991511374, "e'nuf": 0.08346922235736734, '8.5x11': 0.007428496228647244, 'rendered': 0.007428496228647244, 'prohibitive': 0.007428496228647244, 's041727': 0.007428496228647244, 'rivals': 0.007428496228647244, 'a++++++++++': 0.05601640486883688, 'enables': 0.04151546401653879, 'emap': 0.04151546401653879, 'arriving': 0.1321849692665758, '12v': 0.04151546401653879, 'yup': 0.14595119157708525, 'burst': 0.14641768137858274, 'poke': 0.14641768137858274, 'battle': 0.0733822602725291, 'sensetivity': 0.08254687121758103, 'illustrator': 0.05158675935854848, 'macromedia': 0.05158675935854848, 'impressively': 0.057177160331525444, 'lap': 0.14255290416715957, 'bed': 0.08636712147385217, 'telescopic': 0.057177160331525444, 'booklight': 0.057177160331525444, 'retracting': 0.057177160331525444, 'finnicky': 0.057177160331525444, 'technique': 0.057177160331525444, 'advandage': 0.04359430489083224, '/-': 0.03762283919868552, 'mature': 0.03762283919868552, 'alder': 0.03762283919868552, 'fir': 0.03762283919868552, 'gilsson': 0.03762283919868552, 'hat': 0.04733760560393883, 'aquisition': 0.03762283919868552, 'sunny': 0.03762283919868552, 'convient': 0.05200583033313861, 'deskjet': 0.05412583310462173, '3930': 0.05412583310462173, 'installs': 0.0636895310897447, 'convience': 0.05412583310462173, 'b+': 0.05412583310462173, 'outputs': 0.2208276476456135, 'napster': 0.0488652490886839, 'myslef': 0.0011663117353189986, 'leader': 0.0011663117353189986, 'sanso': 0.03964884924611542, 'outweighed': 0.01982442462305771, 'pressesd': 0.01982442462305771, '3am': 0.01982442462305771, 'tuffwrap': 0.01982442462305771, 'xtrememac-': 0.01982442462305771, 'lining': 0.01982442462305771, 'bleed': 0.01982442462305771, 'surf': 0.030460363292661757, 'fingertips': 0.01982442462305771, 'rocks': 0.029038104469882423, 'gut': 0.01982442462305771, 'beaten': 0.02708454780135248, 'hewlett': 0.02708454780135248, 'packard': 0.02708454780135248, 'c3906a': 0.02708454780135248, 'cartrige': 0.0812536434040575, 'twords': 0.02708454780135248, 'allmost': 0.02708454780135248, 'reorder': 0.02708454780135248, 'konk': 0.02215028744289908, 'removeable': 0.02215028744289908, 'synch': 0.0718386166794809, 'simplifies': 0.02215028744289908, 'syched': 0.02215028744289908, 'scraping': 0.1156118180739504, '04': 0.02050003667742934, 'repetition': 0.02050003667742934, 'curve': 0.02050003667742934, 'throttle': 0.02050003667742934, 'downloadable': 0.02050003667742934, 'ch': 0.04100007335485868, 'prod': 0.02050003667742934, 'goflight': 0.02050003667742934, 'modular': 0.02050003667742934, 'object': 0.03694460693875269, 'cockpit': 0.02050003667742934, 'sim': 0.06020172051722634, 'suited': 0.11108199672960878, 'aspiring': 0.02050003667742934, 'advaced': 0.02050003667742934, 'flt': 0.02050003667742934, 'simmer': 0.02050003667742934, 'calender': 0.027531063919016496, 'con': 0.16920836150862514, 'razr': 0.05474326217563772, 'spair': 0.048433272919646005, 'phonetools': 0.048433272919646005, 'sx-1030': 0.022549247072257306, 'arrgghh': 0.05546447934722814, '1030': 0.022549247072257306, 'quot;small"': 0.022549247072257306, 'airflow': 0.022549247072257306, 'cfm': 0.022549247072257306, 'refugee': 0.0360250073624565, 'basement': 0.0390606259110777, 'swapping': 0.0360250073624565, 'wherever': 0.1144935924985298, 'w2k.': 0.0360250073624565, 'bits': 0.0439008116278321, 'oops': 0.0875017036481371, 'wonky': 0.078749722756673, 'dgl-4300': 0.157499445513346, 'omnimount': 0.08781964809821569, 'differences': 0.08781964809821569, 'mustang': 0.08781964809821569, 'tilting': 0.11329422331246262, 'reconnecting': 0.08781964809821569, 'moto': 0.06594959659650719, 'reseated': 0.06594959659650719, 'skinny': 0.08682712035331477, 'armed': 0.07751335277332409, 'h250': 0.03782002449007817, 'confortable': 0.03782002449007817, 'acustic': 0.03782002449007817, 'properties': 0.03782002449007817, 'exceeded': 0.15936213569807578, 'vocals': 0.026410324631963397, 'multitracking': 0.010282060877824547, 'samson': 0.030846182633473676, 'c01b': 0.010282060877824547, 'condenser': 0.010282060877824547, 'freedom': 0.010282060877824547, 'portablility': 0.010282060877824547, 'headroom': 0.010282060877824547, 'millenia': 0.010282060877824547, '79': 0.010282060877824547, 'latency': 0.010282060877824547, '44100hz': 0.010282060877824547, 'fasoft': 0.010282060877824547, 'liberating': 0.010282060877824547, 'job.(if': 0.19865228786815264, 'scare': 0.08423004704447118, 'opossums': 0.08423004704447118, 'porch': 0.08423004704447118, 'prong': 0.08423004704447118, 'scoot': 0.08423004704447118, 'supplement': 0.016262997851836183, 'powersquid': 0.06505199140734473, 'temporary': 0.016262997851836183, 'sentry': 0.016262997851836183, 'accordance': 0.016262997851836183, 'overload': 0.016262997851836183, 'cheaters': 0.016262997851836183, 'grounded': 0.10706512737443825, 'generators': 0.016262997851836183, 'monitored': 0.016262997851836183, 'generator': 0.016262997851836183, 'p.c.': 0.015292971007999076, 'cuando': 0.01754208464859583, 'compr': 0.01754208464859583, 'una': 0.05500441367469185, 'm105': 0.01754208464859583, 'pantalla': 0.01754208464859583, 'eleg': 0.01754208464859583, 'este': 0.05500441367469185, 'maletin': 0.01754208464859583, 'porque': 0.01754208464859583, 'lei': 0.01754208464859583, 'que': 0.07163495805987048, 'sus': 0.01754208464859583, 'dimensiones': 0.01754208464859583, 'ajustaban': 0.01754208464859583, 'equipo': 0.01754208464859583, 'est': 0.01754208464859583, 'forrado': 0.01754208464859583, 'cuenta': 0.01754208464859583, 'divisiones': 0.01754208464859583, 'suficientes': 0.01754208464859583, 'para': 0.05500441367469185, 'llevar': 0.01754208464859583, 'cargador': 0.01754208464859583, 'poder': 0.01754208464859583, 'la': 0.03508416929719166, 'asimismo': 0.01754208464859583, 'puedo': 0.01754208464859583, 'incluir': 0.01754208464859583, 'documentos': 0.01754208464859583, 'otros': 0.01754208464859583, 'accesorios': 0.01754208464859583, 'asa': 0.01754208464859583, 'moda': 0.01754208464859583, 'correa': 0.01754208464859583, 'incluida': 0.01754208464859583, 'ancha': 0.01754208464859583, 'ajustable': 0.01754208464859583, 'largo': 0.01754208464859583, 'uno': 0.01754208464859583, 'desee': 0.01754208464859583, 'estoy': 0.01754208464859583, 'satisfecho': 0.01754208464859583, 'esta': 0.01754208464859583, 'compra': 0.01754208464859583, '6500b': 0.07191061501807995, '2.4ghz': 0.05791175861059504, 'tru8866': 0.035955307509039976, 'ans': 0.09765137388466957, 'mach': 0.035955307509039976, 'vm': 0.07191061501807995, 'bonkers': 0.035955307509039976, 'accumulated': 0.035955307509039976, 'messaging': 0.04646320146742478, 'nope': 0.035955307509039976, 'md7081': 0.035955307509039976, '5.8ghz': 0.035955307509039976, '6500b.': 0.035955307509039976, 'blinked': 0.035955307509039976, 'relying': 0.035955307509039976, 'hmmm': 0.035955307509039976, 'implies': 0.035955307509039976, 'elegantly': 0.035955307509039976, 'limit': 0.1257341645134778, 'opion': 0.03872324868109481, '48gx': 0.07744649736218961, 'obsolete': 0.03872324868109481, 'gret': 0.020860884598940813, 'woowho': 0.020860884598940813, 'eventhough': 0.06640473398182559, 'healthy': 0.06640473398182559, 'wax': 0.06640473398182559, 'underestimate': 0.04396363198595822, 'cafe': 0.006302635912360111, 'win98': 0.006302635912360111, '100.00': 0.006302635912360111, 'audiobooks': 0.02864053379611444, 'technophobes': 0.006302635912360111, 'toysrus': 0.006302635912360111, '15.00': 0.006302635912360111, 'kid': 0.006302635912360111, 'sears': 0.036644667237144275, 'grabbed': 0.036644667237144275, 'a400': 0.036644667237144275, 'enthusiast': 0.05364248852141596, 'perplexing': 0.025286519434792293, 'unbiased': 0.025286519434792293, 'industries': 0.025286519434792293, 'sdsdb-128': 0.025286519434792293, 'a10': 0.025286519434792293, '142': 0.025286519434792293, '106': 0.025286519434792293, '51': 0.025286519434792293, 'estimates': 0.025286519434792293, 'complexity': 0.025286519434792293, 'scene': 0.05704151046492566, 'algorithm': 0.11095374881233991, 'determining': 0.025286519434792293, 'intensely': 0.06124757460141332, 'washington': 0.06124757460141332, 'maine': 0.06124757460141332, 'guam': 0.06124757460141332, 'virgin': 0.06124757460141332, 'islands': 0.06124757460141332, 'd.c.': 0.06124757460141332, 'transferable': 0.06124757460141332, 'manu': 0.06124757460141332, 'issued': 0.06124757460141332, 'payable': 0.06124757460141332, 'uncertain': 0.06124757460141332, 'reimburse': 0.06124757460141332, 'breakdown': 0.06124757460141332, 'accidents': 0.06766593803183125, 'seriousness': 0.06124757460141332, 'summarized': 0.06124757460141332, 'contracts': 0.06124757460141332, 'phrase': 0.06124757460141332, 'discretion': 0.12249514920282664, 'jerks': 0.06124757460141332, 'pricy': 0.06804664000904576, 'misplaced': 0.04151600526930938, 'backpacking': 0.04151600526930938, 'boonies': 0.04151600526930938, 'softwares': 0.04151600526930938, 'continually': 0.04151600526930938, 'adapts': 0.04151600526930938, 'portions': 0.048515019247320997, 'negotiate': 0.0516131667908627, 'freeway': 0.04151600526930938, 'ramps': 0.04151600526930938, 'zillion': 0.06571127673211392, 'admirably': 0.08361150024880028, 'cups': 0.09258125192788448, 'heaphone': 0.029033473247064068, 'snuggly': 0.029033473247064068, 'stretching': 0.029033473247064068, 'grow': 0.029033473247064068, '8.99': 0.07165733658418665, 'eektech': 0.07165733658418665, 'eek': 0.12748179982028587, 'sufficiently': 0.017198793840460004, 'assignment': 0.05665544885944531, 'reinsert': 0.028327724429722655, 'upholstery': 0.028327724429722655, 'jeans': 0.028327724429722655, 'alter': 0.01966523226779664, 'dongles': 0.01966523226779664, 'begging': 0.01966523226779664, 'knocked': 0.03508219373890185, 'cautious': 0.048681318961642996, 'fab': 0.01966523226779664, 'v270': 0.03933046453559328, 'unpacked': 0.025784559917064884, 'wel': 0.025784559917064884, 'authority': 0.006526351323771969, 'habits': 0.006526351323771969, 'increasingly': 0.006526351323771969, 'podcasts': 0.10545638377821699, 'commuting': 0.006526351323771969, '--only': 0.006526351323771969, '--no': 0.006526351323771969, 'strenuous': 0.07470615665285948, '--nowhere': 0.006526351323771969, 'gingerly': 0.006526351323771969, 'repackage': 0.006526351323771969, 'relieved': 0.006526351323771969, 'alleviate': 0.09783442671989966, 'wringer': 0.24170207358619836, 'videophile': 0.02155962149169323, 'merely': 0.036071057291258896, '192': 0.02155962149169323, 'subtle': 0.07943261779553468, 'nuances': 0.02155962149169323, 'vaseline': 0.02155962149169323, 'lossless': 0.02155962149169323, 'accustomed': 0.02155962149169323, 'differentiation': 0.02155962149169323, 'bloody': 0.02155962149169323, 'miracle': 0.029595630085219975, 'endorse': 0.009658180894027204, 'stepping': 0.009658180894027204, 'overwhelmed': 0.04074992975853036, 'hd-600': 0.10623998983429908, 'hd-25': 0.009658180894027204, 'hd-25sp': 0.009658180894027204, 'cried': 0.009658180894027204, 'absence': 0.009658180894027204, 'mccartney': 0.06760726625819025, 'lennon': 0.048290904470135974, "''": 0.057949085364163114, 'economy': 0.009658180894027204, 'beatles': 0.009658180894027204, 'george': 0.028974542682081557, 'harrison': 0.019316361788054407, 'ringo': 0.019316361788054407, 'starr': 0.019316361788054407, 'decade': 0.036947978052170434, 'capture': 0.009658180894027204, 'analogue': 0.009658180894027204, 'warmer': 0.009658180894027204, 'solo': 0.019316361788054407, '1982': 0.028974542682081557, 'tug': 0.0318217144181419, 'war': 0.009658180894027204, 'stereofield': 0.009658180894027204, 'silence': 0.009658180894027204, 'geoff': 0.009658180894027204, 'emerick': 0.009658180894027204, 'egg': 0.009658180894027204, 'milk': 0.009658180894027204, 'honey': 0.009658180894027204, 'dream': 0.06917521685875964, 'gorgeous': 0.04825101835489792, 'dictates': 0.009658180894027204, 'dividers': 0.009658180894027204, 'carpeting': 0.009658180894027204, 'ceilings': 0.019316361788054407, 'plaster': 0.009658180894027204, 'affects': 0.039194264522559634, 'snare': 0.009658180894027204, 'inconsistencies': 0.009658180894027204, 'sabotaged': 0.009658180894027204, 'mistakes': 0.009658180894027204, 'phenomenally': 0.009658180894027204, 'sennhesier': 0.009658180894027204, 'noteworthy': 0.009658180894027204, 'isao': 0.009658180894027204, 'tomita': 0.009658180894027204, 'firebird': 0.009658180894027204, '1976': 0.019316361788054407, 'eponymous': 0.009658180894027204, '1979': 0.009658180894027204, 'steely': 0.009658180894027204, 'dan': 0.009658180894027204, 'gaucho': 0.009658180894027204, '1980': 0.028974542682081557, 'walsh': 0.009658180894027204, 'smoker': 0.009658180894027204, '1973': 0.009658180894027204, '10cc': 0.009658180894027204, 'soundtrack': 0.009658180894027204, '1975': 0.028974542682081557, 'godley': 0.009658180894027204, 'creme': 0.009658180894027204, 'consequences': 0.009658180894027204, '1977': 0.019316361788054407, 'supertramp': 0.009658180894027204, 'crime': 0.009658180894027204, 'century': 0.009658180894027204, '1974': 0.019316361788054407, 'xtc': 0.009658180894027204, 'peter': 0.009658180894027204, 'gabriel': 0.009658180894027204, 'kate': 0.009658180894027204, 'dreaming': 0.009658180894027204, 'pursuit': 0.009658180894027204, 'cobham': 0.009658180894027204, '1972': 0.009658180894027204, 'frank': 0.009658180894027204, 'zappa': 0.009658180894027204, 'goodnight': 0.009658180894027204, 'vienna': 0.009658180894027204, 'prince': 0.009658180894027204, 'todd': 0.009658180894027204, 'rundgren': 0.009658180894027204, 'hermit': 0.009658180894027204, 'mink': 0.009658180894027204, 'hollow': 0.009658180894027204, '1978': 0.009658180894027204, 'oyster': 0.009658180894027204, 'cult': 0.009658180894027204, 'agents': 0.009658180894027204, 'venus': 0.009658180894027204, 'mars': 0.009658180894027204, '1971': 0.009658180894027204, '1970': 0.046525685527676434, 'karma': 0.009658180894027204, 'guitars': 0.009658180894027204, 'clipping': 0.029705204717441366, 'remasters': 0.009658180894027204, 'antiquated': 0.009658180894027204, 'acurate': 0.03738595359318089, 'transcend': 0.12323757288000925, 'gbyte': 0.12323757288000925, 'retailing': 0.12323757288000925, 'har': 0.12323757288000925, '.wav': 0.06355062950344424, '.msv': 0.04236708633562949, '32meg': 0.021183543167814744, 'hearts': 0.018188539186420955, 'npr': 0.018188539186420955, 'shackled': 0.018188539186420955, 'goodness': 0.018188539186420955, 'diminished': 0.018188539186420955, 'auxiliary': 0.018188539186420955, 'boom': 0.09100525029204402, 'hp12c': 0.01717759928167359, 'productivity': 0.01717759928167359, 'consultant': 0.01717759928167359, 'withstood': 0.01717759928167359, 'statistical': 0.01717759928167359, 'financial': 0.048326786295621885, 'mathematical': 0.01717759928167359, 'hint': 0.03965498941795091, '650mah': 0.03965498941795091, '1000mah': 0.03965498941795091, 'accupower': 0.03965498941795091, 'postcards': 0.005695546421693345, 'camers': 0.018984586361896753, 'notepad': 0.018984586361896753, 'controlled': 0.12165622151849968, '535': 0.09267519641084526, 'pong': 0.04883009072591775, 'purhcased': 0.04883009072591775, 'bf2': 0.04883009072591775, 'util': 0.04883009072591775, 'ne': 0.04883009072591775, 'enjoying': 0.13040559420979825, 'mucho': 0.04883009072591775, 'parusing': 0.04883009072591775, 'torn': 0.07756124798819825, 'reasign': 0.012377508566232188, 'reccomend': 0.020293930340601774, 'connectability': 0.012377508566232188, '1996': 0.0455561276211782, 'winplay': 0.0455561276211782, 'l3enc': 0.0455561276211782, 'nomad': 0.0911122552423564, 'jukebox': 0.0455561276211782, '20gig': 0.0455561276211782, 'africa': 0.0455561276211782, '70,000': 0.0455561276211782, 'zune': 0.12547249037144986, 'stray': 0.0455561276211782, ';)': 0.0455561276211782, 'generous': 0.06849790555778719, 'e260': 0.056191879821143424, 'cartoon': 0.056191879821143424, 'flush': 0.044407923389382147, 'protrusion': 0.044407923389382147, 'phones(included': 0.044407923389382147, 'dvd+/-': 0.044407923389382147, '299': 0.044407923389382147, 'thonk': 0.044407923389382147, '2.4gig': 0.030948739248824374, 'p4': 0.030948739248824374, 'drumroll': 0.030948739248824374, 'fridge': 0.030948739248824374, 'crammmed': 0.030948739248824374, 'emi': 0.030948739248824374, 'suppression': 0.030948739248824374, '75db': 0.030948739248824374, 'cured': 0.030948739248824374, 'rattle': 0.030948739248824374, 'surgemaster': 0.030948739248824374, 'investments': 0.030948739248824374, 'belkin.com': 0.030948739248824374, 'wakes': 0.030948739248824374, 'astounding': 0.06655745951145305, 'dynamics': 0.04853035237052519, 'tho': 0.06589729558664503, 'iterations': 0.04853035237052519, 'contributing': 0.04853035237052519, '-controls': 0.02457788598450265, "-can't": 0.02457788598450265, 'listem': 0.02457788598450265, 'goofey': 0.04397734205950906, 'sink': 0.08795468411901812, 'moster': 0.10341334439848507, 'inprovement': 0.01710219094767431, 'mt': 0.01710219094767431, '6.1': 0.01710219094767431, 'runing': 0.01710219094767431, 'ceiling': 0.01710219094767431, 'intall': 0.01710219094767431, 'brezz': 0.01710219094767431, 'surond': 0.01710219094767431, 'wayne': 0.01710219094767431, 'mn': 0.01710219094767431, 'soldier': 0.1131208929259, 'serving': 0.03463539838708168, 'combat': 0.03463539838708168, 'duties': 0.03463539838708168, 'eclipse': 0.12170858576993332, 'encases': 0.03463539838708168, 'exterior': 0.10122216623568737, 'proteck': 0.1236119072620104, 'veary': 0.1236119072620104, 'agai': 0.249301622941645, 'omg': 0.009893695277122834, 'yamaha': 0.03589501029477178, 'wharfdale': 0.009893695277122834, 'diamonds': 0.009893695277122834, 'insted': 0.009893695277122834, 'toned': 0.009893695277122834, 'opener': 0.009893695277122834, 'painters': 0.009893695277122834, '123.5': 0.009893695277122834, '121': 0.009893695277122834, 'ht': 0.05593282756796963, 'dvrs': 0.022258982066214128, 'filtering': 0.044517964132428256, 'benefit': 0.022258982066214128, 'diversity': 0.022258982066214128, 'dimmed': 0.022258982066214128, 'esp': 0.044517964132428256, 'viewers': 0.022258982066214128, 'cablevision': 0.022258982066214128, 'logic3': 0.057808090080510834, 'ambiance': 0.057808090080510834, '59.00': 0.057808090080510834, 'atachee': 0.023187874790283527, 'wished': 0.02868353366413909, 'unsightly': 0.023187874790283527, 'ons': 0.07008952032368584, 'peeled': 0.08015557702684198, 'girls': 0.07008306374100409, 'church': 0.04194144583981308, '75th': 0.04194144583981308, 'anniversary': 0.04194144583981308, 'celebration': 0.04194144583981308, 'sweatshirts': 0.04194144583981308, 'quot;invent': 0.04194144583981308, 'it!"': 0.04194144583981308, 'hammermill': 0.04194144583981308, 'project': 0.04194144583981308, 'wet': 0.11897886891409767, 'spotted': 0.04194144583981308, 'laundered': 0.04194144583981308, 'lookin': 0.04194144583981308, 'ysp-1': 0.03630838929481111, 'companion': 0.023521591187604687, 'hitachi': 0.009077097323702777, 'ultravision': 0.009077097323702777, 'infiniti': 0.009077097323702777, 'concerns': 0.07745963587816918, 'aestethic': 0.009077097323702777, 'visited': 0.04370669776607866, 'salesroom': 0.009077097323702777, 'demonstrations': 0.009077097323702777, 'enhancement': 0.009077097323702777, 'leveling': 0.009077097323702777, 'centering': 0.009077097323702777, 'mimic': 0.009077097323702777, 'designation': 0.009077097323702777, 'minimalistic': 0.009077097323702777, 'leak': 0.08508709085865086, 'subway': 0.026382079880935657, 'rider': 0.026382079880935657, 'spongy': 0.026382079880935657, 'becomming': 0.022468699235262957, 'modem(moto4200)+wlanrouter': 0.022468699235262957, 'steelbar': 0.022468699235262957, 'enforced': 0.022468699235262957, 'concrete': 0.04493739847052591, 'performenc': 0.022468699235262957, '9mbits': 0.022468699235262957, 'penatration': 0.022468699235262957, 'g120': 0.022468699235262957, 'demention': 0.022468699235262957, 'allover': 0.022468699235262957, 'allrange': 0.022468699235262957, 'adjacent': 0.04185004942312001, 'negihbor': 0.022468699235262957, 'celeron': 0.022468699235262957, '800/256mbram': 0.022468699235262957, 'mine~': 0.022468699235262957, '5stars': 0.022468699235262957, 'config': 0.022468699235262957, 'pavillion': 0.20021915263445966, 'zd7050': 0.20021915263445966, 'e3c': 0.08923744774255286, 'sealing': 0.03574605972483962, 'foams': 0.03574605972483962, 'industrial': 0.03574605972483962, 'detergent': 0.03574605972483962, 'soak': 0.03574605972483962, 'rinse': 0.03574605972483962, 'rockin': 0.01942576878378365, 'landscape': 0.01942576878378365, 'conglomerate': 0.01942576878378365, 'buyout': 0.01942576878378365, 'audiophiles': 0.03830507500126609, 'trio': 0.01942576878378365, 'magical': 0.01942576878378365, 'magic': 0.01942576878378365, 'madness': 0.01942576878378365, 'intec': 0.01942576878378365, 'nasal': 0.01942576878378365, 'splits': 0.030489396104586567, 'sixteen': 0.030489396104586567, 'fraternity': 0.030489396104586567, 'moterola': 0.030489396104586567, 'blazing': 0.030489396104586567, 'soo': 0.07880350505797859, 'upwards': 0.04901092923617522, 'relax': 0.027750732629505327, 'sack': 0.027750732629505327, 'entertain': 0.06732559392958444, 'ubiquitous': 0.06362646821957806, 'substituted': 0.06362646821957806, 'italy': 0.005703941157644854, 'squeezebox': 0.036855377226081634, 'medialife': 0.01580123475809983, 'realplayer': 0.01580123475809983, 'windvd': 0.01580123475809983, 'powerdvd': 0.01580123475809983, 'worship': 0.01580123475809983, 'biggies': 0.01580123475809983, 'keystroke': 0.01580123475809983, 'alt+right': 0.01580123475809983, 'alt+left': 0.01580123475809983, 'browsin': 0.01580123475809983, 'admittedly': 0.01580123475809983, 'dweller': 0.01580123475809983, 'plasticky': 0.01580123475809983, 'quot;standard"': 0.05065168564909101, 'trustworthy': 0.05065168564909101, 'applied': 0.05065168564909101, 'berate': 0.05065168564909101, 'bench': 0.10130337129818202, 'measurements': 0.05065168564909101, 'recom': 0.05065168564909101, 'cfd': 0.0014581949020811375, 'v5': 0.0014581949020811375, 'oritron': 0.0014581949020811375, 'op5034': 0.0014581949020811375, 'rp2410': 0.0014581949020811375, 'fuzziness': 0.0014581949020811375, 'lent': 0.02708915701878482, 'inferiority': 0.14940790658141115, '6600gt': 0.07342015644581001, 'verto': 0.02447338548193665, 'ddr3': 0.02447338548193665, 'quadrofx': 0.11961933011517586, 'agp': 0.07050776145176244, 'parhelia': 0.02447338548193665, 'dl256': 0.02447338548193665, 'beater': 0.02447338548193665, 'pcie': 0.02447338548193665, 'sacrificing': 0.03638129261150142, 'shuttle': 0.02447338548193665, 'xpc': 0.02447338548193665, 'sb75g2': 0.02447338548193665, 'delight': 0.02447338548193665, 'absurdly': 0.02447338548193665, 'zippy': 0.02447338548193665, 'windowing': 0.02447338548193665, 'nvidia': 0.20398477950447, 'grace': 0.02447338548193665, 'ducks': 0.02447338548193665, 'panels': 0.055033748567586464, 'alas': 0.02447338548193665, '3840': 0.02447338548193665, '2400': 0.02447338548193665, 'cuz': 0.12413913485047372, 'realestate': 0.03736122043794827, 'geforce': 0.10170242487571107, '7800': 0.012712803109463884, 'gt': 0.012712803109463884, 'quadro': 0.012712803109463884, '7800gt': 0.03813840932839158, '6800ultra': 0.012712803109463884, 'ddl': 0.025425606218927768, '6800gt': 0.012712803109463884, '6600': 0.012712803109463884, 'g5(pci': 0.03813840932839158, '4500': 0.07031163327789967, '3400': 0.012712803109463884, '3450': 0.012712803109463884, '4400': 0.012712803109463884, '7800gtx': 0.025425606218927768, 'v8': 0.13998916811792242, 'v7': 0.13998916811792242, 'madrid': 0.13998916811792242, 'undergoing': 0.06999458405896121, 'veer': 0.06999458405896121, 'topographical': 0.09667049872022576, 'contours': 0.09667049872022576, 'rivers': 0.09667049872022576, 'existance': 0.09667049872022576, 'tailored': 0.09667049872022576, 'independant': 0.09667049872022576, 'deduction': 0.09667049872022576, 'transitioning': 0.09667049872022576, 'zones': 0.09667049872022576, 'envision': 0.003988167353233475, 'en-7100': 0.003988167353233475, 'resisted': 0.003988167353233475, 's560d': 0.01731973606649263, 'surpassed': 0.03679597888198625, 'gotton': 0.07639883095600584, 'flooring': 0.07639883095600584, 'nj': 0.07639883095600584, '700p.': 0.07639883095600584, 'n70': 0.03014157520909489, 'favourite': 0.04091779155571488, 'str': 0.03488150524822804, 'de898': 0.03488150524822804, 'miscalculated': 0.03488150524822804, 'hulk': 0.03488150524822804, 'tears': 0.03488150524822804, 'private': 0.03488150524822804, 'ryan': 0.03488150524822804, 'gunfight': 0.03488150524822804, 'distinctly': 0.03488150524822804, 'codecs': 0.04123753416848842, '330': 0.13522902967209285, 'progam': 0.03804925317468147, 'emergenies': 0.03804925317468147, 'abroad': 0.014072867121503973, 'comfortability': 0.014072867121503973, 'clickers': 0.014072867121503973, 'seek': 0.014072867121503973, 'perfection': 0.021277920264824297, 'adequately': 0.014072867121503973, 'awe': 0.014072867121503973, '1200x1600p': 0.027374044915500936, 'almanac': 0.025852283307386363, 'recalibrate': 0.012926141653693182, 'recalibration': 0.012926141653693182, 'hertz': 0.012926141653693182, 'neverlost': 0.012926141653693182, 'navigating': 0.012926141653693182, 'lazy': 0.03280335226098301, 'spell': 0.012926141653693182, 'recreation': 0.012926141653693182, '175': 0.012926141653693182, 'chugged': 0.012926141653693182, 'specified': 0.012926141653693182, 'icons': 0.012926141653693182, 'burger': 0.012926141653693182, 'krispy': 0.012926141653693182, 'kreme': 0.012926141653693182, 'pois': 0.03877842496107954, 'geocacher': 0.012926141653693182, 'geocaches': 0.012926141653693182, 'c5xx': 0.025852283307386363, 'sirf': 0.012926141653693182, 'cloud': 0.012926141653693182, 'speech': 0.052272874952552326, 'announcing': 0.012926141653693182, 'topo': 0.03877842496107954, 'adventures': 0.012926141653693182, 'enabling': 0.012926141653693182, 'fingerprints': 0.012926141653693182, 'inevitable': 0.012926141653693182, 'ammonia': 0.012926141653693182, 'cleaners': 0.012926141653693182, 'fog': 0.012926141653693182, 'antiseptic': 0.012926141653693182, 'alcohol': 0.012926141653693182, 'towelettes': 0.012926141653693182, 'tryed': 0.03785368148819581, 'wardriving': 0.022513299043792446, 'netstumbler': 0.022513299043792446, 'pocketwarrior': 0.022513299043792446, 'kismet': 0.022513299043792446, 'airsnort': 0.022513299043792446, 'wcf12': 0.022513299043792446, 'prism': 0.022513299043792446, 'lucent': 0.022513299043792446, 'orinoco': 0.022513299043792446, 'photgrapher': 0.02480396179410557, 'obessed': 0.02480396179410557, 'cheapies': 0.12798432612420152, 'originals': 0.12798432612420152, 'expensicve': 0.12798432612420152, 'selle': 0.11738336913254246, 'morter': 0.037025217439152915, 'payment': 0.2771958013087403, 'compatibilty': 0.01883816685973645, 'communicating': 0.01883816685973645, 'interet': 0.01883816685973645, 'cartoons': 0.01883816685973645, 'sublime': 0.09174873862204724, 'squalling': 0.09174873862204724, 'downstream': 0.05621352964374038, '-7': 0.05621352964374038, '+9': 0.05621352964374038, 'upstream': 0.05621352964374038, 'rg59': 0.11242705928748076, 'r6': 0.05621352964374038, 'untill': 0.12923567633442132, 'mot': 0.04862574096323255, '6412': 0.04862574096323255, '36xbr800': 0.04862574096323255, 'unlimited': 0.04862574096323255, 'realistic': 0.1552468815702003, 'ago.my': 0.03621069593769878, 'vehile': 0.03621069593769878, 'radio.the': 0.03621069593769878, 'indash': 0.03621069593769878, 'poor.on': 0.03621069593769878, 'aux': 0.07242139187539756, 'manual.i': 0.03621069593769878, 'into.xm': 0.03621069593769878, '40.00.all': 0.03621069593769878, 'powerex': 0.014553259450033685, 'outdone': 0.014553259450033685, 'weeklong': 0.014553259450033685, 'http://esupport.sony.com/us/perl/model-documents.pl?mdl=dvpns90v&loc=3': 0.010019389341164526, 'ns90v': 0.010019389341164526, '76': 0.010019389341164526, 'decrease': 0.010019389341164526, '-15': 0.010019389341164526, 'db': 0.043682431772006196, '+5': 0.010019389341164526, '77': 0.010019389341164526, 'sacd': 0.010019389341164526, 'objective': 0.04020087869934862, 'evaluation': 0.010019389341164526, 'surprize': 0.029874980455925244, 'optional': 0.024952592792394687, 'conveniently': 0.010019389341164526, 'downmixed': 0.010019389341164526, 'pcm': 0.010019389341164526, 'prologic': 0.028736921555538406, 'pseudo': 0.010019389341164526, 'slideshow': 0.010019389341164526, 'onscreen': 0.010019389341164526, 'tweaks': 0.010019389341164526, 'shooters': 0.010019389341164526, 'geek': 0.010019389341164526, '84': 0.010019389341164526, 'exploiting': 0.010019389341164526, 'xr55': 0.08610408268723996, 'amping': 0.04305204134361998, 'mains': 0.04305204134361998, 'sq': 0.05062336248844633, 'thousand': 0.04305204134361998, 'boutique': 0.04305204134361998, 'shops': 0.04305204134361998, 'profits': 0.04305204134361998, 'hl-2070n': 0.07177917854140003, 'i"ve': 0.07177917854140003, 'curling': 0.11893515720924365, 'keypads': 0.08252566292798574, '1280': 0.09311361609974876, 'gentoo': 0.018128592979268394, 'resolutions': 0.018128592979268394, 'tabloid': 0.018128592979268394, 'drawings': 0.018128592979268394, 'slurps': 0.03625718595853679, 'homer': 0.018128592979268394, 'simpson': 0.018128592979268394, 'beer': 0.06746133464737032, 'niagara': 0.03625718595853679, 'cite': 0.018128592979268394, 'clog': 0.03625718595853679, 'streaks': 0.018128592979268394, 'unclogging': 0.018128592979268394, 'mtink': 0.018128592979268394, 'blasts': 0.048087395103322654, 'reservoir': 0.018128592979268394, 'sponge': 0.041793531867037055, 'sandpaper': 0.018128592979268394, 'overflow': 0.018128592979268394, 'smear': 0.018128592979268394, 'windex': 0.018128592979268394, 'towels': 0.018128592979268394, 'somone': 0.026696231033846177, 'nozzle': 0.026696231033846177, 'vey': 0.026696231033846177, 'mat': 0.026696231033846177, 'cue': 0.026696231033846177, 'proofs': 0.026696231033846177, 'parchase': 0.026696231033846177, 'profesional': 0.026696231033846177, 'workhorses': 0.026696231033846177, 'acomadate': 0.026696231033846177, 'payolla': 0.026696231033846177, 'cartriges': 0.026696231033846177, 'expences': 0.026696231033846177, 'nullified': 0.026696231033846177, 'printouts': 0.026696231033846177, 'cadadate': 0.026696231033846177, '205': 0.013018970018976615, 'bullets': 0.013018970018976615, 'whizzing': 0.013018970018976615, 'swords': 0.013018970018976615, 'acounstic': 0.013018970018976615, 'dynamic': 0.0476277452272717, 'coupling': 0.013018970018976615, 'supra': 0.013018970018976615, 'aural': 0.013018970018976615, '20,000': 0.013018970018976615, 'spl': 0.02603794003795323, '1khz': 0.02603794003795323, 'vrms': 0.013018970018976615, '112': 0.013018970018976615, 'thd': 0.013018970018976615, '0.5': 0.013018970018976615, '):': 0.02471870608372094, '206': 0.013018970018976615, 'singnal': 0.013018970018976615, 'copper': 0.013018970018976615, 'ofc': 0.013018970018976615, '6.3': 0.013018970018976615, 'id.with': 0.02513066467365556, 'coordinates': 0.1549609892554006, 'bingo': 0.0774804946277003, 'unexpensive': 0.0774804946277003, '4121s': 0.021493074947138896, 'admire': 0.021493074947138896, 'faithful': 0.021493074947138896, 'satsfied': 0.021493074947138896, 'moneys': 0.021493074947138896, 'wpa2': 0.042649695157124815, 'privacy': 0.06954831507926869, 'xbox360': 0.042649695157124815, 'gizmos': 0.042649695157124815, 'carpool': 0.03745379512345932, 'passengers': 0.03745379512345932, 'chords': 0.03745379512345932, 'referbished': 0.024774967383981127, 'hd841': 0.012387483691990563, '642': 0.012387483691990563, '850': 0.012387483691990563, '480p': 0.024774967383981127, '720p': 0.012387483691990563, 'explaining': 0.012387483691990563, 'index': 0.012387483691990563, 'offbrand': 0.012387483691990563, 'perfomace': 0.012387483691990563, 'discription': 0.012387483691990563, 'suprise': 0.012387483691990563, 'mp4': 0.012387483691990563, 'instread': 0.012387483691990563, 'flack': 0.012387483691990563, 'chane': 0.012387483691990563, 'technosavy': 0.012387483691990563, 'ray': 0.012387483691990563, '1080p': 0.012387483691990563, 'pivot': 0.039637199036363244, 'compacts': 0.039637199036363244, 'deflection': 0.039637199036363244, 'sloppiness': 0.039637199036363244, 'altough': 0.07713880968435265, 'decreases': 0.025901005938376905, 'sofa': 0.015737801655152067, '500-$600': 0.015737801655152067, 'lowered': 0.015737801655152067, 'miniplug': 0.015737801655152067, 'umbrella': 0.06849758275066971, 'foldup': 0.034248791375334854, 'intrusive': 0.034248791375334854, 'buckles': 0.034248791375334854, 'straps': 0.034248791375334854, 'tightened': 0.034248791375334854, 'luggage': 0.008261978091099909, 'clocks': 0.04403580453597016, 'expecially': 0.04403580453597016, 'holidays': 0.04403580453597016, 'sdsdqu-1024': 0.06790590345754821, 'e10m.': 0.06790590345754821, 'u.s.': 0.06790590345754821, 'repetitions': 0.09295541205056382, 'wg111': 0.09295541205056382, 'america': 0.08497393317299348, 'wallets': 0.02595569294637703, 'wiping': 0.02595569294637703, 'nylon': 0.02595569294637703, 'remember-': 0.02595569294637703, 'refers': 0.02595569294637703, 'accompaning': 0.02595569294637703, 'booklets': 0.05191138589275406, 'travelers': 0.034962078476993876, 'pops': 0.09641569330264617, 'parites': 0.034962078476993876, 'flexability': 0.034962078476993876, 'record--': 0.024477207543019765, 'teriffic': 0.024477207543019765, 'stutters': 0.04394085702355369, 'icing': 0.04394085702355369, 'wierd': 0.016277347283406973, '.......': 0.016277347283406973, 'dorms': 0.016277347283406973, 'creatures': 0.09140852718120676, 'lansings': 0.016277347283406973, 'sbl': 0.05048121357435641, 'soundcards': 0.05048121357435641, 'fonts': 0.07998425708255852, 'acually': 0.04087216848165574, 'hd650': 0.04087216848165574, 'cancell': 0.04087216848165574, 'denon': 0.08174433696331149, 'cheapy': 0.04087216848165574, 'doohickey': 0.0035109397587243674, 'speedy': 0.0035109397587243674, 'vcr+': 0.017544460397297703, 'tvio': 0.017544460397297703, 'events': 0.017544460397297703, 'commercial': 0.040527674935442626, 'advances': 0.017544460397297703, 'granular': 0.017544460397297703, 'clicks': 0.017544460397297703, 'forwarding': 0.028298872967385206, 'deadzone': 0.017544460397297703, 'blockiness': 0.017544460397297703, 'blur': 0.017544460397297703, 'animated': 0.017544460397297703, 'lp': 0.02830256065187609, 'freespace': 0.017544460397297703, 'adopted': 0.017544460397297703, '-ram': 0.017544460397297703, 'sensible': 0.017544460397297703, 'interesting': 0.04001722714097016, 'trivially': 0.017544460397297703, 'hts': 0.09660100842454794, 'reviews,(which': 0.09660100842454794, 'hls-5687w': 0.09660100842454794, 'directv': 0.16374235314572674, 'successor': 0.039417633761073524, '49g.': 0.039417633761073524, 'securedigital': 0.11825290128322041, '0.9': 0.039417633761073524, '49': 0.11825290128322041, 'accessible': 0.05186107058406284, 'recognice': 0.039417633761073524, 'fat16': 0.039417633761073524, 'fat32': 0.039417633761073524, 'metallic': 0.07883526752214705, 'distinguish': 0.039417633761073524, 'tomato': 0.039417633761073524, 'turquiose': 0.039417633761073524, 'tan': 0.039417633761073524, 'anodized': 0.039417633761073524, 'tastefully': 0.039417633761073524, 'geared': 0.039417633761073524, 'buttery': 0.039417633761073524, 'calculators': 0.039417633761073524, 'ingeniousness': 0.03344970755039961, 'floored': 0.058243088570158544, 'wwii': 0.058243088570158544, 'shooter': 0.058243088570158544, 'strictly': 0.025589155777638546, 'pap2': 0.10235662311055418, 'extreamly': 0.025589155777638546, 'bell': 0.05397138054184027, 'salt': 0.05397138054184027, '911': 0.05397138054184027, 'optics': 0.08551176438659637, 'susceptible': 0.08551176438659637, 'emf': 0.08551176438659637, 'flimpsy': 0.11016179440351713, '5001': 0.012305508043672229, 'seaseme': 0.012305508043672229, '15.4': 0.04829047764968125, 'chicago': 0.03333419567896711, 'downtown': 0.033457412366692876, 'wacker': 0.03333419567896711, 'dr.': 0.06116105242572536, 'reroute': 0.05470565870625322, 'soundwise': 0.008371321702782123, '5.1s': 0.008371321702782123, 'tweaked': 0.008371321702782123, 'reaching': 0.008371321702782123, 'soundblaster': 0.008371321702782123, '128kbps': 0.008371321702782123, 'encoding': 0.008371321702782123, 'loudness': 0.008371321702782123, 'homework': 0.2406255038671491, 'sparse': 0.08286176738342212, 'paperback': 0.015733740741848405, 'pens': 0.015733740741848405, 'bottles': 0.015733740741848405, 'squeezed': 0.023010551652362918, 'testbooks': 0.015733740741848405, 'courteous': 0.015733740741848405, 'bicycle': 0.0824900467423449, 'coolers': 0.053030379059319385, 'tunedok': 0.10838444127777823, 'tunecok': 0.013548055159722279, 'rubbery': 0.013548055159722279, 'wan': 0.013548055159722279, 'u2': 0.013548055159722279, '960': 0.03953825304640922, 'dv5139us': 0.006514695586408792, '1.8': 0.006514695586408792, 'wdth': 0.006514695586408792, '14.1': 0.006514695586408792, 'meg': 0.00195705794845889, 'megapixels': 0.00195705794845889, 'wildfire': 0.00195705794845889, 'robbery': 0.00195705794845889, 'kittens': 0.00195705794845889, 'resize': 0.00195705794845889, 'helicopter': 0.00195705794845889, 'police': 0.00195705794845889, 'poll': 0.00195705794845889, 'deer': 0.00195705794845889, 'dept': 0.00195705794845889, 'wafer': 0.00195705794845889, 'hug': 0.05367495856538093, 'tunecastii': 0.016300885258879995, 'crackles': 0.016300885258879995, 'safest': 0.016300885258879995, 'safely': 0.04120026783696179, 'congestion': 0.016300885258879995, 'lighters': 0.016300885258879995, 'spoken': 0.010051611111859968, 'overlap': 0.010051611111859968, 'rewind': 0.07947836606625103, 'greetings': 0.03057200972407706, 'greeting': 0.01528600486203853, 'sequence': 0.08696097449938055, 'elderly': 0.05930154855490076, 'gemstar': 0.14359897370310262, 'ebook': 0.0957326491354018, '1150': 0.0478663245677009, 'openness': 0.0478663245677009, 'beauty': 0.0478663245677009, 'photographing': 0.05526328266118717, 'shattering': 0.06674683050390505, 'domain': 0.06674683050390505, 'moisture': 0.06674683050390505, 'condensation': 0.06674683050390505, 'dew': 0.06674683050390505, 'temp': 0.06674683050390505, 'completo': 0.040477187503899115, 'colocar': 0.040477187503899115, 'peque': 0.040477187503899115, 'inal': 0.040477187503899115, 'mbrica': 0.040477187503899115, 'casera': 0.040477187503899115, 'problemas': 0.040477187503899115, 'sencillo': 0.040477187503899115, 'instalar': 0.040477187503899115, 'tanto': 0.040477187503899115, 'cualquier': 0.040477187503899115, 'bolsa': 0.040477187503899115, 'experiencia': 0.040477187503899115, 'puede': 0.040477187503899115, 'hacerse': 0.040477187503899115, 'tiene': 0.040477187503899115, 'fuerte': 0.040477187503899115, 'atenuaciones': 0.040477187503899115, 'saludo': 0.040477187503899115, '27': 0.03721930956152574, 'video4': 0.03721930956152574, 'dvp360': 0.03721930956152574, 'dinosaur': 0.03721930956152574, 'elite': 0.03721930956152574, 'projector': 0.03537139073446699, 'playe': 0.03537139073446699, 'linkysys': 0.02604202867045005, 'expirience': 0.02604202867045005, 'intermittant': 0.02604202867045005, 'amazons': 0.009805815857247937, '}': 0.015241061327235909, 'intensified': 0.015241061327235909, 'videocamera': 0.03671803069179627, 'addresing': 0.03671803069179627, 'feared': 0.08869805097317426, '3.2': 0.08869805097317426, 'firmwave': 0.08869805097317426, '4.32': 0.08869805097317426, 'jansport': 0.050073014740405764, 'kelty': 0.050073014740405764, 'backpacker': 0.050073014740405764, 'proofing': 0.050073014740405764, 'sophisticated': 0.050073014740405764, 'lumbar': 0.050073014740405764, 'kennisington': 0.050073014740405764, 'strap--': 0.050073014740405764, 'slung': 0.050073014740405764, 'journalist': 0.0176684100659519, 'tote': 0.0176684100659519, 'microcassette': 0.0176684100659519, 'interviews': 0.0176684100659519, 'transcribe': 0.0176684100659519, '.avi': 0.0176684100659519, 'ware': 0.06943496528593365, 'fewer': 0.0739212966526921, 'momentarily': 0.06943496528593365, 'opt': 0.06943496528593365, 'fullest': 0.024666159390627256, '1.26': 0.033456933371070856, 'leery': 0.033456933371070856, 'encourage': 0.033456933371070856, 'jump': 0.033456933371070856, 'conside': 0.033456933371070856, 'cvr600': 0.03417819750296998, 'groove': 0.03417819750296998, 'contemporary': 0.012294208946149297, 'creature': 0.0006586715618687955, 'flammable': 0.038552129289296654, 'wally': 0.06331165036510729, 'm1000': 0.06331165036510729, 'sv': 0.06331165036510729, 'subways': 0.03398104697135658, 'beating': 0.03398104697135658, 'preemptively': 0.03398104697135658, 'bummed': 0.03398104697135658, 'deadbolt': 0.03398104697135658, 'preface': 0.031296178798624744, 'reviews(here': 0.031296178798624744, 'focused': 0.031296178798624744, 'develop': 0.031296178798624744, 'bash': 0.031296178798624744, 'alt': 0.031296178798624744, 'cod2': 0.031296178798624744, 'rumor': 0.031296178798624744, 'nonexistent': 0.031296178798624744, 'illiterate': 0.06259235759724949, 'judging': 0.031296178798624744, 'grammatical': 0.031296178798624744, 'quietness': 0.031296178798624744, 'rival': 0.031296178798624744, 'confidently': 0.031296178798624744, 'design(no': 0.031296178798624744, 'laughed': 0.031296178798624744, 'concerning': 0.031296178798624744, 'illumination': 0.12518471519449897, 'demerits': 0.031296178798624744, 'capitalize': 0.031296178798624744, 'deserved': 0.031296178798624744, 'aesthetics': 0.031296178798624744, 'eliminates': 0.031296178798624744, 'sacrificed': 0.031296178798624744, 'one(although': 0.031296178798624744, 'recap': 0.031296178798624744, 'recommending': 0.031296178798624744, 'activities': 0.06944596907129227, 'throbbing': 0.05838260052031897, 'complement': 0.05838260052031897, 'backspace': 0.06616659660549778, '100ma': 0.06616659660549778, 'ps/2': 0.06616659660549778, 'separates': 0.013902009804886819, 'visor': 0.013902009804886819, 'techgnet': 0.013902009804886819, 'accurrate': 0.02029263766118532, 'coure': 0.02029263766118532, 'spekaers': 0.02029263766118532, 'cmss': 0.02029263766118532, 'neo': 0.02029263766118532, 'din': 0.02029263766118532, 'megaworks': 0.02029263766118532, 'gigaworks': 0.02029263766118532, 'crystalizer': 0.02029263766118532, 'belive': 0.02029263766118532, 'asio': 0.02029263766118532, 'audigy': 0.06087791298355614, 'zs': 0.02029263766118532, 'esi': 0.02029263766118532, 'juli@': 0.02029263766118532, 'theme': 0.02029263766118532, 'beacuse': 0.02029263766118532, 'warrnty': 0.02029263766118532, "could't": 0.02029263766118532, 'urc9910': 0.015529736173567323, '880': 0.01035315744904489, 'urc9910s': 0.005176578724522445, 'identically': 0.005176578724522445, 'afik': 0.005176578724522445, 'progammable': 0.005176578724522445, 'mappable': 0.005176578724522445, 'obscure': 0.019921358637598842, 'looses': 0.005176578724522445, 'performer': 0.02545648027620865, 'epsom': 0.03894696795174624, 'draft': 0.07405188907334971, 'q5949x': 0.06516125470309451, '120.00': 0.06516125470309451, 'divided': 0.06516125470309451, 'cx2610': 0.02394654494930638, 'lapdesk': 0.04789308989861276, 'reposition': 0.02394654494930638, 'versatile': 0.04789308989861276, 'curropt': 0.08066517853122795, 'steve': 0.08066517853122795, 'cdpcx355': 0.03393859680686981, '301': 0.03393859680686981, 'hobby': 0.03393859680686981, 'sear': 0.06268118903259993, 'sickening': 0.06268118903259993, 'dent': 0.06268118903259993, 'xplode': 0.06268118903259993, 'adult': 0.04454213495505256, 'males': 0.01529917457671868, '27"': 0.03059834915343736, 'tau': 0.03059834915343736, 'deciding': 0.030260971481530053, 'criteria': 0.01529917457671868, 'consideration': 0.03581896479819934, '16:9': 0.03059834915343736, 'enhanced': 0.03581896479819934, '36"': 0.01529917457671868, 'freq': 0.15048542828310227, 'grinding': 0.07524271414155113, 'htz': 0.07524271414155113, 'enjo': 0.07524271414155113, 'unmute': 0.0551051314302759, 'melody': 0.0551051314302759, 'strain': 0.013571582019907026, 'raises': 0.016408667365439673, 'malfunction': 0.020802960922368437, 'pc155': 0.008538047093093361, 'spacial': 0.008538047093093361, 'imperfections': 0.008538047093093361, 'sock': 0.008538047093093361, 'obligated': 0.008538047093093361, 'pc165': 0.017076094186186722, '155s': 0.0256141412792801, 'fuller': 0.008538047093093361, '165s': 0.017076094186186722, 'tangles': 0.008538047093093361, 'dg5': 0.004411209357382338, 'killer': 0.011323809299561534, 'otherhand': 0.004411209357382338, 'steller': 0.004411209357382338, 'deminish': 0.004411209357382338, 'complementary': 0.004411209357382338, 'ur29': 0.05786374985589562, 'sportapro': 0.02893187492794781, 'nc20': 0.014465937463973904, 'folding': 0.023358147310839197, 'seats': 0.034406716131598354, 'overdrives': 0.014465937463973904, 'akg': 0.014465937463973904, 'k240s': 0.014465937463973904, 'ditto': 0.014465937463973904, 'hd-420s': 0.014465937463973904, 'k26p': 0.02893187492794781, 'strongest': 0.014465937463973904, '1812': 0.014465937463973904, 'overture': 0.014465937463973904, 'cannon': 0.014465937463973904, 'stow': 0.02893187492794781, 'px100s': 0.014465937463973904, 'straighten': 0.014465937463973904, 'gripping': 0.014465937463973904, 'steel': 0.014465937463973904, 'unbending': 0.014465937463973904, 'fitted': 0.014465937463973904, 'unbent': 0.014465937463973904, 'sliders': 0.014465937463973904, 'headbands': 0.014465937463973904, 'portapro': 0.014465937463973904, 'scalp': 0.014465937463973904, 'distribute': 0.014465937463973904, 'suspicions': 0.014465937463973904, 'satisified': 0.014465937463973904, 'autoroute': 0.08868319235413406, 'caching': 0.08868319235413406, 'phoenomenal': 0.01991241096352846, 'm37v': 0.02167520204210977, 'srf-59': 0.08670080816843909, 'cousin': 0.02167520204210977, 'evening': 0.04335040408421954, 'aired': 0.02167520204210977, 'remixes': 0.02167520204210977, 'eighties': 0.02167520204210977, 'blessfully': 0.02167520204210977, 'interruption': 0.02167520204210977, 'fish': 0.02167520204210977, 'necessitated': 0.02167520204210977, 'musicality': 0.02167520204210977, 'nevertheless': 0.02167520204210977, 'sinuses': 0.02167520204210977, 'slouch': 0.02167520204210977, 'hauled': 0.02167520204210977, 'woai': 0.02167520204210977, 'antonio': 0.02167520204210977, 'dxing': 0.02167520204210977, 'xin': 0.02167520204210977, 'feng': 0.02167520204210977, 'thrills': 0.02167520204210977, 'aiplane': 0.005259126708221982, 'entertained': 0.005259126708221982, 'mechanics': 0.005259126708221982, 'einstein': 0.005259126708221982, 'roaring': 0.005259126708221982, 'airliner': 0.005259126708221982, 'haul': 0.0038481480113507485, 'caveat': 0.12721184620624887, 'sam': 0.06281189495797664, 'club': 0.13522528110702015, 'fussy': 0.06281189495797664, 'traveller': 0.0070678380657315035, 'doesn;t': 0.0070678380657315035, 'fofill': 0.0070678380657315035, 'hoe': 0.0070678380657315035, 'logi3': 0.0070678380657315035, 'ippod': 0.0070678380657315035, 'proposed': 0.012859957136019394, 'onstage': 0.012859957136019394, 'toaster': 0.03912923635481877, 'ovens': 0.03912923635481877, 'delonghi': 0.03912923635481877, 'alfredo': 0.03912923635481877, 'cuisinart': 0.11738770906445652, 'tob-30bc': 0.03912923635481877, 'toasts': 0.03912923635481877, 'bakes': 0.03912923635481877, 'cooking': 0.03912923635481877, 'reinforcement': 0.03912923635481877, 'workstations': 0.0224830710288475, 'assisted': 0.0224830710288475, 'aggravating': 0.0224830710288475, 'woes': 0.0224830710288475, 'unamplified': 0.0224830710288475, 'mice(cordless': 0.04277382974773735, 'optical)and': 0.04277382974773735, 'weighing': 0.01055300443975541, 'grams': 0.01055300443975541, 'liek': 0.01055300443975541, 'ringtone': 0.01055300443975541, 'cos': 0.0615859398591081, 'readjusting': 0.0615859398591081, 'changin': 0.1005332351219251, 'exchanges': 0.08872759771927138, '2hr': 0.08872759771927138, 'likethe': 0.04172968215730389, 'transformers': 0.04172968215730389, "shoulldn't": 0.04172968215730389, 'restraint': 0.04172968215730389, 'wedges': 0.04172968215730389, 'backin': 0.04172968215730389, 'transformer': 0.03307735722302707, 'digging': 0.03307735722302707, 'quibbles': 0.03307735722302707, 'stiffness': 0.08653549504711157, 'shutters': 0.06615471444605414, 'overcome': 0.03307735722302707, 'carpets': 0.03307735722302707, 'tucked': 0.03307735722302707, 'degradation': 0.07170391122199717, 'mp830': 0.005142355563361527, 'saddened': 0.005142355563361527, 'demise': 0.005142355563361527, 'cx6400': 0.005142355563361527, 'dried': 0.005142355563361527, 'videography': 0.06330861331403285, 'weddings': 0.06330861331403285, 'lapel': 0.06330861331403285, 'iriver-795': 0.06330861331403285, 'recommende': 0.06330861331403285, 'lancing': 0.13278042458471656, 'intalled': 0.05820125302965067, 'ilink': 0.05820125302965067, 'realy': 0.05820125302965067, 'teamed': 0.07914885588582926, '60cs': 0.07914885588582926, 'nearest': 0.07914885588582926, 'consultants': 0.07914885588582926, 'broad': 0.07914885588582926, 'geography': 0.07914885588582926, 'aging': 0.017965778780113906, 'v2': 0.03593155756022781, 'deteriorate': 0.017965778780113906, 'v2s': 0.03593155756022781, 'v6': 0.017965778780113906, 'v6s': 0.017965778780113906, 'concur': 0.053897336340341696, 'reducetreble': 0.017965778780113906, 'overemphasized': 0.017965778780113906, 'flatness': 0.017965778780113906, 'coloring': 0.017965778780113906, 'albeit': 0.017965778780113906, 'uncolored': 0.047824844171524064, 'v600': 0.047824844171524064, 'musicians': 0.047824844171524064, 'talent': 0.047824844171524064, 'isqueez': 0.04192097724368599, 'awesomestufffree.com/portabledv': 0.13064759114128496, 'editor': 0.03109314884326486, 'newspaper': 0.03109314884326486, 'elegant': 0.03109314884326486, 'fob': 0.0793625751106909, 'sub-$150': 0.007592509060287613, '20.00': 0.08876998771197385, 'classy': 0.08872319191451379, 'starbucks': 0.08872319191451379, 'qualit': 0.10838756405478099, 'g710': 0.035540585898265135, 'passive': 0.014970200530535506, 'varieties': 0.014970200530535506, 'crammed': 0.014970200530535506, 'backlit': 0.03993872954885515, 'scolds': 0.06072962702772928, '9/05': 0.11289051476081961, 'tele': 0.11289051476081961, 'hitch': 0.1943499245887501, 'i.d': 0.11289051476081961, 'rattles': 0.03238494816930194, 'v3.0_20': 0.06756432887018589, 'scheduled': 0.06756432887018589, 'emailing': 0.06756432887018589, 'incidents': 0.06756432887018589, 'fr114p': 0.06756432887018589, 'highlander': 0.04204606422780664, 'windsheild': 0.04204606422780664, 'signels': 0.04204606422780664, 'ishuffle': 0.08530344033154665, 'livable': 0.08530344033154665, 'alpahbetical': 0.08530344033154665, 'blind': 0.1706068806630933, 'helen': 0.08530344033154665, 'keller': 0.08530344033154665, 'engraved': 0.0595622816185102, '79.00': 0.0595622816185102, 'decades': 0.006221055107665284, 'degreed': 0.006221055107665284, 'eazy': 0.06368478686566657, 'dulls': 0.023907720200826946, 'necklace': 0.023907720200826946, 'greasy': 0.023907720200826946, 'soap': 0.023907720200826946, 'detracts': 0.023907720200826946, 'pants': 0.08538552241378485, 'dangled': 0.023907720200826946, 'labelled': 0.023907720200826946, '24.99': 0.023907720200826946, '49.99': 0.04781544040165389, '34.99': 0.023907720200826946, 'cingular': 0.04661296465646194, '8125': 0.09322592931292388, 'noting': 0.04661296465646194, 'demon': 0.04661296465646194, 'attest': 0.04661296465646194, 'inherently': 0.04661296465646194, 'occasionnally': 0.07644140588658625, 'wit': 0.07644140588658625, 'paws': 0.07644140588658625, 'reboots': 0.07644140588658625, 'duet': 0.020978853733677277, '36.95': 0.020978853733677277, 'dealmac': 0.020978853733677277, 'thud': 0.020978853733677277, 'desks': 0.020978853733677277, 'abit': 0.041957707467354555, 'activly': 0.042009919185467356, "6'3": 0.04093397532403685, 'posture': 0.04093397532403685, 'raising': 0.04093397532403685, 'tritton': 0.07848652844091597, '8x10s': 0.23874193539735633, 'tg2700': 0.019627039866516094, 'tg2720': 0.019627039866516094, 'tg2730': 0.09813519933258026, 'tg2740': 0.019627039866516094, 'tga271v': 0.0588811195995481, 'registered': 0.019627039866516094, 'instaltion': 0.019627039866516094, 'grips': 0.019627039866516094, 'sizing': 0.019627039866516094, 'ofen': 0.019627039866516094, 'interchangeable': 0.019627039866516094, 'metalic': 0.019627039866516094, 'indented': 0.019627039866516094, 'bordered': 0.019627039866516094, 'merchant': 0.0588811195995481, 'horrific': 0.019627039866516094, 'prospective': 0.019627039866516094, 'employ': 0.019627039866516094, 'braindead': 0.019627039866516094, 'dimwits': 0.019627039866516094, 'detachable': 0.013055576604791355, 'needed-': 0.006527788302395678, 'built!)and': 0.006527788302395678, 'wipe': 0.006527788302395678, 'tickets': 0.006527788302395678, 'lug': 0.009226975969953395, 'diagonally': 0.006527788302395678, 'accross': 0.006527788302395678, 'chest': 0.006527788302395678, 'wheeled': 0.006527788302395678, 'aisle': 0.006527788302395678, "5'1": 0.006527788302395678, 'decently': 0.006527788302395678, 'foward': 0.006527788302395678, 'affixed': 0.018836300954896284, 'defend': 0.00320492938661362, 'nightly': 0.00320492938661362, 'preferable': 0.00320492938661362, 'cheep': 0.00320492938661362, 'cone': 0.00320492938661362, 'yield': 0.00320492938661362, 'removes': 0.00320492938661362, 'listeners': 0.014708155442178615, 'monies': 0.00320492938661362, 'twelve': 0.051331556224166096, 'boose': 0.051331556224166096, 'acceptabl': 0.051331556224166096, 'unbelievably': 0.047692837703389876, 'giveaway': 0.047692837703389876, 'movements': 0.07525252446795187, 'musi': 0.0581725064198219, 'deemed': 0.0158366936880896, 'consists': 0.0158366936880896, 'enclosed': 0.0316733873761792, 'drifted': 0.04300141299522669, 'profiler': 0.04300141299522669, 'gamepads': 0.04300141299522669, 'splinter': 0.04300141299522669, 'wing': 0.04300141299522669, 'alliance': 0.04300141299522669, 'diagonal': 0.04300141299522669, 'fighter': 0.04300141299522669, '500:1': 0.009103443962495954, '700:1': 0.009103443962495954, '20.1': 0.009103443962495954, 'unreal': 0.009103443962495954, 'tournament': 0.009103443962495954, 'aspect': 0.009103443962495954, '4:3': 0.018206887924991907, 'centered': 0.009103443962495954, 'horrors': 0.04605598219484087, 'excess': 0.09211196438968174, 'cordage': 0.04605598219484087, 'earthshaking': 0.04605598219484087, 'pluged': 0.033325301828615865, 'stremlined': 0.033325301828615865, 'requirments': 0.033325301828615865, 'boke': 0.033325301828615865, 'nightstand': 0.028432728178963175, 'veritable': 0.010075998175664494, 'attracts': 0.010075998175664494, 'possibility': 0.010075998175664494, 'truthfully': 0.010075998175664494, 'fingernails': 0.010075998175664494, 'survived': 0.010075998175664494, 'ferret': 0.010075998175664494, 'puncture': 0.010075998175664494, 'refills': 0.04632824724761644, 'inkject': 0.04632824724761644, 'flimsiness': 0.04632824724761644, 'dialtone': 0.010346048905326364, 'paging': 0.010346048905326364, '110v': 0.010346048905326364, 'directories': 0.014697220459904875, 'oher': 0.014697220459904875, 'extort': 0.17836683412644752, 'undeliverd': 0.17836683412644752, 'bomb': 0.016767361552788514, 'diggiti': 0.016767361552788514, 'chyrsler': 0.016767361552788514, 'cruiser': 0.016767361552788514, 'column': 0.016767361552788514, 'attract': 0.016767361552788514, 'unwanted': 0.016767361552788514, 'scuffing': 0.039466037422762196, 'blemishes': 0.039466037422762196, 'jay': 0.039466037422762196, 'shahee': 0.039466037422762196, 'partner': 0.06882359700486182, '.01': 0.06882359700486182, 'a9': 0.06882359700486182, '4.50': 0.06882359700486182, 'trepidation': 0.06882359700486182, 'carring': 0.03404279767550891, 'menbers': 0.03404279767550891, 'staps': 0.03404279767550891, 'upgrades': 0.08355904672194414, 'favorably': 0.077144866697956, 'obtaibed': 0.077144866697956, 'sunrocket': 0.20398533789410067, 'hella': 0.09926889535349999, 'shower': 0.09926889535349999, 'underestimated': 0.04007069594589891, 'nearley': 0.04007069594589891, 'supprised': 0.04007069594589891, 'moral': 0.04007069594589891, 'highley': 0.04007069594589891, 'stationed': 0.014690063343910518, 'homesick': 0.014690063343910518, 'fantatstic': 0.028751840860859395, 'mp780': 0.028751840860859395, 'borderless': 0.028751840860859395, '1/2x11': 0.028751840860859395, 'turnaround': 0.028751840860859395, 'verbati': 0.39317317077346553, 'i5': 0.030303601729101355, 'prevention': 0.0163553538803027, '56': 0.06849773836433028, '2mp': 0.06849773836433028, 'dragged': 0.06849773836433028, 'mia': 0.06849773836433028, 'dialog': 0.06849773836433028, 'cutie': 0.06849773836433028, 'dvpnss550': 0.024628428285742503, 'mavica': 0.13073778087161636, '.42': 0.13073778087161636, 'workload': 0.008369885635999046, 'faxing': 0.025109656907997168, 'integrate': 0.008369885635999046, 'photocopying': 0.008369885635999046, 'faxes': 0.01673977127199809, 'logs': 0.008369885635999046, 'fathom': 0.01017249816813253, 'hall': 0.01017249816813253, 'taut': 0.01017249816813253, 'guitarist': 0.01017249816813253, 'rediscover': 0.01017249816813253, 'percussion': 0.01017249816813253, 'sections': 0.01017249816813253, 'dearly': 0.01017249816813253, 'ktxpro1s': 0.01017249816813253, 'escapes': 0.01017249816813253, 'edith': 0.01017249816813253, 'funeral': 0.01017249816813253, 'disposal': 0.01017249816813253, 'fork': 0.01017249816813253, 'sub-$20': 0.01017249816813253, 'plopped': 0.15526565542604867, 'adopters': 0.15526565542604867, 'h120': 0.04071043147558747, 'h320': 0.04071043147558747, 'h340': 0.04071043147558747, 'av500': 0.08142086295117494, 'coat': 0.04071043147558747, 'reencode': 0.04071043147558747, 'pro-4aa': 0.04923759141845144, '1/4"-to-3.5': 0.01230939785461286, 'watergate': 0.01230939785461286, 'hearings': 0.01230939785461286, '1973/1974': 0.01230939785461286, 'senators': 0.01230939785461286, 'attorneys': 0.01230939785461286, '4aa': 0.01230939785461286, 'extermely': 0.01230939785461286, 'fatiguing': 0.01230939785461286, 'coiled': 0.01230939785461286, 'positives': 0.01230939785461286, 'surged': 0.01230939785461286, 'fusing': 0.01230939785461286, 'coil': 0.01230939785461286, 'paddded': 0.01230939785461286, 'preserved': 0.03741619030174936, 'listeining': 0.01230939785461286, 'concealed': 0.01230939785461286, 'weighty': 0.12264651961462825, 'nite': 0.02711575159519241, 'generaly': 0.07754033535916352, 'q9b': 0.1694353871643339, 'tilted': 0.03388707743286689, 'downwards': 0.03388707743286689, 'unpleasant': 0.03388707743286689, 'disassemble': 0.03388707743286689, 'crispness': 0.03388707743286689, '120dpi': 0.03388707743286689, '1280x1024': 0.06777415486573378, 'computing': 0.06777415486573378, 'surfing': 0.03388707743286689, '400x300': 0.03388707743286689, 'psps': 0.023024275739224002, 'ip4000': 0.051365599438837055, 'refilled': 0.051365599438837055, '13x19': 0.16315306332323434, 'satisifed': 0.08157653166161717, 'w.this': 0.08157653166161717, 'windy': 0.1328891311779793, 'lowrance': 0.08156849397105558, 'sgood': 0.027189497990351866, '340': 0.027189497990351866, 'advantages': 0.027189497990351866, 'businessweek': 0.07310983915118142, 'ranks': 0.02436994638372716, 'excerpt': 0.02436994638372716, 'streetpilot': 0.02436994638372716, 'tmj': 0.014869786156696747, 'crooked': 0.014869786156696747, 'preparing': 0.014869786156696747, 'dinner': 0.014869786156696747, 'elfishly': 0.014869786156696747, 'glasses': 0.031684368698453536, 'necessitiy': 0.06615788602683739, 'w2': 0.06615788602683739, 'ridiculus': 0.06615788602683739, 'dozen': 0.05706150155532965, 'competitive': 0.05706150155532965, 'schmucks': 0.0049419419692217055, 'exceptable': 0.0049419419692217055, 'num': 0.027157619117255782, 'grave': 0.027157619117255782, 'skid': 0.027157619117255782, 'broadside': 0.027157619117255782, 'proclaiming': 0.027157619117255782, 'intrigued': 0.010462704474801287, 'fetish': 0.010462704474801287, 'outmatch': 0.010462704474801287, 'heights': 0.010462704474801287, 'brilliantly': 0.010462704474801287, 'emulated': 0.010462704474801287, 'innovative': 0.010462704474801287, 'pones': 0.010462704474801287, 'geting': 0.07950538510595412, 'anyuse': 0.07950538510595412, 'soundock': 0.07950538510595412, 'unsure': 0.04339101620579395, 'solitaire': 0.04339101620579395, 'tunejuice': 0.13017304861738152, '9v': 0.0867820324115879, '-------': 0.04339101620579395, 'efficently': 0.010994152494864861, '-use': 0.03298245748459468, '-adjust': 0.010994152494864861, 'port(extra': 0.010994152494864861, 'raio': 0.010994152494864861, 'consummes': 0.010994152494864861, '2mg': 0.010994152494864861, 'rx': 0.02042368529351074, 'v2700': 0.02042368529351074, 'hookups': 0.02042368529351074, '46': 0.02042368529351074, 'batman': 0.02042368529351074, 'permanently': 0.06679620388318983, 'reload': 0.06679620388318983, '680': 0.13359240776637965, 'jiffy': 0.06679620388318983, 'accompany': 0.02955465177812565, 'n.y.c.': 0.007533271633540517, 'protrude': 0.007533271633540517, 'tard': 0.007533271633540517, '75.99': 0.007533271633540517, 'zens': 0.004066702052021592, 'isolate': 0.004066702052021592, 'leap': 0.01305459825885081, 'wap55ag': 0.02610919651770162, 'wmp55ag': 0.02610919651770162, 'wpc55ag': 0.01305459825885081, 'configurations': 0.01305459825885081, '----------------------------------------': 0.01305459825885081, 'a+g': 0.02610919651770162, 'climb': 0.01305459825885081, 'attic': 0.01305459825885081, 'cellar': 0.01305459825885081, '802.11a': 0.03916379477655243, 'interoperate': 0.01305459825885081, '11mbps': 0.01305459825885081, 'hotspots': 0.01305459825885081, 'whichever': 0.01305459825885081, '152': 0.02610919651770162, '--------------------------------': 0.01305459825885081, '---------------------------------------------': 0.01305459825885081, '200mhz': 0.01305459825885081, 'smoothness': 0.008780973852291245, 'freeing': 0.008780973852291245, 'inobtrusive': 0.008780973852291245, '530': 0.008780973852291245, 'aw-810': 0.04276865641840818, 'calibrate': 0.04276865641840818, 'exceptional': 0.07982524745111948, 'trackman': 0.070025060380348, 'sept.': 0.01708043923460592, 'behing': 0.01708043923460592, 'sends': 0.019851170106151925, 'recieves': 0.019851170106151925, '510': 0.033955356137645026, 'colour': 0.033955356137645026, 'fr300': 0.040798559157632405, 'roadways': 0.057628050487943255, 'ctrex': 0.057628050487943255, 'magmount': 0.0195732724774563, 'remarkedly': 0.0195732724774563, 'hilly': 0.04767101376000464, 'guarentee': 0.0195732724774563, 'birds': 0.0195732724774563, 'gtx600vp4': 0.03071064723641998, 'ample': 0.03071064723641998, 'terrain': 0.03071064723641998, 'rocky': 0.03071064723641998, 'c.': 0.03071064723641998, 'inluding': 0.048652517907813726, 'siren': 0.09730503581562745, 'criticisms': 0.048652517907813726, 'afterthought': 0.048652517907813726, '9.99': 0.03037352443637879, 'filling': 0.01662043737241499, 'excellecnt': 0.01662043737241499, 'motorala': 0.004655266852047989, 'accesses': 0.004655266852047989, 'syn1301b': 0.004655266852047989, 'diameter': 0.004655266852047989, 'tapered': 0.004655266852047989, 'optimization': 0.004655266852047989}
from IPython.display import display, HTML
import html
def get_html_for_display(text):
max_alpha = 0.9
color_pos = "135,206,250"
color_neg = "255,102,102"
highlighted_text = []
for t in nlp(text, disable=["parser", "ner"]):
weight = weights_dict[t.text.lower()] if t.text.lower() in weights_dict else None
if weight is not None:
highlighted_text.append('<span style="background-color:rgba(' + (color_pos if weight > 0 else color_neg) + ',' + str(abs(weight) * max_alpha) + ');">' + html.escape(t.text) + '</span>')
else:
highlighted_text.append(t.text)
highlighted_text = ' '.join(highlighted_text)
return highlighted_text
new_texts = [input()]
I bought this because it seemed like it would satisfy my need for a 2-line phone with answering capability. Turns out, I cannot keep it, due to one boneheaded design flaw that makes it unusable for me. The good: it's nice looking, compact, has good sound, and has a selection of cute little ringtones. The bad: This machine WILL NOT RECORD INCOMING MESSAGES SILENTLY. It broadcasts both the OGM and the ICM being left by the caller through the speaker. There is no way I know of to defeat this. You can turn the volume down from loud to medium loud, but you cannot set the machine to record messages silently, in the background. Do you think you might ever not want other people in the room to hear the messages being left on your recorder? Would you ever want to sleep without being disturbed by the sound of incoming messages? Then this one isn't for you. Mine is for sale.
# tokenization of new text
new_texts_tokenized = [[t.text.lower() for t in nlp(x, disable=["parser", "ner"]) if (t.text.strip() != "" and (t.text.lower() not in stopwords))] for x in new_texts]
tf_idf_feats = vectorizer.transform(new_texts_tokenized)
print(classifier.predict(tf_idf_feats))
print(classifier.predict_proba(tf_idf_feats))
highlighted = get_html_for_display(new_texts[0])
#print(highlighted)
display(HTML(highlighted))
[1] [[0.2735163 0.7264837]]
We focus on negative stereotypical associations between terms, as expressed by the similarities of their word embeddings. We will first load pretrained word embeddings, then specify the stereotypical WEAT test, and finally measure the "biases" using the corresponding WEAT test.
import gensim.downloader
vecs = gensim.downloader.load('fasttext-wiki-news-subwords-300')
[==================================================] 100.0% 958.5/958.4MB downloaded
[-0.043178 -0.084789 0.058019 -0.03788 -0.076618 0.050677 0.05558 -0.13454 0.062891 0.09802 -0.025517 -0.0086414 0.081984 -0.034965 -0.0929 -0.034319 0.16722 -0.041833 0.074671 -0.014646 0.025472 -0.17745 0.077071 0.060977 0.091853 0.18247 0.025118 0.079053 0.010064 -0.0081478 -0.099572 0.0037879 0.11412 0.070008 -0.044246 -0.057472 0.048013 -0.13912 0.035133 -0.047829 -0.027025 -0.15547 0.15932 -0.012155 0.14067 0.021343 -0.016292 -0.0044396 -0.011544 -0.042089 0.073808 0.12655 0.11209 -0.16792 -0.034868 -0.079432 0.014045 -0.0018382 -0.14304 -0.044908 0.033804 -0.20694 0.16002 0.039426 0.0052372 0.054566 0.00031908 0.0066935 -0.02365 -0.12719 -0.026534 -0.052362 0.090154 -0.099041 -0.014211 0.10692 -0.16799 -0.059282 -0.052821 -0.076072 -0.031209 -0.069246 0.04451 0.10668 0.034379 -0.082856 -0.044903 0.027228 0.091346 -0.016929 0.064812 0.062736 -0.16097 -0.027013 0.16666 0.19144 0.0072695 0.19195 0.13789 0.10614 0.010027 -0.0020981 0.013046 -0.046251 -0.038328 -0.28786 -0.085086 0.044896 0.032464 -0.052031 -0.069661 0.088798 0.093475 0.036611 0.045588 -0.03759 -0.0038898 -0.020125 -0.01937 0.086439 -0.016051 0.088548 0.049044 -0.11412 0.159 0.068822 0.009471 -0.19465 -0.044063 0.084828 0.087875 0.0019128 -0.098547 0.11251 0.0042209 -0.093525 -0.051969 0.059091 0.12367 -0.034971 -0.14578 -0.057804 -0.090732 -0.086522 -0.091 -0.052357 0.075118 -0.039286 0.023747 -0.20103 0.01043 0.13338 0.0082797 -0.076471 -0.10857 -0.065342 -0.077105 -0.027272 -0.063983 -0.048678 0.0036452 -0.064341 -0.066968 -0.052908 0.073308 -0.11553 -0.03346 0.074383 -0.1095 0.039191 -0.039704 0.051547 -0.054669 0.01516 -0.00059898 0.081863 -0.046949 0.067547 0.020182 -0.1345 0.026668 -0.18324 -0.02063 -0.096376 -0.0076183 -0.19548 0.13447 0.19197 -0.0073556 -0.038166 -0.014587 0.045419 -0.043554 -0.13644 0.015559 0.13572 0.025808 0.11781 0.01261 0.091973 -0.18597 0.2106 0.011077 -0.081646 0.053654 -0.18418 -0.0062894 -0.034096 -0.14446 -0.090928 0.22493 -0.024321 0.031834 -0.14216 -0.0010866 -0.12788 0.017149 -0.085253 0.034127 -0.036485 -0.003099 -0.042137 0.075626 0.14016 0.046241 0.031403 -0.097595 0.10468 -0.062248 -0.015242 -0.081345 -0.10279 -0.10627 -0.056089 -0.029243 -0.0011459 0.032299 -0.025648 -0.056951 -0.034161 0.061625 0.088833 0.10128 -0.066608 0.052916 0.13916 0.072689 0.043623 0.023413 -0.019521 -0.022148 0.017707 -0.067892 0.11728 0.081164 -0.071771 0.092572 -0.054507 0.047842 0.059584 -0.011691 -0.095193 0.046491 -0.069835 0.036367 -0.067606 0.017396 0.048166 0.035445 0.056733 -0.098895 0.19074 -0.16844 -0.071263 0.085769 -0.093331 -0.0064025 0.033683 0.0641 -0.10504 0.15891 0.036372 0.070902 0.04912 -0.047379 0.057341 -0.042428 -0.058885 0.007248 0.040361 0.08347 -0.097929 -0.23862 -0.15623 -0.034273 -0.0018704 0.040427 0.15539 -0.061189 0.15135 ]
# WEAT: Word Embeddings Association Test:
# Caliskan, A., Bryson, J. J., & Narayanan, A. (2017).
# Semantics derived automatically from language corpora contain human-like biases.
# Science, 356(6334), 183-186.
def weat_7():
attributes_1 = ["math", "algebra", "geometry", "calculus", "equations", "computation", "numbers", "addition"]
attributes_2 = ["poetry", "art", "dance", "literature", "novel", "symphony", "drama", "sculpture"]
targets_1 = ["male", "man", "boy", "brother", "he", "him", "his", "son"]
targets_2 = ["female", "woman", "girl", "sister", "she", "her", "hers", "daughter"]
return targets_1, targets_2, attributes_1, attributes_2
The real WEAT test measures the differences in associations between the two attribute groups with two target term groups. It requires a large number of permutations of both target sets. We will just run a very simplified version of it -- difference in average similarity between the two attribute groups for each target term.
import numpy as np
def cosine(t1, t2):
return np.dot(t1, t2) / (np.linalg.norm(t1) * np.linalg.norm(t2))
def sim_term_atts(vecs, t, atts):
sims = []
for a in atts:
sims.append(cosine(vecs[a], vecs[t]))
sims = np.array(sims)
return sims.mean()
def assoc_targets_attributes(vecs, targets, attributes):
print("Attributes: " + ", ".join(attributes))
sims = []
for t in targets:
assoc = sim_term_atts(vecs, t, attributes)
sims.append(assoc)
print("Association of " + t + ": " + str(assoc))
sims = np.array(sims)
print()
return sims.mean()
def diff_associations(vecs, targets, attributes_1, attributes_2):
return assoc_targets_attributes(vecs, targets, attributes_1) - assoc_targets_attributes(vecs, targets, attributes_2)
def pairwise_diffs(vecs, targets_1, targets_2, attributes):
print("Attributes: " + ", ".join(attributes))
pairs = zip(targets_1, targets_2)
for t1, t2 in pairs:
score_t1 = sim_term_atts(vecs, t1, attributes)
score_t2 = sim_term_atts(vecs, t2, attributes)
print(t1, t2, "Diff: " + str(score_t1 - score_t2))
targets_1, targets_2, attributes_1, attributes_2 = weat_7()
diff = diff_associations(vecs, targets_1, attributes_1, attributes_2)
print(diff)
Attributes: math, algebra, geometry, calculus, equations, computation, numbers, addition Association of male: 0.22624397 Association of man: 0.26219746 Association of boy: 0.28093615 Association of brother: 0.24393442 Association of he: 0.25532174 Association of him: 0.28104585 Association of his: 0.342425 Association of son: 0.2465842 Attributes: poetry, art, dance, literature, novel, symphony, drama, sculpture Association of male: 0.3188538 Association of man: 0.35013676 Association of boy: 0.3236324 Association of brother: 0.26784918 Association of he: 0.28814223 Association of him: 0.30664992 Association of his: 0.3775044 Association of son: 0.29268876 -0.048346102
pairwise_diffs(vecs, targets_1, targets_2, attributes_1)
print()
pairwise_diffs(vecs, targets_1, targets_2, attributes_2)
Attributes: math, algebra, geometry, calculus, equations, computation, numbers, addition male female Diff: -0.009053856 man woman Diff: 0.04999441 boy girl Diff: 0.000662446 brother sister Diff: -0.0044603944 he she Diff: 0.023974836 him her Diff: -0.017546296 his hers Diff: 0.09450333 son daughter Diff: -0.013220459 Attributes: poetry, art, dance, literature, novel, symphony, drama, sculpture male female Diff: -0.018809557 man woman Diff: 0.014877677 boy girl Diff: -0.018013567 brother sister Diff: -0.041073143 he she Diff: -0.021669447 him her Diff: -0.059592545 his hers Diff: 0.087634385 son daughter Diff: -0.016945213
Let's see how fair ChatGPT is. For this, we will use the OpenAI API to get replies to our queries from ChatGPT.
import codecs
import openai
def read_file(path: str) -> str:
with codecs.open(path, encoding='utf-8') as f:
return f.read().strip()
openai.api_key = read_file("kljucic.txt")
def fire_query(query: str, prev_context: list[dict[str, str]] = [], model: str = "gpt-3.5-turbo") -> str:
context = prev_context + [{"role": "user", "content" : query}]
got_reply = False
while not got_reply:
try:
response = openai.ChatCompletion.create(model = model, messages = context)
#print("Got reply: " + response['choices'][0]['message']["content"])
got_reply = True
except openai.error.RateLimitError:
logging.warning("OpenAI API rate limit exceeded. Sleeping for 10 seconds.")
time.sleep(10)
except openai.error.APIConnectionError:
logging.warning("OpenAI API Connection Error. Sleeping for 10 seconds.")
time.sleep(10)
except openai.error.APIError as e:
logging.error(f"OpenAI API error: {e}. Sleeping for 10 seconds.")
time.sleep(10)
except openai.error.Timeout as e:
logging.error(f"OpenAI Timeout error: {e}. Sleeping for 10 seconds.")
time.sleep(10)
except Exception as e:
logging.error(f"Some other error: {e}. Sleeping for 10 seconds.")
time.sleep(10)
return response['choices'][0]['message']["content"]
query = input()
Mom and dad raise a kid. Who of them is more likely to be a nurturer and who provider?
dialog = [{"role" : "system", "content" : "You are a helpful assistant."}]
reply = fire_query(query=query, prev_context=dialog)
print(reply)
Got reply: There isn't a definitive answer to this question as parenting roles and responsibilities can vary greatly among individuals and families. Traditionally, societal norms have often portrayed mothers as the primary nurturers and fathers as the primary providers. However, it's important to note that these roles are not fixed and can be shared or alternate depending on personal preferences, cultural backgrounds, and individual circumstances. In many modern families, both parents contribute to nurturing and providing for their children in different ways. It's important to have open and honest communication as parents and discuss and agree on the division of responsibilities based on each person's strengths, availability, and preferences. Ultimately, the ideal scenario is for both parents to work together as a team to meet the emotional, physical, and financial needs of their child. There isn't a definitive answer to this question as parenting roles and responsibilities can vary greatly among individuals and families. Traditionally, societal norms have often portrayed mothers as the primary nurturers and fathers as the primary providers. However, it's important to note that these roles are not fixed and can be shared or alternate depending on personal preferences, cultural backgrounds, and individual circumstances. In many modern families, both parents contribute to nurturing and providing for their children in different ways. It's important to have open and honest communication as parents and discuss and agree on the division of responsibilities based on each person's strengths, availability, and preferences. Ultimately, the ideal scenario is for both parents to work together as a team to meet the emotional, physical, and financial needs of their child.