You are on page 1of 57

import

pandas as pd
import os
import pickle
import numpy as np
from matplotlib import pyplot as plt
import seaborn as sns
import plotly.express as px
import warnings
warnings.filterwarnings("ignore")
import string
import re
from tqdm import tqdm
from sklearn.feature_extraction.text import TfidfVectorizer
import tensorflow as tf
from keras.layers.recurrent import LSTM
from keras.layers.core import Dense,Activation
from keras.layers.embeddings import Embedding
from sklearn.model_selection import train_test_split
from keras.preprocessing import sequence, text
from tensorflow.keras.utils import to_categorical
from sklearn import preprocessing
from keras.preprocessing.text import Tokenizer
from keras.models import load_model,Model
from tensorflow.keras.layers import Dense,SimpleRNN,Input,Dropout,Flatten,Concatenate,Bidirectional
from tensorflow.keras import regularizers,optimizers
import datetime
from collections import Counter

#Reference: https://stackoverflow.com/questions/46975929/how-can-i-calculate-the-jaccard-similarity-of-two-lists-con
def jaccard(str1,str2):
a=set(str1.lower().split())
b=set(str2.lower().split())
c=a.intersection(b)
return float(len(c)) / (len(a) + len(b) - len(c))

from google.colab import drive


drive.mount('/content/drive')

Mounted at /content/drive

with open('/content/drive//My Drive/Tweet Sentiment Extraction/updated_train.pkl','rb') as f:


train=pickle.load(f)

with open('/content/drive//My Drive/Tweet Sentiment Extraction/preprocessed_test.pkl','rb') as f:


test=pickle.load(f)

train.head()

textID text selected_text sentiment spelling start_index end_index

id have responded if i were


0 cb774db0d1 id have responded if i were going neutral ++++ 0 6
going

1 549e992a42 sooo sad i will miss you here in san diego sooo sad negative ++++ 0 1

2 088c60f138 my boss is bullying me bullying me negative ++++ 3 4

3 9642c003ef what interview leave me alone leave me alone negative ++++ 2 4

sons of ABUSE why couldnt they put them


4 358bd9e861 sons of ABUSE negative ++++ 0 2
on th...

test.head()

textID text sentiment

0 f87dea47db last session of the day neutral

1 96d74cb729 shanghai is also really exciting precisely s... positive

2 eee518ae67 recession hit veronique branquinho she has to ... negative

3 01082688c6 happy bday positive

4 33987a8ee5 i like it positive

text_split=train['text'].apply(lambda x: len(str(x).split())).tolist()

max(text_split)

32

#https://www.geeksforgeeks.org/numpy-zeros-python/
#https://www.geeksforgeeks.org/numpy-zeros-python/
y=np.zeros((train.shape[0],max(text_split)+1))
for i in range(train.shape[0]):
start=train['start_index'][i]
end=train['end_index'][i]
y[i][start:end+1]=1

for i in [1,6,11,22]:
print(train['start_index'][i],train['end_index'][i])
print('\n')
print(train['text'][i])
print('\n')
print(train['selected_text'][i])
print('\n')
print(y[i])
print("="*150)

0 1

sooo sad i will miss you here in san diego

sooo sad

[1. 1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0. 0. 0. 0.]
================================================================================================================
======================================
5 5

feedings for the baby are fun when he is all smiles and coos

fun

[0. 0. 0. 0. 0. 1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0. 0. 0. 0.]
================================================================================================================
======================================
3 3

i really really like the song love story by taylor swift

like

[0. 0. 0. 1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0. 0. 0. 0.]
================================================================================================================
======================================
0 11

is cleaning the house for her family who is comming later today

is cleaning the house for her family who is comming later today

[1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0. 0. 0. 0.]
================================================================================================================
======================================

y.shape

(27381, 33)

X=train[['textID','text','selected_text','sentiment']]

X_train,X_valid,y_train,y_valid=train_test_split(X,y,test_size=0.15,random_state=42)

print("X_train shape ",X_train.shape," X_test shape ",X_valid.shape)


print("\ny_train shape ",y_train.shape," y_test shape ",y_valid.shape)

X_train shape (23273, 4) X_test shape (4108, 4)

y_train shape (23273, 33) y_test shape (4108, 33)


y_train=np.expand_dims(y_train,-1)
y_valid=np.expand_dims(y_valid,-1)
y_train.shape,y_valid.shape

((23273, 33, 1), (4108, 33, 1))

train_text=X_train['text'].values
valid_text=X_valid['text'].values
train_sentiment=X_train['sentiment'].values
valid_sentiment=X_valid['sentiment'].values

#Reference : https://www.tensorflow.org/api_docs/python/tf/keras/preprocessing/text/Tokenizer

tokenizer1=Tokenizer(lower=True,split=' ',filters='!"#$%&()*+,-./:;<=>?@[\\]^_{|}~\t\n',oov_token='<unw>')
tokenizer1.fit_on_texts(train_text)

max_len_text=32

train_text=tokenizer1.texts_to_sequences(train_text)
valid_text=tokenizer1.texts_to_sequences(valid_text)

train_text=sequence.pad_sequences(train_text,maxlen=max_len_text,padding='post')
valid_text=sequence.pad_sequences(valid_text,maxlen=max_len_text,padding='post')

word_index_text=tokenizer1.word_index
print(word_index_text)

{'<unw>': 1, 'i': 2, 'to': 3, 'the': 4, 'a': 5, 'my': 6, 'and': 7, 'you': 8, 'it': 9, 'is': 10, 'in': 11, 'for':
12, 'of': 13, 'im': 14, 'on': 15, 'me': 16, 'have': 17, 'that': 18, 'so': 19, 'but': 20, 'just': 21, 'with': 22,
'day': 23, 'be': 24, 'its': 25, 'at': 26, 'not': 27, 'was': 28, 'all': 29, 'good': 30, 'this': 31, 'now': 32, 'o
ut': 33, 'up': 34, 'get': 35, 'are': 36, 'like': 37, 'no': 38, 'go': 39, 'dont': 40, 'do': 41, 'your': 42, 'goin
g': 43, 'love': 44, 'too': 45, 'today': 46, 'work': 47, 'got': 48, 'abuse': 49, 'cant': 50, 'one': 51, 'from': 5
2, 'happy': 53, 'time': 54, 'what': 55, 'know': 56, 'lol': 57, 'u': 58, 'really': 59, 'back': 60, 'will': 61, 'a
bout': 62, 'am': 63, 'had': 64, 'we': 65, 'there': 66, 'see': 67, 'can': 68, 'if': 69, 'some': 70, 'new': 71, 'w
ell': 72, 'night': 73, 'home': 74, 'as': 75, 'want': 76, 'mothers': 77, 'when': 78, 'how': 79, 'more': 80, 'stil
l': 81, 'much': 82, 'think': 83, 'thanks': 84, 'oh': 85, 'off': 86, 'they': 87, 'miss': 88, 'here': 89, 'great':
90, 'an': 91, 'has': 92, 'hope': 93, 'last': 94, 'need': 95, 'thats': 96, 'her': 97, 'haha': 98, 'morning': 99,
'fun': 100, 'been': 101, 'ill': 102, 'feel': 103, 'wish': 104, 'would': 105, 'or': 106, 'why': 107, 'then': 108,
'twitter': 109, 'tomorrow': 110, 'he': 111, 'only': 112, 'bad': 113, 'sorry': 114, 'were': 115, 'didnt': 116, 's
ad': 117, 'again': 118, 'right': 119, 'did': 120, 'make': 121, 'by': 122, 'tonight': 123, 'them': 124, 'very': 1
25, 'gonna': 126, 'week': 127, 'yeah': 128, 'better': 129, 'nice': 130, 'way': 131, 'though': 132, 'sleep': 133,
'she': 134, 'over': 135, 'come': 136, 'could': 137, 'should': 138, 'getting': 139, 'ive': 140, 'weekend': 141, '
bed': 142, 'next': 143, 'people': 144, 'youre': 145, 'school': 146, 'watching': 147, 'after': 148, 'days': 149,
'wait': 150, 'hate': 151, 'awesome': 152, 'even': 153, 'thing': 154, 'long': 155, 'say': 156, 'down': 157, 'him'
: 158, 'soon': 159, 'little': 160, 'best': 161, 'being': 162, 'wont': 163, 'show': 164, 'hey': 165, 'having': 16
6, 'working': 167, 'never': 168, 'who': 169, 'yes': 170, 'thank': 171, 'sure': 172, 'take': 173, 'any': 174, 'ok
': 175, 'doing': 176, 'cool': 177, 'his': 178, 'because': 179, 'first': 180, 'tired': 181, 'than': 182, 'feeling
': 183, 'may': 184, 'done': 185, 'look': 186, 'please': 187, 'sick': 188, 'always': 189, 'life': 190, 'friends':
191, 'everyone': 192, 'mom': 193, 'our': 194, 'wanna': 195, 'another': 196, 'doesnt': 197, 'us': 198, 'ur': 199,
'guys': 200, 'movie': 201, 'already': 202, 'where': 203, 'phone': 204, 'man': 205, 'something': 206, 'hours': 20
7, 'finally': 208, 'trying': 209, 'ever': 210, 'old': 211, 'before': 212, 'ready': 213, 'house': 214, 'watch': 2
15, 'made': 216, 'pretty': 217, 'find': 218, 'left': 219, 'away': 220, 'same': 221, 'went': 222, 'friday': 223,
'yet': 224, 'big': 225, 'sucks': 226, 'girl': 227, 'x': 228, 'guess': 229, 'live': 230, 'yay': 231, 'looking': 2
32, 'into': 233, 'follow': 234, 'bit': 235, 'let': 236, 'maybe': 237, 'amazing': 238, 'looks': 239, 'year': 240,
'also': 241, 'other': 242, 'omg': 243, 'star': 244, 'thought': 245, 'someone': 246, 'missed': 247, 'actually': 2
48, 'keep': 249, 'wow': 250, 'those': 251, 'monday': 252, 'while': 253, 'friend': 254, 'two': 255, 'hear': 256,
'song': 257, 'things': 258, 'said': 259, 'hot': 260, 'ugh': 261, 'until': 262, 'saw': 263, 'nothing': 264, 'twee
t': 265, 'glad': 266, 'early': 267, 'world': 268, 'hard': 269, 'later': 270, 'start': 271, 'try': 272, 'bored':
273, 'job': 274, 'hes': 275, 'lot': 276, 'havent': 277, 'ya': 278, 'help': 279, 'since': 280, 'birthday': 281, '
read': 282, 'such': 283, 'rain': 284, 'n': 285, 'car': 286, 'call': 287, 'play': 288, 'check': 289, 'excited': 2
90, 'makes': 291, 'around': 292, 'gone': 293, 'tell': 294, 'isnt': 295, 'till': 296, 'head': 297, 'yesterday': 2
98, 'waiting': 299, 'must': 300, 'anything': 301, 'talk': 302, 'hi': 303, 'late': 304, 'aww': 305, 'poor': 306,
'gotta': 307, 'put': 308, 'cause': 309, 'found': 310, 'few': 311, 'myself': 312, 'almost': 313, 'making': 314, '
coming': 315, 'id': 316, 'weather': 317, 'stuff': 318, 'music': 319, 'baby': 320, 'sun': 321, 'party': 322, 'giv
e': 323, 'hurts': 324, 'god': 325, 'does': 326, 'lost': 327, 'mean': 328, 'summer': 329, 'family': 330, 'many':
331, 'most': 332, 'stupid': 333, 'missing': 334, 'least': 335, 'believe': 336, 'money': 337, 'wasnt': 338, 'migh
t': 339, 'hair': 340, 'tho': 341, 'coffee': 342, 'moms': 343, 'enjoy': 344, 'shes': 345, 'listening': 346, 'time
s': 347, 'game': 348, 'cold': 349, 'leave': 350, 'far': 351, 'stop': 352, 'anyone': 353, 'wanted': 354, 'end': 3
55, 'forward': 356, 'which': 357, 'lunch': 358, 'thinking': 359, 'funny': 360, 'sounds': 361, 'their': 362, 'eat
': 363, 'playing': 364, 'cute': 365, 'without': 366, 'beautiful': 367, 'whats': 368, 'totally': 369, 'finished':
370, 'welcome': 371, 'through': 372, 'luck': 373, 'dinner': 374, 'followers': 375, 'theres': 376, 'mine': 377, '
use': 378, 'food': 379, 'free': 380, 'eating': 381, 'kids': 382, 'hour': 383, 'everything': 384, 'couldnt': 385,
'okay': 386, 'hahaha': 387, 'probably': 388, 'lovely': 389, 'whole': 390, 'hell': 391, 'enough': 392, 'place': 3
93, 'sunday': 394, 'w': 395, 'took': 396, 'outside': 397, 'every': 398, 'weeks': 399, 'wants': 400, 'years': 401
, 'sweet': 402, 'woke': 403, 'pic': 404, 'these': 405, 'sooo': 406, 'seen': 407, 'kinda': 408, 'buy': 409, 'both
': 410, 'says': 411, 'taking': 412, 'class': 413, 'real': 414, 'ha': 415, 'anymore': 416, 'tv': 417, 'following'
: 418, 'ago': 419, 'busy': 420, 'super': 421, 'else': 422, 'book': 423, 'forgot': 424, 'goodnight': 425, 'stay':
426, 'stuck': 427, 'full': 428, 'guy': 429, 'boo': 430, 'awww': 431, 'office': 432, 'loved': 433, 'meet': 434, '
wrong': 435, 'own': 436, 'room': 437, 'hit': 438, 'gets': 439, 'r': 440, 'awake': 441, 'came': 442, 'headache':
443, 'change': 444, 'lots': 445, 'quite': 446, 'kind': 447, 'sitting': 448, 'seems': 449, 'saturday': 450, 'brea
k': 451, 'online': 452, 'video': 453, 'used': 454, 'hopefully': 455, 'shopping': 456, 'd': 457, 'b': 458, 'broke
': 459, 'trek': 460, 'wars': 461, 'cry': 462, 'able': 463, 'minutes': 464, 'dog': 465, 'seeing': 466, 'name': 46
7, 'trip': 468, 'mum': 469, 'once': 470, 'crazy': 471, 'called': 472, 'cuz': 473, 'news': 474, 'holiday': 475, '
either': 476, 'theyre': 477, 'idea': 478, 'part': 479, 'hello': 480, 'post': 481, 'internet': 482, 'remember': 4
83, 'dude': 484, 'tweets': 485, 'face': 486, 'picture': 487, 'watched': 488, 'iphone': 489, 'alone': 490, 'run':
491, 'ones': 492, 'instead': 493, 'dad': 494, 'starting': 495, 'btw': 496, 'heard': 497, 'mind': 498, 'ah': 499,
'evening': 500, 'computer': 501, 'hurt': 502, 'facebook': 503, 'fine': 504, 'fan': 505, 'blog': 506, 'goes': 507
, 'drink': 508, 's': 509, 'soo': 510, 'lil': 511, 'concert': 512, 'send': 513, 'win': 514, 'half': 515, 'loves':
516, 'til': 517, 'told': 518, 'feels': 519, 'o': 520, 'hehe': 521, 'needs': 522, 'yea': 523, 'tried': 524, 'runn
ing': 525, 'breakfast': 526, 'perfect': 527, 'girls': 528, 'close': 529, 'talking': 530, 'month': 531, 'person':
532, 'true': 533, 'fail': 534, 'wonderful': 535, 'writing': 536, 'dead': 537, 'months': 538, 'bought': 539, 'sit
e': 540, 'couple': 541, 'pain': 542, 'high': 543, 'open': 544, 'drive': 545, 'move': 546, 'hungry': 547, 'aw': 5
48, 'soooo': 549, 'bank': 550, 'rest': 551, 'lucky': 552, 'exam': 553, 'email': 554, 'happened': 555, 'heart': 5
56, 'hoping': 557, 'happen': 558, 'beach': 559, 'turn': 560, 'goin': 561, 'lets': 562, 'tickets': 563, 'youll':
564, 'link': 565, 'definitely': 566, 'raining': 567, 'june': 568, 'problem': 569, 'ice': 570, 'sleeping': 571, '
boring': 572, 'favorite': 573, 'top': 574, 'mommy': 575, 'lmao': 576, 'started': 577, 'anyway': 578, 'wake': 579
, 'set': 580, 'supposed': 581, 'moment': 582, 'means': 583, 'test': 584, 'sunny': 585, 'ask': 586, 'sometimes':
587, 'yall': 588, 'p': 589, 'nite': 590, 'leaving': 591, 'mother': 592, 'spend': 593, 'catch': 594, 'bday': 595,
'youtube': 596, 'comes': 597, 'asleep': 598, 'photo': 599, 'vote': 600, 'tea': 601, 'heading': 602, 'eyes': 603,
'reason': 604, 'shower': 605, 'cat': 606, 'suck': 607, 'boy': 608, 'rock': 609, 'sore': 610, 'gave': 611, 'accou
nt': 612, 'la': 613, 'city': 614, 'reply': 615, 'pictures': 616, 'cleaning': 617, 'past': 618, 'red': 619, 'toge
ther': 620, 'wouldnt': 621, 'saying': 622, 'season': 623, 'moving': 624, 'chocolate': 625, 'wishing': 626, 'aren
t': 627, 'tour': 628, 'pics': 629, 'knew': 630, 'mad': 631, 'course': 632, 'interesting': 633, 'reading': 634, '
dream': 635, 'less': 636, 'bring': 637, 'special': 638, 'short': 639, 'care': 640, 'list': 641, 'songs': 642, 'h
ang': 643, 'due': 644, 'dear': 645, 'fast': 646, 'driving': 647, 'worth': 648, 'bout': 649, 'using': 650, 'xd':
651, 'movies': 652, 'bye': 653, 'sound': 654, 'flu': 655, 'date': 656, 'fair': 657, 'add': 658, 'water': 659, 'w
rite': 660, 'cream': 661, 'cake': 662, 'fell': 663, 'cut': 664, 'ppl': 665, 'three': 666, 'google': 667, 'town':
668, 'congrats': 669, 'forget': 670, 'plus': 671, 'exams': 672, 'drinking': 673, 'afternoon': 674, 'london': 675
, 'seem': 676, 'jonas': 677, 'aint': 678, 'nope': 679, 'broken': 680, 'text': 681, 'meeting': 682, 'photos': 683
, 'uk': 684, 'card': 685, 'fb': 686, 'final': 687, 'sadly': 688, 'nap': 689, 'laptop': 690, 'chance': 691, 'ahh'
: 692, 'boys': 693, 'liked': 694, 'enjoying': 695, 'died': 696, 'seriously': 697, 'second': 698, 'finish': 699,
'jealous': 700, 'english': 701, 'point': 702, 'unfortunately': 703, 'figure': 704, 'plans': 705, 'different': 70
6, 'looked': 707, 'camera': 708, 'learn': 709, 'message': 710, 'brothers': 711, 'park': 712, 'listen': 713, 'war
m': 714, 'yep': 715, 'em': 716, 'bgt': 717, 'episode': 718, 'ipod': 719, 'walk': 720, 'youve': 721, 'mood': 722,
'meant': 723, 'pizza': 724, 'weird': 725, 'spent': 726, 'understand': 727, 'c': 728, 'horrible': 729, 'white': 7
30, 'side': 731, 'wedding': 732, 'wtf': 733, 'beer': 734, 'earlier': 735, 'agree': 736, 'study': 737, 'store': 7
38, 'album': 739, 'under': 740, 'parents': 741, 'sister': 742, 'living': 743, 'especially': 744, 'crying': 745,
'everybody': 746, 'apparently': 747, 'save': 748, 'behind': 749, 'worst': 750, 'shame': 751, 'slow': 752, 'black
': 753, 'ride': 754, 'page': 755, 'gym': 756, 'project': 757, 'sent': 758, 'die': 759, 'bus': 760, 'idk': 761, '
shows': 762, 'ate': 763, 'bet': 764, 'upset': 765, 'starts': 766, 'garden': 767, 'word': 768, 'fall': 769, 'clea
n': 770, 'slept': 771, 'hanging': 772, 'along': 773, 'sat': 774, 'wondering': 775, 'business': 776, 'easy': 777,
'fact': 778, 'needed': 779, 'huge': 780, 'longer': 781, 'worry': 782, 'stomach': 783, 'ohh': 784, 'wishes': 785,
'bless': 786, 'number': 787, 'brother': 788, 'rather': 789, 'windows': 790, 'each': 791, 'lady': 792, 'played':
793, 'mr': 794, 'tweeting': 795, 'da': 796, 'pick': 797, 'inside': 798, 'absolutely': 799, 'works': 800, 'cheese
': 801, 'words': 802, 'line': 803, 'story': 804, 'sunshine': 805, 'wear': 806, 'sigh': 807, 'during': 808, 'team
': 809, 'bike': 810, 'fans': 811, 'babe': 812, 'dance': 813, 'yours': 814, 'green': 815, 'dang': 816, 'ahhh': 81
7, 'lonely': 818, 'throat': 819, 'relaxing': 820, 'fantastic': 821, 'near': 822, 'yum': 823, 'wine': 824, 'compa
ny': 825, 'dreams': 826, 'loving': 827, 'college': 828, 'hates': 829, 'smile': 830, 'yummy': 831, 'except': 832,
'wonder': 833, 'kid': 834, 'hows': 835, 'bc': 836, 'mac': 837, 'nights': 838, 'ouch': 839, 'won': 840, 'exactly'
: 841, 'son': 842, 'answer': 843, 'chat': 844, 'plan': 845, 'traffic': 846, 'huh': 847, 'share': 848, 'chicken':
849, 'sign': 850, 'itll': 851, 'graduation': 852, 'closed': 853, 'bbq': 854, 'drunk': 855, 'moon': 856, 'm': 857
, 'officially': 858, 'prom': 859, 'happens': 860, 'safe': 861, 'comment': 862, 'guitar': 863, 'mums': 864, 'blue
': 865, 'low': 866, 'club': 867, 'lame': 868, 'feet': 869, 'hmm': 870, 'join': 871, 'update': 872, 'hand': 873,
'sleepy': 874, 'thx': 875, 'flight': 876, 'shop': 877, 'cannot': 878, 'yourself': 879, 'train': 880, 'radio': 88
1, 'chillin': 882, 'shoes': 883, 'ran': 884, 'worse': 885, 'completely': 886, 'sing': 887, 'worked': 888, 'gift'
: 889, 'whatever': 890, 'exciting': 891, 'decided': 892, 'ps': 893, 'luv': 894, 'cup': 895, 'app': 896, 'visit':
897, 'gutted': 898, 'woo': 899, 'wife': 900, 'hun': 901, 'lazy': 902, 'miles': 903, 'cos': 904, 'homework': 905,
'snl': 906, 'problems': 907, 'case': 908, 'body': 909, 'via': 910, 'hospital': 911, 'fly': 912, 'etc': 913, 'ver
sion': 914, 'apple': 915, 'keeps': 916, 'dvd': 917, 'middle': 918, 'dress': 919, 'math': 920, 'felt': 921, 'men'
: 922, 'forever': 923, 'hug': 924, 'swine': 925, 'although': 926, 'boyfriend': 927, 'paper': 928, 'shirt': 929,
'min': 930, 'french': 931, 'website': 932, 'updates': 933, 'fingers': 934, 'band': 935, 'church': 936, 'air': 93
7, 'sexy': 938, 'mama': 939, 'front': 940, 'goodbye': 941, 'somewhere': 942, 'y': 943, 'clothes': 944, 'thinks':
945, 'hubby': 946, 'jus': 947, 'justin': 948, 'shall': 949, 'hugs': 950, 'revision': 951, 'single': 952, 'deal':
953, 'round': 954, 'note': 955, 'studying': 956, 'staying': 957, 'packing': 958, 'messages': 959, 'pool': 960, '
dark': 961, 'alot': 962, 'tuesday': 963, 'giving': 964, 'ooh': 965, 'service': 966, 'small': 967, 'rainy': 968,
'stopped': 969, 'cd': 970, 'screen': 971, 'support': 972, 'taken': 973, 'realized': 974, 'thursday': 975, 'mate'
: 976, 'legs': 977, 'dm': 978, 'airport': 979, 'checked': 980, 'sold': 981, 'posted': 982, 'minute': 983, 'pass'
: 984, 'appreciate': 985, 'count': 986, 'waking': 987, 'anytime': 988, 'usually': 989, 'dogs': 990, 'indeed': 99
1, 'matter': 992, 'videos': 993, 'tom': 994, 'hahah': 995, 'david': 996, 'calling': 997, 'vegas': 998, 'kill': 9
99, 'film': 1000, 'rip': 1001, 'alright': 1002, 'hannah': 1003, 'tummy': 1004, 'scary': 1005, 'john': 1006, 'tay
lor': 1007, 'quick': 1008, 'disappointed': 1009, 'coz': 1010, 'wolverine': 1011, 'moved': 1012, 'starbucks': 101
3, 'takes': 1014, 'ended': 1015, 'scared': 1016, 'others': 1017, 'xoxo': 1018, 'bro': 1019, 'nyc': 1020, 'web':
1021, 'followfriday': 1022, 'sit': 1023, 'awful': 1024, 'met': 1025, 'puppy': 1026, 'books': 1027, 'door': 1028,
'twilight': 1029, 'paid': 1030, 'follower': 1031, 'ima': 1032, 'pay': 1033, 'ff': 1034, 'wearing': 1035, 'extra'
: 1036, 'nobody': 1037, 'milk': 1038, 'cheers': 1039, 'eh': 1040, 'five': 1041, 'july': 1042, 'group': 1043, 'fe
elin': 1044, 'failed': 1045, 'walking': 1046, 'fam': 1047, 'killed': 1048, 'likes': 1049, 'proud': 1050, 'quiet'
: 1051, 'hasnt': 1052, 'normal': 1053, 'prob': 1054, 'telling': 1055, 'random': 1056, 'currently': 1057, 'thru':
1058, 'code': 1059, 'knows': 1060, 'return': 1061, 'blood': 1062, 'lose': 1063, 'planning': 1064, 'none': 1065,
'breaking': 1066, 'heat': 1067, 'brain': 1068, 'load': 1069, 'yup': 1070, 'dunno': 1071, 'wheres': 1072, 'questi
on': 1073, 'bummed': 1074, 'fix': 1075, 'mobile': 1076, 'spending': 1077, 'history': 1078, 'followed': 1079, 'en
joyed': 1080, 'yo': 1081, 'blackberry': 1082, 'box': 1083, 'myspace': 1084, 'public': 1085, 'yr': 1086, 'outta':
1087, 'social': 1088, 'delicious': 1089, 'sending': 1090, 'copy': 1091, 'cousin': 1092, 'young': 1093, 'gorgeous
': 1094, 'mention': 1095, 'ticket': 1096, 'cover': 1097, 'fever': 1098, 'between': 1099, 'beat': 1100, 'ages': 1
101, 'changed': 1102, 'profile': 1103, 'bloody': 1104, 'become': 1105, 'pc': 1106, 'k': 1107, 'calls': 1108, 'pe
eps': 1109, 'peace': 1110, 'double': 1111, 'fav': 1112, 'classes': 1113, 'l': 1114, 'anyways': 1115, 'games': 11
16, 'imagine': 1117, 'rocks': 1118, 'nah': 1119, 'i�m': 1120, 'silly': 1121, 'upload': 1122, 'wednesday': 1123
, 'cried': 1124, 'gettin': 1125, 'machine': 1126, 'fat': 1127, 'touch': 1128, 'cats': 1129, 'fixed': 1130, 'bumm
er': 1131, 'cook': 1132, 'worried': 1133, 'cancelled': 1134, 'congratulations': 1135, 'tonite': 1136, 'voice': 1
137, 'itunes': 1138, 'library': 1139, 'download': 1140, 'caught': 1141, 'power': 1142, 'serious': 1143, 'hands':
1144, 'record': 1145, 'death': 1146, 'sis': 1147, 'hrs': 1148, 'surgery': 1149, 'eye': 1150, 'sale': 1151, 'ligh
t': 1152, 'finger': 1153, 'lake': 1154, 'daddy': 1155, 'street': 1156, 'afraid': 1157, 'miley': 1158, 'favourite
': 1159, 'bar': 1160, 'foot': 1161, 'annoying': 1162, 'catching': 1163, 'singing': 1164, 'art': 1165, 'vacation'
: 1166, 'freaking': 1167, 'pray': 1168, 'fml': 1169, 'dads': 1170, 'self': 1171, 'ugly': 1172, 'energy': 1173, '
chicago': 1174, 'fave': 1175, 'afford': 1176, 'jon': 1177, 'mcfly': 1178, 'session': 1179, 'children': 1180, 'so
rt': 1181, 'keeping': 1182, 'entire': 1183, 'shot': 1184, 'stand': 1185, 'places': 1186, 'putting': 1187, 'someb
ody': 1188, 'knee': 1189, 'expensive': 1190, 'mmm': 1191, 'however': 1192, 'bag': 1193, 'four': 1194, 'pack': 11
95, 'shouldnt': 1196, 'notice': 1197, 'daughter': 1198, 'everyday': 1199, 'falling': 1200, 'race': 1201, 'possib
le': 1202, 'sooooo': 1203, 'sydney': 1204, 'freakin': 1205, 'hold': 1206, 'usual': 1207, 'access': 1208, 'loads'
: 1209, 'v': 1210, 'turned': 1211, 'anybody': 1212, 'chinese': 1213, 'ohhh': 1214, 'xo': 1215, 'barely': 1216, '
trouble': 1217, 'smh': 1218, 'germany': 1219, 'shut': 1220, 'dancing': 1221, 'interview': 1222, 'apartment': 122
3, 'um': 1224, 'laugh': 1225, 'mess': 1226, 'philippines': 1227, 'depressed': 1228, 'ball': 1229, 'lately': 1230
, 'available': 1231, 'brought': 1232, 'mommies': 1233, 'lived': 1234, 'drop': 1235, 'across': 1236, 'window': 12
37, 'fire': 1238, 'suppose': 1239, 'oops': 1240, 'latest': 1241, 'joke': 1242, 'apart': 1243, 'info': 1244, 'sho
wing': 1245, 'sux': 1246, 'nearly': 1247, 'hilarious': 1248, 'road': 1249, 'twice': 1250, 'darn': 1251, 'whos':
1252, 'ordered': 1253, 'def': 1254, 'talent': 1255, 'area': 1256, 'future': 1257, 'floor': 1258, 'jobs': 1259, '
shift': 1260, 'tha': 1261, 'holy': 1262, 'system': 1263, 'confused': 1264, 'cheer': 1265, 'jay': 1266, 'sky': 12
67, 'gig': 1268, 'wat': 1269, 'sweetie': 1270, 'fab': 1271, 'expected': 1272, 'figured': 1273, 'updated': 1274,
'nd': 1275, 'design': 1276, 'losing': 1277, 'coast': 1278, 'mins': 1279, 'hurting': 1280, 'cost': 1281, 'vid': 1
282, 'mail': 1283, 'thanx': 1284, 'heh': 1285, 'ny': 1286, 'finishing': 1287, 'surprise': 1288, 'exhausted': 128
9, 'honey': 1290, 'sense': 1291, 'present': 1292, 'buying': 1293, 'plane': 1294, 'somehow': 1295, 'deep': 1296,
'wanting': 1297, 'husband': 1298, 'deserve': 1299, 'earth': 1300, 'youd': 1301, 'pink': 1302, 'awwww': 1303, 'te
rrible': 1304, 'wit': 1305, 'woman': 1306, 'often': 1307, 'order': 1308, 'sushi': 1309, 'track': 1310, 'fight':
1311, 'momma': 1312, 'picked': 1313, 'california': 1314, 'dammit': 1315, 'strange': 1316, 'bird': 1317, 'complet
e': 1318, 'dnt': 1319, 'san': 1320, 'onto': 1321, 'bb': 1322, 'speak': 1323, 'weve': 1324, 'killing': 1325, 'blo
ck': 1326, 'cousins': 1327, 'messed': 1328, 'mondays': 1329, 'match': 1330, 'ma': 1331, 'space': 1332, 'stick':
1333, 'american': 1334, 'abt': 1335, 'swear': 1336, 'cooking': 1337, 'leg': 1338, 'woot': 1339, 'everywhere': 13
40, 'asked': 1341, 'de': 1342, 'jack': 1343, 'joe': 1344, 'empty': 1345, 'cell': 1346, 'productive': 1347, 'diet
': 1348, 'mouth': 1349, 'burnt': 1350, 'private': 1351, 'holidays': 1352, 'fresh': 1353, 'throw': 1354, 'article
': 1355, 'grand': 1356, 'cloudy': 1357, 'allowed': 1358, 'shots': 1359, 'epic': 1360, 'e': 1361, 'channel': 1362
, 'gotten': 1363, 'tweetdeck': 1364, 'age': 1365, 'hav': 1366, 'third': 1367, 'learned': 1368, 'blast': 1369, 'j
oy': 1370, 'easier': 1371, 'ladies': 1372, 'headed': 1373, 'plenty': 1374, 'laying': 1375, 'heres': 1376, 'doubt
': 1377, 'greg': 1378, 'august': 1379, 'kno': 1380, 'macbook': 1381, 'lay': 1382, 'fully': 1383, 'pissed': 1384,
'drag': 1385, 'truly': 1386, 'simple': 1387, 'event': 1388, 're': 1389, 'disney': 1390, 'married': 1391, 'sugar'
: 1392, 'style': 1393, 'dying': 1394, 'lookin': 1395, 'fridays': 1396, 'ac': 1397, 'bottle': 1398, 'ahhhh': 1399
, 'quiz': 1400, 'perhaps': 1401, 'neck': 1402, 'doin': 1403, 'turns': 1404, 'finals': 1405, 'blessed': 1406, 'fi
t': 1407, 'depressing': 1408, 'uploading': 1409, 'doctor': 1410, 'argh': 1411, 'six': 1412, 'ring': 1413, 'fabul
ous': 1414, 'gear': 1415, 'helping': 1416, 'dry': 1417, 'bug': 1418, 'hoo': 1419, 'arms': 1420, 'major': 1421, '
midnight': 1422, 'closing': 1423, 'flowers': 1424, 'sam': 1425, 'tonights': 1426, 'downloaded': 1427, 'direct':
1428, 'lie': 1429, 'stressed': 1430, 'blame': 1431, 'nervous': 1432, 'planned': 1433, 'hahahaha': 1434, 'awe': 1
435, 'keys': 1436, 'boss': 1437, 'soup': 1438, 'asking': 1439, 'g': 1440, 'conversation': 1441, 'realize': 1442,
'background': 1443, 'release': 1444, 'teaching': 1445, 'uncle': 1446, 'excellent': 1447, 'reminds': 1448, 'ily':
1449, 'shoot': 1450, 'leno': 1451, 'presentation': 1452, 'gosh': 1453, 'row': 1454, 'abusesighabuse': 1455, 'sun
burn': 1456, 'pleasure': 1457, 'promise': 1458, 'paying': 1459, 'training': 1460, 'born': 1461, 'painting': 1462
, 'desktop': 1463, 'suggestions': 1464, 'dave': 1465, 'jk': 1466, 'stress': 1467, 'sum': 1468, 'atm': 1469, 'fis
h': 1470, 'deck': 1471, 'ideas': 1472, 'women': 1473, 'properly': 1474, 'pm': 1475, 'tix': 1476, 'experience': 1
477, 'hangover': 1478, 'abusehugsabuse': 1479, 'wee': 1480, 'australia': 1481, 'fighting': 1482, 'travel': 1483,
'chris': 1484, 'uni': 1485, 'loud': 1486, 'dr': 1487, 'canada': 1488, 'burn': 1489, 'south': 1490, 'na': 1491, '
j': 1492, 'slightly': 1493, 'pull': 1494, 'magic': 1495, 'twitpic': 1496, 'happiness': 1497, 'craving': 1498, 'b
f': 1499, 'mrs': 1500, 'essay': 1501, 'watchin': 1502, 'mall': 1503, 'spot': 1504, 'dressed': 1505, 'recommend':
1506, 'unless': 1507, 'hmmm': 1508, 'straight': 1509, 'ben': 1510, 'wide': 1511, 'teeth': 1512, 'decide': 1513,
'button': 1514, 'tip': 1515, 'montana': 1516, 'added': 1517, 'besides': 1518, 'mommys': 1519, 'north': 1520, 'bu
tter': 1521, 'local': 1522, 'practice': 1523, 'ms': 1524, 'partying': 1525, 'wild': 1526, 'chick': 1527, 't': 15
28, 'dc': 1529, 'passed': 1530, 'impressed': 1531, 'booked': 1532, 'spring': 1533, 'ahead': 1534, 'mix': 1535, '
drinks': 1536, 'nails': 1537, 'lord': 1538, 'dropped': 1539, 'noticed': 1540, 'becoming': 1541, 'action': 1542,
'burned': 1543, 'bathroom': 1544, 'wo': 1545, 'tgif': 1546, 'supernatural': 1547, '�': 1548, 'emails': 1549, '
fancy': 1550, 'waste': 1551, 'chill': 1552, 'table': 1553, 'episodes': 1554, 'dentist': 1555, 'swimming': 1556,
'mo': 1557, 'mile': 1558, 'timberlake': 1559, 'invite': 1560, 'kiss': 1561, 'nowhere': 1562, 'neither': 1563, 'a
rrived': 1564, 'waitin': 1565, 'teacher': 1566, 'given': 1567, 'cookies': 1568, 'hero': 1569, 'choice': 1570, 'c
rash': 1571, 'kate': 1572, 'england': 1573, 'lives': 1574, 'doc': 1575, 'delayed': 1576, 'imma': 1577, 'credit':
1578, 'fault': 1579, 'jump': 1580, 'issues': 1581, 'twit': 1582, 'ears': 1583, 'laughing': 1584, 'desk': 1585, '
tongue': 1586, 'sucked': 1587, 'blah': 1588, 'fourth': 1589, 'arm': 1590, 'twittering': 1591, 'joined': 1592, 'd
octors': 1593, 'slowly': 1594, 'quote': 1595, 'trailer': 1596, 'alarm': 1597, 'werent': 1598, 'glasses': 1599, '
fake': 1600, 'awards': 1601, 'ocean': 1602, 'tweeps': 1603, 'sharing': 1604, 'hadnt': 1605, 'rite': 1606, 'issue
': 1607, 'piece': 1608, 'review': 1609, 'alex': 1610, 'comments': 1611, 'er': 1612, 'ruined': 1613, 'lesson': 16
14, 'egg': 1615, 'christian': 1616, 'talked': 1617, 'america': 1618, 'country': 1619, 'cars': 1620, 'york': 1621
, 'swim': 1622, 'peoples': 1623, 'nose': 1624, 'celebrate': 1625, 'folks': 1626, 'misses': 1627, 'badly': 1628,
'mamas': 1629, 'pages': 1630, 'nick': 1631, 'massage': 1632, 'grrr': 1633, 'gives': 1634, 'washing': 1635, 'east
': 1636, 'cards': 1637, 'ow': 1638, 'interested': 1639, 'topic': 1640, 'jimmy': 1641, 'baseball': 1642, 'evil':
1643, 'winter': 1644, 'type': 1645, 'gah': 1646, 'twitters': 1647, 'clear': 1648, 'hurry': 1649, 'board': 1650,
'laundry': 1651, 'pls': 1652, 'seattle': 1653, 'large': 1654, 'mark': 1655, 'flat': 1656, 'bedtime': 1657, 'secr
et': 1658, 'tough': 1659, 'color': 1660, 'thoughts': 1661, 'net': 1662, 'listened': 1663, 'battery': 1664, 'demi
': 1665, 'oooh': 1666, 'wisdom': 1667, 'remembered': 1668, 'workin': 1669, 'normally': 1670, 'purple': 1671, 'st
udent': 1672, 'hugh': 1673, 'britains': 1674, 'series': 1675, 'wash': 1676, 'details': 1677, 'prefer': 1678, 'va
n': 1679, 'msn': 1680, 'theyve': 1681, 'theatre': 1682, 'kidding': 1683, 'buddy': 1684, 'juice': 1685, 'hella':
1686, 'bigger': 1687, 'aha': 1688, 'pop': 1689, 'texas': 1690, 'crappy': 1691, 'bath': 1692, 'step': 1693, 'twee
ted': 1694, 'hotel': 1695, 'healthy': 1696, 'talkin': 1697, 'editing': 1698, 'competition': 1699, 'starving': 17
00, 'hopes': 1701, 'realised': 1702, 'speech': 1703, 'goodness': 1704, 'difference': 1705, 'heyy': 1706, 'cupcak
es': 1707, 'rich': 1708, 'drama': 1709, 'praying': 1710, 'kitchen': 1711, 'including': 1712, 'voted': 1713, 'mea
l': 1714, 'steve': 1715, 'toe': 1716, 'babies': 1717, 'west': 1718, 'bay': 1719, 'contact': 1720, 'grown': 1721,
'search': 1722, 'cnt': 1723, 'gud': 1724, 'toast': 1725, 'finding': 1726, 'surprised': 1727, 'attention': 1728,
'weekends': 1729, 'todays': 1730, 'bunch': 1731, 'states': 1732, 'bee': 1733, 'asap': 1734, 'network': 1735, 'sh
ining': 1736, 'opening': 1737, 'wen': 1738, 'stock': 1739, 'standing': 1740, 'official': 1741, 'gross': 1742, 'l
iterally': 1743, 'ups': 1744, 'learning': 1745, 'happening': 1746, 'kitty': 1747, 'heaven': 1748, 'quit': 1749,
'mode': 1750, 'pub': 1751, 'worries': 1752, 'lakers': 1753, 'posting': 1754, 'mmmm': 1755, 'state': 1756, 'respo
nd': 1757, 'saving': 1758, 'choose': 1759, 'usa': 1760, 'limit': 1761, 'reality': 1762, 'jam': 1763, 'female': 1
764, 'advice': 1765, 'gots': 1766, 'rice': 1767, 'feed': 1768, 'strong': 1769, 'despite': 1770, 'studio': 1771,
'ryan': 1772, 'bacon': 1773, 'important': 1774, 'apps': 1775, 'christmas': 1776, 'ten': 1777, 'parts': 1778, 'se
ll': 1779, 'screwed': 1780, 'sisters': 1781, 'key': 1782, 'angry': 1783, 'obviously': 1784, 'kick': 1785, 'wed':
1786, 'james': 1787, 'hardly': 1788, 'uh': 1789, 'painful': 1790, 'letting': 1791, 'boot': 1792, 'hat': 1793, 'c
ontinue': 1794, 'packed': 1795, 'tiny': 1796, 'basically': 1797, 'center': 1798, 'camp': 1799, 'lessons': 1800,
'closer': 1801, 'rains': 1802, 'forgive': 1803, 'odd': 1804, 'bio': 1805, 'wii': 1806, 'bill': 1807, 'thomas': 1
808, 'lights': 1809, 'drugs': 1810, 'offer': 1811, 'excuse': 1812, 'rush': 1813, 'comp': 1814, 'stayed': 1815, '
ew': 1816, 'admit': 1817, 'keyboard': 1818, 'havin': 1819, 'f': 1820, 'october': 1821, 'bah': 1822, 'accident':
1823, 'peanut': 1824, 'downtown': 1825, 'helps': 1826, 'grandma': 1827, 'deleted': 1828, 'notes': 1829, 'release
d': 1830, 'michael': 1831, 'fyi': 1832, 'research': 1833, 'pants': 1834, 'vet': 1835, 'crossed': 1836, 'ashley':
1837, 'searching': 1838, 'aswell': 1839, 'trending': 1840, 'sims': 1841, 'anywhere': 1842, 'sometime': 1843, 'br
ight': 1844, 'bear': 1845, 'law': 1846, 'attempt': 1847, 'yrs': 1848, 'firefox': 1849, 'wet': 1850, 'alas': 1851
, 'request': 1852, 'surely': 1853, 'otherwise': 1854, 'boston': 1855, 'woohoo': 1856, 'awhile': 1857, 'wall': 18
58, 'cheap': 1859, 'cavs': 1860, 'everyones': 1861, 'storm': 1862, 'posts': 1863, 'changing': 1864, 'speaking':
1865, 'haircut': 1866, 'pulled': 1867, 'kept': 1868, 'bones': 1869, 'xmen': 1870, 'rofl': 1871, 'report': 1872,
'program': 1873, 'freezing': 1874, 'schedule': 1875, 'soooooo': 1876, 'stack': 1877, 'tan': 1878, 'cancer': 1879
, 'questions': 1880, 'makin': 1881, 'golf': 1882, 'holly': 1883, 'heck': 1884, 'oo': 1885, 'degrees': 1886, 'sta
tus': 1887, 'roast': 1888, 'alcohol': 1889, 'schools': 1890, 'hd': 1891, 'annoyed': 1892, 'adorable': 1893, 'san
dwich': 1894, 'marathon': 1895, 'blocked': 1896, 'panic': 1897, 'driver': 1898, 'station': 1899, 'vs': 1900, 'po
rtfolio': 1901, 'theme': 1902, 'updating': 1903, 'memory': 1904, 'taste': 1905, 'hee': 1906, 'parking': 1907, 'b
ein': 1908, 'atl': 1909, 'replies': 1910, 'yayy': 1911, 'several': 1912, 'treat': 1913, 'scene': 1914, 'hearing'
: 1915, 'dirty': 1916, 'kelly': 1917, 'cutting': 1918, 'cleaned': 1919, 'budget': 1920, 'bills': 1921, 'challeng
e': 1922, 'whether': 1923, 'idiot': 1924, 'retweet': 1925, 'couch': 1926, 'against': 1927, 'awsome': 1928, 'rock
ed': 1929, 'noooo': 1930, 'picking': 1931, 'kisses': 1932, 'tweeters': 1933, 'whew': 1934, 'orange': 1935, 'flyi
ng': 1936, 'invited': 1937, 'brand': 1938, 'makeup': 1939, 'sa': 1940, 'balls': 1941, 'shiny': 1942, 'nicole': 1
943, 'square': 1944, 'famous': 1945, 'performance': 1946, 'health': 1947, 'known': 1948, 'memories': 1949, 'te':
1950, 'bunny': 1951, 'golden': 1952, 'lmfao': 1953, 'whoa': 1954, 'matt': 1955, 'thankyou': 1956, 'fashion': 195
7, 'points': 1958, 'urgh': 1959, 'bella': 1960, 'knowing': 1961, 'pair': 1962, 'price': 1963, 'possibly': 1964,
'mostly': 1965, 'thankful': 1966, 'level': 1967, 'above': 1968, 'pity': 1969, 'certain': 1970, 'tune': 1971, 'so
meday': 1972, 'ftw': 1973, 'paramore': 1974, 'himself': 1975, 'rachel': 1976, 'truck': 1977, 'role': 1978, 'degr
ee': 1979, 'chapter': 1980, 'gray': 1981, 'bands': 1982, 'tattoo': 1983, 'filled': 1984, 'chest': 1985, 'within'
: 1986, 'drank': 1987, 'fellow': 1988, 'mistake': 1989, 'brown': 1990, 'named': 1991, 'ahaha': 1992, 'clue': 199
3, 'subway': 1994, 'situation': 1995, 'skills': 1996, 'hm': 1997, 'server': 1998, 'football': 1999, 'glorious':
2000, 'father': 2001, 'workout': 2002, 'relax': 2003, 'grey': 2004, 'steak': 2005, 'mcdonalds': 2006, 'score': 2
007, 'hangin': 2008, 'celebrating': 2009, 'total': 2010, 'science': 2011, 'bound': 2012, 'spam': 2013, 'ace': 20
14, 'spell': 2015, 'sry': 2016, 'seat': 2017, 'laughed': 2018, 'sudden': 2019, 'brazil': 2020, 'bff': 2021, 'lac
k': 2022, 'paint': 2023, 'allergies': 2024, 'land': 2025, 'frustrated': 2026, 'ii': 2027, 'shout': 2028, 'manage
d': 2029, 'charge': 2030, 'weight': 2031, 'cookie': 2032, 'view': 2033, 'cable': 2034, 'gunna': 2035, 'expect':
2036, 'likely': 2037, 'flash': 2038, 'chilling': 2039, 'period': 2040, 'daughters': 2041, 'paranoid': 2042, 'vot
ing': 2043, 'considering': 2044, 'popular': 2045, 'million': 2046, 'quality': 2047, 'loose': 2048, 'wrote': 2049
, 'hunting': 2050, 'teach': 2051, 'giant': 2052, 'crush': 2053, 'tmrw': 2054, 'noo': 2055, 'texting': 2056, 'ins
ane': 2057, 'ga': 2058, 'term': 2059, 'charger': 2060, 'smell': 2061, 'adam': 2062, 'bk': 2063, 'involved': 2064
, 'americans': 2065, 'honestly': 2066, 'loss': 2067, 'act': 2068, 'holding': 2069, 'duty': 2070, 'positive': 207
1, 'bringing': 2072, 'shooting': 2073, 'uses': 2074, 'diego': 2075, 'al': 2076, 'shine': 2077, 'log': 2078, 'sf'
: 2079, 'rule': 2080, 'mission': 2081, 'success': 2082, 'tooth': 2083, 'migraine': 2084, 'counting': 2085, 'dat'
: 2086, 'thatll': 2087, 'josh': 2088, 'honest': 2089, 'andy': 2090, 'ignore': 2091, 'usb': 2092, 'collection': 2
093, 'laid': 2094, 'mary': 2095, 'grad': 2096, 'cyrus': 2097, 'avoid': 2098, 'gossip': 2099, 'address': 2100, 'a
ng': 2101, 'pa': 2102, 'ty': 2103, 'hr': 2104, 'gifts': 2105, 'click': 2106, 'canceled': 2107, 'crack': 2108, 's
ports': 2109, 'toys': 2110, 'il': 2111, 'glass': 2112, 'aim': 2113, 'socks': 2114, 'yu': 2115, 'dishes': 2116, '
fries': 2117, 'vista': 2118, 'saved': 2119, 'nooo': 2120, 'dj': 2121, 'reviews': 2122, 'covered': 2123, 'biggest
': 2124, 'whenever': 2125, 'bottom': 2126, 'grab': 2127, 'smart': 2128, 'beyond': 2129, 'grow': 2130, 'addicted'
: 2131, 'pet': 2132, 'personal': 2133, 'beta': 2134, 'field': 2135, 'certainly': 2136, 'installed': 2137, 'launc
h': 2138, 'shell': 2139, 'per': 2140, 'drove': 2141, 'url': 2142, 'cali': 2143, 'content': 2144, 'swift': 2145,
'brings': 2146, 'florida': 2147, 'screw': 2148, 'assignment': 2149, 'idol': 2150, 'control': 2151, 'constant': 2
152, 'ways': 2153, 'model': 2154, 'eggs': 2155, 'brian': 2156, 'theyll': 2157, 'ankle': 2158, 'tons': 2159, 'mex
ican': 2160, 'bugs': 2161, 'heads': 2162, 'smells': 2163, 'chips': 2164, 'daily': 2165, 'impossible': 2166, 'pla
yer': 2167, 'appointment': 2168, 'cakes': 2169, 'replied': 2170, 'sara': 2171, 'sunburnt': 2172, 'mommas': 2173,
'mini': 2174, 'piss': 2175, 'dumb': 2176, 'tech': 2177, 'tis': 2178, 'avatar': 2179, 'building': 2180, 'booo': 2
181, 'tree': 2182, 'gnight': 2183, 'roll': 2184, 'gloomy': 2185, 'growing': 2186, 'tips': 2187, 'shoutout': 2188
, 'sway': 2189, 'recovering': 2190, 'lang': 2191, 'st': 2192, 'soul': 2193, 'gf': 2194, 'horse': 2195, 'mummy':
2196, 'seconds': 2197, 'carter': 2198, 'hill': 2199, 'successful': 2200, 'truth': 2201, 'ton': 2202, 'photograph
y': 2203, 'based': 2204, 'checking': 2205, 'media': 2206, 'hills': 2207, 'humor': 2208, 'nerd': 2209, 'cancel':
2210, 'backup': 2211, 'mtv': 2212, 'ends': 2213, 'convinced': 2214, 'corner': 2215, 'boat': 2216, 'salad': 2217,
'hehehe': 2218, 'goodmorning': 2219, 'zero': 2220, 'tokyo': 2221, 'turning': 2222, 'butt': 2223, 'trust': 2224,
'spread': 2225, 'feelings': 2226, 'talented': 2227, 'isnabuse': 2228, 'plz': 2229, 'ooo': 2230, 'glasgow': 2231,
'oven': 2232, 'ca': 2233, 'friendly': 2234, 'lawn': 2235, 'sir': 2236, 'semester': 2237, 'ache': 2238, 'farm': 2
239, 'thunder': 2240, 'knight': 2241, 'mouse': 2242, 'dawn': 2243, 'hulu': 2244, 'core': 2245, 'walmart': 2246,
'bowling': 2247, 'flick': 2248, 'hah': 2249, 'extremely': 2250, 'eww': 2251, 'alive': 2252, 'woop': 2253, 'sarah
': 2254, 'host': 2255, 'police': 2256, 'numbers': 2257, 'shortly': 2258, 'mike': 2259, 'ummm': 2260, 'walked': 2
261, 'grr': 2262, 'skin': 2263, 'youth': 2264, 'geek': 2265, 'miami': 2266, 'twitterland': 2267, 'jerk': 2268, '
katie': 2269, 'wk': 2270, 'xxxx': 2271, 'older': 2272, 'aka': 2273, 'atleast': 2274, 'starwarsday': 2275, 'chatt
ing': 2276, 'woken': 2277, 'computers': 2278, 'recipe': 2279, 'trains': 2280, 'nooooo': 2281, 'obama': 2282, 'wi
cked': 2283, 'yer': 2284, 'drawing': 2285, 'everytime': 2286, 'cuddle': 2287, 'partner': 2288, 'journey': 2289,
'exist': 2290, 'nasty': 2291, 'wifi': 2292, 'surprisingly': 2293, 'faces': 2294, 'delivery': 2295, 'king': 2296,
'vancouver': 2297, 'hahahahaha': 2298, 'banana': 2299, 'recently': 2300, 'tag': 2301, 'rubbish': 2302, 'metal':
2303, 'europe': 2304, 'build': 2305, 'loser': 2306, 'lisa': 2307, 'soccer': 2308, 'locked': 2309, 'baking': 2310
, 'besties': 2311, 'noon': 2312, 'thnx': 2313, 'wats': 2314, 'november': 2315, 'spoke': 2316, 'fear': 2317, 'smo
ke': 2318, 'results': 2319, 'appt': 2320, 'younger': 2321, 'nuts': 2322, 'push': 2323, 'tooo': 2324, 'characters
': 2325, 'beginning': 2326, 'awesomeness': 2327, 'recording': 2328, 'error': 2329, 'ghost': 2330, 'coach': 2331,
'expecting': 2332, 'quotes': 2333, 'suggest': 2334, 'force': 2335, 'philly': 2336, 'animal': 2337, 'noodles': 23
38, 'decent': 2339, 'form': 2340, 'bud': 2341, 'enter': 2342, 'heels': 2343, 'lines': 2344, 'topics': 2345, 'rou
gh': 2346, 'damnit': 2347, 'ad': 2348, 'became': 2349, 'wireless': 2350, 'proper': 2351, 'arrive': 2352, 'conver
se': 2353, 'sober': 2354, 'chemistry': 2355, 'seniors': 2356, 'signing': 2357, 'effort': 2358, 'headaches': 2359
, 'user': 2360, 'errands': 2361, 'preview': 2362, 'yard': 2363, 'picnic': 2364, 'ap': 2365, 'suit': 2366, 'depen
ds': 2367, 'constantly': 2368, 'economy': 2369, 'definately': 2370, 'pro': 2371, 'manchester': 2372, 'regular':
2373, 'clock': 2374, 'henrie': 2375, 'strawberries': 2376, 'xbox': 2377, 'faster': 2378, 'nom': 2379, 'main': 23
80, 'character': 2381, 'events': 2382, 'sang': 2383, 'war': 2384, 'bother': 2385, 'remind': 2386, 'nkotb': 2387,
'mia': 2388, 'visiting': 2389, 'friendster': 2390, 'swollen': 2391, 'rude': 2392, 'adding': 2393, 'tear': 2394,
'wind': 2395, 'spider': 2396, 'hole': 2397, 'tears': 2398, 'ear': 2399, 'poo': 2400, 'belly': 2401, 'uploaded':
2402, 'phones': 2403, 'revising': 2404, 'ta': 2405, 'attack': 2406, 'yeh': 2407, 'pills': 2408, 'ay': 2409, 'bor
edom': 2410, 'comfy': 2411, 'bt': 2412, 'language': 2413, 'crashed': 2414, 'magazine': 2415, 'accidentally': 241
6, 'bell': 2417, 'tease': 2418, 'massive': 2419, 'garage': 2420, 'breathe': 2421, 'difficult': 2422, 'scratch':
2423, 'exact': 2424, 'security': 2425, 'funeral': 2426, 'subject': 2427, 'fusion': 2428, 'juss': 2429, 'ooooh':
2430, 'clients': 2431, 'forced': 2432, 'snow': 2433, 'solo': 2434, 'bros': 2435, 'fool': 2436, 'acting': 2437, '
theater': 2438, 'china': 2439, 'paris': 2440, 'hollyoaks': 2441, 'blow': 2442, 'drivers': 2443, 'liking': 2444,
'tweeple': 2445, 'minor': 2446, 'greatest': 2447, 'maths': 2448, 'gd': 2449, 'tennessee': 2450, 'letter': 2451,
'files': 2452, 'tastes': 2453, 'iced': 2454, 'moments': 2455, 'con': 2456, 'ability': 2457, 'connection': 2458,
'homie': 2459, 'mexico': 2460, 'rocking': 2461, 'members': 2462, 'september': 2463, 'itself': 2464, 'dish': 2465
, 'lovin': 2466, 'survive': 2467, 'unable': 2468, 'held': 2469, 'feature': 2470, 'plain': 2471, 'rained': 2472,
'creative': 2473, 'jb': 2474, 'screaming': 2475, 'toy': 2476, 'geez': 2477, 'pancakes': 2478, 'aunt': 2479, 'res
ponse': 2480, 'island': 2481, 'strawberry': 2482, 'baked': 2483, 'senior': 2484, 'hay': 2485, 'comin': 2486, 'ei
ght': 2487, 'weak': 2488, 'cinema': 2489, 'showed': 2490, 'anniversary': 2491, 'girlfriend': 2492, 'lap': 2493,
'mask': 2494, 'wore': 2495, 'wings': 2496, 'lip': 2497, 'blocks': 2498, 'village': 2499, 'adult': 2500, 'pillow'
: 2501, 'canucks': 2502, 'customer': 2503, 'nothin': 2504, 'sites': 2505, 'ending': 2506, 'sittin': 2507, 'after
wards': 2508, 'quickly': 2509, 'unfair': 2510, 'revise': 2511, 'begin': 2512, 'according': 2513, 'dis': 2514, 'v
erizon': 2515, 'jonathan': 2516, 'ol': 2517, 'nt': 2518, 'puppies': 2519, 'clever': 2520, 'links': 2521, 'geogra
phy': 2522, 'correct': 2523, 'tim': 2524, 'comfortable': 2525, 'fridge': 2526, 'disappointing': 2527, 'bangs': 2
528, 'abuseabuse': 2529, 'setting': 2530, 'hated': 2531, 'shops': 2532, 'students': 2533, 'signed': 2534, 'winni
ng': 2535, 'stars': 2536, 'passes': 2537, 'pocket': 2538, 'meeee': 2539, 'charged': 2540, 'runs': 2541, 'pleased
': 2542, 'dallas': 2543, 'birds': 2544, 'respect': 2545, 'items': 2546, 'omfg': 2547, 'stole': 2548, 'mi': 2549,
'bread': 2550, 'bothered': 2551, 'title': 2552, 'creepy': 2553, 'jess': 2554, 'grandparents': 2555, 'h': 2556, '
clouds': 2557, 'beauty': 2558, 'angels': 2559, 'roof': 2560, 'microsoft': 2561, 'ughhh': 2562, 'ruby': 2563, 'cr
ossing': 2564, 'jesus': 2565, 'non': 2566, 'wknd': 2567, 'ross': 2568, 'steel': 2569, 'demo': 2570, 'classic': 2
571, 'yah': 2572, 'hating': 2573, 'stories': 2574, 'ginger': 2575, 'tesco': 2576, 'luckily': 2577, 'camping': 25
78, 'central': 2579, 'buzz': 2580, 'smoking': 2581, 'reception': 2582, 'pjs': 2583, 'neighbors': 2584, 'breath':
2585, 'grass': 2586, 'blogging': 2587, 'grateful': 2588, 'original': 2589, 'press': 2590, 'delivered': 2591, 'ch
em': 2592, 'assignments': 2593, 'bleh': 2594, 'ellen': 2595, 'princess': 2596, 'ho': 2597, 'riding': 2598, 'ish'
: 2599, 'en': 2600, 'msg': 2601, 'france': 2602, 'slower': 2603, 'settings': 2604, 'kirk': 2605, 'lead': 2606, '
downloading': 2607, 'smiles': 2608, 'photoshop': 2609, 'meh': 2610, 'carry': 2611, 'taco': 2612, 'actual': 2613,
'digital': 2614, 'amy': 2615, 'product': 2616, 'helped': 2617, 'bags': 2618, 'dam': 2619, 'texts': 2620, 'guessi
ng': 2621, 'marriage': 2622, 'script': 2623, 'useful': 2624, 'killer': 2625, 'dye': 2626, 'motivation': 2627, 'p
ure': 2628, 'cafe': 2629, 'italian': 2630, 'bs': 2631, 'contacts': 2632, 'ss': 2633, 'changes': 2634, 'shud': 26
35, 'cycling': 2636, 'stubborn': 2637, 'hunt': 2638, 'wud': 2639, 'tweetie': 2640, 'gnite': 2641, 'dragged': 264
2, 'edit': 2643, 'wave': 2644, 'child': 2645, 'recognize': 2646, 'boxes': 2647, 'dayy': 2648, 'advantage': 2649,
'michelle': 2650, 'q': 2651, 'rose': 2652, 'legit': 2653, 'imac': 2654, 'danny': 2655, 'marley': 2656, 'shoulder
': 2657, 'rub': 2658, 'bust': 2659, 'joining': 2660, 'hooked': 2661, 'fed': 2662, 'stoked': 2663, 'mid': 2664, '
hw': 2665, 'wrk': 2666, 'votes': 2667, 'couldve': 2668, 'rise': 2669, 'leaves': 2670, 'forum': 2671, 'image': 26
72, 'wana': 2673, 'meetings': 2674, 'crawling': 2675, 'rate': 2676, 'venue': 2677, 'lab': 2678, 'browser': 2679,
'cramps': 2680, 'sauce': 2681, 'beard': 2682, 'groups': 2683, 'failing': 2684, 'bugger': 2685, 'seats': 2686, 'a
nimals': 2687, 'pj': 2688, 'gmail': 2689, 'sorted': 2690, 'inspiration': 2691, 'agreed': 2692, 'sunburned': 2693
, 'kicked': 2694, 'ship': 2695, 'mornin': 2696, 'george': 2697, 'windy': 2698, 'whoever': 2699, 'babysitting': 2
700, 'hiding': 2701, 'gm': 2702, 'parties': 2703, 'poop': 2704, 'incredible': 2705, 'musical': 2706, 'crown': 27
07, 'bum': 2708, 'keen': 2709, 'lounge': 2710, 'roommate': 2711, 'december': 2712, 'package': 2713, 'nighty': 27
14, 'chilled': 2715, 'tool': 2716, 'flew': 2717, 'trips': 2718, 'draw': 2719, 'beating': 2720, 'phew': 2721, 'cd
s': 2722, 'install': 2723, 'newcastle': 2724, 'replying': 2725, 'ie': 2726, 'neighbor': 2727, 'entertaining': 27
28, 'pounds': 2729, 'pork': 2730, 'festival': 2731, 'decision': 2732, 'shouldve': 2733, 'active': 2734, 'twittin
g': 2735, 'iron': 2736, 'connected': 2737, 'typical': 2738, 'signs': 2739, 'regret': 2740, 'dreaming': 2741, 'sr
sly': 2742, 'fox': 2743, 'received': 2744, 'attempting': 2745, 'reminded': 2746, 'pieces': 2747, 'bowl': 2748, '
singapore': 2749, 'bahaha': 2750, 'parent': 2751, 'names': 2752, 'beats': 2753, 'nine': 2754, 'zealand': 2755, '
mystery': 2756, 'legal': 2757, 'lovato': 2758, 'owe': 2759, 'ikea': 2760, 'prison': 2761, 'returned': 2762, 'fri
ed': 2763, 'complicated': 2764, 'oil': 2765, 'niece': 2766, 'twitterverse': 2767, 'crashing': 2768, 'palm': 2769
, 'infection': 2770, 'entry': 2771, 'cupcake': 2772, 'hitting': 2773, 'wrap': 2774, 'ep': 2775, 'twitterberry':
2776, 'snap': 2777, 'santa': 2778, 'lyrics': 2779, 'shake': 2780, 'blip': 2781, 'gas': 2782, 'aussie': 2783, 'fr
uit': 2784, 'upon': 2785, 'os': 2786, 'twitterville': 2787, 'location': 2788, 'girlfriends': 2789, 'babes': 2790
, 'sales': 2791, 'mc': 2792, 'hardest': 2793, 'wouldve': 2794, 'dan': 2795, 'plurk': 2796, 'filming': 2797, 'edg
e': 2798, 'wonders': 2799, 'grade': 2800, 'yucky': 2801, 'bomb': 2802, 'resist': 2803, 'stores': 2804, 'repair':
2805, 'austin': 2806, 'lower': 2807, 'anthony': 2808, 'theory': 2809, 'previous': 2810, 'monster': 2811, 'leavin
': 2812, 'cheesecake': 2813, 'methinks': 2814, 'oz': 2815, 'candy': 2816, 'costs': 2817, 'jumping': 2818, 'guilt
y': 2819, 'sucky': 2820, 'potato': 2821, 'beans': 2822, 'filling': 2823, 'sadness': 2824, 'hopeful': 2825, 'holl
ie': 2826, 'pathetic': 2827, 'hmph': 2828, 'queens': 2829, 'pig': 2830, 'horror': 2831, 'martin': 2832, 'confusi
ng': 2833, 'recover': 2834, 'twitts': 2835, 'tomato': 2836, 'perth': 2837, 'anna': 2838, 'negative': 2839, 'melt
ed': 2840, 'borrow': 2841, 'scan': 2842, 'community': 2843, 'twins': 2844, 'hai': 2845, 'ahhhhh': 2846, 'el': 28
47, 'deadline': 2848, 'cam': 2849, 'fill': 2850, 'written': 2851, 'thee': 2852, 'calm': 2853, 'batman': 2854, 'z
ombie': 2855, 'bits': 2856, 'naw': 2857, 'heavy': 2858, 'grew': 2859, 'upgrade': 2860, 'cast': 2861, 'arrival':
2862, 'male': 2863, 'delay': 2864, 'human': 2865, 'contest': 2866, 'dougie': 2867, 'coke': 2868, 'finale': 2869,
'models': 2870, 'incredibly': 2871, 'nail': 2872, 'handle': 2873, 'jst': 2874, 'jr': 2875, 'skies': 2876, 'spell
ing': 2877, 'jokes': 2878, 'feedback': 2879, 'shattered': 2880, 'license': 2881, 'emotional': 2882, 'amount': 28
83, 'britney': 2884, 'dies': 2885, 'effing': 2886, 'las': 2887, 'process': 2888, 'reach': 2889, 'indian': 2890,
'frustrating': 2891, 'bang': 2892, 'appreciated': 2893, 'market': 2894, 'retarded': 2895, 'gold': 2896, 'conside
r': 2897, 'scrubs': 2898, 'biz': 2899, 'ed': 2900, 'bass': 2901, 'sissy': 2902, 'delete': 2903, 'sms': 2904, 'wi
se': 2905, 'yellow': 2906, 'valley': 2907, 'ohio': 2908, 'diff': 2909, 'gods': 2910, 'killers': 2911, 'honour':
2912, 'fishing': 2913, 'touring': 2914, 'bob': 2915, 'virus': 2916, 'typing': 2917, 'ohhhh': 2918, 'ignoring': 2
919, 'skype': 2920, 'dork': 2921, 'diamond': 2922, 'bites': 2923, 'costume': 2924, 'rly': 2925, 'andrew': 2926,
'pissing': 2927, 'taxi': 2928, 'restaurant': 2929, 'gna': 2930, 'tanning': 2931, 'maria': 2932, 'cheaper': 2933,
'twitterific': 2934, 'clicked': 2935, 'brad': 2936, 'effects': 2937, 'wasted': 2938, 'dizzy': 2939, 'remote': 29
40, 'easily': 2941, 'tryna': 2942, 'tryin': 2943, 'application': 2944, 'imo': 2945, 'coolest': 2946, 'sweating':
2947, 'cash': 2948, 'rockin': 2949, 'river': 2950, 'imagination': 2951, 'spanish': 2952, 'dust': 2953, 'panda':
2954, 'item': 2955, 'kills': 2956, 'cutie': 2957, 'beast': 2958, 'combo': 2959, 'purse': 2960, 'charlie': 2961,
'dvds': 2962, 'tshirt': 2963, 'apt': 2964, 'pong': 2965, 'japanese': 2966, 'frm': 2967, 'highlight': 2968, 'pull
ing': 2969, 'pot': 2970, 'logic': 2971, 'nxt': 2972, 'tyler': 2973, 'marry': 2974, 'dreading': 2975, 'whoop': 29
76, 'standards': 2977, 'national': 2978, 'thankfully': 2979, 'option': 2980, 'discovered': 2981, 'wales': 2982,
'worlds': 2983, 'somewhat': 2984, 'personally': 2985, 'happier': 2986, 'graduate': 2987, 'rid': 2988, 'grocery':
2989, 'selling': 2990, 'shape': 2991, 'buffalo': 2992, 'transfer': 2993, 'suffering': 2994, 'attics': 2995, 'hom
eless': 2996, 'reports': 2997, 'hung': 2998, 'connect': 2999, 'plays': 3000, 'mass': 3001, 'promised': 3002, 'pr
obs': 3003, 'plant': 3004, 'projects': 3005, 'mm': 3006, 'commute': 3007, 'offf': 3008, 'yahoo': 3009, 'appear':
3010, 'grease': 3011, 'waves': 3012, 'gallery': 3013, 'display': 3014, 'zoo': 3015, 'mens': 3016, 'concentrate':
3017, 'adventure': 3018, 'refuses': 3019, 'convo': 3020, 'bears': 3021, 'tests': 3022, 'useless': 3023, 'sees':
3024, 'chai': 3025, 'opera': 3026, 'related': 3027, 'modern': 3028, 'willing': 3029, 'vip': 3030, 'steal': 3031,
'hectic': 3032, 'edinburgh': 3033, 'crew': 3034, 'owner': 3035, 'tape': 3036, 'brunch': 3037, 'someones': 3038,
'ray': 3039, 'steph': 3040, 'prayer': 3041, 'lastfm': 3042, 'slice': 3043, 'shoe': 3044, 'vanilla': 3045, 'dates
': 3046, 'explain': 3047, 'accepted': 3048, 'junior': 3049, 'route': 3050, 'bookstore': 3051, 'pix': 3052, 'curi
ous': 3053, 'moi': 3054, 'sea': 3055, 'performing': 3056, 'stage': 3057, 'tight': 3058, 'quarter': 3059, 'belove
d': 3060, 'hyper': 3061, 'dublin': 3062, 'aye': 3063, 'exchange': 3064, 'hood': 3065, 'frank': 3066, 'smiley': 3
067, 'software': 3068, 'threw': 3069, 'burger': 3070, 'client': 3071, 'rolls': 3072, 'dragon': 3073, 'fri': 3074
, 'solid': 3075, 'society': 3076, 'meee': 3077, 'figuring': 3078, 'awh': 3079, 'tomorrows': 3080, 'esp': 3081, '
sonny': 3082, 'marketing': 3083, 'meaning': 3084, 'fone': 3085, 'films': 3086, 'harry': 3087, 'burgers': 3088, '
lo': 3089, 'username': 3090, 'sings': 3091, 'trousers': 3092, 'docs': 3093, 'compliment': 3094, 'pre': 3095, 'am
using': 3096, 'bubble': 3097, 'knowledge': 3098, 'loveeee': 3099, 'convince': 3100, 'nvm': 3101, 'shorts': 3102,
'william': 3103, 'juddday': 3104, 'denver': 3105, 'therapy': 3106, 'toes': 3107, 'mic': 3108, 'bestie': 3109, 't
end': 3110, 'apologies': 3111, 'advance': 3112, 'jason': 3113, 'boom': 3114, 'orlando': 3115, 'saddest': 3116, '
kicking': 3117, 'stops': 3118, 'snack': 3119, 'sayin': 3120, 'size': 3121, 'switch': 3122, 'peter': 3123, 'brook
lyn': 3124, 'progress': 3125, 'dryer': 3126, 'zone': 3127, 'mmmmmm': 3128, 'loll': 3129, 'answers': 3130, 'order
ing': 3131, 'jamie': 3132, 'tonsils': 3133, 'dh': 3134, 'din': 3135, 'kingdom': 3136, 'cheesy': 3137, 'chilly':
3138, 'goose': 3139, 'repeat': 3140, 'laura': 3141, 'tax': 3142, 'metro': 3143, 'shocked': 3144, 'jet': 3145, 'i
nsurance': 3146, 'gon': 3147, 'bride': 3148, 'neil': 3149, 'smoothie': 3150, 'apartments': 3151, 'lee': 3152, 't
omorow': 3153, 'waited': 3154, 'blessings': 3155, 'drinkin': 3156, 'sausage': 3157, 'forums': 3158, 'ultimate':
3159, 'attend': 3160, 'employee': 3161, 'dudes': 3162, 'darling': 3163, 'accept': 3164, 'commence': 3165, 'pride
': 3166, 'prejudice': 3167, 'obvious': 3168, 'cinnamon': 3169, 'faith': 3170, 'spinning': 3171, 'theirs': 3172,
'wah': 3173, 'anxiety': 3174, 'cure': 3175, 'phil': 3176, 'obsessed': 3177, 'nest': 3178, 'disneyland': 3179, 'c
omedy': 3180, 'sight': 3181, 'perform': 3182, 'betty': 3183, 'tony': 3184, 'kewl': 3185, 'drives': 3186, 'com':
3187, 'adore': 3188, 'spammers': 3189, 'marie': 3190, 'rat': 3191, 'lamb': 3192, 'servers': 3193, 'kay': 3194, '
hp': 3195, 'pit': 3196, 'ci': 3197, 'playin': 3198, 'input': 3199, 'rob': 3200, 'lebron': 3201, 'hide': 3202, 'l
it': 3203, 'cross': 3204, 'attacked': 3205, 'oprah': 3206, 'weekly': 3207, 'battle': 3208, 'impressive': 3209, '
popping': 3210, 'india': 3211, 'mountains': 3212, 'karma': 3213, 'expert': 3214, 'testing': 3215, 'tweetup': 321
6, 'grandmother': 3217, 'todayy': 3218, 'shared': 3219, 'court': 3220, 'target': 3221, 'cab': 3222, 'biology': 3
223, 'offline': 3224, 'bac': 3225, 'contract': 3226, 'popped': 3227, 'logo': 3228, 'replace': 3229, 'instant': 3
230, 'wassup': 3231, 'frog': 3232, 'blues': 3233, 'conference': 3234, 'prayers': 3235, 'helpful': 3236, 'tells':
3237, 'reasons': 3238, 'chores': 3239, 'creek': 3240, 'tweeties': 3241, 'checkin': 3242, 'it�s': 3243, 'hve':
3244, 'result': 3245, 'maddie': 3246, 'meds': 3247, 'thrilled': 3248, 'cruise': 3249, 'todayi': 3250, 'lauren':
3251, 'fails': 3252, 'brilliant': 3253, 'smashed': 3254, 'cmon': 3255, 'thrown': 3256, 'empire': 3257, 'yey': 32
58, 'dum': 3259, 'twits': 3260, 'cutest': 3261, 'guide': 3262, 'scare': 3263, 'toooo': 3264, 'ubuntu': 3265, 'nj
': 3266, 'dump': 3267, 'bebo': 3268, 'kitties': 3269, 'audio': 3270, 'guilt': 3271, 'sd': 3272, 'ebay': 3273, 'b
lew': 3274, 'twpp': 3275, 'onion': 3276, 'jeans': 3277, 'jeff': 3278, 'stood': 3279, 'terminator': 3280, 'grace'
: 3281, 'blows': 3282, 'angel': 3283, 'greys': 3284, 'outfit': 3285, 'member': 3286, 'teenagers': 3287, 'korea':
3288, 'simply': 3289, 'distracted': 3290, 'homemade': 3291, 'strep': 3292, 'drew': 3293, 'gun': 3294, 'regarding
': 3295, 'hook': 3296, 'moves': 3297, 'nursing': 3298, 'wks': 3299, 'harder': 3300, 'sooner': 3301, 'downstairs'
: 3302, 'todd': 3303, 'mines': 3304, 'smiling': 3305, 'toronto': 3306, 'hon': 3307, 'grandpa': 3308, 'buddies':
3309, 'prepare': 3310, 'stolen': 3311, 'ng': 3312, 'icecream': 3313, 'ko': 3314, 'plants': 3315, 'tommorow': 331
6, 'erin': 3317, 'washed': 3318, 'barcelona': 3319, 'perez': 3320, 'stressful': 3321, 'drummer': 3322, 'eric': 3
323, 'unhappy': 3324, 'general': 3325, 'nor': 3326, 'wif': 3327, 'ours': 3328, 'created': 3329, 'envy': 3330, 'p
ens': 3331, 'kinds': 3332, 'spray': 3333, 'networking': 3334, 'cuppa': 3335, 'mountain': 3336, 'abit': 3337, 'di
a': 3338, 'haters': 3339, 'pregnant': 3340, 'bedroom': 3341, 'jt': 3342, 'portugal': 3343, 'guts': 3344, 'advanc
ed': 3345, 'britain': 3346, 'th': 3347, 'emily': 3348, 'counts': 3349, 'grilled': 3350, 'montreal': 3351, 'messi
ng': 3352, 'ripped': 3353, 'burrito': 3354, 'pushing': 3355, 'roots': 3356, 'italy': 3357, 'doll': 3358, 'arrivi
ng': 3359, 'removed': 3360, 'dare': 3361, 'oceans': 3362, 'goood': 3363, 'settle': 3364, 'professional': 3365, '
rent': 3366, 'nintendo': 3367, 'cubs': 3368, 'mandy': 3369, 'msgs': 3370, 'randomly': 3371, 'ohhhhh': 3372, 'sit
ter': 3373, 'centre': 3374, 'pug': 3375, 'max': 3376, 'awwwww': 3377, 'decisions': 3378, 'magical': 3379, 'flies
': 3380, 'victoria': 3381, 'junk': 3382, 'kevin': 3383, 'pad': 3384, 'sorta': 3385, 'kitten': 3386, 'qld': 3387,
'duh': 3388, 'jury': 3389, 'lecture': 3390, 'ftsk': 3391, 'wa': 3392, 'heal': 3393, 'guinea': 3394, 'pigs': 3395
, 'compared': 3396, 'gardening': 3397, 'alice': 3398, 'everythings': 3399, 'disappoint': 3400, 'hmmmm': 3401, 'l
ightning': 3402, 'wrist': 3403, 'pole': 3404, 'agh': 3405, 'invisible': 3406, 'cba': 3407, 'chocolates': 3408, '
lifes': 3409, 'lasted': 3410, 'sec': 3411, 'fatty': 3412, 'brb': 3413, 'experiment': 3414, 'johnny': 3415, 'minu
s': 3416, 'recorded': 3417, 'dun': 3418, 'va': 3419, 'audience': 3420, 'twitterers': 3421, 'asthma': 3422, 'love
e': 3423, 'teh': 3424, 'workshop': 3425, 'speed': 3426, 'multiple': 3427, 'gt': 3428, 'hack': 3429, 'tennis': 34
30, 'circus': 3431, 'vampire': 3432, 'pan': 3433, 'yeahh': 3434, 'emo': 3435, 'volleyball': 3436, 'focus': 3437,
'matters': 3438, 'basketball': 3439, 'naked': 3440, 'streets': 3441, 'adventures': 3442, 'bradie': 3443, 'wallet
': 3444, 'soulja': 3445, 'hostage': 3446, 'recommendation': 3447, 'noise': 3448, 'cruel': 3449, 'christ': 3450,
'printed': 3451, 'generation': 3452, 'sweaty': 3453, 'xox': 3454, 'sinus': 3455, 'gut': 3456, 'can�t': 3457, '
plug': 3458, 'relationship': 3459, 'aah': 3460, 'yaay': 3461, 'celebrated': 3462, 'cooler': 3463, 'stuffed': 346
4, 'needle': 3465, 'belong': 3466, 'complaining': 3467, 'sidekick': 3468, 'python': 3469, 'locations': 3470, 'bu
rning': 3471, 'rarely': 3472, 'accomplished': 3473, 'mcr': 3474, 'realise': 3475, 'rules': 3476, 'wink': 3477, '
forgetting': 3478, 'smith': 3479, 'forest': 3480, 'emergency': 3481, 'towards': 3482, 'mixed': 3483, 'maui': 348
4, 'robluketic': 3485, 'limited': 3486, 'outlook': 3487, 'smooth': 3488, 'medium': 3489, 'coding': 3490, 'jazz':
3491, 'unexpected': 3492, 'smaller': 3493, 'opinion': 3494, 'jacks': 3495, 'taught': 3496, 'riot': 3497, 'situat
ions': 3498, 'mon': 3499, 'tags': 3500, 'stream': 3501, 'backround': 3502, 'print': 3503, 'modem': 3504, 'curse'
: 3505, 'common': 3506, 'award': 3507, 'boooo': 3508, 'jersey': 3509, 'miserable': 3510, 'cloud': 3511, 'crowd':
3512, 'listenin': 3513, 'potter': 3514, 'happiest': 3515, 'effin': 3516, 'applied': 3517, 'career': 3518, 'lasts
': 3519, 'podcast': 3520, 'eddie': 3521, 'greetings': 3522, 'industry': 3523, 'hhrs': 3524, 'roomies': 3525, 'su
ggestion': 3526, 'aaron': 3527, 'thumb': 3528, 'crisis': 3529, 'explode': 3530, 'selected': 3531, 'chuck': 3532,
'hire': 3533, 'cleaner': 3534, 'skint': 3535, 'di': 3536, 'dmv': 3537, 'trees': 3538, 'manager': 3539, 'fo': 354
0, 'fairly': 3541, 'francisco': 3542, 'recommended': 3543, 'silence': 3544, 'tires': 3545, 'spongebob': 3546, 'c
iara': 3547, 'bars': 3548, 'nothings': 3549, 'whoops': 3550, 'failure': 3551, 'overnight': 3552, 'farewell': 355
3, 'hoe': 3554, 'sweden': 3555, 'chipotle': 3556, 'dolls': 3557, 'overtime': 3558, 'mates': 3559, 'relaxin': 356
0, 'noone': 3561, 'skip': 3562, 'thailand': 3563, 'considered': 3564, 'reached': 3565, 'listed': 3566, 'programm
e': 3567, 'suddenly': 3568, 'domain': 3569, 'vegetarian': 3570, 'oclock': 3571, 'potential': 3572, 'lighter': 35
73, 'sooooooo': 3574, 'asian': 3575, 'entering': 3576, 'letters': 3577, 'jacket': 3578, 'digging': 3579, 'omj':
3580, 'ffs': 3581, 'curry': 3582, 'bleed': 3583, 'heaps': 3584, 'holla': 3585, 'salt': 3586, 'pepper': 3587, 'ph
otoshoot': 3588, 'clap': 3589, 'freezer': 3590, 'woods': 3591, 'rb': 3592, 'queen': 3593, 'curve': 3594, 'tumblr
': 3595, 'sack': 3596, 'discussion': 3597, 'lemme': 3598, 'kk': 3599, 'algebra': 3600, 'bucks': 3601, 'ako': 360
2, 'trent': 3603, 'gona': 3604, 'jen': 3605, 'demons': 3606, 'kat': 3607, 'imax': 3608, 'mint': 3609, 'announced
': 3610, 'bush': 3611, 'soooooooo': 3612, 'refuse': 3613, 'tracks': 3614, 'staff': 3615, 'don': 3616, 'overcast'
: 3617, 'realy': 3618, 'thurs': 3619, 'bridge': 3620, 'vids': 3621, 'inlaws': 3622, 'celebrity': 3623, 'frickin'
: 3624, 'paul': 3625, 'thingy': 3626, 'jp': 3627, 'escape': 3628, 'factor': 3629, 'zombies': 3630, 'heroes': 363
1, 'pressure': 3632, 'cough': 3633, 'built': 3634, 'strike': 3635, 'recovery': 3636, 'upgraded': 3637, 'wout': 3
638, 'wears': 3639, 'sorting': 3640, 'recent': 3641, 'pays': 3642, 'starship': 3643, 'chair': 3644, 'presence':
3645, 'hall': 3646, 'singer': 3647, 'rang': 3648, 'amo': 3649, 'slammed': 3650, 'un': 3651, 'tire': 3652, 'aches
': 3653, 'texted': 3654, 'donnie': 3655, 'menu': 3656, 'thunderstorm': 3657, 'comics': 3658, 'mitchel': 3659, 'f
est': 3660, 'honored': 3661, 'reader': 3662, 'politics': 3663, 'enterprise': 3664, 'global': 3665, 'lying': 3666
, 'ughh': 3667, 'winner': 3668, 'bby': 3669, 'pin': 3670, 'rooting': 3671, 'hk': 3672, 'comcast': 3673, 'davis':
3674, 'gained': 3675, 'tools': 3676, 'joes': 3677, 'friggin': 3678, 'bea': 3679, 'flickr': 3680, 'native': 3681,
'itchy': 3682, 'cases': 3683, 'mucho': 3684, 'forgotten': 3685, 'necklace': 3686, 'alllll': 3687, 'hed': 3688, '
practically': 3689, 'crochet': 3690, 'icon': 3691, 'international': 3692, 'yess': 3693, 'longest': 3694, 'pourin
g': 3695, 'laker': 3696, 'pfft': 3697, 'mite': 3698, 'urge': 3699, 'revenge': 3700, 'ruin': 3701, 'writer': 3702
, 'cap': 3703, 'reminding': 3704, 'amber': 3705, 'hiya': 3706, 'file': 3707, 'foods': 3708, 'busted': 3709, 'loo
sing': 3710, 'edited': 3711, 'cooker': 3712, 'hearts': 3713, 'nba': 3714, 'dealing': 3715, 'jim': 3716, 'dms': 3
717, 'clearly': 3718, 'teachers': 3719, 'nashville': 3720, 'kudos': 3721, 'trade': 3722, 'registered': 3723, 'es
': 3724, 'false': 3725, 'somethin': 3726, 'sanctuarysunday': 3727, 'tasty': 3728, 'sneezing': 3729, 'wasting': 3
730, 'pee': 3731, 'dollars': 3732, 'mee': 3733, 'muffins': 3734, 'nephew': 3735, 'medicine': 3736, 'inspection':
3737, 'kickin': 3738, 'cooked': 3739, 'raise': 3740, 'hooray': 3741, 'peer': 3742, 'benson': 3743, 'neglected':
3744, 'superman': 3745, 'matthew': 3746, 'whoo': 3747, 'grill': 3748, 'nat': 3749, 'ian': 3750, 'mothersday': 37
51, 'doo': 3752, 'tbh': 3753, 'manage': 3754, 'salary': 3755, 'orders': 3756, 'choir': 3757, 'itd': 3758, 'eve':
3759, 'disappeared': 3760, 'nvr': 3761, 'proof': 3762, 'artist': 3763, 'cares': 3764, 'hockey': 3765, 'impressio
n': 3766, 'charming': 3767, 'melbourne': 3768, 'minds': 3769, 'nathan': 3770, 'fry': 3771, 'eclipse': 3772, 'kim
': 3773, 'greenville': 3774, 'financial': 3775, 'motivated': 3776, 'twas': 3777, 'pretend': 3778, 'current': 377
9, 'rosie': 3780, 'stuffs': 3781, 'earphones': 3782, 'rooms': 3783, 'hayley': 3784, 'infamous': 3785, 'yaaaay':
3786, 'lily': 3787, 'genius': 3788, 'presents': 3789, 'houston': 3790, 'blowing': 3791, 'touched': 3792, 'muscle
': 3793, 'luke': 3794, 'passing': 3795, 'ex': 3796, 'purchase': 3797, 'morn': 3798, 'shirts': 3799, 'hits': 3800
, 'united': 3801, 'mornings': 3802, 'pasta': 3803, 'planet': 3804, 'sons': 3805, 'tmobile': 3806, 'sidewalk': 38
07, 'default': 3808, 'yoga': 3809, 'softball': 3810, 'toothache': 3811, 'ack': 3812, 'headin': 3813, 'lungs': 38
14, 'scream': 3815, 'climb': 3816, 'inbox': 3817, 'artists': 3818, 'sundays': 3819, 'frame': 3820, 'scroll': 382
1, 'forth': 3822, 'hardcore': 3823, 'monitor': 3824, 'master': 3825, 'flower': 3826, 'guessed': 3827, 'stalker':
3828, 'bare': 3829, 'views': 3830, 'entertainment': 3831, 'grounded': 3832, 'dig': 3833, 'parks': 3834, 'rogers'
: 3835, 'leads': 3836, 'upcoming': 3837, 'poster': 3838, 'tt': 3839, 'balance': 3840, 'graduating': 3841, 'recko
n': 3842, 'priceless': 3843, 'edition': 3844, 'ughhhh': 3845, 'bruce': 3846, 'hacked': 3847, 'liverpool': 3848,
'saturdays': 3849, 'priority': 3850, 'sac': 3851, 'weed': 3852, 'owl': 3853, 'mentioned': 3854, 'similar': 3855,
'indiana': 3856, 'yelled': 3857, 'neat': 3858, 'position': 3859, 'snuggle': 3860, 'uber': 3861, 'chili': 3862, '
acts': 3863, 'mayb': 3864, 'missin': 3865, 'warning': 3866, 'berlin': 3867, 'piano': 3868, 'rabbits': 3869, 'and
roid': 3870, 'pal': 3871, 'clip': 3872, 'belgian': 3873, 'flyer': 3874, 'theyd': 3875, 'nooooooo': 3876, 'selena
': 3877, 'horses': 3878, 'mel': 3879, 'cop': 3880, 'wth': 3881, 'surprises': 3882, 'towel': 3883, 'bash': 3884,
'ignored': 3885, 'dislike': 3886, 'dee': 3887, 'aching': 3888, 'havnt': 3889, 'anime': 3890, 'perfectly': 3891,
'molly': 3892, 'justice': 3893, 'surrounded': 3894, 'sweat': 3895, 'device': 3896, 'miserably': 3897, 'stinks':
3898, 'hop': 3899, 'jake': 3900, 'sized': 3901, 'grrrr': 3902, 'ct': 3903, 'latte': 3904, 'familiar': 3905, 'dol
lar': 3906, 'banquet': 3907, 'tht': 3908, 'patient': 3909, 'refreshing': 3910, 'flo': 3911, 'witty': 3912, 'safa
ri': 3913, 'logies': 3914, 'coughing': 3915, 'uhh': 3916, 'takin': 3917, 'heater': 3918, 'dayand': 3919, 'lov':
3920, 'lovers': 3921, 'punk': 3922, 'interviews': 3923, 'caring': 3924, 'patio': 3925, 'muy': 3926, 'ot': 3927,
'ikr': 3928, 'spain': 3929, 'knoww': 3930, 'tattoos': 3931, 'fathers': 3932, 'childrens': 3933, 'foreign': 3934,
'jail': 3935, 'estate': 3936, 'thas': 3937, 'cleared': 3938, 'gi': 3939, 'linux': 3940, 'spoil': 3941, 'melt': 3
942, 'printer': 3943, 'applications': 3944, 'actor': 3945, 'dayi': 3946, 'i�ve': 3947, 'remembering': 3948, 'b
oooooo': 3949, 'thou': 3950, 'mow': 3951, 'wooooo': 3952, 'itbut': 3953, 'ultra': 3954, 'culture': 3955, 'patien
ce': 3956, 'rats': 3957, 'tarmac': 3958, 'blind': 3959, 'woe': 3960, 'pisses': 3961, 'gloom': 3962, 'yous': 3963
, 'fl': 3964, 'cork': 3965, 'icarly': 3966, 'yeahhh': 3967, 'kings': 3968, 'immediately': 3969, 'rocket': 3970,
'warped': 3971, 'bite': 3972, 'bittersweet': 3973, 'nans': 3974, 'obsession': 3975, 'den': 3976, 'margaritas': 3
977, 'temporary': 3978, 'personality': 3979, 'struggling': 3980, 'intense': 3981, 'pearl': 3982, 'kenny': 3983,
'grapes': 3984, 'disgusted': 3985, 'nz': 3986, 'pineapple': 3987, 'convert': 3988, 'hayfever': 3989, 'blown': 39
90, 'waaa': 3991, 'neva': 3992, 'oot': 3993, 'quilt': 3994, 'sr': 3995, 'particularly': 3996, 'daniel': 3997, 'n
ature': 3998, 'labels': 3999, 'hong': 4000, 'favor': 4001, 'romance': 4002, 'sg': 4003, 'ni': 4004, 'nightmare':
4005, 'equipment': 4006, 'resume': 4007, 'karaoke': 4008, 'expo': 4009, 'gambit': 4010, 'womens': 4011, 'eatin':
4012, 'gravity': 4013, 'sleeps': 4014, 'brittany': 4015, 'pie': 4016, 'scaring': 4017, 'planted': 4018, 'submitt
ed': 4019, 'exit': 4020, 'comet': 4021, 'copies': 4022, 'tubes': 4023, 'browsing': 4024, 'weathers': 4025, 'opti
ons': 4026, 'pizzas': 4027, 'se': 4028, 'hubs': 4029, 'stretch': 4030, 'rove': 4031, 'improve': 4032, 'loner': 4
033, 'squirrel': 4034, 'responding': 4035, 'coursework': 4036, 'climbing': 4037, 'lah': 4038, 'flip': 4039, 'flo
p': 4040, 'seafood': 4041, 'thaa': 4042, 'bliss': 4043, 'format': 4044, 'chap': 4045, 'frogs': 4046, 'dd': 4047,
'xp': 4048, 'delhi': 4049, 'grove': 4050, 'fog': 4051, 'irish': 4052, 'closest': 4053, 'maintenance': 4054, 'exe
rcise': 4055, 'shite': 4056, 'tues': 4057, 'aaaah': 4058, 'bakery': 4059, 'worn': 4060, 'si': 4061, 'bueno': 406
2, 'base': 4063, 'deadlines': 4064, 'laurie': 4065, 'relationships': 4066, 'cycle': 4067, 'tampa': 4068, 'passwo
rd': 4069, 'curly': 4070, 'tweeter': 4071, 'technically': 4072, 'rabbit': 4073, 'reference': 4074, 'mumbai': 407
5, 'treats': 4076, 'description': 4077, 'german': 4078, 'jackass': 4079, 'equals': 4080, 'chrome': 4081, 'goal':
4082, 'cha': 4083, 'whered': 4084, 'diversity': 4085, 'parody': 4086, 'included': 4087, 'idiots': 4088, 'bbl': 4
089, 'trash': 4090, 'spotify': 4091, 'cn': 4092, 'purpose': 4093, 'lyk': 4094, 'torture': 4095, 'condition': 409
6, 'weeds': 4097, 'economic': 4098, 'strangers': 4099, 'asylum': 4100, 'korean': 4101, 'olive': 4102, 'skl': 410
3, 'champs': 4104, 'robin': 4105, 'bushes': 4106, 'char': 4107, 'itt': 4108, 'dining': 4109, 'cardio': 4110, 'be
comes': 4111, 'management': 4112, 'ooc': 4113, 'linda': 4114, 'eps': 4115, 'gaga': 4116, 'stunning': 4117, 'cass
ie': 4118, 'duck': 4119, 'suns': 4120, 'hips': 4121, 'mowing': 4122, 'engine': 4123, 'nevermind': 4124, 'warn':
4125, 'alien': 4126, 'jackman': 4127, 'requiem': 4128, 'replay': 4129, 'vt': 4130, 'crunch': 4131, 'torn': 4132,
'relay': 4133, 'languages': 4134, 'funky': 4135, 'spirit': 4136, 'michigan': 4137, 'nonetheless': 4138, 'clara':
4139, 'jenny': 4140, 'spinach': 4141, 'manly': 4142, 'answered': 4143, 'iphones': 4144, 'designers': 4145, 'posh
': 4146, 'damm': 4147, 'dayyyy': 4148, 'ads': 4149, 'loop': 4150, 'zoe': 4151, 'bikes': 4152, 'diving': 4153, 'h
ookah': 4154, 'doh': 4155, 'blogs': 4156, 'addiction': 4157, 'aston': 4158, 'pat': 4159, 'lock': 4160, 'currency
': 4161, 'damned': 4162, 'holds': 4163, 'ski': 4164, 'bots': 4165, 'detroit': 4166, 'create': 4167, 'debit': 416
8, 'themselves': 4169, 'further': 4170, 'audition': 4171, 'abuselaughsabuse': 4172, 'academy': 4173, 'txt': 4174
, 'earrings': 4175, 'assume': 4176, 'neighborhood': 4177, 'coworker': 4178, 'les': 4179, 'vaca': 4180, 'bumped':
4181, 'bfast': 4182, 'satisfied': 4183, 'shannon': 4184, 'shack': 4185, 'tricky': 4186, 'mann': 4187, 'delight':
4188, 'brandon': 4189, 'lobster': 4190, 'milkshake': 4191, 'offered': 4192, 'yelling': 4193, 'sour': 4194, 'regr
etting': 4195, 'devastated': 4196, 'overall': 4197, 'unpacking': 4198, 'tc': 4199, 'flow': 4200, 'jungle': 4201,
'rays': 4202, 'ireland': 4203, 'vibes': 4204, 'tiff': 4205, 'puke': 4206, 'material': 4207, 'rocky': 4208, 'av':
4209, 'wiv': 4210, 'aight': 4211, 'slacking': 4212, 'visual': 4213, 'shaun': 4214, 'boots': 4215, 'hoped': 4216,
'blisters': 4217, 'ding': 4218, 'casa': 4219, 'toss': 4220, 'highly': 4221, 'marked': 4222, 'weigh': 4223, 'rio'
: 4224, 'soft': 4225, 'exhausting': 4226, 'sits': 4227, 'experiencing': 4228, 'cartoon': 4229, 'wack': 4230, 'po
inting': 4231, 'mentor': 4232, 'furniture': 4233, 'swing': 4234, 'prolly': 4235, 'coulda': 4236, 'shoulda': 4237
, 'muffin': 4238, 'damage': 4239, 'jade': 4240, 'ach': 4241, 'iv': 4242, 'devil': 4243, 'discuss': 4244, 'fiftee
n': 4245, 'favorites': 4246, 'goodbyes': 4247, 'yaaay': 4248, 'ds': 4249, 'cameras': 4250, 'gadget': 4251, 'gurl
': 4252, 'manual': 4253, 'concrete': 4254, 'basic': 4255, 'somethings': 4256, 'lies': 4257, 'relief': 4258, 'imp
atient': 4259, 'woulda': 4260, 'champagne': 4261, 'elle': 4262, 'papers': 4263, 'chain': 4264, 'veggie': 4265, '
inches': 4266, 'distance': 4267, 'hers': 4268, 'birthdays': 4269, 'bra': 4270, 'guests': 4271, 'whom': 4272, 'ca
bin': 4273, 'receive': 4274, 'separate': 4275, 'ea': 4276, 'universe': 4277, 'capacity': 4278, 'eff': 4279, 'but
terfly': 4280, 'loveee': 4281, 'anne': 4282, 'logged': 4283, 'auntie': 4284, 'hence': 4285, 'responses': 4286, '
confirmed': 4287, 'lg': 4288, 'walks': 4289, 'piggy': 4290, 'jane': 4291, 'sniffle': 4292, 'gps': 4293, 'depot':
4294, 'meets': 4295, 'dope': 4296, 'temp': 4297, 'cobra': 4298, 'noes': 4299, 'average': 4300, 'blech': 4301, 's
neak': 4302, 'emma': 4303, 'attending': 4304, 'capital': 4305, 'postponed': 4306, 'triple': 4307, 'task': 4308,
'nuggets': 4309, 'debating': 4310, 'suspect': 4311, 'ridiculously': 4312, 'sweetheart': 4313, 'boiling': 4314, '
matrix': 4315, 'cruising': 4316, 'remeber': 4317, 'sowwy': 4318, 'midday': 4319, 'nut': 4320, 'dosent': 4321, 'p
itch': 4322, 'leopard': 4323, 'beside': 4324, 'bing': 4325, 'brave': 4326, 'snoring': 4327, 'africa': 4328, 'aid
an': 4329, 'zac': 4330, 'z': 4331, 'relate': 4332, 'unique': 4333, 'activity': 4334, 'hahahha': 4335, 'fc': 4336
, 'mag': 4337, 'dual': 4338, 'chillen': 4339, 'brits': 4340, 'recession': 4341, 'accounts': 4342, 'carrie': 4343
, 'bryan': 4344, 'sub': 4345, 'scott': 4346, 'joey': 4347, 'pam': 4348, 'burns': 4349, 'pies': 4350, 'disco': 43
51, 'march': 4352, 'mushy': 4353, 'blink': 4354, 'tube': 4355, 'barack': 4356, 'koi': 4357, 'spock': 4358, 'surf
ing': 4359, 'injured': 4360, 'ranch': 4361, 'arnold': 4362, 'stairs': 4363, 'comic': 4364, 'parade': 4365, 'mood
s': 4366, 'potatoes': 4367, 'espresso': 4368, 'surviving': 4369, 'marks': 4370, 'shares': 4371, 'photographer':
4372, 'teased': 4373, 'mister': 4374, 'ping': 4375, 'billy': 4376, 'albums': 4377, 'chasing': 4378, 'layout': 43
79, 'jordan': 4380, 'coat': 4381, 'spicy': 4382, 'nola': 4383, 'cities': 4384, 'thus': 4385, 'showered': 4386, '
logical': 4387, 'backyard': 4388, 'ram': 4389, 'coincidence': 4390, 'appreciation': 4391, 'bend': 4392, 'poker':
4393, 'polish': 4394, 'map': 4395, 'hoppusday': 4396, 'soap': 4397, 'appropriate': 4398, 'devon': 4399, 'dangero
us': 4400, 'reaction': 4401, 'aiden': 4402, 'signal': 4403, 'lemon': 4404, 'newest': 4405, 'chin': 4406, 'sob':
4407, 'tutorials': 4408, 'lacking': 4409, 'sb': 4410, 'owners': 4411, 'wandering': 4412, 'entertained': 4413, 't
echnology': 4414, 'napping': 4415, 'neighbours': 4416, 'rejected': 4417, 'toilet': 4418, 'acct': 4419, 'lover':
4420, 'trick': 4421, 'express': 4422, 'brody': 4423, 'mental': 4424, 'cullen': 4425, 'cops': 4426, 'seasons': 44
27, 'covering': 4428, 'lime': 4429, 'conditions': 4430, 'wot': 4431, 'funniest': 4432, 'yew': 4433, 'fold': 4434
, 'supply': 4435, 'pshh': 4436, 'prices': 4437, 'merlin': 4438, 'precious': 4439, 'tradition': 4440, 'graduated'
: 4441, 'talks': 4442, 'origins': 4443, 'lolz': 4444, 'include': 4445, 'suspended': 4446, 'president': 4447, 're
znor': 4448, 'thirty': 4449, 'knocked': 4450, 'webcam': 4451, 'becuz': 4452, 'wango': 4453, 'tango': 4454, 'chil
laxing': 4455, 'sykes': 4456, 'doors': 4457, 'starwars': 4458, 'population': 4459, 'knife': 4460, 'replacing': 4
461, 'silent': 4462, 'allen': 4463, 'pony': 4464, 'vast': 4465, 'labor': 4466, 'java': 4467, 'throwback': 4468,
'represent': 4469, 'babyy': 4470, 'fitness': 4471, 'screamed': 4472, 'allll': 4473, 'nurse': 4474, 'maryland': 4
475, 'data': 4476, 'dropping': 4477, 'pr': 4478, 'dessert': 4479, 'mah': 4480, 'eee': 4481, 'kellie': 4482, 'off
ense': 4483, 'corn': 4484, 'dip': 4485, 'distractions': 4486, 'needles': 4487, 'overcome': 4488, 'slight': 4489,
'hosts': 4490, 'trail': 4491, 'lambert': 4492, 'stopping': 4493, 'coverage': 4494, 'shuffle': 4495, 'hawt': 4496
, 'syncing': 4497, 'az': 4498, 'luggage': 4499, 'selection': 4500, 'understands': 4501, 'wut': 4502, 'colds': 45
03, 'dangit': 4504, 'motion': 4505, 'pounding': 4506, 'umm': 4507, 'rogue': 4508, 'studied': 4509, 'sticker': 45
10, 'thinkin': 4511, 'slip': 4512, 'gary': 4513, 'accepting': 4514, 'tx': 4515, 'necessary': 4516, 'bull': 4517,
'tank': 4518, 'login': 4519, 'technical': 4520, 'cracking': 4521, 'funerals': 4522, 'broadband': 4523, 'dreary':
4524, 'yippee': 4525, 'jackson': 4526, 'pumped': 4527, 'wheel': 4528, 'fangirl': 4529, 'berry': 4530, 'source':
4531, 'girly': 4532, 'amazon': 4533, 'unlucky': 4534, 'venus': 4535, 'christine': 4536, 'relatives': 4537, 'tie'
: 4538, 'twitterworld': 4539, 'approaching': 4540, 'hurricane': 4541, 'indie': 4542, 'euro': 4543, 'knock': 4544
, 'courthouse': 4545, 'colin': 4546, 'rolling': 4547, 'zelda': 4548, 'selfish': 4549, 'upside': 4550, 'birmingha
m': 4551, 'external': 4552, 'rested': 4553, 'mud': 4554, 'remix': 4555, 'gaming': 4556, 'agreeing': 4557, 'stadi
um': 4558, 'heather': 4559, 'rt': 4560, 'phase': 4561, 'salvation': 4562, 'promote': 4563, 'thin': 4564, 'greeti
ng': 4565, 'etsy': 4566, 'collect': 4567, 'kicks': 4568, 'subjects': 4569, 'handles': 4570, 'grape': 4571, 'crie
s': 4572, 'handy': 4573, 'knees': 4574, 'bruise': 4575, 'seemed': 4576, 'factory': 4577, 'frozen': 4578, 'cooks'
: 4579, 'logging': 4580, 'risk': 4581, 'league': 4582, 'returning': 4583, 'likewise': 4584, 'trampoline': 4585,
'morgan': 4586, 'pains': 4587, 'ali': 4588, 'pile': 4589, 'knitting': 4590, 'development': 4591, 'fitting': 4592
, 'clubbing': 4593, 'verify': 4594, 'laptops': 4595, 'solution': 4596, 'roses': 4597, 'muah': 4598, 'polar': 459
9, 'translation': 4600, 'git': 4601, 'icant': 4602, 'raised': 4603, 'argentina': 4604, 'ponytail': 4605, 'monkey
': 4606, 'dew': 4607, 'grandmas': 4608, 'dem': 4609, 'defo': 4610, 'union': 4611, 'peaceful': 4612, 'bagel': 461
3, 'controls': 4614, 'twin': 4615, 'cocktails': 4616, 'dull': 4617, 'involves': 4618, 'attacking': 4619, 'steam'
: 4620, 'blank': 4621, 'que': 4622, 'itouch': 4623, 'ducks': 4624, 'peas': 4625, 'japan': 4626, 'pleasant': 4627
, 'mistakes': 4628, 'ssd': 4629, 'samantha': 4630, 'paradise': 4631, 'abandoned': 4632, 'abusecriesabuse': 4633,
'twisted': 4634, 'forms': 4635, 'jesse': 4636, 'chose': 4637, 'shipped': 4638, 'colorado': 4639, 'rp': 4640, 'wi
ped': 4641, 'hahaa': 4642, 'endless': 4643, 'dianne': 4644, 'spamming': 4645, 'reload': 4646, 'yumm': 4647, 'hey
yy': 4648, 'sewing': 4649, 'crafty': 4650, 'versions': 4651, 'yearbook': 4652, 'reminder': 4653, 'monica': 4654,
'offended': 4655, 'dedicated': 4656, 'sacramento': 4657, 'bleach': 4658, 'eagles': 4659, 'reasonable': 4660, 'kc
': 4661, 'lucas': 4662, 'tisdale': 4663, 'database': 4664, 'opened': 4665, 'chi': 4666, 'insomniac': 4667, 'comp
leted': 4668, 'papa': 4669, 'pritchard': 4670, 'thumbs': 4671, 'escaped': 4672, 'gang': 4673, 'soy': 4674, 'eek'
: 4675, 'nana': 4676, 'metallica': 4677, 'pets': 4678, 'buffet': 4679, 'vancity': 4680, 'shizz': 4681, 'guest':
4682, 'wives': 4683, 'aliens': 4684, 'flag': 4685, 'maid': 4686, 'nova': 4687, 'spose': 4688, 'lists': 4689, 'th
ier': 4690, 'fricken': 4691, 'iam': 4692, 'redesigned': 4693, 'kfc': 4694, 'twittered': 4695, 'portable': 4696,
'kit': 4697, 'wood': 4698, 'alll': 4699, 'unit': 4700, 'below': 4701, 'heap': 4702, 'awwwh': 4703, 'spoiled': 47
04, 'virgin': 4705, 'tink': 4706, 'locker': 4707, 'inviting': 4708, 'blend': 4709, 'itches': 4710, 'poured': 471
1, 'agent': 4712, 'adopt': 4713, 'thousand': 4714, 'frankie': 4715, 'flats': 4716, 'custom': 4717, 'designed': 4
718, 'collecting': 4719, 'bball': 4720, 'rehearsal': 4721, 'vmware': 4722, 'nov': 4723, 'le': 4724, 'cameron': 4
725, 'bracelet': 4726, 'costco': 4727, 'ink': 4728, 'graham': 4729, 'finds': 4730, 'christina': 4731, 'poetry':
4732, 'lacroix': 4733, 'realizing': 4734, 'sweats': 4735, 'backpack': 4736, 'statement': 4737, 'artwork': 4738,
'uti': 4739, 'kitchenfire': 4740, 'includes': 4741, 'feb': 4742, 'bart': 4743, 'pedicure': 4744, 'deserves': 474
5, 'category': 4746, 'savings': 4747, 'mattress': 4748, 'dating': 4749, 'madness': 4750, 'chef': 4751, 'laws': 4
752, 'charges': 4753, 'damp': 4754, 'indy': 4755, 'seperate': 4756, 'bicycle': 4757, 'publish': 4758, 'highway':
4759, 'wellington': 4760, 'beanie': 4761, 'hosting': 4762, 'killin': 4763, 'cravings': 4764, 'bodies': 4765, 'am
azingly': 4766, 'welsh': 4767, 'confuse': 4768, 'zack': 4769, 'swings': 4770, 'abuselolabuse': 4771, 'mans': 477
2, 'wid': 4773, 'noe': 4774, 'pilot': 4775, 'breaks': 4776, 'porridge': 4777, 'milan': 4778, 'upto': 4779, 'micr
o': 4780, 'suffer': 4781, 'rant': 4782, 'drowsy': 4783, 'wi': 4784, 'oyster': 4785, 'jean': 4786, 'careful': 478
7, 'katherine': 4788, 'tvs': 4789, 'youu': 4790, 'independent': 4791, 'amen': 4792, 'masculinity': 4793, 'fuel':
4794, 'blond': 4795, 'addictive': 4796, 'spree': 4797, 'embarrassing': 4798, 'compare': 4799, 'ri': 4800, 'chc':
4801, 'distracting': 4802, 'presentations': 4803, 'edwards': 4804, 'paso': 4805, 'tw': 4806, 'plate': 4807, 'lip
stick': 4808, 'hindi': 4809, 'leslie': 4810, 'redo': 4811, 'replys': 4812, 'venice': 4813, 'mod': 4814, 'souls':
4815, 'doubles': 4816, 'swag': 4817, 'shock': 4818, 'vacuum': 4819, 'uhhh': 4820, 'dylan': 4821, 'wolf': 4822, '
abusebowsabuse': 4823, 'tattooed': 4824, 'circumstances': 4825, 'portuguese': 4826, 'hii': 4827, 'rooftop': 4828
, 'dresses': 4829, 'designs': 4830, 'nano': 4831, 'seed': 4832, 'allah': 4833, 'zach': 4834, 'crib': 4835, 'cond
olences': 4836, 'audrey': 4837, 'bible': 4838, 'cents': 4839, 'blushing': 4840, 'agencies': 4841, 'internal': 48
42, 'squad': 4843, 'cryin': 4844, 'produce': 4845, 'exploring': 4846, 'deer': 4847, 'lego': 4848, 'helmet': 4849
, 'tempting': 4850, 'feeding': 4851, 'brewing': 4852, 'njoy': 4853, 'worldwide': 4854, 'timing': 4855, 'sih': 48
56, 'counter': 4857, 'paycheck': 4858, 'hallmark': 4859, 'poets': 4860, 'romantic': 4861, 'vog': 4862, 'folding'
: 4863, 'boards': 4864, 'puffs': 4865, 'ka': 4866, 'ilove': 4867, 'slippers': 4868, 'bow': 4869, 'horrid': 4870,
'worthy': 4871, 'nutella': 4872, 'remove': 4873, 'ugg': 4874, 'oooo': 4875, 'references': 4876, 'tum': 4877, 'bh
b': 4878, 'environment': 4879, 'basement': 4880, 'cubicle': 4881, 'jog': 4882, 'itsucks': 4883, 'wifey': 4884, '
graphic': 4885, 'bestfriend': 4886, 'flags': 4887, 'meat': 4888, 'motorcycle': 4889, 'singers': 4890, 'entered':
4891, 'keychain': 4892, 'hashtag': 4893, 'contribute': 4894, 'mitch': 4895, 'socal': 4896, 'eden': 4897, 'formul
a': 4898, 'nerves': 4899, 'requirements': 4900, 'debate': 4901, 'raw': 4902, 'sync': 4903, 'sympathy': 4904, 'bo
rders': 4905, 'sp': 4906, 'sunglasses': 4907, 'deed': 4908, 'clothing': 4909, 'olympic': 4910, 'js': 4911, 'unde
rbelly': 4912, 'hahahah': 4913, 'asada': 4914, 'crushed': 4915, 'ironing': 4916, 'wagon': 4917, 'maccys': 4918,
'indians': 4919, 'wendy': 4920, 'avenue': 4921, 'assistant': 4922, 'abusehugs': 4923, 'backabuse': 4924, 'inform
ation': 4925, 'tuna': 4926, 'african': 4927, 'lool': 4928, 'users': 4929, 'newport': 4930, 'ahhhhhh': 4931, 'ram
en': 4932, 'isaac': 4933, 'colorful': 4934, 'tackle': 4935, 'wallpaper': 4936, 'pero': 4937, 'citizens': 4938, '
unemployed': 4939, 'ceremony': 4940, 'ada': 4941, 'section': 4942, 'ohwell': 4943, 'urself': 4944, 'likey': 4945
, 'choices': 4946, 'sudoku': 4947, 'cus': 4948, 'nightshift': 4949, 'drill': 4950, 'est': 4951, 'hols': 4952, 't
erribly': 4953, 'reminiscing': 4954, 'scrub': 4955, 'articles': 4956, 'har': 4957, 'unlimited': 4958, 'wnt': 495
9, 'uu': 4960, 'earn': 4961, 'gluten': 4962, 'cape': 4963, 'lush': 4964, 'mainly': 4965, 'rails': 4966, 'bl': 49
67, 'izzard': 4968, 'snacks': 4969, 'arts': 4970, 'pms': 4971, 'shifts': 4972, 'farmer': 4973, 'tierd': 4974, 'r
ankin': 4975, 'ment': 4976, 'thick': 4977, 'roomie': 4978, 'peru': 4979, 'hotter': 4980, 'newspaper': 4981, 'ik'
: 4982, 'stu': 4983, 'grumpy': 4984, 'physical': 4985, 'nachos': 4986, 'stranded': 4987, 'font': 4988, 'nooooooo
o': 4989, 'pandora': 4990, 'los': 4991, 'sucker': 4992, 'powerful': 4993, 'queries': 4994, 'flirting': 4995, 'ul
l': 4996, 'stephen': 4997, 'hugsabuse': 4998, 'ahah': 4999, 'creeped': 5000, 'ning': 5001, 'numb': 5002, 'pg': 5
003, 'ken': 5004, 'fired': 5005, 'richie': 5006, 'ustream': 5007, 'that�s': 5008, 'ims': 5009, 'phrase': 5010,
'fr': 5011, 'hubbys': 5012, 'runners': 5013, 'newbie': 5014, 'belated': 5015, 'ooooo': 5016, 'ron': 5017, 'argue
': 5018, 'trippin': 5019, 'thts': 5020, 'lolso': 5021, 'admitting': 5022, 'bonjour': 5023, 'hahahahah': 5024, 'f
ollowin': 5025, 'medication': 5026, 'asylm': 5027, 'rug': 5028, 'auto': 5029, 'electric': 5030, 'treating': 5031
, 'nasal': 5032, 'bali': 5033, 'paws': 5034, 'comfort': 5035, 'whisperer': 5036, 'companys': 5037, 'vent': 5038,
'soooooooooo': 5039, 'marina': 5040, 'schoool': 5041, 'rc': 5042, 'hive': 5043, 'tricked': 5044, 'whiskey': 5045
, 'tester': 5046, 'hittin': 5047, 'hughes': 5048, 'bacteria': 5049, 'visible': 5050, 'td': 5051, 'jealousy': 505
2, 'accomplish': 5053, 'coldplay': 5054, 'retweeted': 5055, 'bot': 5056, 'blankets': 5057, 'shark': 5058, 'crane
': 5059, 'beware': 5060, 'telecom': 5061, 'mastered': 5062, 'aweful': 5063, 'sheesh': 5064, 'puked': 5065, 'avai
l': 5066, 'laser': 5067, 'oldies': 5068, 'definition': 5069, 'migraines': 5070, 'boxers': 5071, 'animated': 5072
, 'bipolar': 5073, 'wu': 5074, 'bruised': 5075, 'jackie': 5076, 'wthe': 5077, 'confirmation': 5078, 'gums': 5079
, 'depression': 5080, 'payed': 5081, 'taxes': 5082, 'puts': 5083, 'doesnabuse': 5084, 'conversations': 5085, 'as
ses': 5086, 'hint': 5087, 'sunscreen': 5088, 'mirrors': 5089, 'upgrades': 5090, 'blackberries': 5091, 'unfollowe
d': 5092, 'sinuses': 5093, 'fallow': 5094, 'whack': 5095, 'conrad': 5096, 'sicker': 5097, 'ninja': 5098, 'varsit
y': 5099, 'fanclub': 5100, 'restaurants': 5101, 'panera': 5102, 'jonaswebcast': 5103, 'blunt': 5104, 'absolutly'
: 5105, 'lied': 5106, 'cotton': 5107, 'bronchitis': 5108, 'dood': 5109, 'comps': 5110, 'ts': 5111, 'htc': 5112,
'skool': 5113, 'peed': 5114, 'hopin': 5115, 'visa': 5116, 'soda': 5117, 'majorly': 5118, 'ittt': 5119, 'actions'
: 5120, 'inspiring': 5121, 'shouts': 5122, 'sox': 5123, 'boarding': 5124, 'oxford': 5125, 'wendys': 5126, 'sunda
e': 5127, 'bugging': 5128, 'vietnam': 5129, 'grabbing': 5130, 'knit': 5131, 'gate': 5132, 'brighton': 5133, 'len
os': 5134, 'conan': 5135, 'romeo': 5136, 'joker': 5137, 'editors': 5138, 'follows': 5139, 'freeze': 5140, 'relax
ed': 5141, 'gooood': 5142, 'leader': 5143, 'dong': 5144, 'izzy': 5145, 'poopy': 5146, 'functioning': 5147, 'cowo
rkers': 5148, 'lincoln': 5149, 'discount': 5150, 'enthusiastic': 5151, 'foam': 5152, 'thousands': 5153, 'louise'
: 5154, 'slave': 5155, 'spelt': 5156, 'calculator': 5157, 'serve': 5158, 'rolled': 5159, 'pouting': 5160, 'noisy
': 5161, 'mraz': 5162, 'amichael': 5163, 'brisbane': 5164, 'annual': 5165, 'terms': 5166, 'morrisons': 5167, 'et
': 5168, 'spears': 5169, 'yuck': 5170, 'cc': 5171, 'digg': 5172, 'drums': 5173, 'sets': 5174, 'kidney': 5175, 'a
nderson': 5176, 'warranty': 5177, 'qi': 5178, 'needing': 5179, 'hoedown': 5180, 'ae': 5181, 'livin': 5182, 'spee
dy': 5183, 'richards': 5184, 'premium': 5185, 'prada': 5186, 'storms': 5187, 'diesel': 5188, 'suv': 5189, 'organ
ic': 5190, 'plots': 5191, 'nokia': 5192, 'denmark': 5193, 'mikey': 5194, 'paste': 5195, 'traditional': 5196, 'ol
ives': 5197, 'delish': 5198, 'cnn': 5199, 'tends': 5200, 'ti': 5201, 'denial': 5202, 'repeated': 5203, 'jailbrea
k': 5204, 'rum': 5205, 'lexus': 5206, 'writers': 5207, 'pcd': 5208, 'assembly': 5209, 'injury': 5210, 'families'
: 5211, 'striped': 5212, 'pals': 5213, 'reschedule': 5214, 'pierced': 5215, 'dunkin': 5216, 'donuts': 5217, 'sag
a': 5218, 'portland': 5219, 'burbank': 5220, 'misery': 5221, 'haz': 5222, 'parked': 5223, 'hosted': 5224, 'homes
': 5225, 'lappy': 5226, 'caps': 5227, 'bffs': 5228, 'stone': 5229, 'amaze': 5230, 'abusei': 5231, 'mamma': 5232,
'fixing': 5233, 'wins': 5234, 'hulk': 5235, 'victory': 5236, 'fuzzball': 5237, 'unfollow': 5238, 'attempts': 523
9, 'creating': 5240, 'judge': 5241, 'wizard': 5242, 'trading': 5243, 'gg': 5244, 'sole': 5245, 'stitches': 5246,
'thanking': 5247, 'lj': 5248, 'actress': 5249, 'physically': 5250, 'attracted': 5251, 'particular': 5252, 'thatd
': 5253, 'drunken': 5254, 'sc': 5255, 'jelly': 5256, 'adsense': 5257, 'shade': 5258, 'screening': 5259, 'herself
': 5260, 'physics': 5261, 'dooo': 5262, 'branch': 5263, 'generally': 5264, 'casino': 5265, 'minimum': 5266, 'aus
tralian': 5267, 'birth': 5268, 'co': 5269, 'bury': 5270, 'siya': 5271, 'magnificent': 5272, 'techno': 5273, 'bac
ks': 5274, 'mba': 5275, 'shown': 5276, 'imaginary': 5277, 'todo': 5278, 'abby': 5279, 'wayyy': 5280, 'hollywood'
: 5281, 'intended': 5282, 'playoffs': 5283, 'jerrys': 5284, 'stable': 5285, 'privacy': 5286, 'education': 5287,
'cereal': 5288, 'killboy': 5289, 'reno': 5290, 'rings': 5291, 'somatic': 5292, 'mayday': 5293, 'inn': 5294, 'veg
etable': 5295, 'sounded': 5296, 'eva': 5297, 'gaining': 5298, 'distant': 5299, 'relative': 5300, 'expired': 5301
, 'cg': 5302, 'tmr': 5303, 'increased': 5304, 'spilled': 5305, 'marvelous': 5306, 'efron': 5307, 'graduates': 53
08, 'dell': 5309, 'med': 5310, 'ph': 5311, 'mya': 5312, 'tyra': 5313, 'rides': 5314, 'whip': 5315, 'freckles': 5
316, 'sociology': 5317, 'myrtle': 5318, 'damaged': 5319, 'wallace': 5320, 'renewed': 5321, 'apprentice': 5322, '
broadway': 5323, 'lashes': 5324, 'sadd': 5325, 'falls': 5326, 'showin': 5327, 'salon': 5328, 'firmware': 5329, '
arvo': 5330, 'dragging': 5331, 'holland': 5332, 'mayhem': 5333, 'receiving': 5334, 'ba': 5335, 'twitterena': 533
6, 'finest': 5337, 'headphones': 5338, 'viewers': 5339, 'harddrive': 5340, 'cig': 5341, 'gents': 5342, 'runny':
5343, 'scores': 5344, 'ft': 5345, 'leighton': 5346, 'meester': 5347, 'evidence': 5348, 'perfection': 5349, 'shop
ped': 5350, 'harold': 5351, 'sin': 5352, 'ne': 5353, 'surprising': 5354, 'effed': 5355, 'specific': 5356, 'plane
s': 5357, 'colleagues': 5358, 'reward': 5359, 'pill': 5360, 'priscilla': 5361, 'mashed': 5362, 'archuleta': 5363
, 'turtle': 5364, 'bandwidth': 5365, 'amanda': 5366, 'daft': 5367, 'tonighti': 5368, 'sigjeans': 5369, 'booze':
5370, 'inner': 5371, 'richard': 5372, 'jai': 5373, 'om': 5374, 'fetch': 5375, 'knackered': 5376, 'placement': 53
77, 'heartburn': 5378, 'hq': 5379, 'canadian': 5380, 'documents': 5381, 'maps': 5382, 'pb': 5383, 'vinegar': 538
4, 'pepsi': 5385, 'knw': 5386, 'invitation': 5387, 'chica': 5388, 'liam': 5389, 'ghosts': 5390, 'virtual': 5391,
'gb': 5392, 'effective': 5393, 'voodoo': 5394, 'journal': 5395, 'specifically': 5396, 'rescheduled': 5397, 'ruin
ing': 5398, 'takers': 5399, 'meanie': 5400, 'possibility': 5401, 'pen': 5402, 'galore': 5403, 'spoilt': 5404, 'm
orrissey': 5405, 'leather': 5406, 'knox': 5407, 'enjoyable': 5408, 'tops': 5409, 'mmmmm': 5410, 'breezy': 5411,
'dollhouse': 5412, 'craig': 5413, 'pw': 5414, 'pump': 5415, 'sweety': 5416, 'trapped': 5417, 'cart': 5418, 'beer
s': 5419, 'mega': 5420, 'bron': 5421, 'domestic': 5422, 'jumped': 5423, 'sweatshirt': 5424, 'noooooo': 5425, 'le
eds': 5426, 'desire': 5427, 'yas': 5428, 'faire': 5429, 'agile': 5430, 'lolll': 5431, 'celebrities': 5432, 'equa
l': 5433, 'subtle': 5434, 'vintage': 5435, 'mango': 5436, 'alike': 5437, 'brownie': 5438, 'tragedy': 5439, 'cano
n': 5440, 'cage': 5441, 'simon': 5442, 'argument': 5443, 'prince': 5444, 'prosper': 5445, 'filipino': 5446, 'fli
ghts': 5447, 'teams': 5448, 'glue': 5449, 'twist': 5450, 'landed': 5451, 'elaine': 5452, 'manners': 5453, 'compa
nies': 5454, 'wooo': 5455, 'goooo': 5456, 'hiccups': 5457, 'expenses': 5458, 'heehee': 5459, 'dora': 5460, 'iron
ic': 5461, 'scotland': 5462, 'yesss': 5463, 'toris': 5464, 'remains': 5465, 'downside': 5466, 'intentionally': 5
467, 'routine': 5468, 'brighter': 5469, 'kent': 5470, 'anywho': 5471, 'gahh': 5472, 'coupons': 5473, 'partyin':
5474, 'chances': 5475, 'cheeks': 5476, 'sticky': 5477, 'tres': 5478, 'victor': 5479, 'eyesabuse': 5480, 'andor':
5481, 'granny': 5482, 'wooow': 5483, 'hairdresser': 5484, 'bottles': 5485, 'madre': 5486, 'function': 5487, 'att
ached': 5488, 'jacked': 5489, 'priced': 5490, 'fringe': 5491, 'foster': 5492, 'stung': 5493, 'apples': 5494, 'gr
ound': 5495, 'lax': 5496, 'campus': 5497, 'nascar': 5498, 'circle': 5499, 'led': 5500, 'brief': 5501, 'widget':
5502, 'iowa': 5503, 'sanity': 5504, 'belfast': 5505, 'begun': 5506, 'charles': 5507, 'harsh': 5508, 'sanctuary':
5509, 'owww': 5510, 'bums': 5511, 'holes': 5512, 'transport': 5513, 'icky': 5514, 'ooohhh': 5515, 'lift': 5516,
'inability': 5517, 'hip': 5518, 'wanda': 5519, 'shadow': 5520, 'realistic': 5521, 'giveaway': 5522, 'aloha': 552
3, 'treatment': 5524, 'shave': 5525, 'concept': 5526, 'developed': 5527, 'stats': 5528, 'sim': 5529, 'ahahaha':
5530, 'refused': 5531, 'boxing': 5532, 'standby': 5533, 'charm': 5534, 'barnes': 5535, 'promising': 5536, 'maam'
: 5537, 'nobodys': 5538, 'joan': 5539, 'eaten': 5540, 'deliver': 5541, 'fonts': 5542, 'bri': 5543, 'goodluck': 5
544, 'exhibition': 5545, 'prize': 5546, 'rap': 5547, 'samberg': 5548, 'dandy': 5549, 'advert': 5550, 'randoms':
5551, 'spill': 5552, 'pint': 5553, 'sweetest': 5554, 'images': 5555, 'omgosh': 5556, 'basket': 5557, 'straighten
': 5558, 'cow': 5559, 'wheat': 5560, 'fort': 5561, 'pups': 5562, 'err': 5563, 'dentists': 5564, 'dearly': 5565,
'fireworks': 5566, 'freaky': 5567, 'spreading': 5568, 'sinking': 5569, 'greece': 5570, 'polaroid': 5571, 'impres
sions': 5572, 'tru': 5573, 'robert': 5574, 'kavya': 5575, 'scheduled': 5576, 'hawks': 5577, 'brightens': 5578, '
tp': 5579, 'plugging': 5580, 'scout': 5581, 'printing': 5582, 'therell': 5583, 'laters': 5584, 'tminus': 5585, '
mannnn': 5586, 'prove': 5587, 'celebs': 5588, 'bebe': 5589, 'sadi': 5590, 'wing': 5591, 'disturbed': 5592, 'amon
gst': 5593, 'fruits': 5594, 'reel': 5595, 'amazed': 5596, 'sentence': 5597, 'bake': 5598, 'liesboystell': 5599,
'unfortunatly': 5600, 'comm': 5601, 'lucy': 5602, 'copenhagen': 5603, 'breeding': 5604, 'lott': 5605, 'politicia
ns': 5606, 'mariah': 5607, 'pops': 5608, 'morris': 5609, 'cud': 5610, 'cuts': 5611, 'nm': 5612, 'jamba': 5613, '
drum': 5614, 'bg': 5615, 'sticking': 5616, 'skillz': 5617, 'goat': 5618, 'wheels': 5619, 'lifetime': 5620, 'prov
iding': 5621, 'awkward': 5622, 'wrecked': 5623, 'att': 5624, 'heated': 5625, 'nightly': 5626, 'kool': 5627, 'tro
y': 5628, 'disappointment': 5629, 'discovery': 5630, 'sprain': 5631, 'ungodly': 5632, 'hiii': 5633, 'nanna': 563
4, 'georgia': 5635, 'kyle': 5636, 'shhh': 5637, 'learnt': 5638, 'aj': 5639, 'compatible': 5640, 'sprained': 5641
, 'fields': 5642, 'lenovo': 5643, 'fn': 5644, 'kris': 5645, 'grades': 5646, 'moan': 5647, 'hiking': 5648, 'pos':
5649, 'jello': 5650, 'howd': 5651, 'published': 5652, 'prizes': 5653, 'wernt': 5654, 'wished': 5655, 'marc': 565
6, 'abandoning': 5657, 'engaged': 5658, 'melissa': 5659, 'monies': 5660, 'peep': 5661, 'involving': 5662, 'kinde
rgarten': 5663, 'luna': 5664, 'eagle': 5665, 'tall': 5666, 'sheet': 5667, 'hid': 5668, 'mushroom': 5669, 'mourni
ng': 5670, 'sources': 5671, 'operation': 5672, 'tuned': 5673, 'strip': 5674, 'looong': 5675, 'loaded': 5676, 'yt
': 5677, 'blogger': 5678, 'females': 5679, 'musicmonday': 5680, 'nk': 5681, 'transformers': 5682, 'index': 5683,
'loading': 5684, 'awaits': 5685, 'cult': 5686, 'byeeeee': 5687, 'tad': 5688, 'draft': 5689, 'ovi': 5690, 'bamboo
zle': 5691, 'mcflys': 5692, 'sn': 5693, 'viewing': 5694, 'inspired': 5695, 'baka': 5696, 'saddened': 5697, 'dey'
: 5698, 'context': 5699, 'kan': 5700, 'nauseous': 5701, 'chirping': 5702, 'deli': 5703, 'kayla': 5704, 'tweeples
': 5705, 'mimis': 5706, 'rebel': 5707, 'pantera': 5708, 'liz': 5709, 'rd': 5710, 'primavera': 5711, 'lighting':
5712, 'chopped': 5713, 'liver': 5714, 'intro': 5715, 'temperature': 5716, 'refreshed': 5717, 'tragic': 5718, 'le
icester': 5719, 'richmond': 5720, 'goi': 5721, 'miller': 5722, 'psychology': 5723, 'aloud': 5724, 'infected': 57
25, 'headline': 5726, 'guild': 5727, 'untill': 5728, 'cooperating': 5729, 'rates': 5730, 'twhirl': 5731, 'income
': 5732, 'mohawk': 5733, 'contemplating': 5734, 'breast': 5735, 'rotten': 5736, 'keith': 5737, 'automatic': 5738
, 'benefit': 5739, 'customers': 5740, 'dvr': 5741, 'alexis': 5742, 'gue': 5743, 'hungover': 5744, 'goldfish': 57
45, 'readin': 5746, 'waaaaay': 5747, 'nfg': 5748, 'harlem': 5749, 'gilmore': 5750, 'patron': 5751, 'civic': 5752
, 'sleepin': 5753, 'lava': 5754, 'columbus': 5755, 'tina': 5756, 'goddamn': 5757, 'hawaii': 5758, 'cheating': 57
59, 'additional': 5760, 'humid': 5761, 'spit': 5762, 'ballerina': 5763, 'dreambears': 5764, 'stanky': 5765, 'fab
ric': 5766, 'yessir': 5767, 'mushrooms': 5768, 'ins': 5769, 'playlist': 5770, 'classics': 5771, 'adopted': 5772,
'urs': 5773, 'dk': 5774, 'you�re': 5775, 'trumpet': 5776, 'hundred': 5777, 'deserved': 5778, 'elses': 5779, 'f
ieldnotes': 5780, 'aunts': 5781, 'fluffy': 5782, 'dash': 5783, 'directory': 5784, 'missy': 5785, 'garlic': 5786,
'whn': 5787, 'strength': 5788, 'bailey': 5789, 'sulking': 5790, 'northern': 5791, 'nhl': 5792, 'soundtrack': 579
3, 'meeeee': 5794, 'poppins': 5795, 'evans': 5796, 'twitties': 5797, 'chicks': 5798, 'shipping': 5799, 'spaces':
5800, 'wating': 5801, 'acid': 5802, 'opportunity': 5803, 'susan': 5804, 'entirely': 5805, 'hott': 5806, 'heheh':
5807, 'crawl': 5808, 'ui': 5809, 'parvo': 5810, 'noodle': 5811, 'sizes': 5812, 'cope': 5813, 'abusehugglesabuse'
: 5814, 'invites': 5815, 'bsg': 5816, 'coldstone': 5817, 'banned': 5818, 'bumping': 5819, 'weirdest': 5820, 'all
ergic': 5821, 'wiki': 5822, 'choc': 5823, 'whilst': 5824, 'foggy': 5825, 'lite': 5826, 'sm': 5827, 'freshman': 5
828, 'paperwork': 5829, 'convenient': 5830, 'survived': 5831, 'patch': 5832, 'prank': 5833, 'nicky': 5834, 'plea
seee': 5835, 'touching': 5836, 'leadership': 5837, 'stanley': 5838, 'slap': 5839, 'travis': 5840, 'owns': 5841,
'gooooood': 5842, 'value': 5843, 'youbut': 5844, 'tiger': 5845, 'bees': 5846, 'starfleet': 5847, 'bak': 5848, 'd
idn�t': 5849, 'crime': 5850, 'jeremy': 5851, 'consolation': 5852, 'stealth': 5853, 'mgmt': 5854, 'enemy': 5855
, 'natalie': 5856, 'pools': 5857, 'tila': 5858, 'ottawa': 5859, 'valid': 5860, 'messenger': 5861, 'alaska': 5862
, 'humble': 5863, 'witness': 5864, 'wb': 5865, 'potty': 5866, 'aaah': 5867, 'cya': 5868, 'relatively': 5869, 'ja
ja': 5870, 'chad': 5871, 'abusecoughabuse': 5872, 'poems': 5873, 'brick': 5874, 'dats': 5875, 'tokio': 5876, 'pu
shed': 5877, 'continues': 5878, 'cords': 5879, 'tshirts': 5880, 'mustve': 5881, 'tnx': 5882, 'kardashian': 5883,
'bec': 5884, 'forsure': 5885, 'bitten': 5886, 'dashboard': 5887, 'fishies': 5888, 'directly': 5889, 'toyota': 58
90, 'shallow': 5891, 'rabies': 5892, 'unknown': 5893, 'bumps': 5894, 'gotcha': 5895, 'doubled': 5896, 'mirror':
5897, 'whens': 5898, 'triste': 5899, 'scar': 5900, 'cheek': 5901, 'boohoo': 5902, 'slowest': 5903, 'cp': 5904, '
designer': 5905, 'dominos': 5906, 'boi': 5907, 'loli': 5908, 'quietly': 5909, 'stale': 5910, 'nina': 5911, 'broo
ke': 5912, 'chops': 5913, 'knowi': 5914, 'oral': 5915, 'complain': 5916, 'sandwhich': 5917, 'walls': 5918, 'prob
ly': 5919, 'phoenix': 5920, 'fiddler': 5921, 'cube': 5922, 'carolina': 5923, 'teddy': 5924, 'pamper': 5925, 'uta
h': 5926, 'sl': 5927, 'crab': 5928, 'prints': 5929, 'conquered': 5930, 'arkham': 5931, 'greet': 5932, 'grader':
5933, 'judy': 5934, 'buggy': 5935, 'production': 5936, 'lemonade': 5937, 'relaxation': 5938, 'hayes': 5939, 'yur
': 5940, 'opposed': 5941, 'buti': 5942, 'tym': 5943, 'tn': 5944, 'ringtones': 5945, 'aswel': 5946, 'recital': 59
47, 'shin': 5948, 'martini': 5949, 'htown': 5950, 'tales': 5951, 'lm': 5952, 'sake': 5953, 'diana': 5954, 'stead
y': 5955, 'syndrome': 5956, 'pax': 5957, 'travels': 5958, 'sql': 5959, 'madd': 5960, 'bold': 5961, 'quizzes': 59
62, 'bothering': 5963, 'retiring': 5964, 'shampoo': 5965, 'html': 5966, 'bat': 5967, 'tai': 5968, 'army': 5969,
'costa': 5970, 'rez': 5971, 'cof': 5972, 'recipes': 5973, 'sickness': 5974, 'onee': 5975, 'jays': 5976, 'oliver'
: 5977, 'resting': 5978, 'fewer': 5979, 'dreamt': 5980, 'bouncy': 5981, 'nonstop': 5982, 'bkk': 5983, 'tanner':
5984, 'trails': 5985, 'xoxox': 5986, 'molar': 5987, 'bom': 5988, 'olds': 5989, 'keyboards': 5990, 'fits': 5991,
'cont': 5992, 'boooooooo': 5993, 'slim': 5994, 'replacement': 5995, 'warren': 5996, 'cache': 5997, 'nightmares':
5998, 'digest': 5999, 'cocktail': 6000, 'attitude': 6001, 'hmv': 6002, 'aol': 6003, 'popcorn': 6004, 'meagan': 6
005, 'sass': 6006, 'shaw': 6007, 'needa': 6008, 'discounts': 6009, 'beatwittyparty': 6010, 'reeeally': 6011, 'ko
ng': 6012, 'philosophical': 6013, 'gigantic': 6014, 'diggin': 6015, 'booth': 6016, 'auditions': 6017, 'mami': 60
18, 'givin': 6019, 'viral': 6020, 'stat': 6021, 'refund': 6022, 'healing': 6023, 'gates': 6024, 'ridiculous': 60
25, 'erica': 6026, 'youi': 6027, 'honeymoon': 6028, 'sean': 6029, 'treated': 6030, 'athens': 6031, 'awesomee': 6
032, 'munch': 6033, 'yogurt': 6034, 'developing': 6035, 'filthy': 6036, 'gawd': 6037, 'palms': 6038, 'excuses':
6039, 'mels': 6040, 'russians': 6041, 'arthur': 6042, 'proudly': 6043, 'commercial': 6044, 'sophia': 6045, 'came
o': 6046, 'leah': 6047, 'gretel': 6048, 'translate': 6049, 'textmate': 6050, 'sensation': 6051, 'stefan': 6052,
'confess': 6053, 'chars': 6054, 'drizzling': 6055, 'honesty': 6056, 'trans': 6057, 'wifes': 6058, 'redskins': 60
59, 'jansen': 6060, 'daya': 6061, 'worm': 6062, 'disconnected': 6063, 'cricinfo': 6064, 'fluids': 6065, 'dose':
6066, 'overi': 6067, 'redbull': 6068, 'queue': 6069, 'strangely': 6070, 'stroke': 6071, 'homesick': 6072, 'twent
y': 6073, 'bacc': 6074, 'begining': 6075, 'dial': 6076, 'mails': 6077, 'sincerely': 6078, 'noice': 6079, 'bitchy
': 6080, 'mother�s': 6081, 'inspite': 6082, 'titles': 6083, 'beeen': 6084, 'homeeee': 6085, 'suite': 6086, 'me
redith': 6087, 'harm': 6088, 'mg': 6089, 'andre': 6090, 'lorraine': 6091, 'amsterdam': 6092, 'pinch': 6093, 'sin
gstar': 6094, 'gameboy': 6095, 'survey': 6096, 'audit': 6097, 'paige': 6098, 'jenn': 6099, 'southend': 6100, 'we
eding': 6101, 'sumtime': 6102, 'hurdle': 6103, 'parallels': 6104, 'everbody': 6105, 'scones': 6106, 'papi': 6107
, 'boredd': 6108, 'cuzz': 6109, 'placed': 6110, 'jeje': 6111, 'rec': 6112, 'waaah': 6113, 'dubai': 6114, 'vaness
a': 6115, 'hudgens': 6116, 'ick': 6117, 'fasho': 6118, 'litle': 6119, 'carrying': 6120, 'boulder': 6121, 'freedo
m': 6122, 'treasures': 6123, 'cue': 6124, 'aware': 6125, 'pollution': 6126, 'rightlol': 6127, 'belive': 6128, 's
helves': 6129, 'diva': 6130, 'suicides': 6131, 'sodas': 6132, 'fires': 6133, 'disagree': 6134, 'greatness': 6135
, 'election': 6136, 'kettle': 6137, 'plzz': 6138, 'indonesia': 6139, 'aunties': 6140, 'increasing': 6141, 'perry
': 6142, 'damn': 6143, 'throbbing': 6144, 'alley': 6145, 'funn': 6146, 'spice': 6147, 'catcher': 6148, 'alpha':
6149, 'heartwarming': 6150, 'guna': 6151, 'stations': 6152, 'dismal': 6153, 'rr': 6154, 'md': 6155, 'oll': 6156,
'empathise': 6157, 'approve': 6158, 'flesh': 6159, 'admitted': 6160, 'ontario': 6161, 'boost': 6162, 'prep': 616
3, 'pku': 6164, 'jessie': 6165, 'rethink': 6166, 'unbearable': 6167, 'eeeeeee': 6168, 'boyfriends': 6169, 'wus':
6170, 'itand': 6171, 'raspberry': 6172, 'sherbert': 6173, 'unintentionally': 6174, 'gl': 6175, 'fastest': 6176,
'gloss': 6177, 'safely': 6178, 'convention': 6179, 'organizing': 6180, 'parallel': 6181, 'oreos': 6182, 'pete':
6183, 'utterly': 6184, 'fic': 6185, 'employees': 6186, 'frisbee': 6187, 'upmaybe': 6188, 'cherish': 6189, 'kazim
': 6190, 'cera': 6191, 'fellas': 6192, 'elliot': 6193, 'brekkie': 6194, 'ud': 6195, 'ure': 6196, 'soaps': 6197,
'ru': 6198, 'lia': 6199, 'grabbed': 6200, 'aiming': 6201, 'raffle': 6202, 'stylish': 6203, 'ambien': 6204, 'spec
ies': 6205, 'bonus': 6206, 'unpaid': 6207, 'teleport': 6208, 'piercing': 6209, 'pts': 6210, 'cosplay': 6211, 'as
sassin': 6212, 'vets': 6213, 'shinning': 6214, 'debut': 6215, 'skins': 6216, 'css': 6217, 'dent': 6218, 'fixrepl
ies': 6219, 'yipee': 6220, 'athletic': 6221, 'racket': 6222, 'excitement': 6223, 'crocheted': 6224, 'poly': 6225
, 'fibe': 6226, 'warnings': 6227, 'sumone': 6228, 'batteries': 6229, 'unfortunate': 6230, 'drip': 6231, 'feature
d': 6232, 'knooow': 6233, 'sail': 6234, 'shitttt': 6235, 'ihave': 6236, 'portsmouth': 6237, 'fantasy': 6238, 'ro
bot': 6239, 'thro': 6240, 'heavens': 6241, 'mere': 6242, 'diapers': 6243, 'raven': 6244, 'lopez': 6245, 'example
': 6246, 'grizzly': 6247, 'bldg': 6248, 'anyhoo': 6249, 'dissapointed': 6250, 'kayo': 6251, 'cracked': 6252, 'no
wabuse': 6253, 'godawful': 6254, 'pirate': 6255, 'worrying': 6256, 'chloe': 6257, 'prologue': 6258, 'misconstrue
d': 6259, 'fascinating': 6260, 'spaghetti': 6261, 'conspiracy': 6262, 'nancy': 6263, 'beatles': 6264, 'fuse': 62
65, 'spare': 6266, 'highschool': 6267, 'gorilla': 6268, 'pod': 6269, 'props': 6270, 'initials': 6271, 'microwave
': 6272, 'oct': 6273, 'cubbies': 6274, 'shipwrecked': 6275, 'cone': 6276, 'sparkling': 6277, 'kindness': 6278, '
ofcourse': 6279, 'dots': 6280, 'voices': 6281, 'eventhough': 6282, 'absent': 6283, 'strikes': 6284, 'squirrels':
6285, 'gant': 6286, 'quiero': 6287, 'poet': 6288, 'dez': 6289, 'kennel': 6290, 'cici': 6291, 'detention': 6292,
'hut': 6293, 'chile': 6294, 'shrimp': 6295, 'electricity': 6296, 'stepped': 6297, 'sock': 6298, 'reads': 6299, '
dome': 6300, 'durian': 6301, 'macarons': 6302, 'talaga': 6303, 'nga': 6304, 'pala': 6305, 'darkness': 6306, 'sat
an': 6307, 'googled': 6308, 'uggg': 6309, 'batty': 6310, 'defrag': 6311, 'intrigued': 6312, 'dimples': 6313, 'na
ww': 6314, 'dimple': 6315, 'ugggh': 6316, 'srry': 6317, 'bulgaria': 6318, 'yal': 6319, 'phat': 6320, 'derek': 63
21, 'elk': 6322, 'pipers': 6323, 'boiled': 6324, 'bosses': 6325, 'malaysian': 6326, 'recall': 6327, 'clogging':
6328, 'errors': 6329, 'motorways': 6330, 'xrays': 6331, 'amor': 6332, 'ja': 6333, 'teehee': 6334, 'everrr': 6335
, 'notion': 6336, 'sars': 6337, 'whee': 6338, 'hanna': 6339, 'dozen': 6340, 'torrent': 6341, 'distribution': 634
2, 'entertain': 6343, 'tripped': 6344, 'plastic': 6345, 'midst': 6346, 'rex': 6347, 'architecture': 6348, 'aunty
': 6349, 'mcflyandjb': 6350, 'lips': 6351, 'xmas': 6352, 'applies': 6353, 'vocal': 6354, 'df': 6355, 'energized'
: 6356, 'cuba': 6357, 'rack': 6358, 'deplurk': 6359, 'ashleigh': 6360, 'bens': 6361, 'pitty': 6362, 'wld': 6363,
'rlly': 6364, 'ozzy': 6365, 'nowshe': 6366, 'ityou': 6367, 'fukn': 6368, 'chillaxin': 6369, 'wkend': 6370, 'clas
sy': 6371, 'begins': 6372, 'buns': 6373, 'riverside': 6374, 'sleeeep': 6375, 'jager': 6376, 'sample': 6377, 'bop
': 6378, 'commitments': 6379, 'upand': 6380, 'edits': 6381, 'funtime': 6382, 'despair': 6383, 'poverty': 6384, '
futile': 6385, 'topped': 6386, 'itim': 6387, 'opted': 6388, 'aaaa': 6389, 'thnks': 6390, 'fears': 6391, 'chronic
les': 6392, 'redhead': 6393, 'concerts': 6394, 'bach': 6395, 'oj': 6396, 'director': 6397, 'helloooo': 6398, 'dr
ews': 6399, 'defense': 6400, 'travelling': 6401, 'wme': 6402, 'blanket': 6403, 'battlestar': 6404, 'galactica':
6405, 'jbs': 6406, 'addicting': 6407, 'laurens': 6408, 'expectations': 6409, 'element': 6410, 'hash': 6411, 'evo
lution': 6412, 'alternatives': 6413, 'sneezed': 6414, 'gw': 6415, 'publishing': 6416, 'blackberrys': 6417, 'pixi
es': 6418, 'todayyyyyy': 6419, 'spf': 6420, 'chemicals': 6421, 'shifting': 6422, 'chomp': 6423, 'overheating': 6
424, 'byeeee': 6425, 'soak': 6426, 'furious': 6427, 'buzzed': 6428, 'abusetearsabuse': 6429, 'superstar': 6430,
'avid': 6431, 'magazines': 6432, 'missions': 6433, 'volunteer': 6434, 'extension': 6435, 'chaos': 6436, 'braid':
6437, 'animation': 6438, 'fifth': 6439, 'loooooong': 6440, 'cultural': 6441, 'cemetary': 6442, 'netbook': 6443,
'concepts': 6444, 'abusereallyabuse': 6445, 'chats': 6446, 'databases': 6447, 'solved': 6448, 'twiter': 6449, 'a
ma': 6450, 'coooooooool': 6451, 'db': 6452, 'academic': 6453, 'stockholm': 6454, 'phantom': 6455, 'wohoo': 6456,
'loool': 6457, 'donabuse': 6458, 'quinn': 6459, 'hehehehe': 6460, 'orphan': 6461, 'lambs': 6462, 'speeding': 646
3, 'nikki': 6464, 'baths': 6465, 'fathom': 6466, 'prettier': 6467, 'siss': 6468, 'stayin': 6469, 'gabba': 6470,
'complaints': 6471, 'outttt': 6472, 'schedules': 6473, 'shatner': 6474, 'workunfortunately': 6475, 'watering': 6
476, 'ze': 6477, 'golfing': 6478, 'dans': 6479, 'sytycd': 6480, 'ashleighhh': 6481, 'snake': 6482, 'elvis': 6483
, 'kiyosakis': 6484, 'colors': 6485, 'confusin': 6486, 'nash': 6487, 'painted': 6488, 'matey': 6489, 'chitown':
6490, 'edwin': 6491, 'masters': 6492, 'torta': 6493, 'chauffeur': 6494, 'oopsie': 6495, 'theree': 6496, 'switche
d': 6497, 'mixing': 6498, 'menace': 6499, 'intelligent': 6500, 'pitas': 6501, 'smoothies': 6502, 'sats': 6503, '
strongly': 6504, 'agrees': 6505, 'sho': 6506, 'mozarts': 6507, 'gtalk': 6508, 'pow': 6509, 'trend': 6510, 'winds
or': 6511, 'urgent': 6512, 'stronger': 6513, 'congratulatory': 6514, 'damnnn': 6515, 'timeee': 6516, 'powerblog'
: 6517, 'lols': 6518, 'movement': 6519, 'boonies': 6520, 'roulette': 6521, 'allens': 6522, 'resistance': 6523, '
affects': 6524, 'headlining': 6525, 'mower': 6526, 'ughwhat': 6527, 'soldiers': 6528, 'automatically': 6529, 'bc
k': 6530, 'accessible': 6531, 'mug': 6532, 'ma�': 6533, 'nc': 6534, 'blasting': 6535, 'cb': 6536, 'screamin':
6537, 'closes': 6538, 'protein': 6539, 'alias': 6540, 'pe': 6541, 'ermm': 6542, 'upper': 6543, 'greatly': 6544,
'beards': 6545, 'composition': 6546, 'greek': 6547, 'choked': 6548, 'behaved': 6549, 'publishers': 6550, 'grubby
': 6551, 'vodafone': 6552, 'tropical': 6553, 'impose': 6554, 'predict': 6555, 'asbestos': 6556, 'rember': 6557,
'claires': 6558, 'rejection': 6559, 'missus': 6560, 'exclusive': 6561, 'ondemand': 6562, 'acing': 6563, 'tat': 6
564, 'dana': 6565, 'rss': 6566, 'eternally': 6567, 'qs': 6568, 'repinging': 6569, 'sbs': 6570, 'latin': 6571, 's
gt': 6572, 'meningitis': 6573, 'rapids': 6574, 'possessed': 6575, 'slaves': 6576, 'harlow': 6577, 'sentimental':
6578, 'terminal': 6579, 'backstreet': 6580, 'skirt': 6581, 'nuttin': 6582, 'alexi': 6583, 'overdue': 6584, 'loom
ing': 6585, 'accent': 6586, 'puter': 6587, 'happend': 6588, 'hhaha': 6589, 'tweeten': 6590, 'mario': 6591, 'pudd
ing': 6592, 'clancy': 6593, 'shades': 6594, 'stoned': 6595, 'anticipating': 6596, 'ethan': 6597, 'exp': 6598, 't
hoi': 6599, 'fernanda': 6600, 'cordova': 6601, 'soggy': 6602, 'traumatized': 6603, 'brewed': 6604, 'io': 6605, '
nightlast': 6606, 'segment': 6607, 'memy': 6608, 'memes': 6609, 'charleston': 6610, 'coffe': 6611, 'ek': 6612, '
carpet': 6613, 'liquor': 6614, 'lasagna': 6615, 'buzzing': 6616, 'julie': 6617, 'dreaded': 6618, 'babysitter': 6
619, 'sans': 6620, 'shopaholic': 6621, 'funnn': 6622, 'whores': 6623, 'cynical': 6624, 'hurtin': 6625, 'tying':
6626, 'stings': 6627, 'angelina': 6628, 'nto': 6629, 'twittertakeover': 6630, 'among': 6631, 'shoud': 6632, 'hgt
v': 6633, 'scent': 6634, 'tee': 6635, 'behalf': 6636, 'naming': 6637, 'lmaoi': 6638, 'eliminated': 6639, 'suppor
ting': 6640, 'locals': 6641, 'tab': 6642, 'providence': 6643, 'estas': 6644, 'lamesauce': 6645, 'lizzie': 6646,
'achy': 6647, 'yummmm': 6648, 'reeses': 6649, 'himi': 6650, 'gummy': 6651, 'worms': 6652, 'milkshakes': 6653, 'l
ottery': 6654, 'pd': 6655, 'cincinnati': 6656, 'seperation': 6657, 'wh': 6658, 'aargh': 6659, 'workk': 6660, 'ig
loo': 6661, 'whoot': 6662, 'mar': 6663, 'par': 6664, 'netball': 6665, 'lemsip': 6666, 'queer': 6667, 'carson': 6
668, 'durin': 6669, 'abuseevil': 6670, 'zs': 6671, 'huntsville': 6672, 'forreal': 6673, 'stinkin': 6674, 'gumbo'
: 6675, 'tommorrow': 6676, 'fukin': 6677, 'encourage': 6678, 'globe': 6679, 'juliet': 6680, 'txting': 6681, 'ris
king': 6682, 'vibe': 6683, 'reviewed': 6684, 'terra': 6685, 'halt': 6686, 'sides': 6687, 'peeling': 6688, 'lars'
: 6689, 'cloth': 6690, 'onscreen': 6691, 'snail': 6692, 'colossus': 6693, 'wraps': 6694, 'pickle': 6695, 'doe':
6696, 'janeiro': 6697, 'festivities': 6698, 'baddd': 6699, 'hiring': 6700, 'swears': 6701, 've': 6702, 'amused':
6703, 'swimsuit': 6704, 'promo': 6705, 'scotts': 6706, 'command': 6707, 'oreo': 6708, 'appointments': 6709, 'ala
rms': 6710, 'unanswered': 6711, 'returns': 6712, 'esther': 6713, 'meditate': 6714, 'investigated': 6715, 'britne
ys': 6716, 'stroll': 6717, 'rode': 6718, 'jeep': 6719, 'hahahahahaha': 6720, 'tumors': 6721, 'upi': 6722, 'monk'
: 6723, 'slides': 6724, 'throwdown': 6725, 'drugged': 6726, 'pendant': 6727, 'spelled': 6728, 'unni': 6729, 'nos
': 6730, 'yesbut': 6731, 'pattern': 6732, 'suggested': 6733, 'madison': 6734, 'environmental': 6735, 'embassy':
6736, 'exceeded': 6737, 'grrh': 6738, 'switching': 6739, 'tinternet': 6740, 'tooi': 6741, 'newish': 6742, 'pros'
: 6743, 'eg': 6744, 'todayyy': 6745, 'confident': 6746, 'itit': 6747, 'paracetamol': 6748, 'perspective': 6749,
'wasnabuse': 6750, 'diggnation': 6751, 'bitter': 6752, 'troopers': 6753, 'diane': 6754, 'violently': 6755, 'vend
ing': 6756, 'bugles': 6757, 'goodi': 6758, 'captain': 6759, 'dsi': 6760, 'seek': 6761, 'simpsons': 6762, 'cory':
6763, 'mio': 6764, 'autism': 6765, 'claim': 6766, 'peek': 6767, 'das': 6768, 'du': 6769, 'macs': 6770, 'charging
': 6771, 'spectacular': 6772, 'quad': 6773, 'occasionally': 6774, 'trunk': 6775, 'preferred': 6776, 'wal': 6777,
'mart': 6778, 'carla': 6779, 'nic': 6780, 'lowest': 6781, 'overwhelmed': 6782, 'corona': 6783, 'nation': 6784, '
launched': 6785, 'magnet': 6786, 'uncomfortable': 6787, 'sen': 6788, 'karen': 6789, 'ec': 6790, 'measure': 6791,
'orientation': 6792, 'sk': 6793, 'coop': 6794, 'grim': 6795, 'coolness': 6796, 'drivin': 6797, 'carol': 6798, 'd
resser': 6799, 'playtime': 6800, 'neuroanatomy': 6801, 'takehome': 6802, 'stink': 6803, 'anyhow': 6804, 'spite':
6805, 'ultrasound': 6806, 'aus': 6807, 'laterz': 6808, 'yeaa': 6809, 'iight': 6810, 'shuld': 6811, 'adjusting':
6812, 'classmate': 6813, 'strap': 6814, 'producers': 6815, 'confusion': 6816, 'sections': 6817, 'tehe': 6818, 'f
inaly': 6819, 'sophie': 6820, 'skateboard': 6821, 'vocals': 6822, 'punch': 6823, 'yeaah': 6824, 'manhattan': 682
5, 'thot': 6826, 'internets': 6827, 'infested': 6828, 'archies': 6829, 'maternity': 6830, 'competitive': 6831, '
suspected': 6832, 'cellphone': 6833, 'bent': 6834, 'flippin': 6835, 'cheetos': 6836, 'niceee': 6837, 'jewelry':
6838, 'weirdo': 6839, 'vin': 6840, 'mikee': 6841, 'abusesad': 6842, 'mein': 6843, 'individual': 6844, 'supporter
': 6845, 'upabuse': 6846, 'framework': 6847, 'tide': 6848, 'dancer': 6849, 'lexington': 6850, 'port': 6851, 'sha
rp': 6852, 'committed': 6853, 'irc': 6854, 'morley': 6855, 'funds': 6856, 'relying': 6857, 'writes': 6858, 'camc
order': 6859, 'josiah': 6860, 'paulo': 6861, 'fortunately': 6862, 'leap': 6863, 'speakers': 6864, 'tempted': 686
5, 'rad': 6866, 'circuit': 6867, 'crumbles': 6868, 'boa': 6869, 'arizona': 6870, 'carlile': 6871, 'shld': 6872,
'impromptu': 6873, 'tension': 6874, 'probobly': 6875, 'matthews': 6876, 'recognition': 6877, 'pta': 6878, 'stand
s': 6879, 'discouraged': 6880, 'vim': 6881, 'gap': 6882, 'friendorfollowcom': 6883, 'fee': 6884, 'chelsea': 6885
, 'bmth': 6886, 'requests': 6887, 'everyoneeeee': 6888, 'mopping': 6889, 'snapped': 6890, 'yayyy': 6891, 'muse':
6892, 'cebu': 6893, 'tweaking': 6894, 'phillips': 6895, 'cheered': 6896, 'researching': 6897, 'foolish': 6898, '
aircon': 6899, 'mosquito': 6900, 'straw': 6901, 'shuts': 6902, 'overkill': 6903, 'drake': 6904, 'matches': 6905,
'bruno': 6906, 'hahhaa': 6907, 'prepared': 6908, 'prague': 6909, 'belgium': 6910, 'habit': 6911, 'bcoz': 6912, '
letdown': 6913, 'wht': 6914, 'waiti': 6915, 'paparazzi': 6916, 'doug': 6917, 'warmed': 6918, 'producer': 6919, '
qood': 6920, 'backed': 6921, 'dedication': 6922, 'unparalleled': 6923, 'textbooks': 6924, 'itching': 6925, 'lumb
erjack': 6926, 'knockout': 6927, 'cassidy': 6928, 'liek': 6929, 'swarm': 6930, 'jedi': 6931, 'chit': 6932, 'uss'
: 6933, 'ihate': 6934, 'spoken': 6935, 'typically': 6936, 'speeds': 6937, 'commentary': 6938, 'bankruptcy': 6939
, 'wegmans': 6940, 'flour': 6941, 'immune': 6942, 'heir': 6943, 'madly': 6944, 'staples': 6945, 'heyyyyy': 6946,
'signings': 6947, 'centigrade': 6948, 'praising': 6949, 'vi': 6950, 'evr': 6951, 'flap': 6952, 'tmw': 6953, 'meg
anabuse': 6954, 'joking': 6955, 'gaskarth': 6956, 'cudve': 6957, 'attended': 6958, 'kdg': 6959, 'soz': 6960, 'st
ranger': 6961, 'hen': 6962, 'volume': 6963, 'sunset': 6964, 'bd': 6965, 'omgsh': 6966, 'plot': 6967, 'angle': 69
68, 'selves': 6969, 'frustraded': 6970, 'jjj': 6971, 'gutter': 6972, 'educated': 6973, 'gromit': 6974, 'pacquiao
': 6975, 'rerun': 6976, 'zzzz': 6977, 'subscription': 6978, 'repost': 6979, 'consumption': 6980, 'amorsote': 698
1, 'fran': 6982, 'closeness': 6983, 'pmsl': 6984, 'amt': 6985, 'underwood': 6986, 'tuner': 6987, 'practicing': 6
988, 'pillows': 6989, 'sweaters': 6990, 'stamp': 6991, 'cs': 6992, 'teething': 6993, 'busiest': 6994, 'commentin
g': 6995, 'motorbike': 6996, 'nicked': 6997, 'abbey': 6998, 'shirley': 6999, 'export': 7000, 'sessions': 7001, '
behave': 7002, 'nottingham': 7003, 'interactive': 7004, 'tale': 7005, 'wealthy': 7006, 'quoted': 7007, 'carne':
7008, 'airline': 7009, 'lend': 7010, 'sly': 7011, 'insomnia': 7012, 'whitsun': 7013, 'deeeesearted': 7014, 'isis
': 7015, 'toured': 7016, 'corey': 7017, 'linkedin': 7018, 'pooped': 7019, 'finland': 7020, 'netherlands': 7021,
'gs': 7022, 'pgpm': 7023, 'tss': 7024, 'sooooooooo': 7025, 'jazzy': 7026, 'concur': 7027, 'achievement': 7028, '
immediate': 7029, 'onesies': 7030, 'providers': 7031, 'laughter': 7032, 'listing': 7033, 'decode': 7034, 'dough'
: 7035, 'bsb': 7036, 'tupac': 7037, 'naps': 7038, 'apply': 7039, 'expense': 7040, 'bracket': 7041, 'chaper': 704
2, 'brilliantly': 7043, 'caine': 7044, 'nadia': 7045, 'endorsement': 7046, 'redirects': 7047, 'hunk': 7048, 'rai
nin': 7049, 'rhubarb': 7050, 'lydia': 7051, 'ave': 7052, 'woooooo': 7053, 'cuss': 7054, 'terry': 7055, 'kawawa':
7056, 'racoons': 7057, 'husbands': 7058, 'lunchbreak': 7059, 'carbon': 7060, 'footprint': 7061, 'fame': 7062, 'h
obo': 7063, 'almonds': 7064, 'incorporate': 7065, 'ahn': 7066, 'amazin': 7067, 'wowyou': 7068, 'fudge': 7069, 'h
oodie': 7070, 'guinness': 7071, 'll': 7072, 'hitman': 7073, 'reborn': 7074, 'gran': 7075, 'momies': 7076, 'oatme
al': 7077, 'conditioning': 7078, 'era': 7079, 'hiatus': 7080, 'ayo': 7081, 'stuffier': 7082, 'extend': 7083, 'cl
osure': 7084, 'ref': 7085, 'dint': 7086, 'recordings': 7087, 'fashioned': 7088, 'excruciating': 7089, 'neglect':
7090, 'chiodos': 7091, 'brightly': 7092, 'zune': 7093, 'rey': 7094, 'himym': 7095, 'unusual': 7096, 'douchebag':
7097, 'transportation': 7098, 'saynow': 7099, 'landline': 7100, 'eleven': 7101, 'cauz': 7102, 'farmers': 7103, '
tiring': 7104, 'virtually': 7105, 'nowit': 7106, 'interface': 7107, 'koreans': 7108, 'gardens': 7109, 'spurs': 7
110, 'phobia': 7111, 'sweets': 7112, 'correction': 7113, 'sheep': 7114, 'refresh': 7115, 'blu': 7116, 'nerdy': 7
117, 'nooooooooo': 7118, 'borin': 7119, 'lifesaver': 7120, 'jools': 7121, 'glands': 7122, 'backstage': 7123, 'br
eakomg': 7124, 'showfinally': 7125, 'wos': 7126, 'baguio': 7127, 'darl': 7128, 'savvy': 7129, 'racquet': 7130, '
fkin': 7131, 'costly': 7132, 'ob': 7133, 'clicking': 7134, 'betting': 7135, 'mosquitoes': 7136, 'spreadsheets':
7137, 'watkins': 7138, 'latter': 7139, 'plce': 7140, 'handbag': 7141, 'tastic': 7142, 'shoo': 7143, 'cardboard':
7144, 'whatta': 7145, 'clumsy': 7146, 'heidi': 7147, 'vcenter': 7148, 'screwing': 7149, 'caused': 7150, 'twiggas
': 7151, 'ia': 7152, 'vp': 7153, 'philadelphia': 7154, 'yeahim': 7155, 'favour': 7156, 'typed': 7157, 'lt': 7158
, 'attic': 7159, 'chosen': 7160, 'brazilian': 7161, 'subtly': 7162, 'vocab': 7163, 'turnout': 7164, 'yesi': 7165
, 'combine': 7166, 'cigarette': 7167, 'county': 7168, 'startin': 7169, 'cheering': 7170, 'sod': 7171, 'cm': 7172
, 'recommendations': 7173, 'coco': 7174, 'umbrella': 7175, 'sharon': 7176, 'sher': 7177, 'rushing': 7178, 'aweso
mei': 7179, 'diary': 7180, 'marta': 7181, 'flipping': 7182, 'dale': 7183, 'roasted': 7184, 'pitcher': 7185, 'mag
ento': 7186, 'rescue': 7187, 'subscribe': 7188, 'tot': 7189, 'arre': 7190, 'benadryl': 7191, 'disgusting': 7192,
'seventeen': 7193, 'cholesterol': 7194, 'allnighter': 7195, 'pep': 7196, 'tunes': 7197, 'nicely': 7198, 'closet'
: 7199, 'suprised': 7200, 'bloggerific': 7201, 'oldest': 7202, 'jc': 7203, 'tanned': 7204, 'appears': 7205, 'sco
tty': 7206, 'sept': 7207, 'january': 7208, 'sicky': 7209, 'considerably': 7210, 'underwear': 7211, 'upstairs': 7
212, 'rockstar': 7213, 'keshia': 7214, 'bo': 7215, 'loveliness': 7216, 'bulky': 7217, 'classical': 7218, 'smokes
': 7219, 'yeaaaah': 7220, 'therebut': 7221, 'header': 7222, 'heyya': 7223, 'pinky': 7224, 'sighs': 7225, 'straig
htening': 7226, 'seven': 7227, 'fountain': 7228, 'moring': 7229, 'adium': 7230, 'whose': 7231, 'glimpse': 7232,
'homies': 7233, 'miranda': 7234, 'malaysia': 7235, 'sana': 7236, 'efforts': 7237, 'roundtable': 7238, 'hereeeeee
': 7239, 'panthers': 7240, 'saints': 7241, 'statuses': 7242, 'dane': 7243, 'honor': 7244, 'advertising': 7245, '
cord': 7246, 'physio': 7247, 'sooon': 7248, 'pingpong': 7249, 'tournament': 7250, 'pours': 7251, 'vicky': 7252,
'montanna': 7253, 'kimbalicious': 7254, 'abusehugabuse': 7255, 'studies': 7256, 'bail': 7257, 'chu': 7258, 'scre
enshot': 7259, 'leaked': 7260, 'donate': 7261, 'maxed': 7262, 'felted': 7263, 'lovelies': 7264, 'yoko': 7265, 'o
no': 7266, 'wherever': 7267, 'joint': 7268, 'onnnn': 7269, 'oki': 7270, 'waz': 7271, 'fil': 7272, 'cured': 7273,
'crispies': 7274, 'combination': 7275, 'mcflyy': 7276, 'mwahaha': 7277, 'nike': 7278, 'sandman': 7279, 'leann':
7280, 'anotha': 7281, 'okc': 7282, 'geeky': 7283, 'length': 7284, 'vince': 7285, 'tickled': 7286, 'norms': 7287,
'ant': 7288, 'pretending': 7289, 'slices': 7290, 'imacs': 7291, 'preschooler': 7292, 'flush': 7293, 'navy': 7294
, 'stained': 7295, 'lou': 7296, 'gender': 7297, 'ferry': 7298, 'abusein': 7299, 'blockbuster': 7300, 'rental': 7
301, 'coupon': 7302, 'coool': 7303, 'tumor': 7304, 'charity': 7305, 'sw': 7306, 'hs': 7307, 'withdraws': 7308, '
maxim': 7309, 'yikes': 7310, 'terrific': 7311, 'jareds': 7312, 'yee': 7313, 'maddies': 7314, 'killen': 7315, 'se
amless': 7316, 'everton': 7317, 'alcoholic': 7318, 'thoughh': 7319, 'julys': 7320, 'han': 7321, 'kindle': 7322,
'decently': 7323, 'authority': 7324, 'saddo': 7325, 'niko': 7326, 'vermont': 7327, 'whoohoo': 7328, 'nettles': 7
329, 'scratching': 7330, 'loo': 7331, 'buff': 7332, 'optional': 7333, 'minneapolis': 7334, 'gimme': 7335, 'reins
talled': 7336, 'grub': 7337, 'restoring': 7338, 'litterally': 7339, 'tiesto': 7340, 'traveling': 7341, 'severe':
7342, 'unnecessary': 7343, 'pun': 7344, 'startrek': 7345, 'neice': 7346, 'hunny': 7347, 'fallen': 7348, 'explana
tion': 7349, 'mare': 7350, 'livingroom': 7351, 'twitterer': 7352, 'awaiting': 7353, 'cherry': 7354, 'canal': 735
5, 'cowboy': 7356, 'carnival': 7357, 'greedy': 7358, 'stewart': 7359, 'placements': 7360, 'charley': 7361, 'surg
ury': 7362, 'humane': 7363, 'insanity': 7364, 'pedro': 7365, 'shelby': 7366, 'prism': 7367, 'sand': 7368, 'sci':
7369, 'cheesey': 7370, 'aaawww': 7371, 'nephews': 7372, 'innocent': 7373, 'leo': 7374, 'wikipedia': 7375, 'ahaha
h': 7376, 'creativity': 7377, 'dealership': 7378, 'lok': 7379, 'meann': 7380, 'lens': 7381, 'websites': 7382, 'h
ats': 7383, 'homee': 7384, 'wrapping': 7385, 'starring': 7386, 'edward': 7387, 'sony': 7388, 'ease': 7389, 'bris
': 7390, 'stash': 7391, 'tomoz': 7392, 'trendy': 7393, 'waved': 7394, 'hired': 7395, 'monkeys': 7396, 'strict':
7397, 'fakes': 7398, 'arranged': 7399, 'rohan': 7400, 'suited': 7401, 'belt': 7402, 'rated': 7403, 'wil': 7404,
'dayweek': 7405, 'chihuahua': 7406, 'byebye': 7407, 'bklyn': 7408, 'britt': 7409, 'tty': 7410, 'hurrah': 7411, '
drained': 7412, 'glove': 7413, 'darlin': 7414, 'wiping': 7415, 'homei': 7416, 'headsup': 7417, 'palace': 7418, '
phenomenal': 7419, 'troubleshooting': 7420, 'captains': 7421, 'cod': 7422, 'seuss': 7423, '�you': 7424, 'aloe'
: 7425, 'qdoba': 7426, 'hte': 7427, 'iya': 7428, 'jg': 7429, 'insulting': 7430, 'scottish': 7431, 'omelette': 74
32, 'trivia': 7433, 'dampen': 7434, 'statue': 7435, 'hunger': 7436, 'legend': 7437, 'rehab': 7438, 'telly': 7439
, 'shipment': 7440, 'arg': 7441, 'prix': 7442, 'addict': 7443, 'democratic': 7444, 'natural': 7445, 'overseas':
7446, 'shooter': 7447, 'invest': 7448, 'tommy': 7449, 'niggas': 7450, 'marines': 7451, 'protect': 7452, 'cordon'
: 7453, 'fkn': 7454, 'abuseis': 7455, 'loic': 7456, 'sads': 7457, 'importantly': 7458, 'denny': 7459, 'countries
': 7460, 'hiss': 7461, 'terri': 7462, 'harvard': 7463, 'fiance': 7464, 'dips': 7465, 'broadcast': 7466, 'whatre'
: 7467, 'mutual': 7468, 'fate': 7469, 'anatomy': 7470, 'cvs': 7471, 'youmy': 7472, 'annoy': 7473, 'nirvana': 747
4, 'dean': 7475, 'cider': 7476, 'pooch': 7477, 'tripping': 7478, 'vacations': 7479, 'heartless': 7480, 'complex'
: 7481, 'bsc': 7482, 'accadentally': 7483, 'relieve': 7484, 'nambu': 7485, 'movietoo': 7486, 'persons': 7487, 't
ouchin': 7488, 'thabusenks': 7489, 'invitations': 7490, 'wordpress': 7491, 'newark': 7492, 'tennant': 7493, 'gir
lies': 7494, 'yearbooks': 7495, 'bolt': 7496, 'nightlife': 7497, 'noises': 7498, 'blister': 7499, 'cuuuute': 750
0, 'fuss': 7501, 'dels': 7502, 'del': 7503, 'thanxx': 7504, 'router': 7505, 'dieing': 7506, 'geoff': 7507, 'toss
ed': 7508, 'desperate': 7509, 'udon': 7510, 'rodney': 7511, 'laodicean': 7512, 'drs': 7513, 'lotsa': 7514, 'stin
t': 7515, 'tissues': 7516, 'lb': 7517, 'skull': 7518, 'figures': 7519, 'celeb': 7520, 'matilda': 7521, 'vw': 752
2, 'sep': 7523, 'cheesecakes': 7524, 'raleigh': 7525, 'gee': 7526, 'retweets': 7527, 'thursdays': 7528, 'wrapped
': 7529, 'powerpoint': 7530, 'genes': 7531, 'danger': 7532, 'slipped': 7533, 'omw': 7534, 'creams': 7535, 'repai
red': 7536, 'cups': 7537, 'itlol': 7538, 'proverbs': 7539, 'cent': 7540, 'higher': 7541, 'burr': 7542, 'cox': 75
43, 'oooooo': 7544, 'guarantee': 7545, 'reruns': 7546, 'cheapy': 7547, 'dunk': 7548, 'allianz': 7549, 'toddler':
7550, 'magners': 7551, 'ichigo': 7552, 'neuro': 7553, 'het': 7554, 'burst': 7555, 'huaaaa': 7556, 'gila': 7557,
'hummmmm': 7558, 'abs': 7559, 'lams': 7560, 'applying': 7561, 'twitterfon': 7562, 'documentation': 7563, 'lobby'
: 7564, 'illegal': 7565, 'outline': 7566, 'develop': 7567, 'earned': 7568, 'sounding': 7569, 'bon': 7570, 'hande
d': 7571, 'attractive': 7572, 'blur': 7573, 'photograph': 7574, 'liesgirlstell': 7575, 'threads': 7576, 'struggl
e': 7577, 'ritz': 7578, 'releases': 7579, 'lactose': 7580, 'tuesdays': 7581, 'wacom': 7582, 'pao': 7583, 'sixth'
: 7584, 'roscoe': 7585, 'drool': 7586, 'gauge': 7587, 'paintings': 7588, 'streamline': 7589, 'halfway': 7590, 'o
racle': 7591, 'axe': 7592, 'incase': 7593, 'cheeseburger': 7594, 'youuu': 7595, 'dodging': 7596, 'parcs': 7597,
'wd': 7598, 'kennys': 7599, 'nou': 7600, 'pipe': 7601, 'vol': 7602, 'vincent': 7603, 'heheheheh': 7604, 'chip':
7605, 'beijing': 7606, 'vision': 7607, 'greater': 7608, 'rubbing': 7609, 'hub': 7610, 'plugged': 7611, 'speakeas
y': 7612, 'benjamin': 7613, 'seating': 7614, 'shelf': 7615, 'prodigy': 7616, 'garbage': 7617, 'louis': 7618, 'ke
lli': 7619, 'fridayand': 7620, 'thy': 7621, 'tr': 7622, 'li': 7623, 'peppermint': 7624, 'patients': 7625, 'funk'
: 7626, 'caleb': 7627, 'laughs': 7628, 'mono': 7629, 'voicemail': 7630, 'unopened': 7631, 'contributors': 7632,
'coraline': 7633, 'unite': 7634, 'dreamin': 7635, 'engineer': 7636, 'blonding': 7637, 'ova': 7638, 'girlie': 763
9, 'berra': 7640, 'flashing': 7641, 'lu': 7642, 'twittersphere': 7643, 'roommates': 7644, 'amp': 7645, 'medal':
7646, 'permanently': 7647, 'predicted': 7648, 'copied': 7649, 'kp': 7650, 'spells': 7651, 'eventful': 7652, 'dix
on': 7653, 'dec': 7654, 'pricing': 7655, 'waterfall': 7656, 'wand': 7657, 'subs': 7658, 'sri': 7659, 'ble': 7660
, 'nighttt': 7661, 'pup': 7662, 'assholes': 7663, 'buffett': 7664, 'iloveyou': 7665, 'sipping': 7666, 'partyyyy'
: 7667, 'wool': 7668, 'nemo': 7669, 'rocio': 7670, 'sensible': 7671, 'toward': 7672, 'sed': 7673, 'choppers': 76
74, 'collective': 7675, 'mu': 7676, 'meter': 7677, 'beneath': 7678, 'cornerstone': 7679, 'presenting': 7680, 'sa
yang': 7681, 'officer': 7682, 'indoors': 7683, 'cps': 7684, 'tore': 7685, 'ionbased': 7686, 'ctrl': 7687, 'ourse
lves': 7688, 'schoolers': 7689, 'cass': 7690, 'property': 7691, 'harbour': 7692, 'ruled': 7693, 'soaked': 7694,
'klutz': 7695, 'fare': 7696, 'irresponsible': 7697, 'sau': 7698, 'alt': 7699, 'century': 7700, 'danica': 7701, '
reset': 7702, 'mang': 7703, 'childhood': 7704, 'hatch': 7705, 'sike': 7706, 'yaaaaaay': 7707, 'cal': 7708, 'thro
wing': 7709, 'macadamia': 7710, 'sequels': 7711, 'daddys': 7712, 'sugars': 7713, 'natie': 7714, 'machines': 7715
, 'speaker': 7716, 'finishes': 7717, 'annie': 7718, 'russian': 7719, 'malaria': 7720, 'parasites': 7721, 'soi':
7722, 'recovered': 7723, 'dynasty': 7724, 'communication': 7725, 'iwas': 7726, 'scifi': 7727, 'retriever': 7728,
'morrrning': 7729, 'waterfront': 7730, 'horrors': 7731, 'ties': 7732, 'profession': 7733, 'alison': 7734, 'stumb
le': 7735, 'wong': 7736, 'anticipation': 7737, 'offering': 7738, 'lettin': 7739, 'serial': 7740, 'thoughim': 774
1, 'gathering': 7742, 'crow': 7743, 'bluetooth': 7744, 'ladys': 7745, 'springsteen': 7746, 'gahhh': 7747, 'nth':
7748, 'alrighty': 7749, 'wayy': 7750, 'worship': 7751, 'blogtv': 7752, 'funnier': 7753, 'plague': 7754, 'rangers
': 7755, 'spew': 7756, 'styles': 7757, 'mayo': 7758, 'elj': 7759, 'bif': 7760, 'increasingly': 7761, 'muna': 776
2, 'vacay': 7763, 'owt': 7764, 'jj': 7765, 'hyped': 7766, 'regions': 7767, 'bleeding': 7768, 'gigs': 7769, 'semi
nars': 7770, 'hater': 7771, 'estimate': 7772, 'kaya': 7773, 'yan': 7774, 'monfri': 7775, 'erm': 7776, 'kickass':
7777, 'focused': 7778, 'nowww': 7779, 'shaanxi': 7780, 'wx': 7781, 'brawl': 7782, 'operating': 7783, 'cristal':
7784, 'skate': 7785, 'jamies': 7786, 'seventh': 7787, 'alpine': 7788, 'structure': 7789, 'haiku': 7790, 'charlot
te': 7791, 'bean': 7792, 'eta': 7793, 'lancaster': 7794, 'wingstop': 7795, 'hahha': 7796, 'peppers': 7797, 'cros
sfit': 7798, 'trekking': 7799, 'comming': 7800, 'analytics': 7801, 'autofill': 7802, 'ithow': 7803, 'aero': 7804
, 'mn': 7805, 'urls': 7806, 'smfh': 7807, 'bouncing': 7808, 'singles': 7809, 'jasons': 7810, 'frown': 7811, 'ins
pire': 7812, 'dayss': 7813, 'solving': 7814, 'madrid': 7815, 'poofy': 7816, 'abrams': 7817, 'adams': 7818, 'bond
': 7819, 'beery': 7820, 'forecast': 7821, 'cinemas': 7822, 'glowing': 7823, 'workthinking': 7824, 'intake': 7825
, 'charts': 7826, 'dslr': 7827, 'shh': 7828, 'vcr': 7829, 'babygirl': 7830, 'dios': 7831, 'lala': 7832, 'aparent
ly': 7833, 'sorrry': 7834, 'predicting': 7835, 'cleveland': 7836, 'manics': 7837, 'hinder': 7838, 'exited': 7839
, 'alexander': 7840, 'wossy': 7841, 'investigate': 7842, 'contain': 7843, 'relegated': 7844, 'awfully': 7845, 's
poon': 7846, 'defeated': 7847, 'polo': 7848, 'goooooood': 7849, 'geee': 7850, 'earliest': 7851, 'ibm': 7852, 'pr
inceton': 7853, 'sheffield': 7854, 'holdin': 7855, 'kansas': 7856, 'booooooo': 7857, 'jayk': 7858, 'omlette': 78
59, 'appearance': 7860, 'djing': 7861, 'worktoo': 7862, 'fiona': 7863, 'acquired': 7864, 'devices': 7865, 'bald'
: 7866, 'burp': 7867, 'poorly': 7868, 'hobby': 7869, 'oww': 7870, 'thai': 7871, 'stil': 7872, 'nugget': 7873, 'p
oke': 7874, 'folk': 7875, 'ideal': 7876, 'pulp': 7877, 'pharmacy': 7878, 'scarred': 7879, 'filter': 7880, 'fuckk
k': 7881, 'payment': 7882, 'govt': 7883, 'rents': 7884, 'sia': 7885, 'borrowing': 7886, 'gable': 7887, 'ford': 7
888, 'urbans': 7889, 'buttercup': 7890, 'emailing': 7891, 'joys': 7892, 'exercising': 7893, 'crazyi': 7894, 'blo
nde': 7895, 'heya': 7896, 'vogue': 7897, 'michele': 7898, 'causes': 7899, 'sweep': 7900, 'jip': 7901, 'turtles':
7902, 'vice': 7903, 'industrial': 7904, 'giggle': 7905, 'twinz': 7906, 'mii': 7907, 'timeline': 7908, 'musings':
7909, 'waitt': 7910, 'cheryl': 7911, 'pakistan': 7912, 'webcast': 7913, 'geneva': 7914, 'whaaaat': 7915, 'brit':
7916, 'tania': 7917, 'ulan': 7918, 'airlines': 7919, 'staring': 7920, 'ashamed': 7921, 'daisy': 7922, 'uve': 792
3, 'mcm': 7924, 'ku': 7925, 'ernie': 7926, 'increase': 7927, 'favs': 7928, 'alabama': 7929, 'scariest': 7930, 't
ribute': 7931, 'gooooooood': 7932, 'cola': 7933, 'diner': 7934, 'mentioning': 7935, 'aced': 7936, 'fondue': 7937
, 'velvet': 7938, 'movieing': 7939, 'zulu': 7940, 'pantry': 7941, 'smack': 7942, 'panel': 7943, 'pound': 7944, '
bien': 7945, 'flood': 7946, 'rollerblading': 7947, 'embarrassed': 7948, 'regardless': 7949, 'conflict': 7950, 'w
inds': 7951, 'patrick': 7952, 'erincharde': 7953, 'vegan': 7954, 'spork': 7955, 'horde': 7956, 'beef': 7957, 'ch
eddar': 7958, 'bone': 7959, 'germs': 7960, 'icurve': 7961, 'fallon': 7962, 'barbeque': 7963, 'handmade': 7964, '
thompson': 7965, 'surf': 7966, 'handsome': 7967, 'lance': 7968, 'glitch': 7969, 'chiro': 7970, 'whatcha': 7971,
'controversial': 7972, 'denied': 7973, 'visitor': 7974, 'reinstall': 7975, 'midway': 7976, 'phils': 7977, 'ignor
ant': 7978, 'smashing': 7979, 'challenging': 7980, 'profiles': 7981, 'trio': 7982, 'fgs': 7983, 'peekaboo': 7984
, 'thighs': 7985, 'twitta': 7986, 'dayyy': 7987, 'niqht': 7988, 'handz': 7989, 'switzerland': 7990, 'krispy': 79
91, 'kreme': 7992, 'doughnuts': 7993, 'crabs': 7994, 'nonmedia': 7995, 'graf': 7996, 'stormy': 7997, 'onions': 7
998, 'originally': 7999, 'elevator': 8000, 'belongs': 8001, 'wavves': 8002, 'imm': 8003, 'shouting': 8004, 'inte
l': 8005, 'maine': 8006, 'slot': 8007, 'keyword': 8008, 'shore': 8009, 'telephone': 8010, 'junejuly': 8011, 'pla
tes': 8012, 'heineken': 8013, 'abusenotabuse': 8014, 'atlanta': 8015, 'flavors': 8016, 'ops': 8017, 'una': 8018,
'discussions': 8019, 'wisconsin': 8020, 'agreement': 8021, 'robins': 8022, 'bullied': 8023, 'experiences': 8024,
'experimental': 8025, 'dcd': 8026, 'bounce': 8027, 'giv': 8028, 'parker': 8029, 'grande': 8030, 'antisocial': 80
31, 'grinning': 8032, 'unfortunatley': 8033, 'beets': 8034, 'caca': 8035, 'toro': 8036, 'ruth': 8037, 'spendin':
8038, 'retro': 8039, 'tisk': 8040, 'soso': 8041, 'campaign': 8042, 'tidy': 8043, 'ants': 8044, 'halls': 8045, 'w
restler': 8046, 'betos': 8047, 'fallin': 8048, 'essays': 8049, 'sleeep': 8050, 'scenario': 8051, 'reflux': 8052,
'nod': 8053, 'gloves': 8054, 'insist': 8055, 'confidence': 8056, 'sol': 8057, 'abusepoints': 8058, 'sofa': 8059,
'sniffles': 8060, 'craziness': 8061, 'tucking': 8062, 'pedicures': 8063, 'dyeing': 8064, 'mk': 8065, 'pluck': 80
66, 'krogers': 8067, 'hotness': 8068, 'belinda': 8069, 'erase': 8070, 'habbo': 8071, 'smacked': 8072, 'watered':
8073, 'lettuce': 8074, 'kickoff': 8075, 'barry': 8076, 'chickfila': 8077, 'lar': 8078, 'celebration': 8079, 'arr
ives': 8080, 'knotts': 8081, 'overwhelming': 8082, 'outing': 8083, 'frenz': 8084, 'seein': 8085, 'tooooo': 8086,
'programs': 8087, 'whatnot': 8088, 'ame': 8089, 'southland': 8090, 'sarcastic': 8091, 'tuh': 8092, 'wher': 8093,
'zachary': 8094, 'quinto': 8095, 'cougar': 8096, 'corporate': 8097, 'chalet': 8098, 'preprom': 8099, 'sfo': 8100
, 'jealousi': 8101, 'healed': 8102, 'hurray': 8103, 'crutches': 8104, 'dolphin': 8105, 'weho': 8106, 'amazingwel
l': 8107, 'anh': 8108, 'scenie': 8109, 'workload': 8110, 'ina': 8111, 'vega': 8112, 'stamina': 8113, 'iz': 8114,
'oficially': 8115, 'smoothly': 8116, 'informed': 8117, 'yesh': 8118, 'sweeney': 8119, 'thudabuse': 8120, 'theate
rs': 8121, 'grrrrrrr': 8122, 'lacey': 8123, 'sweater': 8124, 'abroad': 8125, 'niamh': 8126, 'od': 8127, 'dl': 81
28, 'expansion': 8129, 'propped': 8130, 'trader': 8131, 'skipping': 8132, 'barley': 8133, 'needless': 8134, 'plu
gs': 8135, 'morgans': 8136, 'helen': 8137, 'shocking': 8138, 'drain': 8139, 'challenged': 8140, 'pumpkin': 8141,
'upsetting': 8142, 'cringe': 8143, 'knocking': 8144, 'excursion': 8145, 'audioboo': 8146, 'markets': 8147, 'enco
re': 8148, 'journalists': 8149, 'jo': 8150, 'nao': 8151, 'bloggers': 8152, 'poked': 8153, 'pointy': 8154, 'skye'
: 8155, 'offices': 8156, 'cuddling': 8157, 'imovie': 8158, 'totalled': 8159, 'formulas': 8160, 'paypal': 8161, '
buuuut': 8162, 'nudge': 8163, 'sup': 8164, 'housework': 8165, 'paisley': 8166, 'sausages': 8167, 'winners': 8168
, 'pacman': 8169, 'mayer': 8170, 'carl': 8171, 'eachother': 8172, 'flavor': 8173, 'fuzzy': 8174, 'newborns': 817
5, 'hottest': 8176, 'proposals': 8177, 'sparkly': 8178, 'ym': 8179, 'tivo': 8180, 'sorrows': 8181, 'dayssss': 81
82, 'booking': 8183, 'highest': 8184, 'trial': 8185, 'myy': 8186, 'shan': 8187, 'flooded': 8188, 'abusejust': 81
89, 'fiddle': 8190, 'uff': 8191, 'blackjack': 8192, 'wockeez': 8193, 'ipa': 8194, 'grabe': 8195, 'kaloka': 8196,
'fender': 8197, 'pairs': 8198, 'ahoy': 8199, 'abusecryabuse': 8200, 'settled': 8201, 'explains': 8202, 'pastors'
: 8203, 'limits': 8204, 'void': 8205, 'tow': 8206, 'teaches': 8207, 'aots': 8208, 'sunrise': 8209, 'don�t': 82
10, 'medical': 8211, 'misunderstood': 8212, 'cocoa': 8213, 'horrific': 8214, 'restart': 8215, 'summit': 8216, 'g
own': 8217, 'addon': 8218, 'productivity': 8219, 'cubes': 8220, 'icons': 8221, 'themes': 8222, 'faceabuse': 8223
, 'prior': 8224, 'recap': 8225, 'walkin': 8226, 'concern': 8227, 'comon': 8228, 'foto': 8229, 'cozy': 8230, 'bue
nos': 8231, 'dias': 8232, 'pp': 8233, 'underscore': 8234, 'ky': 8235, 'rifle': 8236, 'rowing': 8237, 'joseph': 8
238, 'bootcamp': 8239, 'knoxville': 8240, 'scale': 8241, 'fought': 8242, 'booooo': 8243, 'moncton': 8244, 'omggg
g': 8245, 'feeds': 8246, 'archie': 8247, 'veronica': 8248, 'misss': 8249, 'thingie': 8250, 'western': 8251, 'cla
udia': 8252, 'wiser': 8253, 'taipei': 8254, 'hopeless': 8255, 'accidently': 8256, 'whatev': 8257, 'ki': 8258, 'c
limbs': 8259, 'vacuumed': 8260, 'sleepover': 8261, 'fiesta': 8262, 'inclined': 8263, 'appearing': 8264, 'liberty
': 8265, 'bloom': 8266, 'decreasing': 8267, 'razer': 8268, 'blowout': 8269, 'contacting': 8270, 'okayy': 8271, '
tipping': 8272, 'crispy': 8273, 'thr': 8274, 'messy': 8275, 'snuggles': 8276, 'claude': 8277, 'anyones': 8278, '
infact': 8279, 'cupboard': 8280, 'maaan': 8281, 'chal': 8282, 'adverts': 8283, 'sammy': 8284, 'spa': 8285, 'gran
dkids': 8286, 'crs': 8287, 'whyyyy': 8288, 'naman': 8289, 'converting': 8290, 'mb': 8291, 'jodi': 8292, 'silverl
ight': 8293, 'multi': 8294, 'prevent': 8295, 'spark': 8296, 'flooding': 8297, 'jammies': 8298, 'jenkins': 8299,
'mcmuffin': 8300, 'depending': 8301, 'niley': 8302, 'suprisingly': 8303, 'philosophy': 8304, 'loooong': 8305, 't
ransition': 8306, 'horribly': 8307, 'doubtful': 8308, 'iplayer': 8309, 'jelous': 8310, 'invented': 8311, 'trials
': 8312, 'welcomed': 8313, 'scares': 8314, 'minee': 8315, 'integrity': 8316, 'appeared': 8317, 'jaunty': 8318, '
lunches': 8319, 'biased': 8320, 'instrument': 8321, 'curling': 8322, 'casting': 8323, 'discrimination': 8324, 'c
hannels': 8325, 'andd': 8326, 'straightener': 8327, 'rented': 8328, 'yummm': 8329, 'yday': 8330, 'hayles': 8331,
'tasks': 8332, 'illness': 8333, 'chop': 8334, 'abc': 8335, 'trumps': 8336, 'fevers': 8337, 'hardware': 8338, 'un
ity': 8339, 'stalking': 8340, 'eddy': 8341, 'introducing': 8342, 'hosp': 8343, 'explosion': 8344, 'cna': 8345, '
asus': 8346, 'grans': 8347, 'triumph': 8348, 'twitterr': 8349, 'hayward': 8350, 'janes': 8351, 'wich': 8352, 'ew
ww': 8353, 'sista': 8354, 'lahiran': 8355, 'crazyangel': 8356, 'kgs': 8357, 'daisies': 8358, 'youngster': 8359,
'overload': 8360, 'juga': 8361, 'gently': 8362, 'bale': 8363, 'rubber': 8364, 'bh': 8365, 'thankies': 8366, 'pro
mises': 8367, 'stevie': 8368, 'caramel': 8369, 'giants': 8370, 'raises': 8371, 'jar': 8372, 'chase': 8373, 'glen
': 8374, 'directions': 8375, 'spy': 8376, 'inhabit': 8377, 'reunion': 8378, 'fubumvc': 8379, 'eventually': 8380,
'gomez': 8381, 'annapolis': 8382, 'shields': 8383, 'swineflu': 8384, 'winding': 8385, 'kiwi': 8386, 'ttfn': 8387
, 'eyebrows': 8388, 'spielburg': 8389, 'tita': 8390, 'require': 8391, 'donation': 8392, 'protection': 8393, 'sky
ping': 8394, 'units': 8395, 'cobras': 8396, 'repeatedly': 8397, 'rugby': 8398, 'gasp': 8399, 'rights': 8400, 'mo
zart': 8401, 'negativity': 8402, 'animating': 8403, 'applaud': 8404, 'emailed': 8405, 'willy': 8406, 'soooim': 8
407, 'orthodontist': 8408, 'commercials': 8409, 'hahai': 8410, 'companion': 8411, 'graph': 8412, 'gal': 8413, 'd
eciding': 8414, 'whatsoever': 8415, 'suspicious': 8416, 'claims': 8417, 'mock': 8418, 'sumthin': 8419, 'punching
': 8420, 'minimal': 8421, 'trainer': 8422, 'bloomington': 8423, 'org': 8424, 'studyin': 8425, 'qot': 8426, 'toma
toes': 8427, 'goto': 8428, 'melting': 8429, 'university': 8430, 'cautious': 8431, 'bonnie': 8432, 'beyonce': 843
3, 'tested': 8434, 'registration': 8435, 'drat': 8436, 'gain': 8437, 'sex': 8438, 'disc': 8439, 'blipfm': 8440,
'nowi': 8441, 'carlton': 8442, 'frankly': 8443, 'didgeridoo': 8444, 'spilling': 8445, 'pause': 8446, 'leonardo':
8447, 'traitor': 8448, 'adem': 8449, 'houses': 8450, 'rash': 8451, 'nigh': 8452, 'salute': 8453, 'uncool': 8454,
'tutoring': 8455, 'steroids': 8456, 'uptown': 8457, 'awesomness': 8458, 'bottoms': 8459, 'engagement': 8460, 'pa
le': 8461, 'trusted': 8462, 'funnnn': 8463, 'toobut': 8464, 'dodger': 8465, 'sucking': 8466, 'sentences': 8467,
'hairstylebut': 8468, 'wealth': 8469, 'knowww': 8470, 'kiddies': 8471, 'sorries': 8472, 'breakie': 8473, 'pembro
ke': 8474, 'kissabuse': 8475, 'mailed': 8476, 'nw': 8477, 'canterbury': 8478, 'snickers': 8479, 'marshall': 8480
, 'glory': 8481, 'myst': 8482, 'hilton': 8483, 'grumbles': 8484, 'lamer': 8485, 'poia': 8486, 'coupla': 8487, 'w
hove': 8488, 'dubbed': 8489, 'tourist': 8490, 'sams': 8491, 'explorer': 8492, 'urban': 8493, 'nicholas': 8494, '
perky': 8495, 'fabuse': 8496, 'feline': 8497, 'sadder': 8498, 'braces': 8499, 'sacred': 8500, 'merch': 8501, 'sh
oulders': 8502, 'tto': 8503, 'tafe': 8504, 'notebooks': 8505, 'irregularly': 8506, 'halfassedly': 8507, 'restric
tions': 8508, 'ard': 8509, 'dyed': 8510, 'eurovision': 8511, 'pout': 8512, 'compute': 8513, 'kane': 8514, 'scion
': 8515, 'claire': 8516, 'wateva': 8517, 'peg': 8518, 'cuter': 8519, 'pigeon': 8520, 'rear': 8521, 'bandwagon':
8522, 'billion': 8523, 'blazing': 8524, 'sabbeth': 8525, 'arghhh': 8526, 'loudly': 8527, 'defend': 8528, 'puffy'
: 8529, 'bump': 8530, 'asks': 8531, 'justintv': 8532, 'titanic': 8533, 'hibernate': 8534, 'unhealthy': 8535, 'jd
': 8536, 'authors': 8537, 'tu': 8538, 'wbu': 8539, 'devs': 8540, 'pour': 8541, 'johnson': 8542, 'xoxoxo': 8543,
'threee': 8544, 'daw': 8545, 'showering': 8546, 'humans': 8547, 'mis': 8548, 'backk': 8549, 'towels': 8550, 'mor
ningi': 8551, 'soonish': 8552, 'lenny': 8553, 'czech': 8554, 'republic': 8555, 'bbc': 8556, 'dennys': 8557, 'car
r': 8558, 'bacardi': 8559, 'plaster': 8560, 'enought': 8561, 'champions': 8562, 'elizabeth': 8563, 'fourteen': 8
564, 'klemm': 8565, 'robbed': 8566, 'abuseweepsabuse': 8567, 'transit': 8568, 'keyed': 8569, 'shirtless': 8570,
'inlove': 8571, 'butts': 8572, 'tatami': 8573, 'custard': 8574, 'luff': 8575, 'spencer': 8576, 'mileys': 8577, '
prawns': 8578, 'gh': 8579, 'define': 8580, 'dreamed': 8581, 'adults': 8582, 'roseanne': 8583, 'slater': 8584, 'k
aty': 8585, 'assumptions': 8586, 'scenes': 8587, 'wieters': 8588, 'chart': 8589, 'dunn': 8590, 'announcement': 8
591, 'nonlong': 8592, 'construction': 8593, 'jill': 8594, 'vhs': 8595, 'passion': 8596, 'deodorant': 8597, 'hiii
iii': 8598, 'twee': 8599, 'forbidden': 8600, 'alejandra': 8601, 'pose': 8602, 'finna': 8603, 'guten': 8604, 'mor
gen': 8605, 'pebbles': 8606, 'sane': 8607, 'lineup': 8608, 'nowjust': 8609, 'deposits': 8610, 'dns': 8611, 'prop
': 8612, 'blocking': 8613, 'ic': 8614, 'colours': 8615, 'differnt': 8616, 'lovingly': 8617, 'knowim': 8618, 'mon
sters': 8619, 'reyes': 8620, 'superb': 8621, 'split': 8622, 'duties': 8623, 'rehearsing': 8624, 'looove': 8625,
'cornwall': 8626, 'herebut': 8627, 'tapeworm': 8628, 'abusewaves': 8629, 'sh': 8630, 'colossal': 8631, 'twiiter'
: 8632, 'ab': 8633, 'anddd': 8634, 'vados': 8635, 'walmartcom': 8636, 'resort': 8637, 'readyyy': 8638, 'leigh':
8639, 'hallway': 8640, 'wounds': 8641, 'birthdayy': 8642, 'drizzle': 8643, 'nu': 8644, 'mai': 8645, 'shaved': 86
46, 'drummers': 8647, 'dazed': 8648, 'wan': 8649, 'declined': 8650, 'bham': 8651, 'understanding': 8652, 'der':
8653, 'goooooddd': 8654, 'equivalent': 8655, 'nearest': 8656, 'woody': 8657, 'djs': 8658, 'meme': 8659, 'semi':
8660, 'brownies': 8661, 'drivein': 8662, 'raft': 8663, 'tcot': 8664, 'rick': 8665, 'lunchtime': 8666, 'yaaaaaaay
': 8667, 'yippeee': 8668, 'abuzz': 8669, 'nai': 8670, 'impersonal': 8671, 'swamped': 8672, 'aaaw': 8673, 'gmorni
ng': 8674, 'juniors': 8675, 'bruises': 8676, 'suss': 8677, 'clemson': 8678, 'abuseing': 8679, 'fisch': 8680, 'sa
rcasm': 8681, 'ttyl': 8682, 'register': 8683, 'clapton': 8684, 'winwood': 8685, 'ouchie': 8686, 'sophomore': 868
7, 'joss': 8688, 'rsmv': 8689, 'drawn': 8690, 'worksheet': 8691, 'fairness': 8692, 'government': 8693, 'loveeeee
': 8694, 'sketchy': 8695, 'compensate': 8696, 'larry': 8697, 'stripper': 8698, 'snuggled': 8699, 'duvet': 8700,
'baltimore': 8701, 'feeder': 8702, 'thistle': 8703, 'balancing': 8704, 'fingernails': 8705, 'tabs': 8706, 'vpn':
8707, 'wikileaks': 8708, 'mulch': 8709, 'itagg': 8710, 'virginity': 8711, 'grammar': 8712, 'broncos': 8713, 'fu'
: 8714, 'firmly': 8715, 'peak': 8716, 'spirits': 8717, 'graders': 8718, 'welts': 8719, 'cricket': 8720, 'tablets
': 8721, 'derby': 8722, 'leaders': 8723, 'smelling': 8724, 'travesty': 8725, 'setup': 8726, 'chowder': 8727, 'an
yday': 8728, 'looool': 8729, 'rejects': 8730, 'lbs': 8731, 'economics': 8732, 'offically': 8733, 'whining': 8734
, 'dumped': 8735, 'balcony': 8736, 'unf': 8737, 'offend': 8738, 'racism': 8739, 'addin': 8740, 'gfs': 8741, 'kob
e': 8742, 'specials': 8743, 'warner': 8744, 'naty': 8745, 'jams': 8746, 'katies': 8747, 'distract': 8748, 'compu
ting': 8749, 'btches': 8750, 'jalan': 8751, 'notices': 8752, 'ouchies': 8753, 'destroy': 8754, 'creeper': 8755,
'rewrite': 8756, 'unreal': 8757, 'provides': 8758, 'cindy': 8759, 'canberra': 8760, 'stripey': 8761, 'mei': 8762
, 'chandler': 8763, 'samee': 8764, 'freee': 8765, 'madres': 8766, 'greta': 8767, 'heheee': 8768, 'permit': 8769,
'looooong': 8770, 'haa': 8771, 'mms': 8772, 'calories': 8773, 'slumdog': 8774, 'midnite': 8775, 'confessional':
8776, 'marco': 8777, 'afternoons': 8778, 'publicly': 8779, 'types': 8780, 'banking': 8781, 'becky': 8782, 'conti
nually': 8783, 'freeway': 8784, 'beck': 8785, 'cheerleading': 8786, 'adobe': 8787, 'downs': 8788, 'mysterious':
8789, 'darts': 8790, 'http': 8791, 'grumble': 8792, 'steveo': 8793, 'mv': 8794, 'kelley': 8795, 'cambodian': 879
6, 'lure': 8797, 'cater': 8798, 'millionaire': 8799, 'interns': 8800, 'fade': 8801, 'righ': 8802, 'evryone': 880
3, 'np': 8804, 'payday': 8805, 'cooperate': 8806, 'technique': 8807, 'lonley': 8808, 'abuseallabuse': 8809, 'bla
hh': 8810, 'wgn': 8811, 'limb': 8812, 'initial': 8813, 'oneself': 8814, 'nyquil': 8815, 'namaskar': 8816, 'marat
hi': 8817, 'whistle': 8818, 'mikes': 8819, 'murray': 8820, 'toasting': 8821, 'napa': 8822, 'intern': 8823, 'lean
': 8824, 'bubba': 8825, 'yeaaa': 8826, 'desktops': 8827, 'cheat': 8828, 'terrified': 8829, 'asda': 8830, 'ericka
': 8831, 'misplaced': 8832, 'redyed': 8833, 'acoustic': 8834, 'ummmnnn': 8835, 'kilkenny': 8836, 'muster': 8837,
'ver': 8838, 'tortilla': 8839, 'wardrobe': 8840, 'gymnastics': 8841, 'leon': 8842, 'sunniest': 8843, 'truffles':
8844, 'wires': 8845, 'dada': 8846, 'coolio': 8847, 'shelter': 8848, 'brag': 8849, 'ere': 8850, 'nita': 8851, 'ci
sco': 8852, 'loaders': 8853, 'asians': 8854, 'callin': 8855, 'scum': 8856, 'tiredd': 8857, 'endometriosis': 8858
, 'oy': 8859, 'roo': 8860, 'hellotxt': 8861, 'shaky': 8862, 'pine': 8863, 'imput': 8864, 'permission': 8865, 'wh
ales': 8866, 'apparantly': 8867, 'activities': 8868, 'shizzle': 8869, 'heartbreak': 8870, 'meow': 8871, 'rotatio
n': 8872, 'april': 8873, 'humma': 8874, 'racists': 8875, 'betta': 8876, 'sucksss': 8877, 'prototype': 8878, 'utt
er': 8879, 'tourney': 8880, 'limo': 8881, 'yarn': 8882, 'bathing': 8883, 'humbug': 8884, 'depresses': 8885, 'eth
ics': 8886, 'conf': 8887, 'progressive': 8888, 'effect': 8889, 'milano': 8890, 'divine': 8891, 'champion': 8892,
'gems': 8893, 'timberlakes': 8894, 'turkey': 8895, 'glitter': 8896, 'unholy': 8897, 'opens': 8898, 'csi': 8899,
'oui': 8900, 'harris': 8901, 'lookout': 8902, 'gears': 8903, 'gilbert': 8904, 'hysterical': 8905, 'papas': 8906,
'watson': 8907, 'landlord': 8908, 'rosemary': 8909, 'stinging': 8910, 'npr': 8911, 'waffles': 8912, 'strategic':
8913, 'regal': 8914, 'alyssa': 8915, 'claws': 8916, 'decorated': 8917, 'lmfaoooo': 8918, 'mor': 8919, 'guns': 89
20, 'candle': 8921, 'doom': 8922, 'meeeeeeee': 8923, 'dawg': 8924, 'kl': 8925, 'fruity': 8926, 'unread': 8927, '
yeeeeah': 8928, 'bastos': 8929, 'lapit': 8930, 'lazing': 8931, 'desert': 8932, 'yawn': 8933, 'scratches': 8934,
'hometown': 8935, 'thames': 8936, 'lane': 8937, 'tryed': 8938, 'swallow': 8939, 'jaycees': 8940, 'adriana': 8941
, 'forcast': 8942, 'eu': 8943, 'mighty': 8944, 'pwns': 8945, 'firewire': 8946, 'aboard': 8947, 'bookmarks': 8948
, 'attract': 8949, 'ye': 8950, 'apathetic': 8951, 'arrest': 8952, 'fallout': 8953, 'reboot': 8954, 'halloween':
8955, 'explicitly': 8956, 'shed': 8957, 'cody': 8958, 'linked': 8959, 'welcoming': 8960, 'movielolwhat': 8961, '
lavish': 8962, 'aitn': 8963, 'starburst': 8964, 'hobos': 8965, 'tacos': 8966, 'leavealec': 8967, 'volterra': 896
8, 'gluttony': 8969, 'feening': 8970, 'cigs': 8971, 'soonnnnnn': 8972, 'andzi': 8973, 'ryaaaaaaaaaaaaan': 8974,
'renae': 8975, 'abducted': 8976, 'flos': 8977, 'displayed': 8978, 'alotment': 8979, 'discos': 8980, 'murders': 8
981, 'ruleaz': 8982, 'zic': 8983, 'nosely': 8984, 'finaljust': 8985, 'xmind': 8986, 'adoreiii': 8987, 'peoplemys
elf': 8988, 'mtfbwy': 8989, 'tablejukebox': 8990, 'grouch': 8991, 'shannen': 8992, 'susans': 8993, 'policies': 8
994, 'upshot': 8995, 'ummwhy': 8996, 'twitterchallenged': 8997, 'emailmailing': 8998, 'ambulance': 8999, 'alonen
': 9000, 'relise': 9001, 'joshua': 9002, 'warms': 9003, 'prisnor': 9004, 'cookoutofthecentury': 9005, 'aircondit
ioner': 9006, 'trudys': 9007, 'burnetthe': 9008, 'broccolli': 9009, 'veggies': 9010, 'statistic': 9011, 'bitcros
sing': 9012, 'moomy': 9013, 'botcon': 9014, 'buwieser': 9015, 'suckswish': 9016, 'carries': 9017, 'tiredlolda':
9018, 'hooks': 9019, 'transgress': 9020, 'metre': 9021, 'toaster': 9022, 'strudlesp': 9023, 'snore': 9024, 'duck
ed': 9025, 'sais': 9026, 'excist': 9027, 'doneyea': 9028, 'guyhes': 9029, 'renouncing': 9030, 'campp': 9031, 'in
vestigating': 9032, 'fuccin': 9033, 'blocc': 9034, 'cantazaro': 9035, 'calabria': 9036, 'kirkland': 9037, 'launc
hyerboat': 9038, 'motherland': 9039, 'caro': 9040, 'headway': 9041, 'itexa': 9042, 'splash': 9043, 'coppinger':
9044, 'photobucket': 9045, 'cuteset': 9046, 'looooooove': 9047, 'colleen': 9048, 'midget': 9049, 'khyy': 9050, '
jmichelle': 9051, 'microplaza': 9052, 'hust': 9053, 'rotton': 9054, 'phenomenonall': 9055, 'superbad': 9056, 'th
ereoyy': 9057, 'geas': 9058, 'challenger': 9059, 'sciifi': 9060, 'jz': 9061, 'resonate': 9062, 'libby': 9063, 'f
ussy': 9064, 'recite': 9065, 'itlesson': 9066, 'condom': 9067, 'imagining': 9068, 'wees': 9069, 'balistic': 9070
, 'dongggg': 9071, 'blighty': 9072, 'playdate': 9073, 'vans': 9074, 'transmission': 9075, 'comeeee': 9076, 'shan
nii': 9077, 'systemwide': 9078, 'spellchecker': 9079, 'unhelpful': 9080, 'elbowarm': 9081, 'compiled': 9082, 're
telling': 9083, 'saskatoon': 9084, 'weepy': 9085, 'obnoxious': 9086, 'separates': 9087, 'robber': 9088, 'amateur
': 9089, 'tossing': 9090, 'goodgirl': 9091, 'reactivation': 9092, 'shoplifting': 9093, 'friendship': 9094, 'carr
ied': 9095, 'jerms': 9096, 'hellooo': 9097, 'amarula': 9098, 'programmes': 9099, 'bayi': 9100, 'duetter': 9101,
'ouse': 9102, 'whaaaaaaaaaat': 9103, 'broompark': 9104, 'ceremonygloomy': 9105, 'mulching': 9106, 'courtney': 91
07, 'superfresh': 9108, 'somebodies': 9109, 'beshie': 9110, 'grovelled': 9111, 'eally': 9112, 'everaldo': 9113,
'unitymode': 9114, 'accdentt': 9115, 'bead': 9116, 'crumb': 9117, 'navigation': 9118, 'studios': 9119, 'sprite':
9120, 'trekone': 9121, 'bombtastic': 9122, 'cho': 9123, 'deucie': 9124, 'pankraz': 9125, 'monts': 9126, 'pairung
': 9127, 'abusefingers': 9128, 'crossedabuse': 9129, 'kitchenand': 9130, 'itmy': 9131, 'ary': 9132, 'aaaww': 913
3, 'courseeee': 9134, 'uqh': 9135, 'supposedd': 9136, 'wakke': 9137, 'upp': 9138, 'earlyy': 9139, 'cantt': 9140,
'sleepp': 9141, 'omq': 9142, 'tomorroww': 9143, 'iss': 9144, 'listfind': 9145, 'logans': 9146, 'twnzfinest': 914
7, 'babyim': 9148, 'gametrying': 9149, 'crythe': 9150, 'muchi': 9151, 'himcant': 9152, 'breakingg': 9153, 'masse
use': 9154, 'giveaways': 9155, 'officejet': 9156, 'fax': 9157, 'eggos': 9158, 'synthetic': 9159, 'sustitute': 91
60, 'fabusekin': 9161, 'vfactory': 9162, 'garrit': 9163, 'participating': 9164, 'wokking': 9165, 'houri': 9166,
'yeayyy': 9167, 'omedetou': 9168, 'hotttie': 9169, 'poooh': 9170, 'sounda': 9171, 'hh': 9172, 'onoff': 9173, 'ho
tdogs': 9174, 'niceeeee': 9175, 'soulmate': 9176, 'conflicting': 9177, 'greatt': 9178, 'ollmann': 9179, 'felix':
9180, 'kayy': 9181, 'fabian': 9182, 'shuuut': 9183, 'backgroung': 9184, 'ppicture': 9185, 'yuuup': 9186, 'thisit
s': 9187, 'snowball': 9188, 'grubb': 9189, 'stoooopit': 9190, 'stooopit': 9191, 'rendition': 9192, 'feds': 9193,
'hounding': 9194, 'dodged': 9195, 'mooorrreeee': 9196, 'havn�t': 9197, 'beav': 9198, 'dubstep': 9199, 'stokedn
ot': 9200, 'quirky': 9201, 'concerto': 9202, 'haii': 9203, 'contracts': 9204, 'nythen': 9205, 'washers': 9206, '
upfeelin': 9207, 'leavepriciness': 9208, 'panhandlers': 9209, 'diy': 9210, 'dexter': 9211, 'chunky': 9212, 'caus
ee': 9213, 'okami': 9214, 'hampa': 9215, 'hatiku': 9216, 'affirmation': 9217, 'florence': 9218, 'likable': 9219,
'hahahahahahaha': 9220, 'manicure': 9221, 'oftwtr': 9222, 'basil': 9223, 'telegraph': 9224, 'thght': 9225, 'work
d': 9226, 'spout': 9227, 'absolute': 9228, 'shiraz': 9229, 'antibahai': 9230, 'centernot': 9231, 'mosque': 9232,
'campaignsadly': 9233, 'wr': 9234, 'zahedan': 9235, 'hsbc': 9236, 'apy': 9237, 'underneath': 9238, 'inshaaallah'
: 9239, 'equation': 9240, 'pleaase': 9241, 'stephane': 9242, 'shuting': 9243, 'neverending': 9244, 'babbby': 924
5, 'weee': 9246, 'shawna': 9247, 'damon': 9248, 'cade': 9249, 'cutewish': 9250, 'thereive': 9251, 'diegoooooooo'
: 9252, 'dollies': 9253, 'opps': 9254, 'nott': 9255, 'aoki': 9256, 'seesmic': 9257, 'indiagovt': 9258, 'rapes':
9259, 'quiteheavenly': 9260, 'rroberts': 9261, 'stomped': 9262, 'hokey': 9263, 'cokeu': 9264, 'aggressive': 9265
, 'slovakian': 9266, 'butits': 9267, 'friiiiiday': 9268, 'latvian': 9269, 'beaurocracy': 9270, 'nonresident': 92
71, 'braille': 9272, 'farsi': 9273, 'egyptian': 9274, 'wowza': 9275, 'ysj': 9276, 'tiehahaha': 9277, 'prayin': 9
278, 'welly': 9279, 'driveoh': 9280, 'maintain': 9281, 'atticus': 9282, 'mysore': 9283, 'pigsswines': 9284, 'omm
g': 9285, 'gurll': 9286, 'stressfulbeen': 9287, 'yesssssssssss': 9288, 'shinningat': 9289, 'pimms': 9290, 'reloc
ate': 9291, 'maggie': 9292, 'moos': 9293, 'galaxy': 9294, 'loldon': 9295, 'seriousits': 9296, 'nx': 9297, 'uktv'
: 9298, 'tomro': 9299, 'bestriding': 9300, 'offget': 9301, 'nanawish': 9302, 'beckyyy': 9303, 'waydont': 9304, '
mrb': 9305, 'wrng': 9306, 'footage': 9307, 'scarededededed': 9308, 'lingering': 9309, 'hapee': 9310, 'badu': 931
1, 'stag': 9312, 'dances': 9313, 'puzzled': 9314, 'pinpoint': 9315, 'expecto': 9316, 'patronum': 9317, 'calll':
9318, 'luvvie': 9319, 'tartan': 9320, 'castone': 9321, 'ipt': 9322, 'trackball': 9323, 'rsi': 9324, 'chattin': 9
325, 'replicants': 9326, 'dji': 9327, 'duo': 9328, 'heartedly': 9329, 'copilot': 9330, 'burnin': 9331, 'thanksdo
': 9332, 'showroom': 9333, 'chk': 9334, 'lamps': 9335, 'contents': 9336, 'interest': 9337, 'ankit': 9338, 'parlo
ur': 9339, 'hokeypokeybandra': 9340, 'sleeprestless': 9341, 'adidas': 9342, 'denyer': 9343, 'xoxoxoxoxoxo': 9344
, 'recycling': 9345, 'hooky': 9346, 'quakes': 9347, 'pkuers': 9348, 'leukemia': 9349, 'pennsylvania': 9350, 'umm
nope': 9351, 'anymoree': 9352, 'clint': 9353, 'newly': 9354, 'minted': 9355, 'plural': 9356, 'aliveim': 9357, 'd
oneto': 9358, 'todat': 9359, 'stancethis': 9360, 'humidity': 9361, 'meltingaway': 9362, 'ded': 9363, 'sunstroke'
: 9364, 'robs': 9365, 'flicks': 9366, 'breannarose': 9367, 'fuuuuuuck': 9368, 'youuuu': 9369, 'reportdone': 9370
, 'calgary': 9371, 'mindless': 9372, 'walwal': 9373, 'ange': 9374, 'restget': 9375, 'tory': 9376, 'watty': 9377,
'westcott': 9378, 'apollo': 9379, 'au': 9380, 'ttc': 9381, 'mamaagain': 9382, 'helloim': 9383, 'andim': 9384, 'a
si': 9385, 'friendsi': 9386, 'inadequateineedhelp': 9387, 'limpingso': 9388, 'vids�': 9389, 'backbeen': 9390,
'pervs': 9391, 'shifter': 9392, 'hddi': 9393, 'benchmarked': 9394, 'ftr': 9395, 'dramatic': 9396, 'odour': 9397,
'piriton': 9398, 'purifier': 9399, 'awoke': 9400, 'emulsioning': 9401, 'sacked': 9402, 'yacht': 9403, 'steamed':
9404, 'thooo': 9405, 'comeeeeee': 9406, 'alryt': 9407, 'tmoro': 9408, 'sud': 9409, 'sumin': 9410, 'aen': 9411, '
sleeves': 9412, 'nowill': 9413, 'teen': 9414, 'muggy': 9415, 'awessomee': 9416, 'hurrr': 9417, 'orr': 9418, 'alk
ie': 9419, 'foodtour': 9420, 'yeaaah': 9421, 'rome': 9422, 'ceasar': 9423, 'unpleasant': 9424, 'wnlaws': 9425, '
statements': 9426, 'cryyy': 9427, 'thiswash': 9428, 'awestruck': 9429, 'michi': 9430, 'moma': 9431, 'sicko': 943
2, 'digusted': 9433, 'piecing': 9434, 'boeing': 9435, 'huntington': 9436, 'golfer': 9437, 'catches': 9438, 'regi
onal': 9439, 'luvv': 9440, 'allegra': 9441, 'flonase': 9442, 'steroid': 9443, 'inhaler': 9444, 'allergy': 9445,
'tweete': 9446, 'farrah': 9447, 'lovethis': 9448, 'cuute': 9449, 'socksys': 9450, 'plucky': 9451, 'caspars': 945
2, 'seeking': 9453, 'ethnicity': 9454, 'abuseduecesabuse': 9455, 'givee': 9456, 'schuhmacher': 9457, 'smackdowne
cw': 9458, 'exodus': 9459, 'wowthanks': 9460, 'palawan': 9461, 'nigt': 9462, 'nonwww': 9463, 'aweesome': 9464, '
musashis': 9465, 'rep': 9466, 'kitaro': 9467, 'dentention': 9468, 'dwell': 9469, 'supportive': 9470, 'darnit': 9
471, 'interwebs': 9472, 'herdman': 9473, 'middleclick': 9474, 'schoolwork': 9475, 'h�rlich': 9476, 'dared': 94
77, 'riah': 9478, 'brendon': 9479, 'loretta': 9480, 'pracc': 9481, 'bestttt': 9482, 'facehunter': 9483, 'represe
ntation': 9484, 'swedes': 9485, 'wrath': 9486, 'ashes': 9487, 'catnip': 9488, 'endangered': 9489, 'rigby': 9490,
'nhn': 9491, 'ch': 9492, 'b�': 9493, 'v�o': 9494, 'khon': 9495, 'funalthough': 9496, 'unhooking': 9497, 'mar
athons': 9498, 'callstxtfb': 9499, 'worriedi': 9500, 'muchbut': 9501, 'lamentablemente': 9502, 'jrztwitterlunch'
: 9503, 'decemberists': 9504, 'mainland': 9505, 'representatives': 9506, 'adt': 9507, 'princelples': 9508, 'what
z': 9509, 'waaaaaaaaaah': 9510, 'hermits': 9511, 'flourescents': 9512, 'facepeely': 9513, 'hideous': 9514, 'dino
s': 9515, 'wasstraat': 9516, 'mcflurry': 9517, 'aaaaahhhh': 9518, 'forked': 9519, 'workfinally': 9520, 'pointsan
a': 9521, 'jurong': 9522, 'pedals': 9523, 'nepal': 9524, 'declaring': 9525, 'resign': 9526, 'resigning': 9527, '
reeeejuvinated': 9528, 'tuition': 9529, 'jan': 9530, 'recomended': 9531, 'gday': 9532, 'fred': 9533, 'claussuch'
: 9534, 'oabuseo': 9535, 'stumbling': 9536, 'deathfic': 9537, 'yolanda': 9538, 'tripoly': 9539, 'insteadi': 9540
, 'lameness': 9541, 'itmay': 9542, 'cc�s': 9543, 'premiers': 9544, 'tourdeus': 9545, 'ykyat': 9546, 'bmac': 95
47, 'sumfink': 9548, 'owwwwwwwwwwwww': 9549, 'facking': 9550, 'teletubbies': 9551, 'upssher': 9552, 'writen': 95
53, 'chesca': 9554, 'meowing': 9555, 'musiciansartists': 9556, 'woodstock': 9557, 'frined': 9558, 'fila': 9559,
'connector': 9560, 'tripsaving': 9561, 'realllllllly': 9562, 'llike': 9563, 'messaged': 9564, 'yehits': 9565, 'l
upus': 9566, 'grouping': 9567, 'participants': 9568, 'giraffe': 9569, 'vengaboys': 9570, 'zane': 9571, 'lowe': 9
572, 'gladiators': 9573, 'breakim': 9574, 'messes': 9575, 'ricks': 9576, 'skeptical': 9577, 'boopboopboop': 9578
, 'honeysee': 9579, 'spilt': 9580, 'bbbrrr': 9581, 'circa': 9582, 'arefire': 9583, 'ughanyways': 9584, 'sadfaced
': 9585, 'yorker': 9586, 'maxi': 9587, 'lalaland': 9588, 'plagiarism': 9589, 'wiff': 9590, 'pazik': 9591, 'fart'
: 9592, 'woootwoooo': 9593, 'nakakahyper': 9594, 'fridaaaayyyyy': 9595, 'melatonin': 9596, 'maaaaan': 9597, 'gru
mbling': 9598, 'larger': 9599, 'avalina': 9600, 'dud': 9601, 'abusewishes': 9602, 'idontknowwhatdamnbrandcoffeet
hisis': 9603, 'voiceaaarrrggghhh': 9604, 'shermk': 9605, 'halla': 9606, 'haloom': 9607, 'eeem': 9608, 'rationale
': 9609, 'eyaseer': 9610, 'inshallah': 9611, 'billiam': 9612, 'whoayoure': 9613, 'automated': 9614, 'abusedownlo
ader': 9615, 'youporn': 9616, 'mitchell': 9617, 'beforedont': 9618, 'pitiful': 9619, 'purposely': 9620, 'tacky':
9621, 'liberalism': 9622, 'crucifiction': 9623, 'abstraction': 9624, 'someif': 9625, 'brochures': 9626, 'bwrc':
9627, 'zorzpeep': 9628, 'insteadand': 9629, 'rsvpsorry': 9630, 'birthdayday': 9631, 'sundaybut': 9632, 'adopting
': 9633, 'exotic': 9634, 'happpppy': 9635, 'dealsyou': 9636, 'finales': 9637, 'loft': 9638, 'haggis': 9639, 'sta
rsailor': 9640, 'powershell': 9641, 'inventory': 9642, 'sprinkling': 9643, 'ssshhh': 9644, 'disturb': 9645, 'abu
sethankabuse': 9646, 'sadsville': 9647, 'gaytimes': 9648, 'snowy': 9649, 'packages': 9650, 'jewnew': 9651, 'evan
gelizing': 9652, 'cubiclefreedomness': 9653, 'munderday': 9654, 'dsds': 9655, 'critical': 9656, 'godown': 9657,
'fungus': 9658, 'badluck': 9659, 'garley': 9660, 'pinkgreen': 9661, 'outzen': 9662, 'exclassmates': 9663, 'goodt
imes': 9664, 'giggles': 9665, 'jars': 9666, 'skiing': 9667, 'treble': 9668, 'dyer': 9669, 'violations': 9670, 't
rademark': 9671, 'caause': 9672, 'liptons': 9673, 'busting': 9674, 'fridayfirehazzard': 9675, 'maximum': 9676, '
aimeeeeeee': 9677, 'kitsch': 9678, 'dahling': 9679, 'tweep': 9680, 'adoreeeee': 9681, 'nathanson': 9682, 'sez':
9683, 'quadriceps': 9684, 'eyescontentment': 9685, 'sugaaar': 9686, 'ra': 9687, 'skrg': 9688, 'sempit': 9689, 'w
aktunya': 9690, 'workthat': 9691, 'supervise': 9692, 'wt': 9693, 'yaer': 9694, 'polka': 9695, 'glam': 9696, 'wat
ers': 9697, 'slipnow': 9698, 'belofsouthie': 9699, 'textedcalled': 9700, 'fidel': 9701, 'arrggghhhdang': 9702, '
lawns': 9703, 'sash': 9704, 'sill': 9705, 'cuban': 9706, 'nonintrusive': 9707, 'keygens': 9708, 'finei': 9709, '
isabela': 9710, 'uribe': 9711, 'wayi': 9712, 'straightjust': 9713, 'mkting': 9714, 'bifocals': 9715, 'charla': 9
716, 'gotoo': 9717, 'licensed': 9718, 'zombiepix': 9719, 'woosoo': 9720, 'driveing': 9721, 'nutts': 9722, 'sucki
est': 9723, 'tiasha': 9724, 'poetize': 9725, 'moines': 9726, 'tdwp': 9727, 'goblet': 9728, 'mikeys': 9729, 'bouq
uet': 9730, 'shotgun': 9731, 'guilted': 9732, 'schoolhope': 9733, 'lexi': 9734, 'caption': 9735, 'karla': 9736,
'accounting': 9737, 'salaried': 9738, 'territory': 9739, 'praline': 9740, 'okayso': 9741, 'nowsend': 9742, 'sns'
: 9743, 'uthx': 9744, 'adelaidemarie': 9745, 'canadatoronto': 9746, 'matched': 9747, 'clot': 9748, 'lahore': 974
9, 'targets': 9750, 'tikka': 9751, 'versionshelp': 9752, 'acdc': 9753, 'flannel': 9754, 'hobbit': 9755, 'waaaaa'
: 9756, 'drycleaners': 9757, 'tamlyn': 9758, 'thoughand': 9759, 'socialily': 9760, 'naiv': 9761, 'wahts': 9762,
'coffeclub': 9763, 'youuuuuu': 9764, 'semiabuse': 9765, 'brokewalking': 9766, 'dearie': 9767, 'nakumadaya': 9768
, 'jailbreaking': 9769, 'stacie': 9770, 'masala': 9771, 'chaas': 9772, 'trackflashback': 9773, 'nappys': 9774, '
wordby': 9775, 'nappy': 9776, 'braids': 9777, 'igot': 9778, 'hangtime': 9779, 'sweetiepie': 9780, 'baxx': 9781,
'ammmmazing': 9782, 'disgust': 9783, 'mochi': 9784, 'jpeg': 9785, 'terminology': 9786, 'greeeeeeeeeeeat': 9787,
'classesif': 9788, 'meu': 9789, 'revelation': 9790, 'ohhhhnow': 9791, 'happyslip': 9792, 'dancers': 9793, 'eared
pages': 9794, 'requires': 9795, 'roc': 9796, 'witchu': 9797, 'imy': 9798, 'buu': 9799, 'workmen': 9800, 'extendi
ng': 9801, 'blasted': 9802, 'shoulve': 9803, 'rm': 9804, 'applebottoms': 9805, 'fubu': 9806, 'mamalaura': 9807,
'blob': 9808, 'tentacles': 9809, 'weatherlooks': 9810, 'ankles': 9811, 'swolleneeks': 9812, 'pasty': 9813, 'weir
dly': 9814, 'greentea': 9815, 'blogyeahhhh': 9816, 'wacky': 9817, 'grandas': 9818, 'celebxxxvidsyh': 9819, 'ayby
gw': 9820, 'molars': 9821, 'girlnow': 9822, 'pag': 9823, 'basta': 9824, 'peanuts': 9825, 'tec': 9826, 'skipton':
9827, 'bottislive': 9828, 'organiser': 9829, 'artistdjs': 9830, 'yeahwe': 9831, 'shiiiterhyming': 9832, 'fugees'
: 9833, 'niiiighht': 9834, 'amazzzing': 9835, 'wordddss': 9836, 'samples': 9837, 'zorny': 9838, 'bungle': 9839,
'wishhh': 9840, 'youtubes': 9841, 'clocked': 9842, 'northview': 9843, 'noooootttttttt': 9844, 'nofair': 9845, 'u
hura': 9846, 'nero': 9847, 'namerebecca': 9848, 'anothe': 9849, 'chickie': 9850, 'depeche': 9851, 'scholls': 985
2, 'sandal': 9853, 'inserts': 9854, 'prez': 9855, 'inconclusive': 9856, 'forgo': 9857, 'glammyyy': 9858, 'crocke
r': 9859, 'blanco': 9860, 'eitheryo': 9861, 'puerto': 9862, 'rican': 9863, 'mamiyo': 9864, 'yi': 9865, 'tubut':
9866, 'validation': 9867, 'believers': 9868, 'mercy': 9869, 'mercedes': 9870, 'eathomeworktvi': 9871, 'naivety':
9872, 'freelance': 9873, 'knighty': 9874, 'klonopin': 9875, 'swedish': 9876, 'noooooooooooo': 9877, 'swelter': 9
878, 'heatish': 9879, 'idiom': 9880, 'yare': 9881, 'decker': 9882, 'sunnn': 9883, 'finnalllyyy': 9884, 'oasis':
9885, 'ribena': 9886, 'toughest': 9887, 'esplained': 9888, 'teensthanks': 9889, 'fff': 9890, 'interracial': 9891
, 'acknowledge': 9892, 'inevitable': 9893, 'followillfriday': 9894, 'drooling': 9895, 'beginnings': 9896, 'calex
ico': 9897, 'flowy': 9898, 'oystsers': 9899, 'platter': 9900, 'eztv': 9901, 'madina': 9902, 'payroll': 9903, 'go
odno': 9904, 'drmiracles': 9905, 'feelit': 9906, 'tae': 9907, 'granted': 9908, 'invaders': 9909, 'atomic': 9910,
'flavored': 9911, 'telescope': 9912, 'yesty': 9913, 'schooli': 9914, 'mehahaha': 9915, 'stina': 9916, 'familyi':
9917, 'nawwwww': 9918, 'unbelievable': 9919, 'allies': 9920, 'rae': 9921, 'shoping': 9922, 'davidhahaenjoy': 992
3, 'hallwayabuse': 9924, 'bbqim': 9925, 'almostt': 9926, 'whinetweet': 9927, 'specified': 9928, 'flik': 9929, 'n
anowrimo': 9930, 'ideia': 9931, 'wooowww': 9932, 'abusehopes': 9933, 'trueabuse': 9934, 'pichave': 9935, 'tomoiv
e': 9936, 'zol': 9937, 'justify': 9938, 'curler': 9939, 'whhhyyy': 9940, 'igirl': 9941, 'twitterbff': 9942, 'atr
ocious': 9943, 'visas': 9944, 'spams': 9945, 'twittergadget': 9946, 'complications': 9947, 'cissbury': 9948, 'gr
rrrrrrr': 9949, 'summmmmerrrrr': 9950, 'beginsyeahhhhhyaaaaaa': 9951, 'kb': 9952, 'cadbury': 9953, 'getaway': 99
54, 'bsnl': 9955, 'arrgghhhggguuuiiissshhhh': 9956, 'assignement': 9957, 'burma': 9958, 'eeeep': 9959, 'nobodddd
yyyy': 9960, 'rolf': 9961, 'leftwithout': 9962, 'boredumsong': 9963, 'flyleaf': 9964, 'myspaces': 9965, 'kissesa
buse': 9966, 'booooooooo': 9967, 'ntah': 9968, 'comee': 9969, 'haiiii': 9970, 'sankq': 9971, 'fineee': 9972, 'ch
eckup': 9973, 'rib': 9974, 'xxxxxxxxxxxxxxxxxxx': 9975, 'berries': 9976, 'soph': 9977, 'beatiful': 9978, 'jap':
9979, 'thinker': 9980, 'freaaaaaaak': 9981, 'oceanupmiley': 9982, 'gaston': 9983, 'justinhmmmim': 9984, 'partyoo
o': 9985, 'channing': 9986, 'tatum': 9987, 'destruction': 9988, 'languageawww': 9989, 'await': 9990, 'pnutt': 99
91, 'collar': 9992, 'leash': 9993, 'arnd': 9994, 'sped': 9995, 'ensures': 9996, 'timely': 9997, 'productnamingru
lez': 9998, 'abuseembarrassed': 9999, 'osbourne': 10000, 'allim': 10001, 'pinga': 10002, 'aaaaw': 10003, 'flake'
: 10004, 'novusnovendo': 10005, 'eyecandy': 10006, 'xatl': 10007, 'barakats': 10008, 'ssoo': 10009, 'showershave
': 10010, 'jottonia': 10011, 'booziest': 10012, 'bankholiday': 10013, 'rcb': 10014, 'trashes': 10015, 'cupcakey'
: 10016, 'marisa': 10017, 'mauro': 10018, 'arseholes': 10019, 'schooling': 10020, 'por': 10021, 'zwitschert': 10
022, 'experienced': 10023, 'apathy': 10024, 'empathy': 10025, 'fckeditor': 10026, 'alzheimers': 10027, 'commerce
': 10028, 'caffeine': 10029, 'levels': 10030, 'jenson': 10031, 'jibberish': 10032, 'seos': 10033, 'submitting':
10034, 'salmon': 10035, 'sashimi': 10036, 'suchatease': 10037, 'pressie': 10038, 'abusepoutsabuse': 10039, 'thre
eday': 10040, 'cancellednow': 10041, 'quarantined': 10042, 'pinkeye': 10043, 'pagee': 10044, 'photobook': 10045,
'hooooommmeeee': 10046, 'valkyria': 10047, 'partyyou': 10048, 'pleassse': 10049, 'failedhaving': 10050, 'withdra
wals': 10051, 'pythonkingsnl': 10052, 'daps': 10053, 'yani': 10054, 'cabaret': 10055, 'agaaaaaaiiiin': 10056, 'm
aaaam': 10057, 'hardwood': 10058, 'floors': 10059, 'ayt': 10060, 'spur': 10061, 'cnaterbury': 10062, 'realx': 10
063, 'nooobody': 10064, 'wreckers': 10065, 'crampsss': 10066, 'cytheria': 10067, 'somelol': 10068, 'daywow': 100
69, 'mamamama': 10070, 'promif': 10071, 'unemployment': 10072, 'etown': 10073, 'heheuntil': 10074, 'respite': 10
075, 'penguin': 10076, 'bre': 10077, 'stuffy': 10078, 'sudafed': 10079, 'yata': 10080, 'hustlaball': 10081, 'app
earances': 10082, 'prowler': 10083, 'dom': 10084, 'twitted': 10085, 'promoted': 10086, 'klaudines': 10087, 'that
both': 10088, 'disbelief': 10089, 'posited': 10090, 'avaialble': 10091, 'montdays': 10092, 'succession': 10093,
'bananas': 10094, 'kapsel': 10095, 'dy': 10096, 'nulis': 10097, 'spertinya': 10098, 'ditag': 10099, 'notificatio
nnya': 10100, 'huhu': 10101, 'weaki': 10102, 'netplayer': 10103, 'blehh': 10104, 'steff': 10105, 'exhibit': 1010
6, 'hugsbut': 10107, 'anythingwondering': 10108, 'amritsar': 10109, 'placesthe': 10110, 'horrorhoping': 10111, '
wholesale': 10112, 'endodontist': 10113, 'removing': 10114, 'ceramic': 10115, 'shatter': 10116, 'exahausted': 10
117, 'gettn': 10118, 'heartwhoeva': 10119, 'lond': 10120, 'kev': 10121, 'westgate': 10122, 'wranglers': 10123, '
mountainjam': 10124, 'prescription': 10125, 'lookie': 10126, 'moyles': 10127, 'noor': 10128, 'canvassing': 10129
, 'goaudio': 10130, 'sergeants': 10131, 'abuseflicks': 10132, 'lightsabuse': 10133, 'beetches': 10134, 'finden':
10135, 'hea': 10136, 'laterhope': 10137, 'revel': 10138, 'gradesoutside': 10139, 'decksun': 10140, 'juggler': 10
141, 'raininghad': 10142, 'halfheartedly': 10143, 'marky': 10144, 'escobar': 10145, 'walcers': 10146, 'frat': 10
147, 'wac': 10148, 'clubdancingbut': 10149, 'hoursnow': 10150, 'antonio': 10151, 'waitressing': 10152, 'lovehes'
: 10153, 'tortured': 10154, 'songmakes': 10155, 'speaks': 10156, 'unzelaif': 10157, 'hashim': 10158, 'dosnt': 10
159, 'cse': 10160, 'rfid': 10161, 'began': 10162, 'pik': 10163, 'relaxxxx': 10164, 'lyndi': 10165, 'fisnihsed':
10166, 'yesertday': 10167, 'loiusas': 10168, 'kangaroo': 10169, 'sightseeing': 10170, 'mozconcept': 10171, 'twee
psgood': 10172, 'wussup': 10173, 'americatalk': 10174, 'wuts': 10175, 'militant': 10176, 'modeam': 10177, 'compe
titonso': 10178, 'tb': 10179, 'meanest': 10180, 'vondt': 10181, 'ryggen': 10182, 'mackenzie': 10183, 'movieee':
10184, 'twitterfacebookmyspaceno': 10185, 'wades': 10186, 'interuptions': 10187, 'hmtm': 10188, 'sorrryy': 10189
, 'broth': 10190, 'sorrrry': 10191, 'shawneei': 10192, 'therei': 10193, 'hammond': 10194, 'shiiiiiiiiiiiiiiiiiii
iiiiiiiiiiit': 10195, 'defited': 10196, 'goofin': 10197, 'shins': 10198, 'biatch': 10199, 'bosworth': 10200, 'lo
ove': 10201, 'piccolo': 10202, 'differents': 10203, 'mea': 10204, 'theaterahah': 10205, 'coold': 10206, 'donenow
': 10207, 'gem': 10208, 'casualties': 10209, 'discography': 10210, 'stoppped': 10211, 'wakeboarding': 10212, 'ci
wwaf': 10213, 'vmas': 10214, 'osap': 10215, 'shorten': 10216, 'woooo': 10217, 'saimee': 10218, 'underage': 10219
, 'wishlist': 10220, 'kos': 10221, 'jules': 10222, 'albuquerque': 10223, 'deb': 10224, 'sensei': 10225, 'therewe
': 10226, 'synced': 10227, 'louisa': 10228, 'bobbi': 10229, 'lewis': 10230, 'smudge': 10231, 'malicious': 10232,
'averaged': 10233, 'robbie': 10234, 'rebonded': 10235, 'fin': 10236, 'chopping': 10237, 'momol': 10238, 'summahk
ayy': 10239, 'waah': 10240, 'omelets': 10241, 'abusespits': 10242, 'napkinabuse': 10243, 'tengo': 10244, 'dinero
': 10245, 'sheridan': 10246, 'craigslist': 10247, 'abusepraysabuse': 10248, 'harley': 10249, 'cstm': 10250, 'bua
a': 10251, 'swedenbut': 10252, 'cheated': 10253, 'brotherdid': 10254, 'num': 10255, 'smhyou': 10256, 'mandarin':
10257, 'rightgotta': 10258, 'exsausted': 10259, 'chalky': 10260, 'fiiiinaaalllyyy': 10261, 'torential': 10262, '
obligations': 10263, 'twitterbut': 10264, 'possiblei': 10265, 'donor': 10266, 'pleaseeeeeelol': 10267, 'treky':
10268, 'kaul': 10269, 'prereunion': 10270, 'ent': 10271, 'sevens': 10272, 'someonee': 10273, 'hansen': 10274, 'a
busefarabuse': 10275, 'sluttin': 10276, 'waaaaaaaaahhhh': 10277, 'zoita': 10278, 'holeintheheart': 10279, 'yonke
rs': 10280, 'furloughed': 10281, 'emptying': 10282, 'spgridview': 10283, 'ape': 10284, 'serverside': 10285, 'jav
ascript': 10286, 'mootools': 10287, 'boredbut': 10288, 'babyfather': 10289, 'gemstar': 10290, 'generalisations':
10291, 'fintster': 10292, 'dustins': 10293, 'outoffocus': 10294, 'projection': 10295, 'gottaaa': 10296, 'harryki
m': 10297, 'sleeeeeeeepy': 10298, 'deland': 10299, 'speciaal': 10300, 'voor': 10301, 'zo': 10302, 'vind': 10303,
'w�l': 10304, 'leuk': 10305, 'deathmatch': 10306, 'janewe': 10307, 'langley': 10308, 'revolution': 10309, 'gua
pisimo': 10310, 'chico': 10311, 'messgae': 10312, 'saver': 10313, 'suncream': 10314, 'kristin': 10315, 'kealie':
10316, 'homeworkboring': 10317, 'todaythis': 10318, 'afternoonnow': 10319, 'dutch': 10320, 'aroundtakin': 10321,
'okiebud': 10322, 'messagesorry': 10323, 'lantz': 10324, 'hearn': 10325, 'muthafuckin': 10326, 'pliers': 10327,
'gossipgirl': 10328, 'bootay': 10329, 'izzayyy': 10330, 'huggable': 10331, 'cutee': 10332, 'nicho': 10333, 'vege
tables': 10334, 'affected': 10335, 'lovey': 10336, 'snazzed': 10337, 'summery': 10338, 'hbu': 10339, 'sammie': 1
0340, 'rejecting': 10341, 'substances': 10342, 'wachting': 10343, 'highmissing': 10344, 'mayfield': 10345, 'ehi'
: 10346, 'coloradomaybe': 10347, 'spaceship': 10348, 'manning': 10349, 'roasters': 10350, 'mash': 10351, 'disapo
inting': 10352, 'pirated': 10353, 'nutin': 10354, 'birthdaaaay': 10355, 'jalapeno': 10356, 'chaparros': 10357, '
sunfay': 10358, 'afterall': 10359, 'puncture': 10360, 'bailon': 10361, 'bleaching': 10362, 'hilariouss': 10363,
'clp': 10364, 'downespecially': 10365, 'gnyt': 10366, 'fontanas': 10367, 'ironclad': 10368, 'determination': 103
69, 'cottys': 10370, 'afternooon': 10371, 'antiitch': 10372, 'branded': 10373, 'carlin': 10374, 'funy': 10375, '
schoolday': 10376, 'nipissing': 10377, 'euphoria': 10378, 'barrie': 10379, 'overtweet': 10380, 'gis': 10381, 'bo
rdom': 10382, 'tinfoil': 10383, 'beachball': 10384, 'xxxxxxxxxxxxxxxxxxxxxx': 10385, 'sicksome': 10386, 'habits'
: 10387, 'ofthe': 10388, 'climbits': 10389, 'sngs': 10390, 'showstoppers': 10391, 'ceviche': 10392, 'bellinis':
10393, 'vwllers': 10394, 'decentso': 10395, 'amazingi': 10396, 'ebru': 10397, 'linkvery': 10398, 'coolsee': 1039
9, 'demon': 10400, 'static': 10401, 'ip': 10402, 'apologize': 10403, 'ysc': 10404, 'runthrough': 10405, 'gazilli
on': 10406, 'percent': 10407, 'fizz': 10408, 'kalaharinet': 10409, 'commodores': 10410, 'yiiiit': 10411, 'yeahju
st': 10412, 'anythin': 10413, 'charmer': 10414, 'rankings': 10415, 'hws': 10416, 'flywithmeobsessive': 10417, 't
weetbreak': 10418, 'didja': 10419, 'tortellini': 10420, 'helpline': 10421, 'awesomeeeeee': 10422, 'facespacing':
10423, 'persist': 10424, 'spittin': 10425, 'sunrays': 10426, 'duhi': 10427, 'responsabilities': 10428, 'palante'
: 10429, 'lore': 10430, 'recapping': 10431, 'coined': 10432, 'hottie': 10433, 'switchfoot': 10434, 'hsg': 10435,
'tibet': 10436, 'todaywith': 10437, 'watchn': 10438, 'gweetin': 10439, 'yumwish': 10440, 'infect': 10441, 'other
sso': 10442, 'libertine': 10443, 'underdog': 10444, 'francesc': 10445, 'fabregas': 10446, 'fabre': 10447, 'moveo
ut': 10448, 'div': 10449, 'gymming': 10450, 'bawas': 10451, 'kanin': 10452, 'celibate': 10453, 'formulate': 1045
4, 'hurtfinally': 10455, 'bedwill': 10456, 'oververy': 10457, 'mapped': 10458, 'timberfake': 10459, 'motherdaugh
ters': 10460, 'bonding': 10461, 'mcfonalds': 10462, 'mygrilled': 10463, 'torey': 10464, 'easactive': 10465, 'pau
sed': 10466, 'abuseshrugabuse': 10467, 'crikey': 10468, 'depend': 10469, 'structures': 10470, 'blogginggood': 10
471, 'jvm': 10472, 'americana': 10473, 'julio': 10474, 'savechuck': 10475, 'maxxie': 10476, 'anwar': 10477, 'ill
ustrated': 10478, 'waaw': 10479, 'gothats': 10480, 'clorox': 10481, 'eleni': 10482, 'cower': 10483, 'comply': 10
484, 'yups': 10485, 'pruning': 10486, 'unfollowers': 10487, 'wakes': 10488, 'abusemeowabuse': 10489, 'blagh': 10
490, 'redbone': 10491, 'greatful': 10492, 'jkidding': 10493, 'benzo': 10494, 'recory': 10495, 'lpi': 10496, 'wor
kingoh': 10497, 'waitits': 10498, 'cairns': 10499, 'clan': 10500, 'wire': 10501, 'nesmith': 10502, 'luau': 10503
, 'ari': 10504, 'ridin': 10505, 'dadold': 10506, 'scrape': 10507, 'blerg': 10508, 'silvera': 10509, 'greeat': 10
510, 'drinker': 10511, 'approximately': 10512, 'bylaurenluke': 10513, 'bamboojade': 10514, 'phillip': 10515, 'co
mpletley': 10516, 'kaitlyn': 10517, 'themwork': 10518, 'jonsame': 10519, 'confuzzled': 10520, 'prego': 10521, 's
muts': 10522, 'abusesupposedabuse': 10523, 'daywish': 10524, 'biketo': 10525, 'tequilllacarne': 10526, 'asadaand
': 10527, 'earlyish': 10528, 'yooooooo': 10529, 'classnot': 10530, 'manness': 10531, 'cooolooorss': 10532, 'scri
bkin': 10533, 'ludi': 10534, 'retainers': 10535, 'ofhorrible': 10536, 'arrangements': 10537, 'washer': 10538, 'l
abeled': 10539, 'examsboring': 10540, 'brookings': 10541, 'webgraphic': 10542, 'rural': 10543, 'grenade': 10544,
'trimmer': 10545, 'rosa': 10546, 'guadalupe': 10547, 'virgins': 10548, 'psn': 10549, 'mummyyyyyyyy': 10550, 'may
ers': 10551, 'modeling': 10552, 'picturisation': 10553, 'laertesgirl': 10554, 'woodvine': 10555, 'thorne': 10556
, 'blogtalkradio': 10557, 'moneyy': 10558, 'thorough': 10559, 'degrease': 10560, 'lagoon': 10561, 'fishahhh': 10
562, 'downsides': 10563, 'carnivore': 10564, 'goodmaybe': 10565, 'abbster': 10566, 'yesterdayahhh': 10567, 'moze
rt': 10568, 'buys': 10569, 'powerball': 10570, 'jackpot': 10571, 'formidable': 10572, 'abuseawesomeabuse': 10573
, 'omr': 10574, 'wys': 10575, 'lhr': 10576, 'crumpin': 10577, 'dub': 10578, 'sayits': 10579, 'backroom': 10580,
'sware': 10581, 'againtoo': 10582, 'dramasooo': 10583, 'kellynn': 10584, 'folkestone': 10585, 'riped': 10586, 'm
ags': 10587, 'beated': 10588, 'planting': 10589, 'gardenhope': 10590, 'paraded': 10591, 'jojo': 10592, 'hittt':
10593, 'woah': 10594, 'whitney': 10595, 'ellipital': 10596, 'yogg': 10597, 'ethernet': 10598, 'girlbahahah': 105
99, 'testers': 10600, 'synology': 10601, 'diskstations': 10602, 'fhnixons': 10603, 'lexingtons': 10604, 'foodno'
: 10605, 'bedno': 10606, 'daaammmnnnnn': 10607, 'bmore': 10608, 'drems': 10609, 'chantal': 10610, 'blumenthal':
10611, 'flashed': 10612, 'tame': 10613, 'gaah': 10614, 'wishful': 10615, 'clive': 10616, 'bliptv': 10617, 'aband
onment': 10618, 'pooping': 10619, 'homeon': 10620, 'poolside': 10621, 'toniht': 10622, 'lurk': 10623, 'mewell':
10624, 'sephora': 10625, 'dreamland': 10626, 'wearin': 10627, 'whaaaaaat': 10628, 'bottled': 10629, 'ohsosexy':
10630, 'rahul': 10631, 'bitbetter': 10632, 'scala': 10633, 'kiddnation': 10634, 'gch': 10635, 'mercedezs': 10636
, 'emmy': 10637, 'aptitude': 10638, 'miamiadc': 10639, 'girll': 10640, 'mommasss': 10641, 'mesmerizing': 10642,
'legally': 10643, 'lold': 10644, 'somthing': 10645, 'mileyso': 10646, 'disinfected': 10647, 'latrine': 10648, 'h
omeeboring': 10649, 'okiee': 10650, 'shiggity': 10651, 'shwa': 10652, 'honking': 10653, 'monarchy': 10654, 'reco
nize': 10655, 'ipswitch': 10656, 'watajokeental': 10657, 'fren': 10658, 'wanthavent': 10659, 'legacy': 10660, 'p
ermanent': 10661, 'sj': 10662, 'cinelux': 10663, 'almaden': 10664, 'easports': 10665, 'madden': 10666, 'decoupli
ng': 10667, 'centersthis': 10668, 'gasping': 10669, 'tribes': 10670, 'extinct': 10671, 'donalds': 10672, 'lovley
': 10673, 'strugglingselfishness': 10674, 'myyy': 10675, 'bucket': 10676, 'cob': 10677, 'mh': 10678, 'departure'
: 10679, 'abusewhyabuse': 10680, 'yen': 10681, 'awwwe': 10682, 'passyunk': 10683, 'collected': 10684, 'analog':
10685, 'nigeria': 10686, 'carbonara': 10687, 'zachy': 10688, 'familia': 10689, 'maar': 10690, 'beetle': 10691, '
entrance': 10692, 'zipcode': 10693, 'stevens': 10694, 'waterhouse': 10695, 'jhys': 10696, 'musicans': 10697, 'le
gion': 10698, 'showerswork': 10699, 'nichole': 10700, 'medici': 10701, 'slope': 10702, 'golfballs': 10703, 'sant
ana': 10704, 'wraith': 10705, 'abusereads': 10706, 'bookabuse': 10707, 'clamentsnope': 10708, 'mandarich': 10709
, 'handedly': 10710, 'hairbrush': 10711, 'disinfect': 10712, 'nowbut': 10713, 'xt': 10714, 'wantcnt': 10715, 'si
cklike': 10716, 'michaels': 10717, 'shreddies': 10718, 'wright': 10719, 'heffer': 10720, 'ouchhhhhh': 10721, 'fr
kn': 10722, 'funfunfun': 10723, 'newt': 10724, 'couuuurse': 10725, 'fika': 10726, 'thes': 10727, 'highland': 107
28, 'christians': 10729, 'rblpnqte': 10730, 'delux': 10731, 'boohoohoo': 10732, 'raning': 10733, 'thrui': 10734,
'weekendnot': 10735, 'thelma': 10736, 'rebeca': 10737, 'symonds': 10738, 'goodman': 10739, 'wonderland': 10740,
'psy': 10741, 'alough': 10742, 'godtalk': 10743, 'tagging': 10744, 'friendshahamy': 10745, 'outmy': 10746, 'mebf
alone': 10747, 'neutrality': 10748, 'keycards': 10749, 'dins': 10750, 'jor': 10751, 'selfawareness': 10752, 'pri
nciple': 10753, 'mourners': 10754, 'rotr': 10755, 'adelitas': 10756, 'invincible': 10757, 'spidey': 10758, 'tmo'
: 10759, 'concerned': 10760, 'batt': 10761, 'regina': 10762, 'deux': 10763, 'shouldhave': 10764, 'romania': 1076
5, 'mtvsunday': 10766, 'premiere': 10767, 'warz': 10768, 'reallythat': 10769, 'manoh': 10770, 'nicerather': 1077
1, 'otherlol': 10772, 'aceness': 10773, 'extreme': 10774, 'alredy': 10775, 'daxx': 10776, 'arthroscopy': 10777,
'wfd': 10778, 'typicalgoin': 10779, 'laydown': 10780, 'againooo': 10781, 'taiwanese': 10782, 'dramas': 10783, 'c
hun': 10784, 'pogue': 10785, 'congrat': 10786, 'strung': 10787, 'nishiki': 10788, 'curing': 10789, 'battered': 1
0790, 'gokarting': 10791, 'elora': 10792, 'danan': 10793, 'nsw': 10794, 'melbs': 10795, 'whwha': 10796, 'hacky':
10797, 'becomin': 10798, 'radioactive': 10799, 'arcadia': 10800, 'elusive': 10801, 'veritas': 10802, 'altered':
10803, 'armthis': 10804, 'raiders': 10805, 'kanye': 10806, 'eew': 10807, 'skyrockets': 10808, 'aaaaaaaafternoon'
: 10809, 'settles': 10810, 'dentistthey': 10811, 'roughnight': 10812, 'checks': 10813, 'kellan': 10814, 'lutz':
10815, 'nerddream': 10816, 'apuya': 10817, 'fafsa': 10818, 'ann': 10819, 'arbor': 10820, 'xxxxxxxxxxxxxxxxx': 10
821, 'sadshoes': 10822, 'ughhhhhhhhhhhh': 10823, 'contrary': 10824, 'anti': 10825, 'trekkies': 10826, 'empowerin
g': 10827, 'abuselifts': 10828, 'cupabuse': 10829, 'ocracoke': 10830, 'thunderstorms': 10831, 'afternoonits': 10
832, 'eyedea': 10833, 'yoou': 10834, 'yesno': 10835, 'postsdays': 10836, 'cbeebies': 10837, 'epg': 10838, 'pinky
ponk': 10839, 'cliff': 10840, 'sourcing': 10841, 'unsettled': 10842, 'nsty': 10843, 'sleepso': 10844, 'infomerci
als': 10845, 'shoplol': 10846, 'belleville': 10847, 'orillia': 10848, 'bandung': 10849, 'timee': 10850, 'regrett
in': 10851, 'workdone': 10852, 'redtape': 10853, 'freshner': 10854, 'horriblel': 10855, 'grossed': 10856, 'algae
': 10857, 'mja': 10858, 'cussing': 10859, 'kojikun': 10860, 'seastar': 10861, 'beefinwhat': 10862, 'pple': 10863
, 'whatthe': 10864, 'heardread': 10865, 'modded': 10866, 'saget': 10867, 'reasonmaybe': 10868, 'inning': 10869,
'followingbut': 10870, 'loon': 10871, 'dismissed': 10872, 'guttered': 10873, 'nzntm': 10874, 'hosanna': 10875, '
dammmi': 10876, 'lollllll': 10877, 'lupos': 10878, 'entonces': 10879, 'perdonada': 10880, 'porque': 10881, 'sigu
es': 10882, 'yogulicious': 10883, 'sally': 10884, 'competitor': 10885, 'consumed': 10886, 'yesterdayill': 10887,
'tomorrowabuse': 10888, 'dominicks': 10889, 'wentworths': 10890, 'withb': 10891, 'alrer': 10892, 'ego': 10893, '
destress': 10894, 'mintyfresh': 10895, 'conversating': 10896, 'bookmark': 10897, 'finalizer': 10898, 'areo': 108
99, 'blended': 10900, 'lumpy': 10901, 'chattering': 10902, 'erock': 10903, 'sushichinese': 10904, 'cheescake': 1
0905, 'installments': 10906, 'waaayyyy': 10907, 'byyy': 10908, 'sarcy': 10909, 'zuljin': 10910, 'cockermouth': 1
0911, 'motorcades': 10912, 'clinton': 10913, 'jas': 10914, 'stressorscome': 10915, 'tei': 10916, 'sency': 10917,
'ghina': 10918, 'tonitehappy': 10919, 'prima': 10920, 'byall': 10921, 'bry': 10922, 'theraflu': 10923, 'pillsare
': 10924, 'nia': 10925, 'dayton': 10926, 'wiz': 10927, 'confsuing': 10928, 'massachusetts': 10929, 'lager': 1093
0, 'fritters': 10931, 'fooddont': 10932, 'vimeo': 10933, 'uuuuugh': 10934, 'zwarte': 10935, 'maillot': 10936, 'w
ini': 10937, 'cusack': 10938, 'overloaded': 10939, 'shortyur': 10940, 'biatches': 10941, 'weekday': 10942, 'dist
urbance': 10943, 'sapinsidetrack': 10944, 'palo': 10945, 'alto': 10946, 'debugging': 10947, 'unmuted': 10948, 'k
earley': 10949, 'demand': 10950, 'sgb': 10951, 'freeuntil': 10952, 'oregan': 10953, 'aussieim': 10954, 'binocula
rs': 10955, 'grounds': 10956, 'toysonly': 10957, 'myhorrible': 10958, 'traumatic': 10959, 'cholla': 10960, 'acci
dentchollas': 10961, 'trickpieces': 10962, 'emerge': 10963, 'againand': 10964, 'cutback': 10965, 'beertoo': 1096
6, 'carbsbut': 10967, 'yummyyy': 10968, 'clingy': 10969, 'stuffted': 10970, 'apaently': 10971, 'silverstein': 10
972, 'fabulously': 10973, 'volumes': 10974, 'brew': 10975, 'butbutim': 10976, 'showima': 10977, 'yuup': 10978, '
schoolmaybe': 10979, 'sickall': 10980, 'laughabuse': 10981, 'wereld': 10982, 'didn': 10983, 'masekela': 10984, '
contern': 10985, 'knowlol': 10986, 'dancefloor': 10987, 'cantlol': 10988, 'paddington': 10989, 'shortages': 1099
0, 'outty': 10991, 'ar': 10992, 'boredhope': 10993, 'levi': 10994, 'wantholla': 10995, 'feliza': 10996, 'serving
s': 10997, 'northpark': 10998, 'malli': 10999, 'provide': 11000, 'murderous': 11001, 'rampages': 11002, 'rockpoo
ls': 11003, 'octopi': 11004, 'shells': 11005, 'pretties': 11006, 'mason': 11007, 'connolly': 11008, 'kirby': 110
09, 'luks': 11010, 'ittomorrow': 11011, 'root': 11012, 'canalugh': 11013, 'paniniii': 11014, 'rocksnothing': 110
15, 'amazes': 11016, 'stillthis': 11017, 'txtin': 11018, 'aaaahh': 11019, 'imtetsting': 11020, 'functionsnahh':
11021, 'toooooom': 11022, 'pleeease': 11023, 'downed': 11024, 'abuselooks': 11025, 'pokes': 11026, 'shirtabuse':
11027, 'kks': 11028, 'throwbie': 11029, 'kodiak': 11030, 'fooled': 11031, 'waaay': 11032, 'cruisey': 11033, 'ham
mered': 11034, 'crawfish': 11035, 'boil': 11036, 'trainr': 11037, 'benefits': 11038, 'pradas': 11039, 'dunks': 1
1040, 'neemah': 11041, 'vacashunand': 11042, 'updatei': 11043, 'qualified': 11044, 'landon': 11045, 'announces':
11046, 'yell': 11047, 'hurtsagain': 11048, 'morningafternoonnight': 11049, 'allstudying': 11050, 'brains': 11051
, 'hallooo': 11052, 'bayernhallooo': 11053, 'stau': 11054, 'lova': 11055, 'bbff': 11056, 'nownow': 11057, 'melro
secashier': 11058, 'registrar': 11059, 'unfun': 11060, 'bittt': 11061, 'managaed': 11062, 'followup': 11063, 'pl
lleeeaaasse': 11064, 'munched': 11065, 'croquettes': 11066, 'divea': 11067, 'boredddddddd': 11068, 'clarks': 110
69, 'eavy': 11070, 'grtsat': 11071, 'bggeting': 11072, 'pleasing': 11073, 'ladyhawke': 11074, 'rutger': 11075, '
hauer': 11076, 'lannen': 11077, 'liquour': 11078, '�ureo': 11079, 'valentines': 11080, 'almond': 11081, 'holyd
ays': 11082, 'postal': 11083, 'preapplication': 11084, 'pajamasi': 11085, 'dargah': 11086, 'beachyummy': 11087,
'manlovely': 11088, 'luf': 11089, 'modest': 11090, 'oyay': 11091, 'belay': 11092, 'tub': 11093, 'soln': 11094, '
acs': 11095, 'munching': 11096, 'anxiously': 11097, 'turkeys': 11098, 'yardi': 11099, 'nowhate': 11100, 'palmdal
e': 11101, 'gxx': 11102, 'licks': 11103, 'coolidge': 11104, 'mojokins': 11105, 'grates': 11106, 'collide': 11107
, 'khayyam': 11108, 'wakil': 11109, 'announce': 11110, 'fillings': 11111, 'historys': 11112, 'ifs': 11113, 'midd
lesbrough': 11114, 'readysetgo': 11115, 'cranky': 11116, 'rhymes': 11117, 'investor': 11118, 'jester': 11119, 'p
ester': 11120, 'polyester': 11121, 'sylvester': 11122, 'requester': 11123, 'alexxx': 11124, 'hicks': 11125, 'sym
pathies': 11126, 'munchin': 11127, 'empitome': 11128, 'rainlalala': 11129, 'scriptgirl': 11130, 'serenading': 11
131, 'judicial': 11132, 'supervision': 11133, 'executive': 11134, 'commonwealth': 11135, 'caribbean': 11136, 'se
xxxxxxxy': 11137, 'institute': 11138, 'doctoral': 11139, 'funding': 11140, 'eatpoor': 11141, 'hilly': 11142, 'er
mintrude': 11143, 'nabbed': 11144, 'summervac': 11145, 'spammer': 11146, 'brantley': 11147, 'schoolbooks': 11148
, 'hannahisdead': 11149, 'fuckyeah': 11150, 'teratoma': 11151, 'cavity': 11152, 'malepattern': 11153, 'baldness'
: 11154, 'contradiction': 11155, 'rainsnow': 11156, 'julyish': 11157, 'dgree': 11158, 'ensconced': 11159, 'freee
eeeee': 11160, 'joeman': 11161, 'beaches': 11162, 'laterhopefully': 11163, 'ihavent': 11164, 'promotions': 11165
, 'finagle': 11166, 'foward': 11167, 'wisely': 11168, 'pigging': 11169, 'crucial': 11170, 'finearts': 11171, 'sa
njaya': 11172, 'uggh': 11173, 'bogus': 11174, 'intent': 11175, 'logs': 11176, 'schooljoy': 11177, 'stones': 1117
8, 'dencorub': 11179, 'lyndon': 11180, 'tasmania': 11181, 'subside': 11182, 'seizures': 11183, 'niggling': 11184
, 'ahhmy': 11185, 'elena': 11186, 'tomorrowmothers': 11187, 'elp': 11188, 'vinylclad': 11189, 'playset': 11190,
'mfr': 11191, 'slots': 11192, 'amish': 11193, 'startill': 11194, 'singtel': 11195, 'tomarrowbecause': 11196, 'fo
reword': 11197, 'youplease': 11198, 'wdw': 11199, 'amfcant': 11200, 'whyyyyy': 11201, 'merm': 11202, 'kindest':
11203, 'enquiries': 11204, 'gifted': 11205, 'foil': 11206, 'allllllllll': 11207, 'weekendhow': 11208, 'thrilling
and': 11209, 'goshy': 11210, 'poland': 11211, 'fairs': 11212, 'dahye': 11213, 'stackeoverflow': 11214, 'diagnose
d': 11215, 'ligament': 11216, 'iznt': 11217, 'delicate': 11218, 'planing': 11219, 'minuet': 11220, 'garner': 112
21, 'fannie': 11222, 'darwin': 11223, 'stalin': 11224, 'bearer': 11225, 'phlegmily': 11226, 'eeeeewwwwww': 11227
, 'mondaygood': 11228, 'freakinggg': 11229, 'lookse': 11230, 'sandals': 11231, 'wearther': 11232, 'threshold': 1
1233, 'fromhell': 11234, 'alaskaso': 11235, 'j�': 11236, 'sowoke': 11237, 'workboo': 11238, 'gtfo': 11239, 'pe
arson': 11240, 'citeh': 11241, 'yoooouuuu': 11242, 'aspire': 11243, 'supervisor': 11244, 'thundered': 11245, 're
allyreally': 11246, 'filing': 11247, 'blache': 11248, 'doze': 11249, 'cons': 11250, 'anyy': 11251, 'qantas': 112
52, 'flyertalk': 11253, 'ohokdidnt': 11254, 'hoeish': 11255, 'reimer': 11256, 'songplotting': 11257, 'muahahahao
h': 11258, 'itnot': 11259, 'officeespecially': 11260, 'mwah': 11261, 'ruthie': 11262, 'dion': 11263, 'lunchhhhhh
hh': 11264, 'usnlbest': 11265, 'absoulutley': 11266, 'maltese': 11267, 'frenchfrycorndog': 11268, 'overstressed'
: 11269, 'topman': 11270, 'workbest': 11271, 'bmovie': 11272, 'citizen': 11273, 'nudged': 11274, 'hump': 11275,
'pumpin': 11276, 'aber': 11277, 'brussels': 11278, 'sprouts': 11279, 'hauled': 11280, 'cameraphone': 11281, 'mac
hing': 11282, 'rachinea': 11283, 'clarkson': 11284, 'cecilia': 11285, 'pickkshaa': 11286, 'milky': 11287, 'rippi
ng': 11288, 'wyou': 11289, 'gracin': 11290, 'weeven': 11291, 'wingood': 11292, 'tassie': 11293, 'kellyshes': 112
94, 'bahah': 11295, 'confiscate': 11296, 'joeys': 11297, 'lizard': 11298, 'flypside': 11299, 'creat': 11300, 'ma
ndingo': 11301, 'jrlol': 11302, 'awesomelove': 11303, 'gearwhos': 11304, 'favouritegot': 11305, 'vnecks': 11306,
'sixty': 11307, 'luc': 11308, 'bourdon': 11309, 'springleaf': 11310, 'tower': 11311, 'alicia': 11312, 'procuts':
11313, 'ahahahahahahahaha': 11314, 'julia': 11315, 'tutto': 11316, 'cuore': 11317, 'josa': 11318, 'mclife': 1131
9, 'hunter': 11320, 'frasier': 11321, 'twelve': 11322, 'ist': 11323, 'lustig': 11324, 'armer': 11325, 'garantief
all': 11326, 'marykay': 11327, 'sendai': 11328, 'embouchure': 11329, 'putt': 11330, 'yards': 11331, 'vendor': 11
332, 'dunners': 11333, 'smug': 11334, 'whistleblower': 11335, 'wintour': 11336, 'accountsand': 11337, 'extended'
: 11338, 'earpiece': 11339, 'accidentaly': 11340, 'bikebuswalk': 11341, 'gin': 11342, 'previously': 11343, 'cont
ributed': 11344, 'stimulus': 11345, 'replacements': 11346, 'wildomar': 11347, 'towing': 11348, 'connie': 11349,
'previews': 11350, 'justsayin': 11351, 'kristine': 11352, 'jakarta': 11353, 'daughtry': 11354, 'flattened': 1135
5, 'teleconference': 11356, 'rdy': 11357, 'byeee': 11358, 'pss': 11359, 'kh': 11360, 'weeaboo': 11361, 'kinokuni
ya': 11362, 'splurge': 11363, 'morongo': 11364, 'twittix': 11365, 'favourites': 11366, 'rusks': 11367, 'fennel':
11368, 'camomile': 11369, 'lung': 11370, 'fuzz': 11371, 'hotdoggross': 11372, 'glre': 11373, 'fou': 11374, 'will
grace': 11375, 'podcasting': 11376, 'bittech': 11377, 'walle': 11378, 'whasup': 11379, 'azz': 11380, 'abuseplans
': 11381, 'canceledanother': 11382, 'luxurious': 11383, 'nacklacematching': 11384, 'earring': 11385, 'grannysano
ther': 11386, 'recovers': 11387, 'serco': 11388, 'excitednervous': 11389, 'latonya': 11390, 'thingsi': 11391, 'd
eeply': 11392, 'sidemyself': 11393, 'piercings': 11394, 'plopped': 11395, 'fandango': 11396, 'xblapsn': 11397, '
plana': 11398, 'breezehope': 11399, 'octo': 11400, 'advise': 11401, 'wellgotta': 11402, 'schoolgawd': 11403, 'mu
ltitaskin': 11404, 'nightmornin': 11405, 'pissssssing': 11406, 'doso': 11407, 'elope': 11408, 'mspacers': 11409,
'steadily': 11410, 'justcause': 11411, 'hotspots': 11412, 'shoppin': 11413, 'mcdicks': 11414, 'mush': 11415, 'ga
mefan': 11416, 'butwent': 11417, 'adios': 11418, 'mowed': 11419, 'toolbar': 11420, 'suuuuuuuurerub': 11421, 'pre
caution': 11422, 'vita': 11423, 'tomrrow': 11424, 'probby': 11425, 'gentlemen': 11426, 'discussing': 11427, 'wil
lie': 11428, 'zzzzzzzzzzzzzzz': 11429, 'herhseys': 11430, 'syrup': 11431, 'mussoooooo': 11432, 'twittername': 11
433, 'twitterfridge': 11434, 'trillin': 11435, 'hobnobbed': 11436, 'beautifuul': 11437, 'cofo': 11438, 'mondayba
ck': 11439, 'buyer': 11440, 'twitterring': 11441, 'facebooking': 11442, 'myspacing': 11443, 'bullshitting': 1144
4, 'voucher': 11445, 'punkin': 11446, 'newb': 11447, 'outsideim': 11448, 'nonyahoo': 11449, 'acc': 11450, 'bough
tout': 11451, 'yahoospam': 11452, 'minibar': 11453, 'starups': 11454, 'fakin': 11455, 'kishajust': 11456, 'beaut
': 11457, 'razzing': 11458, 'charli': 11459, 'howz': 11460, 'sacto': 11461, 'thenhows': 11462, 'todaybeing': 114
63, 'hopelol': 11464, 'orthadontist': 11465, 'trackall': 11466, 'codes': 11467, 'pierce': 11468, 'ncc': 11469, '
abcd': 11470, 'lhoste': 11471, 'rica': 11472, 'dumbo': 11473, 'eeyeathooo': 11474, 'arthritus': 11475, 'maintana
nce': 11476, 'commands': 11477, 'pxy': 11478, 'lieabuse': 11479, 'princessi': 11480, 'butineedhelp': 11481, 'mul
tiplayer': 11482, 'thurstag': 11483, 'excedrin': 11484, 'associated': 11485, 'shutupandsmile': 11486, 'mangaanim
e': 11487, 'kerry': 11488, 'gmtv': 11489, 'creature': 11490, 'wellonly': 11491, 'holidayssad': 11492, 'dilfs': 1
1493, 'monthhappy': 11494, 'arrange': 11495, 'maccabees': 11496, 'misanthrope': 11497, 'humanity': 11498, 'shout
z': 11499, 'nervvoouuss': 11500, 'showww': 11501, 'slaving': 11502, 'signature': 11503, 'weekeeend': 11504, 'twi
ttpic': 11505, 'diddy': 11506, 'jumpstart': 11507, 'wotd': 11508, 'jape': 11509, 'qq': 11510, 'comppetitive': 11
511, 'overcompetitive': 11512, 'tweetstats': 11513, 'gotdamn': 11514, 'voyager': 11515, 'lint': 11516, 'mitglee'
: 11517, 'wheew': 11518, 'stickersss': 11519, 'blazin': 11520, 'revival': 11521, 'redirect': 11522, 'frequent':
11523, 'yaayy': 11524, 'hmmyou': 11525, 'thaty': 11526, 'slide': 11527, 'crrrrrazy': 11528, 'thoughtsabuse': 115
29, 'hubbyeagle': 11530, 'cia': 11531, 'defying': 11532, 'firepit': 11533, 'bootleg': 11534, 'pharos': 11535, 'c
oukd': 11536, 'flair': 11537, 'dinasadik': 11538, 'forensic': 11539, 'kya': 11540, 'bas': 11541, 'jaao': 11542,
'microhavin': 11543, 'soonthe': 11544, 'diagnosis': 11545, 'cervical': 11546, 'sosososo': 11547, 'gum': 11548, '
againreally': 11549, 'dow': 11550, 'futures': 11551, 'furs': 11552, 'sourish': 11553, 'limbs': 11554, 'preventin
g': 11555, 'timeeven': 11556, 'gracious': 11557, 'wrecking': 11558, 'soaking': 11559, 'tisha': 11560, 'cloudsand
': 11561, 'abusehand': 11562, 'localgovcamp': 11563, 'trytomergetwotools': 11564, 'frameworks': 11565, 'lifting'
: 11566, 'manabuse': 11567, 'crimson': 11568, 'elton': 11569, 'allowing': 11570, 'willdo': 11571, 'anythig': 115
72, 'lof': 11573, 'sonic': 11574, 'alyssas': 11575, 'doomsday': 11576, 'jbum': 11577, 'creations': 11578, 'thorp
e': 11579, 'pleaseeeeeeeeeee': 11580, 'supper': 11581, 'kurumi': 11582, 'dev': 11583, 'peicing': 11584, 'againmi
ley': 11585, 'chromes': 11586, 'popup': 11587, 'blocker': 11588, 'thatv': 11589, 'spaniel': 11590, 'problemfree'
: 11591, 'brawn': 11592, 'mclaren': 11593, 'wellness': 11594, 'smartphone': 11595, 'postexams': 11596, 'examsnow
': 11597, 'focusing': 11598, 'schooldayuumm': 11599, 'swoobs': 11600, 'swass': 11601, 'cyalater': 11602, 'grumbl
eweather': 11603, 'alonetough': 11604, 'ouuuuuuuuuchhhhhhhh': 11605, 'barca': 11606, 'spanking': 11607, 'seeit':
11608, 'lolthat': 11609, 'lolipop': 11610, 'esploder': 11611, 'twenties': 11612, 'knuckle': 11613, 'duuuude': 11
614, 'inr': 11615, 'abusewelcome': 11616, 'homeabuse': 11617, 'olympics': 11618, 's�o': 11619, 'brasilia': 116
20, 'cyborgs': 11621, 'hysterics': 11622, 'yaas': 11623, 'technologyabuse': 11624, 'guysill': 11625, 'guysthree'
: 11626, 'froggies': 11627, 'rounding': 11628, 'bases': 11629, 'relays': 11630, 'unmarried': 11631, 'keane': 116
32, 'chicagoand': 11633, 'wellll': 11634, 'wildflowers': 11635, 'capitan': 11636, 'cookiewise': 11637, 'morrow':
11638, 'tarde': 11639, 'chegay': 11640, 'lauras': 11641, 'chocr': 11642, 'rounds': 11643, 'gourds': 11644, 'also
up': 11645, 'earlylolsoo': 11646, 'holden': 11647, 'nowpretty': 11648, 'workies': 11649, 'goodbyeeee': 11650, 'i
nthebattle': 11651, 'arrangement': 11652, 'sickand': 11653, 'bubblies': 11654, 'ngobrolin': 11655, 'cii': 11656,
'kesian': 11657, 'kamu': 11658, 'speakernya': 11659, 'rusak': 11660, 'benerin': 11661, 'thisbrandi': 11662, 'tog
ethers': 11663, 'aswered': 11664, 'easton': 11665, 'basten': 11666, 'memorys': 11667, 'commin': 11668, 'lumpia':
11669, 'pancit': 11670, 'supposeddd': 11671, 'quid': 11672, 'interests': 11673, 'bobo': 11674, 'bobobyebye': 116
75, 'telemarketers': 11676, 'superglue': 11677, 'alerts': 11678, 'association': 11679, 'afganistan': 11680, 'phe
nomenon': 11681, 'moderators': 11682, 'niandra': 11683, 'revisingg': 11684, 'macvim': 11685, 'oneill': 11686, 'r
acin': 11687, 'hahahahahahhah': 11688, 'shitload': 11689, 'readmitted': 11690, 'threenight': 11691, 'discharge':
11692, 'hardcoremetalcore': 11693, 'shrunk': 11694, 'cardigan': 11695, 'guybut': 11696, 'myfriends': 11697, 'sti
tchesi': 11698, 'afgan': 11699, 'hollykins': 11700, 'soproudofyou': 11701, 'pampered': 11702, 'pasadena': 11703,
'sergi': 11704, 'vive': 11705, 'fulfilling': 11706, 'screamer': 11707, 'todaytryouts': 11708, 'unappealing': 117
09, 'backkkk': 11710, 'lvttbt': 11711, 'crest': 11712, 'subliminal': 11713, 'ngayon': 11714, 'nagrerehab': 11715
, 'booooored': 11716, 'gratitude': 11717, 'taxman': 11718, 'hongkong': 11719, 'goooooooooooooooooooooooood': 117
20, 'reflected': 11721, 'youhoping': 11722, 'soonim': 11723, 'flor': 11724, 'correspondents': 11725, 'dreamwidth
': 11726, 'journaling': 11727, 'educating': 11728, 'lifelovestress': 11729, 'terasse': 11730, 'mtl': 11731, 'bad
sorry': 11732, 'builds': 11733, 'maxwell': 11734, 'hammock': 11735, 'chased': 11736, 'quesadillas': 11737, 'dinn
a': 11738, 'hink': 11739, 'elgin': 11740, 'withn': 11741, 'stayn': 11742, 'monthwowi': 11743, 'pitts': 11744, 'g
arageband': 11745, 'abusehelicopters': 11746, 'penisabuse': 11747, 'bahama': 11748, 'btwo': 11749, 'bymyself': 1
1750, 'thnk': 11751, 'blipping': 11752, 'charmed': 11753, 'hehee': 11754, 'explained': 11755, 'bwahahahahahahaha
': 11756, 'doggy': 11757, 'abusemoment': 11758, 'silenceabuse': 11759, 'hog': 11760, 'commiseration': 11761, 'go
urmet': 11762, 'greasy': 11763, 'slurpees': 11764, 'diplomat': 11765, 'tylers': 11766, 'exausted': 11767, 'krist
ie': 11768, 'languishing': 11769, 'api': 11770, 'survivor': 11771, 'refs': 11772, 'yaos': 11773, 'wcf': 11774, '
supplies': 11775, 'marzipan': 11776, 'allyson': 11777, 'lnger': 11778, 'mandriva': 11779, 'genre': 11780, 'fann'
: 11781, 'minish': 11782, 'ezlo': 11783, 'brokeoh': 11784, 'beardburk': 11785, 'optimistic': 11786, 'romantici':
11787, 'timeand': 11788, 'youyou': 11789, 'tnite': 11790, 'mortgage': 11791, 'ispoor': 11792, 'cowell': 11793, '
morninq': 11794, 'inbound': 11795, 'tunnel': 11796, 'lipz': 11797, 'avatarcamp': 11798, 'pres': 11799, 'gode': 1
1800, 'ould': 11801, 'decides': 11802, 'ahd': 11803, 'jackmans': 11804, 'butcking': 11805, 'larin': 11806, 'dari
o': 11807, 'tk': 11808, 'inet': 11809, 'smackdown': 11810, 'tatteddddd': 11811, 'luckkyy': 11812, 'causins': 118
13, 'addresses': 11814, 'artesia': 11815, 'cerritos': 11816, 'quest': 11817, 'flys': 11818, 'veranda': 11819, 'm
inas': 11820, 'tirith': 11821, 'tipped': 11822, 'lanham': 11823, 'sadim': 11824, 'biking': 11825, 'iknowww': 118
26, 'oneand': 11827, 'thirtyshhhyoure': 11828, 'nowmine': 11829, 'warp': 11830, 'serena': 11831, 'darrian': 1183
2, 'microeconomics': 11833, 'ilets': 11834, 'aeropuerto': 11835, 'phishing': 11836, 'eeee': 11837, 'abuseenormou
s': 11838, 'hugabuse': 11839, 'crosby': 11840, 'guyz': 11841, 'doinq': 11842, 'eligable': 11843, 'buttermilk': 1
1844, 'branding': 11845, 'drea': 11846, 'boubous': 11847, 'crunk': 11848, 'mnet': 11849, 'nanosecond': 11850, 'c
eltic': 11851, 'bugstime': 11852, 'interminable': 11853, 'rowwishing': 11854, 'griffins': 11855, 'spades': 11856
, 'careless': 11857, 'hedge': 11858, 'sos': 11859, 'accompanied': 11860, 'gliss': 11861, 'brandi': 11862, 'gigwi
se': 11863, 'string': 11864, 'doppppe': 11865, 'moshie': 11866, 'moshhhh': 11867, 'misadventures': 11868, 'round
abouts': 11869, 'proximately': 11870, 'eviction': 11871, 'internetz': 11872, 'reaaaally': 11873, 'greshamblake':
11874, 'loveyou': 11875, 'inkheart': 11876, 'yardsale': 11877, 'wembley': 11878, 'alwas': 11879, 'foreigners': 1
1880, 'starla': 11881, 'inspiron': 11882, 'hdd': 11883, 'ooops': 11884, 'frak': 11885, 'aaaaaaaahhhhhhhh': 11886
, 'widgets': 11887, 'frustrationi': 11888, 'wp': 11889, 'updatesthey': 11890, 'timesback': 11891, 'booted': 1189
2, 'preep': 11893, 'luigis': 11894, 'charliei': 11895, 'ladiez': 11896, 'cz': 11897, 'yultron': 11898, 'tongits'
: 11899, 'hackday': 11900, 'openhacklondon': 11901, 'heygot': 11902, 'cannae': 11903, 'nae': 11904, 'livi': 1190
5, 'baad': 11906, 'sittting': 11907, 'quasisequel': 11908, 'ady': 11909, 'curvey': 11910, 'priests': 11911, 'thi
rds': 11912, 'eclipsethen': 11913, 'ls': 11914, 'aaauuuggghhh': 11915, 'multitask': 11916, 'tanks': 11917, 'spaw
ning': 11918, 'squidswho': 11919, 'hafta': 11920, 'alrightim': 11921, 'flores': 11922, 'blackberrymessenger': 11
923, 'doet': 11924, 'suwweeeeet': 11925, 'fondont': 11926, 'howeva': 11927, 'gaffigan': 11928, 'lovei': 11929, '
stake': 11930, 'monte': 11931, 'cristo': 11932, 'routines': 11933, 'darfur': 11934, 'earthquake': 11935, 'submar
ine': 11936, 'fiber': 11937, 'optics': 11938, 'wired': 11939, 'renewal': 11940, 'reject': 11941, 'oversleeping':
11942, 'gracie': 11943, 'pounced': 11944, 'thoughbbqs': 11945, 'thoughfeeling': 11946, 'csla': 11947, 'huwwts':
11948, 'regionals': 11949, 'joelted': 11950, 'abuseuhabuse': 11951, 'gentoo': 11952, 'reinstallation': 11953, 'm
akeconf': 11954, 'goderich': 11955, 'staceys': 11956, 'saaaaaaid': 11957, 'pinkberry': 11958, 'boystown': 11959,
'eastwood': 11960, 'motorbikes': 11961, 'cuteness': 11962, 'empress': 11963, 'agoive': 11964, 'gangsterrr': 1196
5, 'howard': 11966, 'lorraines': 11967, 'tricks': 11968, 'meor': 11969, 'apperently': 11970, 'picat': 11971, 'sw
eeeeet': 11972, 'minutos': 11973, 'splitup': 11974, 'kindaguy': 11975, 'slutted': 11976, 'jealz': 11977, 'naplan
': 11978, 'goldmine': 11979, 'cancuks': 11980, 'rothlisberger': 11981, 'abusebookmarkabuse': 11982, 'padawan': 1
1983, 'provoking': 11984, 'mjname': 11985, 'lmfaoo': 11986, 'graveyard': 11987, 'atltweet': 11988, 'abusethumbs'
: 11989, 'lopatcong': 11990, 'damnation': 11991, 'thatburger': 11992, 'subwayyum': 11993, 'cfs': 11994, 'dvbs':
11995, 'fa': 11996, 'concretize': 11997, 'marg': 11998, 'tonites': 11999, 'airsoft': 12000, 'marrrrrrrrrry': 120
01, 'todayits': 12002, 'ecpm': 12003, 'gryffindor': 12004, 'hahhh': 12005, 'cliiimb': 12006, 'mt': 12007, 'belli
on': 12008, 'spiced': 12009, 'yummmmmyyyy': 12010, 'herbs': 12011, 'yummyi': 12012, 'smal': 12013, 'pleess': 120
14, 'hahaaaha': 12015, 'samson': 12016, 'delilah': 12017, 'forbid': 12018, 'spamspamspam': 12019, 'keiths': 1202
0, 'lest': 12021, 'vital': 12022, 'janey': 12023, 'ableton': 12024, 'sunrash': 12025, 'minday': 12026, 'lettersw
hat': 12027, 'writeoh': 12028, 'freindshirley': 12029, 'proofing': 12030, 'orals': 12031, 'ife': 12032, 'priorit
izing': 12033, 'hurdles': 12034, 'ironpoodonia': 12035, 'raininy': 12036, 'hwgonna': 12037, 'labs': 12038, 'enzo
': 12039, 'usd': 12040, 'losses': 12041, 'comanche': 12042, 'romo': 12043, 'pilots': 12044, 'muses': 12045, 'ton
ightmaybe': 12046, 'nycbut': 12047, 'cayman': 12048, 'islands': 12049, 'pushit': 12050, 'evn': 12051, 'sicknot':
12052, 'ricky': 12053, 'stunkno': 12054, 'profiel': 12055, 'viewed': 12056, 'jole': 12057, 'erwin': 12058, 'blom
': 12059, 'selfchange': 12060, 'perfume': 12061, 'nowhmm': 12062, 'tarot': 12063, 'dhs': 12064, 'bsod': 12065, '
univ': 12066, 'tsss': 12067, 'hectiv': 12068, 'goof': 12069, 'bigi': 12070, 'earnest': 12071, 'argggggg': 12072,
'yeg': 12073, 'edmonton': 12074, 'hammockno': 12075, 'vidoe': 12076, 'vas': 12077, 'commodity': 12078, 'crossclo
ud': 12079, 'anstee': 12080, 'monumental': 12081, 'evaluating': 12082, 'peopledont': 12083, 'droppedcome': 12084
, 'collage': 12085, 'feminism': 12086, 'supermodel': 12087, 'drumming': 12088, 'ddd': 12089, 'castle': 12090, 'r
ainhumidity': 12091, 'hbd': 12092, 'marrying': 12093, 'lovable': 12094, 'justwatched': 12095, 'everi': 12096, 't
ouches': 12097, 'grillz': 12098, 'plaque': 12099, 'okie': 12100, 'calms': 12101, 'sailed': 12102, 'ccos': 12103,
'ohay': 12104, 'fs': 12105, 'twitterbugs': 12106, 'norfolk': 12107, 'skankinwhat': 12108, 'talinda': 12109, 'enj
oywish': 12110, 'springfield': 12111, 'todayhowever': 12112, 'cheeky': 12113, 'rsssunday': 12114, 'goodhe': 1211
5, 'colleagueswould': 12116, 'whahahah': 12117, 'goods': 12118, 'drooping': 12119, 'react': 12120, 'poise': 1212
1, 'toooooo': 12122, 'wooven': 12123, 'woantitip': 12124, 'woven': 12125, 'backorder': 12126, 'nowyour': 12127,
'careys': 12128, 'beover': 12129, 'doubleclick': 12130, 'packill': 12131, 'preseason': 12132, 'drawls': 12133, '
dreps': 12134, 'talkthe': 12135, 'endorsed': 12136, 'twindexxcom': 12137, 'massagedk': 12138, 'pulish': 12139, '
finito': 12140, 'blurryness': 12141, 'rosieabuse': 12142, 'yooo': 12143, 'competitionhope': 12144, 'delightful':
12145, 'desribe': 12146, 'nightneed': 12147, 'goslings': 12148, 'myers': 12149, 'automobiles': 12150, 'juan': 12
151, 'pelota': 12152, 'wayyyyyy': 12153, 'preggo': 12154, 'trolley': 12155, 'mckinney': 12156, 'actially': 12157
, 'derekbellcom': 12158, 'trinity': 12159, 'agessss': 12160, 'sesh': 12161, 'kawawas': 12162, 'abusive': 12163,
'racoon': 12164, 'urlmincnmt': 12165, 'pinocchios': 12166, 'okot': 12167, 'laineygossip': 12168, 'taylena': 1216
9, 'heartbreaks': 12170, 'sorryyyyyy': 12171, 'agustin': 12172, 'banjo': 12173, 'tooie': 12174, 'sundress': 1217
5, 'component': 12176, 'cables': 12177, 'overslept': 12178, 'stunned': 12179, 'dishwasher': 12180, 'buckling': 1
2181, 'inanity': 12182, 'doggymy': 12183, 'hammymy': 12184, 'fishes': 12185, 'squeeze': 12186, 'boognish': 12187
, 'clemmie': 12188, 'ahhahahaha': 12189, 'ariyan': 12190, 'hamish': 12191, 'bsd': 12192, 'longing': 12193, 'brrr
': 12194, 'influx': 12195, 'restricted': 12196, 'priviledges': 12197, 'plantin': 12198, 'soil': 12199, 'tiny�s
': 12200, 'grin': 12201, 'topify': 12202, 'recieving': 12203, 'vaccines': 12204, 'exists': 12205, 'restriction':
12206, 'aaaaandnothin': 12207, 'newlyweds': 12208, 'drift': 12209, 'palisades': 12210, 'trudged': 12211, 'anathe
m': 12212, 'hellooooooo': 12213, 'nate': 12214, 'pei': 12215, 'wei': 12216, 'biggiehe': 12217, 'blasti': 12218,
'empanadas': 12219, 'mtb': 12220, 'noooooooooooooooooo': 12221, 'engadget': 12222, 'diggg': 12223, 'siento': 122
24, 'hooome': 12225, 'movieloved': 12226, 'faves': 12227, 'hahaooh': 12228, 'ouchi': 12229, 'raspberrylaced': 12
230, 'photoblog': 12231, 'communicate': 12232, 'hyperbirdies': 12233, 'terrorizing': 12234, 'watchpoor': 12235,
'kalies': 12236, 'creeping': 12237, 'backing': 12238, 'brusters': 12239, 'refrigerator': 12240, 'barbs': 12241,
'dsl': 12242, 'connecting': 12243, 'uphave': 12244, 'followerswonderful': 12245, 'darkest': 12246, 'boofy': 1224
7, 'bitim': 12248, 'extensions': 12249, 'abusefkcabuse': 12250, 'tauren': 12251, 'shaman': 12252, 'icewater': 12
253, 'ogberry': 12254, 'honestypain': 12255, 'sunehre': 12256, 'retract': 12257, 'thennnnnnnn': 12258, 'rumbo':
12259, 'bachilleres': 12260, 'mysterio': 12261, 'dfb': 12262, 'werder': 12263, 'luckyand': 12264, 'shabu': 12265
, 'comforting': 12266, 'efteling': 12267, 'anwb': 12268, 'lays': 12269, 'backaches': 12270, 'daze': 12271, 'ster
eosound': 12272, 'underpaid': 12273, 'couldbut': 12274, 'gladsad': 12275, 'badoptus': 12276, 'snot': 12277, 'fin
sh': 12278, 'allowd': 12279, 'coldplaying': 12280, 'catchfire': 12281, 'plumbers': 12282, 'calgon': 12283, 'road
sthe': 12284, 'shiningnew': 12285, 'haileys': 12286, 'preoccupied': 12287, 'tones': 12288, 'dealz': 12289, 'laut
nerdaily': 12290, 'poooooooor': 12291, 'sheeeep': 12292, 'chickadee': 12293, 'mcsupergirl': 12294, 'hickups': 12
295, 'eather': 12296, 'abusewabble': 12297, 'wabbleabuse': 12298, 'thorw': 12299, 'wondefl': 12300, 'michaelbles
sings': 12301, 'denis': 12302, 'uds': 12303, 'buisnesses': 12304, 'lender': 12305, 'morcom': 12306, 'haylee': 12
307, 'milkshakeshakeshakeshake': 12308, 'creator': 12309, 'phobias': 12310, 'cunning': 12311, 'talkedabout': 123
12, 'cyderrrrrrrrr': 12313, 'fatfingered': 12314, 'atmbeen': 12315, 'hru': 12316, 'grrrri': 12317, 'livesi': 123
18, 'keren': 12319, 'pretwitter': 12320, 'formal': 12321, 'tentside': 12322, 'sessionmosh': 12323, 'edgefessssss
t': 12324, 'meanstill': 12325, 'willblok': 12326, 'aussies': 12327, 'reaons': 12328, 'itmatt': 12329, 'khaki': 1
2330, 'sonicswhich': 12331, 'bred': 12332, 'oic': 12333, 'thenthanks': 12334, 'dreamweaver': 12335, 'lmaaaooooo'
: 12336, 'ppls': 12337, 'underground': 12338, 'mildura': 12339, 'mhhhwhatever': 12340, 'steakhouse': 12341, 'ner
diest': 12342, 'chilis': 12343, 'beignet': 12344, 'bexi': 12345, 'celebrates': 12346, 'anyhooohappy': 12347, 'mu
mzys': 12348, 'breakout': 12349, 'bethhh': 12350, 'carpenters': 12351, 'numbertopical': 12352, 'ohim': 12353, 'r
aphael': 12354, 'saadiq': 12355, 'frosted': 12356, 'wheats': 12357, 'woooooooooo': 12358, 'arrggh': 12359, 'sett
leneed': 12360, 'kava': 12361, 'attach': 12362, 'mammals': 12363, 'mammary': 12364, 'trueee': 12365, 'damjust':
12366, 'islip': 12367, 'killme': 12368, 'anekie': 12369, 'mua': 12370, 'tracie': 12371, 'weaver': 12372, 'kap':
12373, 'hooorah': 12374, 'anychance': 12375, 'cripple': 12376, 'twizzler': 12377, 'spyed': 12378, 'listented': 1
2379, 'zuccini': 12380, 'sexify': 12381, 'bribe': 12382, 'toggling': 12383, 'ganesh': 12384, 'jaju': 12385, 'bel
grade': 12386, 'borat': 12387, 'soready': 12388, 'tonightfox': 12389, 'caww': 12390, 'newsboys': 12391, 'luckyyy
': 12392, 'capture': 12393, 'grrrrrrrrrrrrrrr': 12394, 'reasoning': 12395, 'tutor': 12396, 'alternatively': 1239
7, 'whit': 12398, 'trojancongrats': 12399, 'palominos': 12400, 'miri': 12401, 'rugrats': 12402, 'anndd': 12403,
'yesthere': 12404, 'abuseshudderabuse': 12405, 'findings': 12406, 'elance': 12407, 'hime': 12408, 'njoying': 124
09, 'joomla': 12410, 'sinned': 12411, 'inlaw': 12412, 'dnb': 12413, 'partyyy': 12414, 'indexed': 12415, 'unload'
: 12416, 'evenin': 12417, 'nicer': 12418, 'norf': 12419, 'paperbound': 12420, 'zit': 12421, 'herpes': 12422, 're
pops': 12423, 'brokun': 12424, 'humuns': 12425, 'maybee': 12426, 'agin': 12427, 'wun': 12428, 'gtgs': 12429, 'wi
thinso': 12430, 'individually': 12431, 'loafing': 12432, 'stiff': 12433, 'aundy': 12434, 'yinz': 12435, 'mssql':
12436, 'connects': 12437, 'pageprom': 12438, 'evili': 12439, 'sillyness': 12440, 'goodnite': 12441, 'ibood': 124
42, 'moho': 12443, 'backline': 12444, 'xbl': 12445, 'giver': 12446, 'rewards': 12447, 'givers': 12448, 'dowe': 1
2449, 'woof': 12450, 'hhhhhhaaaaaaaaaaaaa': 12451, 'tearsits': 12452, 'po': 12453, 'bais': 12454, 'teasing': 124
55, 'decrease': 12456, 'yaa': 12457, 'shunt': 12458, 'persauded': 12459, 'licked': 12460, 'inconsiderate': 12461
, 'rapp': 12462, 'yayyyyyyy': 12463, 'nowto': 12464, 'flattie': 12465, 'reagan': 12466, 'tjefferson': 12467, 'tr
oosevelt': 12468, 'subconscience': 12469, 'outits': 12470, 'haul': 12471, 'wagners': 12472, 'summerjust': 12473,
'ravenclaw': 12474, 'mykas': 12475, 'begged': 12476, 'caruso': 12477, 'murdered': 12478, 'wellthat': 12479, '�
tear�': 12480, 'omgg': 12481, 'onethose': 12482, 'outstanding': 12483, 'malibu': 12484, 'jacketsuncomfortablen
ot': 12485, 'gio': 12486, 'yujm': 12487, 'pinkapple': 12488, 'bins': 12489, 'twitfriends': 12490, 'tpt': 12491,
'shortest': 12492, 'fcb': 12493, 'tunapuna': 12494, 'tellers': 12495, 'temme': 12496, 'firangs': 12497, 'pyr': 1
2498, 'doorknobs': 12499, 'crushing': 12500, 'jaws': 12501, 'studiomade': 12502, 'ssssssssssmack': 12503, 'ww':
12504, 'dresss': 12505, 'daysoff': 12506, 'offugh': 12507, 'brlliant': 12508, 'basaravalkyria': 12509, 'chronicl
esrequiemforthephantomedenoftheeast': 12510, 'camper': 12511, 'humm': 12512, 'broc': 12513, 'insecticidal': 1251
4, 'pests': 12515, 'raly': 12516, 'tak': 12517, 'umhow': 12518, 'wathing': 12519, 'taquito': 12520, 'choregoraph
y': 12521, 'pantsnot': 12522, 'singz': 12523, 'girrrlfriendim': 12524, 'leavinim': 12525, 'holby': 12526, 'nadin
e': 12527, 'lewington': 12528, 'clifford': 12529, 'dere': 12530, 'greenlake': 12531, 'invalid': 12532, 'waaaaayy
yyy': 12533, 'fickleness': 12534, 'paradice': 12535, 'dove': 12536, 'eliminating': 12537, 'bludgers': 12538, 'be
aters': 12539, 'tackling': 12540, 'quidditch': 12541, 'uniteddogscom': 12542, 'poppy': 12543, 'improperly': 1254
4, 'flame': 12545, 'heckitty': 12546, 'abusexoxoabuse': 12547, 'correctiona': 12548, 'mobiles': 12549, 'advantag
es': 12550, 'lux': 12551, 'aerosmith': 12552, 'everr': 12553, 'differences': 12554, 'pineforest': 12555, 'ooow':
12556, 'kidz': 12557, 'meaningful': 12558, 'doesi': 12559, 'pusher': 12560, 'clashes': 12561, 'uswitchnet': 1256
2, 'bayliss': 12563, 'scotter': 12564, 'cochran': 12565, 'serie': 12566, 'tulane': 12567, 'ghostwhisperer': 1256
8, 'hasa': 12569, 'casserole': 12570, 'sardines': 12571, 'onpeak': 12572, 'downloads': 12573, 'firstbut': 12574,
'migrates': 12575, 'vsp': 12576, 'config': 12577, 'xxxxxx': 12578, 'carparks': 12579, 'avocado': 12580, 'hayfeve
ry': 12581, 'sufferin': 12582, 'superstition': 12583, 'panasonic': 12584, 'chargersorry': 12585, 'alrightyou': 1
2586, 'sperm': 12587, 'clone': 12588, 'thomson': 12589, 'nocturnal': 12590, 'serendipity': 12591, 'kashmir': 125
92, 'shane': 12593, 'dawson': 12594, 'pixabt': 12595, 'ubut': 12596, 'basics': 12597, 'analysis': 12598, 'britta
': 12599, 'pitwas': 12600, 'leafs': 12601, 'glade': 12602, 'debian': 12603, 'euphamism': 12604, 'fightdid': 1260
5, 'rally': 12606, 'thaw': 12607, 'hangers': 12608, 'nationals': 12609, 'diwali': 12610, 'saddi': 12611, 'dilli'
: 12612, 'smores': 12613, 'jacuzzi': 12614, 'yesmet': 12615, 'questionning': 12616, 'outright': 12617, 'deny': 1
2618, 'accusations': 12619, 'zippys': 12620, 'candace': 12621, 'youngest': 12622, 'gss': 12623, 'hxc': 12624, 'c
hanel': 12625, 'pedder': 12626, 'ferragamo': 12627, 'downturn': 12628, 'hennings': 12629, 'gwt': 12630, 'dogas':
12631, 'offtopic': 12632, 'inappropriate': 12633, 'germination': 12634, 'torts': 12635, 'smokefree': 12636, 'fri
endlyand': 12637, 'delicacies': 12638, 'situational': 12639, 'furby': 12640, 'cert': 12641, 'handful': 12642, 'u
nny': 12643, 'wna': 12644, 'meya': 12645, 'keemie': 12646, 'countdown': 12647, 'splendid': 12648, 'weeping': 126
49, 'chewy': 12650, 'erocka': 12651, 'ruler': 12652, 'basshunter': 12653, 'metroplex': 12654, 'supervillians': 1
2655, 'warfield': 12656, 'thanksthere': 12657, 'goodknight': 12658, 'blockhead': 12659, 'citibank': 12660, 'gran
nys': 12661, 'stressfree': 12662, 'booksold': 12663, 'livlyf': 12664, 'spay': 12665, 'motto': 12666, 'bitch': 12
667, 'supposeand': 12668, 'freude': 12669, 'texy': 12670, 'collister': 12671, 'trackballs': 12672, 'retailer': 1
2673, 'oar': 12674, 'bedbut': 12675, 'stressing': 12676, 'keepin': 12677, 'missinmydgbigtyme': 12678, 'persisten
t': 12679, 'coughs': 12680, 'workman': 12681, 'graduationthey': 12682, 'electronic': 12683, 'keyhole': 12684, 'u
neventful': 12685, 'cosmo': 12686, 'kamikaze': 12687, 'carbs': 12688, 'jdubb': 12689, 'jobi': 12690, 'cole': 126
91, 'stacking': 12692, 'tweetsjust': 12693, 'beshia': 12694, 'awwwwww': 12695, 'abbreviate': 12696, 'ytony': 126
97, 'bookcalled': 12698, 'influence': 12699, 'homei�m': 12700, 'tiredhad': 12701, 'goits': 12702, 'recogns': 1
2703, 'silencedoesnt': 12704, 'cheerful': 12705, 'yoube': 12706, 'bounds': 12707, 'combat': 12708, 'oi': 12709,
'todaysad': 12710, 'compliments': 12711, 'lovesnkotb': 12712, 'yupas': 12713, 'alwayswonder': 12714, 'earthgetti
ng': 12715, 'suhweet': 12716, 'migrate': 12717, 'julias': 12718, 'supastition': 12719, 'tkd': 12720, 'instructor
': 12721, 'stunningly': 12722, 'thread': 12723, 'lostthegame': 12724, 'officedesperately': 12725, 'bromeliad': 1
2726, 'majors': 12727, 'rejoice': 12728, 'warmth': 12729, 'depth': 12730, 'solve': 12731, 'eewwwww': 12732, 'poi
ntless': 12733, 'nan': 12734, 'bradies': 12735, 'varieties': 12736, 'weekwork': 12737, 'morningot': 12738, 'sadt
hen': 12739, 'whateverworks': 12740, 'fireflythats': 12741, 'fillion': 12742, 'kimmy': 12743, 'jittery': 12744,
'afc': 12745, 'atx': 12746, 'recouperating': 12747, 'treatments': 12748, 'tubs': 12749, 'vmail': 12750, 'protool
s': 12751, 'persia': 12752, 'rem': 12753, 'gooooooooood': 12754, 'tempe': 12755, 'marketplace': 12756, 'complian
ce': 12757, 'umpireing': 12758, 'trainging': 12759, 'mhs': 12760, 'screamm': 12761, 'participated': 12762, 'mata
nggap': 12763, 'drumsticks': 12764, 'hamburg': 12765, 'detlev': 12766, 'fischer': 12767, 'accessibility': 12768,
'bitv': 12769, 'd�sseldorf': 12770, 'mints': 12771, 'transatlantic': 12772, 'reskinned': 12773, 'tweetsuite':
12774, 'nicci': 12775, 'h�ltermand': 12776, 'kaare': 12777, 'iâ´ve': 12778, 'masthanks': 12779, 'daysbut': 127
80, 'happyemox': 12781, 'schoollol': 12782, 'clown': 12783, 'solange': 12784, 'dedicating': 12785, 'parental': 1
2786, 'amazinq': 12787, 'qirlsniqhtout': 12788, 'quess': 12789, 'qreat': 12790, 'disspointed': 12791, 'lifehacke
rs': 12792, 'wombat': 12793, 'tamara': 12794, 'reservesi': 12795, 'sinks': 12796, 'toilets': 12797, 'spattered':
12798, 'cheeto': 12799, 'theyr': 12800, 'cld': 12801, 'responded': 12802, 'rawknrollnet': 12803, 'vivid': 12804,
'rawk': 12805, 'wikid': 12806, 'myne': 12807, 'ned': 12808, 'dudde': 12809, 'allllllllright': 12810, 'exposed':
12811, 'baaaby': 12812, 'waaaah': 12813, 'jodie': 12814, 'chandelier': 12815, 'steps': 12816, 'abusebonusabuse':
12817, 'recoup': 12818, 'investment': 12819, 'unprepared': 12820, 'othaa': 12821, 'gurrrrrl': 12822, 'brotherskr
isti': 12823, 'abusebuildabuse': 12824, 'lawnmower': 12825, 'swampedso': 12826, 'twitteri': 12827, 'knowbut': 12
828, 'populated': 12829, 'sastch': 12830, 'cellstorms': 12831, 'jayel': 12832, 'maricar': 12833, 'squeegee': 128
34, 'noggin': 12835, 'storyteller': 12836, 'dos': 12837, 'aarrgghh': 12838, 'fuabuseka': 12839, 'hose': 12840, '
floating': 12841, 'eddplant': 12842, 'ariella': 12843, 'gonzalez': 12844, 'yearling': 12845, 'emmett': 12846, 'w
ellur': 12847, 'kritt': 12848, 'einstein': 12849, 'hving': 12850, 'cystic': 12851, 'lacrimal': 12852, 'infectect
ion': 12853, 'vespa': 12854, 'subbed': 12855, 'pikanichi': 12856, 'heeeee': 12857, 'nicley': 12858, 'incestuous'
: 12859, 'chavs': 12860, 'elsewhere': 12861, 'ladie': 12862, 'lenses': 12863, 'bordatella': 12864, 'gettt': 1286
5, 'assing': 12866, 'biznesssss': 12867, 'whaatttaatttt': 12868, 'sierra': 12869, 'aparantly': 12870, 'ihop': 12
871, 'bestiesminus': 12872, 'concerns': 12873, 'roxy': 12874, 'palmade': 12875, 'scarf': 12876, 'fanatic': 12877
, 'islet': 12878, 'cooraperates': 12879, 'gooooodnight': 12880, 'igbaras': 12881, 'rideyes': 12882, 'melika': 12
883, 'busier': 12884, 'incomplete': 12885, 'errg': 12886, 'duuuum': 12887, 'margrete': 12888, 'burping': 12889,
'russ': 12890, 'ionoi': 12891, 'asos': 12892, 'mccafetastes': 12893, 'mcskillet': 12894, 'churros': 12895, 'psh'
: 12896, 'openhouses': 12897, 'himokok': 12898, 'wahoo': 12899, 'glassez': 12900, 'nownobody': 12901, 'friendyou
': 12902, 'gbw': 12903, 'alexanders': 12904, 'collared': 12905, 'hitched': 12906, 'closin': 12907, 'touche': 129
08, 'wrestlers': 12909, 'tna': 12910, 'clowns': 12911, 'ikeas': 12912, 'elsens': 12913, 'paranoif': 12914, 'rubi
ks': 12915, 'chew': 12916, 'aerobics': 12917, 'wahamerican': 12918, 'chweet': 12919, 'muaxxx': 12920, 'awwwwwwww
': 12921, 'dried': 12922, 'nemecek': 12923, 'keed': 12924, 'musicnews': 12925, 'bothers': 12926, 'metabolism': 1
2927, 'congratses': 12928, 'tew': 12929, 'shantz': 12930, 'shantell': 12931, 'outro': 12932, 'whoshere': 12933,
'atg': 12934, 'openabuseshuts': 12935, 'mute': 12936, 'gfriend': 12937, 'trackk': 12938, 'mebc': 12939, 'songpet
er': 12940, 'zenrelated': 12941, 'iabusem': 12942, 'bithday': 12943, 'pierre': 12944, 'thnkn': 12945, 'yesterday
best': 12946, 'virtus': 12947, 'treviso': 12948, 'futurshowhard': 12949, 'gamegotta': 12950, 'forza': 12951, 'ra
gazzi': 12952, 'nailpolish': 12953, 'fluffodile': 12954, 'teg': 12955, 'tess': 12956, 'frey': 12957, 'dohforgot'
: 12958, 'teevee': 12959, 'beatrice': 12960, 'windowabuse': 12961, 'luciano': 12962, 'tremendous': 12963, 'winte
rboard': 12964, 'parcel': 12965, 'schoolwhatever': 12966, 'candis': 12967, 'ayoko': 12968, 'tagalog': 12969, 'de
pechemode': 12970, 'alternative': 12971, 'gahan': 12972, 'morningmidday': 12973, 'khc': 12974, 'baggin': 12975,
'hou': 12976, 'retired': 12977, 'averted': 12978, 'warwoundsc': 12979, 'coors': 12980, 'caddy': 12981, 'girlonly
': 12982, 'cutted': 12983, 'laaame': 12984, 'missrachel': 12985, 'cominglife': 12986, 'alenka': 12987, 'chicky':
12988, 'awwh': 12989, 'oli': 12990, 'legends': 12991, 'mooorning': 12992, 'abusesparkly': 12993, 'disorganized':
12994, 'whoott': 12995, 'cheery': 12996, 'boredmiss': 12997, 'teacherim': 12998, 'surfs': 12999, 'kelvin': 13000
, 'craziier': 13001, 'selfportrait': 13002, 'kayyy': 13003, 'blimey': 13004, 'aaaawww': 13005, 'beverage': 13006
, 'wellity': 13007, 'sensibility': 13008, 'blames': 13009, 'rahal': 13010, 'undeveloped': 13011, 'noones': 13012
, 'aobut': 13013, 'aimiloveshawniedur': 13014, 'rumored': 13015, 'magreally': 13016, 'reggae': 13017, 'smoothnes
s': 13018, 'yeahthose': 13019, 'yeahmy': 13020, 'coffeemmmmmcoffee': 13021, 'faq': 13022, 'bushidokan': 13023, '
karate': 13024, 'someplace': 13025, 'rachmaninoff': 13026, 'horseforth': 13027, 'hiwanna': 13028, 'recognizes':
13029, 'beblessed': 13030, 'blackets': 13031, 'abuseyawnabuse': 13032, 'imaging': 13033, 'contacted': 13034, 'de
cisionsbottle': 13035, 'lolzor': 13036, 'comb': 13037, 'menno': 13038, 'stain': 13039, 'genevaaa': 13040, 'mx':
13041, 'proflowers': 13042, 'fiasco': 13043, 'pavement': 13044, 'resurrect': 13045, 'mariners': 13046, 'fridayst
udying': 13047, 'hawain': 13048, 'kittens': 13049, 'bigchubba': 13050, 'winston': 13051, 'clueless': 13052, 'not
ch': 13053, 'rewarding': 13054, 'terrace': 13055, 'prospectus': 13056, 'tbones': 13057, 'distinct': 13058, 'goss
hhh': 13059, 'poem': 13060, 'subscriber': 13061, 'emotions': 13062, 'ello': 13063, 'caddyyes': 13064, 'gahaha':
13065, 'printingshipping': 13066, 'tattoed': 13067, 'preferably': 13068, 'strutfluffy': 13069, 'filesystem': 130
70, 'operability': 13071, 'benihana': 13072, 'waikiki': 13073, 'thoughyes': 13074, 'ribbons': 13075, 'willhoit':
13076, 'bookbag': 13077, 'againi': 13078, 'tweetshrinking': 13079, 'tweed': 13080, 'cursed': 13081, 'stomatch':
13082, 'whoaa': 13083, 'msgomez': 13084, 'collab': 13085, 'alynn': 13086, 'wella': 13087, 'charter': 13088, 'cro
p': 13089, 'abuseive': 13090, 'battlegrounds': 13091, 'battleground': 13092, 'tpc': 13093, 'cov': 13094, 'charbo
tgreen': 13095, 'avoiding': 13096, 'goodies': 13097, 'smite': 13098, 'cuties': 13099, 'aquino': 13100, 'aku': 13
101, 'kbangun': 13102, 'mimpi': 13103, 'anthropomorphic': 13104, 'planter': 13105, 'domsai': 13106, 'matteo': 13
107, 'cibic': 13108, 'peoplenew': 13109, 'surrey': 13110, 'nippy': 13111, 'succumb': 13112, 'mentality': 13113,
'uninhabital': 13114, 'swept': 13115, 'mopped': 13116, 'preachery': 13117, 'leandro': 13118, 'spicey': 13119, 'c
ardinal': 13120, 'nin': 13121, 'threatens': 13122, 'wonderingi': 13123, 'albumlucky': 13124, 'vinyl': 13125, 'we
ekendparis': 13126, 'worldnow': 13127, 'meadowbank': 13128, 'moldovan': 13129, 'ryann': 13130, 'lag': 13131, 'fl
edged': 13132, 'nv': 13133, 'dayum': 13134, 'dreadfully': 13135, 'biggs': 13136, 'twitterim': 13137, 'specilist'
: 13138, 'ectopic': 13139, 'uritors': 13140, 'gavin': 13141, 'tumbleweed': 13142, 'crackerack': 13143, 'geniusan
d': 13144, 'powerand': 13145, 'sheer': 13146, 'wordart': 13147, 'booster': 13148, 'woork': 13149, 'aid': 13150,
'wowzers': 13151, 'twp': 13152, 'briefing': 13153, 'closedfaz': 13154, 'weekendlove': 13155, 'calanques': 13156,
'changi': 13157, 'penang': 13158, 'pismo': 13159, 'powershot': 13160, 'lonelydh': 13161, 'pratical': 13162, 'bec
os': 13163, 'skola': 13164, 'impt': 13165, 'whittled': 13166, 'planyea': 13167, 'bccg': 13168, 'hospitol': 13169
, 'tourny': 13170, 'reripped': 13171, 'desperation': 13172, 'jerryyummmmy': 13173, 'youuuchuuub': 13174, 'twisto
ry': 13175, 'yaris': 13176, 'bmfing': 13177, 'spesh': 13178, 'debt': 13179, 'aaargh': 13180, 'fusterated': 13181
, 'demis': 13182, 'nomintated': 13183, 'hurtsreally': 13184, 'cramping': 13185, 'headaaaaaaaaaaaache': 13186, 'j
stuart': 13187, 'licence': 13188, 'constructivist': 13189, 'nugent': 13190, 'miffed': 13191, 'creased': 13192, '
nikes': 13193, 'cinnamin': 13194, 'mackillop': 13195, 'wildwood': 13196, 'tesla': 13197, 'probable': 13198, 'for
saken': 13199, 'ef': 13200, 'jummy': 13201, 'wbae': 13202, 'myka': 13203, 'naisee': 13204, 'flares': 13205, 'aro
nd': 13206, 'xxxxx': 13207, 'appology': 13208, 'chackin': 13209, 'wyattt': 13210, 'himhes': 13211, 'donutscomfor
t': 13212, 'scurrying': 13213, 'mimcy': 13214, 'plumber': 13215, 'choosing': 13216, 'norton': 13217, 'holyyyyyyy
': 13218, 'jewish': 13219, 'cybercriminaloverlords': 13220, 'syncs': 13221, 'witunes': 13222, 'eyeappealing': 13
223, 'clunky': 13224, 'catchup': 13225, 'noooooooooo': 13226, 'parrents': 13227, 'achan': 13228, 'muchly': 13229
, 'mil': 13230, 'lefty': 13231, 'balanced': 13232, 'southmight': 13233, 'barks': 13234, 'jumps': 13235, 'coquitl
am': 13236, 'hrdest': 13237, 'compiment': 13238, 'yest': 13239, 'mascots': 13240, 'virlcom': 13241, 'planran': 1
3242, 'headmay': 13243, 'welt': 13244, 'abuseday': 13245, 'tooyoull': 13246, 'butno': 13247, 'shutters': 13248,
'castingrelated': 13249, 'provence': 13250, 'calming': 13251, 'greeeeen': 13252, 'thereby': 13253, 'proving': 13
254, 'gridiron': 13255, 'zenjar': 13256, 'cuzs': 13257, 'zemote': 13258, 'zemotecom': 13259, 'chive': 13260, 'ma
halo': 13261, 'kauai': 13262, 'method': 13263, 'blinks': 13264, 'shuffles': 13265, 'bensons': 13266, 'deaths': 1
3267, 'neitherrrr': 13268, 'abusesniffabuse': 13269, 'abusegrinabuse': 13270, 'wonly': 13271, 'instrumentals': 1
3272, 'expresso': 13273, 'weights': 13274, 'woohoothis': 13275, 'chanclas': 13276, 'leak': 13277, 'infront': 132
78, 'tucker': 13279, 'hardd': 13280, 'obvs': 13281, 'hardy': 13282, 'beth': 13283, 'milwaukee': 13284, 'wooops':
13285, 'boomstonetrying': 13286, 'tdl': 13287, 'abuseclutches': 13288, 'closeabuse': 13289, 'umma': 13290, 'agai
nlol': 13291, 'baaaaaaaah': 13292, 'cockroach': 13293, 'heeeeelp': 13294, 'glamorous': 13295, 'cushings': 13296,
'disease': 13297, 'liep': 13298, 'zojuist': 13299, 'r�is�ngs': 13300, 'josie': 13301, 'daytakn': 13302, 'tip
top': 13303, 'viruses': 13304, 'reinstalling': 13305, 'nessa': 13306, 'tmobiles': 13307, 'corrupted': 13308, 'to
dayreally': 13309, 'tasting': 13310, 'sparring': 13311, 'sprinkler': 13312, 'blackberryless': 13313, 'todaaaaay'
: 13314, 'competitions': 13315, 'inthemaking': 13316, 'ditching': 13317, 'doogie': 13318, 'howser': 13319, 'brav
ing': 13320, 'theview': 13321, 'fuming': 13322, 'hints': 13323, 'vague': 13324, 'popper': 13325, 'inlapush': 133
26, 'quil': 13327, 'nickleback': 13328, 'rof': 13329, 'eepfangirl': 13330, 'milkkk': 13331, 'weekendto': 13332,
'weekendthat': 13333, 'boredddd': 13334, 'broughty': 13335, 'hahalive': 13336, 'krn': 13337, 'mitzy': 13338, 'ba
ru': 13339, 'bertweeter': 13340, 'nit': 13341, 'rwitters': 13342, 'but�nada�': 13343, 'greenish': 13344, 're
live': 13345, 'dim': 13346, 'feast': 13347, 'noms': 13348, 'sufka': 13349, 'transsiberian': 13350, 'planner': 13
351, 'exception': 13352, 'gitwar': 13353, 'nobles': 13354, 'venetian': 13355, 'broccoli': 13356, 'goddam': 13357
, 'impact': 13358, 'woopity': 13359, 'slurpeeee': 13360, 'longgggggggg': 13361, 'penetration': 13362, 'wayconfus
ed': 13363, 'sesion': 13364, 'bluedart': 13365, 'cas': 13366, 'scarey': 13367, 'moy': 13368, 'happyand': 13369,
'eirtaku': 13370, 'abusesmileabuse': 13371, 'camden': 13372, 'vipcome': 13373, 'neeeeed': 13374, 'guidance': 133
75, 'counsellor': 13376, 'pollster': 13377, 'identification': 13378, 'republican': 13379, 'peeing': 13380, 'pant
snobody': 13381, 'stafford': 13382, 'acsm': 13383, 'unfathomable': 13384, 'bedrooms': 13385, 'fighter': 13386, '
seth': 13387, 'landfill': 13388, 'recycler': 13389, 'inconvenient': 13390, 'queensland': 13391, 'nigguh': 13392,
'phuket': 13393, 'theatres': 13394, 'anywaybut': 13395, 'yhere': 13396, 'sink': 13397, 'ships': 13398, 'migrane'
: 13399, 'ibs': 13400, 'penguins': 13401, 'wkp': 13402, 'nooooowwww': 13403, 'medam': 13404, 'walnut': 13405, 'b
ecca': 13406, 'brianna': 13407, 'gratification': 13408, 'canadians': 13409, 'rblpnbro': 13410, 'afterwork': 1341
1, 'goingaway': 13412, 'colleague': 13413, 'sleeeeep': 13414, 'existes': 13415, 'sparkle': 13416, 'howre': 13417
, 'maniacs': 13418, 'wonabuse': 13419, 'cheeses': 13420, 'hunrgy': 13421, 'pizzahut': 13422, 'geograhy': 13423,
'freeballing': 13424, 'worklong': 13425, 'rapfun': 13426, 'helllllpppp': 13427, 'smileit': 13428, 'boooooooored'
: 13429, 'heeders': 13430, 'hungrybut': 13431, 'metres': 13432, 'yoursi': 13433, 'tada': 13434, 'fragrance': 134
35, 'grouchy': 13436, 'kentucky': 13437, 'rus': 13438, 'brazillians': 13439, 'revisingabuse': 13440, 'tennille':
13441, 'tos': 13442, 'collaboration': 13443, 'hahahahahahahaa': 13444, 'reflecti': 13445, 'annonymity': 13446, '
backfb': 13447, 'breakmy': 13448, 'embracing': 13449, 'harney': 13450, 'longg': 13451, 'vity': 13452, 'dming': 1
3453, 'maccym': 13454, 'rereading': 13455, 'yyyyuck': 13456, 'peaceout': 13457, 'raccoon': 13458, 'mistakeill':
13459, 'offensive': 13460, 'brazilians': 13461, 'arik': 13462, 'thumping': 13463, 'flakes': 13464, 'signup': 134
65, 'dojo': 13466, 'munich': 13467, 'pnar': 13468, 'yuppie': 13469, 'sko': 13470, 'ean': 13471, 'connectionguess
': 13472, 'upfor': 13473, 'cobblestones': 13474, 'blessing': 13475, 'manmy': 13476, 'hourso': 13477, 'weds': 134
78, 'anthems': 13479, 'screamidk': 13480, 'weekrrrrr': 13481, 'glyders': 13482, 'grrrstupid': 13483, 'scrabble':
13484, 'realtime': 13485, 'loveliest': 13486, 'hattie': 13487, 'hedgehog': 13488, 'hibernation': 13489, 'uglyone
e': 13490, 'farted': 13491, 'fuckn': 13492, 'tegan': 13493, 'genetic': 13494, 'brandpoor': 13495, 'allergiesno':
13496, 'shallowness': 13497, 'reviewwhile': 13498, 'papercan': 13499, 'tiredness': 13500, 'nottt': 13501, 'taili
ghts': 13502, 'muffinsss': 13503, 'jerm': 13504, 'aannndd': 13505, 'psyillium': 13506, 'husk': 13507, 'whincop':
13508, 'sap': 13509, 'bffls': 13510, 'mkay': 13511, 'bfgurelgbsr': 13512, 'caramels': 13513, 'martwo': 13514, 'd
mp': 13515, 'cla': 13516, 'grets': 13517, 'psst': 13518, 'ilycecily': 13519, 'ditch': 13520, 'belvoir': 13521, '
stationed': 13522, 'pentagon': 13523, 'looooove': 13524, 'altanta': 13525, 'skipped': 13526, 'pinkish': 13527, '
gooodmorning': 13528, 'ryehappy': 13529, 'timthumb': 13530, 'orc': 13531, 'stephanies': 13532, 'greensborolove':
13533, 'jessicaaaa': 13534, 'tattered': 13535, 'hedberg': 13536, 'floss': 13537, 'austens': 13538, 'northanger':
13539, 'starss': 13540, 'runhaha': 13541, 'firms': 13542, 'idiotatmilanq': 13543, 'frankwhyte': 13544, 'reaper':
13545, 'accidents': 13546, 'truei': 13547, 'bambu': 13548, 'ecology': 13549, 'moldy': 13550, 'squishy': 13551, '
cracker': 13552, 'manually': 13553, 'bmx': 13554, 'burgas': 13555, 'careoke': 13556, 'beaumont': 13557, 'purrrrs
': 13558, 'roasting': 13559, 'regime': 13560, 'simfinger': 13561, 'irape': 13562, 'moooooorning': 13563, 'itwhat
': 13564, 'computeri': 13565, 'precariously': 13566, 'ricotta': 13567, 'cuuutest': 13568, 'niece�s': 13569, 'c
hristening': 13570, 'personalize': 13571, 'blackhawks': 13572, 'underpriveledged': 13573, 'kadi': 13574, 'teng':
13575, 'potbelly': 13576, 'puzzle': 13577, 'healthyliving': 13578, 'direction': 13579, 'dundee': 13580, 'upbraci
ng': 13581, 'comedown': 13582, 'studyexam': 13583, 'omgz': 13584, 'unassuming': 13585, 'unpretentious': 13586, '
endearingbecause': 13587, 'honourary': 13588, 'fluffette': 13589, 'lasagne': 13590, 'beds': 13591, 'clutch': 135
92, 'dangling': 13593, 'investmentthe': 13594, 'dangitcuz': 13595, 'gphone': 13596, 'addfollow': 13597, 'lmaobut
': 13598, 'thoroughly': 13599, 'musictesting': 13600, 'singerguitarist': 13601, 'delusional': 13602, 'bailing':
13603, 'hereditary': 13604, 'phelps': 13605, 'dire': 13606, 'gahhhhh': 13607, 'forte': 13608, 'funty': 13609, 'a
buseplops': 13610, 'headabuse': 13611, 'skyfire': 13612, 'firts': 13613, 'ageing': 13614, 'tytn': 13615, 'ratty'
: 13616, 'fella': 13617, 'owls': 13618, 'contracted': 13619, 'slobber': 13620, 'hundreth': 13621, 'blogsite': 13
622, 'socksoo': 13623, 'nikepluscom': 13624, 'rowrow': 13625, 'knightsweet': 13626, 'uhknee': 13627, 'wreck': 13
628, 'nellys': 13629, 'tranlsators': 13630, 'hoursbooo': 13631, 'gooodnight': 13632, 'xslimmer': 13633, 'linz':
13634, 'vaccuum': 13635, 'haven': 13636, 'massively': 13637, 'brtt': 13638, 'puddles': 13639, 'lifehouse': 13640
, 'jetsetteri': 13641, 'loadsa': 13642, 'shizze': 13643, 'aot': 13644, 'lec': 13645, 'dinghy': 13646, 'keanu': 1
3647, 'unagi': 13648, 'nico': 13649, 'demistylesourcecomnew': 13650, 'ahahahaha': 13651, 'liee': 13652, 'pattins
on': 13653, 'okaaaay': 13654, 'organized': 13655, 'fireflies': 13656, 'communications': 13657, 'ehhehehe': 13658
, 'mtml': 13659, 'hmmpph': 13660, 'fones': 13661, 'ouuhh': 13662, 'milestones': 13663, 'saybitch': 13664, 'mazur
': 13665, 'hahahaand': 13666, 'incident': 13667, 'fletcher': 13668, 'westt': 13669, 'snots': 13670, 'avalanche':
13671, 'applescript': 13672, 'sofas': 13673, 'tiling': 13674, 'dummy': 13675, 'lasting': 13676, 'soooory': 13677
, 'tickettttt': 13678, 'elliott': 13679, 'weeksoverdue': 13680, 'uzbekistan': 13681, 'giveim': 13682, 'reheadach
es': 13683, 'gnimorning': 13684, 'grandpas': 13685, 'gasx': 13686, 'lullaby': 13687, 'fooked': 13688, 'phill': 1
3689, 'sunshinethe': 13690, 'plis': 13691, 'tile': 13692, 'okeefe': 13693, 'tryst': 13694, 'gpt': 13695, 'finsih
': 13696, 'champ': 13697, 'uhm': 13698, 'baq': 13699, 'headach': 13700, 'pomona': 13701, 'ditchin': 13702, 'barf
in': 13703, 'esotsm': 13704, 'aguirre': 13705, 'dayevery': 13706, 'hypnotic': 13707, 'ilost': 13708, 'iappreciat
e': 13709, 'itv': 13710, 'sleeeeepy': 13711, 'todaysniffle': 13712, 'tryingtaking': 13713, 'whuahahhaha': 13714,
'bram': 13715, 'ladagesapplejackspancakes': 13716, 'commercially': 13717, 'viable': 13718, 'awayim': 13719, 'psp
rint': 13720, 'goooood': 13721, 'ringtone': 13722, 'bulldogs': 13723, 'fattyyy': 13724, 'nb': 13725, 'scalpers':
13726, 'morons': 13727, 'hatin': 13728, 'tonightt': 13729, 'bumper': 13730, 'troops': 13731, 'military': 13732,
'brightness': 13733, 'insanedefaults': 13734, 'cyberspace': 13735, 'herewish': 13736, 'microsize': 13737, 'every
thinglol': 13738, 'sunbathin': 13739, 'nailed': 13740, 'abusepops': 13741, 'advilabuse': 13742, 'congratulations
keep': 13743, 'delegate': 13744, 'shucks': 13745, 'secured': 13746, 'latewaking': 13747, 'votingall': 13748, 'lo
vesss': 13749, 'poll': 13750, 'buckhead': 13751, 'scarlet': 13752, 'godddd': 13753, 'coughed': 13754, 'recoverab
le': 13755, 'kaushik': 13756, 'workfriday': 13757, 'musicboth': 13758, 'aesthetic': 13759, 'kaggra': 13760, 'bir
thdayhappy': 13761, 'ciaras': 13762, 'wefollow': 13763, 'roooooooooom': 13764, 'mrskutcher': 13765, 'aplusk': 13
766, 'coffeenot': 13767, 'jordiebut': 13768, 'wci': 13769, 'pawing': 13770, 'innit': 13771, 'ncis': 13772, 'defi
ance': 13773, 'nextmmmmmm': 13774, 'blve': 13775, 'frikken': 13776, 'baaaaaaaaaaackkkkkkkk': 13777, 'promiscuous
': 13778, 'plurking': 13779, 'everwish': 13780, 'eeecontrol': 13781, 'awhhh': 13782, 'suhana': 13783, 'gurrl': 1
3784, 'demoing': 13785, 'tayla': 13786, 'timegettin': 13787, 'homesoooo': 13788, 'boyzzzz': 13789, 'coordinating
': 13790, 'taping': 13791, 'questionable': 13792, 'tireddd': 13793, 'nogo': 13794, 'backsorry': 13795, 'organize
': 13796, 'topping': 13797, 'crews': 13798, 'reali': 13799, 'momalwayyyyyyyssssssss': 13800, 'balmain': 13801, '
knockoffs': 13802, 'dealthese': 13803, 'laaandan': 13804, 'wingnuts': 13805, 'actuallywe': 13806, 'colleaguespai
d': 13807, 'dampier': 13808, 'comingwont': 13809, 'nottinghami': 13810, 'biotch': 13811, 'sigma': 13812, 'smirke
r': 13813, 'jak': 13814, 'frolic': 13815, 'consummate': 13816, 'referring': 13817, 'persepolis': 13818, 'innabit
': 13819, 'bhabhi': 13820, 'pingpooping': 13821, 'shorti': 13822, 'psych': 13823, 'lostfound': 13824, 'owwjust':
13825, 'stiles': 13826, 'ohkeep': 13827, 'gaggles': 13828, 'commuters': 13829, 'squished': 13830, 'backat': 1383
1, 'tetep': 13832, 'kurang': 13833, 'buat': 13834, 'kamis': 13835, 'nih': 13836, 'syapa': 13837, 'nicks': 13838,
'burgh': 13839, 'yorks': 13840, 'lancs': 13841, 'yorkshire': 13842, 'weekthen': 13843, 'tomos': 13844, 'sickkkk'
: 13845, 'bu': 13846, 'listbut': 13847, 'abuseloveabuse': 13848, 'hairs': 13849, 'goona': 13850, 'ipodiphone': 1
3851, 'teamgreen': 13852, 'macrina': 13853, 'mam': 13854, 'mingin': 13855, 'pegelcape': 13856, 'keliling': 13857
, 'kuilbuttotally': 13858, 'awesomewas': 13859, 'templecultureambiencetruly': 13860, 'inav': 13861, 'iblue': 138
62, 'themegives': 13863, 'anit': 13864, 'levy': 13865, 'ensure': 13866, 'datetoday': 13867, 'grandmothermiss': 1
3868, 'mane': 13869, 'hairlossgotta': 13870, 'ips': 13871, 'developement': 13872, 'harper': 13873, 'ipodgreat':
13874, 'songlove': 13875, 'beatboxing': 13876, 'didthanks': 13877, 'yeti': 13878, 'galveston': 13879, 'bristol':
13880, 'eine': 13881, 'kleine': 13882, 'nashtmusik': 13883, 'handand': 13884, 'justjust': 13885, 'areareare': 13
886, 'septa': 13887, 'seductively': 13888, 'sprawled': 13889, 'blokes': 13890, 'bonnet': 13891, 'shockers': 1389
2, 'blinding': 13893, 'lurgy': 13894, 'endofrope': 13895, 'heeeey': 13896, 'typos': 13897, 'dealer': 13898, 'cou
rtneys': 13899, 'hooking': 13900, 'smartcar': 13901, 'trekagain': 13902, 'oni': 13903, 'mixer': 13904, 'tessy':
13905, 'iver': 13906, 'decongestant': 13907, 'freeeeeeeeeeeeeeeezing': 13908, 'soooooooon': 13909, 'yehhaaaaaaa'
: 13910, 'streetview': 13911, 'argtried': 13912, 'itthen': 13913, 'purty': 13914, 'sakatas': 13915, 'unloading':
13916, 'stomachace': 13917, 'krystles': 13918, 'studieslaw': 13919, 'inolving': 13920, 'bias': 13921, 'juries':
13922, 'nullification': 13923, 'strippers': 13924, 'bummermail': 13925, 'judges': 13926, 'saran': 13927, 'compet
e': 13928, 'sleeptime': 13929, 'bm': 13930, 'wirting': 13931, 'almos': 13932, 'listenint': 13933, 'afh': 13934,
'upppp': 13935, 'sadifying': 13936, 'heartparts': 13937, 'workboyz': 13938, 'sailin': 13939, 'tanna': 13940, 'bu
syy': 13941, 'standstill': 13942, 'twttrg': 13943, 'technician': 13944, 'archetype': 13945, 'archetypes': 13946,
'utd': 13947, 'wacha': 13948, 'arbiter': 13949, 'judith': 13950, 'wseven': 13951, 'consist': 13952, 'realitychec
k': 13953, 'dmshollaback': 13954, 'phootoboothingisfunforbunny': 13955, 'volumen': 13956, 'eins': 13957, 'oouchh
hh': 13958, 'pinched': 13959, 'romina': 13960, 'bummedyoure': 13961, 'whitneys': 13962, 'danggggim': 13963, 'mor
ningblahhh': 13964, 'oddos': 13965, 'grandfather': 13966, 'yummiest': 13967, 'ipoh': 13968, 'marls': 13969, 'rn'
: 13970, 'amigui': 13971, 'semis': 13972, 'trina': 13973, 'leav': 13974, 'forwed': 13975, 'homieactually': 13976
, 'binder': 13977, 'mammas': 13978, 'tomorrowwim': 13979, 'embraced': 13980, 'paranthas': 13981, 'balloon': 1398
2, 'caveat': 13983, 'fictionbut': 13984, 'novels': 13985, 'liu': 13986, 'yearbookhahaha': 13987, 'instincts': 13
988, 'dragonball': 13989, 'clarifyknow': 13990, 'bnp': 13991, 'thoughtwhat': 13992, 'nesbitt': 13993, 'rising':
13994, 'sighsadface': 13995, 'manicurist': 13996, 'likee': 13997, 'lottsa': 13998, 'gerbil': 13999, 'experts': 1
4000, 'jillian': 14001, 'certificate': 14002, 'docent': 14003, 'hvng': 14004, 'aftrn': 14005, 'aaaaaoouoouoouu':
14006, 'uturn': 14007, 'outtoooo': 14008, 'mccoy': 14009, 'isawesome': 14010, 'cda': 14011, 'funkey': 14012, 'xm
lrpc': 14013, 'codeignite': 14014, 'output': 14015, 'amf': 14016, 'zend': 14017, 'umbrella�': 14018, 'hallo':
14019, 'amounts': 14020, 'qualifies': 14021, 'universal': 14022, 'outlets': 14023, 'abusesharapova': 14024, 'uns
eeded': 14025, 'qualifierok': 14026, 'chels': 14027, 'quartered': 14028, 'unlock': 14029, 'editions': 14030, 'wo
ops': 14031, 'izzards': 14032, 'realli': 14033, 'happyskool': 14034, 'amazingjust': 14035, 'gocincinnati': 14036
, 'amaize': 14037, 'tbqh': 14038, 'semiolder': 14039, 'anywherebtw': 14040, 'sfos': 14041, 'kean': 14042, 'cipri
ano': 14043, 'windoze': 14044, 'bouquets': 14045, 'itsilly': 14046, 'ej': 14047, 'whadya': 14048, 'kyneton': 140
49, 'autumn': 14050, 'melb': 14051, 'daylesford': 14052, 'jacksons': 14053, 'shorty': 14054, 'unified': 14055, '
drastically': 14056, 'helllllloooooooooooo': 14057, 'backpacking': 14058, 'haayy': 14059, 'outbut': 14060, 'y�
n': 14061, 't�m': 14062, 'trn': 14063, 'tinh': 14064, 'l�': 14065, 'th�ng': 14066, 'thch': 14067, 'sanh':
14068, 'nh': 14069, 'l�m': 14070, 'm�': 14071, 'c�ng': 14072, 'ch�a': 14073, 'meetinglunch': 14074, 'sun
shinenothing': 14075, 'daytime': 14076, 'helooo': 14077, 'bridal': 14078, 'registry': 14079, 'cruz': 14080, 'tow
ed': 14081, 'redgies': 14082, 'splashtown': 14083, 'gel': 14084, 'magically': 14085, 'sighlol': 14086, 'flashcad
s': 14087, 'omgoodness': 14088, 'putet': 14089, 'uktoday': 14090, 'thoughthanks': 14091, 'relished': 14092, 'spa
rking': 14093, 'milking': 14094, 'promoting': 14095, 'muziknot': 14096, 'lmaao': 14097, 'plaid': 14098, 'sowwwy'
: 14099, 'slurred': 14100, 'peet': 14101, 'cabo': 14102, 'ughjust': 14103, 'guarding': 14104, 'guard': 14105, 'q
uark': 14106, 'huhuhu': 14107, 'airbrush': 14108, 'wallbut': 14109, 'marjorie': 14110, 'jemimah': 14111, 'starin
': 14112, 'chief': 14113, 'shudve': 14114, 'presten': 14115, 'hordies': 14116, 'victims': 14117, 'pkia': 14118,
'donnys': 14119, 'believed': 14120, 'finshed': 14121, 'annnd': 14122, 'compromises': 14123, 'buthesmine': 14124,
'sharapova': 14125, 'loses': 14126, 'peddling': 14127, 'herenever': 14128, 'talktalk': 14129, 'reyt': 14130, 'fa
ncies': 14131, 'valentinos': 14132, 'soninlaws': 14133, 'goooosh': 14134, 'jobos': 14135, 'discing': 14136, 'dis
cs': 14137, 'koozie': 14138, 'shoppinghmmm': 14139, 'moneyhow': 14140, 'fandom': 14141, 'wayyyyy': 14142, 'thing
ss': 14143, 'clubbers': 14144, 'maids': 14145, 'itjust': 14146, 'kelsenator': 14147, 'puffyn': 14148, 'gmornin':
14149, 'skimchamp': 14150, 'turnon': 14151, 'dasit': 14152, 'wstocktwits': 14153, 'clutter': 14154, 'cupie': 141
55, 'drafts': 14156, 'shemms': 14157, 'roaming': 14158, 'workhillcats': 14159, 'jeffery': 14160, 'tonsillitis':
14161, 'advised': 14162, 'trusty': 14163, 'runmoms': 14164, 'menormal': 14165, 'massacre': 14166, 'deceiving': 1
4167, 'wowhow': 14168, 'arggghhhhhhhhhhh': 14169, 'augustine': 14170, 'abusepokes': 14171, 'awayabuse': 14172, '
dice': 14173, 'tubas': 14174, 'gota': 14175, 'twitteeeerrr': 14176, 'babiieshow': 14177, 'thng': 14178, 'tbag':
14179, 'runnin': 14180, 'homeneed': 14181, 'itemsbut': 14182, 'stitched': 14183, 'bleeds': 14184, 'abuseyouabuse
': 14185, 'oscar': 14186, 'renta': 14187, 'op': 14188, 'canvas': 14189, 'ooooover': 14190, 'oooover': 14191, 'ce
lebreting': 14192, 'amost': 14193, 'gdgd': 14194, 'discussed': 14195, 'bela': 14196, 'lugosi': 14197, 'apearance
': 14198, 'outer': 14199, 'audioo': 14200, 'idgaf': 14201, 'fey': 14202, 'slays': 14203, 'inbruges': 14204, 'pan
wa': 14205, 'laddies': 14206, 'soothing': 14207, 'clues': 14208, 'baha': 14209, 'hyd': 14210, 'thekas': 14211, '
implementing': 14212, 'willpaginate': 14213, 'evie': 14214, 'widow': 14215, 'becoz': 14216, 'nta': 14217, 'wrkou
ts': 14218, 'hapen': 14219, 'satrted': 14220, 'dieting': 14221, 'toocant': 14222, 'xxo': 14223, 'ilys': 14224, '
dahsar': 14225, 'thanxs': 14226, 'asia': 14227, 'hughesy': 14228, 'rafferty': 14229, 'madaya': 14230, 'ipodi': 1
4231, 'lainey': 14232, 'mediation': 14233, 'suckssss': 14234, 'kknow': 14235, 'realllllllllly': 14236, 'mcast':
14237, 'protofurries': 14238, 'acen': 14239, 'detour': 14240, 'disorders': 14241, 'vomit': 14242, 'tyring': 1424
3, 'aruba': 14244, 'retainer': 14245, 'colored': 14246, 'lewd': 14247, 'ryanseacrest': 14248, 'practitionerspent
': 14249, 'devoted': 14250, 'recognized': 14251, 'ugghhh': 14252, 'peabody': 14253, 'antos': 14254, 'grannythe':
14255, 'yus': 14256, 'ieits': 14257, 'hmlet': 14258, 'todayhappy': 14259, 'carillo': 14260, 'achebut': 14261, 's
ighits': 14262, 'finaleno': 14263, 'foul': 14264, 'cote': 14265, 'ahhhhhhhhh': 14266, 'shredding': 14267, 'namel
olall': 14268, 'ucky': 14269, 'vitamin': 14270, 'mores': 14271, 'droped': 14272, 'smarted': 14273, 'bussiness':
14274, 'snaps': 14275, 'ibiza': 14276, 'fortuna': 14277, 'assist': 14278, 'lows': 14279, 'ericsson': 14280, 'ber
ryd': 14281, 'nkorea': 14282, 'endangers': 14283, 'busany': 14284, 'donations': 14285, 'fund': 14286, 'grrrrrr':
14287, 'inoo': 14288, 'ino': 14289, 'ashlie': 14290, 'everyoneeeeeeeeee': 14291, 'yepraced': 14292, 'bikesits':
14293, 'awaydont': 14294, 'motorsport': 14295, 'nowits': 14296, 'wrigley': 14297, 'uup': 14298, 'opportinists':
14299, 'tabloids': 14300, 'victim': 14301, 'sennheiser': 14302, 'cx': 14303, 'earbuds': 14304, 'abusethe': 14305
, 'insults': 14306, 'abusecries': 14307, 'pillowabuse': 14308, 'duber': 14309, 'klondike': 14310, 'goign': 14311
, 'overspend': 14312, 'mishaaaaaaaa': 14313, 'todayhope': 14314, 'rsvping': 14315, 'irrelevant': 14316, 'ekin':
14317, 'mak': 14318, 'yj': 14319, 'weinfest': 14320, 'moommy': 14321, 'somn': 14322, 'sensehahaha': 14323, 'geht
s': 14324, 'abi': 14325, 'homeschooling': 14326, 'lillestr�m': 14327, 'achieving': 14328, 'xml': 14329, 'cumbe
rsome': 14330, 'profiled': 14331, 'envelope': 14332, 'smallif': 14333, 'fitwhat': 14334, 'herrreeeee': 14335, 'w
itch': 14336, 'upstate': 14337, 'hick': 14338, 'ethnic': 14339, 'monroe': 14340, 'trx': 14341, 'ropes': 14342, '
kbs': 14343, 'offrope': 14344, 'windmills': 14345, 'wve': 14346, 'aquats': 14347, 'cics': 14348, 'tomorrowneed':
14349, 'likelyy': 14350, 'buchers': 14351, 'townno': 14352, 'gohave': 14353, 'goshwhos': 14354, 'baylee': 14355,
'childthese': 14356, 'humour': 14357, 'nvidia': 14358, 'ideapad': 14359, 'nonstarter': 14360, 'friench': 14361,
'redeem': 14362, 'pandi': 14363, 'minnish': 14364, 'givein': 14365, 'arun': 14366, 'yw': 14367, 'deforestationso
': 14368, 'youlol': 14369, 'hairsss': 14370, 'soonwe': 14371, 'stereo': 14372, 'skyline': 14373, 'blahhh': 14374
, 'coal': 14375, 'lindos': 14376, 'nutswont': 14377, 'orthodontisssttt': 14378, 'workno': 14379, 'dims': 14380,
'cancled': 14381, 'rentaphone': 14382, 'yesy': 14383, 'smokinggg': 14384, 'saaad': 14385, 'ultimately': 14386, '
suffers': 14387, 'gale': 14388, 'vinerinimic': 14389, 'probabil': 14390, 'pierdut': 14391, 'chipssunday': 14392,
'pomchi': 14393, 'chrisette': 14394, 'micheles': 14395, 'epiphany': 14396, 'congrads': 14397, 'engagementbridal'
: 14398, 'outrelaxing': 14399, 'postcard': 14400, 'comparing': 14401, 'malo': 14402, 'boobie': 14403, 'homehappy
': 14404, 'twitmoms': 14405, 'olda': 14406, 'sutzkever': 14407, 'thirsty': 14408, 'whyareyoustillhere': 14409, '
aubrey': 14410, 'kimberlee': 14411, 'truce': 14412, 'barnsley': 14413, 'conor': 14414, 'kudai': 14415, 'upppppp'
: 14416, 'overactive': 14417, '�anisalovesu': 14418, 'upsetespecially': 14419, 'jared': 14420, 'pcvs': 14421,
'uptold': 14422, 'farrells': 14423, 'parlor': 14424, 'staging': 14425, 'comeback': 14426, 'viejo': 14427, 'align
': 14428, 'realign': 14429, 'sensitivity': 14430, 'tweeeet': 14431, 'passwords': 14432, 'wookieman': 14433, 'lat
agood': 14434, 'twitfam': 14435, 'blessxoxo': 14436, 'danstorce': 14437, 'lushh': 14438, 'bookmarked': 14439, 's
tuart': 14440, 'yavanna': 14441, 'certainty': 14442, 'dockers': 14443, 'erniehalter': 14444, 'polite': 14445, 'd
efinite': 14446, 'yetand': 14447, 'resorted': 14448, 'guuud': 14449, 'pantien': 14450, 'introduced': 14451, 'fra
nklin': 14452, 'ladmag': 14453, 'uhhindoors': 14454, 'jlo': 14455, 'sig': 14456, 'actinggg': 14457, 'addicts': 1
4458, 'knack': 14459, 'nighters': 14460, 'gyah': 14461, 'babyclient': 14462, 'stavros': 14463, 'flatley': 14464,
'nims': 14465, 'satellite': 14466, 'downnnn': 14467, 'familias': 14468, 'ticked': 14469, 'nontweetinggirlfriend'
: 14470, 'employedsigh': 14471, 'buble': 14472, 'quotation': 14473, 'tied': 14474, 'resistant': 14475, 'onther':
14476, 'marketers': 14477, 'emilyyoung': 14478, 'okey': 14479, 'hairstyles': 14480, 'kits': 14481, 'coty': 14482
, 'nnc': 14483, 'tents': 14484, 'bunged': 14485, 'ohnoes': 14486, 'artoo': 14487, 'fof': 14488, 'faketemporary':
14489, 'looooooooves': 14490, 'detox': 14491, 'violent': 14492, 'fightclub': 14493, 'heavily': 14494, 'kirsten':
14495, 'goddamnit': 14496, 'dug': 14497, 'firefly': 14498, 'flordia': 14499, 'shrits': 14500, 'decor': 14501, 'd
iscretion': 14502, 'gonethank': 14503, 'godtime': 14504, 'collinson': 14505, 'moveable': 14506, 'dbar': 14507, '
timezzz': 14508, 'faccia': 14509, 'clarendon': 14510, 'clearing': 14511, 'anchovies': 14512, 'howdyyy': 14513, '
hallscary': 14514, 'arrogant': 14515, 'tap': 14516, 'oregon': 14517, 'unimpressed': 14518, 'obrian': 14519, 'shr
iyas': 14520, 'lynz': 14521, 'jordies': 14522, 'donnies': 14523, 'youuuuuuu': 14524, 'jayne': 14525, 'wowzer': 1
4526, 'seann': 14527, 'roflmao': 14528, 'portal': 14529, 'radar': 14530, 'exxciiteed': 14531, 'muslim': 14532, '
briyani': 14533, 'lvoe': 14534, 'perk': 14535, 'orderd': 14536, 'leonard': 14537, 'nimoy': 14538, 'sequel': 1453
9, 'c�n': 14540, 'qua': 14541, 'bereft': 14542, 'faults': 14543, 'embarrassd': 14544, 'ching': 14545, 'chong':
14546, 'cambie': 14547, 'mmmmmmm': 14548, 'espressothe': 14549, 'efficiently': 14550, 'mols': 14551, 'guiness':
14552, 'bidding': 14553, 'schindlers': 14554, 'dayydoesnt': 14555, 'veryy': 14556, 'compability': 14557, 'entrep
reneurs': 14558, 'grats': 14559, 'knoim': 14560, 'beauties': 14561, 'grads': 14562, 'trauma': 14563, 'meaway': 1
4564, 'satisfy': 14565, 'uprooted': 14566, 'sunbathe': 14567, 'porter': 14568, 'haunting': 14569, 'forces': 1457
0, 'strategies': 14571, 'thebc': 14572, 'homesssssskooooler': 14573, 'accessories': 14574, 'livescribe': 14575,
'smartpen': 14576, 'uniservity': 14577, 'onim': 14578, 'omfgggg': 14579, 'lubbock': 14580, 'wetits': 14581, 'tim
eno': 14582, 'pinkpop': 14583, 'wwwwweeeeeeeeeeeeeeekkkkkeeeennnndddd': 14584, 'recyle': 14585, 'armybut': 14586
, 'fasteverything': 14587, 'backmight': 14588, 'recycle': 14589, 'bdayhappy': 14590, 'molecule': 14591, 'sackiro
th': 14592, 'dunnooooooo': 14593, 'confuzzzledd': 14594, 'barbecue': 14595, 'opda': 14596, 'myspacee': 14597, 'e
mbroidery': 14598, 'lfctv': 14599, 'unsure': 14600, 'stoped': 14601, 'broadcasting': 14602, 'iloveitwhen': 14603
, 'believes': 14604, 'circlealsoab': 14605, 'zum': 14606, 'spooohort': 14607, 'fcking': 14608, 'uniform': 14609,
'icantsleepness': 14610, 'blogged': 14611, 'geeta': 14612, 'nav': 14613, 'shameless': 14614, 'gorham': 14615, 'c
arroll': 14616, 'marty': 14617, 'herewaz': 14618, 'uuuup': 14619, 'venom': 14620, 'accused': 14621, 'sided': 146
22, 'trak': 14623, 'noting': 14624, 'haaaaair': 14625, 'lolwat': 14626, 'atlantic': 14627, 'chellebelle': 14628,
'itx': 14629, 'todaynola': 14630, 'foxford': 14631, 'pontoon': 14632, 'scoop': 14633, 'kwod': 14634, 'ritasbadly
': 14635, 'appreciateduni': 14636, 'helenas': 14637, 'cantab': 14638, 'utrecht': 14639, 'gabe': 14640, 'afterpar
ty': 14641, 'healthcare': 14642, 'disproves': 14643, 'omgeee': 14644, 'helll': 14645, 'hallucinating': 14646, 'b
enefiting': 14647, 'indies': 14648, 'botanical': 14649, 'willnot': 14650, 'rosary': 14651, 'wafting': 14652, 'pa
paw': 14653, 'smoker': 14654, 'backweve': 14655, 'lifeughgoodnightso': 14656, 'janessa': 14657, 'dillematic': 14
658, 'myoh': 14659, 'tarsier': 14660, 'pins': 14661, 'dorm': 14662, 'assure': 14663, 'buliding': 14664, 'mayloli
m': 14665, 'liloven': 14666, 'representing': 14667, 'supertramp': 14668, 'addictionermm': 14669, 'covers': 14670
, 'poisonous': 14671, 'pellets': 14672, 'abueltia': 14673, 'bwm': 14674, 'punkrobot': 14675, 'wtfwinter': 14676,
'fridaynot': 14677, 'witcha': 14678, 'anywherestreamed': 14679, 'mommiies': 14680, 'theaa': 14681, 'thiis': 1468
2, 'thiing': 14683, 'tgifi': 14684, 'yoghurt': 14685, 'carrots': 14686, 'pci': 14687, 'lsats': 14688, 'ooze': 14
689, 'merrier': 14690, 'prov': 14691, 'cme': 14692, 'shia': 14693, 'yippiee': 14694, 'maccy': 14695, 'recontinue
': 14696, 'breathless': 14697, 'prerecorded': 14698, 'admk': 14699, 'hyderabad': 14700, 'connections': 14701, 'n
icehope': 14702, 'mill': 14703, 'embark': 14704, 'poisoning': 14705, 'skewl': 14706, 'ahmazing': 14707, 'primate
ch': 14708, 'decade': 14709, 'trening': 14710, 'brokey': 14711, 'hor': 14712, 'fowers': 14713, 'alexajordan': 14
714, 'lossing': 14715, 'fucckinggg': 14716, 'cakss': 14717, 'unsociable': 14718, 'meanwhile': 14719, 'bigweekend
': 14720, 'downvery': 14721, 'nerding': 14722, 'campin': 14723, 'tekenen': 14724, 'evelyn': 14725, 'verdict': 14
726, 'moooorning': 14727, 'ooaf': 14728, 'sctrahc': 14729, 'dayabusepeople': 14730, 'usabusewhat': 14731, 'combo
nations': 14732, 'mooks': 14733, 'dillingen': 14734, 'hoboabusetramp': 14735, 'pllleeeaaassseeeeee': 14736, 'pog
s': 14737, 'cashier': 14738, 'thimk': 14739, 'muscles': 14740, 'twitpeeps': 14741, 'mwean': 14742, 'doneabout':
14743, 'butteflies': 14744, 'ano': 14745, 'yun': 14746, 'thehannabeth': 14747, 'whattaburger': 14748, 'chimp': 1
4749, 'wattup': 14750, 'jv': 14751, 'lllooovvveee': 14752, 'bachproject': 14753, 'oash': 14754, 'snuff': 14755,
'hermione': 14756, 'ittakestimetoopenawebpage': 14757, 'justits': 14758, 'storyall': 14759, 'seaworld': 14760, '
yhaw': 14761, 'bew': 14762, 'sistah': 14763, 'bbws': 14764, 'scents': 14765, 'alrightttt': 14766, 'sighting': 14
767, 'spongebobs': 14768, 'distraught': 14769, 'twitterfails': 14770, 'nowthis': 14771, '��': 14772, 'ce': 1
4773, 'grademock': 14774, 'gether': 14775, 'christmass': 14776, 'excolleagues': 14777, 'boasting': 14778, 'carls
bad': 14779, 'lc': 14780, 'birthdaykinda': 14781, 'tornado': 14782, 'heyahh': 14783, 'cumin': 14784, 'taylorr':
14785, 'gossipy': 14786, 'mythic': 14787, 'struggles': 14788, 'demolished': 14789, 'morewell': 14790, 'salty': 1
4791, 'pretzels': 14792, 'raggy': 14793, 'bleah': 14794, 'tipsy': 14795, 'nokias': 14796, 'mozilla': 14797, 'lap
itytopity': 14798, 'specialist': 14799, 'owwie': 14800, 'awayz': 14801, 'hourstrying': 14802, 'fright': 14803, '
latejust': 14804, 'sweetietweethug': 14805, 'saucepan': 14806, 'waterindian': 14807, 'scrabbled': 14808, 'sumptu
ous': 14809, 'shenanigans': 14810, 'adoarble': 14811, 'showif': 14812, 'luvin': 14813, 'sensing': 14814, 'fiery'
: 14815, 'anger': 14816, 'surrounding': 14817, 'boak': 14818, 'apicture': 14819, 'jetway': 14820, 'layer': 14821
, 'bose': 14822, 'kiau': 14823, 'dunhams': 14824, 'wikihow': 14825, 'pari': 14826, 'neb': 14827, 'nowtht': 14828
, 'heltershelter': 14829, 'zuluxhosa': 14830, 'translated': 14831, 'gratiss': 14832, 'tacoma': 14833, 'kgw': 148
34, 'nowadays': 14835, 'brenden': 14836, 'uhhonestly': 14837, 'meill': 14838, 'movin': 14839, 'molotov': 14840,
'bamboo': 14841, 'sleepfail': 14842, 'ddfail': 14843, 'yfrog': 14844, 'inclient': 14845, 'runway': 14846, 'malay
siano': 14847, 'tomoro': 14848, 'yeahness': 14849, 'lifecam': 14850, 'comingand': 14851, 'citipointe': 14852, 'a
rgghhh': 14853, 'tatler': 14854, 'yuen': 14855, 'musli': 14856, 'elmers': 14857, 'hihihi': 14858, 'corny': 14859
, 'alam': 14860, 'whatt': 14861, 'visitors': 14862, 'hummer': 14863, 'designshould': 14864, 'cardbut': 14865, 'b
cit': 14866, 'redi': 14867, 'thebear': 14868, 'plangi': 14869, 'amazeeeeeee': 14870, 'hel': 14871, 'sympahty': 1
4872, 'tdukes': 14873, 'flwd': 14874, 'mornwhen': 14875, 'dhmptn': 14876, 'hershes': 14877, 'visite': 14878, 'he
yyyyyyyyyyyyyya': 14879, 'momsen': 14880, 'soichi': 14881, 'negishis': 14882, 'amai': 14883, 'koibito': 14884, '
todayagitated': 14885, 'destroyed': 14886, 'n�mme': 14887, 'telescopic': 14888, 'poles': 14889, 'coolmax': 148
90, 'hateryoda': 14891, 'husker': 14892, 'accessno': 14893, 'kilometres': 14894, 'tragicluckily': 14895, 'escent
uals': 14896, 'abusetearrrrrrrrabuse': 14897, 'googlecomabuse': 14898, 'safaris': 14899, 'welll': 14900, 'folkie
sss': 14901, 'landwork': 14902, 'morninughewwy': 14903, 'talkkk': 14904, 'mebut': 14905, 'lurvee': 14906, 'pushi
n': 14907, 'graduationsorry': 14908, 'smash': 14909, 'louder': 14910, 'decaf': 14911, 'teas': 14912, 'sketch': 1
4913, 'shortened': 14914, 'urlautoexpand': 14915, 'reactin': 14916, 'okayjust': 14917, 'chrissy': 14918, 'twitte
rings': 14919, 'thisll': 14920, 'rants': 14921, 'notthebest': 14922, 'weekendbut': 14923, 'welli': 14924, 'there
lol': 14925, 'clueeffect': 14926, 'inthe': 14927, 'welldeserved': 14928, 'todayno': 14929, 'emailsonly': 14930,
'doooooo': 14931, 'abp': 14932, 'griffin': 14933, 'nosebleeds': 14934, 'jones': 14935, 'gameresearching': 14936,
'aracheologists': 14937, 'mcc': 14938, 'buisiness': 14939, 'purrrty': 14940, 'produced': 14941, 'dayone': 14942,
'cruches': 14943, 'biglittle': 14944, 'flapataco': 14945, 'youwhat': 14946, 'doinganswer': 14947, 'sleepyhead':
14948, 'maggots': 14949, 'partial': 14950, 'pinks': 14951, 'sobre': 14952, 'destiny': 14953, 'sleepies': 14954,
'poorlies': 14955, 'bjudah': 14956, 'lavender': 14957, 'values': 14958, 'whaaay': 14959, 'todayim': 14960, 'goog
ling': 14961, 'trailhead': 14962, 'againgot': 14963, 'maatt': 14964, 'dudeee': 14965, 'lalalaland': 14966, 'itu'
: 14967, 'confusedp': 14968, 'teardrops': 14969, 'loverboy': 14970, 'tww': 14971, 'puzzles': 14972, 'emilie': 14
973, 'impaled': 14974, 'scottishtryingtobeirish': 14975, 'ewan': 14976, 'mcgregor': 14977, 'quirks': 14978, 'sum
marize': 14979, 'lub': 14980, 'akarowan': 14981, 'exctied': 14982, 'saurus': 14983, 'dac': 14984, 'cowboys': 149
85, 'lotr': 14986, 'hajjisyea': 14987, 'marly': 14988, 'bubbletweet': 14989, 'glowy': 14990, 'ravey': 14991, 'sm
okey': 14992, 'pizzary': 14993, 'naz': 14994, 'steals': 14995, 'buries': 14996, 'fence': 14997, 'embarassing': 1
4998, 'gangstarr': 14999, 'exgirl': 15000, 'nas': 15001, 'mistaken': 15002, 'mga': 15003, 'lng': 15004, 'gastos'
: 15005, 'namen': 15006, 'ets': 15007, 'genitals': 15008, 'cnews': 15009, 'tortoiseshell': 15010, 'indoor': 1501
1, 'finalssummer': 15012, 'ole': 15013, 'dusty': 15014, 'crazzyyyy': 15015, 'caloric': 15016, 'diaz': 15017, 'sa
ti': 15018, 'services': 15019, 'ughhhhmad': 15020, 'timesi': 15021, 'thngs': 15022, 'stufppls': 15023, 'noseblee
d': 15024, 'overjoyed': 15025, 'sizzling': 15026, 'gusying': 15027, 'bourbon': 15028, 'zeitgeist': 15029, 'endea
vor': 15030, 'subscribed': 15031, 'marlees': 15032, 'wellllll': 15033, 'kickable': 15034, 'fiercemichi': 15035,
'showi': 15036, 'acaban': 15037, 'tocar': 15038, 'sabi': 15039, 'hazardous': 15040, 'smushed': 15041, 'statk': 1
5042, 'profoundly': 15043, 'freeing': 15044, 'eminem': 15045, 'seams': 15046, 'nois': 15047, 'ripbatman': 15048,
'threequarters': 15049, 'chains': 15050, 'nastiness': 15051, 'sesame': 15052, 'snood': 15053, 'heavyweight': 150
54, 'abusecrosses': 15055, 'fingersabuse': 15056, 'enthused': 15057, 'sicckkkk': 15058, 'oome': 15059, 'muck': 1
5060, 'jconsole': 15061, 'legitimate': 15062, 'fuck': 15063, 'kontakt': 15064, 'premier': 15065, 'amazecore': 15
066, 'prose': 15067, 'needy': 15068, 'thaanks': 15069, 'venueswhat': 15070, 'trigger': 15071, 'norwich': 15072,
'rivals': 15073, 'tarte': 15074, 'newsletter': 15075, 'criminal': 15076, 'twitterits': 15077, 'mimmiz': 15078, '
maders': 15079, 'rollin': 15080, 'emmm': 15081, 'souvlaki': 15082, 'dimitrisi': 15083, 'miacherry': 15084, 'kik'
: 15085, 'miniitx': 15086, 'midjune': 15087, 'dfizzy': 15088, 'pimp': 15089, 'suprises': 15090, 'cheerio': 15091
, 'drasda': 15092, 'sondaughter': 15093, 'thingyit': 15094, 'uts': 15095, 'lololol': 15096, 'kenan': 15097, 'kel
': 15098, 'nowright': 15099, 'shen': 15100, 'appliances': 15101, 'criminals': 15102, 'indiscrimate': 15103, 'bad
its': 15104, 'carthage': 15105, 'dbl': 15106, 'congratss': 15107, 'funand': 15108, 'soonhave': 15109, 'securely'
: 15110, 'tightly': 15111, 'trumping': 15112, 'omnomlette': 15113, 'acquiring': 15114, 'centos': 15115, 'psychin
g': 15116, 'daysoh': 15117, 'freethere': 15118, 'mommiessss': 15119, 'leading': 15120, 'mshs': 15121, 'hakuna':
15122, 'matana': 15123, 'againaha': 15124, 'questionsrevision': 15125, 'toadtastic': 15126, 'yupp': 15127, 'fnb'
: 15128, 'abusehcabuse': 15129, 'tables': 15130, 'twitterology': 15131, 'posse': 15132, 'vacant': 15133, 'dynami
c': 15134, 'freecycle': 15135, 'screams': 15136, 'curdling': 15137, 'palahniuks': 15138, 'pygmy': 15139, 'nabuse
eabuserabused': 15140, 'depaul': 15141, 'tadpole': 15142, 'contractions': 15143, 'tribbles': 15144, 'tracking':
15145, 'tankdps': 15146, 'carville': 15147, 'bubblewrap': 15148, 'christas': 15149, 'extinction': 15150, 'foolis
hness': 15151, 'yayness': 15152, 'loney': 15153, 'hellboy': 15154, 'dontlike': 15155, 'touchscreen': 15156, 'sno
tty': 15157, 'koala': 15158, 'pubquizzing': 15159, 'sinon': 15160, 'mardi': 15161, 'avian': 15162, 'awesomely':
15163, 'cyk': 15164, 'cymk': 15165, 'uuuu': 15166, 'firsti': 15167, 'fantabulous': 15168, 'division': 15169, 'wo
oden': 15170, 'evermore': 15171, 'tara': 15172, 'watir': 15173, 'pleaseeeee': 15174, 'birthdayyyy': 15175, 'fres
hmen': 15176, 'warmup': 15177, 'tadi': 15178, 'hamster': 15179, 'youuuuuuuuuuu': 15180, 'emilyy': 15181, 'daylig
ht': 15182, 'vips': 15183, 'eilish': 15184, 'competiton': 15185, 'pineapples': 15186, 'schulz': 15187, 'murphys'
: 15188, 'boredddddd': 15189, 'abusebrokenabuse': 15190, 'sighhh': 15191, 'onstage': 15192, 'butlins': 15193, 't
odaymy': 15194, 'allowance': 15195, 'cybernet': 15196, 'bttr': 15197, 'csh': 15198, 'partlolok': 15199, 'yeeeeah
i': 15200, 'flora': 15201, 'shifted': 15202, 'sappy': 15203, 'westlife': 15204, 'stratus': 15205, 'thunderstorms
perfect': 15206, 'reallly': 15207, 'stuffat': 15208, 'loooonnnggg': 15209, 'chocolateland': 15210, 'teaser': 152
11, 'outi': 15212, 'zip': 15213, 'courney': 15214, 'eeeeeeeeeeeeee': 15215, 'seee': 15216, 'ballistic': 15217, '
autistics': 15218, 'nathanfillion': 15219, 'thabks': 15220, 'severly': 15221, 'sunburntit': 15222, 'jordie': 152
23, 'tacosone': 15224, 'jonathon': 15225, 'isn�t': 15226, 'bps': 15227, 'bait': 15228, 'extremly': 15229, 'swe
epstakes': 15230, 'hypervenilating': 15231, 'abuseand': 15232, 'baltimoredc': 15233, 'suburbs': 15234, 'ticker':
15235, 'gaging': 15236, 'mfs': 15237, 'nowthe': 15238, 'hehehehehethis': 15239, 'tahong': 15240, 'creche': 15241
, 'irony': 15242, 'swearing': 15243, 'yesterdayi': 15244, 'ughhi': 15245, 'saddd': 15246, 'deanna': 15247, 'wife
yyyyyy': 15248, 'siky': 15249, 'tapping': 15250, 'deprivation': 15251, 'winks': 15252, 'joing': 15253, 'distract
ionbut': 15254, 'underrated': 15255, 'gloopy': 15256, 'hommmmmme': 15257, 'peepsim': 15258, 'borgata': 15259, 'b
oiler': 15260, 'vacuuming': 15261, 'ecstatic': 15262, 'meteor': 15263, 'kiddos': 15264, 'reallyy': 15265, 'gahif
': 15266, 'sickhe': 15267, 'lolwellhope': 15268, 'sic': 15269, 'attendances': 15270, 'zimmer': 15271, 'duerden':
15272, 'jealousmuchi': 15273, 'littttttle': 15274, 'jayr': 15275, 'budgeting': 15276, 'merh': 15277, 'feminist':
15278, 'bartâ\xa0ofâ\xa0theâ\xa0criticalâ\xa0questions': 15279, 'zeropointit': 15280, 'odessey': 15281, 'thatam'
: 15282, 'themlove': 15283, 'donminican': 15284, 'tweepsland': 15285, 'nighttried': 15286, 'cdcaves': 15287, 'hi
lariously': 15288, 'maaaannnnnnnnn': 15289, 'connoisseur': 15290, 'hospice': 15291, 'gpa': 15292, 'ditched': 152
93, 'eeekkkk': 15294, 'bledel': 15295, 'dhcp': 15296, 'goooooodmoring': 15297, 'yat': 15298, 'aygee': 15299, 'af
fairs': 15300, 'southwestern': 15301, 'fuuuuuuuudgeee': 15302, 'nyokap': 15303, 'pernah': 15304, 'berkata': 1530
5, 'demikian': 15306, 'ffancy': 15307, 'dressready': 15308, 'howmany': 15309, 'tao': 15310, 'academyish': 15311,
'manwe': 15312, 'godda': 15313, 'listpermanent': 15314, 'sashas': 15315, 'comix': 15316, 'hanson': 15317, 'pooor
r': 15318, 'ahhhhhhhh': 15319, 'pridelines': 15320, 'osn': 15321, 'smokers': 15322, 'vandalize': 15323, 'yoooo':
15324, 'arghh': 15325, 'jonasnewsongs': 15326, 'broiler': 15327, 'surrrrrously': 15328, 'lappytop': 15329, 'bate
rrry': 15330, 'dyingtryingtofind': 15331, 'movieto': 15332, 'goingto': 15333, 'wanders': 15334, 'lacks': 15335,
'volcom': 15336, 'abusepounces': 15337, 'thanksss': 15338, 'harajuku': 15339, 'goneso': 15340, 'ohnoyoudidnt': 1
5341, 'malakas': 15342, 'ayy': 15343, 'okayyy': 15344, 'kanina': 15345, 'muahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh': 1
5346, 'lunchn': 15347, 'niteda': 15348, 'kittys': 15349, 'fisher': 15350, 'stellar': 15351, 'recipient': 15352,
'specs': 15353, 'smuggle': 15354, 'eternity': 15355, 'nbc': 15356, 'theofficenbc': 15357, 'gervais': 15358, 'cms
': 15359, 'versioning': 15360, 'railsgit': 15361, 'coudl': 15362, 'starbuks': 15363, 'lotby': 15364, 'peacin': 1
5365, 'bara': 15366, 'closets': 15367, 'aggghhhh': 15368, 'muak': 15369, 'sudah': 15370, 'minneapolisst': 15371,
'nekkid': 15372, 'augusten': 15373, 'burroughs': 15374, 'franz': 15375, 'friended': 15376, 'sommat': 15377, 'cal
ibre': 15378, 'visitin': 15379, 'entourage': 15380, 'teflon': 15381, 'whisky': 15382, 'beforesometimes': 15383,
'forgiving': 15384, 'remould': 15385, 'reform': 15386, 'posters': 15387, 'tomoroo': 15388, 'giid': 15389, 'gni':
15390, 'abusegaspabuse': 15391, 'emozac': 15392, 'zaccie': 15393, 'hourswill': 15394, 'awakei': 15395, 'dayscamp
ing': 15396, 'yayi': 15397, 'whittier': 15398, 'advil': 15399, 'madeleines': 15400, 'otra': 15401, 'vez': 15402,
'lenas': 15403, 'cookout': 15404, 'errrr': 15405, 'vluna': 15406, 'lsu': 15407, 'southern': 15408, 'jinxed': 154
09, 'thks': 15410, 'menow': 15411, 'jaiden': 15412, 'phped': 15413, 'successfuly': 15414, 'ems': 15415, 'smelt':
15416, 'loveees': 15417, 'fuuudge': 15418, 'sedaris': 15419, 'abouts': 15420, 'hehenice': 15421, 'bui': 15422, '
grants': 15423, 'fees': 15424, 'tritonlink': 15425, 'participate': 15426, 'weeken': 15427, 'thorn': 15428, 'mout
hy': 15429, 'playback': 15430, 'twittttty': 15431, 'wantbut': 15432, 'ganna': 15433, 'samuri': 15434, 'lancey':
15435, 'greatings': 15436, 'shannan': 15437, 'laded': 15438, 'lanet': 15439, 'hopefull': 15440, 'hmmhaiaa': 1544
1, 'jackes': 15442, 'anew': 15443, 'beanz': 15444, 'michells': 15445, 'wtaching': 15446, 'recruits': 15447, 'lur
ed': 15448, 'completes': 15449, 'nomsgot': 15450, 'evar': 15451, 'awnser': 15452, 'meth': 15453, 'foreigner': 15
454, 'titanium': 15455, 'helicopter': 15456, 'topend': 15457, 'luxury': 15458, 'colbert': 15459, 'buddhist': 154
60, 'jews': 15461, 'wavy': 15462, 'hairstyle': 15463, 'arghhhmy': 15464, 'seei': 15465, 'rotting': 15466, 'yl':
15467, 'skeleton': 15468, 'hyde': 15469, 'jocant': 15470, 'plywood': 15471, 'elsinore': 15472, 'kymonkey': 15473
, 'generations': 15474, 'mindy': 15475, 'tiredddd': 15476, 'odeeee': 15477, 'addy': 15478, 'fwd': 15479, 'thatgo
nna': 15480, 'retell': 15481, 'luca': 15482, 'skittles': 15483, 'yalls': 15484, 'sweeties': 15485, 'widddd': 154
86, 'moses': 15487, 'knottie': 15488, 'bmpre': 15489, 'busipod': 15490, 'trini': 15491, 'esata': 15492, 'bendito
': 15493, 'williamsburg': 15494, 'infinite': 15495, 'boutiques': 15496, 'wbad': 15497, 'scone': 15498, 'chore':
15499, 'rollo': 15500, 'inserted': 15501, 'archesi': 15502, 'monthsdefinitely': 15503, 'notary': 15504, 'retrogr
ade': 15505, 'fevered': 15506, 'sweetdreams': 15507, 'downtownnow': 15508, 'mayyyybe': 15509, 'optimist': 15510,
'shoreline': 15511, 'stragglers': 15512, 'handwraps': 15513, 'pdgg': 15514, 'hehaheahaaaa': 15515, 'punters': 15
516, 'enjoys': 15517, 'catnappedcats': 15518, 'anita': 15519, 'sharpied': 15520, 'albeit': 15521, 'controlling':
15522, 'bayou': 15523, 'judgemental': 15524, 'dif': 15525, 'rhythms': 15526, 'sinc': 15527, 'inutero': 15528, 'h
eyheyheyy': 15529, 'watcha': 15530, 'kohls': 15531, 'flops': 15532, 'annnnd': 15533, 'truesdale': 15534, 'autoco
nnect': 15535, 'fotc': 15536, 'supperinn': 15537, 'grouling': 15538, 'albert': 15539, 'marathonima': 15540, 'rec
eipt': 15541, 'thirdchapter': 15542, 'todaybeen': 15543, 'carlos': 15544, 'wasssup': 15545, 'jeanstheading': 155
46, 'ttown': 15547, 'plez': 15548, 'maitreya': 15549, 'bobbys': 15550, 'boilergreat': 15551, 'zotz': 15552, 'jib
erish': 15553, 'joyhappy': 15554, 'sweeet': 15555, 'flovers': 15556, 'oldvery': 15557, 'mucky': 15558, 'outmoody
': 15559, 'sloppy': 15560, 'ffwd': 15561, 'aac': 15562, 'markers': 15563, 'sculpting': 15564, 'ceo': 15565, 'thi
nksm': 15566, 'sheets': 15567, 'underpants': 15568, 'ebtter': 15569, 'adn': 15570, 'shortstack': 15571, 'cyprus'
: 15572, 'phoned': 15573, 'thereeeeeee': 15574, 'sauteed': 15575, 'smacks': 15576, 'flipside': 15577, 'mobiledan
g': 15578, 'bahrain': 15579, 'wellwe': 15580, 'decleration': 15581, 'remarks': 15582, 'blondes': 15583, 'ummonly
': 15584, 'awlll': 15585, 'summa': 15586, 'daa': 15587, 'crewww': 15588, 'brett': 15589, 'fininsh': 15590, 'shin
eeeee': 15591, 'worksick': 15592, 'hoot': 15593, 'reece': 15594, 'nearby': 15595, 'walkthe': 15596, 'cathy': 155
97, 'ordinarily': 15598, 'downloader': 15599, 'littleren': 15600, 'hillsong': 15601, 'tooooth': 15602, 'pilli':
15603, 'crazyhere': 15604, 'biknightual': 15605, 'tweedeck': 15606, 'bkha': 15607, 'whenwhen': 15608, 'bedeven':
15609, 'kink': 15610, 'keri': 15611, 'hilson': 15612, 'dropper': 15613, 'overstuffed': 15614, 'fools': 15615, 't
imelessdont': 15616, 'performed': 15617, 'abusethatabuse': 15618, 'mend': 15619, 'ummmph': 15620, 'miz': 15621,
'yepsjust': 15622, 'geekshopping': 15623, 'twitterrific': 15624, 'outagecold': 15625, 'arnie': 15626, 'mixup': 1
5627, 'ballet': 15628, 'awardsbut': 15629, 'thaank': 15630, 'tahoe': 15631, 'patrolwho': 15632, 'doggies': 15633
, 'umwaste': 15634, 'qa': 15635, 'oeiras': 15636, 'youl': 15637, 'mot': 15638, 'krautrock': 15639, 'cherryflavor
ed': 15640, 'shannt': 15641, 'postpone': 15642, 'getttin': 15643, 'jewel': 15644, 'boozin': 15645, 'boos': 15646
, 'polyvore': 15647, 'lnd': 15648, 'banbury': 15649, 'butthurt': 15650, 'beachmex': 15651, 'tottaly': 15652, 'to
daytottaly': 15653, 'sameabuse': 15654, 'mariqueens': 15655, 'beachwood': 15656, 'helio': 15657, 'gremlin': 1565
8, 'tekzilla': 15659, 'range': 15660, 'anythgin': 15661, 'dohaha': 15662, 'bedmommas': 15663, 'rainchecktomorrow
': 15664, 'amgot': 15665, 'waitwhy': 15666, 'versa': 15667, 'alkaline': 15668, 'saves': 15669, 'tweeets': 15670,
'tweekdeckkk': 15671, 'cryyyy': 15672, 'havs': 15673, 'wayim': 15674, 'drace': 15675, 'sting': 15676, 'resources
': 15677, 'delle': 15678, 'innocently': 15679, 'phillll': 15680, 'wazzuppppp': 15681, 'gifford': 15682, 'lecture
s': 15683, 'indianapolis': 15684, 'endlessly': 15685, 'fascinated': 15686, 'sustainability': 15687, 'gen': 15688
, 'cf': 15689, 'meters': 15690, 'cobbles': 15691, 'finenow': 15692, 'msning': 15693, 'societe': 15694, 'generale
': 15695, 'functional': 15696, 'mumm': 15697, 'hopefuly': 15698, 'argie': 15699, 'consultant': 15700, 'abusemabu
se': 15701, 'writersthey': 15702, 'wonderwhy': 15703, 'foisting': 15704, 'goooodnight': 15705, 'bestfriends': 15
706, 'misog': 15707, 'todayyyyyyyyy': 15708, 'intervals': 15709, 'wallpapers': 15710, 'ssm': 15711, 'graceful':
15712, 'vry': 15713, 'niqhty': 15714, 'toqether': 15715, 'tuning': 15716, 'raising': 15717, 'restaraunt': 15718,
'garfields': 15719, 'bigggest': 15720, 'matte': 15721, 'lcd': 15722, 'inix': 15723, 'bravi': 15724, 'uninteresti
ng': 15725, 'bookim': 15726, 'atkins': 15727, 'concerti': 15728, 'losers': 15729, 'claimed': 15730, 'charlene':
15731, 'tomorrowgotta': 15732, 'overthought': 15733, 'picky': 15734, 'thedailyshow': 15735, 'sian': 15736, 'hubb
ie': 15737, 'snubbed': 15738, 'ineptnessshyness': 15739, 'stalkerishly': 15740, 'brookie': 15741, 'moracca': 157
42, 'jeuno': 15743, 'meltdown': 15744, 'imprinted': 15745, 'mrbean': 15746, 'txts': 15747, 'clutches': 15748, 'l
usting': 15749, 'footer': 15750, 'commando': 15751, 'chanting': 15752, 'inxs': 15753, 'winksy': 15754, 'unloved'
: 15755, 'witless': 15756, 'photofiltre': 15757, 'photoscape': 15758, 'gimp': 15759, 'outa': 15760, 'issueslol':
15761, 'impacts': 15762, 'virtualization': 15763, 'guitartoday': 15764, 'nameless': 15765, 'lonnie': 15766, 'sow
y': 15767, 'shortie': 15768, 'alltop': 15769, 'suivez': 15770, 'encouragement': 15771, 'frosting': 15772, 'funni
set': 15773, 'jubey': 15774, 'sherraton': 15775, 'brodi': 15776, 'bbqd': 15777, 'lifted': 15778, 'counseling': 1
5779, 'sellout': 15780, 'fluke': 15781, 'projector': 15782, 'youcan': 15783, 'notorious': 15784, 'reallizing': 1
5785, 'shawty': 15786, 'oowwwww': 15787, 'vinny': 15788, 'opposite': 15789, 'ongeeez': 15790, 'dyededed': 15791,
'waldi': 15792, 'reeces': 15793, 'bigtime': 15794, 'gov': 15795, 'mileyyyyyy': 15796, 'iamjes': 15797, 'armhole'
: 15798, 'hopfully': 15799, 'yessss': 15800, 'snob': 15801, 'ladyill': 15802, 'bursting': 15803, 'skyand': 15804
, 'wellback': 15805, 'crchan': 15806, 'blokey': 15807, 'supporters': 15808, 'whitex': 15809, 'gratz': 15810, 'ha
rvey': 15811, 'babysitterdirectory': 15812, 'revealed': 15813, 'semiflaky': 15814, 'vrbocom': 15815, 'rihanna':
15816, 'concentrating': 15817, 'afternooni': 15818, 'ditto': 15819, 'friendbored': 15820, 'riley': 15821, 'alpha
bet': 15822, 'nightt': 15823, 'tutus': 15824, 'designart': 15825, 'therefore': 15826, 'hmmmchinese': 15827, 'alt
ho': 15828, 'woolsery': 15829, 'molton': 15830, 'clinch': 15831, 'licnse': 15832, 'mechanic': 15833, 'inspection
s': 15834, 'heretill': 15835, 'macmaze': 15836, 'supp': 15837, 'cuckoo': 15838, 'ritas': 15839, 'shoppers': 1584
0, 'taser': 15841, 'penalty': 15842, 'hice': 15843, 'maruchan': 15844, 'darius': 15845, 'neighting': 15846, 'tra
ces': 15847, 'rdj': 15848, 'pane': 15849, 'chotachota': 15850, 'reflexie': 15851, 'arcade': 15852, 'wooomy': 158
53, 'easywriter': 15854, 'corral': 15855, 'liddle': 15856, 'beotch': 15857, 'airbrushed': 15858, 'littleeerrrr':
15859, 'blender': 15860, 'wednesay': 15861, 'shepards': 15862, 'gentlemans': 15863, 'fannish': 15864, 'inquisiti
on': 15865, 'nauseas': 15866, 'oktwitter': 15867, 'leisure': 15868, 'gina': 15869, 'corrections': 15870, 'feeder
s': 15871, 'dragbut': 15872, 'decompression': 15873, 'bawkmarked': 15874, 'sleepcraziness': 15875, 'proven': 158
76, 'dahh': 15877, 'buckley': 15878, 'parece': 15879, 'personas': 15880, 'estan': 15881, 'acuerdo': 15882, 'chan
': 15883, 'kmrn': 15884, 'bawa': 15885, 'kosong': 15886, 'scanner': 15887, 'iter': 15888, 'reactor': 15889, 'ren
ame': 15890, 'followfridays': 15891, 'slowdown': 15892, 'farrrrr': 15893, 'pdhpe': 15894, 'trivun': 15895, 'yeee
eeeeee': 15896, 'harrymcflytosing': 15897, 'dtrain': 15898, 'itts': 15899, 'canasta': 15900, 'thenpsych': 15901,
'patiently': 15902, 'barcalona': 15903, 'waitn': 15904, 'rappn': 15905, 'gav': 15906, 'sheriff': 15907, 'natalyy
': 15908, 'whyd': 15909, 'joyner': 15910, 'professionally': 15911, 'confit': 15912, 'pwned': 15913, 'shottie': 1
5914, 'orientationits': 15915, 'seriouslythis': 15916, 'blatantly': 15917, 'embrace': 15918, 'deficiency': 15919
, 'likerio': 15920, 'ahhaha': 15921, 'cheshire': 15922, 'manic': 15923, 'amys': 15924, 'badbooks': 15925, 'alway
sss': 15926, 'answering': 15927, 'wheree': 15928, 'understood': 15929, 'precoffee': 15930, 'pol': 15931, 'udd':
15932, 'foooood': 15933, 'hum': 15934, 'airco': 15935, 'gooooooodmorning': 15936, 'aerlingus': 15937, 'ryanair':
15938, 'billund': 15939, 'remembers': 15940, 'loopy': 15941, 'noida': 15942, 'buhbyeee': 15943, 'sunshiines': 15
944, 'whisked': 15945, 'bid': 15946, 'jleno': 15947, 'quebec': 15948, 'backseat': 15949, 'embossers': 15950, 'pa
persource': 15951, 'florists': 15952, 'cassadee': 15953, 'florist': 15954, 'hmmneed': 15955, 'elsehmm': 15956, '
runless': 15957, 'fastings': 15958, 'showss': 15959, 'piccies': 15960, 'butler': 15961, 'thinkhope': 15962, 'med
itating': 15963, 'weekendgotta': 15964, 'baptized': 15965, 'gprs': 15966, 'yaymencom': 15967, 'rightim': 15968,
'hoilday': 15969, 'hangovers': 15970, 'fragile': 15971, 'waxing': 15972, 'mustache': 15973, 'ofc': 15974, 'genui
nely': 15975, 'nuthin': 15976, 'imposible': 15977, 'amar': 15978, 'sportsmens': 15979, 'warehouse': 15980, 'arro
ws': 15981, 'amercia': 15982, 'disapointedgood': 15983, 'britainsgottalent': 15984, 'vhemt': 15985, 'gardeners':
15986, 'stressin': 15987, 'harmed': 15988, 'snappy': 15989, 'amwhats': 15990, 'amplayed': 15991, 'outsidewowwas'
: 15992, 'greatgot': 15993, 'middetox': 15994, 'bluff': 15995, 'laurenim': 15996, 'gallore': 15997, 'kayleigh':
15998, 'coatandkaycom': 15999, 'yeahi': 16000, 'capes': 16001, 'girllll': 16002, 'unc': 16003, 'abusefailabuse':
16004, 'pizzeria': 16005, 'banksville': 16006, 'beachview': 16007, 'antiboyle': 16008, 'mack': 16009, 'homenight
': 16010, 'handleing': 16011, 'sliverlight': 16012, 'isi': 16013, 'homeseriously': 16014, 'gar': 16015, 'relight
': 16016, 'inill': 16017, 'whywhywhy': 16018, 'asugar': 16019, 'btaste': 16020, 'eminems': 16021, 'tweetlessand'
: 16022, 'beautifulalbeit': 16023, 'patsy': 16024, 'bloodypoet': 16025, 'nkkairplay': 16026, 'superawesome': 160
27, 'abusecaitabuse': 16028, 'heffas': 16029, 'typin': 16030, 'aspirating': 16031, 'lolthxs': 16032, 'outfield':
16033, 'sexxxy': 16034, 'tiiiiiimmmmmmeeewhatever': 16035, 'stupor': 16036, 'dolled': 16037, 'guides': 16038, 'm
orningis': 16039, 'int': 16040, 'extenders': 16041, 'sleepingtime': 16042, 'alreay': 16043, 'wilber': 16044, 'ex
pectation': 16045, 'integral': 16046, 'psyched': 16047, 'gkr': 16048, 'partyand': 16049, 'beeeeeddddddd': 16050,
'aids': 16051, 'rrod': 16052, 'boreddisgusting': 16053, 'weatherboredsooo': 16054, 'shareeee': 16055, 'zappa': 1
6056, 'xxxxxxloser': 16057, 'weigly': 16058, 'jer': 16059, 'snapping': 16060, 'transferring': 16061, 'valencias'
: 16062, 'grumpiness': 16063, 'carsthis': 16064, 'postedabuse': 16065, 'dreadweave': 16066, 'smoothy': 16067, 'b
aulko': 16068, 'aghh': 16069, 'wowp': 16070, 'maddd': 16071, 'vaccinations': 16072, 'hurtling': 16073, 'headlong
': 16074, 'frees': 16075, 'haavent': 16076, 'stubbed': 16077, 'cabinet': 16078, 'cooould': 16079, 'lovelet': 160
80, 'daysssssss': 16081, 'yahoooo': 16082, 'daaaaawhh': 16083, 'egan': 16084, 'keypad': 16085, 'mogwai': 16086,
'yeeee': 16087, 'enlightening': 16088, 'eachothers': 16089, 'practising': 16090, 'harbor': 16091, 'courage': 160
92, 'kaila': 16093, 'ocampo': 16094, 'therainbowholicmeeeriesilencenet': 16095, 'hazin': 16096, 'copyed': 16097,
'pleeez': 16098, 'bamf': 16099, 'artificial': 16100, 'oofm': 16101, 'personified': 16102, 'jensen': 16103, 'leic
as': 16104, 'interupted': 16105, 'jackhammers': 16106, 'intil': 16107, 'thougth': 16108, 'bdate': 16109, 'thq':
16110, 'billed': 16111, 'rpg': 16112, 'cherished': 16113, 'lh': 16114, 'fopp': 16115, 'burlesque': 16116, 'ban':
16117, 'drawning': 16118, 'qualifying': 16119, 'goodwill': 16120, 'stuffthink': 16121, 'reg': 16122, 'dealin': 1
6123, 'cupboards': 16124, 'freeways': 16125, 'ge': 16126, 'homely': 16127, 'freddie': 16128, 'funpacked': 16129,
'preheatin': 16130, 'kelliehow': 16131, 'gourmetcook': 16132, 'wowsa': 16133, 'didntb': 16134, 'scholar': 16135,
'homeland': 16136, 'ontology': 16137, 'stopselfridges': 16138, 'straighteners': 16139, 'pricey': 16140, 'taskbas
ed': 16141, 'ux': 16142, 'criticisms': 16143, 'doesntsheesh': 16144, 'mcds': 16145, 'hader': 16146, 'toyno': 161
47, 'graces': 16148, 'funzen': 16149, 'haih': 16150, 'quadcore': 16151, 'dualcore': 16152, 'happppppyyyy': 16153
, 'mothersdayyyyyyyyy': 16154, 'doubly': 16155, 'weatherrrrr': 16156, 'bacoor': 16157, 'wahaha': 16158, 'toinks'
: 16159, 'wiih': 16160, 'tosser': 16161, 'cousinbff': 16162, 'areply': 16163, 'sph': 16164, 'dissappoint': 16165
, 'haiz': 16166, 'holdem': 16167, 'omgaah': 16168, 'creepering': 16169, 'poorest': 16170, 'megeezi': 16171, 'nor
thbound': 16172, 'sadfound': 16173, 'otu': 16174, 'illogical': 16175, 'cartoons': 16176, 'cofffeeeeeee': 16177,
'rawr': 16178, 'nerdfriends': 16179, 'rochester': 16180, 'cellnothin': 16181, 'candidness': 16182, 'redd': 16183
, 'mps': 16184, 'hopelessly': 16185, 'vinsensitive': 16186, 'meetin': 16187, 'jewelery': 16188, 'manors': 16189,
'proved': 16190, 'facetious': 16191, 'kawaii': 16192, 'chroma': 16193, 'cumulus': 16194, 'niceid': 16195, 'bdays
': 16196, 'grrrreat': 16197, 'foodfoodfood': 16198, 'elaines': 16199, 'bhr': 16200, 'amazingggg': 16201, 'threat
ened': 16202, 'surveillance': 16203, 'increases': 16204, 'nomore': 16205, 'serio': 16206, 'barroca': 16207, 'par
abens': 16208, 'ghetto': 16209, 'twitterparty': 16210, 'wimpy': 16211, 'morningsometimes': 16212, 'dobut': 16213
, 'cinncinatti': 16214, 'lesterpitcher': 16215, 'dolores': 16216, 'colouring': 16217, 'nicoles': 16218, 'lilash'
: 16219, 'rethinking': 16220, 'yvr': 16221, 'jessi': 16222, 'restaurantwhere': 16223, 'siccck': 16224, 'jimbbbbo
': 16225, 'abuseimabuse': 16226, 'okim': 16227, 'homskis': 16228, 'petite': 16229, 'puce': 16230, 'adica': 16231
, 'puricel': 16232, 'franceza': 16233, 'injuries': 16234, 'awesomeupdater': 16235, 'catchers': 16236, 'perils':
16237, 'tragedies': 16238, 'sideways': 16239, 'disaster': 16240, 'stove': 16241, 'boiland': 16242, 'themthen': 1
6243, 'wellas': 16244, 'holllaaa': 16245, 'opus': 16246, 'pwg': 16247, 'botched': 16248, 'hybrid': 16249, 'xl':
16250, 'jag': 16251, 'alternator': 16252, 'mayerhes': 16253, 'commencement': 16254, 'protest': 16255, 'cokies':
16256, 'arnt': 16257, 'mmmmmmmmmmmm': 16258, 'gerald': 16259, 'sporting': 16260, 'hives': 16261, 'chang': 16262,
'thay': 16263, 'orleans': 16264, 'omds': 16265, 'elaborate': 16266, 'halved': 16267, 'monstr': 16268, 'moooooooo
oooooooo': 16269, 'verse': 16270, 'hudson': 16271, 'loneliness': 16272, 'creeps': 16273, 'slaps': 16274, 'kaylee
s': 16275, 'agoi': 16276, 'dicei': 16277, 'searched': 16278, 'areajust': 16279, 'hotoh': 16280, 'ushers': 16281,
'eassy': 16282, 'longggg': 16283, 'feat': 16284, 'fireeeeee': 16285, 'tataindicom': 16286, 'tatasky': 16287, 'ai
rtel': 16288, 'namelol': 16289, 'studyingnow': 16290, 'overheard': 16291, 'yrold': 16292, 'anniemay': 16293, 'so
oooooooooooooooo': 16294, 'deadass': 16295, 'arr': 16296, 'sowbur': 16297, 'promiss': 16298, 'styoopid': 16299,
'hazzunt': 16300, 'kum': 16301, 'agane': 16302, 'hyding': 16303, 'sumware': 16304, 'larffing': 16305, 'passtime'
: 16306, 'systems': 16307, 'chatted': 16308, 'correspondants': 16309, 'dowant': 16310, 'traumatizing': 16311, 'm
assacred': 16312, 'bunnies': 16313, 'boringgg': 16314, 'dodd': 16315, 'paged': 16316, 'proly': 16317, 'reallyyyy
y': 16318, 'whys': 16319, 'nieces': 16320, 'pspds': 16321, 'earlyer': 16322, 'subscribers': 16323, 'howevernow':
16324, 'thos': 16325, 'webcamming': 16326, 'caroooo': 16327, 'lawl': 16328, 'gloomygo': 16329, 'icecreamor': 163
30, 'ginwhichever': 16331, 'runday': 16332, 'feta': 16333, 'uuu': 16334, 'yeey': 16335, 'epenis': 16336, 'flollo
ping': 16337, 'describes': 16338, 'twitskies': 16339, 'cinderelliiee': 16340, 'everyhere': 16341, 'cinco': 16342
, 'bran': 16343, 'contests': 16344, 'erased': 16345, 'doughnut': 16346, 'mybrute': 16347, 'midgets': 16348, 'fig
htin': 16349, 'ln': 16350, 'turbull': 16351, 'bunting': 16352, 'weer': 16353, 'eens': 16354, 'raar': 16355, 'gel
open': 16356, 'stonehenge': 16357, 'mysefl': 16358, 'minging': 16359, 'mcmanus': 16360, 'maccies': 16361, 'kakab
alik': 16362, 'tarlac': 16363, 'aftie': 16364, 'howie': 16365, 'ltj': 16366, 'yoke': 16367, 'd�a': 16368, '�
why': 16369, '�whyyy': 16370, 'gahd': 16371, 'allwill': 16372, 'marking': 16373, 'observationally': 16374, 'in
sightful': 16375, 'aries': 16376, 'watts': 16377, 'uninvited': 16378, 'deid': 16379, 'epicenter': 16380, 'throwi
ngkeeps': 16381, 'eying': 16382, 'dillybar': 16383, 'dq': 16384, 'yuuum': 16385, 'striker': 16386, 'maat': 16387
, 'brrrrr': 16388, 'shamed': 16389, 'inotia': 16390, 'yaaaaaaaaaaaay': 16391, 'forgottten': 16392, 'insonmia': 1
6393, 'lotion': 16394, 'gareths': 16395, 'gareth': 16396, 'nowbout': 16397, 'wowhope': 16398, 'weber': 16399, 'f
ounder': 16400, 'bettiye': 16401, 'omfglmaolassetti': 16402, 'contagious': 16403, 'lifs': 16404, 'unfairluk': 16
405, 'frendi': 16406, 'nurses': 16407, 'rns': 16408, 'russel': 16409, 'brands': 16410, 'ponderland': 16411, 'fac
eagain': 16412, 'newjabbakidz': 16413, 'wasu': 16414, 'masksi': 16415, 'speeches': 16416, 'punlk': 16417, 'torco
n': 16418, 'instances': 16419, 'janis': 16420, 'carleigh': 16421, 'realizedi': 16422, 'birthdayboo': 16423, 'enc
oraging': 16424, 'behavior': 16425, 'sinse': 16426, 'thingnot': 16427, 'nuffin': 16428, 'caresi': 16429, 'spider
s': 16430, 'octupi': 16431, 'minstrels': 16432, 'petrol': 16433, 'backordered': 16434, 'cliffs': 16435, 'headlig
hts': 16436, 'spotlight': 16437, 'estimation': 16438, 'mamabear': 16439, 'tart': 16440, 'strauss': 16441, 'luvwi
ll': 16442, 'locate': 16443, 'bba': 16444, 'cohen': 16445, 'clark': 16446, 'notches': 16447, 'technologically':
16448, 'calyx': 16449, 'exsplain': 16450, 'treeeeek': 16451, 'rye': 16452, 'speedway': 16453, 'whooop': 16454, '
congratuations': 16455, 'carnivalsofparis': 16456, 'mqm': 16457, 'altaf': 16458, 'bhai': 16459, 'unveil': 16460,
'karachi': 16461, 'chipolte': 16462, 'spaceports': 16463, 'alreadt': 16464, 'podcasters': 16465, 'emporium': 164
66, 'twitteriffic': 16467, 'touri': 16468, 'ryans': 16469, 'housewife': 16470, 'contemplate': 16471, 'meeeaaannn
': 16472, 'restarting': 16473, 'payat': 16474, 'buggered': 16475, 'distorted': 16476, 'obs': 16477, 'como': 1647
8, 'significant': 16479, 'sugarchocolatecaffeine': 16480, 'stickler': 16481, 'dpi': 16482, 'decline': 16483, 'ra
tt': 16484, 'toniteone': 16485, 'pearcy': 16486, 'werecounting': 16487, 'prs': 16488, 'ermnot': 16489, 'swelteri
ng': 16490, 'slithering': 16491, 'snakes': 16492, 'frightening': 16493, 'detail': 16494, 'imnot': 16495, 'awesom
eilyabuse': 16496, 'moderately': 16497, 'lactoseintolerant': 16498, 'abiding': 16499, 'oopstoo': 16500, 'bridges
': 16501, 'blair': 16502, 'makati': 16503, 'reblipping': 16504, 'logically': 16505, 'staffers': 16506, 'goals':
16507, 'whiles': 16508, 'romulin': 16509, 'helsinki': 16510, 'hans': 16511, 'gymtanning': 16512, 'possibe': 1651
3, 'uhoh': 16514, 'gandang': 16515, 'mas': 16516, 'mahal': 16517, 'sya': 16518, 'tactical': 16519, 'everblue': 1
6520, 'phogs': 16521, 'hahait': 16522, 'booomb': 16523, 'psp': 16524, 'mcrglad': 16525, 'yeyahbut': 16526, 'fink
': 16527, 'popeye': 16528, 'anoher': 16529, 'abusedidabuse': 16530, 'inningssweared': 16531, 'lawwas': 16532, 'c
lusters': 16533, 'availability': 16534, 'liars': 16535, 'redabuse': 16536, 'surfers': 16537, 'shhhweeeetjayz': 1
6538, 'tormented': 16539, 'neckshoulderback': 16540, 'chelseylol': 16541, 'flashlight': 16542, 'wlda': 16543, 'd
ummyhead': 16544, 'deakin': 16545, 'prof': 16546, 'ahhhhhhh': 16547, 'yesyesyes': 16548, 'dumerils': 16549, 'hog
nose': 16550, 'distraction': 16551, 'envious': 16552, 'longdistance': 16553, 'relationshipsshes': 16554, 'whiny'
: 16555, 'kidsitting': 16556, 'awesomerer': 16557, 'zoombezi': 16558, 'heey': 16559, 'sleepytown': 16560, 'summa
t': 16561, 'assembling': 16562, 'recharge': 16563, 'chocked': 16564, 'grammatical': 16565, 'horten': 16566, 'mos
s': 16567, 'k�': 16568, 'kairos': 16569, 'vegi': 16570, 'adress': 16571, 'splitting': 16572, 'suckss': 16573,
'endure': 16574, 'subponea': 16575, 'movietwo': 16576, 'shante': 16577, 'nesquik': 16578, 'mammyy': 16579, 'ther
mal': 16580, 'gpu': 16581, 'toodaayy': 16582, 'faceless': 16583, 'occasional': 16584, 'cargo': 16585, 'bdayhes':
16586, 'footlong': 16587, 'halal': 16588, 'placepiggy': 16589, 'lolol': 16590, 'originalohshit': 16591, 'planss'
: 16592, 'rearranging': 16593, 'shortening': 16594, 'saddens': 16595, 'groundim': 16596, 'fuckyoumonday': 16597,
'abusetastic': 16598, 'omgogmgo': 16599, 'deena': 16600, 'eastbay': 16601, 'unlike': 16602, 'bellyache': 16603,
'meeeeeee': 16604, 'restful': 16605, 'babee': 16606, 'yoooouuu': 16607, 'unfuzzy': 16608, 'bios': 16609, 'ggs':
16610, 'imho': 16611, 'dunker': 16612, 'crissy': 16613, 'doinnnn': 16614, 'frankfurt': 16615, 'mariage': 16616,
'networks': 16617, 'itfabuseckas': 16618, 'tyvm': 16619, 'reviens': 16620, 'orchestraand': 16621, 'sigur': 16622
, 'prettty': 16623, 'goooooooood': 16624, 'daaaaaancing': 16625, 'peolple': 16626, 'meebo': 16627, 'ebuddy': 166
28, 'brotha': 16629, 'vod': 16630, 'tantra': 16631, 'kirki': 16632, 'drowning': 16633, 'sparklers': 16634, 'jls'
: 16635, 'oramarecordscom': 16636, 'ohmigod': 16637, 'bradddd': 16638, 'yikeysss': 16639, 'harmless': 16640, 'we
ighed': 16641, 'doente': 16642, 'pumkpin': 16643, 'xmenwolverine': 16644, 'cordoning': 16645, 'leeloo': 16646, '
yayyyyyyyyyyy': 16647, 'crawled': 16648, 'lawyer': 16649, 'leavingg': 16650, 'boyfrienndd': 16651, 'finallly': 1
6652, 'adequately': 16653, 'tvtotal': 16654, 'shanwest': 16655, 'sharffenberger': 16656, 'nttn': 16657, 'freeles
son': 16658, 'freistunde': 16659, 'curtains': 16660, 'rugs': 16661, 'creamy': 16662, 'twitterabuse': 16663, 'exc
lamation': 16664, 'jailbroken': 16665, 'bricked': 16666, 'changin': 16667, 'buggers': 16668, 'interviewed': 1666
9, 'unusuals': 16670, 'muchachomalo': 16671, 'sweeter': 16672, 'conservative': 16673, 'bittercreek': 16674, 'hop
noxious': 16675, 'sweetgrass': 16676, 'tweethampton': 16677, 'researched': 16678, 'dami': 16679, 'flamenco': 166
80, 'subforms': 16681, 'attempted': 16682, 'solea': 16683, 'marche': 16684, 'rosti': 16685, 'crepes': 16686, 'dr
awer': 16687, 'kashtam': 16688, 'similey': 16689, 'csk': 16690, 'trevor': 16691, 'kickbutt': 16692, 'recommendat
iion': 16693, 'snugglin': 16694, 'strighters': 16695, 'cassian': 16696, 'addressed': 16697, 'wwecom': 16698, 'me
owmies': 16699, 'yippie': 16700, 'problemo': 16701, 'somerset': 16702, 'yyankees': 16703, 'reaches': 16704, 'par
noid': 16705, 'samsam': 16706, 'crooked': 16707, 'swam': 16708, 'dailybooth': 16709, 'workdays': 16710, 'ade': 1
6711, 'toasters': 16712, 'tremendously': 16713, 'holder': 16714, 'chilliin': 16715, 'mrazlooking': 16716, 'azs':
16717, 'lookn': 16718, 'tyson': 16719, 'thumbnail': 16720, 'wbc': 16721, 'counterprotests': 16722, 'waterfire':
16723, 'shoesless': 16724, 'ardillaaaaaaaaaaaa': 16725, 'righti': 16726, 'recos': 16727, 'burfday': 16728, 'eart
hlink': 16729, 'eaat': 16730, 'concentration': 16731, 'required': 16732, 'lmaoha': 16733, 'fx': 16734, 'suzi': 1
6735, 'scabs': 16736, 'reals': 16737, 'hahahahahahahahahahahaha': 16738, 'luketic': 16739, 'heathfoxcom': 16740,
'masseusse': 16741, 'buttocks': 16742, 'inch': 16743, 'galbladia': 16744, 'summy': 16745, 'ursssss': 16746, 'reb
ootiness': 16747, 'kwijt': 16748, 'pinging': 16749, 'tenenen': 16750, 'tenen': 16751, 'uce': 16752, 'pgce': 1675
3, 'workbut': 16754, 'bounty': 16755, 'vampyre': 16756, 'comixes': 16757, 'donloaded': 16758, 'tother': 16759, '
crutch': 16760, 'peircings': 16761, 'whacker': 16762, 'skypeeeeee': 16763, 'annoyingly': 16764, 'brats': 16765,
'constructions': 16766, 'poping': 16767, 'enthu': 16768, 'anshul': 16769, 'whants': 16770, 'workive': 16771, 'tr
ies': 16772, 'goodhair': 16773, 'radishes': 16774, 'blooms': 16775, 'marchit': 16776, 'slowthen': 16777, 'heartb
eat': 16778, 'excitedsad': 16779, 'dani': 16780, 'packin': 16781, 'chelmsford': 16782, 'demad': 16783, 'outsidew
ish': 16784, 'cruisetour': 16785, 'swin': 16786, 'vacationing': 16787, 'unfollowingnot': 16788, 'fooood': 16789,
'tshwane': 16790, 'fridayi': 16791, 'thomay': 16792, 'hadve': 16793, 'hardi': 16794, 'chow': 16795, 'noooowww':
16796, 'projectm': 16797, 'notifications': 16798, 'kidi': 16799, 'loserville': 16800, 'sheeeeittt': 16801, 'bwaa
aahhh': 16802, 'stamps': 16803, 'safeway': 16804, 'dippin': 16805, 'xanax': 16806, 'tsar': 16807, 'tyga': 16808,
'deleon': 16809, 'tifanny': 16810, 'blews': 16811, 'teeshirt': 16812, 'faaar': 16813, 'tweetilicious': 16814, 'w
onderfully': 16815, 'bores': 16816, 'dressing': 16817, 'portableapps': 16818, 'eunice': 16819, 'kyna': 16820, 't
gc': 16821, 'ciege': 16822, 'cagalawans': 16823, 'trap': 16824, 'eurjpy': 16825, 'executed': 16826, 'linuxoutlaw
s': 16827, 'hmmmstrained': 16828, 'tracky': 16829, 'daks': 16830, 'colder': 16831, 'muffler': 16832, 'bearings':
16833, 'autoreset': 16834, 'plinker': 16835, 'bedipod': 16836, 'playsoft': 16837, 'flowinsooooon': 16838, 'fancy
s': 16839, 'southpark': 16840, 'communifuckingcationlearn': 16841, 'caffein': 16842, 'affair': 16843, 'hypergood
ness': 16844, 'scored': 16845, 'mojito': 16846, 'aba': 16847, 'asd': 16848, 'intervene': 16849, 'watchers': 1685
0, 'epicfail': 16851, 'liao': 16852, 'burritos': 16853, 'enchilado': 16854, 'coffeei': 16855, 'sluggish': 16856,
'pitching': 16857, 'lackluster': 16858, 'shortstops': 16859, 'mendoza': 16860, 'littelist': 16861, 'departed': 1
6862, 'grl': 16863, 'grecia': 16864, 'fershure': 16865, 'cropping': 16866, 'themhelp': 16867, 'idkim': 16868, 'l
istits': 16869, 'valiantly': 16870, 'chargerrr': 16871, 'waching': 16872, 'grays': 16873, 'antomy': 16874, 'coog
ars': 16875, 'videoke': 16876, 'nyahahaha': 16877, 'enlargement': 16878, 'homerefreshed': 16879, 'justa': 16880,
'bitbac': 16881, 'upsets': 16882, 'becasue': 16883, 'uset': 16884, 'youhhhhhhh': 16885, 'japenese': 16886, 'sumt
hinnn': 16887, 'misssesss': 16888, 'supa': 16889, 'goers': 16890, 'cracks': 16891, 'myspacethey': 16892, 'caviar
': 16893, 'sata': 16894, 'ncq': 16895, 'marguerite': 16896, 'tweetville': 16897, 'jiulianis': 16898, 'oxoxoteamb
reezy': 16899, 'bazillions': 16900, 'installs': 16901, 'carnt': 16902, 'fascination': 16903, 'satisfying': 16904
, 'tims': 16905, 'clemency': 16906, 'youregreat': 16907, 'retreat': 16908, 'murdere': 16909, 'fitzcarraldo': 169
10, 'ambers': 16911, 'janeway': 16912, 'shatranjanpoli': 16913, 'andheri': 16914, 'heav': 16915, 'browse': 16916
, 'transactions': 16917, 'misshu': 16918, 'overdo': 16919, 'weezy': 16920, 'itsm': 16921, 'fotos': 16922, 'showr
': 16923, 'hse': 16924, 'dusted': 16925, 'vacuummy': 16926, 'smoky': 16927, 'kmart': 16928, 'friendtwitter': 169
29, 'selalu': 16930, 'ruang': 16931, 'untuk': 16932, 'sahabat': 16933, 'sterling': 16934, 'cooper': 16935, 'trav
elin': 16936, 'pepo': 16937, 'abuseleft': 16938, 'titlewhoops': 16939, 'webcams': 16940, 'hoepfner': 16941, 'bur
gfest': 16942, 'karlsruhe': 16943, 'buyers': 16944, 'remorseuve': 16945, 'daisys': 16946, 'chipping': 16947, 'al
exandra': 16948, 'belmont': 16949, 'apologise': 16950, 'deccy': 16951, 'shir': 16952, 'commission': 16953, 'amaz
oncom': 16954, 'certificates': 16955, 'buckonellen': 16956, 'electro': 16957, 'todayson': 16958, 'angrrry': 1695
9, 'dmed': 16960, 'steviej': 16961, 'homethe': 16962, 'regression': 16963, 'preorder': 16964, 'sphex': 16965, 't
hong': 16966, 'ripple': 16967, 'emopunk': 16968, 'curried': 16969, 'mussels': 16970, 'octopus': 16971, 'alfred':
16972, 'monopoly': 16973, 'chocolatey': 16974, 'shmolan': 16975, 'mamagra': 16976, 'racers': 16977, 'phoenixfm':
16978, 'booya': 16979, 'trades': 16980, 'abuseshouts': 16981, 'cluedo': 16982, 'snlkimyou': 16983, 'tonightjusti
n': 16984, 'meaner': 16985, 'transformer': 16986, 'abusesquooshabuse': 16987, 'overrated': 16988, 'dishesi': 169
89, 'ville': 16990, 'disliking': 16991, 'rumor': 16992, 'cyndi': 16993, 'cannabis': 16994, 'marijuana': 16995, '
mothrs': 16996, 'outt': 16997, 'cloning': 16998, 'ccrying': 16999, 'listning': 17000, 'guava': 17001, 'handi': 1
7002, 'foxy': 17003, 'groceries': 17004, 'ventana': 17005, 'cielos': 17006, 'foundation': 17007, 'werevery': 170
08, 'jesss': 17009, 'dot': 17010, 'puma': 17011, 'thunderrrr': 17012, 'blanky': 17013, 'daysome': 17014, 'perver
t': 17015, 'roe': 17016, 'anywayss': 17017, 'sleeeeeeepz': 17018, 'sheeeeit': 17019, 'bunuelos': 17020, 'nintend
ogs': 17021, 'abusemomabusenot': 17022, 'adoptive': 17023, 'lmk': 17024, 'immense': 17025, 'agreeable': 17026, '
notebook': 17027, 'dells': 17028, 'warrenty': 17029, 'hollered': 17030, 'dnw': 17031, 'myspaceee': 17032, 'under
thesink': 17033, 'safety': 17034, 'locks': 17035, 'fights': 17036, 'blcok': 17037, 'haox': 17038, 'linky': 17039
, 'worky': 17040, 'mimi': 17041, 'heartz': 17042, 'dayenjoy': 17043, 'evicted': 17044, 'abuserolls': 17045, 'min
na': 17046, 'ofcoooursee': 17047, 'pluss': 17048, 'incentive': 17049, 'akh': 17050, 'sayed': 17051, 'hassans': 1
7052, 'twoloers': 17053, 'candlelight': 17054, 'suites': 17055, 'emoticons': 17056, 'lan': 17057, 'compre': 1705
8, 'raha': 17059, 'abhi': 17060, 'mejer': 17061, 'blatant': 17062, 'aust': 17063, 'unofficially': 17064, 'geelon
g': 17065, 'evaluation': 17066, 'tutees': 17067, 'aloof': 17068, 'condescending': 17069, 'thar': 17070, 'illustr
ate': 17071, 'feeeel': 17072, 'rainforest': 17073, 'pugsly': 17074, 'otrip': 17075, 'snitchsneeker': 17076, 'pot
ted': 17077, 'geraniums': 17078, 'improving': 17079, 'steves': 17080, 'rida': 17081, 'stretching': 17082, 'enlis
ted': 17083, 'labo': 17084, 'bedsorta': 17085, 'thatyoure': 17086, 'armin': 17087, 'leopold': 17088, 'flames': 1
7089, 'dragonforce': 17090, 'johno': 17091, 'suffolk': 17092, 'menagerie': 17093, 'problematic': 17094, 'delirio
us': 17095, 'origami': 17096, 'auction': 17097, 'marshmellows': 17098, 'cramcrackers': 17099, 'richelle': 17100,
'mead': 17101, 'succubus': 17102, 'bluesfabulous': 17103, 'relaxful': 17104, 'miine': 17105, 'issuesvery': 17106
, 'challenges': 17107, 'twitterfriends': 17108, 'beb': 17109, 'innn': 17110, 'destination': 17111, 'peckishno':
17112, 'hoorah': 17113, 'taker': 17114, 'callespecially': 17115, 'silverstones': 17116, 'iracing': 17117, 'scann
ed': 17118, 'janelle': 17119, 'pamela': 17120, 'esque': 17121, 'expires': 17122, 'roundtrip': 17123, 'skater': 1
7124, 'ofhot': 17125, 'catherine': 17126, 'i�ll': 17127, 'rewatch': 17128, 'todayin': 17129, 'preparation': 17
130, 'tenner': 17131, 'bunking': 17132, 'makeupyou': 17133, 'robertson': 17134, 'abusedream': 17135, 'jobabuse':
17136, 'pung': 17137, 'extranauseous': 17138, 'peristalsis': 17139, 'greatif': 17140, 'gott': 17141, 'stuffit':
17142, 'overr': 17143, 'forv': 17144, 'cashis': 17145, 'kristi': 17146, 'oooooooh': 17147, 'eeeeeeekkkkkkk': 171
48, 'showerwere': 17149, 'churchtime': 17150, 'fused': 17151, 'fusedgaming': 17152, 'idkk': 17153, 'duckett': 17
154, 'festivalswell': 17155, 'fests': 17156, 'soonmust': 17157, 'sleepup': 17158, 'blastinggg': 17159, 'bbye': 1
7160, 'biochem': 17161, 'waaaaahhhhhh': 17162, 'weighting': 17163, 'twitterslowly': 17164, 'aroundhah': 17165, '
eyed': 17166, 'weeknend': 17167, 'encouragementit': 17168, 'batch': 17169, 'earthquakes': 17170, 'showertrafficf
actory': 17171, 'squirrellist': 17172, 'sliver': 17173, 'celebratory': 17174, 'unsuccesful': 17175, 'stellas': 1
7176, 'nawill': 17177, 'yyyyyyyyyoooooooooouuuuu': 17178, 'clubhouse': 17179, 'wl': 17180, 'benders': 17181, 'ah
ora': 17182, 'sturday': 17183, 'tonightam': 17184, 'smoothstreaming': 17185, 'usersfanfrickingtastic': 17186, 'm
uhaha': 17187, 'martha': 17188, 'mnth': 17189, 'pelangi': 17190, 'hotcold': 17191, 'yayz': 17192, 'ists': 17193,
'thanksi': 17194, 'thatbesides': 17195, 'cravin': 17196, 'weebo': 17197, 'remake': 17198, 'hollywoodjust': 17199
, 'furbabies': 17200, 'uhoooh': 17201, 'scratchy': 17202, 'cramped': 17203, 'rightabuse': 17204, 'eurgh': 17205,
'mornins': 17206, 'julywhat': 17207, 'doa': 17208, 'trialingfor': 17209, 'screeching': 17210, 'lololi': 17211, '
sawn': 17212, 'moshing': 17213, 'confetti': 17214, 'akon': 17215, 'outfits': 17216, 'esquire': 17217, 'fantasize
': 17218, 'megan': 17219, 'prd': 17220, 'taskbar': 17221, 'corrupt': 17222, 'chkdisk': 17223, 'upwards': 17224,
'abusehappydanceabuse': 17225, 'geogeektv': 17226, 'warmly': 17227, 'anywayi': 17228, 'omgthat': 17229, 'deadly'
: 17230, 'greaaat': 17231, 'pleaseeeeee': 17232, 'prematurely': 17233, 'cayogial': 17234, 'bz': 17235, 'baptist'
: 17236, 'missionaries': 17237, 'awwwwweeee': 17238, 'compaq': 17239, 'toodle': 17240, 'pip': 17241, 'trop': 172
42, 'duckraces': 17243, 'beara': 17244, 'seal': 17245, 'whale': 17246, 'magnolias': 17247, 'babysit': 17248, 'pe
acelovejonas': 17249, 'imissu': 17250, 'jig': 17251, 'quitsmokingdiary': 17252, 'yaaaaaayy': 17253, 'timothy': 1
7254, 'nigel': 17255, 'inexplicably': 17256, 'jackalope': 17257, 'intrepid': 17258, 'ibex': 17259, 'laffy': 1726
0, 'taffys': 17261, 'herrrrr': 17262, 'snappier': 17263, 'responsive': 17264, 'abusecough': 17265, 'airy': 17266
, 'didshed': 17267, 'exspecially': 17268, 'mcfox': 17269, 'sadie': 17270, 'atrak': 17271, 'youbeen': 17272, 'div
x': 17273, 'taura': 17274, 'hanafiah': 17275, 'morreee': 17276, 'shoott': 17277, 'fraudster': 17278, 'moo': 1727
9, 'cello': 17280, 'zeke': 17281, 'cramming': 17282, 'olina': 17283, 'shoreee': 17284, 'hike': 17285, 'brighten'
: 17286, 'quarantine': 17287, 'sinner': 17288, 'femme': 17289, 'fatale': 17290, 'photographers': 17291, 'tined':
17292, 'moisturiser': 17293, 'glossary': 17294, 'audi': 17295, 'joburg': 17296, 'lanky': 17297, 'lindsay': 17298
, 'fansite': 17299, 'livejournal': 17300, 'beeeyeteeseehedge': 17301, 'pundits': 17302, 'forhow': 17303, 'prowse
': 17304, 'disabled': 17305, 'carrot': 17306, 'headacheall': 17307, 'inflicted': 17308, 'deadgirl': 17309, 'star
e': 17310, 'intellectually': 17311, 'severing': 17312, 'disagreement': 17313, 'tabletop': 17314, 'programming':
17315, 'auntiegail': 17316, 'hivis': 17317, 'vests': 17318, 'gails': 17319, 'childminding': 17320, 'fritter': 17
321, 'jessica': 17322, 'alba': 17323, 'brunt': 17324, 'todaycold': 17325, 'reaped': 17326, 'ohmygod': 17327, 'aa
aaawwwwwww': 17328, 'nds': 17329, 'ghmettallica': 17330, 'abusecryyabuse': 17331, 'raerae': 17332, 'watchingn':
17333, 'janet': 17334, 'nostalgic': 17335, 'tron': 17336, 'michellethis': 17337, 'occuring': 17338, 'donut': 173
39, 'procrastination': 17340, 'assumption': 17341, 'battled': 17342, 'processor': 17343, 'unintuitive': 17344, '
simplicity': 17345, 'aaahaha': 17346, 'creatures': 17347, 'goodbey': 17348, 'pressents': 17349, 'bowlful': 17350
, 'headless': 17351, 'shush': 17352, 'ulcers': 17353, 'shrug': 17354, 'itcute': 17355, 'hawksmoor': 17356, 'mata
latine': 17357, 'stephmust': 17358, 'byron': 17359, 'wiggity': 17360, 'submit': 17361, 'failblogorg': 17362, 'he
adrush': 17363, 'irwin': 17364, 'delays': 17365, 'aquatards': 17366, 'ging': 17367, 'borde': 17368, 'litt': 1736
9, 'trist': 17370, 'lese': 17371, 'siste': 17372, 'tweetsen': 17373, 'prooved': 17374, 'gizmo': 17375, 'growls':
17376, 'pruple': 17377, 'fingie': 17378, 'augh': 17379, 'boytoy': 17380, 'tish': 17381, 'crv': 17382, 'duckie':
17383, 'tubeyyou': 17384, 'thugh': 17385, 'smashspaceningcom': 17386, 'ssbb': 17387, 'caity': 17388, 'itmargie':
17389, 'greenwizard': 17390, 'closely': 17391, 'bench': 17392, 'psychiatric': 17393, 'scratchings': 17394, 'byee
': 17395, 'unfortunetly': 17396, 'tigers': 17397, 'symphonic': 17398, 'jeeves': 17399, 'noose': 17400, 'lmfaaooo
o': 17401, 'videoyou': 17402, 'itsoooo': 17403, 'gallstones': 17404, 'pisssing': 17405, 'streams': 17406, 'earni
ng': 17407, 'cashouts': 17408, 'marnier': 17409, 'souffle': 17410, 'metaphor': 17411, 'served': 17412, 'transpar
ency': 17413, 'opaqueness': 17414, 'retsi': 17415, 'eighties': 17416, 'migrating': 17417, 'shoutbox': 17418, 'ov
erheat': 17419, 'skirts': 17420, 'lappie': 17421, 'crooning': 17422, 'adobo': 17423, 'regards': 17424, 'gregshow
ing': 17425, 'headzup': 17426, 'neaby': 17427, 'pffffffffff': 17428, 'macaroons': 17429, 'barone': 17430, 'damns
': 17431, 'obscurity': 17432, 'noble': 17433, 'comforts': 17434, 'cigarettes': 17435, 'soooolets': 17436, 'rjwtf
': 17437, 'assigned': 17438, 'warmer': 17439, 'chilliness': 17440, 'yesall': 17441, 'mariahs': 17442, 'vocabular
y': 17443, 'joplin': 17444, 'munsay': 17445, 'subcribed': 17446, 'bellshill': 17447, 'bothwell': 17448, 'tunnock
s': 17449, 'fatigue': 17450, 'lolzz': 17451, 'criedmakes': 17452, 'badge': 17453, 'updont': 17454, 'nanaimo': 17
455, 'boyfrann': 17456, 'sprung': 17457, 'aaa': 17458, 'pleasantly': 17459, 'nungguin': 17460, 'rs': 17461, 'asi
hkayaknya': 17462, 'ini': 17463, 'yeayy': 17464, 'undeleted': 17465, 'gregg': 17466, 'cancellation': 17467, 'sto
cked': 17468, 'exicted': 17469, 'coached': 17470, 'fundamentals': 17471, 'detector': 17472, 'brickmans': 17473,
'davey': 17474, 'eeeeevvveeerrrr': 17475, 'tempat': 17476, 'apa': 17477, 'yang': 17478, 'paling': 17479, 'cocok'
: 17480, 'jupiter': 17481, 'seru': 17482, 'meca': 17483, 'milonzzi': 17484, 'proposes': 17485, 'triangle': 17486
, 'nefuew': 17487, 'anurag': 17488, 'dtown': 17489, 'brokt': 17490, 'chut': 17491, 'vy': 17492, 'qu�': 17493,
'hik': 17494, 'phi': 17495, 'hc': 17496, 'kh�a': 17497, 'kin': 17498, 'thc': 17499, 'kh�': 17500, 'gp': 1750
1, 'nun': 17502, 'hurley': 17503, 'wahey': 17504, 'formalstreetalternate': 17505, 'swensens': 17506, 'huts': 175
07, 'crunchy': 17508, 'itsjeff': 17509, 'sooni': 17510, 'tellin': 17511, 'bishop': 17512, 'exeter': 17513, 'yezz
zir': 17514, 'liverpools': 17515, 'museums': 17516, 'beezy': 17517, 'twiiterlove': 17518, 'manned': 17519, 'diff
ers': 17520, 'librarykeychainssystemkeychain': 17521, 'ofchas': 17522, 'sunshineat': 17523, 'urghh': 17524, 'val
uable': 17525, 'yetbut': 17526, 'moff': 17527, 'satdee': 17528, 'bangalore': 17529, 'menudo': 17530, 'quizon': 1
7531, 'fridaybooo': 17532, 'abuseiphone': 17533, 'afterlife': 17534, 'availble': 17535, 'chennai': 17536, 'nutri
tious': 17537, 'tiday': 17538, 'whaat': 17539, 'nyeh': 17540, 'williamssssss': 17541, 'beeand': 17542, 'tweety':
17543, 'leakycon': 17544, 'pussycat': 17545, 'degeneres': 17546, 'caltrain': 17547, 'pf': 17548, 'changsgot': 17
549, 'hwy': 17550, 'cwack': 17551, 'punchy': 17552, 'pager': 17553, 'blankie': 17554, 'icebox': 17555, 'coogan':
17556, 'moran': 17557, 'nesscaf�': 17558, 'squirted': 17559, 'ftl': 17560, 'amigo': 17561, 'medhurst': 17562,
'godness': 17563, 'parentsthats': 17564, 'beaten': 17565, 'cardiff': 17566, 'ambulances': 17567, 'roomi': 17568,
'jbobsessed': 17569, 'bookface': 17570, 'buyin': 17571, 'dependsundergarments': 17572, 'palnice': 17573, 'todayh
ave': 17574, 'nup': 17575, 'zeros': 17576, 'yetgoing': 17577, 'allo': 17578, 'troublesthanks': 17579, 'contand':
17580, 'grief': 17581, 'aiza': 17582, 'wider': 17583, 'juneau': 17584, 'fd': 17585, 'comforteating': 17586, 'ess
ense': 17587, 'pricy': 17588, 'dinners': 17589, 'tenderloin': 17590, 'greens': 17591, 'trickery': 17592, 'exaspe
ration': 17593, 'hijacked': 17594, 'uglier': 17595, 'yeeet': 17596, 'reid': 17597, 'dissing': 17598, 'wereoctopu
s': 17599, 'redeems': 17600, 'rescuing': 17601, 'werespider': 17602, 'iwonder': 17603, 'iget': 17604, 'nightfina
lly': 17605, 'bestbuy': 17606, 'sumtimes': 17607, 'twittercopytopify': 17608, 'deff': 17609, 'weekened': 17610,
'��h': 17611, 'talkers': 17612, 'unleashed': 17613, 'henpecking': 17614, 'celticslakers': 17615, 'rematch':
17616, 'jolene': 17617, 'yuk': 17618, 'poppin': 17619, 'document': 17620, 'hungrygetting': 17621, 'rf': 17622, '
dndn': 17623, 'jameson': 17624, 'socialmediatv': 17625, 'videoblah': 17626, 'pouts': 17627, 'yourname': 17628, '
usmobilereuterscommobilemanyarticleprdturl': 17629, 'kimbeommie': 17630, 'sins': 17631, 'fonzie': 17632, 'breeze
sounds': 17633, 'yesma': 17634, 'upbeat': 17635, 'chergo': 17636, 'jodies': 17637, 'registeration': 17638, 'hous
tons': 17639, 'grave': 17640, 'museum': 17641, 'dipped': 17642, 'allsort': 17643, 'eo': 17644, 'zavaroni': 17645
, 'barrymore': 17646, 'entries': 17647, 'headeache': 17648, 'duc': 17649, 'adrenaline': 17650, 'sharn': 17651, '
saltvinegarthey': 17652, 'tasted': 17653, 'yessssssir': 17654, 'biscuits': 17655, 'urgently': 17656, 'scales': 1
7657, 'robots': 17658, 'trim': 17659, 'coking': 17660, 'invitw': 17661, 'selfdenial': 17662, 'harmful': 17663, '
dodgers': 17664, 'playoff': 17665, 'canadatheres': 17666, 'pringles': 17667, 'aski': 17668, 'replybut': 17669, '
crepe': 17670, 'firemen': 17671, 'mindblowing': 17672, 'tomorrowland': 17673, 'tours': 17674, 'thatmakes': 17675
, 'difficulty': 17676, 'idmfinal': 17677, 'logins': 17678, 'lola': 17679, 'scarfed': 17680, 'feastfriday': 17681
, 'gingg': 17682, 'mayjah': 17683, 'otara': 17684, 'powerdvd': 17685, 'screenies': 17686, 'bonkers': 17687, 'beg
': 17688, 'pleeeeeeeassseeeeeee': 17689, 'coleman': 17690, 'sandwiches': 17691, 'theese': 17692, 'omggg': 17693,
'wantewd': 17694, 'gregor': 17695, 'doable': 17696, 'goodnights': 17697, 'nondried': 17698, 'afro': 17699, 'bebe
isis': 17700, 'chanve': 17701, 'elisabeth': 17702, 'aroundalmost': 17703, 'superseeded': 17704, 'alyso': 17705,
'stoner': 17706, 'benton': 17707, 'messae': 17708, 'coment': 17709, 'suitable': 17710, 'norm': 17711, 'melo': 17
712, 'noesss': 17713, 'tickling': 17714, 'giggling': 17715, 'lookingbut': 17716, 'arrow': 17717, 'abusefollowing
abuse': 17718, 'abuseremoveabuse': 17719, 'refusn': 17720, 'tyg': 17721, 'tet': 17722, 'marwell': 17723, 'though
good': 17724, 'lollll': 17725, 'neighbour': 17726, 'fond': 17727, 'nickelback': 17728, 'afterjune': 17729, 'rock
ett': 17730, 'stickam': 17731, 'arghhhh': 17732, 'driven': 17733, 'yos': 17734, 'auditioning': 17735, 'zeb': 177
36, 'napped': 17737, 'woodland': 17738, 'swaying': 17739, 'ppphhhhhttttt': 17740, 'abusethats': 17741, 'aroundab
use': 17742, 'hoovering': 17743, 'warcraft': 17744, 'spiderwoman': 17745, 'bordum': 17746, 'tulips': 17747, 'rel
s': 17748, 'wowi': 17749, 'bookmarksi': 17750, 'bedalii': 17751, 'hungryif': 17752, 'isafailure': 17753, 'commun
icated': 17754, 'coldso': 17755, 'nowt': 17756, 'whispering': 17757, 'jered': 17758, 'cydia': 17759, 'springboar
d': 17760, 'tweepleway': 17761, 'dissapoint': 17762, 'instantly': 17763, 'thatyo': 17764, 'directors': 17765, 'h
ehesorry': 17766, 'blending': 17767, 'outsidee': 17768, 'revisionn': 17769, 'musiic': 17770, 'desperatethat': 17
771, 'alreadyyyy': 17772, 'cqc': 17773, 'ancient': 17774, 'forgotitll': 17775, 'youtubeso': 17776, 'xs': 17777,
'yeee': 17778, 'daymes': 17779, 'binks': 17780, 'livewriters': 17781, 'targeted': 17782, 'ballroom': 17783, 'jos
hy': 17784, 'pooyoull': 17785, 'hypnotyst': 17786, 'jour': 17787, 'mommiewhat': 17788, 'whoooooo': 17789, 'spcn'
: 17790, 'tapes': 17791, 'conferencepfff': 17792, 'bankroll': 17793, 'stays': 17794, 'whine': 17795, 'fixd': 177
96, 'awwthats': 17797, 'roooop': 17798, 'topol': 17799, 'looooved': 17800, 'abusecant': 17801, 'waitabuse': 1780
2, 'recourse': 17803, 'atty': 17804, 'blossom': 17805, 'joins': 17806, 'safer': 17807, 'sphere': 17808, 'muji':
17809, 'jts': 17810, 'disks': 17811, 'ruxbury': 17812, 'fallower': 17813, 'stringer': 17814, 'akankah': 17815, '
suatu': 17816, 'hari': 17817, 'mendapatkannya': 17818, 'amything': 17819, 'sence': 17820, 'eyeshadows': 17821, '
isp': 17822, 'gather': 17823, 'injustice': 17824, 'acceptable': 17825, 'stud': 17826, 'eastern': 17827, 'ticks':
17828, 'skillslol': 17829, 'ripstick': 17830, 'sorors': 17831, 'label': 17832, 'grrrl': 17833, 'aleeshas': 17834
, 'jont': 17835, 'realising': 17836, 'sheltered': 17837, 'upbringing': 17838, 'picker': 17839, 'retake': 17840,
'patricks': 17841, 'coffiees': 17842, 'pleaz': 17843, 'westend': 17844, 'grandad': 17845, 'weekmy': 17846, 'moov
ieand': 17847, 'sited': 17848, 'saras': 17849, 'rhiannon': 17850, 'lastnight': 17851, 'eeeeep': 17852, 'ahahahah
ahaha': 17853, 'alltired': 17854, 'voyage': 17855, 'mccarran': 17856, 'cyah': 17857, 'warmt': 17858, 'goodniqht'
: 17859, 'sharpie': 17860, 'dangerously': 17861, 'feys': 17862, 'veggiesespecially': 17863, 'nonsunny': 17864, '
fulltime': 17865, 'pickler': 17866, 'zommgg': 17867, 'screamo': 17868, 'baitersss': 17869, 'abuseteeheeabuseand'
: 17870, 'abusehaloabuse': 17871, 'rusty': 17872, 'tm': 17873, 'whilestupid': 17874, 'shopstill': 17875, 'thennn
': 17876, 'shards': 17877, 'pokey': 17878, 'ucla': 17879, 'bookstorenow': 17880, 'haiszt': 17881, 'abusewhewabus
e': 17882, 'shediddy': 17883, 'okasan': 17884, 'mjb': 17885, 'cantus': 17886, 'truss': 17887, 'clyde': 17888, 'j
ayzan': 17889, 'bmi': 17890, 'obesed': 17891, 'thanku': 17892, 'damali': 17893, 'championing': 17894, 'activex':
17895, 'ladyi': 17896, 'booey': 17897, 'comms': 17898, 'parsley': 17899, 'raimis': 17900, 'amcmain': 17901, 'gar
nier': 17902, 'drugstorecom': 17903, 'mundo': 17904, 'thirst': 17905, 'chanwook': 17906, 'felicia': 17907, 'beca
se': 17908, 'scratched': 17909, 'woopee': 17910, 'fixes': 17911, 'dreadzone': 17912, 'liferuin': 17913, 'musictr
auma': 17914, 'jass': 17915, 'wari': 17916, 'accessing': 17917, 'istore': 17918, 'kari': 17919, 'exstudent': 179
20, 'sudying': 17921, 'hailing': 17922, 'agodo': 17923, 'replieslol': 17924, 'qw': 17925, 'mooneys': 17926, 'zon
ingconcept': 17927, 'heavenfr': 17928, 'trish': 17929, 'coffees': 17930, 'benz': 17931, 'serviced': 17932, 'righ
tards': 17933, 'auntys': 17934, 'theem': 17935, 'mascara': 17936, 'bumf': 17937, 'shaving': 17938, 'biggie': 179
39, 'geocachingcom': 17940, 'delivering': 17941, 'exposure': 17942, 'transcribing': 17943, 'tenth': 17944, 'pigg
ies': 17945, 'hmpf': 17946, 'bullying': 17947, 'calorie': 17948, 'screenings': 17949, 'abusetaps': 17950, 'shoul
derabuse': 17951, 'chiclit': 17952, 'norskart': 17953, 'uit': 17954, 'shaken': 17955, 'cherris': 17956, 'commies
': 17957, 'hazy': 17958, 'stoopid': 17959, 'dha': 17960, 'cece': 17961, 'chanqes': 17962, 'unfinished': 17963, '
cropped': 17964, 'dorky': 17965, 'joco': 17966, 'dabusecon': 17967, 'tweefight': 17968, 'smthng': 17969, 'odee':
17970, 'lonq': 17971, 'mpre': 17972, 'manga': 17973, 'inboxes': 17974, 'disposable': 17975, 'ointment': 17976, '
fxxxmylife': 17977, 'chapel': 17978, 'sy': 17979, 'stating': 17980, 'inventing': 17981, 'pockets': 17982, 'delci
ous': 17983, 'ontd': 17984, 'rel': 17985, 'soc': 17986, 'lara': 17987, 'expression': 17988, 'gucci': 17989, 'kry
ptik': 17990, 'wel': 17991, 'arbit': 17992, 'kiis': 17993, 'fm': 17994, 'dnd': 17995, 'packedthinking': 17996, '
choreographing': 17997, 'observation': 17998, 'aside': 17999, 'riverwalk': 18000, 'aaaaaahhhhhhhh': 18001, 'swee
eeeeet': 18002, 'carbonated': 18003, 'howto': 18004, 'guideless': 18005, 'rebellion': 18006, 'gaeta': 18007, 'uf
t': 18008, 'eighth': 18009, 'chewed': 18010, 'challah': 18011, 'maker': 18012, 'makerfaire': 18013, 'sword': 180
14, 'strongest': 18015, 'thinkdunno': 18016, 'coronas': 18017, 'pastries': 18018, 'bryce': 18019, 'elementary':
18020, 'aboutim': 18021, 'ferris': 18022, 'niiick': 18023, 'asasgdygyasdgy': 18024, 'dian': 18025, 'deng': 18026
, 'tsi': 18027, 'dancingwaiting': 18028, 'newww': 18029, 'keswick': 18030, 'messageabuse': 18031, 'aaaaall': 180
32, 'beathing': 18033, 'victoias': 18034, 'tallebudgera': 18035, 'anitas': 18036, 'treecould': 18037, 'huaaahhhh
h': 18038, 'jupaa': 18039, 'resaaaa': 18040, 'awas': 18041, 'kaliaaannn': 18042, 'ought': 18043, 'moives': 18044
, 'whiteman': 18045, 'jayem': 18046, 'esr': 18047, 'darren': 18048, 'proppa': 18049, 'tayo': 18050, 'tigerheat':
18051, 'shawn': 18052, 'wimbledon': 18053, 'amadeus': 18054, 'chorus': 18055, 'grandrapids': 18056, 'jljf': 1805
7, 'tetens': 18058, 'patrons': 18059, 'calmin': 18060, 'braunig': 18061, 'subsiding': 18062, 'cancelling': 18063
, 'javaone': 18064, 'trekkie': 18065, 'takeout': 18066, 'wasabi': 18067, 'vodka': 18068, 'ale': 18069, 'scofiled
': 18070, 'braxton': 18071, 'trois': 18072, 'toasty': 18073, 'owi': 18074, 'credo': 18075, 'brighi': 18076, 'see
ker': 18077, 'settingsdesign': 18078, 'bottem': 18079, 'transform': 18080, 'songgoeswrongs': 18081, 'alma': 1808
2, 'lovebug': 18083, 'yourbiggestfan': 18084, 'gman': 18085, 'dayyyyyyyyyyyy': 18086, 'rescuers': 18087, 'dru':
18088, 'mickey': 18089, 'abuseshouldabuse': 18090, 'alls': 18091, 'loveafter': 18092, 'zyrtec': 18093, 'stressie
st': 18094, 'bleeeeah': 18095, 'lovelovelove': 18096, 'overture': 18097, 'jets': 18098, 'ida': 18099, 'ravit': 1
8100, 'hackneys': 18101, 'haze': 18102, 'lorenzo': 18103, 'jarvis': 18104, 'switches': 18105, 'huaaaaa': 18106,
'fucktards': 18107, 'journalist': 18108, 'athletes': 18109, 'joanna': 18110, 'bown': 18111, 'upugg': 18112, 'rym
ed': 18113, 'cu': 18114, 'xxxxxxx': 18115, 'abbreviation': 18116, 'degreeabuse': 18117, 'inspirational': 18118,
'spector': 18119, 'preschoolwaiting': 18120, 'heremaking': 18121, 'ans': 18122, 'lionkicked': 18123, 'copying':
18124, 'enuh': 18125, 'hunwas': 18126, 'avin': 18127, 'farhappy': 18128, 'thenis': 18129, 'chf': 18130, 'ringmor
e': 18131, 'piercingsit': 18132, 'utmost': 18133, 'allmothers': 18134, 'royals': 18135, 'chelsey': 18136, 'world
is': 18137, 'inovera': 18138, 'jakki': 18139, 'battles': 18140, 'rare': 18141, 'babsi': 18142, 'pffff': 18143, '
msft': 18144, 'pox': 18145, 'doggone': 18146, 'ponderosa': 18147, 'baaaaaaaad': 18148, 'tdub': 18149, 'ahart': 1
8150, 'wrox': 18151, 'loveyoufletch': 18152, 'faddle': 18153, 'blackpool': 18154, 'magix': 18155, 'rhythm': 1815
6, 'andswere': 18157, 'mocking': 18158, 'isolated': 18159, 'consists': 18160, 'ofhayley': 18161, 'williamsjosh':
18162, 'farrozac': 18163, 'farrojeremy': 18164, 'beagle': 18165, 'oripei': 18166, 'suckits': 18167, 'answear': 1
8168, 'inc': 18169, 'skomer': 18170, 'uy': 18171, 'abuseofficialabuse': 18172, 'greeeeeat': 18173, 'storyyyyy':
18174, 'erasure': 18175, 'aaaaaah': 18176, 'caled': 18177, 'cakesthe': 18178, 'nobobys': 18179, 'wlan': 18180, '
olivia': 18181, 'ipoding': 18182, 'invention': 18183, 'mutitasking': 18184, 'abuseclassyabuse': 18185, 'chickene
d': 18186, 'nurofen': 18187, 'varnishing': 18188, 'babyblue': 18189, 'ughhhhhhhhh': 18190, 'anwhere': 18191, 'ga
rcia': 18192, 'improvment': 18193, 'chiptune': 18194, 'coincidently': 18195, 'whers': 18196, 'newss': 18197, 'no
njudgmental': 18198, 'brandnew': 18199, 'oist': 18200, 'sakit': 18201, 'abusekiss': 18202, 'deezy': 18203, 'xxox
o': 18204, 'caant': 18205, 'iht': 18206, 'ahar': 18207, 'cleavage': 18208, 'cheaptweet': 18209, 'backso': 18210,
'prepre': 18211, 'pitmans': 18212, 'macedonia': 18213, 'killeen': 18214, 'qav': 18215, 'fifties': 18216, 'someti
mesdid': 18217, 'malamute': 18218, 'cesna': 18219, 'pyee': 18220, 'pesky': 18221, 'dollaz': 18222, 'yayyou': 182
23, 'chabibi': 18224, 'cloooseee': 18225, 'omega': 18226, 'movein': 18227, 'ericas': 18228, 'shopdoesnt': 18229,
'ealing': 18230, 'wmina': 18231, 'gymthis': 18232, 'wno': 18233, 'chairman': 18234, 'lili': 18235, 'homielili':
18236, 'seaside': 18237, 'feedicon': 18238, 'rocstar': 18239, 'eink': 18240, 'shortcut': 18241, 'englands': 1824
2, 'loveit': 18243, 'believer': 18244, 'yoooooooooooooooooooou': 18245, 'occupying': 18246, 'legless': 18247, 's
tillborn': 18248, 'spaniels': 18249, 'dollarama': 18250, 'sketches': 18251, 'und': 18252, 'yeeeehaaa': 18253, 'o
migoodness': 18254, 'popsicle': 18255, 'relaxant': 18256, 'narcotic': 18257, 'moist': 18258, 'duckies': 18259, '
burnside': 18260, 'ahso': 18261, 'moes': 18262, 'trekky': 18263, 'koool': 18264, 'breesaholic': 18265, 'abusefee
ls': 18266, 'specialabuse': 18267, 'abusegame': 18268, 'accumulating': 18269, 'finance': 18270, 'ira': 18271, 's
cuba': 18272, 'pdf': 18273, 'stdinpdf': 18274, 'compromise': 18275, 'usael': 18276, 'notmuch': 18277, 'lonesome'
: 18278, 'paulevans': 18279, 'congradts': 18280, 'gleneagles': 18281, 'receptionscant': 18282, 'gochat': 18283,
'btr': 18284, 'tilas': 18285, 'morales': 18286, 'khan': 18287, 'products': 18288, 'marriedand': 18289, 'braun':
18290, 'mature': 18291, 'twitterbugsnothing': 18292, 'loooooooooong': 18293, 'liein': 18294, 'splinters': 18295,
'painfulbut': 18296, 'heroic': 18297, 'godgiven': 18298, 'coins': 18299, 'snoops': 18300, 'chipped': 18301, 'gto
wn': 18302, 'friending': 18303, 'zoozoo': 18304, 'vodas': 18305, 'ilike': 18306, 'devel': 18307, 'storming': 183
08, 'godmy': 18309, 'havaianas': 18310, 'molded': 18311, 'spat': 18312, 'caturday': 18313, 'greatexcept': 18314,
'storymy': 18315, 'bravo': 18316, 'techie': 18317, 'loca': 18318, 'memorizing': 18319, 'trainings': 18320, 'novi
': 18321, 'located': 18322, 'bargain': 18323, 'ughhhhhhhh': 18324, 'sus': 18325, 'sarms': 18326, 'huff': 18327,
'seriouslyit': 18328, 'phatass': 18329, 'desperatly': 18330, 'vanessas': 18331, 'esh': 18332, 'cary': 18333, 'ma
rytyphoid': 18334, 'journeys': 18335, 'thursdayyy': 18336, 'broi': 18337, 'wesley': 18338, 'wooop': 18339, 'drun
kbowling': 18340, 'falkland': 18341, 'mtbcut': 18342, 'iusedtobescaredof': 18343, 'enw': 18344, 'optimized': 183
45, 'jscss': 18346, 'caching': 18347, 'deploy': 18348, 'slowed': 18349, 'eeeeeewwwwwwww': 18350, 'smartest': 183
51, 'dalden': 18352, 'officials': 18353, 'kirin': 18354, 'metamorph': 18355, 'vonabe': 18356, 'quantum': 18357,
'moleskine': 18358, 'homesan': 18359, 'jose': 18360, 'worksthat': 18361, 'knitteraticomau': 18362, 'ravelry': 18
363, 'fraser': 18364, 'pouch': 18365, 'elephants': 18366, 'pleease': 18367, 'daysthe': 18368, 'fij': 18369, 'car
ls': 18370, 'hopeflly': 18371, 'boredboots': 18372, 'stillll': 18373, 'civics': 18374, 'jurybased': 18375, 'refu
nds': 18376, 'lakas': 18377, 'nalang': 18378, 'bandana': 18379, 'cardsalso': 18380, 'dayne': 18381, 'romancescom
edies': 18382, 'disaterous': 18383, 'ferrari': 18384, 'findin': 18385, 'fau': 18386, 'steet': 18387, 'slowmotion
': 18388, 'tynisha': 18389, 'keli': 18390, 'soprano': 18391, 'reflection': 18392, 'wizz': 18393, 'sip': 18394, '
bfe': 18395, 'ciggarettes': 18396, 'wwe': 18397, 'burgundy': 18398, 'xb': 18399, 'minivan': 18400, 'shawdows': 1
8401, 'curves': 18402, 'pledge': 18403, 'sunnybank': 18404, 'bedd': 18405, 'hypnosis': 18406, 'abusehappy': 1840
7, 'dayabuse': 18408, 'pooling': 18409, 'swined': 18410, 'mindas': 18411, 'musicall': 18412, 'twilightguycom': 1
8413, 'kalebnationcom': 18414, 'youtubecomkalebnation': 18415, 'tanghaling': 18416, 'tapat': 18417, 'knowwww': 1
8418, 'bret': 18419, 'welcomeee': 18420, 'backkkkk': 18421, 'dann': 18422, 'misconnected': 18423, 'undies': 1842
4, 'brinn': 18425, 'itjoin': 18426, 'kittykat': 18427, 'adapted': 18428, 'tote': 18429, 'feathers': 18430, 'poll
ard': 18431, 'purposes': 18432, 'nnouns': 18433, 'beersall': 18434, 'coffin': 18435, 'drinkers': 18436, 'mort':
18437, 'subite': 18438, 'ginniejean': 18439, 'mojo': 18440, 'beckwith': 18441, 'dillah': 18442, 'pilates': 18443
, 'stray': 18444, 'cans': 18445, 'floyd': 18446, 'californias': 18447, 'deficit': 18448, 'uverse': 18449, 'mild'
: 18450, 'shopper': 18451, 'plm': 18452, 'nonhitchikers': 18453, 'appetite': 18454, 'tassi': 18455, 'iigghhtt':
18456, 'fur': 18457, 'geet': 18458, 'idc': 18459, 'immboredddd': 18460, 'fuckitt': 18461, 'thxx': 18462, 'ara':
18463, 'withdrawal': 18464, 'realnot': 18465, 'captured': 18466, 'outsidethank': 18467, 'dazzles': 18468, 'buhah
aha': 18469, 'hogging': 18470, 'sabuset': 18471, 'munchkin': 18472, 'frankies': 18473, 'updressed': 18474, 'fish
y': 18475, 'fishys': 18476, 'oohhhh': 18477, 'cornyness': 18478, 'cambs': 18479, 'eeeeeeeeee': 18480, 'drom': 18
481, 'ak': 18482, 'rag': 18483, 'bets': 18484, 'bugzy': 18485, 'thowing': 18486, 'editting': 18487, 'vida': 1848
8, 'crapped': 18489, 'sitewhat': 18490, 'mccain': 18491, 'eclectic': 18492, 'truong': 18493, 'hb': 18494, 'snsd'
: 18495, 'keeper': 18496, 'quickest': 18497, 'sneeze': 18498, 'pusrse': 18499, 'holmes': 18500, 'toniight': 1850
1, 'sampler': 18502, 'reallllyyy': 18503, 'winnipeg': 18504, 'pace': 18505, 'voegele': 18506, 'hinckley': 18507,
'allright': 18508, 'todayugh': 18509, 'tonyt': 18510, 'frend': 18511, 'ther': 18512, 'letin': 18513, 'aplyin': 1
8514, 'agen': 18515, 'precisely': 18516, 'spares': 18517, 'hunchback': 18518, 'weeekend': 18519, 'tradewinds': 1
8520, 'odyssey': 18521, 'jovani': 18522, 'eeek': 18523, 'dissapear': 18524, 'nooooooooooooooo': 18525, 'techupda
te': 18526, 'nutty': 18527, 'newsire': 18528, 'twitterfeed': 18529, 'linkslol': 18530, 'coomee': 18531, 'jamaiii
cah': 18532, 'slash': 18533, 'tyres': 18534, 'cuold': 18535, 'philosophers': 18536, 'we�re': 18537, 'doomed':
18538, 'celli': 18539, 'brewery': 18540, 'chaceeeeeee': 18541, 'tweettttt': 18542, 'kashi': 18543, 'disservice':
18544, 'shardup': 18545, 'admeeet': 18546, 'phyllis': 18547, 'hyman': 18548, 'unsung': 18549, 'spai': 18550, 'co
llins': 18551, 'newborn': 18552, 'satz': 18553, 'themoon': 18554, 'fruitbat': 18555, 'brixton': 18556, 'cldnt':
18557, 'kraut': 18558, 'kittyboys': 18559, 'nightynight': 18560, 'enuff': 18561, 'gprof': 18562, 'pugged': 18563
, 'bombard': 18564, 'herejust': 18565, 'casei': 18566, 'belief': 18567, 'unix': 18568, 'tweetbud': 18569, 'flwrs
': 18570, 'tys': 18571, 'uncontrollably': 18572, 'kaohsiung': 18573, 'alphonso': 18574, 'lassi': 18575, 'nimbupa
ani': 18576, 'eveningsummers': 18577, 'kunguma': 18578, 'poovum': 18579, 'konjuma': 18580, 'puravum': 18581, 'ci
nematography': 18582, 'transcription': 18583, 'truely': 18584, 'fob': 18585, 'frineds': 18586, 'heston': 18587,
'bleumenthal': 18588, 'mononoke': 18589, 'wnna': 18590, 'googledocs': 18591, 'folders': 18592, 'tomorrownew': 18
593, 'betaread': 18594, 'vegies': 18595, 'tbone': 18596, 'yallunfortunately': 18597, 'itgotta': 18598, 'sisterba
by': 18599, 'ofim': 18600, 'boyhubby': 18601, 'dadgum': 18602, 'nations': 18603, 'freight': 18604, 'carriers': 1
8605, 'juz': 18606, 'blockparty': 18607, 'litterature': 18608, 'soooooooooooooooooooooooooooooooooooo': 18609, '
vhits': 18610, 'mueller': 18611, 'iloveyouuu': 18612, 'sunburns': 18613, 'bedding': 18614, 'largest': 18615, 'ag
enda': 18616, 'mondaycant': 18617, 'everythin': 18618, 'zzzzy': 18619, 'mamiya': 18620, 'mf': 18621, 'violence':
18622, 'heyyyy': 18623, 'ivy': 18624, 'expansions': 18625, 'southridge': 18626, 'streak': 18627, 'catchy': 18628
, 'ehnot': 18629, 'guesting': 18630, 'bringin': 18631, 'livelovesing': 18632, 'coloured': 18633, 'colour': 18634
, 'grandbabies': 18635, 'infant': 18636, 'proposedwere': 18637, 'pads': 18638, 'horsing': 18639, 'hubb': 18640,
'boc': 18641, 'moisturize': 18642, 'rephael': 18643, 'ahseya': 18644, 'engage': 18645, 'lottie': 18646, 'pastime
s': 18647, 'gdaughter': 18648, 'compassion': 18649, 'perused': 18650, 'sorryill': 18651, 'thankssss': 18652, 're
publish': 18653, 'journalism': 18654, 'squeeky': 18655, 'oohooh': 18656, 'dmore': 18657, 'awetastic': 18658, 'ha
mmer': 18659, 'boomin': 18660, 'fucc': 18661, 'buccz': 18662, 'starbuccz': 18663, 'berkeleyy': 18664, 'whassqood
d': 18665, 'uon': 18666, 'kulps': 18667, 'pshdidnt': 18668, 'unforgettable': 18669, 'ankile': 18670, 'oouuchgood
': 18671, 'pending': 18672, 'siteits': 18673, 'standin': 18674, 'maddest': 18675, 'fristy': 18676, 'resto': 1867
7, 'dayuummm': 18678, 'unpacked': 18679, 'esmecullen': 18680, 'shish': 18681, 'kebab': 18682, 'happymothersday':
18683, 'warrant': 18684, 'agg': 18685, 'accountant': 18686, 'middleschool': 18687, 'cafeteria': 18688, 'interweb
net': 18689, 'floridas': 18690, 'reluctantly': 18691, 'jolted': 18692, 'squiggy': 18693, 'laverne': 18694, 'snd'
: 18695, 'tylerhappy': 18696, 'aheadand': 18697, 'benicks': 18698, 'brngs': 18699, 'starbux': 18700, 'abusecorie
ographyabuse': 18701, 'brookes': 18702, 'banggg': 18703, 'smr': 18704, 'blower': 18705, 'censor': 18706, 'dirtee
h': 18707, 'bridgeleaving': 18708, 'teethmouth': 18709, 'corrected': 18710, 'passive': 18711, 'agressive': 18712
, 'orralle': 18713, 'ebtg': 18714, 'hol': 18715, 'teeny': 18716, 'honda': 18717, 'thankss': 18718, 'elleay': 187
19, 'glastonbury': 18720, 'thundershowers': 18721, 'movebut': 18722, 'i��m': 18723, 'freedomor': 18724, 'nee
eeeeeed': 18725, 'slack': 18726, 'rhcp': 18727, 'resignation': 18728, 'jennys': 18729, 'treadmill': 18730, 'oats
': 18731, 'pinot': 18732, 'grigio': 18733, 'honza': 18734, 'outvoted': 18735, 'treknot': 18736, 'pt': 18737, 'pr
edictable': 18738, 'scheme': 18739, 'conversion': 18740, 'extranet': 18741, 'jcdecaux': 18742, 'slapton': 18743,
'gnights': 18744, 'startled': 18745, 'nigguhs': 18746, 'ilh': 18747, 'hmmmmmmm': 18748, 'ponying': 18749, 'wc':
18750, 'boyzone': 18751, 'donot': 18752, 'scrambled': 18753, 'fartingloud': 18754, 'andrews': 18755, 'sands': 18
756, 'proms': 18757, 'peoplebrowsr': 18758, 'wellgoing': 18759, 'applebees': 18760, 'nineteenth': 18761, 'impati
ently': 18762, 'wes': 18763, 'ascari': 18764, 'hype': 18765, 'barbecues': 18766, 'conducive': 18767, 'jobapplyin
g': 18768, 'shakas': 18769, 'againn': 18770, 'salads': 18771, 'girlz': 18772, 'diseases': 18773, 'megans': 18774
, 'suitcase': 18775, 'macaramber': 18776, 'sab': 18777, 'comme': 18778, 'lovah': 18779, 'gorjuz': 18780, 'fuzzba
llits': 18781, 'doneworried': 18782, 'parrrttyplaying': 18783, 'twister': 18784, 'tipsywell': 18785, 'twittascop
e': 18786, 'fanciful': 18787, 'abusepu': 18788, 'camee': 18789, 'offiacial': 18790, 'spurted': 18791, 'fanta': 1
8792, 'patientsi': 18793, 'wonderfull': 18794, 'breakfst': 18795, 'gfail': 18796, 'thats�mee': 18797, 'booths'
: 18798, 'hallucination': 18799, 'epi': 18800, 'grimestopper': 18801, 'drowned': 18802, 'fanboy': 18803, 'morris
on': 18804, 'tangible': 18805, 'socked': 18806, 'reckless': 18807, 'sensexbut': 18808, 'boreedd': 18809, 'totoro
': 18810, 'atmosphere': 18811, 'putz': 18812, 'adoro': 18813, 'essa': 18814, 'banda': 18815, 'axkit': 18816, 'st
ormsoo': 18817, 'didntgot': 18818, 'feckin': 18819, 'alzheimer': 18820, 'undeniable': 18821, 'procrastinating':
18822, 'reopens': 18823, 'zumba': 18824, 'astri': 18825, 'ntn': 18826, 'bbf': 18827, 'hihi': 18828, 'sukanya': 1
8829, 'jun': 18830, 'pyo': 18831, 'chapped': 18832, 'ham': 18833, 'hairstupid': 18834, 'landcruiser': 18835, 'hc
c': 18836, 'yn': 18837, 'spanishany': 18838, 'nownope': 18839, 'gregs': 18840, 'rele': 18841, 'lfpa': 18842, 'no
stalgia': 18843, 'tushar': 18844, 'pestered': 18845, 'personnel': 18846, 'abuserequestabuse': 18847, 'wilmy': 18
848, 'stfu': 18849, 'birdy': 18850, 'daddysize': 18851, 'lessonguess': 18852, 'waitand': 18853, 'stuttgart': 188
54, 'befahconference': 18855, 'shelters': 18856, 'poltergeist': 18857, 'funchal': 18858, 'chorleywood': 18859, '
cambridge': 18860, 'stamford': 18861, 'creatur': 18862, 'dne': 18863, 'oxm': 18864, 'nodding': 18865, 'noticable
': 18866, 'heyyhooheyhey': 18867, 'certian': 18868, 'charmingly': 18869, 'tonightabuse': 18870, 'authenticating'
: 18871, 'alternating': 18872, 'groom': 18873, 'lincolnill': 18874, 'runsee': 18875, 'neverrr': 18876, 'business
y': 18877, 'cgi': 18878, 'toni': 18879, 'refirmware': 18880, 'digs': 18881, 'footballers': 18882, 'buttonlol': 1
8883, 'tenerife': 18884, 'mochas': 18885, 'frappachinos': 18886, 'ahte': 18887, 'nicc': 18888, 'blowin': 18889,
'atbfmsolidsynnet': 18890, 'lonelyyyy': 18891, 'mothersget': 18892, 'kidsll': 18893, 'blake': 18894, 'sandbox':
18895, 'objects': 18896, 'autoreturn': 18897, 'macarena': 18898, 'fuschia': 18899, 'sheath': 18900, 'chic': 1890
1, 'tks': 18902, 'ipodsadi': 18903, 'tutorial': 18904, 'epitomised': 18905, 'artomatic': 18906, 'croissant': 189
07, 'oohs': 18908, 'aahs': 18909, 'repetitive': 18910, 'alicev': 18911, 'totalling': 18912, 'bowlmilk': 18913, '
admirer': 18914, 'navarro': 18915, 'montanai': 18916, 'donbt': 18917, 'peel': 18918, 'sunbut': 18919, 'suse': 18
920, 'tabz': 18921, 'jossd': 18922, 'confidential': 18923, 'spinelli': 18924, 'registering': 18925, 'browsers':
18926, 'dries': 18927, 'dritan': 18928, 'agnes': 18929, 'desappointed': 18930, 'creators': 18931, 'developers':
18932, 'magicmoment': 18933, 'gamer': 18934, 'luvd': 18935, 'extent': 18936, 'trully': 18937, 'dolidh': 18938, '
tonightgot': 18939, 'political': 18940, 'owen': 18941, 'wander': 18942, 'hilda': 18943, 'gallares': 18944, 'kind
red': 18945, 'baffles': 18946, 'bikeespecially': 18947, 'lighthouse': 18948, 'hangout': 18949, 'smarter': 18950,
'classier': 18951, 'bludge': 18952, 'pearlyns': 18953, 'svc': 18954, 'danas': 18955, 'omglistening': 18956, 'kap
owski': 18957, 'pque': 18958, 'pinas': 18959, 'defending': 18960, 'requested': 18961, 'garbo': 18962, 'bulletin'
: 18963, 'yeaup': 18964, 'booskie': 18965, 'reassurance': 18966, 'nakuh': 18967, 'grabeh': 18968, 'gabbie': 1896
9, 'grandaddy': 18970, 'pcs': 18971, 'mela': 18972, 'cept': 18973, 'kart': 18974, 'couldn': 18975, 'mikeywayday'
: 18976, 'lammy': 18977, 'sherman': 18978, 'implying': 18979, 'vicodin': 18980, 'bjadaycom': 18981, 'gables': 18
982, 'torontos': 18983, 'younge': 18984, 'wets': 18985, 'timer': 18986, 'wierd': 18987, 'ovation': 18988, 'krene
e': 18989, 'kidnap': 18990, 'supertarget': 18991, 'funnyu': 18992, 'watersthought': 18993, 'casual': 18994, 'res
ponsible': 18995, 'madame': 18996, 'tussauds': 18997, 'playerwell': 18998, 'ohoh': 18999, 'muminlaw': 19000, 'ho
telredenand': 19001, 'laughyou': 19002, 'roni': 19003, 'callmecourt': 19004, 'nessiah': 19005, 'rumage': 19006,
'topless': 19007, 'numan': 19008, 'remixes': 19009, 'gmu': 19010, 'sys': 19011, 'eng': 19012, 'boyfriendgirlfrie
nd': 19013, 'lookd': 19014, 'familar': 19015, 'marxs': 19016, 'nauseatingly': 19017, 'douchenozzle': 19018, 'haa
aa': 19019, 'rolland': 19020, 'garros': 19021, 'nutrition': 19022, 'unladylike': 19023, 'biafra': 19024, 'people
e': 19025, 'span': 19026, 'fukkn': 19027, 'awesomeeeee': 19028, 'directv': 19029, 'intensity': 19030, 'imiss': 1
9031, 'cease': 19032, 'enfest': 19033, 'tomorrowhappy': 19034, 'brummie': 19035, 'struckthought': 19036, 'remedi
es': 19037, 'tweetlol': 19038, 'wormy': 19039, 'labyrinth': 19040, 'rsvped': 19041, 'qiuqius': 19042, 'cholocate
': 19043, 'feminineand': 19044, 'handshakes': 19045, 'astroturf': 19046, 'resigned': 19047, 'wowwww': 19048, 'mc
loven': 19049, 'ulduar': 19050, 'madnot': 19051, 'knowto': 19052, 'kaylen': 19053, 'uuurgg': 19054, 'freaked': 1
9055, 'custodian': 19056, 'findtrust': 19057, 'censoring': 19058, 'nincom': 19059, 'speculate': 19060, 'asthetic
s': 19061, 'aladdin': 19062, 'feria': 19063, 'urbana': 19064, 'lasercut': 19065, 'shorter': 19066, 'housemates':
19067, 'sittn': 19068, 'thinkinwow': 19069, 'von': 19070, 'morninghoping': 19071, 'violated': 19072, 'tucson': 1
9073, 'wroclawpoland': 19074, 'kosmo': 19075, 'minits': 19076, 'leff': 19077, 'awakening': 19078, 'johns': 19079
, 'leyrock': 19080, 'coloursfest': 19081, 'abusesomeonesabuse': 19082, 'iiii': 19083, 'souljaa': 19084, 'gays':
19085, 'okayokay': 19086, 'additl': 19087, 'reviewing': 19088, 'downloadingusing': 19089, 'sank': 19090, 'whimpe
red': 19091, 'downloadfestivals': 19092, 'festivals': 19093, 'jasperhale': 19094, 'dionusia': 19095, 'presenta':
19096, 'yesterdayleg': 19097, 'enginebikes': 19098, 'criado': 19099, 'unlocked': 19100, 'decades': 19101, 'gottt
a': 19102, 'height': 19103, 'specially': 19104, 'bumbpy': 19105, 'roads': 19106, 'comiccon': 19107, 'slamma': 19
108, 'tixs': 19109, 'aptism': 19110, 'hva': 19111, 'shw': 19112, 'bodyshop': 19113, 'takeaway': 19114, 'nonalcoh
olic': 19115, 'mpp': 19116, 'teetotaler': 19117, 'waupoos': 19118, 'willl': 19119, '�i�m': 19120, 'seck': 19
121, 'everrything': 19122, 'breadtalk': 19123, 'lolsz': 19124, 'aaarrrgh': 19125, 'tooone': 19126, 'gotto': 1912
7, 'gladi': 19128, 'partied': 19129, 'sml': 19130, 'elitecamp': 19131, 'nogard': 19132, 'girrrrrrrrlll': 19133,
'startup': 19134, 'probablywhy': 19135, 'ripleys': 19136, 'eatingbad': 19137, 'iop': 19138, 'hpt': 19139, 'adapt
ec': 19140, 'jorx': 19141, 'isay': 19142, 'kamusta': 19143, 'bulacan': 19144, 'historical': 19145, 'gimmick': 19
146, 'aussieland': 19147, 'splodge': 19148, 'ketchup': 19149, 'printchick': 19150, 'burden': 19151, 'utdkick': 1
9152, 'leglol': 19153, 'maxin': 19154, 'bingley': 19155, 'practisetheproposal': 19156, 'endearing': 19157, 'guus
s': 19158, 'watches': 19159, 'grandmothers': 19160, 'furbaby': 19161, 'auctionhow': 19162, 'baseship': 19163, 'l
ulz': 19164, 'anke': 19165, 'slopes': 19166, 'yknow': 19167, 'buttt': 19168, 'iain': 19169, 'ld': 19170, 'napppi
nggg': 19171, 'commandbet': 19172, 'droids': 19173, 'paving': 19174, 'hahahahahahahahahah': 19175, 'iyaa': 19176
, 'pardee': 19177, 'picturs': 19178, 'sherrieshepherd': 19179, 'painfully': 19180, 'rubs': 19181, 'softly': 1918
2, 'rayne': 19183, 'novel': 19184, 'paperbackim': 19185, 'potrait': 19186, 'profound': 19187, 'froyo': 19188, 'w
akeup': 19189, 'anway': 19190, 'beez': 19191, 'heterochallenged': 19192, 'vlogcandy': 19193, 'honours': 19194, '
iloveyoumoreeee': 19195, 'daydidnt': 19196, 'excitingsaw': 19197, 'wellmoving': 19198, 'pleaseeee': 19199, 'exte
nsive': 19200, 'bedthen': 19201, 'korn': 19202, 'plead': 19203, 'metric': 19204, 'rennison': 19205, 'kotenok': 1
9206, 'garys': 19207, 'takn': 19208, 'waraw': 19209, 'folkkz': 19210, 'miracle': 19211, 'stitch': 19212, 'amumla
ut': 19213, 'pleb': 19214, 'spooky': 19215, 'matching': 19216, 'sliders': 19217, 'barjohnnys': 19218, 'farewells
': 19219, 'divorce': 19220, 'outtie': 19221, 'porto': 19222, 'alegre': 19223, 'loooooolding': 19224, 'teddychuck
ing': 19225, 'mtwittercom': 19226, 'omgthank': 19227, 'sexualmaternal': 19228, 'threatening': 19229, 'urm': 1923
0, 'getfeel': 19231, 'soonest': 19232, 'frosty': 19233, 'thash': 19234, 'kathleenshes': 19235, 'realz': 19236, '
mount': 19237, 'twitterhi': 19238, 'cancerfree': 19239, 'evergraduation': 19240, 'workplace': 19241, 'shortsleev
ed': 19242, 'tooam': 19243, 'nowam': 19244, 'helpin': 19245, 'ilol': 19246, 'postin': 19247, 'wmiad': 19248, 'de
ffo': 19249, 'lata': 19250, 'wahahaha': 19251, 'tonightwife': 19252, 'osu': 19253, 'ath': 19254, 'trng': 19255,
'rcption': 19256, 'banquetcant': 19257, 'couchphone': 19258, 'whites': 19259, 'grain': 19260, 'therapuetic': 192
61, 'bettering': 19262, 'financing': 19263, 'yessum': 19264, 'alllllllllllllllll': 19265, 'charlies': 19266, 'go
ingg': 19267, 'renew': 19268, 'teeheei': 19269, 'nonfunctionalproductive': 19270, 'tiime': 19271, 'chooool': 192
72, 'maaddict': 19273, 'fangs': 19274, 'daysmigraine': 19275, 'blueberry': 19276, 'starbuck': 19277, 'potus': 19
278, 'folo': 19279, 'nomination': 19280, 'zensify': 19281, 'landscape': 19282, 'kookie': 19283, 'girlrain': 1928
4, 'forrealll': 19285, 'katieawesome': 19286, 'welcomewould': 19287, 'allow': 19288, 'sorehead': 19289, 'trashed
': 19290, 'blinds': 19291, 'glare': 19292, 'damper': 19293, 'georgetown': 19294, 'invoices': 19295, 'ajax': 1929
6, 'php': 19297, 'autorefresh': 19298, 'chander': 19299, 'lei': 19300, 'didt': 19301, 'sufficient': 19302, 'leav
eeeee': 19303, 'guranteee': 19304, 'kendra': 19305, 'tmh': 19306, 'prerequisites': 19307, 'wantneed': 19308, 'ag
ainabuse': 19309, 'sohcahtoa': 19310, 'bakneed': 19311, 'hwi': 19312, 'unsuspecting': 19313, 'garland': 19314, '
youoh': 19315, 'yeahs': 19316, 'softshock': 19317, 'mettingdont': 19318, 'narnia': 19319, 'blurb': 19320, 'aslan
': 19321, 'skandar': 19322, 'yeahthats': 19323, 'neith': 19324, 'suffication': 19325, 'breathing': 19326, 'abuse
jinx': 19327, 'milows': 19328, 'anooyed': 19329, 'cageball': 19330, 'jfk': 19331, 'centers': 19332, 'hairball':
19333, 'summerr': 19334, 'babyyyy': 19335, 'kaki': 19336, 'sparks': 19337, 'giutar': 19338, 'skunk': 19339, 'col
di': 19340, 'minutei': 19341, 'insulted': 19342, 'involve': 19343, 'samsung': 19344, 'omnia': 19345, 'southside'
: 19346, 'mintbubblegumcookieflakenerds': 19347, 'friendss': 19348, 'dor': 19349, 'sharkeez': 19350, 'coola': 19
351, 'floridaits': 19352, 'godits': 19353, 'godtoo': 19354, 'lategood': 19355, 'failnow': 19356, 'divo': 19357,
'recommending': 19358, 'flirt': 19359, 'sqeaky': 19360, 'sisi': 19361, 'nitecan': 19362, 'soonabuse': 19363, 'rb
lpn': 19364, 'adafranco': 19365, 'obtain': 19366, 'rik': 19367, 'colombia': 19368, 'wthose': 19369, 'gtta': 1937
0, 'acsvxdcbgfn': 19371, 'phoebe': 19372, 'omgthe': 19373, 'oging': 19374, 'british': 19375, 'observed': 19376,
'pi': 19377, '�neleg': 19378, 'avea': 19379, 'emisiune': 19380, 'ceva': 19381, 'minority': 19382, 'milage': 19
383, 'yale': 19384, 'yeeh': 19385, 'reall': 19386, 'digiqom': 19387, 'sayid': 19388, 'morninghappy': 19389, 'egg
whites': 19390, 'buger': 19391, 'mmmmmmmmm': 19392, 'lowerleft': 19393, 'specialistpoor': 19394, 'leftover': 193
95, 'noiiiiice': 19396, 'buena': 19397, 'ackles': 19398, 'lastnte': 19399, 'morningin': 19400, 'nowmissing': 194
01, 'mylan': 19402, 'toms': 19403, 'thehodgecouk': 19404, 'inclusion': 19405, 'sikaflex': 19406, 'caulk': 19407,
'rny': 19408, 'sugary': 19409, 'bleck': 19410, 'intruder': 19411, 'saidplease': 19412, 'handsi': 19413, 'nicknam
e': 19414, 'mtaby': 19415, 'uniqname': 19416, 'wellhope': 19417, 'sherri': 19418, 'plzzzz': 19419, 'blackout': 1
9420, 'dw': 19421, 'hagg': 19422, 'lsat': 19423, 'safesex': 19424, 'cruisers': 19425, 'jetsons': 19426, 'finltst
ones': 19427, 'okur': 19428, 'commentshows': 19429, 'bishopstorford': 19430, 'waaaay': 19431, 'musicares': 19432
, 'cadburys': 19433, 'yon': 19434, 'walgreens': 19435, 'haaa': 19436, 'workwhat': 19437, 'partysuprisingly': 194
38, 'schoooool': 19439, 'platform': 19440, 'gingers': 19441, 'gush': 19442, 'partypeople': 19443, 'oof': 19444,
'moronmonday': 19445, 'sweetpea': 19446, 'hin': 19447, 'pleasanton': 19448, 'eastenders': 19449, 'starr': 19450,
'hawkesbury': 19451, 'baadly': 19452, 'reds': 19453, 'armada': 19454, 'creammm': 19455, 'soetimes': 19456, 'ungr
ateful': 19457, 'vine': 19458, 'unattractive': 19459, 'trafalger': 19460, 'pigeons': 19461, 'ninth': 19462, 'yea
rly': 19463, 'sickkk': 19464, 'tele': 19465, 'ittttt': 19466, 'abusejealousabuse': 19467, 'operational': 19468,
'andeasy': 19469, 'freshly': 19470, 'tossa': 19471, 'hardcoded': 19472, 'partners': 19473, 'kunal': 19474, 'khem
u': 19475, 'starrers': 19476, 'outthere': 19477, 'probability': 19478, 'niche': 19479, 'trolling': 19480, 'youth
e': 19481, 'brian�s': 19482, 'maikos': 19483, 'amandas': 19484, 'crystal': 19485, 'calendars': 19486, 'bubbled
': 19487, 'wsop': 19488, 'aa': 19489, 'preshow': 19490, 'eitherits': 19491, 'surei': 19492, 'wayyyy': 19493, 'be
verly': 19494, 'scoreless': 19495, 'cranking': 19496, 'hiyaa': 19497, 'xxxxxxxx': 19498, 'neighbourss': 19499, '
webkit': 19500, 'worthless': 19501, 'pirating': 19502, 'braggin': 19503, 'norwood': 19504, 'haaaaaa': 19505, 'pa
cing': 19506, 'ichiban': 19507, 'tailbone': 19508, 'destrey': 19509, 'motherssss': 19510, 'sardonic': 19511, 'la
nka': 19512, 'spiritual': 19513, 'benot': 19514, 'thocaught': 19515, 'sickly': 19516, 'trailed': 19517, 'landlin
es': 19518, 'artillero': 19519, 'knights': 19520, 'nightfri': 19521, 'sarrah': 19522, 'knowunfortunately': 19523
, 'sameee': 19524, 'scoundrels': 19525, 'mommm': 19526, 'goodmaking': 19527, 'daysi': 19528, 'mymaths': 19529, '
timeif': 19530, 'thereto': 19531, 'pheasant': 19532, 'kaotic': 19533, 'pigment': 19534, 'pooh': 19535, 'riveting
': 19536, 'toothpicks': 19537, 'yogurting': 19538, 'monas': 19539, 'yoplait': 19540, 'tmorrow': 19541, 'rehearsa
ls': 19542, 'ednas': 19543, 'allahpundit': 19544, 'inconvenience': 19545, 'soim': 19546, 'bgn': 19547, 'sprint':
19548, 'ladyok': 19549, 'repetative': 19550, 'puff': 19551, 'notthat': 19552, 'questiondomestic': 19553, 'bedmy'
: 19554, 'worlddont': 19555, 'ooohhhhh': 19556, 'oxteach': 19557, 'abuseandabuse': 19558, 'milkskake': 19559, 'a
buseblushesabuse': 19560, 'kmv': 19561, 'songgg': 19562, 'bedgot': 19563, 'scruffy': 19564, 'nerfherders': 19565
, 'amis': 19566, 'bowman': 19567, 'strategicclock': 19568, 'minivacation': 19569, 'katieedwards': 19570, 'letter
man': 19571, 'decidedly': 19572, 'doublejasmin': 19573, 'pistons': 19574, 'fromahem': 19575, 'tissue': 19576, 'g
ardener': 19577, 'trimmed': 19578, 'battling': 19579, 'moviesss': 19580, 'brake': 19581, 'marilyn': 19582, 'seri
a': 19583, 'wooohooo': 19584, 'discussants': 19585, 'blued': 19586, 'screened': 19587, 'sadddim': 19588, 'refoll
ow': 19589, 'tswift': 19590, 'nts': 19591, 'wonderfuly': 19592, 'granada': 19593, 'cleche': 19594, 'bcreative':
19595, 'harrd': 19596, 'plns': 19597, 'earthday': 19598, 'starhope': 19599, 'flawless': 19600, 'gtg': 19601, 'sa
nti': 19602, 'smithamherst': 19603, 'minireunion': 19604, 'wellnot': 19605, 'sebastian': 19606, 'boise': 19607,
'cmf': 19608, 'reporting': 19609, 'twitterati': 19610, 'luvvv': 19611, 'aquestionwhy': 19612, 'fridaywhich': 196
13, 'chapman': 19614, 'whuffaoke': 19615, 'gillette': 19616, 'carlingford': 19617, 'lough': 19618, 'bullseye': 1
9619, 'amaaaazing': 19620, 'disection': 19621, 'froggy': 19622, 'prepresale': 19623, 'kam': 19624, 'incarnatedso
': 19625, 'mutant': 19626, 'ghalib': 19627, 'abuseyetabuse': 19628, 'adele': 19629, 'sleepglad': 19630, 'ballsab
use': 19631, 'goddaughters': 19632, 'gino': 19633, 'arc': 19634, 'floridanot': 19635, 'springs': 19636, 'maaaan'
: 19637, 'pickings': 19638, 'aces': 19639, 'zion': 19640, 'milestone': 19641, 'assumes': 19642, 'taboo': 19643,
'placebo': 19644, 'tori': 19645, 'amos': 19646, 'menlo': 19647, 'freehugs': 19648, 'nooooothing': 19649, 'palin'
: 19650, 'whod': 19651, 'combined': 19652, 'disastrously': 19653, 'excedrine': 19654, 'yearmission': 19655, 'acc
omplishednow': 19656, 'reassembled': 19657, 'tweaked': 19658, 'travoltas': 19659, 'bassline': 19660, 'goabuse':
19661, 'ferber': 19662, 'goodbad': 19663, 'oooowwwch': 19664, 'dothis': 19665, 'makino': 19666, 'chaya': 19667,
'jenna': 19668, 'immensely': 19669, 'robinson': 19670, 'wfm': 19671, 'haaaaaaaaate': 19672, 'shakalohana': 19673
, 'wavez': 19674, 'surfin': 19675, 'twitternut': 19676, 'squashes': 19677, 'jagex': 19678, 'bam': 19679, 'marcos
': 19680, 'funwish': 19681, 'straycat': 19682, 'anchorage': 19683, 'lootwise': 19684, 'gauss': 19685, 'cornbread
': 19686, 'appealing': 19687, 'nicotine': 19688, 'twitchy': 19689, 'khichadi': 19690, 'yoooooooou': 19691, 'dbsk
': 19692, 'oppas': 19693, 'mirotic': 19694, 'muchhhhh': 19695, 'abuseburst': 19696, 'tearsabuse': 19697, 'buzy':
19698, 'somethign': 19699, 'naughty': 19700, 'cynthia': 19701, 'katey': 19702, 'vodkas': 19703, 'remodel': 19704
, 'anouther': 19705, 'yeay': 19706, 'jiah': 19707, 'https': 19708, 'extplorer': 19709, 'mast': 19710, 'ladki': 1
9711, 'patata': 19712, 'jiske': 19713, 'sath': 19714, 'bhi': 19715, 'jaye': 19716, 'khush': 19717, 'rehnawill':
19718, 'bladder': 19719, 'puggy': 19720, 'pughug': 19721, 'quitting': 19722, 'elrumi': 19723, 'fii': 19724, 'mus
hkila': 19725, 'maa': 19726, 'grisham': 19727, 'mtn': 19728, 'judd': 19729, 'blaze': 19730, 'talkshow': 19731, '
tut': 19732, 'whohoo': 19733, 'algonquin': 19734, 'misfit': 19735, 'abusepasses': 19736, 'tylenolabuse': 19737,
'betterrrrrrrr': 19738, 'youthank': 19739, 'slouchy': 19740, 'barets': 19741, 'rara': 19742, 'alonei': 19743, 'o
fmax': 19744, 'posit': 19745, 'softees': 19746, 'spec': 19747, 'kaching': 19748, 'bugsssss': 19749, 'nowwwww': 1
9750, 'congratulation': 19751, 'icehockey': 19752, 'makei': 19753, 'assistantcooknannychauffer': 19754, 'reworde
d': 19755, 'insteada': 19756, 'banging': 19757, 'godly': 19758, 'sandy': 19759, 'bekz': 19760, 'derrian': 19761,
'puppyy': 19762, 'aggregate': 19763, 'roomate': 19764, 'airportno': 19765, 'changedd': 19766, 'picnik': 19767, '
strategy': 19768, 'robarts': 19769, 'kboom': 19770, 'seenpreceded': 19771, 'musclesthe': 19772, 'gnitey': 19773,
'sundaes': 19774, 'dumpster': 19775, 'outlet': 19776, 'minty': 19777, 'facebooks': 19778, 'jagk': 19779, 'intern
ship': 19780, 'scrubbing': 19781, 'mustard': 19782, 'veges': 19783, 'likelike': 19784, 'aquarius': 19785, 'oriol
e': 19786, 'suet': 19787, 'lis': 19788, 'megaredpacket': 19789, 'sneers': 19790, 'couplea': 19791, 'kaelah': 197
92, 'admire': 19793, 'junction': 19794, 'ollies': 19795, 'amazingplease': 19796, 'maaategrooovin': 19797, 'subsc
riptions': 19798, 'nzz': 19799, 'economist': 19800, 'costsavings': 19801, 'framed': 19802, 'valentino': 19803, '
rossi': 19804, 'nowor': 19805, 'tuff': 19806, 'haaaate': 19807, 'violin': 19808, 'meadowhall': 19809, 'imagineal
though': 19810, 'asprin': 19811, 'aureole': 19812, 'trampyesssssir': 19813, 'calcuttadelhilucknow': 19814, 'abse
nce': 19815, 'masson': 19816, 'soulfull': 19817, 'torchwood': 19818, 'geht': 19819, 'wieder': 19820, 'bugg': 198
21, 'legarmfoot': 19822, 'vera': 19823, 'zoomed': 19824, 'chock': 19825, 'buses': 19826, 'autographs': 19827, 'u
rselff': 19828, 'oscc': 19829, 'gosforth': 19830, 'antony': 19831, 'johnsons': 19832, 'neti': 19833, 'hearandim'
: 19834, 'bullhorn': 19835, 'onnnnnnnnnnnn': 19836, 'bwahaha': 19837, 'chills': 19838, 'pleasedo': 19839, 'thang
': 19840, 'stomache': 19841, 'weeksi': 19842, 'believing': 19843, 'sacrilege': 19844, 'bdix': 19845, 'devjavanet
': 19846, 'itthats': 19847, 'macarenaing': 19848, 'tittle': 19849, 'emirates': 19850, 'richter': 19851, 'ayah':
19852, 'loggade': 19853, 'visst': 19854, 'l�rdags': 19855, 'padestrian': 19856, 'skanking': 19857, 'pwnd': 198
58, 'nuuuuu': 19859, 'trance': 19860, 'drumnbass': 19861, 'abusedances': 19862, 'outabuse': 19863, 'wifiyou': 19
864, 'eeet': 19865, 'lunchsubway': 19866, 'freshnow': 19867, 'clash': 19868, 'kostet': 19869, 'mathsteacher': 19
870, 'gweg': 19871, 'biting': 19872, 'varnish': 19873, 'timeframe': 19874, 'colab': 19875, 'upback': 19876, 'nig
htmorning': 19877, 'retirment': 19878, 'pffftt': 19879, 'soberdang': 19880, 'chiefs': 19881, 'elway': 19882, 'nf
l': 19883, 'burnett': 19884, 'embedded': 19885, 'hampstead': 19886, 'constituency': 19887, 'yayay': 19888, 'miso
ricesushimochi': 19889, 'legalisation': 19890, 'playmate': 19891, 'todayisaprosperous': 19892, 'thankujesus': 19
893, 'beyeblessed': 19894, 'textin': 19895, 'scooby': 19896, 'meni': 19897, 'facecmon': 19898, 'bathrooms': 1989
9, 'ronaldo': 19900, 'everyonee': 19901, 'uniforms': 19902, 'cellgroup': 19903, 'whilegonna': 19904, 'amazake':
19905, 'powder': 19906, 'agave': 19907, 'heyim': 19908, 'lmbo': 19909, 'conjunctivitis': 19910, 'thislol': 19911
, 'melol': 19912, 'safepoor': 19913, 'combed': 19914, 'vouchers': 19915, 'dissapeared': 19916, 'wrongand': 19917
, 'gaiman': 19918, 'buddi': 19919, 'colton': 19920, 'hacker': 19921, 'prettie': 19922, 'esspensive': 19923, 'haf
f': 19924, 'bearfoot': 19925, 'suprnatural': 19926, 'abusesmilesabuse': 19927, 'posterrr': 19928, 'crowds': 1992
9, 'keepsitreal': 19930, 'lolabuse': 19931, 'orangepineapplebanana': 19932, 'minnebron': 19933, 'notoriously': 1
9934, 'unreliable': 19935, 'twitster': 19936, 'morse': 19937, 'gaze': 19938, 'stocking': 19939, 'sholders': 1994
0, 'whedon': 19941, 'accidentpls': 19942, 'tantalizingly': 19943, 'communism': 19944, 'communist': 19945, 'princ
es': 19946, 'themim': 19947, 'sessionstill': 19948, 'prioritize': 19949, 'misha': 19950, 'craigslistquebec': 199
51, 'drawings': 19952, 'ams': 19953, 'gmtish': 19954, 'recharged': 19955, 'offshore': 19956, 'anticipate': 19957
, 'hiyaaaaaa': 19958, 'brainfreeze': 19959, 'loaned': 19960, 'aerobars': 19961, 'alkek': 19962, 'generates': 199
63, 'uninstall': 19964, 'allaround': 19965, 'redneck': 19966, 'habitat': 19967, 'twitteractive': 19968, 'overpow
er': 19969, 'sched': 19970, 'tiringits': 19971, 'bazillionz': 19972, 'supprtin': 19973, 'smelly': 19974, 'vixon'
: 19975, 'yield': 19976, 'webkinz': 19977, 'ana': 19978, 'ele': 19979, 'eli': 19980, 'pricked': 19981, 'bragg':
19982, 'blunstone': 19983, 'pentecost': 19984, 'uselessly': 19985, 'causing': 19986, 'shoppingfantastic': 19987,
'bandit': 19988, 'deadliestcatch': 19989, 'tpglove': 19990, 'suspense': 19991, 'tabby': 19992, 'diabetes': 19993
, 'maya': 19994, 'kibbel': 19995, 'diffusing': 19996, 'irritation': 19997, 'completing': 19998, 'smashedbein': 1
9999, 'gearbox': 20000, 'youbrokeback': 20001, 'brotherand': 20002, 'elmwood': 20003, 'jeebus': 20004, 'carina':
20005, 'hugsjoy': 20006, 'brum': 20007, 'blt': 20008, 'thaz': 20009, 'xams': 20010, 'natalies': 20011, 'faceeee'
: 20012, 'twitches': 20013, 'getcha': 20014, 'laavly': 20015, 'spared': 20016, 'jamming': 20017, 'meyrueis': 200
18, 'replenished': 20019, 'pondering': 20020, 'shanes': 20021, 'bwahah': 20022, 'chocolateeee': 20023, 'aaaaarrr
rggghhh': 20024, 'kerbear': 20025, 'overpriced': 20026, 'assemble': 20027, 'jrs': 20028, 'mitchells': 20029, 'sl
eppytime': 20030, 'godfather': 20031, 'wayne': 20032, 'tippers': 20033, 'mule': 20034, 'holmbury': 20035, 'weddi
ngs': 20036, 'ldbf': 20037, 'border': 20038, 'pastel': 20039, 'groundbreaking': 20040, 'arrested': 20041, 'popco
rnss': 20042, 'producedirectfilmedit': 20043, 'coordinate': 20044, 'fetti': 20045, 'restoration': 20046, 'banks'
: 20047, 'avocets': 20048, 'aila': 20049, 'cyclone': 20050, 'calcutta': 20051, 'sunshade': 20052, 'bareillescan'
: 20053, 'crowntown': 20054, 'earl': 20055, 'uuuggghh': 20056, 'ohwwww': 20057, 'angsty': 20058, 'prewedding': 2
0059, 'taltal': 20060, 'tal': 20061, 'boingo': 20062, 'slowern': 20063, 'mdw': 20064, 'concourses': 20065, 'aaah
h': 20066, 'weeek': 20067, 'carrrr': 20068, 'abusesmackedabuse': 20069, 'hmmok': 20070, 'gson': 20071, 'doona':
20072, 'beveragei': 20073, 'rockstars': 20074, 'mpaa': 20075, 'videorecord': 20076, 'ferns': 20077, 'petals': 20
078, 'fnpin': 20079, 'watchinggg': 20080, 'programmed': 20081, 'd�j�': 20082, 'vu': 20083, 'gq': 20084, 'say
think': 20085, 'shiftswill': 20086, 'teethed': 20087, 'handball': 20088, 'mhmm': 20089, 'hehebut': 20090, 'vn':
20091, 'ranjan': 20092, 'lindy': 20093, 'olympiou': 20094, 'diamanti': 20095, 'thessaloniki': 20096, 'pange': 20
097, 'ahahahahaha': 20098, 'eventho': 20099, 'villains': 20100, 'bunchh': 20101, 'droppedand': 20102, 'ughdo': 2
0103, 'sacrifices': 20104, 'ilook': 20105, 'hamdemic': 20106, 'aporkalypse': 20107, 'parmageddon': 20108, 'racha
el': 20109, 'blogroll': 20110, 'motivate': 20111, 'penjiiii': 20112, 'mcbaby': 20113, 'havta': 20114, 'fllwing':
20115, 'loveeeeeeee': 20116, 'packets': 20117, 'horseshoe': 20118, 'wheelchair': 20119, 'homebound': 20120, 'spr
ints': 20121, 'axed': 20122, 'ombra': 20123, 'f�': 20124, 'largo': 20125, 'h�ndel': 20126, 'okthanksdont': 2
0127, 'eitherill': 20128, 'thoughany': 20129, 'timewarner': 20130, 'lolbut': 20131, 'aaand': 20132, 'whyyy': 201
33, 'speedbumps': 20134, 'yourz': 20135, 'enthusiasm': 20136, 'foa': 20137, 'storys': 20138, 'hollyoakspoor': 20
139, 'icetv': 20140, 'twitaddicted': 20141, 'jayytee': 20142, 'peroni': 20143, 'prettymess': 20144, 'morningany'
: 20145, 'successnow': 20146, 'sadsorry': 20147, 'bannished': 20148, 'toowerdphubbys': 20149, 'luat': 20150, 'ex
amenul': 20151, 'spss': 20152, 'keegan': 20153, 'escapism': 20154, 'nonfiction': 20155, 'achieve': 20156, 'smoke
d': 20157, 'twain': 20158, 'ehbut': 20159, 'soonneed': 20160, 'suppliment': 20161, 'pune': 20162, 'chuu': 20163,
'aweee': 20164, 'pulleaase': 20165, 'query': 20166, 'infectionman': 20167, 'recollecting': 20168, 'unkown': 2016
9, 'vehicle': 20170, 'coated': 20171, 'detect': 20172, 'goooooooo': 20173, 'puhleeezeee': 20174, 'sleeper': 2017
5, 'valerie': 20176, 'okayybut': 20177, 'yuotube': 20178, 'razr': 20179, 'myslef': 20180, 'deeper': 20181, 'ivs'
: 20182, 'pikachu': 20183, 'trait': 20184, 'wthat': 20185, 'beerthirty': 20186, 'crackheres': 20187, 'bitits': 2
0188, 'travelled': 20189, 'genoese': 20190, 'frenchie': 20191, 'thatlater': 20192, 'radiator': 20193, 'buried':
20194, 'hospitals': 20195, 'sentiments': 20196, 'fizzy': 20197, 'overdid': 20198, 'muh': 20199, 'chocky': 20200,
'boatingsongwriting': 20201, 'claratyne': 20202, 'slowing': 20203, 'paved': 20204, 'hubabuse': 20205, 'ox': 2020
6, 'unfollowing': 20207, 'itive': 20208, 'pointed': 20209, 'pouringwhere': 20210, 'spooning': 20211, 'dupes': 20
212, 'beastypops': 20213, 'owwwwwww': 20214, 'luddite': 20215, 'ffa': 20216, 'grinabuse': 20217, 'won�t': 2021
8, 'cones': 20219, 'bonfires': 20220, 'morningtired': 20221, 'excercise': 20222, 'sleepladies': 20223, 'shemar':
20224, 'moore': 20225, 'beautifullll': 20226, 'fork': 20227, 'yearbring': 20228, 'feck': 20229, 'alyson': 20230,
'aly': 20231, 'excite': 20232, 'jkuk': 20233, 'extacy': 20234, 'happeh': 20235, 'oohbell': 20236, 'whatchu': 202
37, 'monsterpaloozas': 20238, 'contestant': 20239, 'beggin': 20240, 'yearsthey': 20241, 'budapesthungary': 20242
, 'implode': 20243, 'yoyo': 20244, 'nazis': 20245, 'jazzercise': 20246, 'chaperone': 20247, 'tweetin': 20248, 'w
eirdos': 20249, 'hairdressers': 20250, 'bin': 20251, 'panicky': 20252, 'anxious': 20253, 'puppyyy': 20254, 'skot
t': 20255, 'troubles': 20256, 'tps': 20257, 'okseriouslygood': 20258, 'bacterin': 20259, 'exploded': 20260, 'sub
etha': 20261, 'sensomatic': 20262, 'broody': 20263, 'collector': 20264, 'cavitie': 20265, 'undernourished': 2026
6, 'professionals': 20267, 'peeks': 20268, 'bbcrew': 20269, 'whhaacck': 20270, 'hateee': 20271, 'smooches': 2027
2, 'creep': 20273, 'evan': 20274, 'longoria': 20275, 'lpz': 20276, 'wnat': 20277, 'burped': 20278, 'endedabusesi
ghabusemy': 20279, 'bloggingits': 20280, 'remaining': 20281, 'intelligence': 20282, 'refactor': 20283, 'againdar
n': 20284, 'eclectricity': 20285, 'atmos': 20286, 'tati': 20287, 'emal': 20288, 'parkgood': 20289, 'timesgood':
20290, 'duncan': 20291, 'iraq': 20292, 'astronomy': 20293, 'diamonds': 20294, 'bigfanfriday': 20295, 'whyyyyyy':
20296, 'getcho': 20297, 'neeeddd': 20298, 'foooddd': 20299, 'lewishhh': 20300, 'havelunch': 20301, 'kansai': 203
02, 'shooeessss': 20303, 'byspork': 20304, 'delayscancellations': 20305, 'sympathize': 20306, 'reduculous': 2030
7, 'coffeeoopse': 20308, 'guyunfortunatly': 20309, 'dannys': 20310, 'westin': 20311, 'expo�': 20312, 'hotels':
20313, 'derny': 20314, 'sofie': 20315, 'nooooooooooo': 20316, 'nickchien': 20317, 'assault': 20318, 'wwwreverbna
tioncomsuki': 20319, 'rubys': 20320, 'nerve': 20321, 'askin': 20322, 'waslooks': 20323, 'fonei': 20324, 'anywayf
ones': 20325, 'floatespecially': 20326, 'johny': 20327, 'bidor': 20328, 'wantan': 20329, 'cham': 20330, 'joshtho
mas': 20331, 'comedian': 20332, 'preparing': 20333, 'sermons': 20334, 'doneyou': 20335, 'moe': 20336, 'stalkersa
turday': 20337, 'forwarded': 20338, 'trekked': 20339, 'muhahaha': 20340, 'ignorent': 20341, 'aholes': 20342, 'ov
erturn': 20343, 'ownflitter': 20344, 'homewatching': 20345, 'healthified': 20346, 'streusel': 20347, 'nobodies':
20348, 'majorspoilerscom': 20349, 'toke': 20350, 'asaran': 20351, 'foking': 20352, 'orbitron': 20353, 'dowhen':
20354, 'yanks': 20355, 'fearme': 20356, 'ciroc': 20357, 'stayabusethats': 20358, 'gogol': 20359, 'bordello': 203
60, 'civilization': 20361, 'errr': 20362, 'espressos': 20363, 'appartment': 20364, 'carit�s': 20365, 'sweethea
rts': 20366, 'kindof': 20367, 'fisheye': 20368, 'what�s': 20369, 'civilizati': 20370, 'ohmygosh': 20371, 'wils
hire': 20372, 'faillllllllll': 20373, 'simmons': 20374, 'inshalla': 20375, 'devo': 20376, 'astor': 20377, 'felï¿
½z': 20378, 'entities': 20379, 'cataloguing': 20380, 'rda': 20381, 'beckett': 20382, 'okwe': 20383, 'biiiiig': 2
0384, 'insulin': 20385, 'dachshund': 20386, 'breed': 20387, 'handbags': 20388, 'byeso': 20389, 'milo': 20390, 'd
ownhill': 20391, 'ccp': 20392, 'eithah': 20393, 'todayhmmphh': 20394, 'siad': 20395, 'percentage': 20396, 'werd'
: 20397, 'theheck': 20398, 'diploma': 20399, 'juneim': 20400, 'laughtner': 20401, 'aphrodisiac': 20402, 'oxox':
20403, 'mustangs': 20404, 'pampering': 20405, 'snuggied': 20406, 'twiggies': 20407, 'toothbrush': 20408, 'onfire
': 20409, 'letitia': 20410, 'lovecould': 20411, 'clair': 20412, 'waaaaaay': 20413, 'railing': 20414, 'freetds':
20415, 'peepscorsen': 20416, 'baileys': 20417, 'clipped': 20418, 'ito': 20419, 'quihote': 20420, 'suuuuck': 2042
1, 'vacines': 20422, 'irratated': 20423, 'luton': 20424, 'organ': 20425, 'ejammingcom': 20426, 'phillies': 20427
, 'gamee': 20428, 'arabelle': 20429, 'socialscope': 20430, 'rung': 20431, 'arabic': 20432, 'flows': 20433, 'dion
ee': 20434, 'creme': 20435, 'brulee': 20436, 'tiramisu': 20437, 'oooooooooo': 20438, 'dancin': 20439, 'voyed': 2
0440, 'tallcree': 20441, 'jorge': 20442, 'hhahaa': 20443, 'tiz': 20444, 'abusehadthebestdayeverabuse': 20445, 'b
lvd': 20446, 'thunderstorming': 20447, 'refunded': 20448, 'installing': 20449, 'twibble': 20450, 'lmhr': 20451,
'uuuups': 20452, 'dayshabusei�ve': 20453, 'doesn�t': 20454, 'abusesighabusethank': 20455, 'nellie': 20456, '
goooooooooooood': 20457, 'morrrrrrrrning': 20458, 'ducati': 20459, 'isn�abuse': 20460, 'ovie': 20461, 'highlig
hts': 20462, 'concede': 20463, 'bampa': 20464, 'disdrict': 20465, 'containing': 20466, 'laths': 20467, 'lates':
20468, 'faa': 20469, 'moondog': 20470, 'fightstar': 20471, 'mercury': 20472, 'freemusic': 20473, 'frehley': 2047
4, 'coherent': 20475, 'mightmight': 20476, 'musicians': 20477, 'harpmanhatter': 20478, 'briefs': 20479, 'mashup'
: 20480, 'hysteria': 20481, 'horsies': 20482, 'highways': 20483, 'zbrush': 20484, 'rover': 20485, 'chevy': 20486
, 'cuuuba': 20487, 'sotomayor': 20488, 'booboo': 20489, 'branches': 20490, 'collerbone': 20491, 'nag': 20492, 'd
aydream': 20493, 'manderin': 20494, 'montel': 20495, 'awesomeam': 20496, 'genuine': 20497, 'dependent': 20498, '
blairr': 20499, 'sunblock': 20500, 'spahkly': 20501, 'digestif': 20502, 'airplane': 20503, 'musso': 20504, 'mlb'
: 20505, 'mlbn': 20506, 'televising': 20507, 'detbal': 20508, 'mavens': 20509, 'peac': 20510, 'pleeeeeease': 205
11, 'pleeeease': 20512, 'revisionbiology': 20513, 'connors': 20514, 'frist': 20515, 'mccartney': 20516, 'stiches
': 20517, 'pleaseyour': 20518, 'josettewhere': 20519, 'pond': 20520, 'rog�rio': 20521, 'minotouro': 20522, 'al
lbeautiful': 20523, 'daybest': 20524, 'cor': 20525, 'baccck': 20526, 'uhhhg': 20527, 'visteon': 20528, 'deliveri
es': 20529, 'instructors': 20530, 'players': 20531, 'converted': 20532, 'awwhwell': 20533, 'amazingg': 20534, 'r
eplyy': 20535, 'importexport': 20536, 'locally': 20537, 'lunchnow': 20538, 'orchestra': 20539, 'rockedone': 2054
0, 'tierda': 20541, 'gracias': 20542, 'youknowimsofreshtilldeath': 20543, 'snakesand': 20544, 'hotand': 20545, '
seeyuhhh': 20546, 'jesusim': 20547, 'papaya': 20548, 'lobbyists': 20549, 'mangosteen': 20550, 'papayaor': 20551,
'cybersecurity': 20552, 'lina': 20553, 'birthdaypresent': 20554, 'nofakery': 20555, 'akl': 20556, 'stooopid': 20
557, 'reconnect': 20558, 'interent': 20559, 'huffy': 20560, 'cyber': 20561, 'copyright': 20562, 'visually': 2056
3, 'impaired': 20564, 'publicist': 20565, 'mcnugget': 20566, 'itell': 20567, 'laundering': 20568, 'constructed':
20569, 'possession': 20570, 'tomm': 20571, 'sthlm': 20572, 'newnew': 20573, 'decal': 20574, 'froma': 20575, 'the
refly': 20576, 'ickkk': 20577, 'abuseokay': 20578, 'alrightokay': 20579, 'themso': 20580, 'horseback': 20581, 't
weeet': 20582, 'holcomb': 20583, 'spoilers': 20584, 'speller': 20585, 'casablanca': 20586, 'muahh': 20587, 'burt
on': 20588, 'peaks': 20589, 'watermelon': 20590, 'hopped': 20591, 'swwwaaaaggg': 20592, 'oooonnnn': 20593, 'dayi
t': 20594, 'awoooogahhhhhh': 20595, 'bowie': 20596, 'alyanna': 20597, 'bondoc': 20598, 'cesar': 20599, 'sosa': 2
0600, 'moreton': 20601, 'stroppy': 20602, 'teenager': 20603, 'stacey': 20604, 'wolverhampton': 20605, 'improved'
: 20606, 'goy': 20607, 'chemo': 20608, 'hangup': 20609, 'kaylalee': 20610, 'itto': 20611, 'hilaaaaarious': 20612
, 'vernae': 20613, 'exhaustedcant': 20614, 'umno': 20615, 'notmy': 20616, 'summerbut': 20617, 'eutour': 20618, '
fallill': 20619, 'rebound': 20620, 'personermdifficult': 20621, 'minibus': 20622, 'dairy': 20623, 'itch': 20624,
'volcano': 20625, 'inflammed': 20626, 'thrillseekers': 20627, 'cara': 20628, 'demilynnmusic': 20629, 'haunted':
20630, 'housesound': 20631, 'ralphies': 20632, 'mandm': 20633, 'helaas': 20634, 'ozbargain': 20635, 'optimising'
: 20636, 'drupal': 20637, 'ekkkthats': 20638, 'ruffhope': 20639, 'mactastic': 20640, 'alreadi': 20641, 'brass':
20642, 'mischevious': 20643, 'pinwheel': 20644, 'interfere': 20645, 'psalm': 20646, 'whitewater': 20647, 'raftin
g': 20648, 'tripics': 20649, 'whaa': 20650, 'bof': 20651, 'shelaaaaaaaa': 20652, 'anncole': 20653, 'blabusey': 2
0654, 'catalog': 20655, 'jitsu': 20656, 'thankyooooou': 20657, 'skippin': 20658, 'ovechkin': 20659, 'haywire': 2
0660, 'reinforced': 20661, 'sorts': 20662, 'folio': 20663, 'girlys': 20664, 'saab': 20665, 'moodle': 20666, 'boo
kings': 20667, 'kathleen': 20668, 'cred': 20669, 'duster': 20670, 'shoppping': 20671, 'greenhills': 20672, 'bali
kbayans': 20673, 'wasn�t': 20674, 'eeeh': 20675, 'whattttever': 20676, 'interrupt': 20677, 'swifts': 20678, 'p
ittsburgh': 20679, 'fas': 20680, 'barrio': 20681, 'records': 20682, 'cmyk': 20683, 'carera': 20684, 'apetite': 2
0685, 'kennedy': 20686, 'reinjured': 20687, 'nay': 20688, 'buttfuck': 20689, 'forgetful': 20690, 'zq': 20691, 'l
uckiest': 20692, 'songd': 20693, 'relient': 20694, 'songsi': 20695, 'awakebut': 20696, 'upgradedone': 20697, 'di
sabling': 20698, 'addons': 20699, 'sophies': 20700, 'tia': 20701, 'aright': 20702, 'outties': 20703, 'saaaaafe':
20704, 'friendships': 20705, 'possibleim': 20706, 'alochol': 20707, 'adaptor': 20708, 'sundayvisitin': 20709, 'f
riendbrother': 20710, 'azlol': 20711, 'shiit': 20712, 'yow': 20713, 'attal': 20714, 'bulls': 20715, 'alrite': 20
716, 'calicut': 20717, 'doggie': 20718, 'uugghh': 20719, 'orgasmic': 20720, 'chloes': 20721, 'trike': 20722, 'th
ingo': 20723, 'girraffe': 20724, 'mhm': 20725, 'coulndt': 20726, 'xoabuseblair': 20727, 'prog': 20728, 'shoooot'
: 20729, 'aaaau': 20730, 'uthanks': 20731, 'friendand': 20732, 'forgiveme': 20733, 'trysometimes': 20734, 'frapp
uccino': 20735, 'iva': 20736, 'yoo': 20737, 'clwn': 20738, 'cr': 20739, 'jabusedavey': 20740, 'hilow': 20741, 'f
lygroups': 20742, 'bells': 20743, 'hami': 20744, 'janette': 20745, 'lolheeeyyy': 20746, 'undertanding': 20747, '
htb': 20748, 'nerdprom': 20749, 'playbyplay': 20750, 'leeuwarden': 20751, 'interlock': 20752, 'twitt': 20753, 'o
ompa': 20754, 'lumpa': 20755, 'choke': 20756, 'sht': 20757, 'cathay': 20758, 'marcus': 20759, 'mucking': 20760,
'rig': 20761, 'jarn': 20762, 'nites': 20763, 'haribos': 20764, 'chantellie': 20765, 'presh': 20766, 'zdbp': 2076
7, 'backhad': 20768, 'lonestar': 20769, 'pitchers': 20770, 'geology': 20771, 'bastardized': 20772, 'tuesdaydumb'
: 20773, 'rulesmy': 20774, 'flipflops': 20775, 'usf': 20776, 'koret': 20777, 'sorrydeep': 20778, 'breaths': 2077
9, 'panicawayit': 20780, 'abuseu': 20781, 'dissappointed': 20782, 'abouttttto': 20783, 'lastnightthey': 20784, '
briliant': 20785, 'chained': 20786, 'webcom': 20787, 'yul': 20788, 'liesliesliesyou': 20789, 'practicallyeveryth
ing': 20790, 'irvine': 20791, 'stupidstupid': 20792, 'sancha': 20793, 'chini': 20794, 'elite': 20795, 'epl': 207
96, 'nanay': 20797, 'hugged': 20798, 'memorize': 20799, 'julius': 20800, 'caesar': 20801, 'likeslol': 20802, 're
dbubble': 20803, 'hateeee': 20804, 'storytotally': 20805, 'secondary': 20806, 'treelined': 20807, 'avenuebegins'
: 20808, 'viewdrowning': 20809, 'regrets': 20810, 'cigarettesbut': 20811, 'forgetwhen': 20812, 'hounslow': 20813
, 'crackers': 20814, 'gaha': 20815, 'tonoght': 20816, 'sportv': 20817, 'knda': 20818, 'shy': 20819, 'yrbook': 20
820, 'evrything': 20821, 'slowthe': 20822, 'everyond': 20823, 'chewbacca': 20824, 'leung': 20825, 'neyo': 20826,
'creditcardsized': 20827, 'sticks': 20828, 'cuong': 20829, 'loooooove': 20830, 'lad': 20831, 'daphne': 20832, 'r
ehearsestarving': 20833, 'billsim': 20834, 'misscbw': 20835, 'servicewill': 20836, 'selenagomezlast': 20837, 'sm
itten': 20838, 'squatting': 20839, 'workyy': 20840, 'mornig': 20841, 'everone': 20842, 'cooli': 20843, 'former':
20844, 'proclamation': 20845, 'rebellioustwitwhoknowsacoolcatcook': 20846, 'elvira': 20847, 'sleepi': 20848, 'tw
ittter': 20849, 'washington': 20850, 'calfornia': 20851, 'newbrunswick': 20852, 'architect': 20853, 'tarblack':
20854, 'promenade': 20855, 'prizeand': 20856, 'jogs': 20857, 'awesomest': 20858, 'pubulation': 20859, 'booluv':
20860, 'xxxrebelrebelxxx': 20861, 'catholic': 20862, 'wholeheartedly': 20863, 'ambiguous': 20864, 'nonmothers':
20865, 'haciendo': 20866, 'primer': 20867, 'wyour': 20868, 'abusephewabuse': 20869, 'issue�': 20870, 'witnessi
ng': 20871, 'jurassic': 20872, 'filmed': 20873, 'acara': 20874, 'menarik': 20875, 'lain': 20876, 'ttg': 20877, '
yg': 20878, 'dikasih': 20879, 'approach': 20880, 'gril': 20881, 'whever': 20882, 'sarahs': 20883, 'reorganize':
20884, 'aguilera': 20885, 'ilovemymommy': 20886, 'ummokjust': 20887, 'tcu': 20888, 'glenelg': 20889, 'filas': 20
890, 'definently': 20891, 'lucien': 20892, 'kerk': 20893, 'vocalists': 20894, 'normaltwo': 20895, 'neeed': 20896
, 'slr': 20897, 'airing': 20898, 'programing': 20899, 'soundbite': 20900, 'evenings': 20901, 'wowive': 20902, 'r
eminders': 20903, 'posture': 20904, 'virginia': 20905, 'roar': 20906, 'triplet': 20907, 'coles': 20908, 'tequila
': 20909, 'herew': 20910, 'casagrande': 20911, 'listens': 20912, 'msi': 20913, 'bakes': 20914, 'remarkably': 209
15, 'inertial': 20916, 'spartacus': 20917, 'shines': 20918, 'shitethank': 20919, 'equations': 20920, 'graphs': 2
0921, 'elephant': 20922, 'fotoreportage': 20923, 'thers': 20924, 'peole': 20925, 'fridayevry': 20926, 'snaaaap':
20927, 'jimmaaayy': 20928, 'hookups': 20929, 'essex': 20930, 'happenning': 20931, 'mapsjk': 20932, 'sportday': 2
0933, 'namaste': 20934, 'naaaah': 20935, 'shivashankar': 20936, 'spellin': 20937, 'girland': 20938, 'aaahhh': 20
939, 'raid': 20940, 'hairstylereal': 20941, 'thoughi': 20942, 'whistlers': 20943, 'whistling': 20944, 'bedbecaus
e': 20945, 'ahokay': 20946, 'ffaf': 20947, 'distraaaaacting': 20948, 'ranga': 20949, 'ebook': 20950, 'comingi':
20951, 'skating': 20952, 'wormie': 20953, 'yourock': 20954, 'tweeeeeet': 20955, 'fcs': 20956, 'daysim': 20957, '
tanya': 20958, 'weekendpictures': 20959, 'millsy': 20960, 'debby': 20961, 'souffl�': 20962, 'bouts': 20963, 'e
ricson': 20964, 'alimony': 20965, 'christmasim': 20966, 'opposites': 20967, 'iswas': 20968, 'iflowers': 20969, '
trough': 20970, 'emos': 20971, 'welchs': 20972, 'lonnngg': 20973, 'waldo': 20974, 'ckc': 20975, 'weeeee': 20976,
'dicaprio': 20977, 'jennifer': 20978, 'davisson': 20979, 'killoran': 20980, 'cheerleader': 20981, 'ohrwurm': 209
82, 'colorblind': 20983, 'phaket': 20984, 'anneliese': 20985, 'polly': 20986, 'noghty': 20987, 'badminton': 2098
8, 'guitars': 20989, 'balling': 20990, 'witnessed': 20991, 'winebeerand': 20992, 'champagnelets': 20993, 'tomorr
owlol': 20994, 'metaverse': 20995, 'gamier': 20996, 'usage': 20997, 'metaverseu': 20998, 'nau': 20999, 'ordeal':
21000, 'floridia': 21001, 'sleepthen': 21002, 'grind': 21003, 'sourness': 21004, 'jimmie': 21005, 'burnedfried':
21006, 'admin': 21007, 'celtics': 21008, 'redsox': 21009, 'braiding': 21010, 'weathernot': 21011, 'jealousur': 2
1012, 'notlmao': 21013, 'chasetons': 21014, 'krys': 21015, 'jimming': 21016, 'winchester': 21017, 'hooping': 210
18, 'diiinner': 21019, 'coo': 21020, 'funnow': 21021, 'giddy': 21022, 'beachbut': 21023, 'ferman': 21024, 'eproc
urement': 21025, 'blacklisted': 21026, 'whitelist': 21027, 'durango': 21028, 'chaperoning': 21029, 'woodchuck':
21030, 'happiletter': 21031, 'braclets': 21032, 'hovering': 21033, 'pissy': 21034, 'loopjazz': 21035, 'ez': 2103
6, 'bej�n': 21037, 'terminedas': 21038, 'kayaking': 21039, 'twi': 21040, 'kidd': 21041, 'finallyy': 21042, 'cl
eann': 21043, 'layn': 21044, 'goshh': 21045, 'aims': 21046, 'negotiation': 21047, 'paintnet': 21048, 'crazily':
21049, 'path': 21050, 'moustachio': 21051, 'daddio': 21052, 'lokelani': 21053, 'diplo': 21054, 'kathryn': 21055,
'smartbar': 21056, 'outz': 21057, 'uhmygawddd': 21058, 'shoesi': 21059, 'iris': 21060, 'zebra': 21061, 'stubborn
ly': 21062, 'momz': 21063, 'firth': 21064, 'groupie': 21065, 'throooooooooooooo': 21066, 'okaay': 21067, 'readys
hopping': 21068, 'reminising': 21069, 'tinted': 21070, 'grayish': 21071, 'doodle': 21072, 'pocketkeep': 21073, '
wrestlefest': 21074, 'eomstill': 21075, 'reenacting': 21076, 'afrin': 21077, 'teacup': 21078, 'hup': 21079, 'pol
len': 21080, 'profitable': 21081, 'sundaygonna': 21082, 'addictiveabuse': 21083, 'phast': 21084, 'moxyeverything
': 21085, 'wordgummed': 21086, 'grosses': 21087, 'torment': 21088, 'designing': 21089, 'heavenly': 21090, 'downp
our': 21091, 'freakish': 21092, 'omgzzz': 21093, 'homer': 21094, 'simspon': 21095, 'yukky': 21096, 'hals': 21097
, 'boardan': 21098, 'nightlame': 21099, 'charades': 21100, 'mentalitiesthere': 21101, 'arabs': 21102, 'insidemus
t': 21103, 'abusewellabusehowever': 21104, 'theeee': 21105, 'feeeeeet': 21106, 'dilemma': 21107, 'sanfran': 2110
8, 'cple': 21109, 'degr': 21110, 'firday': 21111, 'doooo': 21112, 'geometry': 21113, 'castlebar': 21114, 'galway
': 21115, 'screenshots': 21116, 'fliesand': 21117, 'londons': 21118, 'measels': 21119, 'boardies': 21120, 'maste
rmind': 21121, 'statesboro': 21122, 'coaches': 21123, 'mander': 21124, 'orreply': 21125, 'awesomespock': 21126,
'hillarious': 21127, 'steels': 21128, 'forevs': 21129, 'remedy': 21130, 'squee': 21131, 'migranes': 21132, 'suck
especially': 21133, 'caliber': 21134, 'symphonycms': 21135, 'nyappy': 21136, 'lichfield': 21137, 'crisps': 21138
, 'rosalie': 21139, 'hurghada': 21140, 'donating': 21141, 'cobracam': 21142, 'jaycee': 21143, 'oneletterer': 211
44, 'martabak': 21145, 'fattening': 21146, 'junt': 21147, 'baggageso': 21148, 'chale': 21149, 'retrina': 21150,
'pretenders': 21151, 'twittle': 21152, 'linking': 21153, 'worldima': 21154, 'nymph': 21155, 'fanmail': 21156, 'p
rixim': 21157, 'flasher': 21158, 'ubcs': 21159, 'yeahhavent': 21160, 'gwenyth': 21161, 'scarletts': 21162, 'imme
diatelyoff': 21163, 'thomasi': 21164, 'decisionand': 21165, 'alarmsong': 21166, 'amma': 21167, 'haahaaa': 21168,
'jellybeaniesss': 21169, 'kurt': 21170, 'spin': 21171, 'mayor': 21172, 'brainard': 21173, 'workweeks': 21174, 't
hroughshe': 21175, 'backand': 21176, 'approx': 21177, 'grabs': 21178, 'tonematrix': 21179, 'cheshirecat': 21180,
'musicwhat': 21181, 'amisha': 21182, 'patel': 21183, 'sorce': 21184, 'toobastards': 21185, 'intervention': 21186
, 'thoughlol': 21187, 'goosebumps': 21188, 'graduationi': 21189, 'houseand': 21190, 'otherinbox': 21191, 'wowtha
t': 21192, 'canalway': 21193, 'cavalcade': 21194, 'warwick': 21195, 'stereos': 21196, 'pistols': 21197, 'chasers
': 21198, 'livenation': 21199, 'discontinued': 21200, 'dal��': 21201, 'facebookov�': 21202, 'aplikace': 21
203, 'hovno': 21204, 'ratatat': 21205, 'lluuvv': 21206, 'evenn': 21207, 'moreee': 21208, 'obv': 21209, 'wasupim'
: 21210, 'stracchino': 21211, 'eron': 21212, 'effy': 21213, 'seeeeeeee': 21214, 'hassnt': 21215, 'crazylike': 21
216, 'abuseignmentplease': 21217, 'growl': 21218, 'kiran': 21219, 'landg': 21220, 'disgruntled': 21221, 'investo
rs': 21222, 'loook': 21223, 'kung': 21224, 'awpoor': 21225, 'sippinn': 21226, 'whut': 21227, 'sta': 21228, 'koxp
ers': 21229, 'agesand': 21230, 'antoinette': 21231, 'hairdo': 21232, 'expand': 21233, 'molyneux': 21234, 'miscar
riage': 21235, 'musiq': 21236, 'soulchild': 21237, 'hamilton': 21238, 'ugggghhhh': 21239, 'fem': 21240, 'yays':
21241, 'nowlots': 21242, 'anerexic': 21243, 'medan': 21244, 'reeesee': 21245, 'earnt': 21246, 'gunn': 21247, 'lp
': 21248, 'hereso': 21249, 'voiceover': 21250, 'documentary': 21251, 'druidry': 21252, 'sunbeams': 21253, 'sonia
': 21254, 'bsame': 21255, 'weightless': 21256, 'backgroundmy': 21257, 'heroswichita': 21258, 'kraussey': 21259,
'vivianns': 21260, 'abusecue': 21261, 'musicabuse': 21262, 'ratings': 21263, 'dayem': 21264, 'superexcited': 212
65, 'squirells': 21266, 'immature': 21267, 'simpson': 21268, 'shezza': 21269, 'paula': 21270, 'brokennn': 21271,
'spaz': 21272, 'gqmf': 21273, 'woefully': 21274, 'ontdstartrek': 21275, 'hawaiian': 21276, 'reused': 21277, 'sle
eve': 21278, 'laaazy': 21279, 'sunnny': 21280, 'quitwell': 21281, 'basment': 21282, 'jaxxs': 21283, 'raindropsth
ats': 21284, 'fuji': 21285, 'youstinkatrespondingtotexts': 21286, 'sleeeepy': 21287, 'jewellry': 21288, 'dressss
ss': 21289, 'nodo': 21290, 'lifespan': 21291, 'homegoing': 21292, 'soberana': 21293, 'manim': 21294, 'wordslooks
': 21295, 'giftin': 21296, 'bedpoor': 21297, 'feeeeeed': 21298, 'meeeeee': 21299, 'fillin': 21300, 'spineless':
21301, 'definitley': 21302, 'omegle': 21303, 'happenedi': 21304, 'cockney': 21305, 'queueing': 21306, 'juansimon
': 21307, 'hahadid': 21308, 'tabloid': 21309, 'headlines': 21310, 'investigation': 21311, 'counteract': 21312, '
discouraging': 21313, 'dijon': 21314, 'unavailable': 21315, 'phne': 21316, 'eveyone': 21317, 'dieingplease': 213
18, 'weekpleeeeeassseee': 21319, 'krystal': 21320, 'nighti': 21321, 'overrr': 21322, 'diver': 21323, 'goooooodmo
rning': 21324, 'distel': 21325, 'nicest': 21326, 'lifeball': 21327, 'vienna': 21328, 'illys': 21329, 'angela': 2
1330, 'brothes': 21331, 'cakewish': 21332, 'jarita': 21333, 'proposal': 21334, 'enzian': 21335, 'cinerama': 2133
6, 'sugarland': 21337, 'gknight': 21338, 'seriouslyi': 21339, 'abuseface': 21340, 'waht': 21341, 'abusehugzabuse
xxxxxxxxxx': 21342, 'moomie': 21343, 'horoscopes': 21344, 'offagain': 21345, 'wellure': 21346, 'swingstill': 213
47, 'tiredcoffee': 21348, 'traveled': 21349, 'kartz': 21350, 'avoided': 21351, 'cinder': 21352, 'dantas': 21353,
'porky': 21354, 'beavs': 21355, 'totaly': 21356, 'oakland': 21357, 'eyelids': 21358, 'mishaneedschapstick': 2135
9, 'wwdc': 21360, 'fwendsso': 21361, 'repliesfollow': 21362, 'hmmthat': 21363, 'malware': 21364, 'dept': 21365,
'render': 21366, 'revit': 21367, 'autocad': 21368, 'raving': 21369, 'beautifulness': 21370, 'skinned': 21371, 'l
yke': 21372, 'nitenite': 21373, 'turnaround': 21374, 'repairs': 21375, 'burial': 21376, 'toki': 21377, 'flushed'
: 21378, 'stakc': 21379, 'reopen': 21380, 'windshield': 21381, 'wiper': 21382, 'blades': 21383, 'tonked': 21384,
'overs': 21385, 'lovecraftian': 21386, 'dreamer': 21387, 'edges': 21388, 'kwl': 21389, 'sameway': 21390, 'sickee
': 21391, 'jkin': 21392, 'rochelle': 21393, 'streching': 21394, 'eluded': 21395, 'alrightits': 21396, 'okashley'
: 21397, 'finn': 21398, 'lmaoz': 21399, 'regard': 21400, 'drumset': 21401, 'sunthursbut': 21402, 'downfall': 214
03, 'fridgeand': 21404, 'clotheshouse': 21405, 'monthly': 21406, 'wiffleball': 21407, 'yehey': 21408, 'exciteeed
dd': 21409, 'balme': 21410, 'aaaaaalcohol': 21411, 'bore': 21412, 'mir': 21413, 'echt': 21414, 'angetan': 21415,
'l�sst': 21416, 'gr��en': 21417, 'corlaine': 21418, 'shezz': 21419, 'doucheeee': 21420, 'undrstand': 21421
, 'busaysjust': 21422, 'englishtagalog': 21423, 'waray': 21424, 'guniea': 21425, 'let�s': 21426, 'irlanda': 21
427, 'mesaj': 21428, 'eroare': 21429, 'forbiddenyou': 21430, 'ghicit': 21431, 'dres': 21432, 'strudel': 21433, '
runt': 21434, 'disembarking': 21435, 'tswassen': 21436, 'nri': 21437, 'karan': 21438, 'johar': 21439, 'sears': 2
1440, 'minh': 21441, 'saunaspa': 21442, 'rhodes': 21443, 'euruko': 21444, 'mish': 21445, 'gab': 21446, 'bep': 21
447, 'trackpad': 21448, 'quarters': 21449, 'authorized': 21450, 'refills': 21451, 'dazzle': 21452, 'alllllll': 2
1453, 'playcount': 21454, 'hasta': 21455, 'siempre': 21456, 'micah': 21457, 'streetcar': 21458, 'brandynever': 2
1459, 'baron': 21460, 'shwasty': 21461, 'shloshed': 21462, 'massages': 21463, 'brent': 21464, 'gils': 21465, 'to
get': 21466, 'nerdim': 21467, 'writin': 21468, 'lik': 21469, 'jab': 21470, 'paginating': 21471, 'aspnet': 21472,
'listview': 21473, 'unhook': 21474, 'cronies': 21475, 'ooopps': 21476, 'speakerphone': 21477, 'yahh': 21478, 'kn
owng': 21479, 'sungs': 21480, 'erbdy': 21481, 'sheat': 21482, 'boredtried': 21483, 'nighthave': 21484, 'unfortua
ntley': 21485, 'hanks': 21486, 'flashpoints': 21487, 'chevron': 21488, 'allison': 21489, 'mooned': 21490, 'dangg
gg': 21491, 'jumpy': 21492, 'workingand': 21493, 'yealooks': 21494, 'issorry': 21495, 'touchwas': 21496, 'contri
buting': 21497, 'retirement': 21498, 'employer': 21499, 'ritualistic': 21500, 'calculus': 21501, 'derivative': 2
1502, 'identity': 21503, 'goonies': 21504, 'projected': 21505, 'leatherman': 21506, 'phds': 21507, 'taunting': 2
1508, 'greenim': 21509, 'afraidiowe': 21510, 'rrtheatre': 21511, 'clownin': 21512, 'twittermy': 21513, 'cement':
21514, 'rows': 21515, 'pixels': 21516, 'friidays': 21517, 'macris': 21518, 'lunching': 21519, 'trojan': 21520, '
evo': 21521, 'gudluck': 21522, 'kmf': 21523, 'repeating': 21524, 'ani': 21525, 'ambyr': 21526, 'longgggg': 21527
, 'linoleum': 21528, 'carving': 21529, 'warden': 21530, 'jkwish': 21531, 'evenlyn': 21532, 'tomora': 21533, 'abu
sestarts': 21534, 'cryinabuse': 21535, 'thatand': 21536, 'processing': 21537, 'amusedtime': 21538, 'alan': 21539
, 'partridge': 21540, 'ohyeahhh': 21541, 'laaaaaaaaave': 21542, 'shatterd': 21543, 'sumthing': 21544, 'backevery
ones': 21545, 'lingerie': 21546, 'minnesoooooooota': 21547, 'cliquot': 21548, 'pfff': 21549, 'woeiwoeiwoei': 215
50, 'whitby': 21551, 'ly': 21552, 'tammy': 21553, 'titos': 21554, 'haley': 21555, 'leyton': 21556, 'echo': 21557
, 'abusetake': 21558, 'breathabuse': 21559, 'funnest': 21560, 'moab': 21561, 'stepbystep': 21562, 'elijah': 2156
3, 'relapse': 21564, 'nikon': 21565, 'bulmers': 21566, 'pear': 21567, 'slush': 21568, 'hurryup': 21569, 'omgimpa
tient': 21570, 'ligaments': 21571, 'reporter': 21572, 'kyles': 21573, 'fwiends': 21574, 'rawrrr': 21575, 'jaydio
head': 21576, 'irate': 21577, 'callers': 21578, 'pabuseed': 21579, 'fosters': 21580, 'butttt': 21581, 'feelers':
21582, 'sdps': 21583, 'hollowbabeshere': 21584, 'kiddosgotta': 21585, 'okai': 21586, 'shag': 21587, 'overthetop'
: 21588, 'retweeting': 21589, 'pantech': 21590, 'hubbytobe': 21591, 'daysometimes': 21592, 'easyjust': 21593, 'm
usici': 21594, 'ayehe': 21595, 'fk': 21596, 'winninggggg': 21597, 'abusesigh': 21598, 'recalled': 21599, 'humous
': 21600, 'doritos': 21601, 'nonsense': 21602, 'blamed': 21603, 'gordon': 21604, 'mills': 21605, 'macdonalds': 2
1606, 'alreadyback': 21607, 'lifeestyle': 21608, 'suits': 21609, 'uminaa': 21610, 'himoh': 21611, 'tamera': 2161
2, 'anywaythe': 21613, 'cw': 21614, 'appreciating': 21615, 'beckiiex': 21616, 'fabusein': 21617, 'incredily': 21
618, 'domination': 21619, 'grooveshark': 21620, 'ke': 21621, 'bande': 21622, 'hasde': 21623, 'cowering': 21624,
'calandercalendar': 21625, 'collander': 21626, 'abusestillabuse': 21627, 'gasthe': 21628, 'manford': 21629, 'poh
aku': 21630, 'ngh': 21631, 'aaaaaw': 21632, 'etsyseller': 21633, 'buffie': 21634, 'techyuppie': 21635, 'secure':
21636, 'pensioners': 21637, 'racing': 21638, 'germ�n': 21639, 'rodr�guezs': 21640, 'brynn': 21641, 'everreal
ly': 21642, 'tinkerbell': 21643, 'hmvso': 21644, 'hmvnever': 21645, 'webdu': 21646, 'yeahhhhhhhhhhhhh': 21647, '
angus': 21648, 'cleaners': 21649, 'chirp': 21650, 'outsidewell': 21651, 'familyfriend': 21652, 'intofar': 21653,
'girlall': 21654, 'artcabinet': 21655, 'apptsnot': 21656, 'aaahhhjust': 21657, 'embarrased': 21658, 'standard':
21659, 'pinic': 21660, 'welllll': 21661, 'sunnys': 21662, 'atlas': 21663, 'morocco': 21664, 'straits': 21665, 'g
ibraltar': 21666, 'europa': 21667, 'gib': 21668, 'poser': 21669, 'gambling': 21670, 'yiha': 21671, 'duff': 21672
, 'thundering': 21673, 'waltzer': 21674, 'abuseseducedabuse': 21675, 'kathy': 21676, 'dawsons': 21677, 'assfuck'
: 21678, 'hairdoing': 21679, 'wimpers': 21680, 'holga': 21681, 'meany': 21682, 'popularent': 21683, 'boog': 2168
4, 'minhey': 21685, 'travellers': 21686, 'runaway': 21687, 'jacksonville': 21688, 'gooooonight': 21689, 'stripes
': 21690, 'yeehah': 21691, 'itl': 21692, 'annabelle': 21693, 'whataburger': 21694, 'tally': 21695, 'footy': 2169
6, 'hyperlinks': 21697, 'indentation': 21698, 'distances': 21699, 'dinnerbuffalo': 21700, 'provolone': 21701, 'b
eefsteak': 21702, 'brush': 21703, 'noah': 21704, 'defunct': 21705, 'buffy': 21706, 'boyle': 21707, 'quits': 2170
8, 'hugcuz': 21709, 'correctly': 21710, 'novacaine': 21711, 'mileey': 21712, 'voe': 21713, 'mariahnever': 21714,
'kenyattas': 21715, 'biiig': 21716, 'dtn': 21717, 'naperville': 21718, 'enhanced': 21719, 'exhaaaausted': 21720,
'twtvite': 21721, 'aptw': 21722, 'engagements': 21723, 'hourssss': 21724, 'sooooocalllll': 21725, 'jobros': 2172
6, 'examination': 21727, 'qlad': 21728, 'tooshers': 21729, 'clockkkcome': 21730, 'feliz': 21731, 'delas': 21732,
'scheduler': 21733, 'demisterling': 21734, 'jemi': 21735, 'bruh': 21736, 'erection': 21737, 'tedx': 21738, 'pinc
ode': 21739, 'tostitos': 21740, 'piknik': 21741, 'pdates': 21742, 'muchfinalityto': 21743, 'midwest': 21744, 'sh
elving': 21745, 'piglets': 21746, 'chucks': 21747, 'diagram': 21748, 'mainstream': 21749, 'adoption': 21750, 'th
rote': 21751, 'collabro': 21752, 'wjphlip': 21753, 'alicias': 21754, 'idkkkk': 21755, 'approving': 21756, 'twa':
21757, 'showers': 21758, 'agoit': 21759, 'scarce': 21760, 'oberhausen': 21761, 'ochh': 21762, 'supose': 21763, '
thaught': 21764, 'ruineddeath': 21765, 'meals': 21766, 'smtimes': 21767, 'thrs': 21768, 'solitude': 21769, 'lk':
21770, 'dulay': 21771, 'bel': 21772, 'alabang': 21773, 'placeima': 21774, 'ticon': 21775, 'otalia': 21776, 'abus
etearabuse': 21777, 'riotnow': 21778, 'chlamydiabut': 21779, 'poxsyphilis': 21780, 'oncall': 21781, 'emcs': 2178
2, 'sacrificing': 21783, 'nonmommies': 21784, 'sooooooooooo': 21785, 'bumbed': 21786, 'batcave': 21787, 'upstupi
d': 21788, 'bberry': 21789, 'wors': 21790, 'weekenda': 21791, 'puffffy': 21792, 'leavinggggggg': 21793, 'unclaim
ed': 21794, 'sleepdeprived': 21795, 'administrators': 21796, 'firew': 21797, 'creditcard': 21798, 'yaaaaay': 217
99, 'sworn': 21800, 'abusegigglesabuse': 21801, 'toeat': 21802, 'kahuna': 21803, 'ranger': 21804, 'cathylofran':
21805, 'millions': 21806, 'murder': 21807, 'ahugs': 21808, 'aaarrrgggghhh': 21809, 'decribe': 21810, 'occured':
21811, 'outyou': 21812, 'coulton': 21813, 'prompting': 21814, 'expedited': 21815, 'geeksonaplane': 21816, 'hyper
ventilating': 21817, 'slippery': 21818, 'hmmmm�being': 21819, 'butlers': 21820, 'hispanic': 21821, 'hendrix':
21822, 'cosmos': 21823, 'menfolk': 21824, 'fucken': 21825, 'deffff': 21826, 'moood': 21827, 'withdrew': 21828, '
idp': 21829, 'camps': 21830, 'idprelief': 21831, 'clamped': 21832, 'outhaha': 21833, 'cleanup': 21834, 'peepin':
21835, 'bboys': 21836, 'ssshh': 21837, 'abusehead': 21838, 'deskabuse': 21839, 'tobutt': 21840, 'boduch': 21841,
'childline': 21842, 'rhinestones': 21843, 'cincy': 21844, 'playstation': 21845, 'controllers': 21846, 'grices':
21847, 'kissa': 21848, 'enchiladas': 21849, 'suizas': 21850, 'sxsw': 21851, 'speedo': 21852, 'hoursand': 21853,
'upps': 21854, 'yellowishorangeishbrownish': 21855, 'sender': 21856, 'sade': 21857, 'slightest': 21858, 'abusemo
re': 21859, 'northlands': 21860, 'newscenter': 21861, 'getaways': 21862, 'northland': 21863, 'festive': 21864, '
sunshineeeeeee': 21865, 'paragraph': 21866, 'opting': 21867, 'mmmmmmmm': 21868, 'njalmost': 21869, 'positivity':
21870, 'nomatter': 21871, 'hmz': 21872, 'governmental': 21873, 'workingbooo': 21874, 'rieger': 21875, 'begonia':
21876, 'sleepytime': 21877, 'preachers': 21878, 'educator': 21879, 'yh': 21880, 'eekk': 21881, 'brushing': 21882
, 'ladybug': 21883, 'fucktard': 21884, 'almighty': 21885, 'abusewhistleabuse': 21886, 'trapeze': 21887, 'storese
e': 21888, 'campers': 21889, 'withdrawls': 21890, 'pase': 21891, 'ain': 21892, 'lazying': 21893, 'sensors': 2189
4, 'donabuses': 21895, 'persian': 21896, 'beli': 21897, 'typo': 21898, 'realale': 21899, 'anthem': 21900, 'royal
': 21901, 'compos': 21902, 'cwpm': 21903, 'calcs': 21904, 'hawthorne': 21905, 'zomg': 21906, 'samuel': 21907, 'l
ouie': 21908, 'shutdown': 21909, 'livestream': 21910, 'hubbies': 21911, 'niteout': 21912, 'mediterenean': 21913,
'duet': 21914, 'mondaaaaaay': 21915, 'mariel': 21916, 'swords': 21917, 'pigged': 21918, 'homeroasted': 21919, 't
ecas': 21920, 'bologna': 21921, 'saigon': 21922, 'hanoi': 21923, 'disintegrating': 21924, 'reprobates': 21925, '
luch': 21926, 'lodging': 21927, 'babys': 21928, 'housetaking': 21929, 'studyingwhew': 21930, 'smarmy': 21931, 'c
hurchsunday': 21932, 'conflicts': 21933, 'niffer': 21934, 'doberman': 21935, 'bodys': 21936, 'resisting': 21937,
'whoah': 21938, 'denton': 21939, 'musician': 21940, 'profit': 21941, 'southkorean': 21942, 'cingular': 21943, 'p
arentals': 21944, 'arlando': 21945, 'havne': 21946, 'timenow': 21947, 'lula': 21948, 'vacuums': 21949, 'jenni':
21950, 'lovelyso': 21951, 'mailbox': 21952, 'musicfeeling': 21953, 'mex': 21954, 'robina': 21955, 'nervousness':
21956, 'frequently': 21957, 'millenia': 21958, 'grrrrri': 21959, 'hemp': 21960, 'skinny': 21961, 'deranged': 219
62, 'lonovala': 21963, 'weddingbtno': 21964, 'arrngmnts': 21965, 'wrkg': 21966, 'cockatiels': 21967, 'momo': 219
68, 'twitterize': 21969, 'cynics': 21970, 'everyou': 21971, 'elmo': 21972, 'beastie': 21973, 'abusepew': 21974,
'pewwabuse': 21975, 'phasers': 21976, 'repent': 21977, 'gyms': 21978, 'googs': 21979, 'shred': 21980, 'uttered':
21981, 'ical': 21982, 'arizzard': 21983, 'groupies': 21984, 'stalkers': 21985, 'antidisestablishmentarianism': 2
1986, 'strings': 21987, 'eeeeeeeeeee': 21988, 'herd': 21989, 'somalions': 21990, 'emailsvoicemailsfacebook': 219
91, 'tfa': 21992, 'preciate': 21993, 'hunnie': 21994, 'xdxdxd': 21995, 'fedex': 21996, 'pav': 21997, 'bhaaji': 2
1998, 'finely': 21999, 'leftthe': 22000, 'dive': 22001, 'vis': 22002, 'dynamite': 22003, 'toll': 22004, 'reefs':
22005, 'reflecting': 22006, 'sunlight': 22007, 'ciao': 22008, 'wolftrap': 22009, 'itthe': 22010, 'thisare': 2201
1, 'abusefrownsabuse': 22012, 'cyberstalking': 22013, 'bruvs': 22014, 'timetable': 22015, 'fortunate': 22016, 's
ingleour': 22017, 'basset': 22018, 'hound': 22019, 'nazi': 22020, 'latteeeeeeeeeee': 22021, 'scripts': 22022, 'c
ookers': 22023, 'tangled': 22024, 'dislocation': 22025, 'fracture': 22026, 'resulted': 22027, 'abuseblows': 2202
8, 'neways': 22029, 'kevins': 22030, 'supremists': 22031, 'abhor': 22032, 'appending': 22033, 'verticalchinese':
22034, 'piling': 22035, 'lovatoback': 22036, 'lovatobehind': 22037, 'weeee': 22038, 'exclude': 22039, 'completel
yim': 22040, '����': 22041, 'whr': 22042, 'nyt': 22043, 'clambering': 22044, 'abnormal': 22045, 'nno': 2
2046, 'lulus': 22047, 'slanted': 22048, 'ketboard': 22049, 'positivly': 22050, 'euhm': 22051, 'tablespotting': 2
2052, 'bryant': 22053, 'wallinwood': 22054, 'montagues': 22055, 'capulets': 22056, 'eeeeeeek': 22057, 'extracted
': 22058, 'policy': 22059, 'refusing': 22060, 'woodies': 22061, 'longboard': 22062, 'hove': 22063, 'brenda': 220
64, 'clarify': 22065, 'pratice': 22066, 'eppy': 22067, 'reeheally': 22068, 'geo': 22069, 'zoned': 22070, 'ghhh':
22071, 'caaaaant': 22072, 'sleepits': 22073, 'wahhhh': 22074, 'cenario': 22075, 'mwahs': 22076, 'reefried': 2207
7, 'weirdness': 22078, 'terence': 22079, 'cao': 22080, 'overdose': 22081, 'fainting': 22082, 'imitate': 22083, '
thassa': 22084, 'tgi': 22085, 'reservation': 22086, 'normaland': 22087, 'throats': 22088, 'computed': 22089, 'ji
pped': 22090, 'yestarday': 22091, 'lifeline': 22092, 'yayou': 22093, 'irked': 22094, 'petty': 22095, 'nowgood':
22096, 'funi': 22097, 'gossiping': 22098, 'bia': 22099, 'abusegive': 22100, 'goo': 22101, 'homebirth': 22102, 'm
oot': 22103, 'awwwwwwwwww': 22104, 'jusaww': 22105, 'insight': 22106, 'stunnedits': 22107, 'aweomse': 22108, 'to
oooooo': 22109, 'mommaluv': 22110, 'pateven': 22111, 'jehovahs': 22112, 'alo': 22113, 'uniten': 22114, 'pianist'
: 22115, 'verona': 22116, 'enjoyyitverymuch': 22117, 'phothos': 22118, 'bartender': 22119, 'ourbetter': 22120, '
maamwow': 22121, 'peoplei': 22122, 'goddess': 22123, 'workingbut': 22124, 'hiphiphoray': 22125, 'rhinitis': 2212
6, 'boohooo': 22127, 'unanticipated': 22128, 'quashed': 22129, 'loocie': 22130, 'youuuuu': 22131, 'santino': 221
32, 'thirteen': 22133, 'amthanks': 22134, 'swolen': 22135, 'shitt': 22136, 'innh': 22137, 'intriguing': 22138, '
bennett': 22139, 'innocence': 22140, 'dollsthey': 22141, 'sailor': 22142, 'ians': 22143, 'dokomi': 22144, 'abbie
s': 22145, 'gaaay': 22146, 'pisay': 22147, 'wellz': 22148, 'ianne': 22149, 'terrance': 22150, 'sandwiched': 2215
1, 'screaaaaaaaaaaaaaaaaaaaaaaaaaaaaam': 22152, 'freu': 22153, 'zu': 22154, 'fr�h': 22155, 'skaters': 22156, '
familiarsorry': 22157, 'sanibel': 22158, 'heyheyheyheyehyeyyyyyyyyyyyyyyyy': 22159, 'friad': 22160, 'jeffs': 221
61, 'wharra': 22162, 'yano': 22163, 'whooaaa': 22164, 'overwheolming': 22165, 'itus': 22166, 'jacqueline': 22167
, 'wilson': 22168, 'cbbc': 22169, 'twitterbgt': 22170, 'tinkn': 22171, 'boohooooooooooo': 22172, 'abuelo': 22173
, 'aguadilla': 22174, 'hmmp': 22175, 'rovin': 22176, 'describe': 22177, 'fieldwork': 22178, 'databook': 22179, '
awkwardly': 22180, 'bitmr': 22181, 'fresno': 22182, 'beasted': 22183, 'purrtty': 22184, 'abusewinkabuse': 22185,
'meatballs': 22186, 'awwthanks': 22187, 'yaeh': 22188, 'homeit': 22189, 'suekd': 22190, 'sanctity': 22191, 'tain
ted': 22192, 'atwork': 22193, 'butbutbuttt': 22194, 'exhaustedneed': 22195, 'bedgotta': 22196, 'yuckhappy': 2219
7, 'mufasa': 22198, 'warriors': 22199, 'heeey': 22200, 'hockeywe': 22201, 'onewith': 22202, 'inflamed': 22203, '
whooops': 22204, 'iemoticons': 22205, 'appstore': 22206, 'arrg': 22207, 'picturedarn': 22208, 'misshimalready':
22209, 'yeeeee': 22210, 'murked': 22211, 'bonzo': 22212, 'mortified': 22213, 'newsbites': 22214, 'mancat': 22215
, 'youironing': 22216, 'tooprob': 22217, 'laternt': 22218, 'veronicas': 22219, 'lovies': 22220, 'sammich': 22221
, 'bongie': 22222, 'mat': 22223, 'intersubjectively': 22224, 'chemical': 22225, 'sodahead': 22226, 'blindly': 22
227, 'lill': 22228, 'facepalm': 22229, 'yosemite': 22230, 'trueand': 22231, 'poetic': 22232, 'hoes': 22233, 'fun
not': 22234, 'afterthought': 22235, 'paychecks': 22236, 'crocodile': 22237, 'farolito': 22238, 'facebookdetox':
22239, 'sok': 22240, 'strangle': 22241, 'salesman': 22242, 'shamwow': 22243, 'yeha': 22244, 'damit': 22245, 'com
munityfirstandtrust': 22246, 'etonlinecom': 22247, 'abusesobabuse': 22248, 'arellano': 22249, 'mika': 22250, 'ye
sterdays': 22251, 'covina': 22252, 'chino': 22253, 'laxative': 22254, 'conaway': 22255, 'kenickieso': 22256, 've
hicles': 22257, 'governor': 22258, 'furlough': 22259, 'custody': 22260, 'brutal': 22261, 'artistic': 22262, 'abi
lities': 22263, 'enroll': 22264, 'suckd': 22265, 'pockeded': 22266, 'aaggh': 22267, 'gash': 22268, 'advertisemen
t': 22269, 'buttershots': 22270, 'thankgod': 22271, 'crackberry': 22272, 'coooolest': 22273, 'corpes': 22274, 'f
reesats': 22275, 'wesely': 22276, 'ladyfriend': 22277, 'sport': 22278, 'sosad': 22279, 'apparent': 22280, 'dps':
22281, 'julian': 22282, 'upkeep': 22283, 'manageable': 22284, 'brownred': 22285, 'nailing': 22286, 'webconceptin
g': 22287, 'zoneabuse': 22288, 'awarded': 22289, 'homepage': 22290, 'sometimessomtimes': 22291, 'zak': 22292, 'w
uld': 22293, 'waterguns': 22294, 'nutz': 22295, 'gamemothers': 22296, 'ewl': 22297, 'flock': 22298, 'careerbuild
er': 22299, 'discover': 22300, 'tallblonde': 22301, 'bullwinkle': 22302, 'fractured': 22303, 'fairy': 22304, 'in
haled': 22305, 'interact': 22306, 'sullivan': 22307, 'mollie': 22308, 'bestest': 22309, 'cuidalo': 22310, 'worce
ster': 22311, 'sleepiness': 22312, 'lentil': 22313, 'schoolmate': 22314, 'bally': 22315, 'layed': 22316, 'jobfie
ld': 22317, 'installers': 22318, 'shapeshifter': 22319, 'tiredi': 22320, 'twitterlol': 22321, 'lifelol': 22322,
'motherss': 22323, 'lunchhmph': 22324, 'danced': 22325, 'wellllllllllllll': 22326, 'lohang': 22327, 'librefm': 2
2328, 'audacious': 22329, 'cuteshould': 22330, 'abuseat': 22331, 'mineu': 22332, 'harassing': 22333, 'ringing':
22334, 'asbos': 22335, 'reiki': 22336, 'waaaa': 22337, 'dt': 22338, 'umbrellaless': 22339, 'weep': 22340, 'black
s': 22341, 'marbled': 22342, 'mizmind': 22343, 'annnnnnddd': 22344, 'basicallyheadache': 22345, 'stuvk': 22346,
'stpid': 22347, 'abuseyaaawnabuse': 22348, 'mentaly': 22349, 'hotshot': 22350, 'pupils': 22351, 'youngins': 2235
2, 'concer': 22353, 'chilee': 22354, 'dodgy': 22355, 'neighbourhood': 22356, 'strek': 22357, 'dhq': 22358, 'kale
s': 22359, 'forehead': 22360, 'togetha': 22361, 'pianoand': 22362, 'myweakness': 22363, 'digestives': 22364, 'kr
ista': 22365, 'fiftythousand': 22366, 'lauries': 22367, 'haystack': 22368, 'stokoe': 22369, 'wax': 22370, 'audun
s': 22371, 'driveor': 22372, 'storei': 22373, 'derbyshire': 22374, 'percy': 22375, 'thrower': 22376, 'gardnerinr
esidence': 22377, 'packsonly': 22378, 'liter': 22379, 'outnow': 22380, 'tavares': 22381, 'yir': 22382, 'morrning
g': 22383, 'twitpics': 22384, 'tees': 22385, 'aislinntighee': 22386, 'bhaha': 22387, 'teenage': 22388, 'nightclu
b': 22389, 'horn': 22390, 'nothinbg': 22391, 'yogurtland': 22392, 'peruvian': 22393, 'euh': 22394, 'ldap': 22395
, 'schema': 22396, 'morningwondering': 22397, 'assessment': 22398, 'spirituality': 22399, 'trs': 22400, 'itttt':
22401, 'groupchat': 22402, 'ymous': 22403, 'contrast': 22404, 'bjs': 22405, 'kpopped': 22406, 'outtamyleague': 2
2407, 'pardon': 22408, 'yahooo': 22409, 'summerball': 22410, 'homey': 22411, 'polanco': 22412, 'cypher': 22413,
'twitteraddict': 22414, 'ooooooooold': 22415, 'loloh': 22416, 'untwit': 22417, 'frenchies': 22418, 'precedent':
22419, 'madam': 22420, 'glued': 22421, 'resteraunt': 22422, 'worldraining': 22423, 'dingle': 22424, 'kimba': 224
25, 'diaries': 22426, 'pooof': 22427, 'midsong': 22428, 'fonz': 22429, 'teami': 22430, 'excels': 22431, 'videoph
oto': 22432, 'lags': 22433, 'ticking': 22434, 'sloooooooooowlyyyyyyyyyyyyy': 22435, 'exbaristas': 22436, 'common
alities': 22437, 'btch': 22438, 'jeffree': 22439, 'rawks': 22440, 'funnel': 22441, 'invitingall': 22442, 'herman
': 22443, 'pitchfork': 22444, 'shutup': 22445, 'mong': 22446, 'buggin': 22447, 'midge': 22448, 'punkd': 22449, '
thelovelybones': 22450, 'premire': 22451, 'rakeem': 22452, 'funnyy': 22453, 'interwebz': 22454, 'niiiiiiiights':
22455, 'practiceall': 22456, 'hilary': 22457, 'processes': 22458, 'rwhats': 22459, 'mit': 22460, 'tol': 22461, '
songhello': 22462, 'apologised': 22463, 'contestants': 22464, 'xxoo': 22465, 'amadou': 22466, 'miriam': 22467, '
tue': 22468, 'showwwww': 22469, 'showcase': 22470, 'playable': 22471, 'exclusivity': 22472, 'ayaw': 22473, 'bumu
kas': 22474, 'supplys': 22475, 'greastest': 22476, 'carpool': 22477, 'alltime': 22478, 'skunks': 22479, 'likeing
': 22480, 'eldorado': 22481, 'aliante': 22482, 'abusememories': 22483, 'torino': 22484, 'longhaul': 22485, 'time
a': 22486, 'cloggin': 22487, 'lolwas': 22488, 'napi': 22489, 'cherokee': 22490, 'directing': 22491, 'besi': 2249
2, 'cong': 22493, 'ruling': 22494, 'karnataka': 22495, 'cauvery': 22496, 'textiles': 22497, 'siberia': 22498, 't
rang': 22499, 'n�y': 22500, 'xem': 22501, 'lecturer': 22502, 'gob': 22503, 'yayschoolisout': 22504, 'appraisin
g': 22505, 'compose': 22506, 'washingtonim': 22507, 'hungryi': 22508, 'unto': 22509, 'andywent': 22510, 'soupbut
': 22511, 'summary': 22512, 'pcfopc': 22513, 'indiaand': 22514, 'sorrymy': 22515, 'checkedlosing': 22516, 'honi'
: 22517, 'tonigh': 22518, 'frc': 22519, 'pcola': 22520, 'majorlyhhhmmmnnnim': 22521, 'thinkingi': 22522, 'concea
lerim': 22523, 'twibe': 22524, 'appericiate': 22525, 'supports': 22526, 'mktg': 22527, 'agents': 22528, 'wham':
22529, 'spamvirus': 22530, 'threat': 22531, 'sponsor': 22532, 'decisive': 22533, 'kardashians': 22534, 'haaha':
22535, 'deals': 22536, 'tomoo': 22537, 'ndc': 22538, 'amendment': 22539, 'pimpin': 22540, 'thrd': 22541, 'lions'
: 22542, 'nowif': 22543, 'chauncey': 22544, 'raf': 22545, 'boulmer': 22546, 'themed': 22547, 'brickman': 22548,
'charms': 22549, 'werewookiee': 22550, 'sonetime': 22551, 'laminator': 22552, 'bustin': 22553, 'appeal': 22554,
'annoyedyet': 22555, 'skimmed': 22556, 'enemies': 22557, 'wingman': 22558, 'evernote': 22559, 'fllwng': 22560, '
thm': 22561, 'evernoteeyefi': 22562, 'uscan': 22563, 'nightohh': 22564, 'ug': 22565, 'nobel': 22566, 'moleskineï
¿½': 22567, 'isabelle': 22568, 'gaba': 22569, 'evrytime': 22570, 'mojojojo': 22571, 'dexters': 22572, 'umbrellai
': 22573, 'maaaaannnn': 22574, 'holidayzzzzz': 22575, 'hydro': 22576, 'awethank': 22577, 'errbody': 22578, 'gues
sabuse': 22579, 'thololol': 22580, 'waitress': 22581, 'rinse': 22582, 'conditoner': 22583, 'ditzy': 22584, 'skit
s': 22585, 'omnomnom': 22586, 'backlog': 22587, 'bakugan': 22588, 'suzy': 22589, 'fro': 22590, 'kacie': 22591, '
egrowth': 22592, 'ronnie': 22593, 'geared': 22594, 'jamaica': 22595, 'lve': 22596, 'dense': 22597, 'continuation
': 22598, 'interpreter': 22599, 'sicp': 22600, 'downing': 22601, 'various': 22602, 'brides': 22603, 'onceby': 22
604, 'glassers': 22605, 'calla': 22606, 'zindex': 22607, 'problemagain': 22608, 'conscience': 22609, 'illuminate
d': 22610, 'lighten': 22611, 'kiddyoull': 22612, 'momthat': 22613, 'insufficient': 22614, 'fundage': 22615, 'wat
chmen': 22616, 'twittereveryone': 22617, 'queef': 22618, 'duhhhhhh': 22619, 'brewer': 22620, 'visialvoicemail':
22621, 'ixigocom': 22622, 'fist': 22623, 'biker': 22624, 'guyand': 22625, 'ehhh': 22626, 'pulledroot': 22627, 'd
dub': 22628, 'clam': 22629, 'freed': 22630, 'americas': 22631, 'worthing': 22632, 'oiks': 22633, 'rade': 22634,
'ahahaay': 22635, 'cher': 22636, 'wcandice': 22637, 'gail': 22638, 'geezzz': 22639, 'siargao': 22640, 'nlng': 22
641, 'pla': 22642, 'abusemuahabuse': 22643, 'webdesign': 22644, 'popularity': 22645, 'thodont': 22646, 'chux': 2
2647, 'maudio': 22648, 'earbud': 22649, 'ceased': 22650, 'shures': 22651, 'bprohibiting': 22652, 'heeeeere': 226
53, 'sling': 22654, 'rl': 22655, 'folder': 22656, 'metsies': 22657, 'cramples': 22658, 'fieeerrceee': 22659, 'sh
itshow': 22660, 'thrilling': 22661, 'joyride': 22662, 'roadtrip': 22663, 'pai': 22664, 'repellant': 22665, 'devi
ls': 22666, 'successfully': 22667, 'flue': 22668, 'carolyn': 22669, 'curlupinaballandread': 22670, 'kaufer': 226
71, 'wthem': 22672, 'virtues': 22673, 'outage': 22674, 'slippy': 22675, 'mer': 22676, 'fer': 22677, 'unabashedly
': 22678, 'byw': 22679, 'rivers': 22680, 'revisionwhat': 22681, 'funstill': 22682, 'excitingi': 22683, 'euggh':
22684, 'burnsy': 22685, 'comparison': 22686, 'enlgland': 22687, 'cajun': 22688, 'craigg': 22689, 'moneyits': 226
90, 'arch': 22691, 'mvccs': 22692, 'cad': 22693, 'preservers': 22694, 'deangeloredman': 22695, 'slum': 22696, 'l
andlordsew': 22697, 'sewage': 22698, 'bridesmaids': 22699, 'frioooo': 22700, 'del�cia': 22701, 'ju': 22702, 'n
owthats': 22703, 'daysthey': 22704, 'faking': 22705, 'hahahai': 22706, 'failfriday': 22707, 'assuming': 22708, '
blogrelated': 22709, 'rfided': 22710, 'object': 22711, 'armani': 22712, 'pantone': 22713, 'klum': 22714, 'magout
': 22715, 'fated': 22716, 'youhehe': 22717, 'leopards': 22718, 'bankrupt': 22719, 'greaattt': 22720, 'vidjagame'
: 22721, 'vgtribunecom': 22722, 'coded': 22723, 'epicentre': 22724, 'wheelock': 22725, 'tourists': 22726, 'minim
ize': 22727, 'todayyyy': 22728, 'nerrrvous': 22729, 'hmmwhat': 22730, 'weheyyyy': 22731, 'midi': 22732, 'iccvb':
22733, 'monwed': 22734, 'ami': 22735, 'foreverrr': 22736, 'yeahyour': 22737, 'aquatic': 22738, 'destroys': 22739
, 'thingand': 22740, 'mesa': 22741, 'ake': 22742, 'tre': 22743, 'machineeeee': 22744, 'schol': 22745, 'rainbow':
22746, 'organs': 22747, 'staack': 22748, 'fundraiser': 22749, 'jelz': 22750, 'ignorance': 22751, 'craptastic': 2
2752, 'girrrrl': 22753, 'pancake': 22754, 'mri': 22755, 'neurosurgeon': 22756, 'itwhich': 22757, 'rehearsalgonna
': 22758, 'jihoon': 22759, 'hehe�i': 22760, 'finishin': 22761, 'trace': 22762, 'wov': 22763, 'chevrolet': 2276
4, 'beautful': 22765, 'wondered': 22766, 'rake': 22767, 'ccnet': 22768, 'critics': 22769, 'constitutes': 22770,
'retry': 22771, 'yuu': 22772, 'seemingly': 22773, 'tya�': 22774, 'caf': 22775, 'viocenite': 22776, 'gloucester
': 22777, 'docks': 22778, 'yupstill': 22779, 'trainstubes': 22780, 'seriuosly': 22781, 'helden': 22782, 'thu': 2
2783, 'surface': 22784, 'rathbone': 22785, 'yearslol': 22786, 'ftp': 22787, 'fireftp': 22788, 'siiiick': 22789,
'paintballin': 22790, 'lisette': 22791, 'pickup': 22792, 'dayspeaking': 22793, 'planters': 22794, 'tingling': 22
795, 'festivus': 22796, 'wrestling': 22797, 'dirt': 22798, 'realization': 22799, 'creppy': 22800, 'facebookcom':
22801, 'isint': 22802, 'fjgkfldsdh': 22803, 'hooo': 22804, 'hyhtt': 22805, 'aaaagh': 22806, 'coolin': 22807, 'fr
acked': 22808, 'diskhappiness': 22809, 'exploit': 22810, 'pats': 22811, 'cheesesteak': 22812, 'cheeeks': 22813,
'spasy': 22814, 'lovage': 22815, 'mattew': 22816, 'mcconaughey': 22817, 'smexy': 22818, 'reunited': 22819, 'full
page': 22820, 'ajc': 22821, 'reaaaallly': 22822, 'lambastes': 22823, 'bankers': 22824, 'insurers': 22825, '�gr
eed�': 22826, '�stupidity�': 22827, 'tmwr': 22828, 'numero': 22829, 'uno': 22830, 'slab': 22831, 'hahaaaa'
: 22832, 'presale': 22833, 'admission': 22834, 'clubs': 22835, 'sono': 22836, 'defunctlesi': 22837, 'herehanging
': 22838, 'clipsepisodes': 22839, 'languish': 22840, 'dg': 22841, 'gammme': 22842, 'tweetcannon': 22843, 'babydo
ll': 22844, 'spaghettistrap': 22845, 'moons': 22846, 'vibrating': 22847, 'lolly': 22848, 'decoration': 22849, 's
cameras': 22850, 'minutes�': 22851, 'pleaser': 22852, 'ubook': 22853, 'ib': 22854, 'incapable': 22855, 'church
ill': 22856, 'loooove': 22857, 'nyayhahahah': 22858, 'skit': 22859, 'earful': 22860, 'psychopath': 22861, 'websh
ots': 22862, 'listenhe': 22863, 'himbut': 22864, 'abusesadnessabuse': 22865, 'parrot': 22866, 'reptile': 22867,
'limitation': 22868, 'shakespeare': 22869, 'garrulous': 22870, 'fourthgrade': 22871, 'scribe': 22872, 'meka': 22
873, 'pril': 22874, 'clogged': 22875, 'whatsup': 22876, 'betill': 22877, 'platinum': 22878, 'stayathome': 22879,
'ecaytrade': 22880, 'noshow': 22881, 'announcements': 22882, 'k�lle': 22883, 'montmel�': 22884, 'topshop': 2
2885, 'doting': 22886, 'watchign': 22887, 'windowfar': 22888, 'primarkfeel': 22889, 'fluid': 22890, 'antigravity
': 22891, 'chamber': 22892, 'adoring': 22893, 'zzzzzzzgoodnight': 22894, 'aaaagggessss': 22895, 'wrangler': 2289
6, 'halo': 22897, 'easties': 22898, 'deen': 22899, 'resturants': 22900, 'batshit': 22901, 'orwell': 22902, 'arli
ngton': 22903, 'zeta': 22904, 'spotty': 22905, 'spots': 22906, 'dontthey': 22907, 'abusesending': 22908, 'kinder
garden': 22909, 'girsl': 22910, 'lautner': 22911, 'spainyou': 22912, 'grantedluckily': 22913, 'performanceparty'
: 22914, 'ashington': 22915, 'whitley': 22916, 'backhip': 22917, 'zapatos': 22918, 'trashcan': 22919, 'rashid':
22920, 'hahahahahahahahahahahahaha': 22921, 'tirednot': 22922, 'daywork': 22923, 'acquainted': 22924, 'twitterin
': 22925, 'ouchwaited': 22926, 'waxed': 22927, 'thrifty': 22928, 'aberdeen': 22929, 'usatexas': 22930, 'tunsia':
22931, 'adaptation': 22932, 'interiors': 22933, 'swamp': 22934, 'observatory': 22935, 'connecticut': 22936, 'war
bler': 22937, 'metzger': 22938, 'magee': 22939, 'fightlol': 22940, 'laughthe': 22941, 'roy': 22942, 'williams':
22943, 'dissects': 22944, 'chachi': 22945, 'montepulciano': 22946, 'whoore': 22947, 'cologne': 22948, 'harding':
22949, 'frdhows': 22950, 'lovehunting': 22951, 'yung': 22952, 'appreciabuseate': 22953, 'ahhhlilys': 22954, 'sti
nky': 22955, 'obu': 22956, 'chester': 22957, 'bennington': 22958, 'succeed': 22959, 'similarity': 22960, 'buenoh
ope': 22961, 'disorder': 22962, 'suuuks': 22963, 'gradually': 22964, 'ptfe': 22965, 'flowered': 22966, 'essentia
l': 22967, 'psps': 22968, 'whre': 22969, 'heartache': 22970, 'romans': 22971, 'knockin': 22972, 'tillies': 22973
, 'btween': 22974, 'comedyqueen': 22975, 'icecold': 22976, 'renowned': 22977, 'astop': 22978, 'schuhz': 22979, '
arabyrd': 22980, 'longweekend': 22981, 'judo': 22982, 'retail': 22983, 'chichis': 22984, 'bottling': 22985, 'san
itized': 22986, 'oranges': 22987, 'alki': 22988, 'offstreet': 22989, 'wkds': 22990, 'geodefense': 22991, 'onward
s': 22992, 'exploration': 22993, 'leacing': 22994, 'bfa': 22995, 'silverstone': 22996, 'sandown': 22997, 'memoir
': 22998, 'alriiightt': 22999, 'gnna': 23000, 'macbooks': 23001, 'recharger': 23002, 'pratchett': 23003, 'mornin
�everybody': 23004, 'grueling': 23005, 'gordos': 23006, 'communicating': 23007, 'clickin': 23008, 'daaaaang':
23009, 'venture': 23010, 'benadryllong': 23011, 'daystay': 23012, 'twitterbugsgoodnight': 23013, 'partly': 23014
, 'somerville': 23015, 'orignal': 23016, 'skips': 23017, 'dayabuselakers': 23018, 'suzaku': 23019, 'roxie': 2302
0, 'recieve': 23021, 'agoraphobics': 23022, 'cath': 23023, 'awhilehere': 23024, 'daddddd': 23025, 'vicious': 230
26, 'reluctant': 23027, 'callum': 23028, 'juhs': 23029, 'betterive': 23030, 'winningaches': 23031, 'mystic': 230
32, 'bient�t': 23033, 'lire': 23034, 'quincy': 23035, 'sinhalenfoss': 23036, 'sleepyi': 23037, 'zaboo': 23038,
'babelfish': 23039, 'adriii': 23040, 'lindt': 23041, 'cafes': 23042, 'horatio': 23043, 'ventolin': 23044, 'hyper
trophy': 23045, 'babysittee': 23046, 'whitecaps': 23047, 'throughi': 23048, 'jah': 23049, 'averages': 23050, 'tw
irps': 23051, 'pho': 23052, 'bollywood': 23053, 'weeooow': 23054, 'pfffffffffffffffffffffftttttttt': 23055, 'per
ks': 23056, 'chatroom': 23057, 'aaaaaaaaaamazing': 23058, 'cave': 23059, 'dobro': 23060, 'hairdye': 23061, 'smea
red': 23062, 'todaybut': 23063, 'cursing': 23064, 'carat': 23065, 'warhammer': 23066, 'gamers': 23067, 'bookstil
l': 23068, 'jayy': 23069, 'donny': 23070, 'neighboures': 23071, 'midterms': 23072, 'ndo': 23073, 'israd': 23074,
'rygby': 23075, 'layin': 23076, 'ughhhhwaitin': 23077, 'maroon': 23078, 'omgness': 23079, 'beup': 23080, 'noob':
23081, 'yao': 23082, 'jerseyz': 23083, 'grapevine': 23084, 'maven': 23085, 'dependencies': 23086, 'jolly': 23087
, 'wyck': 23088, 'lazzzy': 23089, 'christoph': 23090, 'offerred': 23091, 'bangin': 23092, 'capable': 23093, 'wor
kwise': 23094, 'challanges': 23095, 'movingcariphone': 23096, 'niceguess': 23097, 'commercialsized': 23098, 'say
am': 23099, 'heylo': 23100, 'johnn': 23101, 'qt': 23102, 'swa': 23103, 'malls': 23104, 'craigie': 23105, 'tagers
': 23106, 'tsx': 23107, 'tls': 23108, 'shakedown': 23109, 'restnot': 23110, 'afterward': 23111, 'crazyyy': 23112
, 'mwan': 23113, 'monthsso': 23114, 'prepped': 23115, 'booty': 23116, 'neball': 23117, 'plc': 23118, 'dooooooooo
wn': 23119, 'virtue': 23120, 'tenho': 23121, 'curso': 23122, 'drc': 23123, 'amhzz': 23124, 'piggls': 23125, 'pic
kles': 23126, 'dma': 23127, 'joyologist': 23128, 'freak': 23129, 'vfc': 23130, 'delaware': 23131, 'ashton': 2313
2, 'photovia': 23133, 'somei': 23134, 'ginormous': 23135, 'artery': 23136, 'hagen': 23137, 'daz': 23138, 'tonigh
tno': 23139, 'pangaea': 23140, 'killah': 23141, 'priest': 23142, 'featuring': 23143, 'ohhhhhh': 23144, 'rachaels
': 23145, 'elmoabuse': 23146, 'awhh': 23147, 'teniece': 23148, 'revive': 23149, 'bunyum': 23150, 'unixodbc': 231
51, 'workits': 23152, 'ecommerce': 23153, 'dock': 23154, 'andrea': 23155, 'untile': 23156, 'aaaaaawwwesome': 231
57, 'reisling': 23158, 'mondayfunday': 23159, 'peopleand': 23160, 'onei': 23161, 'lurveeeeee': 23162, 'wsmokey':
23163, 'gaaaaaaasp': 23164, 'aural': 23165, 'celine': 23166, 'dions': 23167, 'novy': 23168, 'traders': 23169, 'b
uch': 23170, 'workdetails': 23171, 'shooould': 23172, 'yogaing': 23173, 'jumbo': 23174, 'unbelievably': 23175, '
firing': 23176, 'streek': 23177, 'outsider': 23178, 'johnathan': 23179, 'steemer': 23180, 'sederhana': 23181, 'p
adang': 23182, 'incidents': 23183, 'kellz': 23184, 'tomorah': 23185, 'ghey': 23186, 'minniapolis': 23187, 'bnl':
23188, 'reunite': 23189, 'odds': 23190, 'acorn': 23191, 'butbutthe': 23192, 'nurburgring': 23193, 'wrongly': 231
94, 'marquee': 23195, 'newsfire': 23196, 'floral': 23197, 'lovehate': 23198, 'nets': 23199, 'ministers': 23200,
'hmmyour': 23201, 'awwyoure': 23202, 'softyi': 23203, 'weddingyou': 23204, 'arrr': 23205, 'bwahahaha': 23206, 's
pontaneously': 23207, 'spontaneity': 23208, 'schade': 23209, 'tvaddict': 23210, 'sadtheres': 23211, 'commented':
23212, 'shul': 23213, 'conferenceso': 23214, 'omar': 23215, 'pappadeux': 23216, 'roughly': 23217, 'pablos': 2321
8, 'minutee': 23219, 'spank': 23220, 'ava': 23221, 'fuckingtastic': 23222, 'lice': 23223, 'uncontrolable': 23224
, 'hicups': 23225, 'daaaaaaaaay': 23226, 'gfx': 23227, 'kernel': 23228, 'suspend': 23229, 'mem': 23230, 'leaks':
23231, 'halarious': 23232, 'flown': 23233, 'poolon': 23234, 'fullest': 23235, 'novell': 23236, 'moonlight': 2323
7, 'wade': 23238, 'hindustan': 23239, 'dunia': 23240, 'asay': 23241, 'nehi': 23242, 'milegi': 23243, 'whoollllee
ee': 23244, 'iknow': 23245, 'panahra': 23246, 'happeened': 23247, 'ro': 23248, 'hubz': 23249, 'organising': 2325
0, 'rhonda': 23251, 'sue': 23252, 'silicone': 23253, 'duong': 23254, 'backwards': 23255, 'disgraced': 23256, 'pe
rfectionist': 23257, 'luckkkk': 23258, 'houstatlantavegas': 23259, 'heavennn': 23260, 'ouchthat': 23261, 'tescos
': 23262, 'pues': 23263, 'chiquita': 23264, 'esa': 23265, 'heeeeey': 23266, 'rygegrejdk': 23267, 'melissaleah':
23268, 'tighten': 23269, 'bolts': 23270, 'suppoort': 23271, 'mushymushy': 23272, 'autorun': 23273, 'welcomeyou':
23274, 'walaikum': 23275, 'assalam': 23276, 'alhamdulillah': 23277, 'wend': 23278, 'duas': 23279, 'stead': 23280
, 'tolddd': 23281, 'balk': 23282, 'kitteh': 23283, 'sideof': 23284, 'twilightguy': 23285, 'daysgonna': 23286, 'w
ard': 23287, 'sunbeam': 23288, 'caf�': 23289, 'grinder': 23290, 'lotta': 23291, 'precip': 23292, 'ahold': 2329
3, 'liers': 23294, 'loltweet': 23295, 'prehistoric': 23296, 'patricias': 23297, 'jowki': 23298, 'vic': 23299, 'c
hemics': 23300, 'toniiiite': 23301, 'arggh': 23302, 'gdnight': 23303, 'otay': 23304, 'twedding': 23305, 'stiller
': 23306, 'sumthn': 23307, 'rope': 23308, 'witdrawal': 23309, 'demos': 23310, 'cribbout': 23311, 'harrassment':
23312, 'mahn': 23313, 'cheerios': 23314, 'rambly': 23315, 'disconnects': 23316, 'ledge': 23317, 'appropriately':
23318, 'anywayz': 23319, 'upbusy': 23320, 'bbyshower': 23321, 'tryingsorry': 23322, 'depress': 23323, 'motherinl
aw': 23324, 'momabuse': 23325, 'herts': 23326, 'aaaaaaaaaaa': 23327, 'ahve': 23328, 'bedill': 23329, 'talents':
23330, 'arty': 23331, 'discrepencies': 23332, 'picks': 23333, 'blury': 23334, 'roman': 23335, 'lq': 23336, 'kale
idoscope': 23337, 'peewee': 23338, 'gor': 23339, 'badumtish': 23340, 'dpressed': 23341, 'lexis': 23342, 'banner'
: 23343, 'nnnnoooooo': 23344, 'frost': 23345, 'boredomand': 23346, 'detalis': 23347, 'gruesome': 23348, 'gripped
': 23349, 'taekwando': 23350, 'gatorade': 23351, 'yumyum': 23352, 'arise': 23353, 'sleeeeeppyyyyyy': 23354, 'til
aaa': 23355, 'spiderweb': 23356, 'spidersi': 23357, 'rz': 23358, 'matinee': 23359, 'grrfatboy': 23360, 'edc': 23
361, 'curved': 23362, 'grading': 23363, 'fullestand': 23364, 'rih': 23365, 'goodnighthappy': 23366, 'mamis': 233
67, 'stirfry': 23368, 'prime': 23369, 'wattching': 23370, 'channelrubbish': 23371, 'rubbishhhhhh': 23372, 'comin
gexcited': 23373, 'neighboor': 23374, 'meirizka': 23375, 'autoresolve': 23376, 'geektech': 23377, 'veo': 23378,
'ahasta': 23379, 'lunes': 23380, 'stimulate': 23381, 'biscuit': 23382, 'visited': 23383, 'gazing': 23384, 'mabah
o': 23385, 'runbut': 23386, 'runner': 23387, 'sophmore': 23388, 'dakota': 23389, 'spayed': 23390, 'playingi': 23
391, 'sirens': 23392, 'shaked': 23393, 'fists': 23394, 'visitng': 23395, 'boyet': 23396, 'famm': 23397, 'handmak
e': 23398, 'bulb': 23399, 'flicker': 23400, 'trailor': 23401, 'wellso': 23402, 'acee': 23403, 'omgdid': 23404, '
amazingmy': 23405, 'yesterdayand': 23406, 'oster': 23407, 'alltel': 23408, 'ska': 23409, 'mazie': 23410, 'kristi
na': 23411, 'remain': 23412, 'captive': 23413, 'indys': 23414, 'brooks': 23415, 'sombodys': 23416, 'butteryum':
23417, 'yeahhhhh': 23418, 'ughhreally': 23419, 'teets': 23420, 'milkabuse': 23421, 'couper': 23422, 'fraktastic'
: 23423, 'zoidberg': 23424, 'dogged': 23425, 'anais': 23426, 'teignmouth': 23427, 'dawlish': 23428, 'rsvp': 2342
9, 'nl': 23430, 'honeypot': 23431, 'mirandas': 23432, 'converter': 23433, 'viggo': 23434, 'tryblah': 23435, 'mcc
oys': 23436, 'emotionally': 23437, 'ryt': 23438, 'colette': 23439, 'bacontaco': 23440, 'walker': 23441, 'lorry':
23442, 'signaling': 23443, 'uduhn': 23444, 'lun': 23445, 'fetching': 23446, 'vallejo': 23447, 'laud': 23448, 'we
ddin': 23449, 'spikecar': 23450, 'crate': 23451, 'dolce': 23452, 'pocketwit': 23453, 'twikini': 23454, 'yearssss
sss': 23455, 'liquid': 23456, 'guttedthe': 23457, 'sicken': 23458, 'xfiles': 23459, 'sickkkkk': 23460, 'celina':
23461, 'uhpp': 23462, 'clipping': 23463, 'scrapbook': 23464, 'benn': 23465, 'bedim': 23466, 'iis': 23467, 'geord
anos': 23468, 'crust': 23469, 'peperoni': 23470, 'awwwwwww': 23471, 'fibromyalgia': 23472, 'compoundin': 23473,
'abusehug': 23474, 'uabuse': 23475, 'worknt': 23476, 'sloanster': 23477, 'retorting': 23478, 'goitn': 23479, 'sh
owerand': 23480, 'cleanin': 23481, 'tgthr': 23482, 'jonesy': 23483, 'dadinlaw': 23484, 'yself': 23485, 'heroism'
: 23486, 'badges': 23487, 'ishra': 23488, 'ventura': 23489, 'turkish': 23490, 'categories': 23491, 'taffjones':
23492, 'andnevar': 23493, 'kde': 23494, 'highnesscrystalmariedontluvspiteanymore': 23495, 'tiniest': 23496, 'deb
ussy': 23497, 'homeboy': 23498, 'lightly': 23499, 'misted': 23500, 'ttytomorrow': 23501, 'fortune': 23502, 'unre
lated': 23503, 'storywise': 23504, 'abusepout': 23505, 'fi': 23506, 'campjitterbug': 23507, 'learnin': 23508, 'w
uv': 23509, 'coldflu': 23510, 'aired': 23511, 'selfimposed': 23512, 'tedious': 23513, 'inputting': 23514, 'sas':
23515, 'gooseberry': 23516, 'absolves': 23517, 'lori': 23518, 'goverment': 23519, 'downsizinghe': 23520, 'frnd':
23521, 'babi': 23522, 'pangang': 23523, 'eoi': 23524, 'devos': 23525, 'groove': 23526, 'heeelllppppp': 23527, 'h
arleton': 23528, 'osx': 23529, 'supported': 23530, 'lecturesdefinitely': 23531, 'ebm': 23532, 'lollipop': 23533,
'skwl': 23534, 'jabusei': 23535, 'jobless': 23536, 'kristen': 23537, 'hitrecord': 23538, 'loongerrr': 23539, 'da
ngwhen': 23540, 'thorny': 23541, 'ouchno': 23542, 'ghd': 23543, 'bitched': 23544, 'amara': 23545, 'profis': 2354
6, 'gorayeb': 23547, 'mady': 23548, 'intentando': 23549, 'intentarlo': 23550, 'studyyyyyyyyyyyyyyyyyyyyyyyyy': 2
3551, 'abusewish': 23552, 'alter': 23553, 'paiseh': 23554, 'liana': 23555, 'corber': 23556, 'moreover': 23557, '
wiaih': 23558, 'humbling': 23559, 'geje': 23560, 'duper': 23561, 'shirttttt': 23562, 'accordion': 23563, 'thief'
: 23564, 'buffs': 23565, 'wooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
oooooooooooooooooooooooo': 23566, 'toysrus': 23567, 'vat': 23568, 'thankskids': 23569, 'brill': 23570, 'berocca'
: 23571, 'ooommmmggggg': 23572, 'moro': 23573, 'hv': 23574, 'oohh': 23575, 'mikados': 23576, 'repierced': 23577,
'krystle': 23578, 'catfights': 23579, 'bigest': 23580, 'curl': 23581, 'boreddddd': 23582, 'cookbooks': 23583, 'o
uuchh': 23584, 'noticing': 23585, 'twitterlandhouse': 23586, 'obession': 23587, 'charni': 23588, 'liljessx': 235
89, 'tellonly': 23590, 'recoverednot': 23591, 'stubbs': 23592, 'xtra': 23593, 'wolvarine': 23594, 'gilf': 23595,
'facepanda': 23596, 'dung': 23597, 'mice': 23598, 'upsidedown': 23599, 'schmoo': 23600, 'dooooooodddddiiiieeee':
23601, 'baybee': 23602, 'ironically': 23603, 'abuseeveryabuse': 23604, 'elevate': 23605, 'passport': 23606, 'btw
n': 23607, 'lv': 23608, 'roadwarrior': 23609, 'workaholic': 23610, 'lifestyle': 23611, 'mhmhmhdoes': 23612, 'cru
sty': 23613, 'aawww': 23614, 'appeals': 23615, 'chutzpah': 23616, 'blockbustercom': 23617, 'unpopular': 23618, '
aaaargh': 23619, 'lizzi': 23620, 'dati': 23621, 'lian': 23622, 'eina': 23623, 'gelli': 23624, 'francis': 23625,
'descanse': 23626, 'paz': 23627, 'luto': 23628, 'fanny': 23629, 'siri': 23630, 'ministrya': 23631, 'todayso': 23
632, 'unfort': 23633, 'abusedancing': 23634, 'pirouette': 23635, 'brudder': 23636, 'dayuuum': 23637, 'venti': 23
638, 'pumps': 23639, 'muhahahaaaa': 23640, 'adwancrd': 23641, 'nahh': 23642, 'sowwieee': 23643, 'sneakerz': 2364
4, 'aghhh': 23645, 'genious': 23646, 'russia': 23647, 'retaking': 23648, 'movements': 23649, 'billing': 23650, '
thikn': 23651, 'pdx': 23652, 'rightreal': 23653, 'speedracher': 23654, 'walah': 23655, 'atat': 23656, 'dozens':
23657, 'stormtroopers': 23658, 'sprinkle': 23659, 'greatgrandmother': 23660, 'freezes': 23661, 'installation': 2
3662, 'beachu': 23663, 'ewwwww': 23664, 'marra': 23665, 'ecxcited': 23666, 'annabel': 23667, 'theys': 23668, 'ed
ucate': 23669, 'cordial': 23670, 'iloveyoutwoooo': 23671, 'goodbyez': 23672, 'darnitt': 23673, 'carwash': 23674,
'tah': 23675, 'kuwait': 23676, 'nfty': 23677, 'plato': 23678, 'zoey': 23679, 'mending': 23680, 'widescreen': 236
81, 'reserve': 23682, 'nowmy': 23683, 'fleetwood': 23684, 'insanely': 23685, 'honeyyyy': 23686, 'thornberrys': 2
3687, 'repairing': 23688, 'judging': 23689, 'spymaster': 23690, 'twimulations': 23691, 'awayyy': 23692, 'thatss'
: 23693, 'cheeredi': 23694, 'chant': 23695, 'apologylol': 23696, 'mmot': 23697, 'tradescant': 23698, 'anrshine':
23699, 'headso': 23700, 'theorys': 23701, 'offhand': 23702, 'crowdsourcing': 23703, 'graphics': 23704, 'walkeron
er': 23705, 'lowcost': 23706, 'outdoor': 23707, 'accompany': 23708, 'thingits': 23709, 'mojitos': 23710, 'workwo
rkwork': 23711, 'answerer': 23712, 'ahaa': 23713, 'thors': 23714, 'wonderfur': 23715, 'abusekittykissesabuse': 2
3716, 'mooooooooornin': 23717, 'boogah': 23718, 'debbie': 23719, 'waverly': 23720, 'iwish': 23721, 'timefrench':
23722, 'unsalvageable': 23723, 'heahhh': 23724, 'lovliest': 23725, 'chemist': 23726, 'sleeeeeeep': 23727, 'gooni
ght': 23728, 'utton': 23729, 'kahkis': 23730, 'difficulties': 23731, 'encoding': 23732, 'lovebank': 23733, 'thou
ghhe': 23734, 'rubadeau': 23735, 'fixins': 23736, 'denversee': 23737, 'siouxsinner': 23738, 'myhouse': 23739, 'n
ako': 23740, 'umuulan': 23741, 'breakup': 23742, 'tossin': 23743, 'turnin': 23744, 'fcukkki': 23745, 'deetzsee':
23746, 'whooo': 23747, 'hoooo': 23748, 'budden': 23749, 'kaiboshed': 23750, 'mangoes': 23751, 'naglilihi': 23752
, 'carmen': 23753, 'stir': 23754, 'hatred': 23755, 'whar': 23756, 'stapler': 23757, 'seo': 23758, 'noarchive': 2
3759, 'hides': 23760, 'themovie': 23761, 'danielle': 23762, 'devi': 23763, 'celebritytweet': 23764, 'writersbloc
k': 23765, 'toasties': 23766, 'nab': 23767, 'experimenting': 23768, 'puppet': 23769, 'workstation': 23770, 'feas
ts': 23771, 'heartbroken': 23772, 'touque': 23773, 'tutle': 23774, 'offset': 23775, 'gains': 23776, 'overdoing':
23777, 'squashed': 23778, 'cauzinhoooo': 23779, 'afterpartying': 23780, 'beths': 23781, 'yvonne': 23782, 'ffreco
mmend': 23783, 'hale': 23784, 'grieco': 23785, 'uterus': 23786, 'iq': 23787, 'roundnround': 23788, 'abba': 23789
, 'minnie': 23790, 'moneyz': 23791, 'eastmake': 23792, 'arena': 23793, 'folded': 23794, 'grrrrr': 23795, 'gqfhm'
: 23796, 'fack': 23797, 'seriouse': 23798, 'ssug': 23799, 'penance': 23800, 'otherdad': 23801, 'mischief': 23802
, 'whatthefuck': 23803, 'bapang': 23804, 'ditos': 23805, 'dito': 23806, 'oprahs': 23807, 'unfried': 23808, 'boba
': 23809, 'wolverinechilled': 23810, 'popedaveben': 23811, 'fyou': 23812, 'willkommen': 23813, 'hormone': 23814,
'misbehaved': 23815, 'gmas': 23816, 'atonement': 23817, 'thisid': 23818, 'workers': 23819, 'petey': 23820, 'roll
erskate': 23821, 'ummmm': 23822, 'hahahahayeah': 23823, 'kneeling': 23824, 'outjoking': 23825, 'heating': 23826,
'ladder': 23827, 'collapse': 23828, 'backbum': 23829, 'sheli': 23830, 'hahahahhahaha': 23831, 'rems': 23832, 'av
is': 23833, 'nige': 23834, 'goth': 23835, 'areas': 23836, 'antioch': 23837, 'amtrak': 23838, 'courtesy': 23839,
'bisquick': 23840, 'rainingseatbelt': 23841, 'buckledthanks': 23842, 'bates': 23843, 'variety': 23844, 'whopee':
23845, 'preschoolers': 23846, 'headbutt': 23847, 'discriminating': 23848, 'saginaki': 23849, 'chav': 23850, 'win
oname': 23851, 'collections': 23852, 'ilseabuse': 23853, 'rediculous': 23854, 'jammin': 23855, 'strapped': 23856
, 'haahaha': 23857, 'mocha': 23858, 'mindful': 23859, 'mealtimes': 23860, 'wareasy': 23861, 'endfiuuhh': 23862,
'lantos': 23863, 'ifyou': 23864, 'know�': 23865, 'soooughhhh': 23866, 'heri': 23867, 'everybodys': 23868, 'qo'
: 23869, 'munchkins': 23870, 'mwaha': 23871, 'kaust': 23872, 'hoisin': 23873, 'gelato': 23874, 'edmund': 23875,
'muchdeserved': 23876, 'birdies': 23877, 'walktheyre': 23878, 'wills': 23879, 'bats': 23880, 'ppt': 23881, 'rian
': 23882, 'staden': 23883, 'collegue': 23884, 'budapest': 23885, 'streaming': 23886, 'mostley': 23887, 'wath': 2
3888, 'nowagain': 23889, 'grungy': 23890, 'macaroni': 23891, 'pleaseno': 23892, 'hur': 23893, 'filmtv': 23894, '
wmids': 23895, 'manila': 23896, 'sleepppppppp': 23897, 'danceshe': 23898, 'masterchef': 23899, 'sells': 23900, '
cys': 23901, 'gala': 23902, 'hairstype': 23903, 'foo': 23904, 'raimi': 23905, 'stupido': 23906, 'catwalk': 23907
, 'oepn': 23908, 'fabuseed': 23909, 'begging': 23910, 'skoo': 23911, 'thiss': 23912, 'harrassed': 23913, 'burgen
': 23914, 'dido': 23915, 'fillwords': 23916, 'elliptical': 23917, 'splints': 23918, 'deadpool': 23919, 'reynolds
': 23920, 'shortcoming': 23921, 'integrated': 23922, 'subtract': 23923, 'easygoing': 23924, 'melancholyyetcheery
': 23925, 'sogni': 23926, 'doro': 23927, 'forwarding': 23928, 'region': 23929, 'posada': 23930, 'yeaterday': 239
31, 'morninghe': 23932, 'backplease': 23933, 'lousy': 23934, 'profyjust': 23935, 'meaytlol': 23936, 'vase': 2393
7, 'demise': 23938, 'woolworths': 23939, 'reasonably': 23940, 'lawrence': 23941, 'bidden': 23942, 'iat': 23943,
'rivercenter': 23944, 'pokemon': 23945, 'carefree': 23946, 'ht': 23947, 'hopw': 23948, 'penny': 23949, 'utorrent
': 23950, 'destroytwitter': 23951, 'actors': 23952, 'tvfilmtheatre': 23953, 'careers': 23954, 'whaaat': 23955, '
antm': 23956, 'comeha': 23957, 'reactions': 23958, 'stroking': 23959, 'thoughtful': 23960, 'yaya': 23961, 'ala':
23962, 'cunningham': 23963, 'studlife': 23964, 'fost': 23965, 'tiberiu': 23966, 'noi': 23967, 'aflat': 23968, 's
unt': 23969, 'imbecili': 23970, 'peste': 23971, 'vo': 23972, 'performances': 23973, 'policemen': 23974, 'tiles':
23975, 'ybwm': 23976, 'camerabags': 23977, 'lolo': 23978, 'immobilizer': 23979, 'recliner': 23980, 'chuckle': 23
981, 'gumoww': 23982, 'hank': 23983, 'disneybest': 23984, 'timehowl': 23985, 'gba': 23986, 'niiight': 23987, 'tr
ained': 23988, 'dble': 23989, 'abusesuicideabuse': 23990, 'buckfast': 23991, 'cramp': 23992, 'bionomial': 23993,
'curls': 23994, 'drops': 23995, 'thesis': 23996, 'bestfriendwhere': 23997, 'inherent': 23998, 'humility': 23999}

print(train_text.shape,valid_text.shape)

(23273, 32) (4108, 32)

#Reference : https://www.tensorflow.org/api_docs/python/tf/keras/preprocessing/text/Tokenizer

tokenizer2=Tokenizer(lower=True,split=' ',filters='!"#$%&()*+,-./:;<=>?@[\\]^_{|}~\t\n',oov_token='<unw>')
tokenizer2.fit_on_texts(train_sentiment)
max_len_sentiment=1

train_sentiment=tokenizer2.texts_to_sequences(train_sentiment)
valid_sentiment=tokenizer2.texts_to_sequences(valid_sentiment)

train_sentiment=sequence.pad_sequences(train_sentiment,maxlen=max_len_sentiment,padding='post')
valid_sentiment=sequence.pad_sequences(valid_sentiment,maxlen=max_len_sentiment,padding='post')

word_index_sentiment=tokenizer2.word_index
print(word_index_sentiment)

{'<unw>': 1, 'neutral': 2, 'positive': 3, 'negative': 4}

print(train_sentiment.shape,valid_sentiment.shape)

(23273, 1) (4108, 1)

# load the GloVe vectors in a dictionary:


embeddings_index={}
with open('/content/drive//My Drive/Tweet Sentiment Extraction/glove.840B.300d.txt') as f:
for line in tqdm(f):
values=line.split(' ')
word=values[0]
coefs=np.asarray([float(val) for val in values[1:]])
embeddings_index[word]=coefs
print('Found %s word vectors.' % len(embeddings_index))

2196018it [04:45, 7680.30it/s]


Found 2196017 word vectors.

# create an embedding matrix for the words we have in the dataset


embedding_matrix_text=np.zeros((len(word_index_text) + 1, 300))
for word, i in tqdm(word_index_text.items()):
embedding_vector=embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix_text[i]=embedding_vector

100%|██████████| 23999/23999 [00:00<00:00, 387111.68it/s]

embedding_matrix_text.shape

(24000, 300)

# create an embedding matrix for the words we have in the dataset


embedding_matrix_sentiment=np.zeros((len(word_index_sentiment) + 1, 300))
for word, i in tqdm(word_index_sentiment.items()):
embedding_vector=embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix_sentiment[i]=embedding_vector

100%|██████████| 4/4 [00:00<00:00, 25458.60it/s]

embedding_matrix_sentiment.shape
embedding_matrix_sentiment.shape

(5, 300)

Bidirectional-LSTM
text_input=Input(shape=(max_len_text,),name='text_input')
embd_text=Embedding(len(word_index_text)+1, #embedding layer with glove vectors as embeddings
300,
weights=[embedding_matrix_text],
input_length=max_len_text,
trainable=False,mask_zero=True,name='embedding_text')(text_input) #masking the input values with

sentiment_input=Input(shape=(max_len_sentiment,),name='sentiment_input')
embd_sentiment=Embedding(len(word_index_sentiment)+1, #embedding layer with glove vectors as embeddings
300,
weights=[embedding_matrix_sentiment],
input_length=max_len_text,
trainable=False,mask_zero=True,name='embedding_sentiment')(sentiment_input) #masking the input va

con=Concatenate(axis=1)([embd_text,embd_sentiment])

lstm=Bidirectional(LSTM(16,return_sequences=True,dropout=0.4,name='lstm'))(con)

#dense layers with drop outs and batch normalisation


m=Dense(8,activation="relu",kernel_regularizer=regularizers.l2(0.0001))(lstm)
m=Dropout(0.5)(m)
m=Dense(4,activation="relu",kernel_regularizer=regularizers.l2(0.0001))(m)
output=Dense(1,activation='sigmoid',name='output')(m)

model=Model(inputs=[text_input,sentiment_input],outputs=[output])

tf.keras.utils.plot_model(model,'Model.png',show_shapes=True,show_layer_names=True)

model.summary()
Model: "model"
__________________________________________________________________________________________________
Layer (type) Output Shape Param # Connected to
==================================================================================================
text_input (InputLayer) [(None, 32)] 0
__________________________________________________________________________________________________
sentiment_input (InputLayer) [(None, 1)] 0
__________________________________________________________________________________________________
embedding_text (Embedding) (None, 32, 300) 7200000 text_input[0][0]
__________________________________________________________________________________________________
embedding_sentiment (Embedding) (None, 1, 300) 1500 sentiment_input[0][0]
__________________________________________________________________________________________________
concatenate (Concatenate) (None, 33, 300) 0 embedding_text[0][0]
embedding_sentiment[0][0]
__________________________________________________________________________________________________
bidirectional (Bidirectional) (None, 33, 32) 40576 concatenate[0][0]
__________________________________________________________________________________________________
dense (Dense) (None, 33, 8) 264 bidirectional[0][0]
__________________________________________________________________________________________________
dropout (Dropout) (None, 33, 8) 0 dense[0][0]
__________________________________________________________________________________________________
dense_1 (Dense) (None, 33, 4) 36 dropout[0][0]
__________________________________________________________________________________________________
output (Dense) (None, 33, 1) 5 dense_1[0][0]
==================================================================================================
Total params: 7,242,381
Trainable params: 40,881
Non-trainable params: 7,201,500
__________________________________________________________________________________________________

log_dir=os.path.join("logs",datetime.datetime.now().strftime("%Y%m%d-%H%M%S"))
tensorboard=tf.keras.callbacks.TensorBoard(log_dir=log_dir,histogram_freq=1,write_graph=True,write_grads=True)

checkpoint_filepath='/content/drive//My Drive/Tweet Sentiment Extraction/Bi-LSTM.h5'


model_checkpoint_callback=tf.keras.callbacks.ModelCheckpoint(filepath=checkpoint_filepath,monitor='val_loss',save_bes

#https://keras.io/api/metrics/

model.compile(optimizer='adam',loss='binary_crossentropy',metrics=["accuracy"])
callback=[model_checkpoint_callback,tensorboard]

#https://datascience.stackexchange.com/questions/34444/what-is-the-difference-between-fit-and-fit-generator-in-keras
history=model.fit([train_text,train_sentiment],y_train,epochs=20,batch_size=128,validation_data=([valid_text,valid_se

WARNING:tensorflow:`write_grads` will be ignored in TensorFlow 2.0 for the `TensorBoard` Callback.


Epoch 1/20
182/182 [==============================] - 53s 246ms/step - loss: 0.2194 - accuracy: 0.7231 - val_loss: 0.1666 -
val_accuracy: 0.8123

Epoch 00001: val_loss improved from inf to 0.16664, saving model to /content/drive//My Drive/Tweet Sentiment Ext
raction/Bi-GRU.h5
Epoch 2/20
182/182 [==============================] - 44s 241ms/step - loss: 0.1848 - accuracy: 0.7863 - val_loss: 0.1607 -
val_accuracy: 0.8286

Epoch 00002: val_loss improved from 0.16664 to 0.16069, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5
Epoch 3/20
182/182 [==============================] - 44s 241ms/step - loss: 0.1771 - accuracy: 0.8129 - val_loss: 0.1589 -
val_accuracy: 0.8322

Epoch 00003: val_loss improved from 0.16069 to 0.15888, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5
Epoch 4/20
182/182 [==============================] - 43s 238ms/step - loss: 0.1714 - accuracy: 0.8240 - val_loss: 0.1578 -
val_accuracy: 0.8330

Epoch 00004: val_loss improved from 0.15888 to 0.15783, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5
Epoch 5/20
182/182 [==============================] - 45s 244ms/step - loss: 0.1681 - accuracy: 0.8255 - val_loss: 0.1560 -
val_accuracy: 0.8347

Epoch 00005: val_loss improved from 0.15783 to 0.15602, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5
Epoch 6/20
182/182 [==============================] - 45s 245ms/step - loss: 0.1660 - accuracy: 0.8275 - val_loss: 0.1557 -
val_accuracy: 0.8342

Epoch 00006: val_loss improved from 0.15602 to 0.15570, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5
Epoch 7/20
182/182 [==============================] - 44s 241ms/step - loss: 0.1645 - accuracy: 0.8285 - val_loss: 0.1552 -
val_accuracy: 0.8357

Epoch 00007: val_loss improved from 0.15570 to 0.15524, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5
Epoch 8/20
182/182 [==============================] - 43s 239ms/step - loss: 0.1632 - accuracy: 0.8303 - val_loss: 0.1560 -
val_accuracy: 0.8359

Epoch 00008: val_loss did not improve from 0.15524


Epoch 9/20
182/182 [==============================] - 44s 243ms/step - loss: 0.1620 - accuracy: 0.8306 - val_loss: 0.1545 -
val_accuracy: 0.8376

Epoch 00009: val_loss improved from 0.15524 to 0.15449, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5
Epoch 10/20
182/182 [==============================] - 44s 244ms/step - loss: 0.1606 - accuracy: 0.8322 - val_loss: 0.1540 -
val_accuracy: 0.8378

Epoch 00010: val_loss improved from 0.15449 to 0.15398, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5
Epoch 11/20
182/182 [==============================] - 44s 244ms/step - loss: 0.1595 - accuracy: 0.8327 - val_loss: 0.1545 -
val_accuracy: 0.8386

Epoch 00011: val_loss did not improve from 0.15398


Epoch 12/20
182/182 [==============================] - 44s 242ms/step - loss: 0.1583 - accuracy: 0.8338 - val_loss: 0.1549 -
val_accuracy: 0.8383

Epoch 00012: val_loss did not improve from 0.15398


Epoch 13/20
182/182 [==============================] - 44s 240ms/step - loss: 0.1574 - accuracy: 0.8347 - val_loss: 0.1552 -
val_accuracy: 0.8392

Epoch 00013: val_loss did not improve from 0.15398


Epoch 14/20
182/182 [==============================] - 44s 242ms/step - loss: 0.1571 - accuracy: 0.8351 - val_loss: 0.1546 -
val_accuracy: 0.8387

Epoch 00014: val_loss did not improve from 0.15398


Epoch 15/20
182/182 [==============================] - 44s 243ms/step - loss: 0.1560 - accuracy: 0.8357 - val_loss: 0.1553 -
val_accuracy: 0.8392

Epoch 00015: val_loss did not improve from 0.15398


Epoch 16/20
182/182 [==============================] - 43s 237ms/step - loss: 0.1549 - accuracy: 0.8366 - val_loss: 0.1562 -
val_accuracy: 0.8397

Epoch 00016: val_loss did not improve from 0.15398


Epoch 17/20
182/182 [==============================] - 44s 243ms/step - loss: 0.1540 - accuracy: 0.8368 - val_loss: 0.1544 -
val_accuracy: 0.8394

Epoch 00017: val_loss did not improve from 0.15398


Epoch 18/20
182/182 [==============================] - 44s 240ms/step - loss: 0.1537 - accuracy: 0.8378 - val_loss: 0.1544 -
val_accuracy: 0.8397

Epoch 00018: val_loss did not improve from 0.15398


Epoch 19/20
182/182 [==============================] - 44s 239ms/step - loss: 0.1529 - accuracy: 0.8377 - val_loss: 0.1550 -
val_accuracy: 0.8395

Epoch 00019: val_loss did not improve from 0.15398


Epoch 20/20
182/182 [==============================] - 44s 245ms/step - loss: 0.1526 - accuracy: 0.8385 - val_loss: 0.1536 -
val_accuracy: 0.8398

Epoch 00020: val_loss improved from 0.15398 to 0.15361, saving model to /content/drive//My Drive/Tweet Sentiment
Extraction/Bi-GRU.h5

plt.figure(figsize=(7,4))
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.ylabel('loss')
plt.xlabel('epoch')
plt.legend(['train','validation'])
plt.grid()
plt.show()
plt.figure(figsize=(7,4))
plt.plot(history.history['accuracy'])
plt.plot(history.history['val_accuracy'])
plt.ylabel('Accuracy')
plt.xlabel('epoch')
plt.legend(['train','validation'])
plt.grid()
plt.show()

Training Dataset
train_pred=model.predict([train_text,train_sentiment])
#https://www.geeksforgeeks.org/numpy-squeeze-in-python/
train_pred=np.squeeze(train_pred)
train_pred=np.round(train_pred)
train_pred.shape

(23273, 33)

pred=[]
for vector in train_pred:
index=[]
for i,value in enumerate(vector):
if value == 1:
index.append(i)
pred.append(np.array(index))
print(len(pred))

23273

X_train['prediction']=pred
X_train.head(20)
textID text selected_text sentiment prediction

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
8542 97b3fee0c0 work til work til neutral
11, 12, 13,...

ok sending me messages asking to ok sending me messages asking to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,


26493 cadd44e0ed neutral
set my blog l... set my blog l... 11, 12, 13,...

welcoming new followers thanks for [3, 6, 9, 10, 11, 12, 13, 14, 15,
14835 d27e0ab61d thanks for the love positive
the... 16, 17, 18, ...

im such a nerd reading my first of [12, 13, 14, 15, 16, 17, 18, 19,
9140 3f1dc607f2 nerd negative
many books ... 20, 21, 22, 2...

is going to see the hannah montana is going to see the hannah montana [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
22561 fe4e8393d5 neutral
movielolwha... movielolwha... 11, 12, 13,...

[1, 2, 3, 5, 6, 7, 8, 9, 10, 11,


26245 e0a172bc68 i cut my hand open i cut my hand open negative
12, 13, 14, 1...

lavish i told diamond to follow you i told diamond to follow you and why [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
2870 0068b3323c neutral
and why u ... u aitn sh... 11, 12, 13,...

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
19153 62fbde9857 you tell us you tell us neutral
11, 12, 13,...

ss back to the gym project finally [9, 17, 18, 19, 20, 21, 22, 23,
27222 f1142bc75a filthy negative
finished A... 24, 25, 26, 27...

nah i understand you cant cancel i nah i understand you cant cancel i [2, 4, 5, 12, 13, 14, 15, 16, 17,
20311 6abf30463f positive
just wante... just wanted... 18, 19, 20, ...

gawd if only that dream actually gawd if only that dream actually [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
24421 fd775d8f1c neutral
happened last... happened last... 11, 12, 13,...

gotta get ready to leavealec and i are [16, 21, 22, 23, 24, 25, 26, 27,
19246 c128b2482e this should be fun positive
going h... 28, 29, 30, 31]

im still full from the buffet at palms [11, 15, 16, 17, 18, 19, 20, 21,
2905 32f17aee22 my stomach actually hurts negative
my sto... 22, 23, 24, 2...

a shower feels so refreshing after a [3, 4, 12, 13, 14, 15, 16, 17,
25904 3294606008 feels so refreshing positive
long day ... 18, 19, 20, 21,...

all ready for costume making but all ready for costume making but [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
2702 78e0cf049d neutral
theres no one... theres no one... 11, 12, 13,...

o i c i have no excuses i just love [5, 6, 7, 8, 9, 10, 11, 12, 13,


9298 f7619b036e just love positive
bein comfy 14, 15, 16, 17...

in vancity holy shizz i will be home in vancity holy shizz i will be home [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
5727 35b883d82f neutral
soon kids soon kids 11, 12, 13,...

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
12568 01f3f364e2 cool what did you get cool what did you get neutral
11, 12, 13,...

hi i teach some chinese lessons on hi i teach some chinese lessons on [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
2351 d1da906d59 neutral
youtube fe... youtube fee... 11, 12, 13,...

happy mothers day to all the twitter [0, 21, 22, 23, 24, 25, 26, 27,
17407 d0e35a96f4 happy positive
moms sent... 28, 29, 30, 31]

def get_text(x):
pred=[]
text=x[0]
index=x[1]
text=text.split()
l=len(text)
for i in index:
if i < l:
pred.append(text[i])
return pred

pred_text=X_train[['text','prediction']].apply(lambda x: get_text(x),axis=1)
X_train['pred_text']=pred_text
X_train['pred_text']=X_train['pred_text'].apply(lambda x: ' '.join(x))
X_train.head(20)
textID text selected_text sentiment prediction pred_text

[0, 1, 2, 3, 4, 5, 6, 7,
8542 97b3fee0c0 work til work til neutral work til
8, 9, 10, 11, 12, 13,...

ok sending me
ok sending me messages ok sending me messages [0, 1, 2, 3, 4, 5, 6, 7,
26493 cadd44e0ed neutral messages asking to set
asking to set my blog l... asking to set my blog l... 8, 9, 10, 11, 12, 13,...
my blog l...

[3, 6, 9, 10, 11, 12,


welcoming new followers
14835 d27e0ab61d thanks for the love positive 13, 14, 15, 16, 17, 18, thanks love
thanks for the...
...

[12, 13, 14, 15, 16,


im such a nerd reading my
9140 3f1dc607f2 nerd negative 17, 18, 19, 20, 21, 22,
first of many books ...
2...

is going to see the


is going to see the hannah is going to see the hannah [0, 1, 2, 3, 4, 5, 6, 7,
22561 fe4e8393d5 neutral hannah montana
montana movielolwha... montana movielolwha... 8, 9, 10, 11, 12, 13,...
movielolwha...

[1, 2, 3, 5, 6, 7, 8, 9,
26245 e0a172bc68 i cut my hand open i cut my hand open negative cut my hand
10, 11, 12, 13, 14, 1...

lavish i told diamond to i told diamond to follow you [0, 1, 2, 3, 4, 5, 6, 7, lavish i told diamond to
2870 0068b3323c neutral
follow you and why u ... and why u aitn sh... 8, 9, 10, 11, 12, 13,... follow you and why u ...

[0, 1, 2, 3, 4, 5, 6, 7,
19153 62fbde9857 you tell us you tell us neutral you tell us
8, 9, 10, 11, 12, 13,...

[9, 17, 18, 19, 20, 21,


ss back to the gym project
27222 f1142bc75a filthy negative 22, 23, 24, 25, 26, filthy
finally finished A...
27...

[2, 4, 5, 12, 13, 14,


nah i understand you cant nah i understand you cant
20311 6abf30463f positive 15, 16, 17, 18, 19, 20, understand cant cancel
cancel i just wante... cancel i just wanted...
...

gawd if only that dream gawd if only that dream [0, 1, 2, 3, 4, 5, 6, 7, gawd if only that dream
24421 fd775d8f1c neutral
actually happened last... actually happened last... 8, 9, 10, 11, 12, 13,... actually happened last...

[16, 21, 22, 23, 24,


gotta get ready to leavealec
19246 c128b2482e this should be fun positive 25, 26, 27, 28, 29, 30, fun
and i are going h...
31]

[11, 15, 16, 17, 18,


im still full from the buffet at
2905 32f17aee22 my stomach actually hurts negative 19, 20, 21, 22, 23, 24, hurts
palms my sto...
2...

a shower feels so [3, 4, 12, 13, 14, 15,


25904 3294606008 refreshing after a long day feels so refreshing positive 16, 17, 18, 19, 20, so refreshing
... 21,...

all ready for costume


all ready for costume all ready for costume [0, 1, 2, 3, 4, 5, 6, 7,
2702 78e0cf049d neutral making but theres no
making but theres no one... making but theres no one... 8, 9, 10, 11, 12, 13,...
one...

[5, 6, 7, 8, 9, 10, 11,


o i c i have no excuses i no excuses i just love
9298 f7619b036e just love positive 12, 13, 14, 15, 16,
just love bein comfy bein comfy
17...

in vancity holy shizz i will be in vancity holy shizz i will be [0, 1, 2, 3, 4, 5, 6, 7, in vancity holy shizz i will
5727 35b883d82f neutral
home soon kids home soon kids 8, 9, 10, 11, 12, 13,... be home soon kids

[0, 1, 2, 3, 4, 5, 6, 7,
12568 01f3f364e2 cool what did you get cool what did you get neutral cool what did you get
8, 9, 10, 11, 12, 13,...

hi i teach some chinese


hi i teach some chinese hi i teach some chinese [0, 1, 2, 3, 4, 5, 6, 7,
2351 d1da906d59 neutral lessons on youtube
lessons on youtube fe... lessons on youtube fee... 8, 9, 10, 11, 12, 13,...
fee...

happy mothers day to all [0, 21, 22, 23, 24, 25,
17407 d0e35a96f4 happy positive happy
the twitter moms sent... 26, 27, 28, 29, 30, 31]

X_train['jaccard']=X_train.apply(lambda x: jaccard(x.selected_text,x.pred_text),axis=1)
print('Mean training Jaccard score:',np.mean(X_train['jaccard']))
print("="*150)
print('nMean jaccard score for positive sentiment tweets:',np.mean(X_train[X_train['sentiment']=='positive']['jaccard
print("="*150)
print('Mean jaccard score for negative sentiment tweets',np.mean(X_train[X_train['sentiment']=='negative']['jaccard'
print("="*150)
print('Mean jaccard score for neutral sentiment tweets',np.mean(X_train[X_train['sentiment']=='neutral']['jaccard'

Mean training Jaccard score: 0.6663297918238207


================================================================================================================
======================================
nMean jaccard score for positive sentiment tweets: 0.45831815165295114
================================================================================================================
======================================
Mean jaccard score for negative sentiment tweets 0.4339671834559042
================================================================================================================
======================================
Mean jaccard score for neutral sentiment tweets 0.9872496749240344
Validation Dataset
valid_pred=model.predict([valid_text,valid_sentiment])
valid_pred=np.squeeze(valid_pred)
valid_pred=np.round(valid_pred)
valid_pred.shape

(4108, 33)

pred=[]
for vector in valid_pred:
index=[]
for i,value in enumerate(vector):
if value == 1:
index.append(i)
pred.append(np.array(index))
print(len(pred))

4108

X_valid['prediction']=pred
X_valid.head(20)

textID text selected_text sentiment prediction

hes back oh noes have you missed


27149 a3125b3dc1 insane negative [27, 28, 29, 30, 31]
me work has ...

god opened the clouds and said i hate [0, 6, 7, 8, 10, 11, 12, 13, 14,
15026 90944c6528 i hate you josh negative
you josh 15, 16, 17, 1...

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
14192 2d003b7d57 everyone says that everyone says that neutral
11, 12, 13,...

i wonder if i should put a bet on cubs


20828 0d663acecc love positive [19, 27, 28, 29, 30, 31]
winning...

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
5135 3a4ff44f1a i will do that i will do that neutral
11, 12, 13,...

do u ever answer ur fans on here i do u ever answer ur fans on here i [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
3053 0252b13fbe neutral
wish u wou... wish u woul... 11, 12, 13,...

now ive got new frensfrm now ive got new frensfrm [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
15488 72edbb4f6d neutral
germanymexico n fra... germanymexico n fra... 11, 12, 13,...

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
20778 9b7a9dfd99 already finished chatting haha already finished chatting haha neutral
11, 12, 13,...

i gave up following she seems really i gave up following she seems really [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
24362 30cc3c9612 neutral
nice b... nice bu... 11, 12, 13,...

my inner desire is to go to an isle in my inner desire is to go to an isle in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,


17418 fd200545ec neutral
the mid... the mid... 11, 12, 13,...

haha yes theres a lot to be said for haha yes theres a lot to be said for [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
4143 9bb13f0fee neutral
nekkid ... nekkid r... 11, 12, 13,...

cant wait to watch the tonight show cant wait to watch the tonight show [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
12038 d2754597c4 neutral
this eveni... this eveni... 11, 12, 13,...

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
24371 2c8f6efd46 i want to sooooooo bad i want to sooooooo bad neutral
11, 12, 13,...

i realized last night that i have no idea i realized last night that i have no [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
7811 dd2baf580f neutral
wher... idea wher... 11, 12, 13,...

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
16941 c2bfbeac47 ooc well do it ooc well do it neutral
11, 12, 13,...

only got in tips last night n but he only got in tips last night n but he [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
25382 63b67f5e23 neutral
earned ... earned ... 11, 12, 13,...

such a nice day and im gonna be [2, 3, 12, 13, 14, 15, 16, 17,
18500 e05b470def nice day positive
stuck inside a... 18, 19, 20, 21,...

silly boyfriend forgets his phone


7341 01faa5ac29 forgets negative [27, 28, 29, 30, 31]
charger on h...

uhh i wish someone would include me [2, 13, 18, 19, 20, 21, 22, 23,
15797 a6c5ca1cc5 great positive
in their f... 24, 25, 26, 27...

[0, 4, 5, 6, 7, 8, 9, 10, 11, 12,


9056 9004bfe410 happy meal bob toy happy meal positive
13, 14, 15, ...

pred_text=X_valid[['text','prediction']].apply(lambda x:get_text(x),axis=1)
X_valid['pred_text']=pred_text
X_valid['pred_text']=X_valid['pred_text'].apply(lambda x: ' '.join(x))
X_valid.head(20)
textID text selected_text sentiment prediction pred_text

hes back oh noes have you


27149 a3125b3dc1 insane negative [27, 28, 29, 30, 31]
missed me work has ...

god opened the clouds and [0, 6, 7, 8, 10, 11, 12,


15026 90944c6528 i hate you josh negative god i hate you
said i hate you josh 13, 14, 15, 16, 17, 1...

[0, 1, 2, 3, 4, 5, 6, 7,
14192 2d003b7d57 everyone says that everyone says that neutral everyone says that
8, 9, 10, 11, 12, 13,...

i wonder if i should put a bet [19, 27, 28, 29, 30,


20828 0d663acecc love positive love
on cubs winning... 31]

[0, 1, 2, 3, 4, 5, 6, 7,
5135 3a4ff44f1a i will do that i will do that neutral i will do that
8, 9, 10, 11, 12, 13,...

do u ever answer ur fans on do u ever answer ur fans [0, 1, 2, 3, 4, 5, 6, 7, do u ever answer ur fans
3053 0252b13fbe neutral
here i wish u wou... on here i wish u woul... 8, 9, 10, 11, 12, 13,... on here i wish u woul...

now ive got new frensfrm now ive got new frensfrm [0, 1, 2, 3, 4, 5, 6, 7, now ive got new frensfrm
15488 72edbb4f6d neutral
germanymexico n fra... germanymexico n fra... 8, 9, 10, 11, 12, 13,... germanymexico n franc...

already finished chatting already finished chatting [0, 1, 2, 3, 4, 5, 6, 7, already finished chatting
20778 9b7a9dfd99 neutral
haha haha 8, 9, 10, 11, 12, 13,... haha

i gave up following she i gave up following she [0, 1, 2, 3, 4, 5, 6, 7, i gave up following she
24362 30cc3c9612 neutral
seems really nice b... seems really nice bu... 8, 9, 10, 11, 12, 13,... seems really nice but ...

my inner desire is to go to my inner desire is to go to [0, 1, 2, 3, 4, 5, 6, 7, my inner desire is to go


17418 fd200545ec neutral
an isle in the mid... an isle in the mid... 8, 9, 10, 11, 12, 13,... to an isle in the mid...

haha yes theres a lot to be haha yes theres a lot to be [0, 1, 2, 3, 4, 5, 6, 7, haha yes theres a lot to
4143 9bb13f0fee neutral
said for nekkid ... said for nekkid r... 8, 9, 10, 11, 12, 13,... be said for nekkid re...

cant wait to watch the cant wait to watch the [0, 1, 2, 3, 4, 5, 6, 7, cant wait to watch the
12038 d2754597c4 neutral
tonight show this eveni... tonight show this eveni... 8, 9, 10, 11, 12, 13,... tonight show this eveni...

[0, 1, 2, 3, 4, 5, 6, 7,
24371 2c8f6efd46 i want to sooooooo bad i want to sooooooo bad neutral i want to sooooooo bad
8, 9, 10, 11, 12, 13,...

i realized last night that i i realized last night that i [0, 1, 2, 3, 4, 5, 6, 7, i realized last night that i
7811 dd2baf580f neutral
have no idea wher... have no idea wher... 8, 9, 10, 11, 12, 13,... have no idea wher...

[0, 1, 2, 3, 4, 5, 6, 7,
16941 c2bfbeac47 ooc well do it ooc well do it neutral ooc well do it
8, 9, 10, 11, 12, 13,...

only got in tips last night n only got in tips last night n [0, 1, 2, 3, 4, 5, 6, 7, only got in tips last night
25382 63b67f5e23 neutral
but he earned ... but he earned ... 8, 9, 10, 11, 12, 13,... n but he earned bu...

[2, 3, 12, 13, 14, 15,


such a nice day and im
18500 e05b470def nice day positive 16, 17, 18, 19, 20, nice day
gonna be stuck inside a...
21,...

silly boyfriend forgets his


7341 01faa5ac29 forgets negative [27, 28, 29, 30, 31]
phone charger on h...

[2, 13, 18, 19, 20, 21,


uhh i wish someone would
15797 a6c5ca1cc5 great positive 22, 23, 24, 25, 26, wish great
include me in their f...
27...

[0, 4, 5, 6, 7, 8, 9, 10,
9056 9004bfe410 happy meal bob toy happy meal positive happy
11, 12, 13, 14, 15, ...

X_valid['jaccard']=X_valid.apply(lambda x: jaccard(x.selected_text,x.pred_text),axis=1)
print('Mean training Jaccard score:',np.mean(X_valid['jaccard']))
print("="*150)
print('Mean jaccard score for positive sentiment tweets:',np.mean(X_valid[X_valid['sentiment']=='positive']['jaccard'
print("="*150)
print('Mean jaccard score for negative sentiment tweets',np.mean(X_valid[X_valid['sentiment']=='negative']['jaccard'
print("="*150)
print('Mean jaccard score for neutral sentiment tweets',np.mean(X_valid[X_valid['sentiment']=='neutral']['jaccard'

Mean training Jaccard score: 0.6389215473432809


================================================================================================================
======================================
Mean jaccard score for positive sentiment tweets: 0.4263000262826317
================================================================================================================
======================================
Mean jaccard score for negative sentiment tweets 0.37599119930438635
================================================================================================================
======================================
Mean jaccard score for neutral sentiment tweets 0.9874526469898516

Submission
model=load_model('/content/drive//My Drive/Tweet Sentiment Extraction/Bi-GRU.h5')

test_text=test['text'].values
test_sentiment=test['sentiment'].values
test_text=tokenizer1.texts_to_sequences(test_text)
test_text=sequence.pad_sequences(test_text,maxlen=max_len_text,padding='post')

test_sentiment=tokenizer2.texts_to_sequences(test_sentiment)
test_sentiment=sequence.pad_sequences(test_sentiment,maxlen=max_len_sentiment,padding='post')

test_pred=model.predict([test_text,test_sentiment])
test_pred=np.squeeze(test_pred)
test_pred=np.round(test_pred)
test_pred.shape

(3534, 33)

pred=[]
for vector in test_pred:
index=[]
for i,value in enumerate(vector):
if value == 1:
index.append(i)
pred.append(np.array(index))
print(len(pred))

3534

def get_text(x):
pred=[]
text=x[0]
index=x[1]
text=text.split()
l=len(text)
for i in index:
if i < l:
pred.append(text[i])
return pred

test['prediction']=pred
pred_text=test[['text','prediction']].apply(lambda x:get_text(x),axis=1)
test['selected_text']=pred_text
test['selected_text']=test['selected_text'].apply(lambda x: ' '.join(x))

test.drop(['text','sentiment','prediction'],axis=1,inplace=True)

test.tail()

textID selected_text

3529 e5f0e6ef4b very tired

3530 416863ce47 thanks for the

3531 6332da480c sinking into depression

3532 df1baec676 i love your videos

3533 469e15c5a8 cute

test.to_csv("/content/drive//My Drive/Tweet Sentiment Extraction/Bi-GRU_submission.csv",index=False)

You might also like