Key Word(s): NPL
What is NLP ?¶
- NLP draws from many disciplines, including computer science and computational linguistics.
- NLP is a branch of artificial intelligence that allows computers to interpret, analyze and manipulate human language.
- NLP is about developing applications and services that can understand human languages.
A little bit of the NLP history¶
When was the first the first time that humans asked themselves: "Can machines understand the human language?", or "Can machines think?"
- 1930: French-Armenian Georges Artsrouni and a Russian Petr Troyanskii - Developing ways to create automatic translators.
- WWII: First attempt of using NLP (Germans) to transfer secret messages between them.
- 1946: The machine "Colossus" was created by Britain for decrypting the secret code generated by Tunny (code name given to Enigma, by the British). Alan Turing was part of this team.
- 1950: Alan Turing publishes Computing Machinery and Intelligence introducing the "Turing test", also known as the "imitation game"
- 1957: Noam Chomsky introduced the syntactic structures.
- Later: Charles Hockett found out several drawbacks to Chomsky’s approach.
- 1960's: Terry Winograd, at the MIT, developed SHRDLU, the first NLP computer program that was able to do different tasks such as remembering names, etc.
- 1969: Roger Schank introduced the concept of tokens that provide a better grasp of the meaning of a sentence
- 80's: The field of Machine Learning appears, and there is when algorithms start to be created for the computers to have a better understanding of the human language.
NLP Applications¶
Do we use any technology that uses NLP algorithms? If so, what are these technologies? How often do we use them?
- Part-of-speech tagging
- Named Entity Recognition (NER)
- Question answering
- Speech recognition
- Text-to-speech and speech-to-text
- Topic modeling
- Sentiment classification
- Language modeling
- Translation
- Information retrieval: Web searching algorithms that use keyword matching. Any examples? Maybe Google?
- Target Ads: Recommendations based on key words from social media. Have you search for shoes, laptops, flowers? Later you'll see some adds based on all those searchs.
- Translators: Google Translate, Bing Translator, Babylon Translator.
- Speech Recognition: Alexa, Siri, Hey Google, live captions.
- Text Summarization: Algorithms that allow getting a summary out of a text.
- Sentiment Analysis: Analysis done to reviews or posts from apps like Twitter, Yelp, Airbnb, Google reviews, etc, to understand human's feelings and emotions.
NLP methods, techniques and key concepts:¶
- Tokenization
- Stopwords
- Stemming/Lemmatization
- Preprocessing steps
- Bag of words model
Which libraries can we use?¶
Due to the tremendous developing that python has had in the last years and the interest that has grown exponentially for the NLP topics, methods, techniques and models, there are many libraries that we can use on Python when working with text data. We'll list some of the most important and popular libraries: NLTK, spaCy, Core NLP, Pattern, Gensim, Polyglot, Text Blob, AllenNLP, Hugging Face Transformers, Flair.
- NLTK https://www.nltk.org/ Free and open source. It provides easy-to-use interfaces to over 50 corpora and lexical resources such as WordNet, along with a suite of text processing libraries for classification, tokenization, stemming, tagging, parsing, and semantic reasoning, wrappers for industrial-strength NLP libraries, and an active discussion forum. NLTK has been called "a wonderful tool for teaching, and working in, computational linguistics using Python," and "an amazing library to play with natural language."
spaCy https://spacy.io/
spaCy is a library for advanced Natural Language Processing in Python and Cython. It comes with pre-trained pipelines and currently supports tokenization and training for 60+ languages. It features state-of-the-art speed and neural network models for tagging, parsing, named entity recognition, text classification and more, multi-task learning with pre-trained transformers.
CoreNLP https://stanfordnlp.github.io/CoreNLP/
CoreNLP is your one stop shop for natural language processing in Java! CoreNLP enables users to derive linguistic annotations for text, including token and sentence boundaries, parts of speech, named entities, numeric and time values, dependency and constituency parses, coreference, sentiment, quote attributions, and relations. CoreNLP currently supports 8 languages: Arabic, Chinese, English, French, German, Hungarian, Italian, and Spanish.
Polyglot https://polyglot.readthedocs.io/en/latest/
Polyglot is a natural language pipeline that supports massive multilingual applications such as tokenization, language detection, part of speech tagging and sentiment analysis.
Gensim https://radimrehurek.com/gensim/#
Gensim is a free open-source Python library for representing documents as semantic vectors, as efficiently (computer-wise) and painlessly (human-wise) as possible. It is designed to process raw, unstructured digital texts ("plain text") using unsupervised machine learning algorithms.
Getting the data we're going to use ready.¶
- NLTK's twitter corpus contains a sample of 20k Tweets retrieved from the Twitter Streaming API.
# Libraries to help with reading and manipulating data
import numpy as np
import pandas as pd
# libraries for visualizations
import seaborn as sns
import matplotlib.pyplot as plt
# Removes the limit for the number of displayed columns
pd.set_option("display.max_columns", None)
# Sets the limit for the number of displayed rows
pd.set_option("display.max_rows", 200)
import re
import string
from sklearn import metrics
from sklearn.model_selection import train_test_split
from sklearn.metrics import confusion_matrix
from sklearn.naive_bayes import MultinomialNB
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.feature_extraction.text import TfidfVectorizer
# Library to suppress warnings or deprecation notes
import warnings
warnings.filterwarnings("ignore")
# You'll need to install NLTK if you don't have it already
!pip install nltk
Requirement already satisfied: nltk in /home/chris/.local/miniconda3/envs/cs109a/lib/python3.9/site-packages (3.6.5) Requirement already satisfied: joblib in /home/chris/.local/miniconda3/envs/cs109a/lib/python3.9/site-packages (from nltk) (1.0.1) Requirement already satisfied: tqdm in /home/chris/.local/miniconda3/envs/cs109a/lib/python3.9/site-packages (from nltk) (4.62.3) Requirement already satisfied: click in /home/chris/.local/miniconda3/envs/cs109a/lib/python3.9/site-packages (from nltk) (8.0.1) Requirement already satisfied: regex>=2021.8.3 in /home/chris/.local/miniconda3/envs/cs109a/lib/python3.9/site-packages (from nltk) (2021.11.10)
# Let's use the NLTK library
import nltk
from nltk.corpus import twitter_samples
# Download nltk data
nltk.download("twitter_samples")
[nltk_data] Downloading package twitter_samples to [nltk_data] /home/chris/nltk_data... [nltk_data] Package twitter_samples is already up-to-date!
True
- Where are the files that we're downloading?
By running nltk.download('twitter_samples')
, we are downloading the twitter samples in json
files.
We can get their specific location and we'll find these files in our computers anytime.**
twitter_samples
<TwitterCorpusReader in '/home/chris/nltk_data/corpora/twitter_samples'>
twitter_samples
<TwitterCorpusReader in '/home/chris/nltk_data/corpora/twitter_samples'>
- How many JSON files do exist in the corpus twitter_samples and which ones are they?
Use the twitter_samples.fileids()
method:
twitter_samples.fileids()
['negative_tweets.json', 'positive_tweets.json', 'tweets.20150430-223406.json']
- Checking that we're getting positive and negative tweets from
twitter_samples
# Checking the sixth element:
print("Positive : ", twitter_samples.strings("positive_tweets.json")[5], "\n")
print("Negative : ", twitter_samples.strings("negative_tweets.json")[5])
Positive : @BhaktisBanter @PallaviRuhail This one is irresistible :) #FlipkartFashionFriday http://t.co/EbZ0L2VENM Negative : oh god, my babies' faces :( https://t.co/9fcwGvaki0
- We can divide apply the string to both files with the objective of converting them into a lists
positive_tw = twitter_samples.strings("positive_tweets.json")
negative_tw = twitter_samples.strings("negative_tweets.json")
- Double checking the data type for positive_tw and negative_tw
print(type(positive_tw))
print(type(negative_tw))
<class 'list'> <class 'list'>
- Checking tweets in the position #6 from both lists
positive_tw[5]
'@BhaktisBanter @PallaviRuhail This one is irresistible :)\n#FlipkartFashionFriday http://t.co/EbZ0L2VENM'
negative_tw[5]
"oh god, my babies' faces :( https://t.co/9fcwGvaki0"
- Since we've checked that we have now two lists, we can get the amount of positive and negative tweets that we have available for our analysis
print("Positive tweets: ", len(positive_tw))
print("Negative tweets: ", len(negative_tw))
Positive tweets: 5000 Negative tweets: 5000
Adding the tweets to new DataFrames using Pandas¶
Creating one dataframe for positive tweets and one for negative tweets.
positive_tweets = pd.DataFrame(positive_tw, columns=["tweets"])
positive_tweets
tweets | |
---|---|
0 | #FollowFriday @France_Inte @PKuchly57 @Milipol... |
1 | @Lamb2ja Hey James! How odd :/ Please call our... |
2 | @DespiteOfficial we had a listen last night :)... |
3 | @97sides CONGRATS :) |
4 | yeaaaah yippppy!!! my accnt verified rqst has... |
... | ... |
4995 | @chriswiggin3 Chris, that's great to hear :) D... |
4996 | @RachelLiskeard Thanks for the shout-out :) It... |
4997 | @side556 Hey! :) Long time no talk... |
4998 | @staybubbly69 as Matt would say. WELCOME TO AD... |
4999 | @DanielOConnel18 you could say he will have eg... |
5000 rows × 1 columns
negative_tweets = pd.DataFrame(negative_tw, columns=["tweets"])
negative_tweets
tweets | |
---|---|
0 | hopeless for tmr :( |
1 | Everything in the kids section of IKEA is so c... |
2 | @Hegelbon That heart sliding into the waste ba... |
3 | “@ketchBurning: I hate Japanese call him "bani... |
4 | Dang starting next week I have "work" :( |
... | ... |
4995 | I wanna change my avi but uSanele :( |
4996 | MY PUPPY BROKE HER FOOT :( |
4997 | where's all the jaebum baby pictures :(( |
4998 | But but Mr Ahmad Maslan cooks too :( https://t... |
4999 | @eawoman As a Hull supporter I am expecting a ... |
5000 rows × 1 columns
- We will merge the positive and negative tweets into one dataset to handle the data in a better and simpler way.
- We'll add tags for each kind of tweet. Positive tweets:
pos
and negative tweets:neg
.
Steps:
- Create a new column to identify both, positive and negative tweets.
- Call this new column
sentiment
. - Do this for both DataFrames.
positive_tweets["sentiment"] = 1
positive_tweets["sent_descr"] = "positive"
negative_tweets["sentiment"] = 0
negative_tweets["sent_descr"] = "negative"
positive_tweets.head()
tweets | sentiment | sent_descr | |
---|---|---|---|
0 | #FollowFriday @France_Inte @PKuchly57 @Milipol... | 1 | positive |
1 | @Lamb2ja Hey James! How odd :/ Please call our... | 1 | positive |
2 | @DespiteOfficial we had a listen last night :)... | 1 | positive |
3 | @97sides CONGRATS :) | 1 | positive |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | positive |
- How do the positive tweets look like?
positive_tweets.head()
tweets | sentiment | sent_descr | |
---|---|---|---|
0 | #FollowFriday @France_Inte @PKuchly57 @Milipol... | 1 | positive |
1 | @Lamb2ja Hey James! How odd :/ Please call our... | 1 | positive |
2 | @DespiteOfficial we had a listen last night :)... | 1 | positive |
3 | @97sides CONGRATS :) | 1 | positive |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | positive |
- How do the negative tweets look like?
negative_tweets.head()
tweets | sentiment | sent_descr | |
---|---|---|---|
0 | hopeless for tmr :( | 0 | negative |
1 | Everything in the kids section of IKEA is so c... | 0 | negative |
2 | @Hegelbon That heart sliding into the waste ba... | 0 | negative |
3 | “@ketchBurning: I hate Japanese call him "bani... | 0 | negative |
4 | Dang starting next week I have "work" :( | 0 | negative |
- Merging the DataFrames to have both, positive and negative tweets in one DataFrame.
Steps:
- Create a copy from the positive tweets to a new DataFrame that it's going to be called
tweets_df
- Add the negative tweets at the end of
tweets_df
- Check that all the 10 thousand tweets are mixed together, positive and negative.
# Creating the copy of the Positive tweets and adding it to a new DataFrame
tweets_df = positive_tweets.copy()
tweets_df
tweets | sentiment | sent_descr | |
---|---|---|---|
0 | #FollowFriday @France_Inte @PKuchly57 @Milipol... | 1 | positive |
1 | @Lamb2ja Hey James! How odd :/ Please call our... | 1 | positive |
2 | @DespiteOfficial we had a listen last night :)... | 1 | positive |
3 | @97sides CONGRATS :) | 1 | positive |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | positive |
... | ... | ... | ... |
4995 | @chriswiggin3 Chris, that's great to hear :) D... | 1 | positive |
4996 | @RachelLiskeard Thanks for the shout-out :) It... | 1 | positive |
4997 | @side556 Hey! :) Long time no talk... | 1 | positive |
4998 | @staybubbly69 as Matt would say. WELCOME TO AD... | 1 | positive |
4999 | @DanielOConnel18 you could say he will have eg... | 1 | positive |
5000 rows × 3 columns
# Adding the negative tweets to our new DataFrame "tweets".
tweets_df = tweets_df.append(negative_tweets, ignore_index=True)
tweets_df
tweets | sentiment | sent_descr | |
---|---|---|---|
0 | #FollowFriday @France_Inte @PKuchly57 @Milipol... | 1 | positive |
1 | @Lamb2ja Hey James! How odd :/ Please call our... | 1 | positive |
2 | @DespiteOfficial we had a listen last night :)... | 1 | positive |
3 | @97sides CONGRATS :) | 1 | positive |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | positive |
... | ... | ... | ... |
9995 | I wanna change my avi but uSanele :( | 0 | negative |
9996 | MY PUPPY BROKE HER FOOT :( | 0 | negative |
9997 | where's all the jaebum baby pictures :(( | 0 | negative |
9998 | But but Mr Ahmad Maslan cooks too :( https://t... | 0 | negative |
9999 | @eawoman As a Hull supporter I am expecting a ... | 0 | negative |
10000 rows × 3 columns
# Resetting the index
tweets_df.reset_index(drop=True, inplace=True)
tweets_df
tweets | sentiment | sent_descr | |
---|---|---|---|
0 | #FollowFriday @France_Inte @PKuchly57 @Milipol... | 1 | positive |
1 | @Lamb2ja Hey James! How odd :/ Please call our... | 1 | positive |
2 | @DespiteOfficial we had a listen last night :)... | 1 | positive |
3 | @97sides CONGRATS :) | 1 | positive |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | positive |
... | ... | ... | ... |
9995 | I wanna change my avi but uSanele :( | 0 | negative |
9996 | MY PUPPY BROKE HER FOOT :( | 0 | negative |
9997 | where's all the jaebum baby pictures :(( | 0 | negative |
9998 | But but Mr Ahmad Maslan cooks too :( https://t... | 0 | negative |
9999 | @eawoman As a Hull supporter I am expecting a ... | 0 | negative |
10000 rows × 3 columns
# Let's visualize and verify that our data is consistent.
plt.figure(figsize=(7, 3.5))
sns.set_theme(style="white", palette="nipy_spectral")
sns.countplot(data=tweets_df, x="sent_descr", hue="sent_descr")
<AxesSubplot:xlabel='sent_descr', ylabel='count'>
tweets_df = tweets_df.drop(["sent_descr"], axis=1)
Preprocessing¶
Text processing is an essential part of performing data analytics or modeling on string data. Unlike numerical and even categorical variables, text data can't be easily structured in a table format and has its own very unique and rather complex set of rules that it follows. Engaging in text processing allows us to move onto more difficult tasks which are unique to dealing with text
What is text processing?¶
Text processing is the practice of manipulating text data in order to make it more amenable to analysis and modeling. There are a whole host of powerful libraries dedicated to this, including:
string
andstr.methods
- Regular expressions
- Natural language processing libraries such as
nltk
.gensim
, andspaCy
Preprocessing Tasks¶
We have several preprocessing tasks when analyzing text:
- Tokenize
- Remove Stop Words
- Clean special characters in text
- Stemming/Lemmatization
Cleaning text ¶
- A good practice is to standardize the text.
- For an easier text manipulation we will convert any string to lowercase.
- We will remove special characters and any strings that are not going to be needed for further analysis.
String module
Cleaning the tweets before going though any other text manipulation is helpful. For these first steps we will use some of the methods that the module String has. To learn more about the String methods click here.
Some of the String Methods:
- capitalize(): Converts the first character to upper case
- casefold(): Converts string into lower case
- center(): Returns a centered string
- count(): Returns the number of times a specified value occurs in a string
- endswith(): Returns true if the string ends with the specified value
- find(): Searches the string for a specified value and returns the position of where it was found
- isalnum() Returns True if all characters in the string are alphanumeric
- isalpha() Returns True if all characters in the string are in the alphabet
- isascii() Returns True if all characters in the string are ascii characters
- isdecimal() Returns True if all characters in the string are decimals
- isdigit() Returns True if all characters in the string are digits
- isidentifier() Returns True if the string is an identifier
- islower() Returns True if all characters in the string are lower case
- isnumeric() Returns True if all characters in the string are numeric
- isprintable() Returns True if all characters in the string are printable
- isspace() Returns True if all characters in the string are whitespaces
- istitle() Returns True if the string follows the rules of a title
- isupper() Returns True if all characters in the string are upper case
- lower() Converts a string into lower case
- lstrip() Returns a left trim version of the string
- replace() Returns a string where a specified value is replaced with a specified value
- rsplit() Splits the string at the specified separator, and returns a list
- rstrip() Returns a right trim version of the string
- split() Splits the string at the specified separator, and returns a list
- splitlines() Splits the string at line breaks and returns a list
- startswith() Returns true if the string starts with the specified value
- strip() Returns a trimmed version of the string
- swapcase() Swaps cases, lower case becomes upper case and vice versa
- title() Converts the first character of each word to upper case
- translate() Returns a translated string
- upper() Converts a string into upper case
- zfill() Fills the string with a specified number of 0 values at the beginning
# Before we start, let's create a copy of our data so we can compare all the changes later.
initial_df = tweets_df.copy()
Converting any uppercase string to lowercase.¶
def lowercase_func(tweets):
return tweets.lower()
tweets_df["tweets"] = tweets_df["tweets"].apply(lambda x: lowercase_func(x))
tweets_df
tweets | sentiment | |
---|---|---|
0 | #followfriday @france_inte @pkuchly57 @milipol... | 1 |
1 | @lamb2ja hey james! how odd :/ please call our... | 1 |
2 | @despiteofficial we had a listen last night :)... | 1 |
3 | @97sides congrats :) | 1 |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 |
... | ... | ... |
9995 | i wanna change my avi but usanele :( | 0 |
9996 | my puppy broke her foot :( | 0 |
9997 | where's all the jaebum baby pictures :(( | 0 |
9998 | but but mr ahmad maslan cooks too :( https://t... | 0 |
9999 | @eawoman as a hull supporter i am expecting a ... | 0 |
10000 rows × 2 columns
Removing URL's using the
find()
method from the String :¶
Python string method find() determines if string str occurs in string, or in a substring of string if starting index beg and ending index end are given.
We will search for all the tweets that contain "http". Once we've identified them, we will remove the URL's
def find_url_in_tweets(tweets):
return tweets.find("http")
tweets_df["find_url"] = tweets_df["tweets"].apply(lambda m: find_url_in_tweets(m))
tweets_df
tweets | sentiment | find_url | |
---|---|---|---|
0 | #followfriday @france_inte @pkuchly57 @milipol... | 1 | -1 |
1 | @lamb2ja hey james! how odd :/ please call our... | 1 | -1 |
2 | @despiteofficial we had a listen last night :)... | 1 | -1 |
3 | @97sides congrats :) | 1 | -1 |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | -1 |
... | ... | ... | ... |
9995 | i wanna change my avi but usanele :( | 0 | -1 |
9996 | my puppy broke her foot :( | 0 | -1 |
9997 | where's all the jaebum baby pictures :(( | 0 | -1 |
9998 | but but mr ahmad maslan cooks too :( https://t... | 0 | 37 |
9999 | @eawoman as a hull supporter i am expecting a ... | 0 | -1 |
10000 rows × 3 columns
with_url = range(140)
match_url = tweets_df[tweets_df["find_url"].isin(with_url)]
match_url.head(10)
tweets | sentiment | find_url | |
---|---|---|---|
5 | @bhaktisbanter @pallaviruhail this one is irre... | 1 | 81 |
6 | we don't like to keep our lovely customers wai... | 1 | 104 |
11 | who wouldn't love these big....juicy....selfie... | 1 | 53 |
12 | @mish23615351 follow @jnlazts & http://t.... | 1 | 37 |
14 | great new opportunity for junior triathletes a... | 1 | 107 |
19 | hello i need to know something can u fm me on ... | 1 | 80 |
27 | spiritual ritual festival (népal)\nbeginning o... | 1 | 105 |
30 | my kik - hatessuce32429 #kik #kikme #lgbt #tin... | 1 | 74 |
35 | @jamiefigsxx follow @jnlazts & http://t.c... | 1 | 36 |
43 | i added a video to a @youtube playlist http://... | 1 | 39 |
- Reviewing the tweets that include URL's
# Looking at the datapoint with index 0 to confirm that it has an URL.
match_url["tweets"].iloc[0]
'@bhaktisbanter @pallaviruhail this one is irresistible :)\n#flipkartfashionfriday http://t.co/ebz0l2venm'
- Removing URL's from tweets.
def remove_urls(tweets):
url_pattern = re.compile(r"http[s]?://\S+|www\.\S+")
return url_pattern.sub(r"", tweets)
tweets_df["tweets"] = tweets_df["tweets"].apply(remove_urls)
tweets_df.head(10)
tweets | sentiment | find_url | |
---|---|---|---|
0 | #followfriday @france_inte @pkuchly57 @milipol... | 1 | -1 |
1 | @lamb2ja hey james! how odd :/ please call our... | 1 | -1 |
2 | @despiteofficial we had a listen last night :)... | 1 | -1 |
3 | @97sides congrats :) | 1 | -1 |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | -1 |
5 | @bhaktisbanter @pallaviruhail this one is irre... | 1 | 81 |
6 | we don't like to keep our lovely customers wai... | 1 | 104 |
7 | @impatientraider on second thought, there’s ju... | 1 | -1 |
8 | jgh , but we have to go to bayan :d bye | 1 | -1 |
9 | as an act of mischievousness, am calling the e... | 1 | -1 |
tweets_df["tweets"].iloc[5]
'@bhaktisbanter @pallaviruhail this one is irresistible :)\n#flipkartfashionfriday '
# Since we won't need anymore the column find_url, we will drop it.
tweets_df = tweets_df.drop(["find_url"], axis=1)
Replacing emojis and emoticons with words¶
# We will use the library emot, which is open source.
# we'll need version 2.1 specifically
!pip install emot==2.1
Requirement already satisfied: emot==2.1 in /home/chris/.local/miniconda3/envs/cs109a/lib/python3.9/site-packages (2.1)
from emot.emo_unicode import UNICODE_EMO,EMOTICONS
UNICODE_EMO['😂'].replace(",", " ").replace(":", " ").split()
#UNICODE_EMO['😂']
['face_with_tears_of_joy']
EMOTICONS
{':‑\\)': 'Happy face or smiley', ':\\)': 'Happy face or smiley', ':-\\]': 'Happy face or smiley', ':\\]': 'Happy face or smiley', ':-3': 'Happy face smiley', ':3': 'Happy face smiley', ':->': 'Happy face smiley', ':>': 'Happy face smiley', '8-\\)': 'Happy face smiley', ':o\\)': 'Happy face smiley', ':-\\}': 'Happy face smiley', ':\\}': 'Happy face smiley', ':-\\)': 'Happy face smiley', ':c\\)': 'Happy face smiley', ':\\^\\)': 'Happy face smiley', '=\\]': 'Happy face smiley', '=\\)': 'Happy face smiley', ':‑D': 'Laughing, big grin or laugh with glasses', ':D': 'Laughing, big grin or laugh with glasses', '8‑D': 'Laughing, big grin or laugh with glasses', '8D': 'Laughing, big grin or laugh with glasses', 'X‑D': 'Laughing, big grin or laugh with glasses', 'XD': 'Laughing, big grin or laugh with glasses', '=D': 'Laughing, big grin or laugh with glasses', '=3': 'Laughing, big grin or laugh with glasses', 'B\\^D': 'Laughing, big grin or laugh with glasses', ':-\\)\\)': 'Very happy', ':‑\\(': 'Frown, sad, andry or pouting', ':-\\(': 'Frown, sad, andry or pouting', ':\\(': 'Frown, sad, andry or pouting', ':‑c': 'Frown, sad, andry or pouting', ':c': 'Frown, sad, andry or pouting', ':‑<': 'Frown, sad, andry or pouting', ':<': 'Frown, sad, andry or pouting', ':‑\\[': 'Frown, sad, andry or pouting', ':\\[': 'Frown, sad, andry or pouting', ':-\\|\\|': 'Frown, sad, andry or pouting', '>:\\[': 'Frown, sad, andry or pouting', ':\\{': 'Frown, sad, andry or pouting', ':@': 'Frown, sad, andry or pouting', '>:\\(': 'Frown, sad, andry or pouting', ":'‑\\(": 'Crying', ":'\\(": 'Crying', ":'‑\\)": 'Tears of happiness', ":'\\)": 'Tears of happiness', "D‑':": 'Horror', 'D:<': 'Disgust', 'D:': 'Sadness', 'D8': 'Great dismay', 'D;': 'Great dismay', 'D=': 'Great dismay', 'DX': 'Great dismay', ':‑O': 'Surprise', ':O': 'Surprise', ':‑o': 'Surprise', ':o': 'Surprise', ':-0': 'Shock', '8‑0': 'Yawn', '>:O': 'Yawn', ':-\\*': 'Kiss', ':\\*': 'Kiss', ':X': 'Kiss', ';‑\\)': 'Wink or smirk', ';\\)': 'Wink or smirk', '\\*-\\)': 'Wink or smirk', '\\*\\)': 'Wink or smirk', ';‑\\]': 'Wink or smirk', ';\\]': 'Wink or smirk', ';\\^\\)': 'Wink or smirk', ':‑,': 'Wink or smirk', ';D': 'Wink or smirk', ':‑P': 'Tongue sticking out, cheeky, playful or blowing a raspberry', ':P': 'Tongue sticking out, cheeky, playful or blowing a raspberry', 'X‑P': 'Tongue sticking out, cheeky, playful or blowing a raspberry', 'XP': 'Tongue sticking out, cheeky, playful or blowing a raspberry', ':‑Þ': 'Tongue sticking out, cheeky, playful or blowing a raspberry', ':Þ': 'Tongue sticking out, cheeky, playful or blowing a raspberry', ':b': 'Tongue sticking out, cheeky, playful or blowing a raspberry', 'd:': 'Tongue sticking out, cheeky, playful or blowing a raspberry', '=p': 'Tongue sticking out, cheeky, playful or blowing a raspberry', '>:P': 'Tongue sticking out, cheeky, playful or blowing a raspberry', ':‑/': 'Skeptical, annoyed, undecided, uneasy or hesitant', ':/': 'Skeptical, annoyed, undecided, uneasy or hesitant', ':-[.]': 'Skeptical, annoyed, undecided, uneasy or hesitant', '>:[(\\\\)]': 'Skeptical, annoyed, undecided, uneasy or hesitant', '>:/': 'Skeptical, annoyed, undecided, uneasy or hesitant', ':[(\\\\)]': 'Skeptical, annoyed, undecided, uneasy or hesitant', '=/': 'Skeptical, annoyed, undecided, uneasy or hesitant', '=[(\\\\)]': 'Skeptical, annoyed, undecided, uneasy or hesitant', ':L': 'Skeptical, annoyed, undecided, uneasy or hesitant', '=L': 'Skeptical, annoyed, undecided, uneasy or hesitant', ':S': 'Skeptical, annoyed, undecided, uneasy or hesitant', ':‑\\|': 'Straight face', ':\\|': 'Straight face', ':$': 'Embarrassed or blushing', ':‑x': 'Sealed lips or wearing braces or tongue-tied', ':x': 'Sealed lips or wearing braces or tongue-tied', ':‑#': 'Sealed lips or wearing braces or tongue-tied', ':#': 'Sealed lips or wearing braces or tongue-tied', ':‑&': 'Sealed lips or wearing braces or tongue-tied', ':&': 'Sealed lips or wearing braces or tongue-tied', 'O:‑\\)': 'Angel, saint or innocent', 'O:\\)': 'Angel, saint or innocent', '0:‑3': 'Angel, saint or innocent', '0:3': 'Angel, saint or innocent', '0:‑\\)': 'Angel, saint or innocent', '0:\\)': 'Angel, saint or innocent', ':‑b': 'Tongue sticking out, cheeky, playful or blowing a raspberry', '0;\\^\\)': 'Angel, saint or innocent', '>:‑\\)': 'Evil or devilish', '>:\\)': 'Evil or devilish', '\\}:‑\\)': 'Evil or devilish', '\\}:\\)': 'Evil or devilish', '3:‑\\)': 'Evil or devilish', '3:\\)': 'Evil or devilish', '>;\\)': 'Evil or devilish', '\\|;‑\\)': 'Cool', '\\|‑O': 'Bored', ':‑J': 'Tongue-in-cheek', '#‑\\)': 'Party all night', '%‑\\)': 'Drunk or confused', '%\\)': 'Drunk or confused', ':-###..': 'Being sick', ':###..': 'Being sick', '<:‑\\|': 'Dump', '\\(>_<\\)': 'Troubled', '\\(>_<\\)>': 'Troubled', "\\(';'\\)": 'Baby', '\\(\\^\\^>``': 'Nervous or Embarrassed or Troubled or Shy or Sweat drop', '\\(\\^_\\^;\\)': 'Nervous or Embarrassed or Troubled or Shy or Sweat drop', '\\(-_-;\\)': 'Nervous or Embarrassed or Troubled or Shy or Sweat drop', '\\(~_~;\\) \\(・\\.・;\\)': 'Nervous or Embarrassed or Troubled or Shy or Sweat drop', '\\(-_-\\)zzz': 'Sleeping', '\\(\\^_-\\)': 'Wink', '\\(\\(\\+_\\+\\)\\)': 'Confused', '\\(\\+o\\+\\)': 'Confused', '\\(o\\|o\\)': 'Ultraman', '\\^_\\^': 'Joyful', '\\(\\^_\\^\\)/': 'Joyful', '\\(\\^O\\^\\)/': 'Joyful', '\\(\\^o\\^\\)/': 'Joyful', '\\(__\\)': 'Kowtow as a sign of respect, or dogeza for apology', '_\\(\\._\\.\\)_': 'Kowtow as a sign of respect, or dogeza for apology', '<\\(_ _\\)>': 'Kowtow as a sign of respect, or dogeza for apology', '<m\\(__\\)m>': 'Kowtow as a sign of respect, or dogeza for apology', 'm\\(__\\)m': 'Kowtow as a sign of respect, or dogeza for apology', 'm\\(_ _\\)m': 'Kowtow as a sign of respect, or dogeza for apology', "\\('_'\\)": 'Sad or Crying', '\\(/_;\\)': 'Sad or Crying', '\\(T_T\\) \\(;_;\\)': 'Sad or Crying', '\\(;_;': 'Sad of Crying', '\\(;_:\\)': 'Sad or Crying', '\\(;O;\\)': 'Sad or Crying', '\\(:_;\\)': 'Sad or Crying', '\\(ToT\\)': 'Sad or Crying', ';_;': 'Sad or Crying', ';-;': 'Sad or Crying', ';n;': 'Sad or Crying', ';;': 'Sad or Crying', 'Q\\.Q': 'Sad or Crying', 'T\\.T': 'Sad or Crying', 'QQ': 'Sad or Crying', 'Q_Q': 'Sad or Crying', '\\(-\\.-\\)': 'Shame', '\\(-_-\\)': 'Shame', '\\(一一\\)': 'Shame', '\\(;一_一\\)': 'Shame', '\\(=_=\\)': 'Tired', '\\(=\\^\\·\\^=\\)': 'cat', '\\(=\\^\\·\\·\\^=\\)': 'cat', '=_\\^=\t': 'cat', '\\(\\.\\.\\)': 'Looking down', '\\(\\._\\.\\)': 'Looking down', '\\^m\\^': 'Giggling with hand covering mouth', '\\(\\・\\・?': 'Confusion', '\\(?_?\\)': 'Confusion', '>\\^_\\^<': 'Normal Laugh', '<\\^!\\^>': 'Normal Laugh', '\\^/\\^': 'Normal Laugh', '\\(\\*\\^_\\^\\*)': 'Normal Laugh', '\\(\\^<\\^\\) \\(\\^\\.\\^\\)': 'Normal Laugh', '\\(^\\^\\)': 'Normal Laugh', '\\(\\^\\.\\^\\)': 'Normal Laugh', '\\(\\^_\\^\\.\\)': 'Normal Laugh', '\\(\\^_\\^\\)': 'Normal Laugh', '\\(\\^\\^\\)': 'Normal Laugh', '\\(\\^J\\^\\)': 'Normal Laugh', '\\(\\*\\^\\.\\^\\*\\)': 'Normal Laugh', '\\(\\^—\\^\\)': 'Normal Laugh', '\\(#\\^\\.\\^#\\)': 'Normal Laugh', '\\(\\^—\\^\\)': 'Waving', '\\(;_;\\)/~~~': 'Waving', '\\(\\^\\.\\^\\)/~~~': 'Waving', '\\(-_-\\)/~~~ \\($\\·\\·\\)/~~~': 'Waving', '\\(T_T\\)/~~~': 'Waving', '\\(ToT\\)/~~~': 'Waving', '\\(\\*\\^0\\^\\*\\)': 'Excited', '\\(\\*_\\*\\)': 'Amazed', '\\(\\*_\\*;': 'Amazed', '\\(\\+_\\+\\) \\(@_@\\)': 'Amazed', '\\(\\*\\^\\^\\)v': 'Laughing,Cheerful', '\\(\\^_\\^\\)v': 'Laughing,Cheerful', '\\(\\(d[-_-]b\\)\\)': 'Headphones,Listening to music', '\\(-"-\\)': 'Worried', '\\(ーー;\\)': 'Worried', '\\(\\^0_0\\^\\)': 'Eyeglasses', '\\(\\^v\\^\\)': 'Happy', '\\(\\^u\\^\\)': 'Happy', '\\(\\^\\)o\\(\\^\\)': 'Happy', '\\(\\^O\\^\\)': 'Happy', '\\(\\^o\\^\\)': 'Happy', '\\)\\^o\\^\\(': 'Happy', ':O o_O': 'Surprised', 'o_0': 'Surprised', 'o\\.O': 'Surpised', '\\(o\\.o\\)': 'Surprised', 'oO': 'Surprised', '\\(\\* ̄m ̄\\)': 'Dissatisfied', '\\(‘A`\\)': 'Snubbed or Deflated'}
- Converting emojis into words.
def convert_emojis(text):
for emot in UNICODE_EMO:
text = text.replace(
emot,
" ".join(UNICODE_EMO[emot].replace(",", " ").replace(":", " ").split()),
)
return text
# Example:
emotions = "✨🎉😍👌 🤩 😂😎"
convert_emojis(emotions)
'sparklesparty_poppersmiling_face_with_heart-eyesOK_hand 🤩 face_with_tears_of_joysmiling_face_with_sunglasses'
- Convert emoticons into words.
def convert_emoticons(text):
for emot in EMOTICONS:
text = re.sub(
u"(" + emot + ")", " ".join(EMOTICONS[emot].replace(",", "").split()), text
)
return text
# Example:
faces = ":) =) XD :D :( :D :3 ^_^"
convert_emoticons(faces)
'Happy face or smiley Happy face smiley Laughing big grin or laugh with glasses Laughing big grin or laugh with glasses Frown sad andry or pouting Laughing big grin or laugh with glasses Happy face smiley Joyful'
- Replacing emojis and emoticons from the tweets.
tweets_df["clean_tweets"] = tweets_df["tweets"].apply(convert_emoticons)
tweets_df["clean_tweets"] = tweets_df["clean_tweets"].apply(convert_emojis)
tweets_df.head(10)
tweets | sentiment | clean_tweets | |
---|---|---|---|
0 | #followfriday @france_inte @pkuchly57 @milipol... | 1 | #followfriday @france_inte @pkuchly57 @milipol... |
1 | @lamb2ja hey james! how odd :/ please call our... | 1 | @lamb2ja hey james! how odd Skeptical annoyed ... |
2 | @despiteofficial we had a listen last night :)... | 1 | @despiteofficial we had a listen last night Ha... |
3 | @97sides congrats :) | 1 | @97sides congrats Happy face or smiley |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | yeaaaah yippppy!!! my accnt verified rqst has... |
5 | @bhaktisbanter @pallaviruhail this one is irre... | 1 | @bhaktisbanter @pallaviruhail this one is irre... |
6 | we don't like to keep our lovely customers wai... | 1 | we don't like to keep our lovely customers wai... |
7 | @impatientraider on second thought, there’s ju... | 1 | @impatientraider on second thought, there’s ju... |
8 | jgh , but we have to go to bayan :d bye | 1 | jgh , but we have to go to bayan :d bye |
9 | as an act of mischievousness, am calling the e... | 1 | as an act of mischievousness, am calling the e... |
Removing mentions(@). For example @mariacamila2000000
def remove_mentions(tweets):
mention_pattern = re.compile(r"(@[A-Za-z0-9]+)|[_]|([^0-9A-Za-z \t])|(\w+:\/\/\S+)")
return mention_pattern.sub(r"", tweets)
tweets_df["clean_tweets"] = tweets_df["clean_tweets"].apply(remove_mentions)
tweets_df.head(5)
tweets | sentiment | clean_tweets | |
---|---|---|---|
0 | #followfriday @france_inte @pkuchly57 @milipol... | 1 | followfriday inte paris for being top engaged... |
1 | @lamb2ja hey james! how odd :/ please call our... | 1 | hey james how odd Skeptical annoyed undecided... |
2 | @despiteofficial we had a listen last night :)... | 1 | we had a listen last night Happy face or smil... |
3 | @97sides congrats :) | 1 | congrats Happy face or smiley |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | yeaaaah yippppy my accnt verified rqst has su... |
Removing any noise that might be left: Special characters
def remove_noise(tweet):
tweet = re.sub("(@[A-Za-z0–9_]+)", "", tweet)
tweet = "".join([char if char not in string.punctuation else " " for char in tweet])
tweet = re.sub(" +", " ", tweet)
tweet = re.sub("[0–9]+", "", tweet)
tweet = re.sub("[^A-Za-z0–9_. ]+", "", tweet)
return tweet
tweets_df["clean_tweets"] = tweets_df["clean_tweets"].apply(lambda x: remove_noise(x))
# Applying the lowercase method again given that emojis and emoticons were converted, and the dictionary that includes all
# of these emojis and emoticons have the definitions with the first letter in uppercase.
tweets_df["clean_tweets"] = tweets_df["clean_tweets"].apply(lambda x: lowercase_func(x))
tweets_df
tweets | sentiment | clean_tweets | |
---|---|---|---|
0 | #followfriday @france_inte @pkuchly57 @milipol... | 1 | followfriday inte paris for being top engaged ... |
1 | @lamb2ja hey james! how odd :/ please call our... | 1 | hey james how odd skeptical annoyed undecided... |
2 | @despiteofficial we had a listen last night :)... | 1 | we had a listen last night happy face or smil... |
3 | @97sides congrats :) | 1 | congrats happy face or smiley |
4 | yeaaaah yippppy!!! my accnt verified rqst has... | 1 | yeaaaah yippppy my accnt verified rqst has suc... |
... | ... | ... | ... |
9995 | i wanna change my avi but usanele :( | 0 | i wanna change my avi but usanele frown sad an... |
9996 | my puppy broke her foot :( | 0 | my puppy broke her foot frown sad andry or pou... |
9997 | where's all the jaebum baby pictures :(( | 0 | wheres all the jaebum baby pictures frown sad ... |
9998 | but but mr ahmad maslan cooks too :( | 0 | but but mr ahmad maslan cooks too frown sad an... |
9999 | @eawoman as a hull supporter i am expecting a ... | 0 | as a hull supporter i am expecting a misserab... |
10000 rows × 3 columns
Stopwords¶
from nltk.tokenize import sent_tokenize, word_tokenize
from nltk.corpus import stopwords
nltk.download('stopwords')
[nltk_data] Downloading package stopwords to /home/chris/nltk_data... [nltk_data] Package stopwords is already up-to-date!
True
What are stopwords?
What are the languages available?
print("English:\n", stopwords.words("english"))
print("\nSpanish:\n", stopwords.words("spanish"))
print("\nRussian:\n", stopwords.words("russian"))
English: ['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', "you're", "you've", "you'll", "you'd", 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', "she's", 'her', 'hers', 'herself', 'it', "it's", 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', "that'll", 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', "don't", 'should', "should've", 'now', 'd', 'll', 'm', 'o', 're', 've', 'y', 'ain', 'aren', "aren't", 'couldn', "couldn't", 'didn', "didn't", 'doesn', "doesn't", 'hadn', "hadn't", 'hasn', "hasn't", 'haven', "haven't", 'isn', "isn't", 'ma', 'mightn', "mightn't", 'mustn', "mustn't", 'needn', "needn't", 'shan', "shan't", 'shouldn', "shouldn't", 'wasn', "wasn't", 'weren', "weren't", 'won', "won't", 'wouldn', "wouldn't"] Spanish: ['de', 'la', 'que', 'el', 'en', 'y', 'a', 'los', 'del', 'se', 'las', 'por', 'un', 'para', 'con', 'no', 'una', 'su', 'al', 'lo', 'como', 'más', 'pero', 'sus', 'le', 'ya', 'o', 'este', 'sí', 'porque', 'esta', 'entre', 'cuando', 'muy', 'sin', 'sobre', 'también', 'me', 'hasta', 'hay', 'donde', 'quien', 'desde', 'todo', 'nos', 'durante', 'todos', 'uno', 'les', 'ni', 'contra', 'otros', 'ese', 'eso', 'ante', 'ellos', 'e', 'esto', 'mí', 'antes', 'algunos', 'qué', 'unos', 'yo', 'otro', 'otras', 'otra', 'él', 'tanto', 'esa', 'estos', 'mucho', 'quienes', 'nada', 'muchos', 'cual', 'poco', 'ella', 'estar', 'estas', 'algunas', 'algo', 'nosotros', 'mi', 'mis', 'tú', 'te', 'ti', 'tu', 'tus', 'ellas', 'nosotras', 'vosotros', 'vosotras', 'os', 'mío', 'mía', 'míos', 'mías', 'tuyo', 'tuya', 'tuyos', 'tuyas', 'suyo', 'suya', 'suyos', 'suyas', 'nuestro', 'nuestra', 'nuestros', 'nuestras', 'vuestro', 'vuestra', 'vuestros', 'vuestras', 'esos', 'esas', 'estoy', 'estás', 'está', 'estamos', 'estáis', 'están', 'esté', 'estés', 'estemos', 'estéis', 'estén', 'estaré', 'estarás', 'estará', 'estaremos', 'estaréis', 'estarán', 'estaría', 'estarías', 'estaríamos', 'estaríais', 'estarían', 'estaba', 'estabas', 'estábamos', 'estabais', 'estaban', 'estuve', 'estuviste', 'estuvo', 'estuvimos', 'estuvisteis', 'estuvieron', 'estuviera', 'estuvieras', 'estuviéramos', 'estuvierais', 'estuvieran', 'estuviese', 'estuvieses', 'estuviésemos', 'estuvieseis', 'estuviesen', 'estando', 'estado', 'estada', 'estados', 'estadas', 'estad', 'he', 'has', 'ha', 'hemos', 'habéis', 'han', 'haya', 'hayas', 'hayamos', 'hayáis', 'hayan', 'habré', 'habrás', 'habrá', 'habremos', 'habréis', 'habrán', 'habría', 'habrías', 'habríamos', 'habríais', 'habrían', 'había', 'habías', 'habíamos', 'habíais', 'habían', 'hube', 'hubiste', 'hubo', 'hubimos', 'hubisteis', 'hubieron', 'hubiera', 'hubieras', 'hubiéramos', 'hubierais', 'hubieran', 'hubiese', 'hubieses', 'hubiésemos', 'hubieseis', 'hubiesen', 'habiendo', 'habido', 'habida', 'habidos', 'habidas', 'soy', 'eres', 'es', 'somos', 'sois', 'son', 'sea', 'seas', 'seamos', 'seáis', 'sean', 'seré', 'serás', 'será', 'seremos', 'seréis', 'serán', 'sería', 'serías', 'seríamos', 'seríais', 'serían', 'era', 'eras', 'éramos', 'erais', 'eran', 'fui', 'fuiste', 'fue', 'fuimos', 'fuisteis', 'fueron', 'fuera', 'fueras', 'fuéramos', 'fuerais', 'fueran', 'fuese', 'fueses', 'fuésemos', 'fueseis', 'fuesen', 'sintiendo', 'sentido', 'sentida', 'sentidos', 'sentidas', 'siente', 'sentid', 'tengo', 'tienes', 'tiene', 'tenemos', 'tenéis', 'tienen', 'tenga', 'tengas', 'tengamos', 'tengáis', 'tengan', 'tendré', 'tendrás', 'tendrá', 'tendremos', 'tendréis', 'tendrán', 'tendría', 'tendrías', 'tendríamos', 'tendríais', 'tendrían', 'tenía', 'tenías', 'teníamos', 'teníais', 'tenían', 'tuve', 'tuviste', 'tuvo', 'tuvimos', 'tuvisteis', 'tuvieron', 'tuviera', 'tuvieras', 'tuviéramos', 'tuvierais', 'tuvieran', 'tuviese', 'tuvieses', 'tuviésemos', 'tuvieseis', 'tuviesen', 'teniendo', 'tenido', 'tenida', 'tenidos', 'tenidas', 'tened'] Russian: ['и', 'в', 'во', 'не', 'что', 'он', 'на', 'я', 'с', 'со', 'как', 'а', 'то', 'все', 'она', 'так', 'его', 'но', 'да', 'ты', 'к', 'у', 'же', 'вы', 'за', 'бы', 'по', 'только', 'ее', 'мне', 'было', 'вот', 'от', 'меня', 'еще', 'нет', 'о', 'из', 'ему', 'теперь', 'когда', 'даже', 'ну', 'вдруг', 'ли', 'если', 'уже', 'или', 'ни', 'быть', 'был', 'него', 'до', 'вас', 'нибудь', 'опять', 'уж', 'вам', 'ведь', 'там', 'потом', 'себя', 'ничего', 'ей', 'может', 'они', 'тут', 'где', 'есть', 'надо', 'ней', 'для', 'мы', 'тебя', 'их', 'чем', 'была', 'сам', 'чтоб', 'без', 'будто', 'чего', 'раз', 'тоже', 'себе', 'под', 'будет', 'ж', 'тогда', 'кто', 'этот', 'того', 'потому', 'этого', 'какой', 'совсем', 'ним', 'здесь', 'этом', 'один', 'почти', 'мой', 'тем', 'чтобы', 'нее', 'сейчас', 'были', 'куда', 'зачем', 'всех', 'никогда', 'можно', 'при', 'наконец', 'два', 'об', 'другой', 'хоть', 'после', 'над', 'больше', 'тот', 'через', 'эти', 'нас', 'про', 'всего', 'них', 'какая', 'много', 'разве', 'три', 'эту', 'моя', 'впрочем', 'хорошо', 'свою', 'этой', 'перед', 'иногда', 'лучше', 'чуть', 'том', 'нельзя', 'такой', 'им', 'более', 'всегда', 'конечно', 'всю', 'между']
Selecting stop words¶
Given that we are aiming to perform a Sentiment Analysis, we don't want to remove the negative stopwords because it could impact our detection of any negative sentiment.
# We use NLTK - Loading stop words and removing negative stop words from the list
stop_words = stopwords.words("english")
keep_these_words = [
"don",
"don't",
"ain",
"aren",
"aren't",
"couldn",
"couldn't",
"didn",
"didn't",
"doesn",
"doesn't",
"hadn",
"hadn't",
"hasn",
"hasn't",
"haven",
"haven't",
"isn",
"isn't",
"ma",
"mightn",
"mightn't",
"mustn",
"mustn't",
"needn",
"needn't",
"shan",
"shan't",
"no",
"nor",
"not",
"shouldn",
"shouldn't",
"wasn",
"wasn't",
"weren",
"weren't",
"won",
"won't",
"wouldn",
"wouldn't",
]
our_stop_words = stop_words
for word in keep_these_words:
our_stop_words.remove(word)
print(our_stop_words)
['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', "you're", "you've", "you'll", "you'd", 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', "she's", 'her', 'hers', 'herself', 'it', "it's", 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', "that'll", 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'should', "should've", 'now', 'd', 'll', 'm', 'o', 're', 've', 'y']
Before removing the stop words from our tweets, let's review what is Tokenization.
Tokenization¶
- Tokenizers divide strings into lists of substrings.
- Tokenization consists of dividing a piece of text into smaller pieces.
- We can divide paragraph into sentences, sentence into words or word into characters.
How do we understand the meaning of a sentence?
We read each word, interpret its meaning, and read the next word until we find an end point. This is the reason why tokenization exists. If we want to create a model, the model might need all the words that make up the sentence separately. If instead on a sentence we have a paragraph, then we need to get all the sentences and out of all these sentences, we need to get the words. At that point we can move forward to perform any kind of prediction.
What is Tokenization? String tokenization is a process where a string is broken into several parts or tokens.
Why is important?
- It is important because before doing a text analysis we to identify the words that constitute a string of characters.
- It's also important because we can identify the different type of words after obtaining the tokens.
NLTK has different tokenize methods that can be applied to strings according to the desire output. sentences, words, characters.
- sent_tokenize(): Splits strings into sentences according to punctuation rules that have been already pre trained.
- regexp_tokenize(): Splits strings into substrings using regular expressions.
- word_tokenize(): Find words and punctuation in a string
1. Splitting a string into sentences using sent_tokenize()
# Let's review an example before applying it to our DataFrames.
first_paragraph = """1. The Imitation Game\nI propose to consider the question, ""Can machines think?"" This should begin
with definitions of the meaning of the terms ""machine"" and ""think."" The definitions might be framed so as to reflect so
far as possible the normal use of the words, but this attitude is dangerous, If the meaning of the words ""machine"" and
""think"" are to be found by examining how they are commonly used it is difficult to escape the conclusion that the meaning
and the answer to the question, ""Can machines think?"" is to be sought in a statistical survey such as a Gallup poll. But
this is absurd. Instead of attempting such a definition I shall replace the question by another, which is closely related
to it and is expressed in relatively unambiguous words." """
first_paragraph
'1. The Imitation Game\nI propose to consider the question, ""Can machines think?"" This should begin \nwith definitions of the meaning of the terms ""machine"" and ""think."" The definitions might be framed so as to reflect so \nfar as possible the normal use of the words, but this attitude is dangerous, If the meaning of the words ""machine"" and \n""think"" are to be found by examining how they are commonly used it is difficult to escape the conclusion that the meaning \nand the answer to the question, ""Can machines think?"" is to be sought in a statistical survey such as a Gallup poll. But \nthis is absurd. Instead of attempting such a definition I shall replace the question by another, which is closely related \nto it and is expressed in relatively unambiguous words." '
nltk.download('punkt')
from nltk.tokenize import sent_tokenize
sentences = sent_tokenize(first_paragraph)
sentences
[nltk_data] Downloading package punkt to /home/chris/nltk_data... [nltk_data] Package punkt is already up-to-date!
['1.', 'The Imitation Game\nI propose to consider the question, ""Can machines think?""', 'This should begin \nwith definitions of the meaning of the terms ""machine"" and ""think.""', 'The definitions might be framed so as to reflect so \nfar as possible the normal use of the words, but this attitude is dangerous, If the meaning of the words ""machine"" and \n""think"" are to be found by examining how they are commonly used it is difficult to escape the conclusion that the meaning \nand the answer to the question, ""Can machines think?""', 'is to be sought in a statistical survey such as a Gallup poll.', 'But \nthis is absurd.', 'Instead of attempting such a definition I shall replace the question by another, which is closely related \nto it and is expressed in relatively unambiguous words."']
# We can check how many sentences we got from the first text we have used for this example:
print("The number of sentences is", len(sentences))
The number of sentences is 7
2. Splitting strings to substrings using regexp_tokenize()
We'll use
regexp_tokenize()
to get substrings and words using a patternUsing a pattern to tokenize on whitespaces.
The pattern we are adding in the next cell code
pattern='\s+'
means:\s
white space character+
one or more
That means that the patter
pattern='\s+'
is splitting each string into tokens using one specific pattern: One or more white spaces.
- The patterns can be chosen from the regular expressions. Click here to learn more.
- We select
gaps=True
:- True if this tokenizer’s pattern should be used to find separators between tokens;
- False if this tokenizer’s pattern should be used to find the tokens themselves.
from nltk.tokenize import regexp_tokenize
words_regex = regexp_tokenize(first_paragraph, pattern="\s+", gaps=True)
print(words_regex)
['1.', 'The', 'Imitation', 'Game', 'I', 'propose', 'to', 'consider', 'the', 'question,', '""Can', 'machines', 'think?""', 'This', 'should', 'begin', 'with', 'definitions', 'of', 'the', 'meaning', 'of', 'the', 'terms', '""machine""', 'and', '""think.""', 'The', 'definitions', 'might', 'be', 'framed', 'so', 'as', 'to', 'reflect', 'so', 'far', 'as', 'possible', 'the', 'normal', 'use', 'of', 'the', 'words,', 'but', 'this', 'attitude', 'is', 'dangerous,', 'If', 'the', 'meaning', 'of', 'the', 'words', '""machine""', 'and', '""think""', 'are', 'to', 'be', 'found', 'by', 'examining', 'how', 'they', 'are', 'commonly', 'used', 'it', 'is', 'difficult', 'to', 'escape', 'the', 'conclusion', 'that', 'the', 'meaning', 'and', 'the', 'answer', 'to', 'the', 'question,', '""Can', 'machines', 'think?""', 'is', 'to', 'be', 'sought', 'in', 'a', 'statistical', 'survey', 'such', 'as', 'a', 'Gallup', 'poll.', 'But', 'this', 'is', 'absurd.', 'Instead', 'of', 'attempting', 'such', 'a', 'definition', 'I', 'shall', 'replace', 'the', 'question', 'by', 'another,', 'which', 'is', 'closely', 'related', 'to', 'it', 'and', 'is', 'expressed', 'in', 'relatively', 'unambiguous', 'words."']
# How many substrings did we get?
print("The number of substrings is", len(words_regex))
The number of substrings is 133
3. Splitting a string into words and punctuation using word_tokenize()
from nltk.tokenize import word_tokenize
words_tokens = word_tokenize(first_paragraph)
print(words_tokens)
['1', '.', 'The', 'Imitation', 'Game', 'I', 'propose', 'to', 'consider', 'the', 'question', ',', '``', "''", 'Can', 'machines', 'think', '?', "''", "''", 'This', 'should', 'begin', 'with', 'definitions', 'of', 'the', 'meaning', 'of', 'the', 'terms', '``', "''", 'machine', "''", "''", 'and', '``', "''", 'think', '.', "''", "''", 'The', 'definitions', 'might', 'be', 'framed', 'so', 'as', 'to', 'reflect', 'so', 'far', 'as', 'possible', 'the', 'normal', 'use', 'of', 'the', 'words', ',', 'but', 'this', 'attitude', 'is', 'dangerous', ',', 'If', 'the', 'meaning', 'of', 'the', 'words', '``', "''", 'machine', "''", "''", 'and', "''", "''", 'think', "''", "''", 'are', 'to', 'be', 'found', 'by', 'examining', 'how', 'they', 'are', 'commonly', 'used', 'it', 'is', 'difficult', 'to', 'escape', 'the', 'conclusion', 'that', 'the', 'meaning', 'and', 'the', 'answer', 'to', 'the', 'question', ',', '``', "''", 'Can', 'machines', 'think', '?', "''", "''", 'is', 'to', 'be', 'sought', 'in', 'a', 'statistical', 'survey', 'such', 'as', 'a', 'Gallup', 'poll', '.', 'But', 'this', 'is', 'absurd', '.', 'Instead', 'of', 'attempting', 'such', 'a', 'definition', 'I', 'shall', 'replace', 'the', 'question', 'by', 'another', ',', 'which', 'is', 'closely', 'related', 'to', 'it', 'and', 'is', 'expressed', 'in', 'relatively', 'unambiguous', 'words', '.', "''"]
print("The number of substrings is", len(words_tokens))
The number of substrings is 170
from nltk.tokenize import TweetTokenizer
twk = TweetTokenizer()
tweet_tokens = twk.tokenize(first_paragraph)
print(tweet_tokens)
['1', '.', 'The', 'Imitation', 'Game', 'I', 'propose', 'to', 'consider', 'the', 'question', ',', '"', '"', 'Can', 'machines', 'think', '?', '"', '"', 'This', 'should', 'begin', 'with', 'definitions', 'of', 'the', 'meaning', 'of', 'the', 'terms', '"', '"', 'machine', '"', '"', 'and', '"', '"', 'think', '.', '"', '"', 'The', 'definitions', 'might', 'be', 'framed', 'so', 'as', 'to', 'reflect', 'so', 'far', 'as', 'possible', 'the', 'normal', 'use', 'of', 'the', 'words', ',', 'but', 'this', 'attitude', 'is', 'dangerous', ',', 'If', 'the', 'meaning', 'of', 'the', 'words', '"', '"', 'machine', '"', '"', 'and', '"', '"', 'think', '"', '"', 'are', 'to', 'be', 'found', 'by', 'examining', 'how', 'they', 'are', 'commonly', 'used', 'it', 'is', 'difficult', 'to', 'escape', 'the', 'conclusion', 'that', 'the', 'meaning', 'and', 'the', 'answer', 'to', 'the', 'question', ',', '"', '"', 'Can', 'machines', 'think', '?', '"', '"', 'is', 'to', 'be', 'sought', 'in', 'a', 'statistical', 'survey', 'such', 'as', 'a', 'Gallup', 'poll', '.', 'But', 'this', 'is', 'absurd', '.', 'Instead', 'of', 'attempting', 'such', 'a', 'definition', 'I', 'shall', 'replace', 'the', 'question', 'by', 'another', ',', 'which', 'is', 'closely', 'related', 'to', 'it', 'and', 'is', 'expressed', 'in', 'relatively', 'unambiguous', 'words', '.', '"']
print("The number of substrings is", len(tweet_tokens))
The number of substrings is 170
Let's try the tokenizers for our tweets.
- Which one would be better for the following text processing steps?
- Is the combination of some characters useful for analyzing tweets?
tweets_df["tweets"].apply(lambda x: sent_tokenize(x))
0 [#followfriday @france_inte @pkuchly57 @milipo... 1 [@lamb2ja hey james!, how odd :/ please call o... 2 [@despiteofficial we had a listen last night :... 3 [@97sides congrats :)] 4 [yeaaaah yippppy!!!, my accnt verified rqst ha... ... 9995 [i wanna change my avi but usanele :(] 9996 [my puppy broke her foot :(] 9997 [where's all the jaebum baby pictures :((] 9998 [but but mr ahmad maslan cooks too :(] 9999 [@eawoman as a hull supporter i am expecting a... Name: tweets, Length: 10000, dtype: object
tweets_df["tweets"].apply(lambda x: regexp_tokenize(x, pattern="\s+", gaps=True))
0 [#followfriday, @france_inte, @pkuchly57, @mil... 1 [@lamb2ja, hey, james!, how, odd, :/, please, ... 2 [@despiteofficial, we, had, a, listen, last, n... 3 [@97sides, congrats, :)] 4 [yeaaaah, yippppy!!!, my, accnt, verified, rqs... ... 9995 [i, wanna, change, my, avi, but, usanele, :(] 9996 [my, puppy, broke, her, foot, :(] 9997 [where's, all, the, jaebum, baby, pictures, :((] 9998 [but, but, mr, ahmad, maslan, cooks, too, :(] 9999 [@eawoman, as, a, hull, supporter, i, am, expe... Name: tweets, Length: 10000, dtype: object
tweets_df["tweets"].apply(lambda x: word_tokenize(x))
0 [#, followfriday, @, france_inte, @, pkuchly57... 1 [@, lamb2ja, hey, james, !, how, odd, :, /, pl... 2 [@, despiteofficial, we, had, a, listen, last,... 3 [@, 97sides, congrats, :, )] 4 [yeaaaah, yippppy, !, !, !, my, accnt, verifie... ... 9995 [i, wan, na, change, my, avi, but, usanele, :, (] 9996 [my, puppy, broke, her, foot, :, (] 9997 [where, 's, all, the, jaebum, baby, pictures, ... 9998 [but, but, mr, ahmad, maslan, cooks, too, :, (] 9999 [@, eawoman, as, a, hull, supporter, i, am, ex... Name: tweets, Length: 10000, dtype: object
- Before getting the tokens from our tweets, we will proceed to remove the stop words.
from nltk.tokenize import word_tokenize
def remove_stop_words(tweet):
tokens = word_tokenize(tweet)
tweet_with_no_stop_words = [
token for token in tokens if not token in our_stop_words
]
reformed_tweet = " ".join(tweet_with_no_stop_words)
return reformed_tweet
tweets_df["clean_tweets"] = tweets_df["clean_tweets"].apply(
lambda x: remove_stop_words(x)
)
# Saving clean tweets
tweets_df["tweets"] = tweets_df["clean_tweets"]
tweets_df = tweets_df.drop(["clean_tweets"], axis=1)
tweets_df
tweets | sentiment | |
---|---|---|
0 | followfriday inte paris top engaged members co... | 1 |
1 | hey james odd skeptical annoyed undecided unea... | 1 |
2 | listen last night happy face smiley bleed amaz... | 1 |
3 | congrats happy face smiley | 1 |
4 | yeaaaah yippppy accnt verified rqst succeed go... | 1 |
... | ... | ... |
9995 | wan na change avi usanele frown sad andry pouting | 0 |
9996 | puppy broke foot frown sad andry pouting | 0 |
9997 | wheres jaebum baby pictures frown sad andry po... | 0 |
9998 | mr ahmad maslan cooks frown sad andry pouting | 0 |
9999 | hull supporter expecting misserable weeks frow... | 0 |
10000 rows × 2 columns
To serve our purpose, we would like to keep some combination of characters as they can reference emojis
and therefore, they can reference emotions. This is why instead of using word_tokenize()
we
will use regexp_tokenize()
.
Let's create an additional column in our DataFrame tweets_df to track the different process we are going to perform.
tweets_df["tweets_token"] = tweets_df["tweets"].apply(
lambda x: regexp_tokenize(x, pattern="\s+", gaps=True)
)
tweets_df
tweets | sentiment | tweets_token | |
---|---|---|---|
0 | followfriday inte paris top engaged members co... | 1 | [followfriday, inte, paris, top, engaged, memb... |
1 | hey james odd skeptical annoyed undecided unea... | 1 | [hey, james, odd, skeptical, annoyed, undecide... |
2 | listen last night happy face smiley bleed amaz... | 1 | [listen, last, night, happy, face, smiley, ble... |
3 | congrats happy face smiley | 1 | [congrats, happy, face, smiley] |
4 | yeaaaah yippppy accnt verified rqst succeed go... | 1 | [yeaaaah, yippppy, accnt, verified, rqst, succ... |
... | ... | ... | ... |
9995 | wan na change avi usanele frown sad andry pouting | 0 | [wan, na, change, avi, usanele, frown, sad, an... |
9996 | puppy broke foot frown sad andry pouting | 0 | [puppy, broke, foot, frown, sad, andry, pouting] |
9997 | wheres jaebum baby pictures frown sad andry po... | 0 | [wheres, jaebum, baby, pictures, frown, sad, a... |
9998 | mr ahmad maslan cooks frown sad andry pouting | 0 | [mr, ahmad, maslan, cooks, frown, sad, andry, ... |
9999 | hull supporter expecting misserable weeks frow... | 0 | [hull, supporter, expecting, misserable, weeks... |
10000 rows × 3 columns
- Let's check how many tokens do we get from each tweet after the tokenization.
tweets_df["tweets_length"] = tweets_df["tweets_token"].apply(lambda x: len(x))
tweets_df
tweets | sentiment | tweets_token | tweets_length | |
---|---|---|---|---|
0 | followfriday inte paris top engaged members co... | 1 | [followfriday, inte, paris, top, engaged, memb... | 11 |
1 | hey james odd skeptical annoyed undecided unea... | 1 | [hey, james, odd, skeptical, annoyed, undecide... | 19 |
2 | listen last night happy face smiley bleed amaz... | 1 | [listen, last, night, happy, face, smiley, ble... | 10 |
3 | congrats happy face smiley | 1 | [congrats, happy, face, smiley] | 4 |
4 | yeaaaah yippppy accnt verified rqst succeed go... | 1 | [yeaaaah, yippppy, accnt, verified, rqst, succ... | 16 |
... | ... | ... | ... | ... |
9995 | wan na change avi usanele frown sad andry pouting | 0 | [wan, na, change, avi, usanele, frown, sad, an... | 9 |
9996 | puppy broke foot frown sad andry pouting | 0 | [puppy, broke, foot, frown, sad, andry, pouting] | 7 |
9997 | wheres jaebum baby pictures frown sad andry po... | 0 | [wheres, jaebum, baby, pictures, frown, sad, a... | 8 |
9998 | mr ahmad maslan cooks frown sad andry pouting | 0 | [mr, ahmad, maslan, cooks, frown, sad, andry, ... | 8 |
9999 | hull supporter expecting misserable weeks frow... | 0 | [hull, supporter, expecting, misserable, weeks... | 9 |
10000 rows × 4 columns
- After getting the length for each tweet, we can check the distribution for the tweet's length.
plt.figure(figsize=(13, 2))
sns.boxplot(data=tweets_df, x="tweets_length", palette="Reds_r")
<AxesSubplot:xlabel='tweets_length'>
plt.figure(figsize=(12, 4))
sns.set_theme(style="white")
sns.histplot(tweets_df, x="tweets_length", color="black")
<AxesSubplot:xlabel='tweets_length', ylabel='Count'>
print("Q25=", tweets_df["tweets_length"].quantile(q=0.25))
print("Q50=", tweets_df["tweets_length"].quantile(q=0.5))
print("Q75=", tweets_df["tweets_length"].quantile(q=0.75))
Q25= 6.0 Q50= 8.0 Q75= 12.0
tweets_df.tweets_length.describe()
count 10000.00000 mean 9.15850 std 4.05199 min 0.00000 25% 6.00000 50% 8.00000 75% 12.00000 max 40.00000 Name: tweets_length, dtype: float64
# Dropping the column tweets_length given that we will not need it for the next steps of our analysis
tweets_df = tweets_df.drop(["tweets_length"], axis=1)
Using Collections library¶
The Collections module implements high-performance container datatypes (beyond the built-in types list, dict and tuple) and contains many useful data structures that you can use to store information in memory.
Counter()
- A Counter is a container that tracks how many times equivalent values are added.
- It can be used to implement the same algorithms for which other languages commonly use bag or multi-set data structures
from collections import Counter
tokens = Counter()
tweets_df["tweets_token"].apply(tokens.update)
# Printing the count of the tokens
tokens_df = (
pd.DataFrame.from_dict(tokens, orient="index")
.reset_index()
.rename(columns={"index": "token", 0: "count"})
)
tokens_df.sort_values(by="count", ascending=False)
token | count | |
---|---|---|
1520 | sad | 5272 |
3880 | andry | 5147 |
3881 | pouting | 5037 |
3879 | frown | 4981 |
8 | happy | 4498 |
... | ... | ... |
2324 | accumulated | 1 |
7212 | smileyplz | 1 |
7211 | tweeeps | 1 |
7210 | afterznoon | 1 |
13227 | misserable | 1 |
13228 rows × 2 columns
plot_tokens_top_30 = tokens_df.sort_values(by="count", ascending=False).head(30)
plt.figure(figsize=(15, 6))
sns.set_theme(style="whitegrid")
ax = sns.barplot(x="token", y="count", data=plot_tokens_top_30)
_ = plt.xticks(rotation=60)
Stemming/Lemmatization¶
- Stemming¶
Stemming is the process of removing prefixes and suffixes from words so that they are reduced to simpler forms which are called stems.
from nltk import PorterStemmer
sentence = [
"I",
"was",
"thinking",
"about",
"geometry",
"while",
"I",
"was",
"enjoying",
"the",
"best",
"month",
"of",
"winter",
]
porterStemmer = PorterStemmer()
print(
" Sentence:\n",
sentence,
"\n\n",
"Sentence with stemming:\n",
" ".join([porterStemmer.stem(word) for word in sentence]),
"\n",
)
Sentence: ['I', 'was', 'thinking', 'about', 'geometry', 'while', 'I', 'was', 'enjoying', 'the', 'best', 'month', 'of', 'winter'] Sentence with stemming: i wa think about geometri while i wa enjoy the best month of winter
porterStemmer = PorterStemmer()
tweets_df["t_stem"] = tweets_df["tweets_token"].apply(
lambda lst: [porterStemmer.stem(word) for word in lst]
)
tweets_df
tweets | sentiment | tweets_token | t_stem | |
---|---|---|---|---|
0 | followfriday inte paris top engaged members co... | 1 | [followfriday, inte, paris, top, engaged, memb... | [followfriday, int, pari, top, engag, member, ... |
1 | hey james odd skeptical annoyed undecided unea... | 1 | [hey, james, odd, skeptical, annoyed, undecide... | [hey, jame, odd, skeptic, annoy, undecid, unea... |
2 | listen last night happy face smiley bleed amaz... | 1 | [listen, last, night, happy, face, smiley, ble... | [listen, last, night, happi, face, smiley, ble... |
3 | congrats happy face smiley | 1 | [congrats, happy, face, smiley] | [congrat, happi, face, smiley] |
4 | yeaaaah yippppy accnt verified rqst succeed go... | 1 | [yeaaaah, yippppy, accnt, verified, rqst, succ... | [yeaaaah, yippppi, accnt, verifi, rqst, succee... |
... | ... | ... | ... | ... |
9995 | wan na change avi usanele frown sad andry pouting | 0 | [wan, na, change, avi, usanele, frown, sad, an... | [wan, na, chang, avi, usanel, frown, sad, andr... |
9996 | puppy broke foot frown sad andry pouting | 0 | [puppy, broke, foot, frown, sad, andry, pouting] | [puppi, broke, foot, frown, sad, andri, pout] |
9997 | wheres jaebum baby pictures frown sad andry po... | 0 | [wheres, jaebum, baby, pictures, frown, sad, a... | [where, jaebum, babi, pictur, frown, sad, andr... |
9998 | mr ahmad maslan cooks frown sad andry pouting | 0 | [mr, ahmad, maslan, cooks, frown, sad, andry, ... | [mr, ahmad, maslan, cook, frown, sad, andri, p... |
9999 | hull supporter expecting misserable weeks frow... | 0 | [hull, supporter, expecting, misserable, weeks... | [hull, support, expect, misser, week, frown, s... |
10000 rows × 4 columns
- Lemmatization¶
Lemmatization reduce words to their root form.
In lemmatization, the speech part of a word must be determined first and the normalization rules will be different for different parts of the speech, whereas, the stemmer operates on a single word without knowledge of the context, and therefore cannot discriminate between words that have different meanings depending on part of the speech.
Generating tags for each token in the text to Normalize sentences and to lemmatize each word using the tag¶
- The function lemmatize_sentence gets the position tag of each token of a tweet.
- For example, if the tag starts with NN, the token is assigned as a noun.
nltk.download('wordnet')
from nltk.stem import WordNetLemmatizer
sentence = [
"I",
"was",
"thinking",
"about",
"geometry",
"while",
"I",
"was",
"enjoying",
"the",
"best",
"month",
"of",
"winter",
]
lemmatizer = WordNetLemmatizer()
print(
" Sentence:\n",
sentence,
"\n\n",
"Sentence with lemmatizing:\n",
" ".join([lemmatizer.lemmatize(word) for word in sentence]),
"\n",
)
[nltk_data] Downloading package wordnet to /home/chris/nltk_data... [nltk_data] Package wordnet is already up-to-date!
Sentence: ['I', 'was', 'thinking', 'about', 'geometry', 'while', 'I', 'was', 'enjoying', 'the', 'best', 'month', 'of', 'winter'] Sentence with lemmatizing: I wa thinking about geometry while I wa enjoying the best month of winter
Tagging using pos_tag
¶
A "tag" is a case-sensitive string that specifies some property of a token, such as its part of speech. Tagged tokens are encoded as tuples (tag, token). https://www.nltk.org/api/nltk.tag.html
Common tags:
- CC: conjunction, coordinating
- IN: preposition or conjunction, subordinating
- JJ: adjective or numeral, ordinal
- NN: noun, common, singular or mass
- PRP: pronoun, personal
- SYM: symbol
- VB: verb, base form
# Run this cell to learn more about the tags
# nltk.help.upenn_tagset()
nltk.download('averaged_perceptron_tagger')
from nltk.tag import pos_tag
sentence = [
"I",
"was",
"thinking",
"about",
"geometry",
"while",
"I",
"was",
"enjoying",
"the",
"best",
"month",
"of",
"winter",
]
nltk.pos_tag(sentence)
[nltk_data] Downloading package averaged_perceptron_tagger to [nltk_data] /home/chris/nltk_data... [nltk_data] Package averaged_perceptron_tagger is already up-to- [nltk_data] date!
[('I', 'PRP'), ('was', 'VBD'), ('thinking', 'VBG'), ('about', 'IN'), ('geometry', 'NN'), ('while', 'IN'), ('I', 'PRP'), ('was', 'VBD'), ('enjoying', 'VBG'), ('the', 'DT'), ('best', 'JJS'), ('month', 'NN'), ('of', 'IN'), ('winter', 'NN')]
Getting the lemmas using tweets_tokens.
lmtzr = WordNetLemmatizer()
tweets_df["t_lemma"] = tweets_df["tweets_token"].apply(
lambda lst: [lmtzr.lemmatize(word) for word in lst]
)
tweets_df.tail()
tweets | sentiment | tweets_token | t_stem | t_lemma | |
---|---|---|---|---|---|
9995 | wan na change avi usanele frown sad andry pouting | 0 | [wan, na, change, avi, usanele, frown, sad, an... | [wan, na, chang, avi, usanel, frown, sad, andr... | [wan, na, change, avi, usanele, frown, sad, an... |
9996 | puppy broke foot frown sad andry pouting | 0 | [puppy, broke, foot, frown, sad, andry, pouting] | [puppi, broke, foot, frown, sad, andri, pout] | [puppy, broke, foot, frown, sad, andry, pouting] |
9997 | wheres jaebum baby pictures frown sad andry po... | 0 | [wheres, jaebum, baby, pictures, frown, sad, a... | [where, jaebum, babi, pictur, frown, sad, andr... | [wheres, jaebum, baby, picture, frown, sad, an... |
9998 | mr ahmad maslan cooks frown sad andry pouting | 0 | [mr, ahmad, maslan, cooks, frown, sad, andry, ... | [mr, ahmad, maslan, cook, frown, sad, andri, p... | [mr, ahmad, maslan, cook, frown, sad, andry, p... |
9999 | hull supporter expecting misserable weeks frow... | 0 | [hull, supporter, expecting, misserable, weeks... | [hull, support, expect, misser, week, frown, s... | [hull, supporter, expecting, misserable, week,... |
lemmas = Counter()
tweets_df["t_lemma"].apply(lemmas.update)
lemmas_df = (
pd.DataFrame.from_dict(lemmas, orient="index")
.reset_index()
.rename(columns={"index": "lemma", 0: "count"})
)
lemmas_df.sort_values(by="count", ascending=False)
lemma | count | |
---|---|---|
1475 | sad | 5272 |
3699 | andry | 5147 |
3700 | pouting | 5037 |
3698 | frown | 4981 |
8 | happy | 4498 |
... | ... | ... |
6009 | forklift | 1 |
6008 | todos | 1 |
6006 | bom | 1 |
6005 | nb | 1 |
12387 | misserable | 1 |
12388 rows × 2 columns
plot_lemmas_top_30 = lemmas_df.sort_values(by="count", ascending=False).head(30)
plt.figure(figsize=(15, 6))
sns.set_theme(style="whitegrid")
ax = sns.barplot(x="lemma", y="count", data=plot_lemmas_top_30)
_ = plt.xticks(rotation=60)
Getting the taggs using tweets_tokens.
from nltk import pos_tag
tweets_df["t_postag"] = tweets_df["tweets"].apply(
lambda v: nltk.pos_tag(nltk.word_tokenize(v))
)
tweets_df.head()
tweets | sentiment | tweets_token | t_stem | t_lemma | t_postag | |
---|---|---|---|---|---|---|
0 | followfriday inte paris top engaged members co... | 1 | [followfriday, inte, paris, top, engaged, memb... | [followfriday, int, pari, top, engag, member, ... | [followfriday, inte, paris, top, engaged, memb... | [(followfriday, JJ), (inte, JJ), (paris, NN), ... |
1 | hey james odd skeptical annoyed undecided unea... | 1 | [hey, james, odd, skeptical, annoyed, undecide... | [hey, jame, odd, skeptic, annoy, undecid, unea... | [hey, james, odd, skeptical, annoyed, undecide... | [(hey, NN), (james, NNS), (odd, JJ), (skeptica... |
2 | listen last night happy face smiley bleed amaz... | 1 | [listen, last, night, happy, face, smiley, ble... | [listen, last, night, happi, face, smiley, ble... | [listen, last, night, happy, face, smiley, ble... | [(listen, VBN), (last, JJ), (night, NN), (happ... |
3 | congrats happy face smiley | 1 | [congrats, happy, face, smiley] | [congrat, happi, face, smiley] | [congrats, happy, face, smiley] | [(congrats, NNS), (happy, JJ), (face, NN), (sm... |
4 | yeaaaah yippppy accnt verified rqst succeed go... | 1 | [yeaaaah, yippppy, accnt, verified, rqst, succ... | [yeaaaah, yippppi, accnt, verifi, rqst, succee... | [yeaaaah, yippppy, accnt, verified, rqst, succ... | [(yeaaaah, NN), (yippppy, JJ), (accnt, NN), (v... |
tags = Counter()
tweets_df["t_postag"].apply(tags.update)
tags_df = (
pd.DataFrame.from_dict(tags, orient="index")
.reset_index()
.rename(columns={"index": "tag", 0: "count"})
)
tags_df.sort_values(by="count", ascending=False)
tag | count | |
---|---|---|
1733 | (sad, JJ) | 5208 |
4610 | (andry, NN) | 5061 |
8 | (happy, JJ) | 4495 |
9 | (face, NN) | 4450 |
10 | (smiley, NN) | 3978 |
... | ... | ... |
7844 | (overdue, JJ) | 1 |
7845 | (mice, NN) | 1 |
7846 | (womandancingwomandancingwomandancingsa, NN) | 1 |
7847 | (joys, NNS) | 1 |
16918 | (misserable, JJ) | 1 |
16919 rows × 2 columns
plot_tags_top_30 = tags_df.sort_values(by="count", ascending=False).head(30)
plt.figure(figsize=(15, 6))
sns.set_theme(style="whitegrid")
ax = sns.barplot(x="tag", y="count", data=plot_tags_top_30)
_ = plt.xticks(rotation=60)
from nltk.corpus import wordnet
from nltk.stem import WordNetLemmatizer
lemmatizer = WordNetLemmatizer()
def get_wordnet_pos(treebank_tag):
if treebank_tag.startswith("J"):
return wordnet.ADJ
elif treebank_tag.startswith("V"):
return wordnet.VERB
elif treebank_tag.startswith("N"):
return wordnet.NOUN
elif treebank_tag.startswith("R"):
return wordnet.ADV
else:
return None
tweets_df["lemma_sentence"] = tweets_df["t_postag"].transform(
lambda value: " ".join(
[
lemmatizer.lemmatize(a[0], pos=get_wordnet_pos(a[1]))
if get_wordnet_pos(a[1])
else a[0]
for a in value
]
)
)
tweets_df
tweets | sentiment | tweets_token | t_stem | t_lemma | t_postag | lemma_sentence | |
---|---|---|---|---|---|---|---|
0 | followfriday inte paris top engaged members co... | 1 | [followfriday, inte, paris, top, engaged, memb... | [followfriday, int, pari, top, engag, member, ... | [followfriday, inte, paris, top, engaged, memb... | [(followfriday, JJ), (inte, JJ), (paris, NN), ... | followfriday inte paris top engage member comm... |
1 | hey james odd skeptical annoyed undecided unea... | 1 | [hey, james, odd, skeptical, annoyed, undecide... | [hey, jame, odd, skeptic, annoy, undecid, unea... | [hey, james, odd, skeptical, annoyed, undecide... | [(hey, NN), (james, NNS), (odd, JJ), (skeptica... | hey james odd skeptical annoyed undecided unea... |
2 | listen last night happy face smiley bleed amaz... | 1 | [listen, last, night, happy, face, smiley, ble... | [listen, last, night, happi, face, smiley, ble... | [listen, last, night, happy, face, smiley, ble... | [(listen, VBN), (last, JJ), (night, NN), (happ... | listen last night happy face smiley bleed amaz... |
3 | congrats happy face smiley | 1 | [congrats, happy, face, smiley] | [congrat, happi, face, smiley] | [congrats, happy, face, smiley] | [(congrats, NNS), (happy, JJ), (face, NN), (sm... | congrats happy face smiley |
4 | yeaaaah yippppy accnt verified rqst succeed go... | 1 | [yeaaaah, yippppy, accnt, verified, rqst, succ... | [yeaaaah, yippppi, accnt, verifi, rqst, succee... | [yeaaaah, yippppy, accnt, verified, rqst, succ... | [(yeaaaah, NN), (yippppy, JJ), (accnt, NN), (v... | yeaaaah yippppy accnt verify rqst succeed get ... |
... | ... | ... | ... | ... | ... | ... | ... |
9995 | wan na change avi usanele frown sad andry pouting | 0 | [wan, na, change, avi, usanele, frown, sad, an... | [wan, na, chang, avi, usanel, frown, sad, andr... | [wan, na, change, avi, usanele, frown, sad, an... | [(wan, NN), (na, TO), (change, VB), (avi, RB),... | wan na change avi usanele frown sad andry pouting |
9996 | puppy broke foot frown sad andry pouting | 0 | [puppy, broke, foot, frown, sad, andry, pouting] | [puppi, broke, foot, frown, sad, andri, pout] | [puppy, broke, foot, frown, sad, andry, pouting] | [(puppy, JJ), (broke, VBD), (foot, JJ), (frown... | puppy break foot frown sad andry pouting |
9997 | wheres jaebum baby pictures frown sad andry po... | 0 | [wheres, jaebum, baby, pictures, frown, sad, a... | [where, jaebum, babi, pictur, frown, sad, andr... | [wheres, jaebum, baby, picture, frown, sad, an... | [(wheres, NNS), (jaebum, VBP), (baby, NN), (pi... | wheres jaebum baby picture frown sad andry pou... |
9998 | mr ahmad maslan cooks frown sad andry pouting | 0 | [mr, ahmad, maslan, cooks, frown, sad, andry, ... | [mr, ahmad, maslan, cook, frown, sad, andri, p... | [mr, ahmad, maslan, cook, frown, sad, andry, p... | [(mr, NN), (ahmad, NN), (maslan, NN), (cooks, ... | mr ahmad maslan cook frown sad andry pouting |
9999 | hull supporter expecting misserable weeks frow... | 0 | [hull, supporter, expecting, misserable, weeks... | [hull, support, expect, misser, week, frown, s... | [hull, supporter, expecting, misserable, week,... | [(hull, NN), (supporter, NN), (expecting, VBG)... | hull supporter expect misserable week frown sa... |
10000 rows × 7 columns
Double checking the differences between Stemming and Lemmatization
Sentence_from_Turing = "The idea behind digital computers may be explained by saying that these machines are intended to carry out any operations which could be done by a human computer."
tokens = nltk.word_tokenize(Sentence_from_Turing)
stemmer = PorterStemmer()
lemmatizer = WordNetLemmatizer()
# Stem and lemmatize
print("{0:30}{1:30}{2:30}".format("Word", "Stemmer", "Lemma\n"))
for word in tokens:
print(
"{0:30}{1:30}{2:30}".format(
word, stemmer.stem(word), lemmatizer.lemmatize(word)
)
)
Word Stemmer Lemma The the The idea idea idea behind behind behind digital digit digital computers comput computer may may may be be be explained explain explained by by by saying say saying that that that these these these machines machin machine are are are intended intend intended to to to carry carri carry out out out any ani any operations oper operation which which which could could could be be be done done done by by by a a a human human human computer comput computer . . .
Bag of words model¶
This model allows us to extract features from the text by converting the text into a matrix of occurrence of words.
We will take our tweets that have been already processed, and the sentiment (1: Positive, 0: Negative).
Then, we will proceed to create a list with the tweets and finally we will be able to use Countvectorizer
.
https://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.CountVectorizer.html
Countvectorizer is a method to convert text to numerical data: It converts a collection of text documents to a matrix of token counts.
df = tweets_df[["tweets", "sentiment"]]
df
tweets | sentiment | |
---|---|---|
0 | followfriday inte paris top engaged members co... | 1 |
1 | hey james odd skeptical annoyed undecided unea... | 1 |
2 | listen last night happy face smiley bleed amaz... | 1 |
3 | congrats happy face smiley | 1 |
4 | yeaaaah yippppy accnt verified rqst succeed go... | 1 |
... | ... | ... |
9995 | wan na change avi usanele frown sad andry pouting | 0 |
9996 | puppy broke foot frown sad andry pouting | 0 |
9997 | wheres jaebum baby pictures frown sad andry po... | 0 |
9998 | mr ahmad maslan cooks frown sad andry pouting | 0 |
9999 | hull supporter expecting misserable weeks frow... | 0 |
10000 rows × 2 columns
tweets_list = list(tweets_df["tweets"].values)
sentiment = tweets_df["sentiment"].values
tweets_list[:10]
['followfriday inte paris top engaged members community week happy face smiley', 'hey james odd skeptical annoyed undecided uneasy hesitant please call contact centre able assist happy face smiley many thanks', 'listen last night happy face smiley bleed amazing track scotland', 'congrats happy face smiley', 'yeaaaah yippppy accnt verified rqst succeed got blue tick mark fb profile happy face smiley days', 'one irresistible happy face smileyflipkartfashionfriday', 'dont like keep lovely customers waiting long hope enjoy happy friday lwwf happy face smiley', 'second thought theres not enough time dd happy face smiley new shorts entering system sheep must buying', 'jgh go bayan bye', 'act mischievousness calling etl layer inhouse warehousing app katamariwell name implies p']
# define max features
max_features = 100
# each instance will have 10 features
cv = CountVectorizer(max_features=max_features, ngram_range=(1, 2))
matrix_tweets_cv = cv.fit_transform(tweets_list)
# Getting the words
all_words = cv.get_feature_names()
# visualizing the first 50 words
print("First 100 words: \n", all_words[0:100])
First 100 words: ['always', 'amp', 'andry', 'andry pouting', 'back', 'birthday', 'cant', 'come', 'could', 'day', 'didnt', 'dont', 'even', 'face', 'face smiley', 'face smileyconfusion', 'feel', 'follow', 'follow back', 'followed', 'friday', 'frown', 'frown sad', 'fun', 'get', 'go', 'going', 'good', 'got', 'great', 'guys', 'happy', 'happy face', 'hey', 'hi', 'home', 'hope', 'ill', 'im', 'ive', 'kik', 'know', 'last', 'let', 'like', 'lol', 'looking', 'lot', 'love', 'lt', 'make', 'miss', 'morning', 'much', 'na', 'need', 'never', 'new', 'next', 'nice', 'night', 'no', 'not', 'oh', 'one', 'people', 'please', 'pouting', 'really', 'right', 'sad', 'sad andry', 'see', 'sleep', 'smiley', 'smileyconfusion', 'snapchat', 'someone', 'soon', 'sorry', 'still', 'thank', 'thanks', 'thats', 'think', 'time', 'today', 'us', 'via', 'wan', 'wan na', 'want', 'week', 'weekend', 'well', 'wish', 'work', 'would', 'yes', 'youre']
wordfreq = cv.vocabulary_
wordfreq
{'week': 92, 'happy': 31, 'face': 13, 'smiley': 74, 'happy face': 32, 'face smiley': 14, 'hey': 33, 'please': 66, 'thanks': 82, 'last': 42, 'night': 60, 'got': 28, 'one': 64, 'dont': 11, 'like': 44, 'hope': 36, 'friday': 20, 'not': 62, 'time': 85, 'new': 57, 'go': 25, 'love': 48, 'follow': 17, 'amp': 1, 'back': 4, 'follow back': 18, 'know': 41, 'great': 29, 'get': 24, 'today': 86, 'hi': 34, 'smileyconfusion': 75, 'face smileyconfusion': 15, 'need': 55, 'ive': 39, 'fun': 23, 'lol': 45, 'thank': 81, 'us': 87, 'well': 94, 'kik': 40, 'come': 7, 'lot': 47, 'see': 72, 'lt': 49, 'oh': 63, 'looking': 46, 'next': 58, 'feel': 16, 'never': 56, 'good': 27, 'im': 38, 'going': 26, 'would': 97, 'no': 61, 'someone': 77, 'yes': 98, 'cant': 6, 'still': 80, 'day': 9, 'via': 88, 'let': 43, 'youre': 99, 'weekend': 93, 'make': 50, 'really': 68, 'sleep': 73, 'birthday': 5, 'want': 91, 'miss': 51, 'morning': 52, 'thats': 83, 'ill': 37, 'right': 69, 'even': 12, 'home': 35, 'soon': 78, 'wan': 89, 'could': 8, 'always': 0, 'na': 54, 'wan na': 90, 'nice': 59, 'guys': 30, 'much': 53, 'work': 96, 'didnt': 10, 'people': 65, 'snapchat': 76, 'think': 84, 'wish': 95, 'sorry': 79, 'sad': 70, 'followed': 19, 'frown': 21, 'andry': 2, 'pouting': 67, 'frown sad': 22, 'sad andry': 71, 'andry pouting': 3}
matrix_tweets_cv.toarray()[1]
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 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, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0])
print(cv.get_feature_names())
['always', 'amp', 'andry', 'andry pouting', 'back', 'birthday', 'cant', 'come', 'could', 'day', 'didnt', 'dont', 'even', 'face', 'face smiley', 'face smileyconfusion', 'feel', 'follow', 'follow back', 'followed', 'friday', 'frown', 'frown sad', 'fun', 'get', 'go', 'going', 'good', 'got', 'great', 'guys', 'happy', 'happy face', 'hey', 'hi', 'home', 'hope', 'ill', 'im', 'ive', 'kik', 'know', 'last', 'let', 'like', 'lol', 'looking', 'lot', 'love', 'lt', 'make', 'miss', 'morning', 'much', 'na', 'need', 'never', 'new', 'next', 'nice', 'night', 'no', 'not', 'oh', 'one', 'people', 'please', 'pouting', 'really', 'right', 'sad', 'sad andry', 'see', 'sleep', 'smiley', 'smileyconfusion', 'snapchat', 'someone', 'soon', 'sorry', 'still', 'thank', 'thanks', 'thats', 'think', 'time', 'today', 'us', 'via', 'wan', 'wan na', 'want', 'week', 'weekend', 'well', 'wish', 'work', 'would', 'yes', 'youre']
len(cv.get_feature_names())
100
- Preparing the data for Modeling
X = matrix_tweets_cv.toarray()
y = sentiment
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=1)
print(X_train.shape)
print(X_test.shape)
(7000, 100) (3000, 100)
# Model Generation Using Multinomial Naive Bayes
clf = MultinomialNB().fit(X_train, y_train)
predicted = clf.predict(X_test)
print("MultinomialNB Accuracy:", metrics.accuracy_score(y_test, predicted))
MultinomialNB Accuracy: 0.9643333333333334
Can we improve the bag of words model? ¶
The main issue is that different sentences can yield same/similar vectors. TF-IDF allows for a simple mathematical way of defining word "importance". This allows for a smarter document vector.
TF-IDF (term frequency–inverse document frequency)¶
Term frequency–inverse document frequency, is a numerical statistic that is intended to reflect how important a word is to a document in a collection or corpus.
Term frequency: This summarizes how often a word appears within a documents.
Inverse document frequency: This downscales words that appear a lot across documents in a given corpus and that are hence empirically less informative than features that occur in a small fraction of the training corpus.
It is calculated as:
$$ TFIDF_{i,j} = TF_{i,j} \times \log \frac{N}{DF_i} $$where $TF_{i,j}$ is the total number of occurences of $i$ in $j$, $DF_i$ is the total number of documents containing $i$ and $N$ is the total number of documents.
tf = TfidfVectorizer()
text_tf = tf.fit_transform(df["tweets"])
X_train, X_test, y_train, y_test = train_test_split(
text_tf, df["sentiment"], test_size=0.3, random_state=123
)
# getting the words
all_words = tf.get_feature_names()
# visualize first 50 words
print("First 50 words: ", all_words[0:50])
First 50 words: ['aa', 'aaaaaaaaaaa', 'aaaaaaaaaaaaa', 'aaaaaaaaaaaah', 'aaaaaand', 'aaaaages', 'aaaaahhhhhhhh', 'aaaahh', 'aaaahhh', 'aaahhh', 'aah', 'aahhhh', 'aaj', 'aameenall', 'aameenhappy', 'aamir', 'aapke', 'aaron', 'aarwwi', 'aasramany', 'aayegi', 'ab', 'abandoned', 'abandoning', 'abbeytaylor', 'abby', 'abbycan', 'abbymill', 'abes', 'abhi', 'abi', 'abit', 'abla', 'able', 'abligaverins', 'aboard', 'abouty', 'abp', 'abroad', 'abrupt', 'abs', 'abscess', 'absent', 'absolute', 'absolutely', 'abstinence', 'abt', 'abu', 'abudhabi', 'abusive']
print(tf.vocabulary_)
{'followfriday': 4009, 'inte': 5513, 'paris': 8309, 'top': 11824, 'engaged': 3417, 'members': 7087, 'community': 2211, 'week': 12617, 'happy': 4792, 'face': 3658, 'smiley': 10448, 'hey': 4971, 'james': 5682, 'odd': 7957, 'skeptical': 10364, 'annoyed': 454, 'undecided': 12140, 'uneasy': 12149, 'hesitant': 4967, 'please': 8675, 'call': 1676, 'contact': 2298, 'centre': 1818, 'able': 33, 'assist': 652, 'many': 6891, 'thanks': 11525, 'listen': 6494, 'last': 6281, 'night': 7750, 'bleed': 1264, 'amazing': 361, 'track': 11872, 'scotland': 9909, 'congrats': 2268, 'yeaaaah': 13014, 'yippppy': 13071, 'accnt': 63, 'verified': 12347, 'rqst': 9690, 'succeed': 11097, 'got': 4502, 'blue': 1300, 'tick': 11681, 'mark': 6915, 'fb': 3791, 'profile': 9010, 'days': 2677, 'one': 8056, 'irresistible': 5577, 'smileyflipkartfashionfriday': 10497, 'dont': 3070, 'like': 6440, 'keep': 5991, 'lovely': 6657, 'customers': 2560, 'waiting': 12498, 'long': 6583, 'hope': 5099, 'enjoy': 3427, 'friday': 4112, 'lwwf': 6739, 'second': 9950, 'thought': 11632, 'theres': 11576, 'not': 7852, 'enough': 3432, 'time': 11700, 'dd': 2690, 'new': 7684, 'shorts': 10223, 'entering': 3439, 'system': 11289, 'sheep': 10150, 'must': 7495, 'buying': 1636, 'jgh': 5762, 'go': 4432, 'bayan': 960, 'bye': 1643, 'act': 89, 'mischievousness': 7240, 'calling': 1679, 'etl': 3517, 'layer': 6315, 'inhouse': 5456, 'warehousing': 12537, 'app': 525, 'katamariwell': 5959, 'name': 7563, 'implies': 5364, 'gouv': 4509, 'influencers': 5440, 'wouldnt': 12893, 'love': 6646, 'bigjuicyselfies': 1172, 'follow': 4004, 'amp': 390, 'back': 800, 'perfect': 8457, 'already': 335, 'know': 6142, 'whats': 12685, 'great': 4551, 'opportunity': 8105, 'junior': 5892, 'triathletes': 11933, 'aged': 190, 'gatorade': 4274, 'series': 10033, 'get': 4331, 'entries': 3453, 'laying': 6316, 'greetings': 4565, 'card': 1733, 'range': 9227, 'print': 8969, 'today': 11754, 'job': 5791, 'friends': 4131, 'lunch': 6720, 'yummmm': 13145, 'smileynostalgia': 10531, 'tbs': 11402, 'ku': 6180, 'id': 5283, 'conflict': 2255, 'help': 4941, 'heres': 4960, 'screenshot': 9921, 'working': 12861, 'hi': 4976, 'liv': 6509, 'smileyconfusion': 10465, 'hello': 4937, 'need': 7640, 'something': 10689, 'fm': 3985, 'twitter': 12050, 'sure': 11195, 'thing': 11593, 'dm': 3013, 'fle': 3949, 'followers': 4008, 'ive': 5640, 'heard': 4888, 'four': 4072, 'seasons': 9944, 'pretty': 8945, 'dope': 3081, 'penthouse': 8444, 'obvs': 7946, 'gobigorgohomehave': 4439, 'fun': 4192, 'yall': 12991, 'yeah': 13015, 'suppose': 11187, 'lol': 6561, 'chat': 1901, 'bit': 1221, 'youth': 13117, 'opportunities': 8104, 'gtgt': 4622, 'nailpolishmediumskintonekissmark': 7550, 'smileyconfusionconfusionconfusion': 10468, 'havent': 4847, 'seen': 9972, 'years': 13020, 'arrow': 602, 'thank': 11519, 'rest': 9493, 'goes': 4446, 'quickly': 9167, 'bed': 1032, 'music': 7485, 'fix': 3930, 'dream': 3128, 'spiritual': 10826, 'ritual': 9588, 'festival': 3841, 'npalconfusionbeginning': 7890, 'lineup': 6474, 'smileyit': 10510, 'left': 6354, 'yconfusionsee': 13010, 'sarah': 9825, 'send': 10007, 'us': 12257, 'email': 3354, 'bitsycom': 1233, 'well': 12643, 'asap': 616, 'lols': 6570, 'kik': 6051, 'hatessuce': 4838, 'kikme': 6056, 'lgbt': 6405, 'tinder': 11711, 'nsfw': 7894, 'akua': 271, 'cumshot': 2536, 'come': 2185, 'house': 5154, 'smileyconfusionconfusionconfusionconfusion': 10469, 'nsnsupplements': 7895, 'effective': 3285, 'press': 8936, 'release': 9402, 'distribution': 2991, 'results': 9501, 'link': 6477, 'removed': 9428, 'pressrelease': 8937, 'newsdistribution': 7695, 'bam': 871, 'bestfriend': 1120, 'loves': 6665, 'lot': 6621, 'see': 9961, 'warsaw': 12547, 'lt': 6689, 'everyone': 3546, 'watch': 12557, 'documentary': 3027, 'earthlings': 3244, 'youtube': 13122, 'supports': 11186, 'buuuuuuuut': 1633, 'oh': 7983, 'looking': 6594, 'forward': 4062, 'visiting': 12427, 'next': 7702, 'letsgetmessy': 6394, 'jo': 5790, 'makes': 6830, 'feel': 3810, 'better': 1133, 'never': 7682, 'nor': 7841, 'anyone': 491, 'kpop': 6168, 'flesh': 3951, 'good': 4465, 'girl': 4382, 'best': 1117, 'wishes': 12788, 'kimimi': 6075, 'reason': 9303, 'epic': 3466, 'soundtrack': 10759, 'shout': 10235, 'added': 110, 'video': 12380, 'playlist': 8668, 'im': 5339, 'twitch': 12047, 'going': 4451, 'league': 6332, 'would': 12892, 'dear': 2703, 'jordan': 5826, 'ana': 400, 'okay': 8000, 'fake': 3709, 'gameplays': 4239, 'wink': 12773, 'smirk': 10585, 'haha': 4696, 'kidding': 6044, 'stuff': 11062, 'aygur': 772, 'exactly': 3564, 'product': 9005, 'line': 6471, 'etsy': 3519, 'shop': 10212, 'check': 1913, 'boxroomcrafts': 1410, 'vacation': 12294, 'rechargeable': 9320, 'normally': 7845, 'comes': 2188, 'charger': 1886, 'buy': 1634, 'espana': 3498, 'menthe': 7106, 'inter': 5521, 'shes': 10165, 'asleep': 637, 'no': 7793, 'talk': 11332, 'sooo': 10716, 'someone': 10686, 'text': 11496, 'yes': 13046, 'bet': 1127, 'hell': 4934, 'fit': 3920, 'hearing': 4890, 'speech': 10805, 'pity': 8623, 'green': 4562, 'gardens': 4264, 'midnight': 7175, 'sun': 11143, 'beautiful': 1014, 'canals': 1705, 'dasvidaniya': 2655, 'till': 11698, 'visithappy': 12426, 'scouting': 9915, 'sg': 10091, 'future': 4209, 'wlan': 12804, 'pros': 9046, 'conference': 2247, 'asia': 625, 'change': 1862, 'lollipop': 6566, 'nez': 7705, 'agnezmo': 199, 'big': 1168, 'oley': 8025, 'mama': 6847, 'stand': 10892, 'stronger': 11039, 'kjkkndr': 6121, 'god': 4440, 'misty': 7261, 'baby': 789, 'cute': 2562, 'woohoo': 12842, 'cant': 1721, 'wait': 12494, 'signed': 10290, 'yet': 13059, 'still': 10975, 'thinking': 11599, 'mka': 7276, 'liam': 6407, 'access': 59, 'welcome': 12637, 'stats': 10932, 'day': 2671, 'arrived': 601, 'follower': 4007, 'unfollowers': 12160, 'via': 12360, 'shouldnt': 10232, 'surprisedyou': 11202, 'figure': 3865, 'fr': 4077, 'happybirthdayemilybett': 4793, 'wishing': 12789, 'beautifulsweettalentedamazing': 1018, 'plans': 8650, 'drain': 3118, 'smileyembarrassed': 10492, 'blushing': 1307, 'fahupdates': 3699, 'ta': 11290, 'timezones': 11705, 'parents': 8307, 'proud': 9051, 'least': 6340, 'maybe': 6990, 'sometimes': 10692, 'grades': 4521, 'al': 272, 'grande': 4531, 'manilabro': 6877, 'chosen': 1998, 'let': 6390, 'youre': 13110, 'aroundat': 595, 'side': 10275, 'world': 12873, 'eh': 3295, 'take': 11315, 'care': 1739, 'laney': 6255, 'finally': 3884, 'fucking': 4176, 'weekend': 12618, 'real': 9286, 'joined': 5806, 'hushedcallwithfraydoe': 5243, 'gift': 4360, 'fraydoe': 4087, 'yeahhh': 13017, 'make': 6827, 'smileyconfusionconfusion': 10467, 'hushedpinwithsammy': 5244, 'event': 3534, 'might': 7177, 'luv': 6731, 'really': 9298, 'appreciate': 544, 'share': 10123, 'around': 594, 'wow': 12897, 'tom': 11780, 'gym': 4677, 'monday': 7329, 'likes': 6451, 'invite': 5553, 'join': 5805, 'scope': 9902, 'influencer': 5439, 'nudes': 7900, 'sleep': 10395, 'smileyconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusion': 10473, 'birthday': 1208, 'jp': 5847, 'hideo': 4982, 'want': 12529, 'tshirts': 11978, 'cool': 2346, 'haw': 4850, 'phela': 8514, 'mom': 7315, 'obviously': 7945, 'prince': 8965, 'charming': 1897, 'stage': 10883, 'luck': 6701, 'das': 2651, 'tylers': 12067, 'hipster': 5022, 'glasses': 4411, 'marty': 6933, 'glad': 4406, 'joining': 5807, 'done': 3057, 'afternoon': 174, 'lets': 6392, 'read': 9279, 'kahfi': 5914, 'finish': 3903, 'ohmyg': 7992, 'yaya': 13004, 'dub': 3174, 'stalk': 10886, 'ig': 5306, 'gondooo': 4462, 'moo': 7348, 'tologooo': 11779, 'become': 1030, 'details': 2844, 'robertkelly': 9616, 'spaniel': 10777, 'nelson': 7660, 'zzz': 13207, 'xx': 12966, 'physiotherapy': 8552, 'hashtag': 4826, 'custom': 2558, 'flexedbiceps': 3954, 'monica': 7332, 'miss': 7244, 'sounds': 10758, 'morning': 7365, 'thats': 11542, 'takes': 11320, 'definitely': 2751, 'try': 11972, 'tonight': 11804, 'took': 11815, 'advice': 149, 'treviso': 11929, 'concert': 2240, 'city': 2044, 'country': 2402, 'ill': 5328, 'start': 10911, 'fine': 3894, 'gorgeous': 4498, 'friend': 4127, 'xohappy': 12955, 'oven': 8198, 'roasted': 9610, 'garlic': 4265, 'olive': 8026, 'oil': 7995, 'dried': 3143, 'tomatoes': 11783, 'basil': 935, 'century': 1822, 'tuna': 12003, 'business': 1618, 'thebunkerjl': 11548, 'right': 9560, 'atchya': 660, 'doesnt': 3031, 'even': 3532, 'almost': 328, 'chance': 1857, 'arvsgt': 615, 'president': 8935, 'cheers': 1923, 'po': 8712, 'ice': 5273, 'cream': 2463, 'agree': 204, 'hehehehe': 4927, 'point': 8722, 'stay': 10935, 'home': 5068, 'lafontpresse': 6227, 'soon': 10712, 'promise': 9022, 'web': 12601, 'whatsapp': 12686, 'volta': 12447, 'funcionar': 4193, 'com': 2180, 'iphone': 5562, 'jailbroken': 5675, 'plan': 8640, 'watching': 12561, 'laterconfusion': 6290, 'mins': 7228, 'leia': 6369, 'appears': 533, 'hologram': 5065, 'rd': 9266, 'message': 7129, 'obi': 7938, 'wan': 12526, 'sits': 10343, 'luke': 6714, 'ucl': 12086, 'arsenal': 604, 'small': 10433, 'team': 11417, 'passing': 8339, 'locomotive': 6552, 'dewsbury': 2862, 'railway': 9195, 'station': 10930, 'dewconfusion': 2861, 'west': 12659, 'yorkshireconfusion': 13094, 'smh': 10441, 'live': 6510, 'strange': 11010, 'imagine': 5344, 'megan': 7059, 'masaantodaymasaantodaya': 6941, 'shweta': 10260, 'tripathi': 11944, 'masaantodaymasaantodayhappy': 6942, 'kurtas': 6191, 'half': 4742, 'number': 7910, 'wsalelove': 12920, 'ah': 207, 'larry': 6275, 'anyway': 498, 'kinda': 6081, 'gooood': 4492, 'hunyo': 5234, 'life': 6425, 'enn': 3430, 'surely': 11196, 'could': 2391, 'warmup': 12542, 'coming': 2196, 'th': 11510, 'bath': 947, 'dum': 3193, 'andar': 410, 'ram': 9212, 'sampath': 9800, 'sona': 10697, 'mohapatra': 7309, 'samantha': 9791, 'edwards': 3279, 'mein': 7069, 'tulane': 11996, 'razi': 9262, 'wah': 12486, 'josh': 5832, 'always': 350, 'smile': 10444, 'picture': 8566, 'timing': 11706, 'giveitup': 4398, 'given': 4399, 'gas': 4269, 'subsidy': 11092, 'initiative': 5462, 'proposed': 9044, 'feeling': 3814, 'delighted': 2769, 'missed': 7246, 'yesterday': 13055, 'lmaoo': 6532, 'songs': 10703, 'ever': 3538, 'shall': 10109, 'little': 6507, 'throwback': 11652, 'yconfusion': 13009, 'outlying': 8187, 'islands': 5596, 'cheung': 1944, 'chau': 1905, 'mui': 7460, 'wototally': 12890, 'different': 2904, 'kfckitchentours': 6019, 'kitchen': 6110, 'clean': 2070, 'totally': 11846, 'amazed': 359, 'india': 5410, 'cusp': 2555, 'testing': 11492, 'waters': 12564, 'rewarding': 9529, 'arummzz': 614, 'drive': 3150, 'ptraveling': 9072, 'traveler': 11913, 'yogyakarta': 13084, 'jeep': 5733, 'indonesia': 5426, 'instamood': 5502, 'na': 7529, 'skype': 10382, 'may': 6989, 'look': 6591, 'nice': 7730, 'friendly': 4130, 'pretend': 8940, 'film': 3877, 'congratulations': 2271, 'winner': 12775, 'cheesydelights': 1925, 'contest': 2310, 'smileyplease': 10537, 'address': 121, 'guys': 4665, 'pc': 8392, 'seeing': 9965, 'marketing': 6917, 'wont': 12837, 'regret': 9374, 'hours': 5152, 'leave': 6341, 'without': 12793, 'delays': 2761, 'actually': 100, 'easy': 3249, 'guess': 4636, 'train': 11888, 'wd': 12583, 'hour': 5150, 'shifting': 10170, 'engine': 3419, 'etc': 3511, 'sunburn': 11144, 'peeling': 8423, 'gratis': 4546, 'visit': 12424, 'blog': 1284, 'razorstan': 9263, 'huge': 5193, 'warm': 12540, 'complete': 2226, 'triangle': 11932, 'northern': 7847, 'ireland': 5570, 'sights': 10286, 'intlagency': 5538, 'smthng': 10600, 'ulolwanna': 12108, 'hug': 5192, 'uxoxolove': 12290, 'uu': 12284, 'jaann': 5654, 'kiss': 6102, 'confusion': 2259, 'topnewfollowers': 11828, 'connect': 2274, 'wonderful': 12830, 'made': 6773, 'fluffy': 3980, 'inside': 5485, 'pirouette': 8610, 'moose': 7358, 'trip': 11943, 'philly': 8521, 'december': 2720, 'dude': 3182, 'question': 9159, 'flawed': 3947, 'pain': 8245, 'negate': 7648, 'strength': 11022, 'went': 12653, 'solo': 10673, 'moves': 7400, 'werent': 12655, 'fav': 3777, 'nirvana': 7774, 'song': 10701, 'smells': 10438, 'teen': 11448, 'spirit': 10825, 'rip': 9571, 'amy': 398, 'winehouse': 12769, 'esigroup': 3495, 'couple': 2408, 'tomhiddleston': 11788, 'elizabetholsen': 3337, 'yaytheylookgreat': 13006, 'goodnight': 4476, 'vid': 12378, 'wake': 12500, 'gon': 4460, 'shoot': 10209, 'itty': 5635, 'bitty': 1237, 'teenie': 11451, 'bikini': 1177, 'much': 7443, 'gets': 4333, 'together': 11770, 'ending': 3407, 'xfiles': 12947, 'content': 2308, 'surprised': 11201, 'rain': 9196, 'fabulous': 3656, 'fantastic': 3751, 'work': 12853, 'jb': 5721, 'forever': 4041, 'belieber': 1069, 'entreprises': 3452, 'hear': 4887, 'nighty': 7757, 'bugs': 1568, 'bite': 1228, 'bracelet': 1420, 'idea': 5286, 'foundry': 4071, 'game': 4234, 'sense': 10015, 'didnt': 2889, 'pic': 8556, 'effing': 3288, 'phone': 8528, 'woot': 12847, 'gta': 4615, 'derek': 2816, 'using': 12272, 'parkshare': 8314, 'gloucestershire': 4422, 'aaaahhh': 8, 'man': 6857, 'traffic': 11880, 'stress': 11023, 'reliever': 9409, 'howre': 5163, 'arbeloa': 563, 'turning': 12014, 'daysomg': 2679, 'difference': 2902, 'say': 9859, 'europe': 3525, 'rise': 9580, 'find': 3889, 'hard': 4802, 'believe': 1071, 'uncountable': 12136, 'coz': 2432, 'unlimited': 12185, 'course': 2414, 'teampositive': 11426, 'aldub': 286, 'hotbeveragehotbeveragehotbeverage': 5135, 'rita': 9586, 'info': 5443, 'wed': 12609, 'way': 12573, 'boy': 1411, 'gifts': 4362, 'secem': 9949, 'nyc': 7928, 'true': 11964, 'samar': 9792, 'sethi': 10053, 'high': 4985, 'lennox': 6377, 'exe': 3580, 'skeem': 10361, 'saam': 9739, 'people': 8446, 'pumpchkin': 9093, 'pump': 9092, 'lishielou': 6491, 'polite': 8734, 'izzat': 5650, 'wese': 12657, 'trust': 11969, 'khawateen': 6031, 'sath': 9836, 'selfies': 9992, 'mana': 6858, 'kar': 5937, 'deya': 2864, 'evening': 3533, 'sorted': 10741, 'caneeee': 1717, 'smart': 10434, 'hair': 4726, 'tbh': 11398, 'jacob': 5664, 'mampg': 6855, 'upgradehappy': 12222, 'tee': 11447, 'family': 3726, 'reading': 9282, 'talking': 11336, 'person': 8472, 'two': 12051, 'conversations': 2332, 'smileyconfusionconfusionconfusionconfusionconfusionconfusionconfusion': 10472, 'online': 8063, 'mclaren': 7015, 'fridayfeeling': 4117, 'tgif': 11503, 'square': 10861, 'enix': 3425, 'bissmillah': 1220, 'ya': 12974, 'allah': 306, 'training': 11892, 'socent': 10643, 'startups': 10920, 'drop': 3156, 'arnd': 591, 'town': 11862, 'basically': 933, 'piss': 8612, 'cup': 2538, 'test': 11489, 'also': 339, 'terrible': 11486, 'complicated': 2230, 'discussions': 2965, 'snapchat': 10609, 'lynettelowe': 6749, 'kikmenow': 6059, 'snapme': 10613, 'hot': 5131, 'amazon': 365, 'kikmeguys': 6058, 'shift': 10169, 'smileyconfusionconfusionconfusionconfusionconfusion': 10470, 'ely': 3352, 'definately': 2746, 'growing': 4600, 'sport': 10841, 'rt': 9694, 'rakyat': 9210, 'writing': 12911, 'since': 10312, 'mentioned': 7108, 'fly': 3982, 'fishing': 3918, 'getting': 4336, 'follows': 4016, 'promoted': 9028, 'posts': 8796, 'cyber': 2575, 'stalked': 10887, 'ourdaughtersourpride': 8177, 'mypapamypride': 7522, 'papa': 8292, 'coach': 2123, 'positive': 8782, 'kha': 6023, 'mention': 7107, 'atleast': 671, 'pigglywiggly': 8579, 'mango': 6870, 'lassis': 6280, 'montys': 7347, 'marvellous': 6935, 'though': 11631, 'suspect': 11215, 'meant': 7030, 'hrs': 5174, 'touch': 11850, 'kepler': 6003, 'chalna': 1850, 'hai': 4718, 'mohamad': 7308, 'thankyou': 11530, 'hazel': 4862, 'food': 4020, 'market': 6916, 'brooklyn': 1508, 'pta': 9069, 'awake': 732, 'okayy': 8003, 'awww': 760, 'ha': 4682, 'surprise': 11200, 'doc': 3022, 'yorkshire': 13093, 'splendid': 10827, 'spam': 10774, 'folder': 3998, 'won': 12827, 'amount': 389, 'travel': 11912, 'nigeria': 7746, 'claim': 2050, 'rted': 9696, 'legs': 6366, 'hurt': 5237, 'bad': 820, 'smileyconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusion': 10477, 'lopez': 6604, 'mine': 7211, 'saturday': 9840, 'thaaanks': 11513, 'puhon': 9086, 'happinessss': 4790, 'tnc': 11748, 'prior': 8974, 'notification': 7866, 'used': 12264, 'probably': 8988, 'funny': 4200, 'fat': 3771, 'cos': 2376, 'ate': 661, 'yuna': 13152, 'tameside': 11346, 'google': 4486, 'account': 67, 'scousers': 9914, 'everything': 3551, 'zoe': 13194, 'mate': 6967, 'literally': 6502, 'theyre': 11588, 'sameee': 9794, 'edgar': 3262, 'updating': 12218, 'log': 6554, 'bring': 1485, 'abes': 28, 'meet': 7050, 'sighs': 10283, 'dreamily': 3131, 'pout': 8810, 'eyes': 3644, 'quacketyquack': 9142, 'sunshinehoran': 11160, 'tweet': 12028, 'happened': 4782, 'phil': 8517, 'em': 3353, 'del': 2758, 'rodders': 9632, 'else': 3346, 'play': 8659, 'newest': 7691, 'gamejam': 4238, 'irish': 5572, 'literature': 6503, 'inaccessible': 5380, 'flipkartfashionfriday': 3962, 'xriya': 12961, 'kareenas': 5945, 'fans': 3746, 'knowing': 6145, 'playing': 8667, 'brain': 1427, 'dots': 3095, 'braindots': 1429, 'fair': 3706, 'rush': 9724, 'either': 3309, 'brandi': 1438, 'selfie': 9990, 'carnival': 1755, 'men': 7095, 'put': 9124, 'masks': 6948, 'xavier': 12938, 'forneret': 4055, 'jennifer': 5743, 'site': 10340, 'free': 4094, 'ball': 863, 'pool': 8744, 'coins': 2145, 'edit': 3264, 'trish': 11948, 'loved': 6650, 'heartsuit': 4902, 'gratefulness': 4545, 'happiness': 4789, 'post': 8788, 'three': 11644, 'things': 11594, 'grateful': 4544, 'comments': 2199, 'wakeup': 12502, 'beside': 1112, 'dirtydirty': 2940, 'sex': 10070, 'lmaooo': 6533, 'facewithsteamfromnosefacewithsteamfromnose': 3671, 'louis': 6637, 'hes': 4966, 'throw': 11651, 'cause': 1796, 'inspire': 5491, 'think': 11597, 'ff': 3848, 'twoofs': 12055, 'gr': 4514, 'wkend': 12800, 'smileyhounds': 10507, 'wish': 12786, 'year': 13019, 'kind': 6080, 'exhausted': 3585, 'liked': 6441, 'words': 12851, 'cheltenham': 1933, 'area': 572, 'lass': 6279, 'kale': 5921, 'crisps': 2491, 'ruin': 9706, 'open': 8087, 'worldwide': 12876, 'fuck': 4170, 'outta': 8193, 'sfvbeta': 10089, 'looks': 6595, 'vantastic': 12318, 'xcylin': 12943, 'bundle': 1589, 'shows': 10251, 'internet': 5532, 'price': 8956, 'realisticly': 9291, 'paying': 8379, 'nethappy': 7675, 'education': 3277, 'powerful': 8883, 'weapon': 12588, 'use': 12263, 'worldnelson': 12874, 'mandela': 6867, 'recent': 9316, 'jampk': 5686, 'dand': 2625, 'chenab': 1936, 'flows': 3976, 'pakistanincredibleindia': 8260, 'teenchoice': 11450, 'choiceinternationalartist': 1980, 'superjunior': 11174, 'caught': 1793, 'first': 3915, 'salmon': 9784, 'checking': 1915, 'enjoyed': 3428, 'superblend': 11167, 'following': 4010, 'youd': 13098, 'project': 9017, 'youthorguk': 13121, 'awesome': 741, 'stream': 11017, 'artist': 608, 'alma': 326, 'mater': 6969, 'highschooldays': 4990, 'clientvisit': 2090, 'faith': 3707, 'christian': 2003, 'school': 9892, 'lizaminnelli': 6524, 'upcoming': 12214, 'uk': 12103, 'appearances': 531, 'smilingfacewithopenmouthsmilingeyessmilingfacewithopenmouthsmilingeyesreally': 10580, 'single': 10317, 'listening': 6496, 'hills': 5006, 'every': 3543, 'beats': 1011, 'wrong': 12915, 'ready': 9284, 'natural': 7604, 'pefumery': 8426, 'workshop': 12870, 'neals': 7629, 'yard': 12997, 'covent': 2423, 'garden': 4262, 'tomorrow': 11794, 'fback': 3792, 'indo': 5425, 'harmos': 4813, 'americano': 376, 'bala': 855, 'remember': 9418, 'aww': 758, 'heads': 4879, 'saw': 9858, 'dark': 2643, 'plz': 8708, 'handshome': 4771, 'juga': 5865, 'hurray': 5235, 'meeting': 7051, 'hate': 4833, 'decide': 2722, 'save': 9851, 'list': 6492, 'show': 10241, 'hiya': 5035, 'exec': 3581, 'loryngoodchambercouk': 6611, 'photos': 8539, 'beforewhen': 1044, 'thx': 11677, 'support': 11181, 'chinas': 1967, 'girlthat': 4390, 'homosexualbut': 5081, 'himher': 5009, 'dhyungbot': 2875, 'give': 4393, 'fam': 3723, 'mind': 7208, 'timetunnel': 11704, 'quite': 9172, 'radio': 9189, 'set': 10052, 'heart': 4891, 'hiii': 4996, 'jack': 5658, 'ily': 5336, 'sparklessparklessparkles': 10783, 'played': 8661, 'dominoes': 3052, 'pub': 9074, 'heated': 4907, 'probhappy': 8989, 'sorry': 10736, 'hastily': 4830, 'typed': 12071, 'bank': 895, 'came': 1691, 'screenshotting': 9923, 'pakistanis': 8261, 'poot': 8755, 'points': 8724, 'dreamteam': 3133, 'gooo': 4489, 'bailey': 843, 'pbbgold': 8387, 'drank': 3123, 'old': 8017, 'gotten': 4507, 'smileyconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusion': 10476, 'welsh': 12648, 'wales': 12510, 'yippee': 13069, 'heartdecorationheartdecoration': 4898, 'bro': 1494, 'lord': 6606, 'sweet': 11245, 'michael': 7164, 'ure': 12245, 'smirkconfusion': 10586, 'bigot': 1173, 'usually': 12276, 'front': 4149, 'squats': 10863, 'dobar': 3021, 'dan': 2618, 'smileythe': 10556, 'brand': 1437, 'heavies': 4913, 'musicology': 7490, 'spend': 10810, 'marathon': 6900, 'iflix': 5303, 'head': 4869, 'officially': 7976, 'graduated': 4523, 'cry': 2512, 'yep': 13042, 'expert': 3609, 'bisexuality': 1216, 'minal': 7206, 'aidzin': 227, 'yo': 13079, 'pi': 8554, 'cook': 2340, 'book': 1354, 'dinner': 2925, 'tough': 11852, 'choice': 1979, 'others': 8162, 'chill': 1959, 'smu': 10601, 'oval': 8197, 'dcoz': 2689, 'basketball': 938, 'player': 8662, 'whahahaha': 12676, 'soamazing': 10635, 'moment': 7317, 'onto': 8069, 'girlmy': 4388, 'wardrobe': 12535, 'smileyconfusionwsalelove': 10489, 'user': 12267, 'farouk': 3763, 'teamred': 11427, 'apparently': 527, 'member': 7086, 'hopefully': 5102, 'depends': 2807, 'greatly': 4557, 'appreciated': 545, 'changes': 1864, 'design': 2826, 'ahhh': 215, 'cinepambata': 2035, 'mechanics': 7035, 'official': 7975, 'entry': 3455, 'form': 4052, 'downloaded': 3106, 'sali': 9782, 'ur': 12243, 'moms': 7326, 'swishers': 11264, 'copping': 2355, 'ducktails': 3180, 'surreal': 11204, 'exposure': 3624, 'sotw': 10749, 'jingly': 5777, 'jangly': 5689, 'loveliness': 6656, 'halesowen': 4741, 'blackcountryfair': 1244, 'street': 11021, 'assessments': 644, 'mental': 7103, 'body': 1326, 'ooze': 8085, 'appeal': 528, 'amassiveoverdoseofships': 356, 'latest': 6293, 'wayenjoy': 12575, 'sitehappy': 10341, 'isis': 5592, 'chan': 1856, 'tamp': 11349, 'noted': 7857, 'pkwalasawaal': 8634, 'gemma': 4300, 'orleans': 8146, 'fever': 3845, 'geskenya': 4329, 'obamainkenya': 7937, 'magicalkenya': 6797, 'smileygreatkenya': 10501, 'allgoodthingske': 309, 'anime': 442, 'umaru': 12117, 'singer': 10315, 'dayan': 2672, 'ships': 10183, 'order': 8126, 'room': 9655, 'car': 1728, 'gone': 4463, 'streaming': 11019, 'suan': 11074, 'hahaha': 4700, 'story': 11006, 'related': 9391, 'labeled': 6208, 'worst': 12884, 'batch': 946, 'principal': 8967, 'due': 3186, 'olover': 8033, 'march': 6902, 'starting': 10916, 'wooftastic': 12841, 'received': 9314, 'necessary': 7637, 'rn': 9603, 'whatever': 12681, 'hat': 4832, 'isonly': 5602, 'success': 11098, 'abstinence': 45, 'amberr': 367, 'wtf': 12923, 'moments': 7320, 'thrown': 11655, 'middle': 7171, 'finished': 3904, 'ended': 3406, 'needs': 7645, 'repeated': 9442, 'relentlessly': 9406, 'approximately': 552, 'oldschool': 8023, 'runescape': 9718, 'daaay': 2586, 'jummamubarik': 5881, 'frnds': 4145, 'stayblessed': 10936, 'blessed': 1270, 'pussycats': 9123, 'main': 6818, 'launched': 6303, 'pretoria': 8942, 'carei': 1746, 'carefahrinahmad': 1742, 'tengkuaaronshah': 11471, 'eksperimencinta': 3313, 'tykksin': 12064, 'videosta': 12386, 'sub': 11077, 'special': 10795, 'paysafecard': 8385, 'giveaway': 4394, 'lue': 6711, 'descconfusion': 2820, 'months': 7344, 'septiceye': 10028, 'hoodie': 5096, 'eeeep': 3282, 'yay': 13003, 'sohappyrightnow': 10665, 'mmmmmm': 7282, 'azzsets': 776, 'babe': 783, 'feedback': 3808, 'gained': 4228, 'value': 12308, 'peaceful': 8405, 'nights': 7756, 'refreshed': 9363, 'dreams': 3132, 'manthan': 6884, 'tuned': 12006, 'freshness': 4108, 'mother': 7381, 'determination': 2846, 'smileymaxfreshmove': 10524, 'girls': 4389, 'loneliest': 6579, 'tattoo': 11378, 'changed': 1863, 'smileywish': 10565, 'fridayand': 4113, 'magnificent': 6804, 'heartsuitheartsuit': 4903, 'achieved': 78, 'rashmi': 9242, 'dedication': 2733, 'inspiration': 5490, 'happyfriday': 4795, 'charlied': 1895, 'rayner': 9259, 'nearly': 7633, 'retweeted': 9513, 'updated': 12216, 'sign': 10287, 'alerts': 289, 'da': 2584, 'dang': 2627, 'rad': 9188, 'fanart': 3734, 'boots': 1371, 'tp': 11869, 'massive': 6956, 'niamh': 7725, 'fennell': 3833, 'journalism': 5836, 'graduate': 4522, 'lands': 6253, 'copying': 2358, 'pasting': 8347, 'tweets': 12035, 'crystal': 2522, 'yesss': 13051, 'ariana': 580, 'selena': 9985, 'gomez': 4459, 'tomlinson': 11789, 'payne': 8381, 'caradelevingne': 1730, 'tulipi': 11997, 'trade': 11876, 'tired': 11721, 'nope': 7840, 'apply': 540, 'iamca': 5268, 'found': 4068, 'mw': 7511, 'aftie': 179, 'goodmorning': 4473, 'whiteant': 12713, 'prokabaddi': 9019, 'koel': 6156, 'mallick': 6843, 'recites': 9326, 'national': 7600, 'anthem': 478, 'dayhappy': 2674, 'yournaturalleaders': 13112, 'youngnaturalleadersmonjuly': 13108, 'cumbria': 2535, 'flockstars': 3969, 'thurjuly': 11669, 'itv': 5637, 'goodnightsleeptight': 4477, 'haveagoodday': 4846, 'leg': 6356, 'september': 10027, 'perhaps': 8466, 'bb': 964, 'promote': 9027, 'full': 4186, 'album': 282, 'fully': 4190, 'intend': 5518, 'write': 12908, 'designs': 2829, 'possible': 8785, 'attack': 677, 'gtd': 4617, 'birds': 1203, 'teamadmicro': 11418, 'fridaydownpour': 4115, 'clears': 2078, 'rohit': 9642, 'queen': 9153, 'smileyotwolgrandtrailer': 10534, 'inspired': 5492, 'sheer': 10152, 'fact': 3688, 'obama': 7936, 'beat': 1004, 'innumerable': 5474, 'odds': 7958, 'ni': 7720, 'shauri': 10139, 'yako': 12990, 'memotohaters': 7094, 'sunday': 11146, 'lots': 6623, 'pampering': 8275, 'twas': 12021, 'cabincrew': 1650, 'interview': 5537, 'langkawi': 6257, 'st': 10874, 'august': 696, 'fulfil': 4184, 'fantasies': 3750, 'backhandindexpointingright': 810, 'backhandindexpointingleftsparklingheart': 809, 'cer': 1824, 'extwelebs': 3636, 'pr': 8891, 'apartment': 509, 'makeover': 6828, 'ideas': 5288, 'factory': 3690, 'living': 6521, 'brilliantly': 1484, 'happyyyyyy': 4798, 'birthdaaaaayyyy': 1207, 'kill': 6064, 'interested': 5526, 'internship': 5533, 'program': 9011, 'sadly': 9754, 'career': 1740, 'page': 8241, 'issue': 5606, 'sad': 9747, 'overwhelmingly': 8213, 'games': 4242, 'aha': 208, 'seeinghappy': 9966, 'beauts': 1020, 'clifton': 2091, 'win': 12760, 'deo': 2801, 'faaaaaabulous': 3651, 'freebiefriday': 4095, 'aluminiumfree': 347, 'stayfresh': 10938, 'john': 5800, 'worries': 12881, 'navigate': 7607, 'arsalan': 603, 'thnks': 11615, 'progrmr': 9016, 'pm': 8709, 'quit': 9171, 'figures': 3867, 'hardly': 4807, 'surprising': 11203, 'roses': 9666, 'emotive': 3382, 'poetry': 8721, 'followed': 4006, 'frequentflyer': 4103, 'end': 3404, 'breaking': 1456, 'apologizing': 522, 'kb': 5979, 'mumbai': 7468, 'londondairy': 6575, 'icecream': 5274, 'experience': 3604, 'urs': 12253, 'past': 8344, 'covers': 2428, 'sins': 10323, 'excited': 3572, 'tears': 11433, 'xxxxxxx': 12973, 'jim': 5773, 'chuckle': 2017, 'shopping': 10214, 'agreed': 205, 'cake': 1662, 'doh': 3038, 'subscribers': 11089, 'needed': 7642, 'reached': 9275, 'scriptninja': 9928, 'dry': 3166, 'scorching': 9905, 'summer': 11137, 'peters': 8492, 'younger': 13106, 'woman': 12823, 'stamina': 10890, 'tomgt': 11787, 'arent': 575, 'expect': 3596, 'anything': 495, 'less': 6385, 'tweeties': 12030, 'kochar': 6154, 'fab': 3652, 'gt': 4614, 'karabom': 5938, 'loners': 6582, 'introducing': 5542, 'word': 12848, 'vs': 12460, 'altering': 341, 'understanding': 12145, 'wordconfusion': 12849, 'spreading': 10852, 'problem': 8990, 'supa': 11164, 'dupa': 3205, 'near': 7630, 'dartmoor': 2650, 'gold': 4454, 'colour': 2176, 'marisa': 6913, 'mikky': 7183, 'ok': 7998, 'someday': 10684, 'girly': 4391, 'dii': 2916, 'forget': 4044, 'sis': 10333, 'smf': 10440, 'ft': 4166, 'japanese': 5696, 'import': 5365, 'kitty': 6118, 'matching': 6965, 'stationary': 10931, 'drawing': 3125, 'close': 2103, 'broken': 1502, 'connecting': 2276, 'specialise': 10796, 'thermal': 11578, 'imaging': 5345, 'surveys': 11209, 'connected': 2275, 'planning': 8648, 'south': 10764, 'korea': 6164, 'facts': 3691, 'planned': 8646, 'scamper': 9873, 'slept': 10406, 'alarm': 276, 'aint': 233, 'mad': 6769, 'chweina': 2024, 'xd': 12944, 'jotzh': 5834, 'waste': 12553, 'place': 8635, 'completely': 2228, 'cover': 2424, 'worth': 12886, 'bringing': 1486, 'coat': 2125, 'beforehand': 1043, 'tho': 11618, 'foh': 3994, 'outside': 8191, 'smileyconfusionconfusionconfusionconfusionconfusionconfusion': 10471, 'holiday': 5060, 'menacing': 7096, 'jojo': 5810, 'accepted': 58, 'savs': 9857, 'guyshope': 4666, 'updates': 12217, 'smileybyeadmin': 10460, 'lukris': 6717, 'faceblowingakiss': 3659, 'momma': 7322, 'bear': 998, 'redheart': 9349, 'redid': 9355, 'grade': 4520, 'vball': 12325, 'atm': 672, 'retweets': 9516, 'building': 1570, 'packing': 8235, 'suitcase': 11124, 'remove': 9427, 'hangcopying': 4774, 'translation': 11904, 'dostoevskys': 3092, 'notes': 7858, 'ubu': 12081, 'voucher': 12456, 'bugatti': 1565, 'potz': 8806, 'bra': 1418, 'knows': 6147, 'yummy': 13147, 'ala': 273, 'bdayt': 989, 'season': 9942, 'mnwreeen': 7285, 'jazz': 5720, 'truck': 11961, 'speak': 10790, 'pbevent': 8389, 'hq': 5170, 'add': 109, 'yoona': 13089, 'hairpin': 4728, 'otp': 8165, 'collection': 2163, 'mastership': 6961, 'honey': 5087, 'paindo': 8246, 'await': 729, 'report': 9453, 'manny': 6880, 'asshole': 646, 'brijresidency': 1480, 'stories': 11002, 'structure': 11043, 'units': 12177, 'encompasses': 3400, 'bhk': 1156, 'flats': 3942, 'honored': 5092, 'currys': 2547, 'clash': 2060, 'milano': 7184, 'okhand': 8006, 'followback': 4005, 'legit': 6364, 'loser': 6614, 'sit': 10339, 'gassed': 4270, 'dead': 2696, 'starsquad': 10910, 'whitemediumstar': 12714, 'mok': 7313, 'awwww': 761, 'cfc': 1834, 'bajwa': 849, 'news': 7694, 'manhappy': 6871, 'utc': 12278, 'flumekaytranadaalunageorge': 3981, 'tickets': 11683, 'kms': 6131, 'certainty': 1831, 'smileyhope': 10505, 'solve': 10678, 'fasteroncomingfistat': 3770, 'hurry': 5236, 'totem': 11848, 'somewhere': 10693, 'later': 6288, 'alice': 297, 'click': 2084, 'checkout': 1916, 'dogs': 3037, 'cat': 1781, 'goodwynsgoodies': 4481, 'ugh': 12093, 'fade': 3692, 'moaning': 7287, 'leeds': 6351, 'jozi': 5846, 'wasnt': 12551, 'fifth': 3859, 'available': 716, 'tix': 11735, 'pa': 8227, 'ba': 777, 'ng': 7708, 'atl': 668, 'coldplay': 2151, 'favorites': 3784, 'scientist': 9897, 'yellow': 13036, 'atlas': 670, 'yein': 13029, 'receiving': 9315, 'selos': 10000, 'jabongatpumaurbanstampedeansgt': 5656, 'timely': 11702, 'arrival': 599, 'waiter': 12496, 'bill': 1182, 'sircustomer': 10327, 'kitchend': 6111, 'title': 11730, 'says': 9865, 'pocket': 8715, 'wripped': 12906, 'jeans': 5728, 'rob': 9611, 'connie': 2278, 'ship': 10179, 'crew': 2482, 'staff': 10881, 'sweetan': 11246, 'ask': 629, 'filming': 3879, 'edmce': 3273, 'mum': 7467, 'begging': 1046, 'sopranos': 10728, 'ukraine': 12105, 'olly': 8030, 'disneyarts': 2978, 'talented': 11330, 'elmoprinssi': 3344, 'salsa': 9786, 'dancing': 2624, 'tell': 11461, 'truth': 11971, 'smileyhappy': 10502, 'pls': 8693, 'interesting': 5527, 'nd': 7623, 'blogiversary': 1288, 'reviews': 9525, 'cutie': 2565, 'bohol': 1330, 'ayeayecaptain': 769, 'briliant': 1481, 'conversation': 2330, 'key': 6015, 'annual': 457, 'productive': 9006, 'far': 3755, 'spinning': 10822, 'voices': 12444, 'yeheyy': 13028, 'pinya': 8602, 'whoooah': 12722, 'trance': 11897, 'lover': 6661, 'favorite': 3782, 'subject': 11082, 'physics': 8551, 'heading': 4874, 'stopped': 10996, 'indian': 5411, 'matter': 6978, 'jungle': 5890, 'accommodate': 64, 'shouting': 10236, 'secret': 9953, 'behind': 1057, 'thishappy': 11609, 'sandroforceo': 9811, 'ceomonth': 1823, 'swag': 11227, 'turn': 12011, 'mia': 7157, 'flow': 3973, 'workinprogress': 12864, 'choosing': 1988, 'colours': 2179, 'smileyjust': 10513, 'landreth': 6252, 'finnigan': 3909, 'loyal': 6680, 'royal': 9686, 'fotoset': 4065, 'reusful': 9519, 'seems': 9971, 'somebody': 10683, 'smileyuneo': 10560, 'selling': 9998, 'deni': 2792, 'uneo': 12150, 'young': 13105, 'understand': 12143, 'muntu': 7476, 'another': 464, 'gem': 4299, 'falcos': 3713, 'supersmash': 11178, 'hotnsexy': 5143, 'friskyfriday': 4141, 'beach': 992, 'tiring': 11723, 'movie': 7401, 'crop': 2497, 'pics': 8564, 'nash': 7588, 'tissues': 11726, 'chocolate': 1976, 'tea': 11411, 'hannibal': 4779, 'episode': 3468, 'hotbed': 5134, 'bush': 1614, 'classicassures': 2065, 'sosaree': 10745, 'thrilled': 11647, 'international': 5531, 'assignment': 649, 'aerial': 154, 'camera': 1692, 'operatorswales': 8093, 'boom': 1362, 'hong': 5089, 'kong': 6162, 'ferry': 3838, 'central': 1816, 'girlfriends': 4385, 'afterwork': 177, 'drink': 3145, 'dj': 3005, 'restoconfusion': 9496, 'drinkt': 3149, 'koffie': 6157, 'stargate': 10905, 'atlantis': 669, 'muaahhh': 7434, 'ohh': 7988, 'hii': 4995, 'seenoevilmonkey': 9973, 'di': 2876, 'nagsend': 7544, 'yung': 13153, 'ko': 6152, 'ulit': 12106, 'nells': 7659, 'smileypartypopperballoon': 10535, 'ugly': 12097, 'leggete': 6362, 'qui': 9163, 'per': 8453, 'la': 6206, 'smileymar': 10523, 'encouraged': 3403, 'employer': 3384, 'board': 1317, 'stuck': 11053, 'poster': 8791, 'sticker': 10969, 'sponsor': 10838, 'prize': 8983, 'tablet': 11294, 'liampayne': 6408, 'lemon': 6374, 'milo': 7202, 'aurini': 700, 'juicebro': 5868, 'pillars': 8585, 'respective': 9483, 'communities': 2210, 'boii': 1332, 'smashingbook': 10435, 'bible': 1164, 'sick': 10271, 'lamo': 6245, 'fangirl': 3742, 'platonic': 8657, 'science': 9896, 'morningits': 7369, 'cooke': 2341, 'supporting': 11184, 'helping': 4946, 'residents': 9476, 'servicewithasmile': 10047, 'sparkles': 10782, 'fams': 3732, 'bloodline': 1294, 'huskies': 5245, 'obituary': 7939, 'advert': 148, 'goofingaround': 4484, 'madness': 6780, 'bollywood': 1335, 'dah': 2599, 'move': 7397, 'nothing': 7862, 'bitterness': 1235, 'anger': 431, 'hatred': 4841, 'towards': 11859, 'pure': 9110, 'indifference': 5420, 'suite': 11126, 'zach': 13161, 'cody': 2139, 'bartram': 927, 'delivered': 2775, 'ac': 51, 'achieving': 80, 'excellence': 3568, 'producer': 9004, 'boggling': 1327, 'fatiguing': 3774, 'baareeq': 781, 'sharing': 10129, 'gamedev': 4237, 'hobby': 5046, 'sa': 9735, 'tweeniefox': 12025, 'accessories': 60, 'products': 9007, 'tamang': 11343, 'hinala': 5011, 'niam': 7724, 'selfieeeee': 9991, 'especially': 3499, 'aling': 301, 'swim': 11259, 'perfection': 8458, 'bout': 1402, 'goodbye': 4469, 'feminists': 3830, 'fought': 4067, 'snobby': 10624, 'bitch': 1222, 'caroline': 1758, 'mighty': 7178, 'fire': 3910, 'threw': 11645, 'making': 6833, 'hbd': 4863, 'teamjkt': 11423, 'follback': 4002, 'jogging': 5799, 'tudachoppa': 11991, 'pro': 8985, 'remote': 9426, 'traveling': 11914, 'newly': 7692, 'listed': 6493, 'ebay': 3254, 'store': 10999, 'disneyinfinity': 2979, 'starwars': 10922, 'characters': 1881, 'preorder': 8920, 'starter': 10914, 'pack': 8232, 'hit': 5028, 'snap': 10608, 'homies': 5079, 'bought': 1399, 'skins': 10372, 'bday': 987, 'chant': 1870, 'jai': 5673, 'italy': 5612, 'times': 11703, 'fast': 3768, 'heeeeyyy': 4921, 'fan': 3733, 'woah': 12810, 'review': 9523, 'phew': 8516, 'overwhelmed': 8211, 'babysmilingfacewithsmilingeyessmilingfacewithsmilingeyessmilingfacewithsmilingeyes': 794, 'whenever': 12696, 'hugs': 5198, 'ang': 422, 'kisses': 6104, 'philippines': 8520, 'entered': 3438, 'package': 8233, 'enter': 3437, 'works': 12869, 'reynaldoz': 9534, 'bruise': 1528, 'rib': 9541, 'grinningfacegrinningfacewithsmilingeyesfacewithtearsofjoysmilingfacewithopenmouthsmilingfacewithopenmouthsmilingeyessmilingfacewithopenmouthcoldsweatwinkingface': 4584, 'worry': 12882, 'tombraider': 11785, 'hype': 5256, 'thejuiceinthemix': 11552, 'rela': 9388, 'low': 6675, 'priority': 8975, 'match': 6964, 'harry': 4816, 'bc': 980, 'opportune': 8103, 'collapse': 2157, 'chaotic': 1874, 'cosas': 2377, 'note': 7856, 'alliteration': 312, 'oppayaa': 8102, 'hows': 5164, 'natgeo': 7593, 'lick': 6420, 'elbow': 3318, 'interestinghappy': 5528, 'emu': 3392, 'stoked': 10982, 'woke': 12816, 'facewithtearsofjoyfacewithtearsofjoy': 3676, 'peoples': 8448, 'approval': 549, 'gods': 4445, 'jisung': 5780, 'kid': 6043, 'sunshine': 11159, 'mm': 7279, 'nicola': 7742, 'brighten': 1478, 'helen': 4932, 'dreyaniks': 3141, 'brian': 1467, 'shipped': 10180, 'weeks': 12626, 'australia': 706, 'ol': 8015, 'bones': 1347, 'creaking': 2462, 'abuti': 50, 'tweetlandlol': 12033, 'android': 416, 'xmas': 12953, 'skyblock': 10379, 'standing': 10897, 'bcause': 981, 'die': 2890, 'sympathy': 11279, 'laugh': 6297, 'nana': 7571, 'xo': 12954, 'unnieeeehappy': 12195, 'nuka': 7907, 'penacova': 8432, 'djset': 3008, 'edm': 3272, 'kizomba': 6120, 'latinhouse': 6295, 'housemusic': 5156, 'portugal': 8778, 'wild': 12750, 'ride': 9554, 'anytime': 497, 'taste': 11370, 'yer': 13045, 'mtn': 7430, 'maganda': 6790, 'short': 10217, 'mistress': 7260, 'saphire': 9822, 'gingi': 4378, 'busy': 1620, 'instagramif': 5499, 'among': 388, 'yetfeel': 13060, 'coconut': 2136, 'sambal': 9793, 'mussels': 7494, 'recipe': 9322, 'kalin': 5922, 'mixcloud': 7267, 'sarcasm': 9831, 'chelsea': 1932, 'useless': 12266, 'thursday': 11671, 'hang': 4773, 'hehe': 4925, 'said': 9765, 'benson': 1098, 'facebook': 3663, 'solid': 10671, 'bella': 1073, 'facewithstuckouttonguewinkingeyeso': 3674, 'maryhicks': 6937, 'kikmeboys': 6057, 'photooftheday': 8538, 'musicbiz': 7489, 'sheskindahot': 10166, 'fleekile': 3950, 'mbalula': 6999, 'repeat': 9441, 'africa': 166, 'mexican': 7147, 'feelings': 3816, 'thatll': 11541, 'scarred': 9878, 'office': 7973, 'donut': 3071, 'foiegras': 3995, 'lovers': 6663, 'despite': 2835, 'weather': 12598, 'wedding': 12610, 'tony': 11811, 'stark': 10908, 'incredible': 5406, 'pictures': 8567, 'poems': 8720, 'bubbling': 1545, 'dale': 2603, 'billion': 1184, 'magical': 6796, 'op': 8086, 'cast': 1777, 'vote': 12452, 'elections': 3324, 'jcreport': 5723, 'lfc': 6403, 'piggin': 8578, 'peace': 8403, 'botanical': 1389, 'soaps': 10637, 'late': 6285, 'upload': 12226, 'freshly': 4107, 'doneweeks': 3059, 'healed': 4881, 'mskittenns': 7422, 'exciting': 3574, 'tobibro': 11751, 'isp': 5603, 'steel': 10946, 'wednesday': 12613, 'likehappy': 6445, 'swear': 11234, 'met': 7139, 'earlier': 3232, 'smiling': 10570, 'cam': 1687, 'loudlycryingfaceredheart': 6635, 'except': 3570, 'mashaallah': 6943, 'french': 4100, 'wwat': 12932, 'france': 4083, 'videos': 12385, 'pen': 8431, 'fixed': 3931, 'yaaaaaaaay': 12976, 'reviewing': 9524, 'beiruting': 1061, 'coffee': 2141, 'panda': 8279, 'eonnie': 3462, 'teeth': 11454, 'favourite': 3786, 'soda': 10653, 'fuller': 4187, 'shit': 10188, 'healthy': 4884, 'beatingheart': 1005, 'rettweet': 9508, 'mvg': 7509, 'valuable': 12307, 'girlfriendconfusion': 4384, 'staying': 10939, 'madrid': 6784, 'starts': 10917, 'ohayoung': 7986, 'sore': 10730, 'bergerac': 1106, 'chants': 1872, 'individuals': 5424, 'excellent': 3569, 'farhappy': 3760, 'adam': 107, 'beachs': 994, 'movies': 7404, 'showsim': 10252, 'suicide': 11120, 'squad': 10860, 'fond': 4018, 'christopher': 2008, 'initially': 5461, 'cocky': 2133, 'prove': 9053, 'attitudes': 685, 'improving': 5373, 'suggest': 11118, 'dates': 2659, 'indeed': 5408, 'happyshappy': 4796, 'intelligent': 5517, 'strong': 11038, 'cs': 2523, 'certain': 1829, 'exams': 3567, 'forgot': 4048, 'homebased': 5069, 'knee': 6133, 'sale': 9780, 'fleur': 3952, 'dress': 3136, 'readystockhijabmartidr': 9285, 'idr': 5297, 'tompolo': 11797, 'aimed': 230, 'stopping': 10997, 'buyers': 1635, 'disappoint': 2947, 'paper': 8293, 'towns': 11863, 'slacking': 10385, 'cracking': 2442, 'particularly': 8320, 'striking': 11030, 'mam': 6846, 'tastes': 11372, 'feytyaz': 3847, 'instant': 5503, 'stiffening': 10972, 'interest': 5525, 'rickyfebs': 9549, 'secrets': 9954, 'grindea': 4579, 'courier': 2413, 'crypts': 2520, 'possibly': 8786, 'arma': 588, 'record': 9333, 'gosh': 4500, 'limbo': 6462, 'retweeting': 9515, 'orchard': 8123, 'art': 605, 'super': 11165, 'karachi': 5939, 'ka': 5905, 'venice': 12338, 'rains': 9200, 'javaid': 5708, 'several': 10066, 'parts': 8328, 'witness': 12794, 'accumulated': 70, 'water': 12562, 'maroon': 6921, 'cocktail': 2129, 'dresses': 3138, 'mididresses': 7173, 'quick': 9164, 'vein': 12335, 'autofocus': 709, 'manual': 6885, 'shooting': 10210, 'veins': 12336, 'crackle': 2443, 'glaze': 4412, 'layout': 6317, 'bomb': 1337, 'socialwebsite': 10648, 'pake': 8256, 'joim': 5804, 'feed': 3807, 'troops': 11952, 'brands': 1441, 'wanting': 12531, 'beauty': 1021, 'mail': 6817, 'ladolcevitainluxembourgcom': 6220, 'prrequest': 9059, 'journorequest': 5840, 'themadstork': 11555, 'shaun': 10138, 'wants': 12533, 'bot': 1388, 'chloe': 1974, 'watched': 12560, 'actress': 96, 'dms': 3017, 'away': 738, 'xoxo': 12956, 'wicked': 12736, 'hola': 5053, 'juan': 5855, 'sending': 10008, 'houston': 5159, 'tx': 12059, 'jenni': 5742, 'stumble': 11064, 'upon': 12229, 'probnice': 8994, 'choker': 1983, 'btw': 1540, 'seouljins': 10022, 'photoset': 8540, 'sadomasochistsparadise': 9758, 'wynter': 12936, 'bottoms': 1398, 'outtake': 8194, 'sadomasochists': 9757, 'paradise': 8300, 'cuties': 2566, 'ty': 12062, 'bby': 977, 'clip': 2098, 'losing': 6617, 'cypher': 2581, 'amen': 373, 'kusuma': 6192, 'planted': 8652, 'allowed': 318, 'corner': 2363, 'addicted': 111, 'itgreat': 5620, 'gurl': 4660, 'suck': 11100, 'editing': 3268, 'turns': 12015, 'owe': 8216, 'daniel': 2632, 'apehappy': 513, 'saarhave': 9740, 'ahead': 213, 'verse': 12353, 'butterfly': 1626, 'part': 8316, 'bonus': 1349, 'mehappy': 7062, 'filled': 3875, 'laughter': 6301, 'sos': 10744, 'yummmyyy': 13146, 'eating': 3251, 'dosa': 3086, 'easier': 3246, 'unless': 12183, 'achi': 77, 'youuu': 13126, 'bawi': 958, 'ako': 265, 'queenesther': 9154, 'sharp': 10134, 'yess': 13050, 'wonder': 12828, 'poldi': 8730, 'cimbom': 2032, 'media': 7039, 'buddy': 1553, 'sigh': 10282, 'bruhhh': 1527, 'daddy': 2592, 'communal': 2207, 'knowledge': 6146, 'attention': 683, 'questions': 9160, 'tb': 11395, 'credit': 2471, 'departments': 2804, 'anz': 503, 'extreme': 3633, 'offshoring': 7980, 'absolutely': 44, 'classic': 2064, 'smileygottolovebanks': 10500, 'yup': 13156, 'inshaaallah': 5482, 'dua': 3172, 'thru': 11656, 'hatreds': 4842, 'aameenall': 13, 'coca': 2127, 'cola': 2146, 'fanta': 3749, 'pepsi': 8452, 'sprite': 10859, 'alls': 322, 'sweeeeeeeety': 11244, 'welcometweet': 12640, 'psygustokita': 9067, 'gaming': 4246, 'setup': 10060, 'wet': 12661, 'feet': 3819, 'carpet': 1760, 'toworry': 11865, 'judgmental': 5861, 'hypocritical': 5261, 'narcissist': 7579, 'jumpsuit': 5888, 'bt': 1535, 'denimshappy': 2794, 'verge': 12346, 'owl': 8217, 'break': 1453, 'constant': 2289, 'welcomed': 12638, 'anairline': 401, 'run': 9716, 'sia': 10264, 'patel': 8350, 'counting': 2399, 'brilliant': 1483, 'parent': 8306, 'teacher': 11414, 'finding': 3892, 'started': 10913, 'comparative': 2215, 'religion': 9410, 'rant': 9231, 'student': 11055, 'benchers': 1089, 'porsche': 8773, 'paddock': 8238, 'budapestgp': 1551, 'johnyherbert': 5803, 'rolling': 9647, 'porschesupercup': 8774, 'waking': 12504, 'koyal': 6167, 'melodiesan': 7081, 'unexpected': 12153, 'create': 2467, 'memories': 7091, 'students': 11056, 'eps': 3471, 'catch': 1784, 'wirh': 12782, 'arc': 564, 'wolves': 12821, 'birthdays': 1213, 'fulfill': 4185, 'desireameen': 2830, 'kca': 5982, 'votejktid': 12454, 'helpinggroupdms': 4947, 'quote': 9175, 'weird': 12633, 'dp': 3111, 'wife': 12742, 'kids': 6048, 'poor': 8751, 'chicks': 1952, 'guide': 4641, 'zonzofox': 13197, 'bhaiya': 1149, 'brother': 1513, 'lucky': 6705, 'dog': 3033, 'patty': 8367, 'elaborate': 3316, 'kuching': 6183, 'rate': 9249, 'merdeka': 7119, 'palace': 8265, 'hotel': 5137, 'suites': 11127, 'plusmiles': 8706, 'service': 10045, 'hahahaa': 4701, 'marm': 6919, 'mean': 7023, 'nex': 7701, 'safe': 9762, 'gwd': 4672, 'okok': 8013, 'idiot': 5292, 'chaerin': 1837, 'unnie': 12194, 'viable': 12361, 'alternative': 342, 'nowadays': 7875, 'pass': 8336, 'ip': 5560, 'tombow': 11784, 'abt': 46, 'friyay': 4143, 'xxx': 12968, 'smug': 10602, 'marrickville': 6923, 'public': 9077, 'ten': 11468, 'ago': 200, 'eighteen': 3305, 'auvssscr': 713, 'ncaaseason': 7620, 'kills': 6070, 'slow': 10424, 'trying': 11973, 'popsicles': 8762, 'soft': 10660, 'melt': 7084, 'mouth': 7395, 'thankyouuu': 11533, 'dianna': 2882, 'ngga': 7712, 'usah': 12261, 'dipikirin': 2927, 'elah': 3317, 'easily': 3247, 'whos': 12724, 'entp': 3449, 'killin': 6068, 'meme': 7089, 'worthy': 12888, 'shot': 10225, 'emon': 3376, 'decent': 2721, 'outdoor': 8181, 'rave': 9254, 'pisses': 8615, 'smileyive': 10512, 'services': 10046, 'dv': 3215, 'aku': 270, 'bakal': 850, 'liat': 6412, 'kak': 5919, 'merry': 7124, 'tv': 12020, 'outfit': 8182, 'hashtaggt': 4827, 'fashionfriday': 3767, 'uploading': 12228, 'wanted': 12530, 'anglenelson': 434, 'cheap': 1906, 'mymonsoonstory': 7521, 'tree': 11920, 'skin': 10368, 'clearing': 2076, 'lotion': 6622, 'moisturizing': 7311, 'important': 5366, 'monsoon': 7336, 'acker': 83, 'whoop': 12723, 'romantic': 9651, 'valencia': 12302, 'weekendenjoy': 12619, 'daaru': 2589, 'party': 8329, 'chaddi': 1836, 'bros': 1511, 'beginning': 1049, 'means': 7029, 'wonderfulgreat': 12831, 'closely': 2105, 'trimmed': 11941, 'pubes': 9076, 'jaylin': 5716, 'es': 3488, 'mi': 7156, 'tio': 11715, 'sinaloa': 10311, 'arre': 597, 'stylish': 11073, 'trendy': 11927, 'kim': 6072, 'north': 7846, 'fabfriday': 3653, 'facetime': 3668, 'calum': 1685, 'constantly': 2290, 'messaging': 7132, 'announce': 452, 'filbarbarian': 3871, 'beer': 1036, 'talks': 11339, 'arms': 590, 'testicle': 11491, 'light': 6435, 'social': 10644, 'katerina': 5963, 'maniataki': 6874, 'ahh': 214, 'alright': 337, 'worthwhile': 12887, 'judging': 5860, 'tech': 11441, 'windows': 12764, 'asking': 634, 'stupid': 11067, 'loving': 6674, 'plugin': 8703, 'bass': 940, 'slap': 10387, 'doors': 3080, 'vipgeneralconfusion': 12413, 'seats': 9947, 'early': 3235, 'actshappy': 98, 'london': 6573, 'babyhappy': 792, 'toptravelcentar': 11832, 'ttctop': 11983, 'lux': 6732, 'luxurytravel': 6737, 'beograd': 1102, 'srbija': 10866, 'putovanja': 9126, 'wendy': 12652, 'provide': 9056, 'fresh': 4105, 'drainage': 3119, 'homebound': 5070, 'hahahays': 4712, 'yeeeeah': 13022, 'moar': 7288, 'kittehs': 6115, 'incoming': 5400, 'towers': 11861, 'yippeee': 13070, 'scrummy': 9931, 'recipes': 9323, 'bio': 1194, 'moved': 7398, 'mcpe': 7018, 'vainglory': 12300, 'driver': 3151, 'lilydale': 6460, 'fss': 4165, 'raise': 9202, 'magicalmysterytour': 6798, 'chek': 1928, 'rules': 9711, 'weebly': 12614, 'donetsk': 3058, 'smirkconfusionconfusion': 10587, 'earth': 3242, 'ros': 9662, 'followingif': 4012, 'printed': 8970, 'personalised': 8475, 'wrap': 12903, 'cardsstationery': 1738, 'adrian': 137, 'parcel': 8304, 'tuesday': 11992, 'pris': 8976, 'wz': 12937, 'pattern': 8366, 'cuttingmaking': 2570, 'buttonhole': 1628, 'finishing': 3905, 'designer': 2828, 'famous': 3731, 'clients': 2089, 'keeps': 5995, 'alive': 303, 'trial': 11931, 'spm': 10830, 'dinooo': 2926, 'cardio': 1736, 'steak': 10940, 'cue': 2531, 'photo': 8532, 'laptop': 6271, 'putting': 9128, 'guinea': 4644, 'pigs': 8580, 'smileylt': 10522, 'bestfriendsfriends': 1123, 'salamat': 9779, 'mga': 7152, 'naggreet': 7541, 'guise': 4646, 'godbless': 4441, 'crush': 2510, 'apple': 537, 'eye': 3638, 'ga': 4220, 'models': 7302, 'deserve': 2823, 'charles': 1892, 'workhard': 12858, 'instagram': 5498, 'ys': 13133, 'aiden': 226, 'forritwah': 4056, 'teabread': 11412, 'baconbutter': 819, 'jay': 5712, 'afang': 156, 'soup': 10760, 'semo': 10006, 'brb': 1449, 'forced': 4034, 'lbloggers': 6322, 'pbloggers': 8390, 'bookreview': 1358, 'toddlerlife': 11764, 'tato': 11376, 'bulat': 1572, 'discussing': 2964, 'shared': 10124, 'suggestion': 11119, 'concerned': 2239, 'snake': 10605, 'performed': 8463, 'con': 2235, 'todayyyyy': 11762, 'max': 6987, 'gaza': 4282, 'retweet': 9512, 'delsigthis': 2779, 'logging': 6556, 'bbb': 965, 'tried': 11938, 'peacefully': 8406, 'legal': 6358, 'age': 189, 'shant': 10119, 'ditching': 2998, 'toryhappy': 11841, 'bajrangibhaijaanhighestweek': 847, 'sokay': 10668, 'andythank': 420, 'youand': 13097, 'return': 9509, 'tuitutil': 11994, 'bud': 1550, 'ass': 641, 'learn': 6335, 'takeaways': 11316, 'instead': 5504, 'hr': 5171, 'genial': 4312, 'competition': 2221, 'naruto': 7585, 'yosh': 13095, 'procrastinating': 9001, 'plus': 8704, 'sorting': 10742, 'boll': 1333, 'telling': 11463, 'kfc': 6018, 'itunes': 5636, 'dedicatedfan': 2731, 'purpleheartpurpleheartpurpleheartpurpleheart': 9114, 'daft': 2596, 'teething': 11455, 'troubles': 11957, 'huxley': 5247, 'basket': 937, 'ben': 1086, 'sent': 10018, 'gamer': 4240, 'trainfollow': 11891, 'meretweet': 7121, 'thisfollow': 11607, 'retweetedgain': 9514, 'active': 93, 'distance': 2987, 'propose': 9043, 'suitable': 11123, 'comment': 2198, 'alternatives': 344, 'final': 3881, 'tgifhappy': 11504, 'stockholm': 10979, 'zack': 13163, 'destroying': 2841, 'heel': 4922, 'claws': 2069, 'moviewill': 7405, 'blonde': 1291, 'box': 1408, 'cheerios': 1922, 'seeds': 9963, 'problems': 8993, 'cutest': 2563, 'ffback': 3849, 'cooder': 2339, 'spotify': 10845, 'weve': 12664, 'vc': 12326, 'careers': 1741, 'tgp': 11508, 'races': 9182, 'average': 719, 'joes': 5798, 'bluejays': 1302, 'vinylbear': 12410, 'pals': 8269, 'furbabys': 4203, 'luffs': 6712, 'mega': 7056, 'retail': 9503, 'launch': 6302, 'whsmith': 12726, 'ps': 9062, 'keeping': 5993, 'purpleheart': 9113, 'shannon': 10118, 'closing': 2111, 'redecorate': 9346, 'bob': 1321, 'ellie': 3340, 'mairi': 6821, 'workouts': 12867, 'impairs': 5360, 'uggghhhh': 12092, 'dam': 2606, 'dun': 3198, 'eczema': 3259, 'sufferers': 11111, 'umji': 12119, 'ndee': 7625, 'bargainsuk': 914, 'pleasure': 8685, 'publilius': 9079, 'syrus': 11288, 'fear': 3800, 'death': 2706, 'dreaded': 3127, 'fell': 3824, 'fuk': 4183, 'unblock': 12134, 'youll': 13102, 'manually': 6886, 'tweak': 12022, 'php': 8544, 'fall': 3715, 'oomf': 8076, 'pippa': 8605, 'hschool': 5176, 'bus': 1612, 'uses': 12270, 'cardi': 1735, 'everyday': 3545, 'everytime': 3554, 'laughingsmiling': 6300, 'hk': 5036, 'whyd': 12728, 'acorn': 86, 'originally': 8144, 'apart': 507, 'cpuconfusion': 2437, 'considerably': 2284, 'advanced': 144, 'onair': 8052, 'bay': 959, 'hold': 5055, 'river': 9589, 'rescue': 9469, 'mutt': 7504, 'wondered': 12829, 'confirm': 2252, 'delivery': 2776, 'sanjaya': 9817, 'switched': 11266, 'lap': 6268, 'optimized': 8112, 'lu': 6697, 'straight': 11009, 'omg': 8044, 'tweetofthedecade': 12034, 'class': 2062, 'happiest': 4787, 'fridays': 4124, 'bbmme': 971, 'pindfea': 8592, 'bbm': 969, 'pin': 8590, 'bbmpin': 972, 'addmeonbbm': 119, 'addme': 118, 'todays': 11758, 'normal': 7844, 'menu': 7110, 'married': 6924, 'glenn': 4416, 'decker': 2728, 'height': 4929, 'sculptors': 9932, 'pillar': 8584, 'storegood': 11000, 'released': 9403, 'ti': 11679, 'dota': 3094, 'image': 5342, 'mentions': 7109, 'nudge': 7901, 'spot': 10844, 'tasty': 11373, 'plant': 8651, 'hilly': 5007, 'cycle': 2576, 'england': 3421, 'scotlandismassive': 9910, 'gen': 4302, 'vikk': 12398, 'fna': 3989, 'mombasa': 7316, 'feels': 3817, 'tukutanemombasa': 11995, 'reasonstovisitmombasa': 9305, 'karibumombasa': 5948, 'hanbin': 4763, 'dseems': 3167, 'giving': 4401, 'banner': 897, 'certainly': 1830, 'goosnight': 4496, 'kindly': 6086, 'familiar': 3724, 'jealous': 5727, 'sound': 10755, 'hitting': 5033, 'tent': 11475, 'yea': 13013, 'cozy': 2433, 'chilled': 1960, 'phenomenal': 8515, 'collab': 2153, 'gave': 4276, 'birth': 1206, 'facewithtearsofjoy': 3675, 'behaves': 1054, 'monster': 7337, 'doesntconfusion': 3032, 'spree': 10853, 'tank': 11356, 'outstanding': 8192, 'donation': 3056, 'contestkiduniya': 2311, 'mfundo': 7151, 'balboa': 857, 'oche': 7953, 'hun': 5220, 'inner': 5469, 'nerd': 7669, 'tamed': 11345, 'insidious': 5486, 'logic': 6557, 'math': 6973, 'channel': 1868, 'continues': 2316, 'doubt': 3097, 'itconfusion': 5615, 'subs': 11088, 'teoh': 11478, 'forgiven': 4047, 'wonderfuls': 12832, 'mannerfuls': 6879, 'yhoooooo': 13065, 'ngi': 7713, 'mood': 7349, 'pushing': 9121, 'limits': 6466, 'obakeng': 7935, 'stop': 10993, 'goats': 4438, 'alhamdullilah': 296, 'talkhappy': 11335, 'pebble': 8415, 'engrossed': 3424, 'bing': 1191, 'screaming': 9919, 'whole': 12720, 'wide': 12738, 'globeshowingamericasglobeshowingamericasredheartredheartredheart': 4419, 'anguishedface': 437, 'wat': 12556, 'muahhh': 7436, 'smileymay': 10525, 'bless': 1269, 'pausetime': 8371, 'cars': 1766, 'drifting': 3144, 'loose': 6601, 'scopidf': 9903, 'pay': 8374, 'campaign': 1697, 'kickstarter': 6042, 'article': 606, 'absolute': 43, 'jenna': 5740, 'bellybutton': 1078, 'innie': 5470, 'outie': 8185, 'sam': 9790, 'delish': 2773, 'ranges': 9228, 'supermarkets': 11175, 'joselito': 5830, 'freya': 4109, 'nth': 7898, 'latepost': 6287, 'lupet': 6725, 'mo': 7286, 'eric': 3477, 'askaman': 630, 'helpful': 4944, 'alternatively': 343, 'webz': 12608, 'oops': 8083, 'theyll': 11587, 'realise': 9287, 'anymore': 488, 'carmel': 1753, 'kko': 6124, 'decisions': 2726, 'nicapapa': 7729, 'matt': 6976, 'probs': 8995, 'honestly': 5084, 'explain': 3614, 'relationship': 9393, 'pick': 8558, 'employers': 3385, 'wellhappy': 12645, 'tessnzachcute': 11488, 'paperboys': 8294, 'papers': 8295, 'honest': 5083, 'reassured': 9306, 'personal': 8474, 'guysss': 4668, 'happen': 4780, 'mubank': 7437, 'dongwoos': 3064, 'bright': 1476, 'tommorow': 11791, 'newyork': 7700, 'magic': 6795, 'lollll': 6568, 'twinx': 12044, 'path': 8352, 'firmansyahbl': 3914, 'usual': 12275, 'procedure': 8996, 'grim': 4577, 'fandango': 3739, 'ordinary': 8130, 'extraordinary': 3629, 'bos': 1383, 'birmingham': 1205, 'oracle': 8117, 'samosas': 9799, 'fireball': 3911, 'shoe': 10204, 'serves': 10044, 'sushi': 11214, 'shoeshi': 10206, 'flat': 3941, 'lymond': 6748, 'philippa': 8519, 'novel': 7873, 'tara': 11361, 'aur': 699, 'han': 4760, 'imran': 5374, 'khan': 6026, 'agaaaain': 182, 'sir': 10326, 'doli': 3041, 'siregar': 10328, 'ninh': 7770, 'size': 10352, 'gems': 4301, 'geekiest': 4292, 'geeks': 4293, 'wallets': 12521, 'request': 9464, 'persons': 8479, 'covering': 2427, 'rally': 9211, 'rotate': 9672, 'sucks': 11103, 'directionhappy': 2935, 'driving': 3154, 'eek': 3283, 'red': 9344, 'suitcasebeijing': 11125, 'china': 1966, 'meni': 7099, 'tebrik': 11440, 'etdi': 3512, 'smileyconfusioncongratulations': 10482, 'forevergrowingheart': 4043, 'rod': 9631, 'tame': 11344, 'embracing': 3360, 'actor': 95, 'aplomb': 517, 'foreveralone': 4042, 'jobs': 5794, 'mysummer': 7525, 'hahahaha': 4705, 'wear': 12590, 'uniform': 12171, 'evil': 3558, 'owwwwchoo': 8225, 'chweet': 2023, 'shorthaired': 10220, 'oscar': 8153, 'realized': 9295, 'harmony': 4812, 'judge': 5859, 'denerivery': 2791, 'kiksexting': 6062, 'kikkomansabor': 6055, 'killer': 6066, 'henessydiaries': 4955, 'journey': 5837, 'band': 879, 'convo': 2337, 'vault': 12322, 'expanding': 3595, 'vinny': 12408, 'money': 7330, 'hahahahaha': 4706, 'cents': 1821, 'repay': 9440, 'debt': 2718, 'smileyi': 10508, 'kirmizi': 6099, 'evet': 3556, 'wifi': 12744, 'lifestyle': 6430, 'qatarday': 9138, 'sunwithfacesunwithfacesunwithface': 11162, 'innovate': 5472, 'talked': 11334, 'volunteering': 12450, 'saran': 9828, 'drama': 3122, 'genre': 4314, 'romance': 9650, 'comedyhappy': 2187, 'leanneriner': 6334, 'porno': 8770, 'weloveyounamjoon': 12647, 'homey': 5077, 'kenya': 6002, 'emotional': 3379, 'roller': 9646, 'coaster': 2124, 'aspect': 639, 'najam': 7554, 'sethis': 10054, 'confession': 2248, 'ad': 105, 'pricelessantique': 8958, 'takesonetoknowone': 11321, 'extra': 3628, 'ucount': 12087, 'ji': 5768, 'books': 1359, 'turkish': 12010, 'knew': 6135, 'crap': 2451, 'burn': 1604, 'airways': 247, 'trusting': 11970, 'airline': 241, 'deliver': 2774, 'sexy': 10080, 'backhandindexpointingleftbeatingheart': 805, 'yello': 13035, 'race': 9181, 'gail': 4226, 'yael': 12986, 'lesson': 6387, 'en': 3395, 'mis': 7239, 'manos': 6881, 'holding': 5057, 'hands': 4770, 'managers': 6863, 'prettiest': 8944, 'readers': 9281, 'rose': 9664, 'dnt': 3018, 'minho': 7218, 'ideal': 5287, 'type': 12070, 'weekly': 12625, 'idol': 5294, 'pose': 8779, 'gtlt': 4628, 'shortlist': 10221, 'dominion': 3050, 'picnic': 8563, 'tmrw': 11746, 'nobody': 7795, 'jummamubarak': 5880, 'shower': 10245, 'shalwarkameez': 10110, 'itter': 5634, 'offer': 7968, 'jummaprayer': 5882, 'aus': 701, 'af': 155, 'display': 2982, 'enabled': 3397, 'company': 2214, 'peeps': 8425, 'tweeps': 12026, 'folow': 4017, 'grace': 4517, 'ohhh': 7989, 'teaser': 11436, 'airecs': 237, 'acid': 81, 'mouse': 7394, 'ep': 3463, 'including': 5399, 'robin': 9618, 'rough': 9676, 'control': 2325, 'remixes': 9425, 'encourage': 3402, 'changing': 1865, 'oe': 7962, 'rts': 9697, 'faves': 3779, 'toss': 11843, 'ladies': 6219, 'asmita': 638, 'welcomesheep': 12639, 'library': 6416, 'stores': 11001, 'mr': 7412, 'climbed': 2095, 'cuddle': 2527, 'jilla': 5770, 'opening': 8091, 'headlining': 4876, 'jumma': 5878, 'mubarik': 7439, 'spent': 10812, 'total': 11845, 'congratz': 2272, 'bitches': 1223, 'contribution': 2323, 'yuppiieeehappy': 13157, 'smileyalienthoughthappyalien': 10450, 'crowd': 2503, 'loudest': 6627, 'garydid': 4268, 'particular': 8319, 'attraction': 686, 'date': 2658, 'supprt': 11190, 'zyrophobia': 13205, 'savage': 9849, 'eshop': 3494, 'cleanse': 2073, 'scam': 9872, 'ridden': 9553, 'vyapam': 12471, 'renamedwhat': 9430, 'tongue': 11801, 'sticking': 10970, 'cheeky': 1919, 'playful': 8665, 'blowing': 1297, 'raspberryd': 9244, 'pleased': 8676, 'waves': 12571, 'couch': 2386, 'eight': 3304, 'wondering': 12833, 'dodged': 3028, 'explanation': 3616, 'proving': 9057, 'grow': 4599, 'bag': 835, 'sanza': 9821, 'truman': 11968, 'places': 8637, 'coloured': 2178, 'aggregates': 195, 'tend': 11469, 'yaa': 12975, 'slr': 10428, 'som': 10681, 'honoured': 5093, 'hehehe': 4926, 'view': 12391, 'geary': 4289, 'elsehappy': 3347, 'explorers': 3619, 'bird': 1202, 'wayanadan': 12574, 'forests': 4040, 'smileywayanadphoto': 10562, 'srijith': 10867, 'vvisit': 12469, 'website': 12605, 'whispered': 12709, 'lying': 6745, 'pokemon': 8726, 'flipkartfashionfridayhey': 3963, 'dazzle': 2683, 'urself': 12254, 'double': 3096, 'flared': 3938, 'black': 1242, 'forideas': 4050, 'views': 12395, 'browse': 1522, 'bored': 1376, 'becoming': 1031, 'female': 3828, 'tour': 11853, 'manager': 6862, 'delve': 2782, 'muchhh': 7447, 'tmr': 11745, 'breakfast': 1455, 'holidays': 5061, 'gl': 4403, 'tonights': 11807, 'count': 2396, 'smileyconfusionconfusionhappy': 10480, 'litey': 6504, 'manuella': 6888, 'maine': 6819, 'abhi': 29, 'tak': 11314, 'ye': 13012, 'nhi': 7717, 'dekhi': 2757, 'promos': 9026, 'se': 9936, 'welcoming': 12641, 'xpax': 12958, 'lisa': 6489, 'aboard': 35, 'institution': 5505, 'nc': 7619, 'guy': 4664, 'cheese': 1924, 'overload': 8204, 'pizza': 8630, 'mcfloat': 7010, 'fudge': 4179, 'sandae': 9806, 'munchkins': 7474, 'granny': 4536, 'baller': 865, 'lil': 6454, 'faded': 3693, 'chain': 1839, 'smileywhat': 10563, 'everybody': 3544, 'ought': 8175, 'events': 3535, 'eventsorg': 3536, 'sort': 10739, 'champions': 1855, 'letter': 6397, 'saying': 9864, 'approving': 551, 'unique': 12173, 'affaraid': 158, 'dearslim': 2705, 'role': 9643, 'billy': 1188, 'character': 1880, 'labs': 6212, 'ovh': 8214, 'maxi': 6988, 'bunch': 1588, 'acc': 55, 'sprit': 10858, 'yous': 13114, 'til': 11696, 'severe': 10067, 'hammies': 4756, 'smileyyep': 10568, 'livefreedom': 6512, 'pistolsgood': 8616, 'unlocked': 12187, 'bemeapp': 1084, 'thumbs': 11664, 'beme': 1083, 'figured': 3866, 'bemecode': 1085, 'proudtobeme': 9052, 'round': 9677, 'au': 688, 'calm': 1683, 'kepo': 6005, 'names': 7568, 'dominguez': 3049, 'spence': 10809, 'luckily': 6704, 'clearly': 2077, 'heiyo': 4931, 'dudaftiehappy': 3181, 'smileybreaktym': 10458, 'fatal': 3772, 'dangerous': 2628, 'terms': 11485, 'health': 4882, 'outraged': 8190, 'muna': 7472, 'magstart': 6808, 'smileysalute': 10546, 'thq': 11637, 'continous': 2314, 'jayamravi': 5714, 'thalaivar': 11518, 'brohappy': 1500, 'pt': 9068, 'heiya': 4930, 'grab': 4515, 'manutdnews': 6890, 'av': 714, 'gd': 4285, 'wknd': 12801, 'ear': 3230, 'meconfusion': 7038, 'roll': 9644, 'yday': 13011, 'hxh': 5252, 'besides': 1113, 'vids': 12388, 'badass': 821, 'killua': 6071, 'scenes': 9882, 'suffering': 11112, 'appreciating': 546, 'feeding': 3809, 'jabongatpumaurbanstampede': 5655, 'noticing': 7865, 'efforts': 3290, 'unappreciated': 12132, 'gracious': 4519, 'nailedit': 7549, 'ourdisneyinfinity': 8178, 'mary': 6936, 'jillmill': 5772, 'webcam': 12603, 'teens': 11452, 'elfindelmundo': 3329, 'sexi': 10075, 'mainly': 6820, 'mt': 7426, 'favour': 3785, 'dancetastic': 2623, 'satyajit': 9843, 'rays': 9261, 'porosh': 8772, 'pathor': 8354, 'situationgoldbugs': 10347, 'wine': 12767, 'bottles': 1396, 'spill': 10817, 'jazmin': 5719, 'bonilla': 1348, 'stars': 10909, 'hollywood': 5064, 'rofl': 9636, 'shades': 10097, 'grey': 4571, 'netsec': 7678, 'edition': 3269, 'ne': 7628, 'kev': 6012, 'apology': 523, 'fangirled': 3743, 'cruuzzy': 2511, 'sisters': 10338, 'told': 11775, 'misses': 7248, 'youn': 13104, 'unlisted': 12186, 'hickey': 4979, 'dads': 2593, 'hocking': 5047, 'mamma': 6853, 'human': 5213, 'beings': 1060, 'mere': 7120, 'brainu': 1431, 'holistic': 5062, 'cosmovisiontoo': 2378, 'narrowminded': 7583, 'isnt': 5598, 'charging': 1889, 'cess': 1833, 'alix': 304, 'tweeting': 12032, 'quan': 9149, 'tips': 11719, 'naaahhh': 7532, 'duh': 3188, 'emesh': 3367, 'hilarious': 5001, 'kath': 5964, 'kia': 6036, 'tango': 11354, 'tracerequest': 11870, 'homie': 5078, 'dassy': 2653, 'fwm': 4214, 'selamat': 9979, 'sorelike': 10731, 'model': 7301, 'nichola': 7734, 'malta': 6844, 'ticket': 11682, 'gto': 4630, 'tomorrowland': 11795, 'incall': 5390, 'smileywhy': 10564, 'babyfaceblowingakissfaceblowingakissfaceblowingakiss': 790, 'shobs': 10199, 'incomplete': 5402, 'smileyconfusionfriends': 10483, 'barkada': 916, 'silverstone': 10299, 'pull': 9089, 'asked': 631, 'bookstore': 1361, 'lately': 6286, 'ganna': 4255, 'tmazur': 11742, 'confusionconfusion': 2260, 'hillary': 5005, 'clinton': 2097, 'court': 2418, 'notice': 7863, 'slice': 10408, 'lifeso': 6429, 'hidden': 4980, 'untapped': 12207, 'taking': 11323, 'mca': 7005, 'gettin': 4335, 'hella': 4935, 'wana': 12527, 'bandz': 886, 'asaphappy': 617, 'donington': 3065, 'park': 8311, 'hoping': 5109, 'drives': 3153, 'merci': 7117, 'bien': 1166, 'mon': 7327, 'amie': 379, 'vacationhappy': 12295, 'pitbull': 8618, 'fri': 4110, 'annyeong': 458, 'oppa': 8099, 'joyful': 5843, 'indonesian': 5429, 'elf': 3328, 'mcgee': 7013, 'flight': 3959, 'bf': 1141, 'jennyjean': 5744, 'kikchat': 6052, 'sabadodeganarseguidores': 9742, 'sexysasunday': 10085, 'giveawaydms': 4395, 'marseille': 6926, 'ganda': 4249, 'frontalot': 4150, 'wilsey': 12756, 'director': 2936, 'skypeconfusion': 10383, 'fnaf': 3990, 'steam': 10943, 'mustafa': 7497, 'syedraza': 11277, 'assured': 656, 'current': 2544, 'goin': 4450, 'sweety': 11252, 'hugsx': 5199, 'bubbles': 1544, 'strongest': 11040, 'spots': 10846, 'barnstaplebideford': 922, 'abit': 31, 'road': 9605, 'roblox': 9622, 'credits': 2472, 'rocroglodyysbro': 9630, 'hiring': 5024, 'ree': 9357, 'aspetti': 640, 'boring': 1379, 'chicken': 1949, 'chips': 1972, 'cupboards': 2539, 'empty': 3388, 'jamie': 5684, 'ian': 5269, 'latin': 6294, 'beauties': 1013, 'asian': 626, 'version': 12354, 'fave': 3778, 'vaing': 12299, 'kikgirl': 6053, 'orgasm': 8139, 'phonesex': 8531, 'spacers': 10769, 'felicity': 3823, 'smoak': 10593, 'redheartglassesheartwitharrow': 9352, 'children': 1957, 'psychopaths': 9066, 'spoile': 10834, 'dimples': 2919, 'contemplating': 2305, 'indie': 5416, 'route': 9679, 'jsl': 5851, 'gotcha': 4503, 'kina': 6078, 'donna': 3066, 'smileyso': 10551, 'reachability': 9274, 'bug': 1564, 'therep': 11574, 'tipped': 11717, 'jk': 5783, 'bitter': 1234, 'airs': 246, 'naggy': 7542, 'anal': 402, 'child': 1955, 'phappy': 8510, 'vidcon': 12379, 'anxious': 485, 'shaking': 10108, 'dad': 2590, 'tipping': 11718, 'smoke': 10594, 'butgood': 1622, 'white': 12712, 'grandpa': 4534, 'prolly': 9020, 'backhandindexpointingleftfire': 807, 'yeomans': 13041, 'stashed': 10925, 'closerchasing': 2107, 'specs': 10802, 'chasing': 1900, 'savesso': 9854, 'yesthe': 13058, 'walls': 12523, 'ears': 3240, 'angel': 425, 'mochamichelle': 7296, 'iphne': 5561, 'simply': 10307, 'bi': 1159, 'prob': 8987, 'tamaki': 11342, 'background': 803, 'backgrounds': 804, 'sealed': 9940, 'lips': 6485, 'wearing': 12592, 'braces': 1422, 'tonguetiedlt': 11802, 'maggie': 6794, 'afraid': 165, 'mull': 7463, 'limited': 6465, 'nilhappy': 7766, 'glasgow': 4409, 'netball': 7672, 'thistles': 11612, 'thistlelove': 11611, 'effect': 3284, 'minecraft': 7213, 'peopleits': 8447, 'drew': 3140, 'plshappy': 8695, 'delicious': 2768, 'stadium': 10880, 'muddled': 7452, 'racket': 9187, 'isolating': 5601, 'fas': 3764, 'pune': 9099, 'participate': 8317, 'icecreammaster': 5275, 'group': 4595, 'channels': 1869, 'letitgrow': 6391, 'huhu': 5203, 'shet': 10167, 'desk': 2831, 'oo': 8073, 'orz': 8149, 'stash': 10924, 'problemmmmmmm': 8992, 'jaebumjb': 5670, 'english': 3423, 'yeeaayy': 13021, 'alhamdulillah': 295, 'mosthappy': 7378, 'smilingfacewithsmilingeyes': 10582, 'amin': 382, 'weed': 12615, 'definition': 2752, 'crowdfunding': 2504, 'goal': 4434, 'walk': 12512, 'hellooooooooo': 4939, 'selections': 9983, 'lynne': 6750, 'buffer': 1562, 'button': 1627, 'composer': 2232, 'emails': 3356, 'fridayfun': 4119, 'nonfilipina': 7816, 'ejayster': 3310, 'united': 12175, 'states': 10929, 'le': 6325, 'ie': 5299, 'stan': 10891, 'lee': 6350, 'redheartredheart': 9353, 'discovery': 2961, 'cousin': 2420, 'keplerb': 6004, 'yrs': 13132, 'teleportation': 11459, 'arrive': 600, 'shahid': 10103, 'afridi': 167, 'tou': 11849, 'mahnor': 6814, 'baloch': 869, 'nikki': 7764, 'flowers': 3974, 'blackfly': 1245, 'courgette': 2412, 'affect': 159, 'fruit': 4156, 'italian': 5611, 'netfilx': 7673, 'ma': 6753, 'knees': 6134, 'diva': 2999, 'dst': 3168, 'unmarriedchecks': 12192, 'fingertheres': 3902, 'rock': 9626, 'wiellys': 12741, 'paul': 8369, 'barcode': 910, 'charlotte': 1896, 'rated': 9250, 'thtas': 11660, 'aviation': 722, 'spotters': 10848, 'trailblazerhonors': 11887, 'meganh': 7060, 'murray': 7479, 'liverpool': 6514, 'labour': 6210, 'leader': 6327, 'jeremyleader': 5749, 'jezwecan': 5760, 'timeguess': 11701, 'itmorning': 5626, 'krane': 6169, 'alot': 332, 'thathappy': 11538, 'agayhippiehippy': 188, 'force': 4033, 'exercise': 3583, 'ginger': 4376, 'teach': 11413, 'awareness': 737, 'portsmouth': 8777, 'linking': 6479, 'sonal': 10699, 'hungryhappy': 5230, 'hmmm': 5038, 'collin': 2167, 'pedanthappy': 8418, 'kit': 6108, 'thobut': 11619, 'katkennedy': 5969, 'ack': 82, 'hih': 4993, 'choir': 1981, 'rosidbinr': 9668, 'frown': 4152, 'andry': 418, 'pouting': 8811, 'duke': 3189, 'earl': 3231, 'tau': 11380, 'awak': 731, 'orayt': 8121, 'srj': 10868, 'knw': 6151, 'block': 1278, 'dikha': 2917, 'reh': 9378, 'adolf': 132, 'hitler': 5029, 'obstacles': 7943, 'exist': 3587, 'surrendered': 11206, 'roger': 9638, 'terrific': 11487, 'advaddict': 142, 'jimin': 5774, 'gifted': 4361, 'notanapology': 7853, 'map': 6893, 'googles': 4488, 'informed': 5447, 'dependencies': 2806, 'motherfucking': 7383, 'matters': 6980, 'davids': 2668, 'damn': 2612, 'month': 7341, 'college': 2166, 'steroids': 10961, 'alansmithpart': 275, 'publication': 9078, 'servus': 10048, 'bonasio': 1342, 'doidos': 3039, 'task': 11368, 'delegate': 2762, 'aaahhh': 9, 'jentop': 5746, 'information': 5446, 'virgin': 12416, 'volunteer': 12449, 'nonmapbox': 7817, 'maps': 6896, 'restricted': 9499, 'mapbox': 6894, 'basemaps': 931, 'contractually': 2319, 'speaking': 10793, 'colom': 2170, 'researchers': 9470, 'toes': 11767, 'seafood': 9938, 'weltum': 12649, 'teh': 11456, 'dety': 2849, 'huh': 5201, 'sings': 10320, 'annoying': 455, 'katmtan': 5970, 'swan': 11229, 'fandom': 3740, 'blurry': 1305, 'besok': 1115, 'urgently': 12246, 'within': 12792, 'currently': 2545, 'dorset': 3085, 'goddess': 4443, 'blast': 1259, 'shitfaced': 10190, 'souls': 10753, 'donating': 3055, 'singing': 10316, 'disney': 2977, 'doug': 3098, 'wittysrk': 12796, 'counted': 2398, 'bnte': 1313, 'hain': 4724, 'shiiiitt': 10173, 'case': 1771, 'moods': 7352, 'rm': 9600, 'negooo': 7650, 'male': 6838, 'sister': 10336, 'smileyhave': 10503, 'madeline': 6774, 'nuns': 7913, 'moualdi': 7391, 'mornin': 7364, 'yapsters': 12995, 'tenmiles': 11472, 'ply': 8707, 'copy': 2357, 'icon': 5280, 'alchemists': 284, 'goodhappy': 4470, 'dayz': 2681, 'preview': 8950, 'thug': 11662, 'lmao': 6531, 'sharethelove': 10126, 'petpuk': 8495, 'highvalue': 4991, 'halsey': 4753, 'anniversary': 450, 'folks': 4000, 'bae': 829, 'acts': 97, 'smileyheartwitharrow': 10504, 'replies': 9450, 'ferries': 3837, 'complain': 2222, 'rude': 9703, 'bonding': 1344, 'niggs': 7749, 'smileyconfusionbonakid': 10466, 'readingres': 9283, 'wordoftheweek': 12850, 'wotw': 12891, 'est': 3504, 'earn': 3238, 'sleepthe': 10402, 'whatevs': 12682, 'jess': 5753, 'surry': 11208, 'botany': 1390, 'awwwww': 762, 'gel': 4297, 'alison': 302, 'lsa': 6685, 'response': 9488, 'fron': 4148, 'debbie': 2715, 'carol': 1757, 'patients': 8359, 'discharge': 2955, 'lounge': 6642, 'walmart': 12524, 'mahiyaa': 6812, 'jasmine': 5701, 'heena': 4924, 'balance': 856, 'studies': 11057, 'hayley': 4857, 'shoulder': 10231, 'pads': 8240, 'mounted': 7393, 'inquisitor': 5476, 'smileycosplay': 10490, 'cosplayprogress': 2380, 'mike': 7182, 'hundal': 5221, 'dunno': 3201, 'housing': 5158, 'insecurity': 5480, 'nhs': 7719, 'devolution': 2860, 'patriotism': 8363, 'halla': 4747, 'ark': 586, 'jiyeons': 5782, 'buzz': 1640, 'videoburnt': 12381, 'mist': 7255, 'opi': 8094, 'avoplex': 726, 'nail': 7548, 'cuticle': 2564, 'replenishing': 9448, 'ml': 7277, 'heels': 4923, 'elbows': 3319, 'serious': 10035, 'submission': 11086, 'youve': 13130, 'lb': 6321, 'cherish': 1939, 'flipping': 3966, 'learnt': 6338, 'backflip': 802, 'djumpgiants': 3010, 'foampit': 3992, 'usa': 12258, 'pamer': 8271, 'thks': 11614, 'actuallythough': 103, 'arts': 611, 'crafts': 2446, 'session': 10050, 'mehtab': 7068, 'aunty': 698, 'landed': 6250, 'gc': 4284, 'yeeew': 13025, 'pre': 8902, 'lan': 6248, 'yeey': 13026, 'strangely': 11011, 'arrange': 596, 'doodle': 3075, 'star': 10902, 'comic': 2194, 'summoner': 11141, 'none': 7814, 'persongesturingno': 8477, 'lycra': 6742, 'vincent': 12402, 'couldnt': 2392, 'roy': 9685, 'bg': 1146, 'imgcircle': 5346, 'crops': 2498, 'headshelp': 4880, 'font': 4019, 'dthanks': 3170, 'deathofgrass': 2710, 'loan': 6543, 'lawnmower': 6312, 'popularor': 8765, 'charismatic': 1890, 'manhe': 6872, 'thrive': 11648, 'economy': 3258, 'doesn': 3030, 'bursts': 1611, 'georgie': 4324, 'million': 7199, 'fls': 3978, 'kindest': 6083, 'sometime': 10691, 'iceland': 5276, 'crazy': 2459, 'landscapes': 6254, 'yok': 13085, 'lah': 6234, 'concordia': 2243, 'visited': 12425, 'reunited': 9518, 'xxxibmchll': 12969, 'sea': 9937, 'prettier': 8943, 'imitatia': 5348, 'michelle': 7166, 'comeback': 2186, 'gross': 4591, 'treat': 11917, 'equal': 3472, 'injustice': 5467, 'feminism': 3829, 'ineedfeminismbecause': 5431, 'forgotten': 4049, 'recommend': 9329, 'redhead': 9348, 'wacky': 12477, 'rather': 9251, 'bests': 1125, 'worsts': 12885, 'toowaytoliveahappylife': 11821, 'hoxton': 5165, 'holborn': 5054, 'tournament': 11856, 'equalityact': 3473, 'nohope': 7804, 'karen': 5946, 'wagging': 12484, 'bum': 1581, 'wwoooo': 12935, 'nite': 7777, 'drawings': 3126, 'barrett': 923, 'laiten': 6240, 'arond': 593, 'considering': 2285, 'mature': 6982, 'childrens': 1958, 'journeyps': 5838, 'foam': 3991, 'ladys': 6225, 'mob': 7289, 'riverdd': 9591, 'false': 3721, 'bulletin': 1577, 'folk': 3999, 'spring': 10856, 'fiesta': 3857, 'noise': 7806, 'awuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu': 757, 'aich': 225, 'sept': 10026, 'rudramadevi': 9704, 'anushka': 483, 'gunashekar': 4652, 'harryxhood': 4818, 'upsetting': 12237, 'ooh': 8075, 'humanist': 5214, 'reader': 9280, 'magazine': 6791, 'username': 12268, 'rape': 9233, 'csrracing': 2524, 'lack': 6216, 'hygiene': 5255, 'tose': 11842, 'clothes': 2112, 'temperature': 11465, 'lives': 6515, 'idols': 5295, 'planet': 8643, 'braving': 1445, 'ryan': 9731, 'tidy': 11687, 'hagergang': 4694, 'tshirt': 11977, 'chanhun': 1867, 'individual': 5423, 'photoshoot': 8542, 'afterall': 171, 'sadkaay': 9752, 'tharkness': 11537, 'peak': 8408, 'orestboy': 8133, 'heatwave': 4911, 'lowered': 6678, 'standards': 10894, 'recruited': 9340, 'doom': 3076, 'nasty': 7589, 'affiliated': 160, 'gthappy': 4626, 'situated': 10345, 'hall': 4746, 'ted': 11445, 'pixgram': 8629, 'creative': 2470, 'slideshow': 10409, 'download': 3104, 'unamusedfacenewmoonface': 12129, 'tentatively': 11476, 'nibbling': 7727, 'ivyi': 5642, 'muchmore': 7450, 'sho': 10198, 'superpowers': 11177, 'obsessed': 7941, 'oth': 8161, 'third': 11601, 'growingheart': 4601, 'thanked': 11520, 'smileyngarepfollbackdarinabilahjkt': 10530, 'applies': 539, 'sunglasses': 11149, 'jackie': 5660, 'sunnies': 11153, 'style': 11071, 'jlo': 5785, 'jlovers': 5786, 'turkey': 12009, 'goodafternoon': 4466, 'collage': 2155, 'treats': 11919, 'furry': 4205, 'bruce': 1525, 'kunoriforceo': 6187, 'bhavya': 1153, 'aayegi': 20, 'timming': 11707, 'wiw': 12798, 'bips': 1200, 'zareen': 13169, 'daisy': 2602, 'bcoz': 982, 'karte': 5953, 'mak': 6825, 'lega': 6357, 'branding': 1439, 'smileypsygustokita': 10540, 'spag': 10772, 'boat': 1318, 'outboarding': 8179, 'toowink': 11823, 'spell': 10807, 'reboardinghappy': 9308, 'firingoffboarding': 3912, 'chetwynd': 1943, 'sn': 10603, 'dg': 2866, 'signs': 10292, 'trades': 11877, 'bnf': 1311, 'tonighttheres': 11808, 'jasonamprob': 5704, 'feb': 3805, 'tourconfusion': 11854, 'victoriasecret': 12375, 'finland': 3906, 'helsinki': 4951, 'airport': 243, 'plane': 8641, 'beyond': 1139, 'onting': 8068, 'tiis': 11695, 'lng': 6539, 'yan': 12992, 'ull': 12107, 'steve': 10963, 'bell': 1072, 'prescott': 8927, 'leadership': 6328, 'cartoon': 1769, 'upside': 12238, 'statementhappy': 10928, 'smileyselamathariraya': 10547, 'running': 9719, 'lovesummertime': 6667, 'dumont': 3196, 'videoconfusion': 12382, 'jax': 5711, 'jones': 5821, 'awesomeee': 742, 'geoff': 4320, 'update': 12215, 'kelly': 5997, 'amazingly': 364, 'talanted': 11328, 'brings': 1488, 'droppedlooks': 3158, 'confusionconfusionconfusionconfusionconfusion': 2261, 'sitting': 10344, 'vsco': 12461, 'thankies': 11523, 'wweddingblog': 12934, 'ltbtw': 6690, 'hash': 4823, 'tag': 11305, 'difimeetanalien': 2907, 'yaaay': 12980, 'bff': 1142, 'players': 8663, 'section': 9956, 'follbaaack': 4001, 'cools': 2349, 'az': 774, 'cauliflower': 1795, 'attempt': 680, 'prinsesa': 8968, 'yaaah': 12979, 'families': 3725, 'law': 6309, 'toy': 11867, 'sonaaaaaaa': 10698, 'beautifull': 1016, 'ribs': 9543, 'josephines': 5831, 'mirror': 7237, 'cretaperfectme': 2480, 'cretaperfectsuv': 2481, 'creta': 2479, 'loads': 6542, 'hearts': 4900, 'telecoms': 11458, 'judy': 5864, 'superb': 11166, 'slightly': 10412, 'rakna': 9209, 'ew': 3561, 'whose': 12725, 'fifa': 3858, 'survive': 11211, 'px': 9133, 'dishoom': 2974, 'rajnigandha': 9206, 'minju': 7224, 'rapper': 9235, 'lead': 6326, 'vocal': 12439, 'yujin': 13140, 'visual': 12430, 'maknae': 6835, 'jane': 5688, 'general': 4306, 'hah': 4695, 'hawk': 4853, 'greatest': 4553, 'history': 5027, 'along': 331, 'talkback': 11333, 'process': 8998, 'listing': 6499, 'feature': 3802, 'mostly': 7379, 'cinemas': 2034, 'roads': 9606, 'shops': 10215, 'faceblowingakissfaceblowingakiss': 3660, 'defend': 2742, 'fashion': 3766, 'atrocity': 675, 'pandimensional': 8280, 'manifestations': 6875, 'argos': 577, 'ring': 9568, 'smileynad': 10528, 'kimikoo': 6074, 'plezzzzloudlycryingface': 8687, 'hungry': 5229, 'asthma': 657, 'inhaler': 5455, 'breathe': 1461, 'smileysmilingfacewithsmilingeyes': 10550, 'goodluck': 4472, 'hunger': 5227, 'mockingjay': 7299, 'teasers': 11437, 'thehungergames': 11551, 'adored': 136, 'reina': 9384, 'smileysorry': 10552, 'sounding': 10757, 'felt': 3826, 'crying': 2514, 'blogged': 1285, 'excuse': 3578, 'attenders': 682, 'mvhr': 7510, 'whn': 12717, 'dhappy': 2871, 'andre': 413, 'mamayang': 6851, 'rinku': 9570, 'powys': 8886, 'shropshire': 10255, 'border': 1373, 'cameron': 1694, 'schools': 9893, 'san': 9804, 'diego': 2893, 'jump': 5883, 'source': 10762, 'appeasement': 534, 'aj': 255, 'situation': 10346, 'action': 91, 'grunt': 4611, 'favouriting': 3788, 'sc': 9870, 'antichrist': 479, 'ju': 5854, 'lindseyy': 6470, 'reply': 9451, 'osullivan': 8157, 'halfway': 4744, 'ex': 3563, 'postive': 8794, 'opinions': 8096, 'avi': 721, 'lovelies': 6655, 'dare': 2639, 'corridor': 2372, 'peoplewithbunnyearspartying': 8450, 'hmmmm': 5040, 'ollymnh': 8031, 'neither': 7658, 'partypopperpartypopperpartypopper': 8332, 'rundown': 9717, 'yah': 12987, 'leviboard': 6400, 'kleperb': 6127, 'gtdlt': 4619, 'proves': 9055, 'impeccable': 5361, 'ridabot': 9551, 'setokido': 10055, 'shoulda': 10229, 'hippo': 5021, 'ones': 8060, 'materialistic': 6970, 'showpo': 10250, 'coughcough': 2388, 'kairoline': 5918, 'fshoppe': 4164, 'backed': 801, 'thankshappy': 11526, 'smileysmilingface': 10549, 'makesme': 6831, 'bytes': 1646, 'santorini': 9819, 'escape': 3490, 'beatport': 1008, 'oncomingfistlightskintone': 8054, 'trmdhesitant': 11950, 'manuel': 6887, 'valls': 12306, 'king': 6088, 'seven': 10064, 'kingdoms': 6090, 'andals': 408, 'taught': 11381, 'hide': 4981, 'privacy': 8979, 'wise': 12785, 'ways': 12579, 'natsuki': 7603, 'often': 7982, 'writes': 12910, 'catchy': 1786, 'coughed': 2389, 'neil': 7656, 'emirates': 3370, 'brill': 1482, 'urquhart': 12252, 'castle': 1780, 'helps': 4950, 'simple': 10306, 'generally': 4307, 'glass': 4410, 'shatter': 10136, 'contrast': 2321, 'educampakl': 3276, 'leaving': 6344, 'rotorua': 9674, 'pehly': 8429, 'phir': 8524, 'somi': 10694, 'burfday': 1599, 'smileymy': 10527, 'solved': 10679, 'university': 12180, 'santo': 9818, 'tomas': 11781, 'swati': 11232, 'worked': 12854, 'norhing': 7843, 'dialogue': 2879, 'lines': 6473, 'chainsaw': 1841, 'shake': 10106, 'amusement': 397, 'awe': 739, 'daily': 2600, 'protect': 9048, 'pop': 8756, 'ish': 5586, 'fahad': 3697, 'bhai': 1148, 'iqrar': 5566, 'waseem': 12548, 'abroad': 38, 'rotation': 9673, 'survived': 11212, 'moviee': 7402, 'chef': 1927, 'grogolconfusion': 4590, 'sejeng': 9977, 'singles': 10319, 'dating': 2660, 'longdistance': 6584, 'rhys': 9540, 'pwrfl': 9132, 'department': 2803, 'benefit': 1094, 'elses': 3348, 'soo': 10710, 'enterprison': 3441, 'schoolsoutforsummer': 9894, 'fellow': 3825, 'juggle': 5866, 'purrthos': 9116, 'cathos': 1788, 'catamis': 1783, 'fourfiveseconds': 4073, 'deaf': 2699, 'drugs': 3164, 'alcohol': 285, 'apexis': 514, 'meth': 7142, 'champagne': 1854, 'fc': 3795, 'streamer': 11018, 'juices': 5869, 'flowing': 3975, 'facewithtearsofjoyfacewithtearsofjoythank': 3680, 'correct': 2371, 'portrait': 8776, 'izumi': 5649, 'fugiwara': 4180, 'clonmel': 2102, 'refreshing': 9364, 'vibrant': 12367, 'estimated': 3508, 'server': 10042, 'quiet': 9168, 'yey': 13061, 'cenatic': 1814, 'inshaallah': 5483, 'wil': 12749, 'dourthe': 3101, 'trendno': 11925, 'smileyakshaymostlovedsuperstarever': 10449, 'indirecting': 5422, 'askurban': 636, 'lyka': 6747, 'helped': 4943, 'includes': 5398, 'mobilegames': 7293, 'ios': 5558, 'nap': 7577, 'aff': 157, 'uname': 12127, 'jonginuh': 5825, 'billie': 1183, 'arm': 587, 'forecast': 4037, 'soothing': 10724, 'fantasy': 3753, 'vii': 12396, 'sweetheart': 11249, 'krsna': 6173, 'shoes': 10205, 'sooooooo': 10719, 'freaking': 4091, 'original': 8143, 'zayn': 13171, 'grant': 4538, 'fucker': 4173, 'dies': 2897, 'pet': 8488, 'illustration': 5333, 'wohooyou': 12815, 'gleam': 4413, 'painting': 8251, 'deal': 2700, 'stops': 10998, 'raining': 9198, 'prime': 8963, 'minister': 7223, 'org': 8134, 'sunjam': 11150, 'cough': 2387, 'industry': 5430, 'present': 8931, 'practicing': 8893, 'proactive': 8986, 'environment': 3458, 'nearlyconfusion': 7634, 'unreal': 12201, 'boysawesome': 1415, 'zaine': 13164, 'zac': 13160, 'isaac': 5581, 'smileyoss': 10533, 'remembered': 9419, 'frank': 4085, 'iero': 5300, 'phase': 8513, 'david': 2667, 'beginner': 1048, 'shining': 10176, 'sunflowers': 11147, 'sunny': 11154, 'favourites': 3787, 'tommarow': 11790, 'ranked': 9229, 'birthdaymonth': 1212, 'vianey': 12362, 'aka': 260, 'bffconfusion': 1143, 'bffs': 1144, 'julyth': 5877, 'birthdaygirl': 1210, 'andrew': 415, 'keys': 6017, 'otwol': 8169, 'awhile': 750, 'gotwolgrandtrailer': 4508, 'alltime': 323, 'julia': 5873, 'robert': 9615, 'awwhh': 759, 'bulldog': 1576, 'unfortunate': 12164, 'born': 1380, 'caring': 1750, 'fightstickfriday': 3864, 'uzumce': 12292, 'eat': 3250, 'extravagant': 3631, 'extravaganthappy': 3632, 'smileyconfusionw': 10487, 'tearout': 11432, 'selektion': 9984, 'yoot': 13090, 'fingers': 3899, 'crossed': 2500, 'deserved': 2824, 'buzzing': 1641, 'gudday': 4634, 'dave': 2666, 'haileyhelps': 4723, 'nug': 7905, 'floydian': 3977, 'eid': 3301, 'mubarak': 7438, 'brotheeeeerrrr': 1512, 'adventure': 145, 'tokyo': 11774, 'kansai': 5932, 'follbackhappy': 4003, 'lifevideo': 6432, 'uppe': 12232, 'om': 8036, 'minuter': 7233, 'detailed': 2843, 'data': 2657, 'soooo': 10717, 'jesus': 5757, 'amsterdam': 395, 'perform': 8460, 'drinks': 3148, 'nextweek': 7703, 'sends': 10009, 'booty': 1372, 'bcuz': 985, 'step': 10953, 'option': 8113, 'stable': 10877, 'sturdy': 11069, 'lukkkee': 6716, 'heheok': 4928, 'daam': 2588, 'nowsee': 7884, 'againensoi': 185, 'daykeep': 2675, 'smiles': 10446, 'tc': 11404, 'madam': 6771, 'siddi': 10273, 'unknown': 12182, 'roomie': 9656, 'gn': 4430, 'ltlt': 6692, 'articles': 607, 'gf': 4339, 'gives': 4400, 'consent': 2281, 'mister': 7258, 'supportive': 11185, 'vine': 12403, 'vineswith': 12407, 'peyton': 8500, 'enjoying': 3429, 'nagato': 7539, 'yukichan': 13142, 'shoushitsu': 10234, 'blocked': 1280, 'archdbanterbury': 566, 'experttradesmen': 3611, 'banter': 899, 'quiz': 9174, 'tradetalk': 11878, 'floofs': 3970, 'muahah': 7435, 'anticipation': 480, 'jds': 5725, 'laro': 6274, 'tayo': 11394, 'answers': 471, 'ht': 5181, 'smileyangelica': 10454, 'anghel': 432, 'confusionconfusionotwolgrandtrailer': 2262, 'aa': 0, 'kkk': 6123, 'regan': 9368, 'plays': 8669, 'macbook': 6762, 'rehearse': 9381, 'youthcelebrate': 13119, 'muted': 7502, 'july': 5876, 'gohf': 4448, 'invited': 5554, 'smileybelfast': 10456, 'vegetarian': 12332, 'shell': 10158, 'steven': 10964, 'gooday': 4468, 'answer': 468, 'door': 3079, 'tells': 11464, 'oshieer': 8155, 'smileyrealreviews': 10541, 'happycustomers': 4794, 'realoshi': 9299, 'dealsuthaonotebachao': 2701, 'bigger': 1170, 'dime': 2918, 'uhuh': 12102, 'musicalnotemusicalnotemusicalnotemusicalnote': 7487, 'code': 2138, 'pleasant': 8673, 'onboard': 8053, 'raheel': 9192, 'flyhigh': 3983, 'phones': 8530, 'bothered': 1393, 'everette': 3540, 'taylor': 11392, 'smileywsalelove': 10567, 'peachyloans': 8407, 'fridayfreebie': 4118, 'noeli': 7799, 'noe': 7798, 'tattoos': 11379, 'yisss': 13072, 'bindingofissac': 1190, 'xboxone': 12940, 'console': 2288, 'justin': 5901, 'gladly': 4407, 'son': 10696, 'morocco': 7372, 'peru': 8482, 'nxt': 7926, 'bps': 1417, 'resort': 9479, 'havuuuuuloveyouheartsuituuuuuuuuhappy': 4849, 'possitve': 8787, 'hopeyou': 5107, 'sweetie': 11250, 'xxxx': 12970, 'throwbackfriday': 11653, 'christen': 2002, 'ki': 6035, 'yaad': 12981, 'gayi': 4280, 'opossum': 8098, 'bushes': 1615, 'belated': 1064, 'yeahh': 13016, 'kuffar': 6184, 'computers': 2234, 'cell': 1812, 'spread': 10851, 'diarrhea': 2884, 'immigrant': 5355, 'lice': 6417, 'goictived': 4449, 'tagsforlikes': 11308, 'trapmusic': 11910, 'hotmusicdelocos': 5142, 'wellgot': 12644, 'planed': 8642, 'weekendthanks': 12623, 'kinickers': 6093, 'lifehappy': 6427, 'smileyyou': 10569, 'shady': 10101, 'management': 6861, 'reservation': 9472, 'tkts': 11737, 'likewise': 6452, 'nightenjoy': 7751, 'overgeneralization': 8203, 'ikr': 5324, 'smilingfacewithhearteyes': 10576, 'consumerism': 2296, 'soul': 10750, 'swimming': 11261, 'riding': 9559, 'recently': 9317, 'fics': 3852, 'ouch': 8173, 'slip': 10413, 'disc': 2953, 'todaybring': 11755, 'thw': 11675, 'chutes': 2021, 'chalut': 1853, 'minute': 7232, 'replay': 9447, 'iplayer': 5563, 'unneeded': 12193, 'megamoh': 7058, 'power': 8882, 'tools': 11816, 'zealand': 13182, 'lavro': 6308, 'wakes': 12501, 'pile': 8582, 'dump': 3197, 'couscous': 2419, 'links': 6480, 'womens': 12826, 'fiction': 3853, 'wahahaah': 12487, 'ynggk': 13078, 'orhan': 8140, 'pamuk': 8276, 'hero': 4964, 'canopy': 1719, 'maple': 6895, 'leaves': 6342, 'syrup': 11287, 'farm': 3761, 'stephanie': 10955, 'sparklingheartsparklinghearthappy': 10785, 'congrtaualtions': 2273, 'noticed': 7864, 'phileas': 8518, 'club': 2114, 'inc': 5388, 'photographs': 8536, 'phonegraphs': 8529, 'srsly': 10870, 'pwincess': 9131, 'ripaaaaa': 9572, 'foodie': 4022, 'banate': 877, 'uhb': 12099, 'ray': 9258, 'deptnot': 2813, 'hospital': 5126, 'grt': 4608, 'features': 3803, 'infographic': 5444, 'oclock': 7954, 'habit': 4688, 'thankyoudfor': 11531, 'roadtrip': 9607, 'ifc': 5301, 'bombs': 1339, 'whip': 12707, 'lilsisbro': 6458, 'preordered': 8921, 'pixars': 8624, 'steelbook': 10947, 'hmm': 5037, 'thishope': 11610, 'bufetowa': 1560, 'pegell': 8428, 'lemess': 6373, 'nconfusion': 7622, 'kyle': 6198, 'paypal': 8383, 'confirmation': 2253, 'oct': 7955, 'tud': 11990, 'jst': 5852, 'addictive': 114, 'humphrey': 5218, 'yell': 13032, 'erm': 3482, 'breach': 1450, 'superheroes': 11173, 'scififan': 9898, 'lawson': 6313, 'lemons': 6375, 'yogurt': 13083, 'pot': 8797, 'discovered': 2960, 'liquorice': 6488, 'pud': 9082, 'salute': 9789, 'moving': 7406, 'cajun': 1661, 'spiced': 10813, 'yum': 13144, 'smileycajunchicken': 10461, 'enadavex': 3398, 'congratulation': 2270, 'infinite': 5433, 'fighting': 3862, 'bildideen': 1181, 'gern': 4327, 'deluxe': 2781, 'cikaaasmilingfacewish': 2030, 'ohappy': 7985, 'maaf': 6756, 'telat': 11457, 'ngucapinnya': 7714, 'maaaaaay': 6755, 'dayweek': 2680, 'viparita': 12412, 'karani': 5941, 'legsupthewallconfusion': 6367, 'unwind': 12212, 'robbed': 9612, 'coco': 2134, 'comfy': 2193, 'jalulu': 5680, 'continue': 2315, 'rosh': 9667, 'travels': 11916, 'glaconfusion': 4405, 'airportconfusion': 244, 'avail': 715, 'dwanna': 3219, 'presents': 8934, 'suit': 11122, 'pallavi': 8268, 'rizzy': 9594, 'nairobi': 7552, 'hrdstellobama': 5172, 'regional': 9372, 'civil': 2047, 'society': 10650, 'rights': 9563, 'region': 9371, 'globewe': 4420, 'hajur': 4736, 'yayy': 13007, 'mustve': 7501, 'nerve': 7670, 'prelims': 8914, 'exam': 3565, 'costacc': 2382, 'nwb': 7925, 'walking': 12516, 'shud': 10256, 'begin': 1047, 'wisconsin': 12783, 'cold': 2147, 'lasted': 6282, 'tatiii': 11375, 'hmu': 5042, 'picked': 8559, 'cala': 1667, 'brush': 1532, 'ego': 3293, 'wherever': 12701, 'sooooooooo': 10722, 'interaction': 5522, 'offers': 7972, 'dongsaeng': 3062, 'chorong': 1994, 'friendship': 4133, 'ffs': 3850, 'impressivewhat': 5370, 'dragon': 3117, 'duck': 3178, 'mix': 7266, 'cheetah': 1926, 'wagga': 12483, 'coursework': 2417, 'lorna': 6610, 'scan': 9874, 'smileyeye': 10495, 'canvas': 1724, 'padpainting': 8239, 'iqbal': 5565, 'ima': 5340, 'hon': 5082, 'furniture': 4204, 'grinningface': 4582, 'budha': 1557, 'aja': 256, 'besi': 1111, 'chati': 1904, 'phulani': 8548, 'swasa': 11231, 'bahari': 839, 'jiba': 5769, 'gujarat': 4649, 'distrubed': 2993, 'otherwise': 8163, 'cr': 2438, 'inspite': 5494, 'highest': 4987, 'holder': 5056, 'threatens': 11642, 'basis': 936, 'vr': 12459, 'pamper': 8273, 'cuts': 2568, 'angelo': 428, 'quezon': 9162, 'cityconfusion': 2045, 'sweatpants': 11239, 'breath': 1460, 'bond': 1343, 'tripping': 11946, 'farbridges': 3758, 'segalakatakata': 9975, 'nixus': 7780, 'begun': 1051, 'flint': 3960, 'shortcake': 10218, 'separately': 10025, 'attacked': 678, 'criticised': 2493, 'gesture': 4330, 'pedal': 8417, 'stroke': 11035, 'attentive': 684, 'osoro': 8156, 'caro': 1756, 'youhappy': 13101, 'deposit': 2810, 'secure': 9957, 'shock': 10200, 'spilled': 10818, 'coffe': 2140, 'caketenerina': 1666, 'auguri': 695, 'iso': 5599, 'certification': 1832, 'itme': 5625, 'paralyzed': 8302, 'anxiety': 484, 'sadnessme': 9756, 'kai': 5916, 'direction': 2934, 'advocaten': 152, 'itd': 5616, 'blogs': 1289, 'development': 2855, 'spain': 10773, 'tests': 11493, 'def': 2740, 'bantime': 900, 'failban': 3701, 'awkward': 751, 'abs': 40, 'laughing': 6299, 'galing': 4231, 'founder': 4070, 'loveyaaaah': 6671, 'specialist': 10797, 'breathing': 1462, 'aw': 728, 'babyyy': 797, 'voice': 12443, 'amazes': 360, 'djstruthmate': 3009, 'recap': 9312, 'featuring': 3804, 'urock': 12251, 'siwonie': 10348, 'flickr': 3957, 'tack': 11295, 'zephbot': 13187, 'hhahahahaha': 4974, 'blew': 1273, 'upp': 12230, 'entire': 3445, 'las': 6277, 'vegas': 12329, 'strip': 11031, 'youuuuuuu': 13129, 'hahahahahhaha': 4709, 'callies': 1678, 'puppy': 9106, 'owner': 8221, 'callinganimalabusehotlineasap': 1680, 'gorefiend': 4497, 'mythic': 7526, 'reminder': 9421, 'blacksmallsquarebea': 1247, 'miller': 7195, 'lockscreenblacksmallsquarertfav': 6551, 'itmbf': 5624, 'smileykeesh': 10514, 'yesterdays': 13057, 'groupie': 4596, 'bebe': 1023, 'sizams': 10351, 'kurta': 6190, 'color': 2172, 'invoices': 5555, 'kanina': 5931, 'pong': 8742, 'umaga': 12115, 'browser': 1523, 'typically': 12073, 'pleasse': 8684, 'leeteuk': 6353, 'oppamiss': 8101, 'pearl': 8411, 'thusi': 11674, 'pouring': 8809, 'milk': 7191, 'tgv': 11509, 'austerlitz': 704, 'blois': 1290, 'miles': 7187, 'chateau': 1903, 'des': 2818, 'marais': 6899, 'taxi': 11387, 'curry': 2546, 'noms': 7811, 'enji': 3426, 'haters': 4836, 'purchase': 9108, 'speciallymarked': 10798, 'custard': 2557, 'sms': 10599, 'onpack': 8065, 'instructions': 5507, 'tiles': 11697, 'downstairs': 3108, 'nibbles': 7726, 'greek': 4559, 'ruins': 9709, 'petra': 8496, 'shadowplaylouis': 10099, 'mutual': 7505, 'cuz': 2572, 'liveonstreamate': 6513, 'lani': 6263, 'grazing': 4550, 'pride': 8961, 'bristolart': 1491, 'sleeping': 10396, 'inapp': 5384, 'ensure': 3435, 'item': 5617, 'screw': 9924, 'amber': 366, 'popculturefan': 8758, 'steps': 10958, 'hpc': 5169, 'smileyconfusionwip': 10488, 'sws': 11271, 'newsround': 7698, 'hounds': 5149, 'ada': 106, 'racist': 9186, 'called': 1677, 'hulk': 5209, 'tight': 11694, 'prayers': 8898, 'pardon': 8305, 'phl': 8525, 'abu': 47, 'dhabi': 2868, 'blessing': 1271, 'hihihi': 4994, 'teamjanuaryclaims': 11422, 'godonna': 4444, 'msg': 7419, 'bowwowchicawowwow': 1407, 'settle': 10059, 'air': 235, 'dkt': 3011, 'porch': 8768, 'uber': 12079, 'mobile': 7291, 'application': 538, 'familyhappy': 3728, 'smileysending': 10548, 'giggles': 4366, 'smilingfacewithopenmouth': 10578, 'buns': 1593, 'delights': 2771, 'bare': 911, 'winds': 12766, 'kahlil': 5915, 'gibran': 4354, 'flash': 3940, 'boon': 1364, 'stiff': 10971, 'upper': 12233, 'lip': 6484, 'britain': 1492, 'smileylatmon': 10515, 'thatjust': 11540, 'endeavour': 3405, 'anne': 449, 'joy': 5841, 'experiences': 3606, 'os': 8150, 'exploits': 3617, 'ign': 5310, 'pubcast': 9075, 'tengaman': 11470, 'celebratio': 1809, 'letsprocrastinate': 6396, 'jh': 5763, 'heuertz': 4970, 'determined': 2847, 'women': 12825, 'cycling': 2578, 'install': 5500, 'glorify': 4421, 'infirmities': 5436, 'realizing': 9296, 'silly': 10298, 'realize': 9294, 'suave': 11075, 'gentlemen': 4316, 'monthly': 7342, 'mileage': 7186, 'target': 11364, 'samsung': 9803, 'quality': 9147, 'ey': 3637, 'beth': 1130, 'gangster': 4254, 'somethingi': 10690, 'athenas': 664, 'fancy': 3738, 'nowhappy': 7878, 'wellington': 12646, 'momenti': 7318, 'rich': 9545, 'tina': 11710, 'peeled': 8422, 'christina': 2004, 'newsletter': 7696, 'zy': 13204, 'olur': 8034, 'shreds': 10254, 'flawless': 3948, 'remix': 9424, 'reactions': 9278, 'draw': 3124, 'fanbase': 3735, 'vanda': 12312, 'hayli': 4858, 'edwin': 3280, 'elvena': 3350, 'emc': 3361, 'rubber': 9700, 'ducks': 3179, 'swearwords': 11235, 'infection': 5432, 'msr': 7425, 'wrote': 12917, 'deadthank': 2698, 'christophe': 2007, 'gans': 4256, 'films': 3880, 'brotherhood': 1514, 'wolf': 12817, 'pills': 8587, 'nocturnal': 7796, 'rrp': 9691, 'jah': 5671, 'wobble': 12811, 'retard': 9507, 'notifications': 7867, 'checkup': 1917, 'puns': 9101, 'elite': 3336, 'camillus': 1695, 'pleaseee': 8677, 'hand': 4764, 'spare': 10780, 'tyre': 12076, 'boot': 1370, 'realised': 9288, 'joking': 5815, 'msgs': 7421, 'ahahah': 211, 'shame': 10112, 'abandoning': 23, 'disagree': 2945, 'nowhere': 7879, 'contradict': 2320, 'continuously': 2317, 'chaos': 1873, 'contained': 2302, 'cranium': 2450, 'sneakers': 10616, 'nike': 7759, 'nikeoriginal': 7761, 'nikeindonesia': 7760, 'pierojogger': 8576, 'skoy': 10375, 'winter': 12778, 'falklands': 3714, 'jamielee': 5685, 'escn': 3491, 'congraaats': 2265, 'hooh': 5097, 'chrome': 2010, 'remah': 9412, 'morningand': 7366, 'stormsgtgt': 11004, 'thunderstorms': 11668, 'circuscircus': 2040, 'omgg': 8045, 'thankie': 11522, 'tdy': 11409, 'peter': 8491, 'powers': 8885, 'expelled': 3602, 'boughy': 1400, 'kernel': 6007, 'slepthappy': 10407, 'paralysis': 8301, 'lizahappy': 6523, 'smileyfaceblowingakiss': 10496, 'mocha': 7295, 'lolhook': 6564, 'vampire': 12310, 'diaries': 2883, 'muchbest': 7444, 'tequila': 11479, 'twice': 12040, 'thanq': 11534, 'goodwill': 4480, 'vandr': 12314, 'ash': 619, 'meister': 7071, 'debatable': 2712, 'tourney': 11858, 'seed': 9962, 'solar': 10669, 'shown': 10249, 'ek': 3311, 'rivera': 9590, 'tacos': 11298, 'mexico': 7148, 'taco': 11297, 'viva': 12432, 'mxico': 7516, 'burger': 1600, 'fardo': 3759, 'thebestangkapuso': 11547, 'siscon': 10334, 'lighter': 6437, 'tooth': 11819, 'bacon': 818, 'patient': 8357, 'korean': 6165, 'netizen': 7677, 'crueler': 2507, 'clerance': 2080, 'elephants': 3326, 'marula': 6934, 'tdif': 11408, 'shoutouts': 10238, 'shortly': 10222, 'itsamarvelthingmarvel': 5632, 'japans': 5697, 'homework': 5076, 'marco': 6903, 'fruits': 4157, 'herbs': 4958, 'parks': 8313, 'self': 9988, 'esteem': 3507, 'xiii': 12951, 'patience': 8356, 'sobtian': 10641, 'donutbethers': 3072, 'coworker': 2430, 'minutes': 7234, 'deathly': 2709, 'hallows': 4749, 'supernatural': 11176, 'consultanthappy': 2294, 'himachal': 5008, 'universe': 12179, 'ashamed': 620, 'charge': 1884, 'inform': 5445, 'downloading': 3107, 'wheredoistart': 12698, 'moviemarathon': 7403, 'conversational': 2331, 'skills': 10367, 'shadows': 10100, 'owned': 8220, 'pair': 8252, 'typical': 12072, 'itll': 5623, 'cortezsuperstars': 2374, 'haigh': 4719, 'llp': 6530, 'consult': 2293, 'tthanks': 11984, 'colin': 2152, 'internships': 5534, 'luxuous': 6735, 'hotels': 5139, 'tarryn': 11366, 'humans': 5215, 'goodness': 4475, 'hbdme': 4864, 'aoki': 504, 'yeeeeyyy': 13024, 'barsostay': 925, 'malese': 6840, 'blakey': 1252, 'responses': 9489, 'independent': 5409, 'sums': 11142, 'debacle': 2711, 'perfectly': 8459, 'longer': 6586, 'themhappy': 11557, 'amyjackson': 399, 'omegle': 8041, 'countrymusic': 2403, 'five': 3927, 'freddys': 4093, 'demo': 2788, 'pumped': 9094, 'fanboy': 3736, 'thegrandad': 11550, 'impression': 5369, 'meenakshi': 7049, 'grand': 4528, 'sidni': 10279, 'remarriage': 9414, 'occasion': 7948, 'completion': 2229, 'quotes': 9176, 'languageshappy': 6262, 'java': 5707, 'phps': 8546, 'notion': 7869, 'references': 9359, 'equally': 3474, 'confusing': 2258, 'edge': 3263, 'ohioans': 7991, 'stick': 10968, 'hourhappy': 5151, 'doctor': 3024, 'herehappy': 4959, 'doctorhappy': 3026, 'ambre': 368, 'suzan': 11224, 'offline': 7978, 'thesims': 11581, 'guides': 4642, 'covered': 2426, 'madonnamademtv': 6783, 'cmon': 2117, 'madonnafamily': 6781, 'madonnafans': 6782, 'beverly': 1137, 'martin': 6932, 'mb': 6997, 'meaningless': 7028, 'common': 2206, 'celebrate': 1806, 'fails': 3703, 'paint': 8249, 'muertosatfringe': 7454, 'gtagiveaway': 4616, 'emulation': 3393, 'brought': 1517, 'omeglegrinningfacewithsmilingeyesyou': 8042, 'sharapova': 10122, 'broes': 1498, 'enemies': 3413, 'ithappy': 5621, 'relax': 9396, 'ou': 8171, 'painted': 8250, 'nails': 7551, 'pink': 8596, 'sarahmae': 9826, 'cc': 1800, 'cares': 1747, 'meoooowwwwwolf': 7111, 'barkkkkkkkiiideee': 920, 'bark': 915, 'routine': 9681, 'aleks': 287, 'awh': 747, 'upgrading': 12224, 'kumpul': 6186, 'cantik': 1723, 'ganteng': 4257, 'kresna': 6170, 'jelly': 5736, 'simon': 10304, 'sonsconfusion': 10708, 'lesley': 6383, 'davies': 2669, 'blood': 1293, 'panties': 8289, 'lion': 6482, 'artworkbylie': 613, 'judo': 5863, 'mornings': 7370, 'presentation': 8932, 'daredevil': 2640, 'episodes': 3470, 'despondently': 2836, 'rewatch': 9530, 'smileyconfusionhappy': 10484, 'welcomahave': 12636, 'favor': 3780, 'tridon': 11937, 'master': 6958, 'nim': 7767, 'therere': 11575, 'kebun': 5986, 'adorable': 134, 'ubud': 12082, 'ladyposse': 6224, 'xoxoxo': 12957, 'sneak': 10615, 'peek': 8421, 'items': 5618, 'collectionstay': 2165, 'inbox': 5387, 'orders': 8129, 'prices': 8959, 'bn': 1309, 'happyweekend': 4797, 'therealgolden': 11570, 'girlfriendsmya': 4386, 'londoncity': 6574, 'pplhappy': 8889, 'posting': 8793, 'closest': 2109, 'njoy': 7784, 'followingg': 4011, 'private': 8980, 'pusher': 9119, 'pri': 8955, 'freak': 4088, 'stunning': 11066, 'wooohooo': 12845, 'cuss': 2556, 'teenage': 11449, 'ace': 73, 'sauce': 9844, 'livi': 6519, 'fowles': 4074, 'oliviafowles': 8028, 'burnout': 1608, 'djohnforceo': 3007, 'blush': 1306, 'tgirl': 11506, 'matthew': 6981, 'provoking': 9058, 'indiankulture': 5413, 'oppose': 8106, 'babesa': 787, 'biker': 1175, 'dis': 2942, 'lyk': 6746, 'gud': 4633, 'weight': 12631, 'bcus': 984, 'rubbish': 9701, 'veggie': 12333, 'learned': 6336, 'steph': 10954, 'nj': 7781, 'allowing': 319, 'exploring': 3620, 'einstein': 3306, 'banana': 875, 'listenablecohesive': 6495, 'russell': 9725, 'bannon': 898, 'sourceso': 10763, 'gossip': 4501, 'alex': 291, 'heswifi': 4969, 'wub': 12929, 'cerbchan': 1825, 'jarraaaaa': 5700, 'morrrrning': 7373, 'snoozed': 10626, 'clickscothanks': 2086, 'gay': 4278, 'lesbian': 6382, 'rigid': 9565, 'theocratic': 11565, 'wing': 12770, 'fundamentalist': 4196, 'islamist': 5594, 'brianaaaa': 1468, 'brianazabrocki': 1469, 'sky': 10378, 'novak': 7872, 'fantastichappy': 3752, 'batb': 945, 'clap': 2054, 'whilst': 12705, 'hugging': 5195, 'aki': 264, 'thencerest': 11561, 'indiemusic': 5418, 'mahzo': 6816, 'sexyjudy': 10084, 'pussy': 9122, 'sexo': 10076, 'humidity': 5216, 'promotional': 9031, 'cakei': 1664, 'seemed': 9970, 'sloppy': 10416, 'seconds': 9952, 'stock': 10978, 'marmite': 6920, 'ecki': 3257, 'nic': 7728, 'taft': 11304, 'finalists': 3883, 'lottery': 6625, 'awards': 735, 'usagi': 12260, 'loooooove': 6599, 'wowwww': 12899, 'redheartblueheartgreenhearttwoheartsredheartblueheartgreenhearttwohearts': 9350, 'lepas': 6381, 'sembuh': 10003, 'sibuk': 10269, 'balik': 861, 'kins': 6097, 'gotham': 4505, 'sunnyday': 11155, 'texting': 11498, 'dudesdudettes': 3185, 'costs': 2383, 'flippin': 3965, 'fortune': 4059, 'divinediscontentthe': 3002, 'amnotness': 387, 'autofollow': 710, 'teamfollowback': 11420, 'geer': 4294, 'bat': 943, 'mz': 7528, 'yang': 12993, 'deennya': 2735, 'jehwan': 5735, 'julie': 5875, 'thanksyou': 11529, 'calumsos': 1686, 'lukesos': 6715, 'ashtonsos': 623, 'chelny': 1931, 'datz': 2662, 'jeremy': 5748, 'fmt': 3988, 'dat': 2656, 'heartbeat': 4893, 'voxy': 12458, 'clutching': 2115, 'turtle': 12016, 'sons': 10707, 'andree': 414, 'angels': 430, 'confused': 2256, 'besteverdoctorwhoepisode': 1119, 'relevant': 9407, 'smileyconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusion': 10474, 'puke': 9087, 'proper': 9037, 'subliminal': 11085, 'messages': 7131, 'eatmeat': 3252, 'brewproject': 1465, 'lovenafianna': 6658, 'lewis': 6402, 'clock': 2100, 'happens': 4785, 'coughing': 2390, 'muslim': 7492, 'prophets': 9041, 'ishe': 5588, 'mistake': 7256, 'understood': 12147, 'stophappy': 10995, 'politicians': 8736, 'argue': 578, 'intellect': 5515, 'recommendation': 9330, 'shiva': 10196, 'joyfulmusic': 5844, 'mp': 7409, 'apps': 553, 'summers': 11139, 'standrews': 10898, 'fish': 3917, 'sandcastle': 9808, 'ewok': 3562, 'nate': 7592, 'brawl': 1447, 'rear': 9301, 'naked': 7559, 'choke': 1982, 'coffees': 2142, 'heck': 4916, 'gun': 4651, 'associate': 653, 'guns': 4657, 'um': 12114, 'endowmentsi': 3410, 'responseshappy': 9490, 'options': 8114, 'sinister': 10322, 'ai': 224, 'sikandar': 10294, 'pti': 9071, 'standwdik': 10900, 'westandwithik': 12660, 'starbucks': 10903, 'logo': 6559, 'stands': 10899, 'obsession': 7942, 'addiction': 113, 'renew': 9431, 'lose': 6613, 'charity': 1891, 'min': 7205, 'hokies': 5052, 'biz': 1238, 'posted': 8790, 'recruiting': 9341, 'non': 7812, 'america': 374, 'california': 1674, 'mistgameplay': 7259, 'iloveyou': 5334, 'vex': 12359, 'designed': 2827, 'igers': 5308, 'smileyleicaq': 10517, 'leica': 6370, 'dudeeeeeee': 3183, 'lists': 6500, 'persona': 8473, 'yepp': 13043, 'muchsmilingfacewithsmilingeyessmilingfacewithsmilingeyes': 7451, 'greg': 4566, 'useful': 12265, 'posey': 8780, 'miami': 7159, 'jamesyammouni': 5683, 'jakubowski': 5678, 'sparks': 10786, 'hollands': 5063, 'brando': 1440, 'breakdown': 1454, 'materials': 6971, 'thorin': 11626, 'hunt': 5233, 'mummy': 7470, 'kitney': 6113, 'choroo': 1995, 'nahi': 7546, 'musings': 7491, 'aztec': 775, 'princess': 8966, 'rainy': 9201, 'kingfisher': 6091, 'overtones': 8209, 'relaxed': 9397, 'facesor': 3667, 'chinua': 1968, 'achebe': 76, 'intellectual': 5516, 'issues': 5608, 'liquid': 6487, 'melbournetrip': 7079, 'taxikitchen': 11388, 'nooow': 7839, 'published': 9080, 'ebook': 3256, 'selfpublishers': 9994, 'study': 11060, 'mcdo': 7007, 'everywhere': 3555, 'dreamer': 3130, 'tanishanonly': 11355, 'kindled': 6085, 'flame': 3936, 'convictions': 2334, 'bar': 905, 'reasons': 9304, 'repath': 9439, 'smileyrepath': 10544, 'adisconfusion': 127, 'stefanie': 10950, 'ms': 7416, 'lightbox': 6436, 'ran': 9218, 'incorrect': 5405, 'spelling': 10808, 'apologist': 520, 'vuly': 12467, 'emmy': 3373, 'khusro': 6034, 'batman': 950, 'pearson': 8413, 'reputation': 9461, 'nikkei': 7763, 'hmmmask': 5039, 'woodford': 12840, 'cousins': 2421, 'smileyredheartpurpleheartheartwitharrowkissmark': 10543, 'vscocam': 12462, 'vscoph': 12465, 'vscogood': 12464, 'vscophil': 12466, 'vscocousins': 12463, 'yaap': 12983, 'urwelc': 12256, 'neon': 7668, 'pants': 8290, 'haaa': 4684, 'turner': 12013, 'willing': 12752, 'auspost': 703, 'failed': 3702, 'openfollow': 8090, 'rp': 9688, 'eng': 3416, 'yjcosplay': 13073, 'cosplayers': 2379, 'luxembourg': 6733, 'bunnys': 1592, 'broadcast': 1495, 'needa': 7641, 'gals': 4233, 'bend': 1091, 'heaven': 4912, 'proposal': 9042, 'scores': 9908, 'goals': 4435, 'january': 5694, 'hanabutle': 4762, 'kikhorny': 6054, 'interracial': 5535, 'makeup': 6832, 'chu': 2015, 'weekends': 12621, 'punting': 9103, 'horseracing': 5122, 'horses': 5124, 'betting': 1134, 'horseracingtips': 5123, 'soulful': 10751, 'guitarsoul': 4648, 'cocoared': 2135, 'tyldesley': 12065, 'salut': 9788, 'brief': 1473, 'introduction': 5543, 'earliest': 3233, 'subcontinent': 11078, 'bfr': 1145, 'mauryashappy': 6985, 'jordanian': 5827, 'tenyai': 11477, 'hee': 4918, 'ss': 10873, 'semi': 10005, 'atp': 673, 'wimbledon': 12758, 'federer': 3806, 'nadal': 7534, 'monfilsmost': 7331, 'handsome': 4772, 'cilic': 2031, 'nisas': 7775, 'firm': 3913, 'diary': 2885, 'potentially': 8803, 'itsesha': 5633, 'chillin': 1961, 'lils': 6457, 'tails': 11311, 'kittens': 6117, 'actuallyfacewithtearsofjoygrinningfacewithsmilingeyesand': 102, 'assassin': 642, 'garret': 4266, 'baz': 963, 'pumps': 9097, 'leo': 6379, 'xst': 12963, 'standard': 10893, 'centrifugal': 1820, 'haired': 4727, 'eternity': 3514, 'forgive': 4046, 'kangin': 5929, 'kristin': 6172, 'backhandindexpointingleftgrowingheart': 808, 'cass': 1776, 'surajettan': 11194, 'kashi': 5955, 'ashwathy': 624, 'mommy': 7323, 'yessss': 13053, 'tirth': 11725, 'brambhatt': 1435, 'snooker': 10625, 'compensation': 2219, 'theoper': 11566, 'premiostumundo': 8916, 'beg': 1045, 'differ': 2901, 'philosophical': 8522, 'backwow': 817, 'graphic': 4539, 'level': 6399, 'smileylearn': 10516, 'thurs': 11670, 'aug': 693, 'excl': 3575, 'augconfusion': 694, 'tidying': 11688, 'raw': 9256, 'weenie': 12628, 'annoyingbaby': 456, 'included': 5397, 'lazy': 6319, 'cosy': 2384, 'clientamendseditfinalfinalfinalpdfthat': 2088, 'smileymorning': 10526, 'mauliate': 6984, 'ito': 5629, 'clicking': 2085, 'okkay': 8011, 'knock': 6139, 'soloists': 10674, 'ryu': 9734, 'saera': 9759, 'verify': 12348, 'pinkeu': 8597, 'angry': 435, 'animationconfusion': 440, 'aqui': 558, 'screencaps': 9920, 'jonghyun': 5824, 'seungyeon': 10063, 'cnblue': 2118, 'mbc': 7001, 'wgmpri': 12668, 'masa': 6938, 'entrepreneurship': 3451, 'empowered': 3386, 'limpopo': 6468, 'naito': 7553, 'picts': 8565, 'norapowel': 7842, 'hornykik': 5113, 'livesex': 6516, 'walked': 12513, 'pumpkins': 9096, 'smiled': 10445, 'looked': 6592, 'wot': 12889, 'downloadconfusion': 3105, 'tanks': 11357, 'reserve': 9474, 'thrice': 11646, 'wilts': 12757, 'patron': 8364, 'venture': 12340, 'deathcure': 2708, 'bottom': 1397, 'boob': 1351, 'blame': 1253, 'weekhappy': 12624, 'dine': 2921, 'modern': 7303, 'weatherly': 12599, 'bits': 1231, 'letting': 6398, 'grill': 4576, 'disk': 2975, 'nt': 7897, 'iirc': 5318, 'dalso': 2605, 'ux': 12289, 'refinements': 9360, 'zdps': 13181, 'justice': 5899, 'adventures': 146, 'daw': 2670, 'tine': 11712, 'gensan': 4315, 'ordered': 8127, 'frightlings': 4138, 'undead': 12139, 'plushes': 8705, 'cushions': 2554, 'xxxxxx': 12972, 'nba': 7617, 'mypark': 7523, 'chronicles': 2013, 'gryph': 4612, 'volume': 12448, 'illiamtan': 5331, 'decision': 2725, 'favorable': 3781, 'sides': 10277, 'ellen': 3339, 'degeneres': 2753, 'showconfusion': 10243, 'shirts': 10187, 'mints': 7230, 'rocking': 9628, 'superdry': 11171, 'berangkaat': 1105, 'lagiii': 6231, 'receive': 9313, 'siguro': 10293, 'un': 12124, 'kesa': 6009, 'lotsa': 6624, 'organisation': 8136, 'offices': 7974, 'andi': 412, 'mrdiddy': 7413, 'fingerscrossed': 3900, 'deep': 2736, 'htaccess': 5182, 'file': 3872, 'elbro': 3320, 'adf': 124, 'womad': 12822, 'gran': 4527, 'canaria': 1707, 'gig': 4364, 'twist': 12045, 'defined': 2748, 'teamnatural': 11425, 'huni': 5231, 'mafai': 6788, 'yayayayayits': 13005, 'yt': 13135, 'convention': 2329, 'barely': 913, 'computer': 2233, 'brighton': 1479, 'slayed': 10391, 'nickname': 7739, 'babygirl': 791, 'regarding': 9369, 'requests': 9465, 'momentsideas': 7321, 'serioushimmat': 10037, 'karain': 5940, 'baat': 782, 'smileyu': 10559, 'meri': 7122, 'debates': 2714, 'hoteemy': 5136, 'unclesfacewithtearsofjoy': 12135, 'pronounce': 9035, 'native': 7602, 'american': 375, 'proverb': 9054, 'lovable': 6645, 'yesha': 13049, 'montoya': 7346, 'eagerly': 3228, 'saves': 9853, 'jade': 5666, 'payment': 8380, 'processed': 8999, 'supreme': 11191, 'leon': 6380, 'statter': 10933, 'kojimaen': 6159, 'ks': 6177, 'concertd': 2241, 'randybis': 9225, 'physique': 8553, 'shaved': 10141, 'uncut': 12137, 'boi': 1331, 'cheapest': 1908, 'printing': 8973, 'regular': 9376, 'printer': 8971, 'countries': 2401, 'nz': 7933, 'printers': 8972, 'hiding': 4983, 'large': 6272, 'format': 4053, 'everyonehappy': 3548, 'replying': 9452, 'senior': 10012, 'raid': 9193, 'conserve': 2282, 'battery': 953, 'comfortable': 2191, 'swt': 11272, 'youtheres': 13120, 'rail': 9194, 'fridayd': 4114, 'reservationseu': 9473, 'localgaragederby': 6545, 'campus': 1702, 'subgames': 11080, 'faceit': 3664, 'snpcaht': 10630, 'hakhakhak': 4737, 'tt': 11982, 'kyungsoos': 6204, 'animated': 439, 'viewed': 12392, 'property': 9040, 'agent': 192, 'accurate': 71, 'description': 2822, 'theory': 11568, 'clear': 2074, 'surrender': 11205, 'marine': 6908, 'underwater': 12148, 'ocean': 7951, 'yvette': 13158, 'author': 708, 'mwf': 7515, 'programme': 9012, 'taal': 11291, 'lake': 6241, 'lovehappy': 6653, 'emt': 3390, 'scurri': 9933, 'agile': 197, 'shipping': 10182, 'solution': 10677, 'sme': 10436, 'omark': 8039, 'omar': 8038, 'biggest': 1171, 'losers': 6615, 'kamaal': 5924, 'amm': 385, 'busyearly': 1621, 'collectionhappy': 2164, 'hopehousekids': 5103, 'pitmantraining': 8620, 'walkersmithway': 12514, 'keepitlocal': 5994, 'sehun': 9976, 'seleaders': 9981, 'rossaholic': 9671, 'uneventful': 12151, 'sofa': 10659, 'surfing': 11197, 'cunt': 2537, 'unfollow': 12157, 'convos': 2338, 'rescoops': 9468, 'multiracial': 7466, 'couples': 2409, 'fk': 3934, 'narrow': 7582, 'minded': 7209, 'assholes': 647, 'freakeh': 4089, 'warlock': 12539, 'dyeah': 3221, 'faithful': 3708, 'balloon': 867, 'gtmj': 4629, 'hurts': 5240, 'workout': 12866, 'madison': 6779, 'supposed': 11188, 'beonknockknock': 1103, 'toda': 11753, 'caughthappy': 1794, 'congraduation': 2267, 'gents': 4317, 'bitchface': 1225, 'limit': 6464, 'unamusedface': 12128, 'organic': 8135, 'everyonewere': 3550, 'york': 13091, 'nearest': 7632, 'lendal': 6376, 'memberspikami': 7088, 'captured': 1727, 'fulton': 4191, 'sheen': 10148, 'baloney': 870, 'unvarnished': 12211, 'lie': 6421, 'laid': 6238, 'thick': 11590, 'blarney': 1258, 'flattery': 3943, 'thin': 11592, 'sachin': 9746, 'unimportant': 12172, 'context': 2312, 'dampen': 2617, 'excitement': 3573, 'emma': 3372, 'yu': 13138, 'comparing': 2217, 'bellybuttons': 1079, 'rocket': 9627, 'raspberry': 9243, 'narendra': 7581, 'modi': 7304, 'aaaaaand': 4, 'teams': 11428, 'macauley': 6760, 'however': 5162, 'wheeeeeeeeeeeeeeeen': 12692, 'teamlh': 11424, 'heechul': 4919, 'toast': 11749, 'coffeeweekdays': 2143, 'kyohei': 6201, 'island': 5595, 'sail': 9766, 'faster': 3769, 'commercial': 2200, 'insurance': 5510, 'requirements': 9467, 'lookfortheo': 6593, 'cl': 2049, 'thou': 11630, 'homehappy': 5073, 'april': 554, 'flying': 3984, 'airforce': 240, 'clark': 2058, 'field': 3854, 'pampanga': 8272, 'festivalhappy': 3842, 'hotairballoon': 5132, 'yepproud': 13044, 'trollhappy': 11951, 'highvoltageyour': 4992, 'rocks': 9629, 'clappinghands': 2056, 'brows': 1521, 'oily': 7996, 'skinconfusion': 10369, 'maricarljanah': 6906, 'becauseyour': 1027, 'navy': 7608, 'battlefield': 956, 'degrees': 2756, 'fahrenheit': 3698, 'tia': 11680, 'cocktailglassfriedshrimpcocktailglassfriedshrimpfriedshrimpcocktailglassfriedshrimpcocktailglass': 2130, 'relaxinghappy': 9401, 'stool': 10990, 'topple': 11830, 'findyourfit': 3893, 'skaro': 10358, 'preferred': 8908, 'term': 11483, 'whomosexual': 12721, 'packed': 8234, 'stack': 10878, 'pandora': 8281, 'rings': 9569, 'attend': 681, 'digitalexeter': 2911, 'digitalmarketing': 2912, 'sociamedia': 10649, 'andy': 419, 'nb': 7616, 'bom': 1336, 'dia': 2877, 'todos': 11765, 'forklift': 4051, 'warehouse': 12536, 'workers': 12856, 'lsceens': 6686, 'extras': 3630, 'immature': 5352, 'gandhi': 4250, 'grassy': 4542, 'oliviajadexo': 8029, 'feetblog': 3820, 'infrared': 5449, 'heating': 4910, 'scribble': 9926, 'daughteryrs': 2664, 'oldporridge': 8021, 'fiend': 3856, 'boys': 1414, 'comp': 2212, 'vikings': 12397, 'tblast': 11400, 'np': 7889, 'havingi': 4848, 'taxes': 11386, 'bills': 1187, 'feets': 3821, 'oooooooooohh': 8079, 'petjam': 8494, 'toying': 11868, 'virtual': 12418, 'pounce': 8808, 'signing': 10291, 'benteke': 1100, 'agnes': 198, 'socialmediacouk': 10646, 'fruity': 4158, 'vodkas': 12442, 'sellyourcarinwords': 9999, 'chaloniklosellyourcarinwords': 1852, 'chaloniklo': 1851, 'pictwittercomjxzlbvo': 8568, 'kindle': 6084, 'paperwhites': 8297, 'laserlike': 6278, 'focus': 3993, 'ghost': 4349, 'tagsforlikesapp': 11309, 'instagood': 5497, 'tbt': 11403, 'trending': 11924, 'trueyou': 11966, 'smileynew': 10529, 'socket': 10651, 'spannersebay': 10779, 'patiently': 8358, 'sleepingface': 10397, 'pglcsgo': 8504, 'pearlyyy': 8412, 'favoriteotherwisei': 3783, 'crave': 2456, 'slower': 10425, 'sjw': 10357, 'cryd': 2513, 'cakehamper': 1663, 'baskets': 939, 'hated': 4834, 'glowing': 4424, 'yayyyy': 13008, 'mercedes': 7114, 'hood': 5094, 'badge': 823, 'hosted': 5129, 'drone': 3155, 'ignore': 5311, 'retaliate': 9506, 'bollinger': 1334, 'smileyplay': 10536, 'wheres': 12700, 'planningtiming': 8649, 'denmark': 2797, 'bushraaaaaa': 1616, 'whitey': 12715, 'culture': 2533, 'coursee': 2415, 'smileycheers': 10463, 'completed': 2227, 'intro': 5540, 'smileyexcited': 10494, 'graphicsgraphicdesign': 4540, 'videographer': 12384, 'youtuber': 13124, 'mistakes': 7257, 'space': 10768, 'fill': 3874, 'teds': 11446, 'bogus': 1328, 'hahahaaahowly': 4702, 'outmomma': 8188, 'afternon': 173, 'henry': 4956, 'whangarei': 12679, 'katie': 5967, 'nicholas': 7735, 'pauline': 8370, 'traffickers': 11882, 'daring': 2642, 'worse': 12883, 'hence': 4954, 'expression': 3625, 'maltby': 6845, 'handlettering': 4768, 'roof': 9654, 'tops': 11831, 'ease': 3245, 'sour': 10761, 'dough': 3099, 'bharathi': 1150, 'pirates': 8609, 'egypt': 3294, 'explains': 3615, 'hubby': 5188, 'mixed': 7269, 'sakin': 9772, 'six': 10349, 'christmas': 2006, 'wiganer': 12747, 'brave': 1444, 'avril': 727, 'njs': 7785, 'prosecco': 9047, 'pech': 8416, 'micro': 7167, 'bikinis': 1178, 'catspjsconfusion': 1792, 'gal': 4229, 'ahp': 222, 'lazyweekend': 6320, 'yuki': 13141, 'overdue': 8202, 'mice': 7162, 'womandancingwomandancingwomandancingsa': 12824, 'joys': 5845, 'lay': 6314, 'jurassic': 5895, 'twohearts': 12053, 'ding': 2923, 'nila': 7765, 'wave': 12570, 'lawbreaker': 6310, 'smileyhot': 10506, 'pairing': 8254, 'unfortunately': 12165, 'smell': 10437, 'cookie': 2342, 'shir': 10184, 'hale': 4740, 'cheshire': 1941, 'shots': 10226, 'decorating': 2729, 'lem': 6372, 'recs': 9342, 'ingat': 5453, 'din': 2920, 'mono': 7335, 'kathryn': 5966, 'jr': 5849, 'developed': 2853, 'properties': 9039, 'hsr': 5180, 'base': 929, 'major': 6824, 'sugarrush': 11115, 'knitting': 6136, 'earsconfusion': 3241, 'partly': 8325, 'binge': 1192, 'homegirl': 5072, 'nancy': 7573, 'fenja': 3832, 'chorri': 1996, 'aapke': 16, 'benchmarks': 1090, 'ke': 5983, 'hisaab': 5025, 'ho': 5045, 'gaya': 4279, 'islife': 5597, 'ofc': 7963, 'influenced': 5438, 'rtss': 9698, 'hwaiting': 5249, 'behiri': 1058, 'titanfall': 11728, 'xbox': 12939, 'saturdaythen': 9841, 'ultimate': 12110, 'experiment': 3608, 'gastronomy': 4271, 'newblogpost': 7687, 'foodiefridaysfoodie': 4023, 'yoghurt': 13082, 'pancakes': 8278, 'thechase': 11549, 'sabah': 9743, 'kapima': 5936, 'gelen': 4298, 'guzel': 4669, 'bir': 1201, 'hediye': 4917, 'thanx': 11535, 'revolvingheartsfaceblowingakiss': 9528, 'visas': 12420, 'parisa': 8310, 'epiphany': 3467, 'ndia': 7627, 'lit': 6501, 'emcon': 3363, 'swore': 11270, 'yaaaah': 12978, 'defenders': 2743, 'retailers': 9504, 'kianweareproud': 6038, 'distracted': 2989, 'dayofarch': 2676, 'admin': 129, 'bapu': 904, 'ivypowel': 5643, 'newmusic': 7693, 'sexchat': 10073, 'titles': 11731, 'tomato': 11782, 'pathways': 8355, 'balkan': 862, 'gypsy': 4679, 'mayhem': 6993, 'burek': 1598, 'meatconfusion': 7034, 'gibanica': 4353, 'pieconfusion': 8572, 'likely': 6447, 'surrey': 11207, 'afterwards': 176, 'breads': 1452, 'newchange': 7688, 'bleh': 1266, 'temporal': 11466, 'void': 12445, 'stem': 10952, 'sf': 10087, 'ykr': 13075, 'sparkymm': 10787, 'grsrockfishing': 4607, 'topwaternew': 11834, 'twitlonger': 12049, 'meso': 7127, 'jummah': 5879, 'allrecite': 321, 'durood': 3210, 'pak': 8255, 'canthank': 1722, 'lessons': 6388, 'lasts': 6284, 'cjradacomateada': 2048, 'suprised': 11192, 'debut': 2719, 'bebravetoday': 1026, 'fandoms': 3741, 'shippers': 10181, 'aside': 628, 'differences': 2903, 'housemates': 5155, 'pbbbigatingconcert': 8386, 'jedzjabka': 5731, 'pijjabka': 8581, 'polish': 8733, 'cider': 2027, 'chapman': 1876, 'mustread': 7500, 'cricket': 2484, 'state': 10926, 'origin': 8142, 'queries': 9156, 'abby': 25, 'sumedh': 11135, 'sunnah': 11152, 'familyconfusion': 3727, 'quad': 9143, 'biking': 1176, 'carrie': 1763, 'propriety': 9045, 'chronic': 2012, 'illness': 5332, 'coated': 2126, 'superday': 11170, 'chocolatey': 1978, 'yasu': 13001, 'oooooh': 8078, 'fucked': 4172, 'hallo': 4748, 'improvement': 5372, 'dylan': 3224, 'laurasharks': 6306, 'laura': 6305, 'patrice': 8362, 'keepin': 5992, 'alwayshappy': 352, 'mohr': 7310, 'wguest': 12669, 'oneal': 8057, 'rising': 9582, 'award': 734, 'tks': 11736, 'luas': 6698, 'stones': 10989, 'lbs': 6323, 'targets': 11365, 'quicker': 9165, 'heavy': 4914, 'diet': 2899, 'addy': 123, 'sosweet': 10747, 'nominiere': 7808, 'foxus': 4075, 'aquila': 559, 'und': 12138, 'hardcore': 4803, 'smileyconfusionrelievedface': 10485, 'ltffspecialacha': 6691, 'banda': 880, 'victoryhand': 12377, 'bhi': 1155, 'krta': 6174, 'haihandsome': 4721, 'facewithtearsofjoymust': 3681, 'beautifullycrafted': 1017, 'mockingbird': 7298, 'diploma': 2928, 'blend': 1267, 'benefits': 1095, 'numbero': 7911, 'lolz': 6571, 'ambrose': 369, 'gwinett': 4673, 'bierce': 1167, 'suffered': 11110, 'ravages': 9253, 'illadvised': 5330, 'marriages': 6922, 'virginity': 12417, 'staring': 10907, 'cynical': 2580, 'joke': 5811, 'yahuda': 12989, 'nosmet': 7851, 'pony': 8743, 'cuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuute': 2571, 'fing': 3897, 'vacant': 12293, 'smileywith': 10566, 'hauc': 4844, 'lovessss': 6666, 'hissing': 5026, 'overnight': 8206, 'cornish': 2367, 'allclear': 307, 'rainmr': 9199, 'runs': 9721, 'milesmrs': 7188, 'complains': 2224, 'raincoat': 9197, 'wethappy': 12662, 'measure': 7032, 'mans': 6882, 'wealth': 12587, 'invested': 5547, 'garbii': 4261, 'wimbledonreally': 12759, 'washed': 12549, 'refuel': 9365, 'dunedin': 3199, 'karvonen': 5954, 'kalle': 5923, 'wsalelovea': 12921, 'rakhi': 9208, 'photographer': 8535, 'carry': 1765, 'dragic': 3116, 'projects': 9018, 'represents': 9460, 'sloveniahappy': 10423, 'slovenia': 10422, 'fridge': 4125, 'cats': 1791, 'ludlow': 6710, 'selway': 10001, 'submitted': 11087, 'spanish': 10778, 'greet': 4563, 'subjects': 11084, 'raynexxx': 9260, 'oitnb': 7997, 'weekendsunshinerain': 12622, 'wind': 12762, 'prepared': 8924, 'conditions': 2246, 'msged': 7420, 'chiquitos': 1973, 'ohaha': 7984, 'delhi': 2767, 'webtogsawards': 12607, 'graces': 4518, 'sheffield': 10156, 'tramlines': 11896, 'tl': 11738, 'hacked': 4691, 'lads': 6221, 'beeeeepin': 1035, 'hilarioussuper': 5002, 'duper': 3206, 'awesomehappy': 743, 'facewithstuckouttonguewinkingeye': 3673, 'handle': 4766, 'critiquesthats': 2495, 'contectually': 2304, 'beliebers': 1070, 'winkingface': 12774, 'grinningfacewithsmilingeyes': 4586, 'ultor': 12112, 'mamaya': 6850, 'loiyals': 6560, 'para': 8298, 'smileytruthfulwordsof': 10558, 'beanatividadnknkkpagpapakumbaba': 997, 'smileybirthdaypresent': 10457, 'compliment': 2231, 'swerve': 11255, 'irrelephant': 5576, 'ifwhen': 5305, 'goodtime': 4479, 'scared': 9875, 'tryna': 11974, 'anonymous': 462, 'ryanhamilton': 9732, 'dipsatch': 2931, 'aunt': 697, 'dagga': 2598, 'wonders': 12834, 'trucker': 11962, 'burketeer': 1603, 'suspects': 11216, 'ids': 5298, 'smileystarted': 10553, 'linkhappy': 6478, 'promo': 9025, 'required': 9466, 'twine': 12042, 'dianes': 2881, 'sayhappybirthday': 9862, 'thanksss': 11527, 'randomly': 9221, 'booked': 1355, 'buckinghampalace': 1547, 'personality': 8476, 'chibi': 1946, 'maker': 6829, 'timog': 11708, 'otw': 8168, 'kami': 5925, 'feelinggood': 3815, 'demand': 2785, 'workno': 12865, 'naman': 7562, 'smileytara': 10554, 'barkin': 918, 'blends': 1268, 'beers': 1037, 'toohappy': 11814, 'yeap': 13018, 'onkey': 8062, 'editconfusion': 3265, 'umma': 12120, 'pervert': 8484, 'onyu': 8072, 'appa': 526, 'lucy': 6709, 'horriblesorry': 5117, 'monthshappy': 7345, 'builds': 1571, 'quantum': 9150, 'greater': 4552, 'blockchain': 1279, 'nowplaying': 7883, 'loftey': 6553, 'routte': 9682, 'assiamain': 648, 'mixconfusionone': 7268, 'jointit': 5809, 'futurereleases': 4210, 'scary': 9879, 'murder': 7477, 'mystery': 7524, 'commas': 2197, 'mrjs': 7414, 'hunny': 5232, 'emily': 3368, 'fani': 3744, 'lifeyoure': 6433, 'beautifulhappy': 1015, 'nathan': 7595, 'pete': 8490, 'meditation': 7044, 'puts': 9127, 'alumni': 348, 'mba': 6998, 'representatives': 9458, 'foto': 4064, 'whatisyourfashionality': 12683, 'lorenangel': 6607, 'kw': 6194, 'boatbound': 1319, 'luxury': 6736, 'yachting': 12985, 'masses': 6954, 'tellanoldjokeday': 11462, 'contributions': 2324, 'reqd': 9463, 'frees': 4098, 'speculationand': 10804, 'allows': 320, 'consistency': 2287, 'startup': 10918, 'tropics': 11956, 'startupph': 10919, 'based': 930, 'zodiac': 13193, 'rapunzel': 9237, 'imaginative': 5343, 'therver': 11580, 'bestoftheday': 1124, 'oralsex': 8118, 'bibboo': 1163, 'carly': 1752, 'happily': 4788, 'contract': 2318, 'ends': 3411, 'gtkw': 4627, 'matsubouzu': 6975, 'horse': 5121, 'sonic': 10704, 'startdgoodmorning': 10912, 'videogames': 12383, 'harana': 4800, 'sing': 10313, 'belfast': 1066, 'danny': 2635, 'rare': 9238, 'sponsorship': 10839, 'aswell': 659, 'gigi': 4367, 'pond': 8741, 'nick': 7737, 'austin': 705, 'weak': 12584, 'girlfriend': 4383, 'bravo': 1446, 'sayed': 9861, 'paste': 8345, 'iamamonster': 5267, 'rxthedailysurveyvotes': 9729, 'broke': 1501, 'asshappy': 645, 'roux': 9683, 'tweeted': 12029, 'walkin': 12515, 'audience': 689, 'pfb': 8501, 'shay': 10144, 'jute': 5903, 'walangmakakapigilsakin': 12507, 'lori': 6608, 'ehm': 3299, 'trick': 11935, 'baekhyun': 833, 'eyesmiles': 3646, 'borrow': 1382, 'knives': 6137, 'acha': 74, 'thek': 11553, 'widely': 12739, 'eventually': 3537, 'returning': 9510, 'reaapearing': 9271, 'yesbut': 13047, 'kno': 6138, 'whet': 12702, 'grattis': 4547, 'shorter': 10219, 'tweetin': 12031, 'errachiq': 3484, 'batool': 951, 'detail': 2842, 'inshallah': 5484, 'healthylifestyle': 4885, 'falla': 3716, 'skating': 10360, 'analyzing': 404, 'coursetalking': 2416, 'variety': 12320, 'twitching': 12048, 'insomnia': 5488, 'medication': 7041, 'opposite': 8107, 'saved': 9852, 'everlasting': 3541, 'archives': 568, 'spin': 10820, 'yoga': 13081, 'weights': 12632, 'sports': 10842, 'massage': 6952, 'ouchconfusionosteopath': 8174, 'trainers': 11890, 'nooooow': 7836, 'sharm': 10132, 'smileytrip': 10557, 'almasterbandconcert': 327, 'wallet': 12519, 'tbc': 11396, 'univesity': 12181, 'architecture': 567, 'random': 9220, 'typo': 12074, 'snark': 10614, 'lessions': 6386, 'drunk': 3165, 'bruuh': 1533, 'firsteurope': 3916, 'iove': 5559, 'presenting': 8933, 'corp': 2369, 'missing': 7250, 'according': 66, 'mne': 7284, 'pchelok': 8396, 'ja': 5653, 'carefully': 1744, 'sweetest': 11248, 'comet': 2189, 'ahah': 209, 'candy': 1716, 'axio': 766, 'reminds': 9423, 'rabbit': 9180, 'nutshell': 7918, 'taken': 11318, 'letshavecocktailsafternuclai': 6395, 'malik': 6842, 'umair': 12116, 'celebrity': 1811, 'canon': 1718, 'gangstay': 4253, 'grinding': 4580, 'thoracicbridge': 11625, 'passed': 8337, 'nonscripted': 7820, 'password': 8342, 'shoshannavassil': 10224, 'addmeonsnapchat': 120, 'dmme': 3016, 'mpoints': 7410, 'olddutch': 8018, 'workspv': 12872, 'soph': 10725, 'thoughts': 11634, 'subjective': 11083, 'painful': 8247, 'brou': 1516, 'cut': 2561, 'anotur': 465, 'liao': 6409, 'bomesince': 1341, 'ord': 8125, 'liaotake': 6410, 'lor': 6605, 'smileybrolol': 10459, 'sibei': 10268, 'xialan': 12950, 'thnx': 11617, 'malfunctioning': 6841, 'cleared': 2075, 'clowns': 2113, 'jokers': 5812, 'smileyits': 10511, 'emeraldeye': 3365, 'steele': 10948, 'nigth': 7758, 'estoy': 3509, 'escuchando': 3492, 'enemy': 3414, 'elsewhere': 3349, 'aroberts': 592, 'bipolar': 1199, 'hahahahahahahahahahahahahaha': 4708, 'dying': 3223, 'yoohoo': 13088, 'shattering': 10137, 'records': 9337, 'bajrangibhaijaanstorm': 848, 'superhappy': 11172, 'doll': 3042, 'energy': 3415, 'mdearhappy': 7019, 'alrd': 333, 'dhan': 2870, 'satguru': 9835, 'tera': 11480, 'aasramany': 19, 'pita': 8617, 'gkeep': 4402, 'keeo': 5990, 'guessing': 4638, 'darling': 2647, 'akarshan': 262, 'singledforeveralone': 10318, 'chic': 1947, 'sweetpea': 11251, 'gluten': 4426, 'cakes': 1665, 'pastry': 8348, 'workshopshappy': 12871, 'highfive': 4988, 'artsy': 612, 'verbal': 12344, 'beslagic': 1114, 'bth': 1536, 'kaaaa': 5906, 'oxford': 8226, 'campaigner': 1698, 'routes': 9680, 'wahoo': 12489, 'masaantoday': 6940, 'anchors': 407, 'seahappy': 9939, 'celebrating': 1808, 'partnership': 8327, 'robbenisland': 9613, 'cultural': 2532, 'whale': 12677, 'aquatic': 557, 'safari': 9761, 'garrus': 4267, 'liara': 6411, 'appointments': 543, 'burnley': 1607, 'dayshappy': 2678, 'represent': 9457, 'football': 4030, 'fmfamily': 3986, 'aamir': 15, 'difficult': 2906, 'medium': 7045, 'madhura': 6776, 'ampm': 391, 'adore': 135, 'nva': 7921, 'minuets': 7231, 'gamecity': 4235, 'headrest': 4878, 'pitted': 8622, 'spoken': 10836, 'advised': 150, 'paypoint': 8384, 'topped': 11829, 'deepthroat': 2738, 'truly': 11967, 'lateral': 6289, 'bee': 1034, 'upward': 12241, 'bound': 1401, 'movingonup': 7407, 'aitor': 254, 'sns': 10631, 'sharief': 10128, 'jawad': 5710, 'odj': 7960, 'presale': 8926, 'methings': 7144, 'betcha': 1129, 'dumb': 3194, 'butt': 1624, 'qualky': 9148, 'milf': 7190, 'likelike': 6446, 'sexysaturday': 10086, 'jubby': 5858, 'vw': 12470, 'umpffffff': 12123, 'ca': 1647, 'domg': 3048, 'nanti': 7575, 'difollow': 2908, 'raspberrytongue': 9245, 'stubborn': 11052, 'soaping': 10636, 'nothavingit': 7861, 'klee': 6126, 'butter': 1625, 'hemmings': 4952, 'heartdecoration': 4897, 'brad': 1423, 'congrads': 2266, 'accomplishment': 65, 'sees': 9974, 'texts': 11499, 'kfcroleplayers': 6020, 'tregaron': 11922, 'potential': 8802, 'boar': 1316, 'extremely': 3634, 'sweaty': 11240, 'glyon': 4427, 'beatingheartlitterinbinsignpeoplewithbunnyearspartying': 1006, 'initial': 5460, 'teespm': 11453, 'johnny': 5802, 'utube': 12283, 'respect': 9481, 'loss': 6618, 'combine': 2184, 'pigeon': 8577, 'contacting': 2300, 'ops': 8109, 'fingerscrossedhappy': 3901, 'photobomb': 8533, 'fitz': 3926, 'gim': 4371, 'smileyconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusion': 10478, 'hiim': 4997, 'definetly': 2749, 'exited': 3591, 'yorkhappy': 13092, 'mobilegame': 7292, 'bomdia': 1340, 'apotongue': 524, 'ultraviolet': 12113, 'jul': 5871, 'oooh': 8077, 'yawns': 13002, 'wags': 12485, 'tail': 11310, 'neo': 7666, 'ftw': 4167, 'prefer': 8906, 'maman': 6849, 'gibson': 4355, 'afterznoon': 178, 'tweeeps': 12024, 'smileyplz': 10538, 'abp': 37, 'kiya': 6119, 'smileyconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusionconfusion': 10475, 'van': 12311, 'olympic': 8035, 'facewithmedicalmask': 3670, 'classy': 2068, 'attached': 676, 'sorts': 10743, 'saving': 9856, 'equipment': 3475, 'bedshaving': 1033, 'shockconfusion': 10201, 'bobble': 1322, 'versionconfusion': 12355, 'storyline': 11007, 'anu': 482, 'priyabgt': 8982, 'dl': 3012, 'mh': 7154, 'patch': 8349, 'psp': 9063, 'mutuals': 7506, 'thanking': 11524, 'mayo': 6995, 'contribute': 2322, 'huffpost': 5191, 'tribute': 11934, 'heartshapedbox': 4901, 'magictrikband': 6801, 'magictrik': 6800, 'towering': 11860, 'roommatedo': 9658, 'smileylol': 10519, 'tami': 11347, 'sachi': 9745, 'bdk': 990, 'faran': 3756, 'ank': 443, 'purpose': 9115, 'struggling': 11048, 'bleuu': 1272, 'eagle': 3229, 'oceana': 7952, 'incredibly': 5407, 'idk': 5293, 'reaction': 9277, 'meds': 7046, 'oopsthats': 8084, 'fridayfauxpas': 4116, 'subtle': 11095, 'hints': 5017, 'tip': 11716, 'prims': 8964, 'algorithm': 294, 'iii': 5317, 'mezzer': 7150, 'wathappy': 12566, 'rosa': 9663, 'ann': 446, 'yvw': 13159, 'boost': 1369, 'unforgettable': 12163, 'humor': 5217, 'mums': 7471, 'hahahhaah': 4713, 'swe': 11233, 'sombrero': 10682, 'lost': 6620, 'helloooo': 4938, 'lesly': 6384, 'screenshots': 9922, 'spammer': 10775, 'proceed': 8997, 'entertaining': 3443, 'milestone': 7189, 'alljudith': 313, 'district': 2992, 'council': 2394, 'midares': 7169, 'gender': 4304, 'nightly': 7753, 'mgmt': 7153, 'ilysm': 5338, 'ppl': 8888, 'zen': 13185, 'neat': 7635, 'riders': 9556, 'saunders': 9846, 'fyi': 4218, 'dig': 2909, 'voting': 12455, 'learning': 6337, 'skill': 10366, 'blondhairedpersonmediumskintonealiendeciduoustree': 1292, 'facewithtearsofjoyfacewithtearsofjoyfacewithtearsofjoy': 3677, 'seem': 9969, 'suspicious': 11219, 'minds': 7210, 'calories': 1684, 'harder': 4804, 'smileyand': 10453, 'alexx': 293, 'finale': 3882, 'jessica': 5755, 'carina': 1749, 'francisco': 4084, 'teret': 11481, 'potassium': 8799, 'rehydrate': 9382, 'drinkitallup': 3147, 'thirstquencher': 11603, 'tapir': 11360, 'calf': 1668, 'adventurous': 147, 'mealtimes': 7022, 'uhc': 12100, 'scale': 9871, 'network': 7679, 'servers': 10043, 'areal': 574, 'lunchdinner': 6721, 'extremesports': 3635, 'quadbiking': 9144, 'bloggersrequired': 1286, 'bloggerswanted': 1287, 'brainer': 1430, 'investmentshould': 5551, 'mse': 7418, 'fund': 4195, 'realitybiter': 9293, 'nooooowwwww': 7837, 'dynamite': 3225, 'taylorkay': 11393, 'lile': 6456, 'tid': 11685, 'tmi': 11743, 'deploying': 2809, 'degree': 2755, 'jules': 5872, 'betty': 1136, 'hddcs': 4868, 'salman': 9783, 'eternal': 3513, 'pthht': 9070, 'spotting': 10849, 'weakness': 12586, 'anonadada': 461, 'tope': 11825, 'hikes': 4998, 'xxoo': 12967, 'finger': 3898, 'russia': 9726, 'fridayhappy': 4121, 'silverwashed': 10300, 'fritillary': 4142, 'moon': 7355, 'aps': 555, 'trash': 11911, 'wasting': 12555, 'clever': 2081, 'kevens': 6013, 'loz': 6681, 'popular': 8763, 'pastimes': 8346, 'ashramcalling': 622, 'returns': 9511, 'ontrack': 8070, 'smileyredheart': 10542, 'grl': 4587, 'showing': 10247, 'german': 4325, 'subtitles': 11094, 'pinter': 8601, 'morninggggg': 7368, 'dogface': 3034, 'limas': 6461, 'showed': 10244, 'smilingfacesmilingface': 10575, 'build': 1569, 'direct': 2933, 'awesomeo': 744, 'tune': 12005, 'multiple': 7465, 'engineer': 3420, 'cya': 2574, 'harrogate': 4815, 'jetting': 5759, 'suppliers': 11180, 'req': 9462, 'fridaylouge': 4123, 'hurtful': 5238, 'thstreetmusic': 11658, 'stevievie': 10965, 'hawaii': 4851, 'kick': 6039, 'olds': 8022, 'deeply': 2737, 'brown': 1518, 'johneclipsecouk': 5801, 'hahand': 4714, 'thousand': 11636, 'lies': 6424, 'newspaper': 7697, 'lew': 6401, 'bending': 1092, 'nah': 7545, 'beaut': 1012, 'fallout': 3719, 'technically': 11442, 'gunderson': 4655, 'europa': 3524, 'thoroughly': 11627, 'impressed': 5368, 'scripthappy': 9927, 'overtake': 8208, 'motorway': 7390, 'hahahaand': 4703, 'niteflirt': 7778, 'hbu': 4866, 'bowling': 1406, 'chris': 2000, 'ellis': 3341, 'buys': 1639, 'librarian': 6415, 'practice': 8892, 'niall': 7723, 'bornconfusion': 1381, 'ik': 5320, 'select': 9982, 'aln': 329, 'score': 9906, 'stydia': 11070, 'nawazuddin': 7610, 'siddiquebig': 10274, 'nomnomnom': 7809, 'dukefreebiefriday': 3190, 'lsk': 6688, 'kyungsoo': 6203, 'eonni': 3461, 'ahm': 217, 'insyaallah': 5511, 'ham': 4754, 'villa': 12399, 'brum': 1530, 'denis': 2795, 'vagina': 12297, 'rly': 9597, 'izzy': 5651, 'mitch': 7264, 'comate': 2181, 'minn': 7226, 'meiners': 7070, 'cameraclix': 1693, 'recentlywebsite': 9318, 'upgrades': 12223, 'coolingtowers': 2348, 'soonthanks': 10715, 'showinginterest': 10248, 'flipkartfashionfridaymulticolored': 3964, 'paired': 8253, 'wid': 12737, 'wedges': 12612, 'brightampcolorful': 1477, 'motivated': 7385, 'nnnnnnot': 7791, 'gfs': 4341, 'bluesidemenxix': 1304, 'shaikh': 10104, 'ardent': 570, 'goooood': 4494, 'mooorning': 7356, 'wuppertal': 12930, 'fridayfunday': 4120, 'resigned': 9477, 'chalkhill': 1847, 'celebration': 1810, 'midday': 7170, 'carter': 1768, 'holds': 5058, 'fika': 3869, 'remedies': 9416, 'tgifits': 11505, 'thankful': 11521, 'atrack': 674, 'promising': 9024, 'christ': 2001, 'badminton': 826, 'littluns': 6508, 'ikprideofpak': 5323, 'janjua': 5690, 'friendhappy': 4129, 'thinks': 11600, 'smileycheck': 10462, 'thinkhappy': 11598, 'smileynotice': 10532, 'pleasetwoheartsx': 8682, 'pimple': 8588, 'forehead': 4038, 'volcano': 12446, 'smileydone': 10491, 'mag': 6789, 'miryenda': 7238, 'dvn': 3216, 'technologys': 11444, 'possibilities': 8784, 'touchtoday': 11851, 'idownloader': 5296, 'snowball': 10629, 'expire': 3612, 'gb': 4283, 'loveu': 6668, 'morefuninthephilippines': 7361, 'lahos': 6237, 'caramoan': 1732, 'kareem': 5944, 'smileyfriday': 10498, 'recite': 9325, 'surah': 11193, 'kahaf': 5913, 'dogi': 3036, 'melanie': 7075, 'cases': 1772, 'bosch': 1384, 'washing': 12550, 'machine': 6766, 'refollow': 9361, 'preparing': 8925, 'naps': 7578, 'mesmilingfacewithsunglassespersontippinghandlightskintone': 7126, 'relapse': 9389, 'walletboy': 12520, 'prada': 8894, 'haigirl': 4720, 'thenboy': 11560, 'pprada': 8890, 'punjabiswillgetit': 9100, 'smilingface': 10572, 'indiie': 5421, 'hitter': 5032, 'soi': 10667, 'mass': 6951, 'shoud': 10228, 'remind': 9420, 'ughtmed': 12096, 'kissme': 6107, 'likeforfollow': 6443, 'overwhelming': 8212, 'groupmates': 4597, 'recitation': 9324, 'pointing': 8723, 'kyunke': 6205, 'aitchison': 253, 'curvy': 2552, 'montedoa': 7339, 'header': 4873, 'speaker': 10791, 'introduce': 5541, 'avoid': 723, 'smileytedthought': 10555, 'laboratory': 6209, 'idc': 5285, 'fuckin': 4175, 'wooo': 12844, 'neobytes': 7667, 'universal': 12178, 'pirated': 8608, 'files': 3873, 'takedown': 11317, 'confusionindirag': 2264, 'judiciary': 5862, 'committed': 2203, 'govt': 4511, 'policy': 8732, 'rbi': 9265, 'similar': 10303, 'progress': 9015, 'transfer': 11899, 'ggs': 4344, 'defenitely': 2744, 'nofx': 7801, 'friskyfiday': 4140, 'yipeeee': 13068, 'shed': 10146, 'incentive': 5391, 'veges': 12330, 'mariners': 6909, 'gz': 4681, 'named': 7564, 'rajeevhope': 9205, 'hvng': 5248, 'funfilled': 4198, 'fridayit': 4122, 'ws': 12919, 'realy': 9300, 'diff': 2900, 'kabirfell': 5907, 'dresdengermany': 3135, 'ltplease': 6694, 'thisconfusion': 11606, 'amazinglt': 363, 'congratulating': 2269, 'graduation': 4524, 'plot': 8691, 'sleeps': 10401, 'tdf': 11407, 'wineglasscocktailglasssunbicyclewineglasscocktailglasssunbicycle': 12768, 'minions': 7222, 'slot': 10417, 'wowlooking': 12898, 'isabella': 5582, 'okeyyyyyy': 8005, 'vdddd': 12327, 'smileyconfusionconfusionwink': 10481, 'smirkconfusionconfusionconfusion': 10588, 'selfeeee': 9989, 'insta': 5496, 'persongesturingokraisinghandsfacewithstuckouttonguesmilingfacewithopenmouthsmilingeyessmilingfacewithopenmouthsmilingeyesgrinningfacewithsmilingeyesfacewithtearsofjoyfacewithtearsofjoymonkeygrinningfacewithsmilingeyesfacewithstuckouttongueclosedeyesredheart': 8478, 'gugi': 4640, 'hhahhaaa': 4975, 'albums': 283, 'smileyenjoy': 10493, 'jeeze': 5734, 'teamcannibal': 11419, 'teamspacewhalingisthebest': 11429, 'earlynow': 3237, 'fitfa': 3921, 'identified': 5290, 'pharmacy': 8512, 'smileyverylaterealisation': 10561, 'iwishiknewbetter': 5645, 'satisfy': 9839, 'combination': 2183, 'turned': 12012, 'essaycheyetee': 3501, 'yas': 12998, 'valladolid': 12305, 'supposedly': 11189, 'thumbsup': 11665, 'sleigher': 10405, 'oforange': 7981, 'immediate': 5353, 'foxys': 4076, 'instrumental': 5509, 'alone': 330, 'goldcoast': 4455, 'thahane': 11515, 'lelomustfall': 6371, 'meal': 7021, 'narutoina': 7586, 'liker': 6450, 'smileylike': 10518, 'newdress': 7689, 'resist': 9478, 'fots': 4066, 'afzal': 180, 'troye': 11960, 'todayhappy': 11757, 'dtwitterfollowerswhatsuphappyfrieddaykeepsafealways': 3171, 'loveyeahemojasphere': 6672, 'switch': 11265, 'beautifulwinter': 1019, 'okthe': 8014, 'chatand': 1902, 'mewill': 7146, 'vanillaas': 12316, 'sidemen': 10276, 'yaaaaayyyyyy': 12977, 'friendaaaaaaa': 4128, 'shouts': 10239, 'adding': 116, 'bulbs': 1573, 'corn': 2362, 'tbps': 11401, 'delightful': 2770, 'burst': 1610, 'divine': 3000, 'wheelie': 12695, 'bins': 1193, 'ubericecream': 12080, 'messengerforaday': 7135, 'kylie': 6199, 'seasonal': 9943, 'toilet': 11772, 'breaks': 1457, 'ikaw': 5321, 'musta': 7496, 'cheatmate': 1912, 'kyuhyun': 6202, 'ghanton': 4348, 'decides': 2724, 'howeasyget': 5161, 'therein': 11573, 'majalah': 6822, 'thumbsupmediumlightskintonethumbsupmediumlightskintonethumbsupmediumlightskintonesmilingfacewithhearteyessmilingfacewithhearteyessmilingfacewithhearteyessmilingfacewithhearteyessmilingfacewithhearteyescherryblossomcherryblossomcherryblossomcherryblossomcherryblossom': 11666, 'singapore': 10314, 'heroes': 4965, 'gp': 4513, 'essay': 3500, 'alevel': 290, 'dominique': 3051, 'goood': 4490, 'earthling': 3243, 'hs': 5175, 'liking': 6453, 'smileybe': 10455, 'lamp': 6247, 'sites': 10342, 'afoot': 164, 'revamp': 9520, 'voted': 12453, 'brainchild': 1428, 'poem': 8719, 'aliyan': 305, 'confidence': 2250, 'confined': 2251, 'limitshappy': 6467, 'colorado': 2173, 'goodyear': 4482, 'tyres': 12077, 'upto': 12239, 'cashback': 1774, 'tampcs': 11350, 'applyconfusion': 541, 'yourewelcome': 13111, 'simpin': 10305, 'bk': 1240, 'sketchbook': 10365, 'lovewilde': 6669, 'colors': 2175, 'colorpencils': 2174, 'cray': 2458, 'imma': 5351, 'ob': 7934, 'kino': 6096, 'goning': 4464, 'thos': 11629, 'adult': 139, 'acting': 90, 'kardamena': 5943, 'beaches': 993, 'samos': 9798, 'greece': 4558, 'caesar': 1654, 'salad': 9777, 'tad': 11299, 'bland': 1257, 'respond': 9486, 'smileyily': 10509, 'okk': 8010, 'den': 2790, 'allover': 315, 'expecting': 3599, 'dedicated': 2730, 'freedom': 4097, 'hangout': 4777, 'whoever': 12719, 'tourist': 11855, 'kutiyapanti': 6193, 'professional': 9009, 'hits': 5031, 'boomshot': 1363, 'fuh': 4182, 'yeeeey': 13023, 'donot': 3069, 'lilac': 6455, 'expose': 3623, 'roast': 9609, 'lipstick': 6486, 'cran': 2449, 'vodka': 12441, 'prayrs': 8900, 'onemochaonelove': 8059, 'southpaw': 10765, 'musical': 7486, 'genius': 4313, 'stromae': 11037, 'redcircle': 9345, 'younow': 13109, 'jonah': 5818, 'jareddddd': 5698, 'dob': 3020, 'postcode': 8789, 'talkmobile': 11338, 'classes': 2063, 'huha': 5202, 'lucia': 6700, 'promotinghappy': 9029, 'transforms': 11902, 'sword': 11269, 'misread': 7243, 'forwarding': 4063, 'richardits': 9547, 'debate': 2713, 'ibiza': 5270, 'birthdaymoneyforjesusjuice': 1211, 'ytb': 13136, 'tutorials': 12019, 'constructive': 2292, 'criticism': 2494, 'ganesha': 4251, 'texture': 11500, 'photography': 8537, 'hinduism': 5016, 'hindugod': 5015, 'elephantgod': 3325, 'selfish': 9993, 'bboying': 973, 'cardgame': 1734, 'pixelart': 8625, 'gamedesign': 4236, 'indiedev': 5417, 'pixeldailies': 8627, 'plateaus': 8655, 'laguna': 6233, 'smileyconfusiontime': 10486, 'tha': 11511, 'bahot': 842, 'baje': 846, 'raat': 9179, 'liya': 6522, 'hath': 4839, 'bestbut': 1118, 'ghante': 4347, 'itna': 5627, 'bana': 874, 'paya': 8375, 'truei': 11965, 'tod': 11752, 'uta': 12277, 'manga': 6869, 'festive': 3843, 'jamuna': 5687, 'dubbed': 3176, 'swiftmas': 11258, 'ruth': 9728, 'trion': 11942, 'interactions': 5523, 'forums': 4061, 'raising': 9203, 'smileyrevolvinghearts': 10545, 'disgusting': 2970, 'commodore': 2205, 'programming': 9014, 'gtgtth': 4625, 'annabel': 448, 'bridge': 1472, 'quest': 9158, 'borderlands': 1374, 'wanderrook': 12528, 'organise': 8137, 'gain': 4227, 'gm': 4428, 'precious': 8903, 'lady': 6222, 'mizz': 7273, 'smirkkiss': 10590, 'aameenhappy': 14, 'smileylong': 10521, 'pakistanbleedgreenvictoryhandlightskintone': 8259, 'sophia': 10726, 'chicago': 1948, 'soexcited': 10658, 'honeymoon': 5088, 'lister': 6498, 'daesh': 2595, 'coord': 2352, 'fsa': 4163, 'estatic': 3506, 'whens': 12697, 'dusty': 3212, 'tunisia': 12007, 'ltyoutube': 6696, 'crd': 2461, 'classs': 2067, 'irritating': 5579, 'dcause': 2687, 'tone': 11798, 'apologies': 519, 'delay': 2759, 'prizes': 8984, 'fiverr': 3929, 'gina': 4373, 'soproud': 10729, 'pnefc': 8711, 'ahmd': 219, 'mrs': 7415, 'baines': 845, 'enought': 3433, 'luckanother': 6702, 'watering': 12563, 'hole': 5059, 'burgers': 1601, 'melbourneburgers': 7078, 'arianna': 582, 'esai': 3489, 'rotterdam': 9675, 'cheer': 1920, 'jordy': 5829, 'clasie': 2061, 'horny': 5112, 'salon': 9785, 'bleaches': 1262, 'olaplex': 8016, 'damage': 2607, 'teamwork': 11430, 'zitecofficestories': 13192, 'mandooff': 6868, 'mtv': 7432, 'colleague': 2160, 'eb': 3253, 'twould': 12056, 'tweetup': 12036, 'detective': 2845, 'jonathancreek': 5819, 'dvr': 3217, 'kat': 5958, 'rarer': 9240, 'okkkk': 8012, 'frends': 4101, 'milte': 7203, 'backhandindexpointingleftfaceblowingakiss': 806, 'mario': 6912, 'danielle': 2633, 'rewatches': 9532, 'priced': 8957, 'sige': 10280, 'punta': 9102, 'kayo': 5977, 'noooo': 7828, 'googled': 4487, 'prompt': 9033, 'existence': 3589, 'upgrade': 12220, 'tmobile': 11744, 'orange': 8120, 'ee': 3281, 'sales': 9781, 'viewing': 12394, 'teapot': 11431, 'cocktails': 2131, 'hotter': 5146, 'suits': 11128, 'smileylondoutrading': 10520, 'wip': 12779, 'tweaked': 12023, 'kal': 5920, 'macavity': 6761, 'wall': 12518, 'wayward': 12580, 'pines': 8593, 'laterhappy': 6291, 'muscles': 7481, 'ilikeit': 5327, 'belonging': 1080, 'watford': 12565, 'enterprise': 3440, 'cube': 2526, 'particpants': 8318, 'saudi': 9845, 'arabia': 561, 'approve': 550, 'recognized': 9328, 'bailona': 844, 'responsibilty': 9492, 'sunlight': 11151, 'tiger': 11692, 'elevate': 3327, 'position': 8781, 'promotion': 9030, 'insecure': 5478, 'ge': 4287, 'dangod': 2631, 'horror': 5120, 'bitchessss': 1224, 'shitty': 10194, 'squashed': 10862, 'commits': 2202, 'becca': 1028, 'delta': 2780, 'ives': 5641, 'nut': 7916, 'vlook': 12436, 'yun': 13151, 'joe': 5796, 'dirt': 2938, 'sharon': 10133, 'medicines': 7043, 'ttyl': 11987, 'gav': 4275, 'linda': 6469, 'answering': 470, 'sonically': 10705, 'tym': 12068, 'prepare': 8923, 'dieback': 2891, 'endit': 3408, 'minecon': 7212, 'sering': 10034, 'joerine': 5797, 'scene': 9881, 'smileyconfusionconfusionconfusionconfusionjoshane': 10479, 'tandem': 11353, 'ligao': 6434, 'albay': 279, 'smileyconcertbcyclnhs': 10464, 'sat': 9834, 'honorary': 5091, 'alacer': 274, 'skeloghost': 10363, 'infinity': 5435, 'halie': 4745, 'greathappy': 4555, 'redheartfaceblowingakiss': 9351, 'madadagdagan': 6770, 'bmc': 1308, 'waymoney': 12577, 'lifeand': 6426, 'ditched': 2997, 'embarrassing': 3359, 'entropy': 3454, 'evolution': 3559, 'giggle': 4365, 'loop': 6600, 'evaim': 3528, 'camden': 1690, 'uhh': 12101, 'scoups': 9913, 'jren': 5850, 'nuestd': 7903, 'lovelayyy': 6654, 'kidney': 6046, 'neuer': 7681, 'fixing': 3933, 'spray': 10850, 'outhappy': 8184, 'untangling': 12206, 'dtangle': 3169, 'patent': 8351, 'innovation': 5473, 'traine': 11889, 'falls': 3720, 'quirk': 9170, 'donnaestrydomgovzaconfusion': 3067, 'uni': 12169, 'talents': 11331, 'uff': 12089, 'karhy': 5947, 'thy': 11678, 'ap': 506, 'juaquin': 5856, 'vnzor': 12438, 'heyy': 4972, 'flavors': 3945, 'deserves': 2825, 'improve': 5371, 'tomorrows': 11796, 'thakyou': 11517, 'trees': 11921, 'beatriz': 1009, 'cancel': 1709, 'puff': 9084, 'egg': 3291, 'tarts': 11367, 'chai': 1838, 'mtr': 7431, 'alyssa': 354, 'rub': 9699, 'tummy': 12000, 'zelda': 13184, 'emailed': 3355, 'query': 9157, 'birthdaycake': 1209, 'jiva': 5781, 'tropicaldrinkcocktailglassclinkingbeermugs': 11954, 'mubbarak': 7441, 'deborah': 2717, 'coupon': 2410, 'colourdeb': 2177, 'purple': 9112, 'woooo': 12846, 'chippys': 1971, 'vessel': 12357, 'vintage': 12409, 'smilingfacewithhearteyessmilingfacewithsmilingeyes': 10577, 'puttinga': 9129, 'facemind': 3665, 'gooffeanottere': 4483, 'kiksex': 6061, 'mugshot': 7459, 'tokens': 11773, 'maritimenation': 6914, 'rhs': 9539, 'tatton': 11377, 'construction': 2291, 'planting': 8653, 'behave': 1053, 'jumpjulias': 5887, 'malema': 6839, 'frens': 4102, 'nuf': 7904, 'teasing': 11438, 'aliens': 299, 'closer': 2106, 'alien': 298, 'monitor': 7333, 'kimmy': 6076, 'planetbollywoodnews': 8644, 'epi': 3465, 'fbackhappy': 3793, 'airports': 245, 'tricky': 11936, 'ddont': 2692, 'beshak': 1110, 'chenoweth': 1938, 'oodles': 8074, 'hailey': 4722, 'milks': 7193, 'sxxx': 11274, 'runway': 9722, 'shares': 10125, 'gooodnight': 4491, 'iv': 5638, 'ris': 9579, 'katy': 5972, 'jaycy': 5715, 'jen': 5739, 'buds': 1558, 'faces': 3666, 'suffer': 11109, 'karaoke': 5942, 'ltsw': 6695, 'gooooooo': 4495, 'giant': 4352, 'careful': 1743, 'lineom': 6472, 'yanga': 12994, 'refuses': 9367, 'init': 5458, 'actual': 99, 'lolhappy': 6563, 'cconfusion': 1801, 'collagen': 2156, 'answin': 472, 'hopetowin': 5106, 'inventory': 5546, 'loveforfood': 6651, 'foodforthought': 4021, 'thoughtfortheday': 11633, 'carpe': 1759, 'diem': 2895, 'nath': 7594, 'ning': 7769, 'recommended': 9332, 'positivity': 8783, 'leads': 6330, 'wantmy': 12532, 'hahathat': 4715, 'nicebut': 7731, 'daughter': 2663, 'filling': 3876, 'although': 346, 'opinion': 8095, 'harm': 4810, 'stormy': 11005, 'upgraded': 12221, 'ans': 466, 'synced': 11282, 'device': 2856, 'scott': 9911, 'messing': 7137, 'studios': 11059, 'nylons': 7930, 'gvb': 4671, 'cd': 1802, 'mountaintitled': 7392, 'unto': 12208, 'theworldwouldchange': 11585, 'category': 1787, 'faking': 3711, 'mah': 6809, 'emotions': 3381, 'panel': 8282, 'iam': 5266, 'hopeful': 5101, 'counts': 2404, 'neenkin': 7647, 'successful': 11099, 'masterpiece': 6960, 'partypopper': 8331, 'debit': 2716, 'beagles': 995, 'feat': 3801, 'charlie': 1894, 'puthconfusion': 9125, 'wiz': 12799, 'khalifa': 6024, 'webb': 12602, 'tyler': 12066, 'svu': 11226, 'wears': 12593, 'darker': 2644, 'bernie': 1108, 'henrys': 4957, 'trap': 11909, 'fitness': 3923, 'tommy': 11792, 'discuss': 2963, 'nownow': 7882, 'vivians': 12434, 'performance': 8461, 'transparentglasseshappy': 11908, 'bitcoin': 1227, 'insight': 5487, 'rang': 9226, 'ping': 8594, 'masquerade': 6950, 'mask': 6947, 'zorroreturms': 13202, 'pk': 8633, 'hay': 4855, 'jacqueline': 5665, 'passion': 8340, 'ultimately': 12111, 'fullfledged': 4188, 'entrepreneur': 3450, 'bride': 1470, 'workplace': 12868, 'venue': 12341, 'lagos': 6232, 'luxord': 6734, 'kingdom': 6089, 'potatos': 8801, 'hundreds': 5224, 'aline': 300, 'cited': 2041, 'academic': 52, 'pokiri': 8727, 'nenokkadine': 7665, 'favs': 3790, 'akshay': 269, 'bharris': 1151, 'heritage': 4962, 'wood': 12838, 'beleaf': 1065, 'dx': 3220, 'spnfamily': 10832, 'spn': 10831, 'alwayskeepfighting': 353, 'jaredpadalecki': 5699, 'jensenackles': 5745, 'peasant': 8414, 'teami': 11421, 'ahahha': 212, 'reminders': 9422, 'distant': 2988, 'shoutout': 10237, 'adulthood': 140, 'hopeless': 5104, 'ikea': 5322, 'sliding': 10410, 'bani': 894, 'poutingme': 8841, 'babies': 788, 'neighbour': 7655, 'motors': 7388, 'hates': 4837, 'search': 9941, 'whyfrown': 12729, 'sialanfrown': 10265, 'athabasca': 663, 'glacier': 4404, 'jasper': 5705, 'jaspernationalpark': 5706, 'alberta': 281, 'explorealberta': 3618, 'mare': 6904, 'ivan': 5639, 'hahahah': 4704, 'replacements': 9446, 'relate': 9390, 'stupidi': 11068, 'grasp': 4541, 'basics': 934, 'digital': 2910, 'researching': 9471, 'lonely': 6580, 'wearyface': 12594, 'gameswatch': 4244, 'choreographing': 1993, 'raaaaayyyxo': 9178, 'cries': 2486, 'mingming': 7216, 'peed': 8420, 'newwine': 7699, 'dish': 2972, 'doushite': 3102, 'gundam': 4654, 'dollar': 3043, 'loudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingface': 6633, 'weirdconfusion': 12634, 'pale': 8266, 'imitation': 5349, 'rash': 9241, 'absent': 42, 'sequel': 10030, 'ouucchhh': 8195, 'wisdom': 12784, 'frightening': 4137, 'pret': 8939, 'wkwkwjhope': 12803, 'verfied': 12345, 'hyemi': 5254, 'chains': 1840, 'sentirse': 10019, 'incompleta': 5401, 'thwarting': 11676, 'chances': 1859, 'zante': 13166, 'jallen': 5679, 'audraesar': 692, 'craaaazzyy': 2439, 'popped': 8760, 'helium': 4933, 'climatechange': 2093, 'californias': 1675, 'influential': 5441, 'pollution': 8739, 'watchdog': 12559, 'califor': 1673, 'uniteblue': 12174, 'tcot': 11405, 'elhaida': 3332, 'juries': 5896, 'televoting': 11460, 'idaho': 5284, 'restrict': 9498, 'droughtlinked': 3160, 'dieof': 2896, 'abrupt': 39, 'climate': 2092, 'doomed': 3077, 'mammoths': 6854, 'megafauna': 7057, 'australias': 707, 'dirtiest': 2939, 'considers': 2286, 'biomass': 1196, 'golf': 4457, 'ulti': 12109, 'prexy': 8953, 'kindergarten': 6082, 'sane': 9815, 'boss': 1387, 'hozier': 5167, 'soooooooner': 10720, 'respectlost': 9484, 'hypercholesteloremia': 5259, 'calibraska': 1671, 'shabbir': 10094, 'genuine': 4318, 'contenders': 2307, 'older': 8019, 'upset': 12235, 'aos': 505, 'encore': 3401, 'badthwin': 828, 'baymax': 961, 'mixers': 7270, 'wft': 12667, 'promotions': 9032, 'hub': 5186, 'loud': 6626, 'parasyte': 8303, 'alllllll': 314, 'zayniscomingbackonjuly': 13175, 'era': 3476, 'toofrown': 11812, 'nathanntwohearts': 7597, 'yousmilingfacewithsmilingeyes': 13116, 'dieididieieiei': 2894, 'ervin': 3487, 'netflix': 7674, 'offerbut': 7969, 'desperate': 2834, 'amargolonnard': 355, 'batalladelosgallos': 944, 'webcamsex': 12604, 'duty': 3214, 'uve': 12287, 'allisbae': 311, 'hopes': 5105, 'sorka': 10732, 'funeral': 4197, 'nonexistent': 7815, 'wowza': 12900, 'fah': 3696, 'boo': 1350, 'guitar': 4647, 'hyung': 5262, 'predict': 8904, 'sj': 10355, 'nominated': 7807, 'dudes': 3184, 'brace': 1419, 'frml': 4144, 'omgggg': 8047, 'falling': 3718, 'finals': 3885, 'whyyy': 12731, 'evan': 3529, 'opt': 8110, 'giveaways': 4396, 'muster': 7499, 'goods': 4478, 'merchs': 7116, 'drinking': 3146, 'savanna': 9850, 'straw': 11014, 'yester': 13054, 'birexus': 1204, 'strypes': 11049, 'consumed': 2295, 'werk': 12656, 'foreals': 4036, 'wesen': 12658, 'uwesiti': 12288, 'mj': 7274, 'facewithtearsofjoywearyface': 3683, 'bosen': 1385, 'benny': 1097, 'badly': 825, 'gtfrown': 4620, 'zaz': 13180, 'rehash': 9379, 'websites': 12606, 'mushroomed': 7484, 'piece': 8571, 'exception': 3571, 'reaches': 9276, 'vicky': 12371, 'hahah': 4699, 'nnnnn': 7790, 'ninasty': 7768, 'tsktsk': 11980, 'dick': 2886, 'kawaii': 5974, 'manly': 6878, 'youu': 13125, 'soehmtee': 10657, 'potato': 8800, 'fries': 4135, 'asf': 618, 'eish': 3308, 'knowi': 6144, 'mojo': 7312, 'shamen': 10113, 'mara': 6898, 'neh': 7653, 'association': 654, 'councillors': 2395, 'contacts': 2301, 'creating': 2468, 'sholong': 10208, 'reject': 9385, 'gee': 4290, 'don': 3053, 'gidi': 4357, 'pampered': 8274, 'ehn': 3300, 'arresting': 598, 'anybody': 487, 'disappears': 2946, 'dazed': 2682, 'survivedwell': 11213, 'bodies': 1324, 'fragments': 4081, 'wouldve': 12894, 'horrible': 5116, 'walao': 12508, 'kbs': 5980, 'djderek': 3006, 'gigs': 4368, 'legend': 6359, 'tragedy': 11884, 'flexedbicepslightskintonemonkey': 3955, 'strucked': 11042, 'belgium': 1067, 'fabian': 3654, 'delph': 2777, 'fallen': 3717, 'poutingind': 8833, 'draking': 3121, 'silently': 10296, 'eyy': 3648, 'mumma': 7469, 'poutingembarrassed': 8820, 'dedox': 2734, 'pray': 8897, 'appropriate': 548, 'across': 88, 'picwhat': 8569, 'hindi': 5014, 'disability': 2943, 'pension': 8440, 'ptsd': 9073, 'impossible': 5367, 'physically': 8550, 'financially': 3888, 'hungary': 5226, 'nooo': 7827, 'togheter': 11771, 'snsd': 10632, 'anna': 447, 'akana': 261, 'askip': 635, 'texistes': 11495, 'pas': 8334, 'moore': 7357, 'regions': 9373, 'broadcasts': 1496, 'kei': 5996, 'eyeing': 3641, 'kate': 5960, 'spade': 10771, 'pero': 8470, 'walang': 12506, 'bld': 1260, 'agessss': 194, 'corinehurleigh': 2361, 'snapchatme': 10610, 'sfs': 10088, 'zara': 13168, 'trousers': 11959, 'effects': 3286, 'itokay': 5630, 'luckely': 6703, 'freed': 4096, 'orcalove': 8122, 'result': 9500, 'patnicolexx': 8361, 'ems': 3389, 'craving': 2457, 'crumble': 2509, 'mcflurry': 7011, 'cable': 1651, 'venuss': 12342, 'concepts': 2237, 'tagal': 11306, 'awful': 745, 'appointment': 542, 'cereal': 1826, 'previous': 8951, 'users': 12269, 'twt': 12057, 'fansign': 3748, 'expensive': 3603, 'zzzzzzplease': 13209, 'stressed': 11024, 'deosnt': 2802, 'brolost': 1506, 'praying': 8899, 'lowest': 6679, 'tbhthey': 11399, 'tacky': 11296, 'charms': 1898, 'haaretz': 4685, 'israel': 5604, 'syria': 11285, 'develop': 2852, 'chemical': 1935, 'weapons': 12589, 'officials': 7977, 'wsj': 12922, 'rep': 9433, 'bts': 1538, 'wong': 12835, 'confiscated': 2254, 'hadnt': 4692, 'icepack': 5277, 'doses': 3089, 'killers': 6067, 'whimpers': 12706, 'awkwardraven': 752, 'senpai': 10014, 'buttsex': 1629, 'abla': 32, 'messiah': 7136, 'headline': 4875, 'brk': 1493, 'falsettos': 3722, 'zone': 13196, 'loveofmylife': 6659, 'aired': 238, 'killing': 6069, 'untruth': 12210, 'cross': 2499, 'ij': 5319, 'amazingcollisionsparklesdizzy': 362, 'lizzykay': 6526, 'soshi': 10746, 'buttt': 1630, 'poutingfrown': 8822, 'heyyyyy': 4973, 'yeols': 13040, 'danceeeeee': 2620, 'nemanja': 7661, 'vidic': 12387, 'romabut': 9649, 'linguist': 6475, 'dumbest': 3195, 'consider': 2283, 'crash': 2453, 'resources': 9480, 'vehicles': 12334, 'ayex': 771, 'lamon': 6246, 'scrolling': 9929, 'curved': 2550, 'cement': 1813, 'botconfusion': 1391, 'jmu': 5788, 'camps': 1700, 'tease': 11435, 'awuna': 755, 'mbulelo': 7004, 'crackling': 2444, 'plug': 8701, 'fuse': 4208, 'dammit': 2610, 'carlton': 1751, 'aflblueshawks': 163, 'alexs': 292, 'motorsport': 7389, 'discconfusion': 2954, 'thatinstead': 11539, 'seo': 10020, 'nls': 7788, 'christy': 2009, 'niece': 7744, 'bloody': 1295, 'sandwhich': 9812, 'buset': 1613, 'discrimination': 2962, 'pregnancy': 8911, 'foot': 4028, 'maternity': 6972, 'kicked': 6040, 'domesticviolence': 3047, 'domestic': 3046, 'violence': 12411, 'victims': 12372, 'vaw': 12324, 'stressful': 11025, 'government': 4510, 'sapiosexual': 9823, 'beta': 1128, 'hogan': 5049, 'scrubbed': 9930, 'wwe': 12933, 'irene': 5571, 'naa': 7530, 'sold': 10670, 'hmyking': 5043, 'valentine': 12303, 'et': 3510, 'rships': 9693, 'btwn': 1541, 'homobiphobic': 5080, 'disciplines': 2956, 'incl': 5395, 'european': 3526, 'langs': 6258, 'fresherstofinals': 4106, 'brokenheart': 1503, 'realistic': 9290, 'benzema': 1101, 'hahahahahaah': 4707, 'donno': 3068, 'language': 6260, 'russian': 9727, 'waaaaa': 12473, 'eidwithgrofers': 3303, 'boreddd': 1377, 'mug': 7456, 'tiddler': 11686, 'cards': 1737, 'clan': 2052, 'slots': 10418, 'pffff': 8502, 'bugbounty': 1566, 'selfxss': 9996, 'host': 5128, 'poisoning': 8725, 'execution': 3582, 'ktksbye': 6179, 'alert': 288, 'cancelled': 1711, 'petite': 8493, 'stefan': 10949, 'bv': 1642, 'cost': 2381, 'security': 9958, 'odoo': 7961, 'partner': 8326, 'effin': 3287, 'workingfrown': 12862, 'branch': 1436, 'concern': 2238, 'pod': 8716, 'talkkama': 11337, 'hawako': 4852, 'waa': 12472, 'kimaaaaaani': 6073, 'prisssss': 8978, 'baggage': 836, 'screwed': 9925, 'sugar': 11113, 'rarely': 9239, 'agh': 196, 'cutting': 2569, 'undercoverboss': 12141, 'delayed': 2760, 'ache': 75, 'wrists': 12907, 'ligo': 6439, 'dozen': 3110, 'killed': 6065, 'shark': 10130, 'heartache': 4892, 'zayniscomingback': 13174, 'sweden': 11241, 'elmhurst': 3343, 'etid': 3515, 'chillinwith': 1962, 'father': 3773, 'istanya': 5609, 'goingsupply': 4452, 'infrastructureteachersdoctorsnursesparamedicsampother': 5451, 'countless': 2400, 'thingscope': 11595, 'allgtfrown': 310, 'pasha': 8335, 'donate': 3054, 'pleas': 8672, 'arianator': 581, 'kendall': 5999, 'kylies': 6200, 'manila': 6876, 'cried': 2485, 'jeebus': 5732, 'reabsorbtion': 9272, 'abscess': 41, 'threatening': 11641, 'crown': 2505, 'oooooooouch': 8080, 'barney': 921, 'bes': 1109, 'problematic': 8991, 'mess': 7128, 'maa': 6754, 'entd': 3436, 'bangalore': 888, 'poutingat': 8814, 'luis': 6713, 'manzano': 6892, 'shaaaa': 10093, 'convener': 2328, 'smileypm': 10539, 'delete': 2764, 'mefrown': 7054, 'bombing': 1338, 'syriaand': 11286, 'allow': 316, 'airfields': 239, 'jets': 5758, 'poutingconfusion': 8818, 'jacks': 5661, 'spamming': 10776, 'smilingfacepurpleheart': 10574, 'mommys': 7324, 'overweight': 8210, 'sigeg': 10281, 'habhab': 4687, 'masud': 6962, 'kaha': 5911, 'kos': 6166, 'akong': 267, 'pala': 8264, 'dolphins': 3044, 'holy': 5067, 'anythin': 494, 'loverx': 6664, 'zayniscomingbackonjulyi': 13176, 'trend': 11923, 'againfrown': 186, 'beware': 1138, 'agonising': 202, 'modimo': 7306, 'tseba': 11976, 'wena': 12650, 'fela': 3822, 'jm': 5787, 'nowt': 7885, 'willy': 12755, 'vomit': 12451, 'bowl': 1405, 'devastating': 2851, 'titan': 11727, 'ae': 153, 'omgyoure': 8048, 'soooooooo': 10721, 'shiny': 10178, 'wavy': 12572, 'emo': 3374, 'germany': 4326, 'loudlycryingface': 6628, 'load': 6540, 'shedding': 10147, 'haa': 4683, 'bheyps': 1154, 'ayemso': 770, 'swelling': 11254, 'sm': 10431, 'wut': 12931, 'vicious': 12370, 'circle': 2038, 'simpson': 10308, 'spinorbinmusicxcodysimpson': 10824, 'gleek': 4414, 'poooo': 8746, 'bhs': 1158, 'pitchwars': 8619, 'chap': 1875, 'mines': 7214, 'transcript': 11898, 'apmas': 518, 'timw': 11709, 'accs': 69, 'vitamin': 12431, 'healthier': 4883, 'stretch': 11026, 'choose': 1987, 'blockjam': 1282, 'schedules': 9888, 'whacked': 12675, 'thelock': 11554, 'hotgirls': 5141, 'relationships': 9394, 'languages': 6261, 'ghantay': 4346, 'nai': 7547, 'rejection': 9387, 'deny': 2800, 'feelfrown': 3811, 'ruining': 9708, 'exit': 3590, 'gomen': 4458, 'grew': 4570, 'inch': 5392, 'suuuuuuuper': 11221, 'anyones': 492, 'inactive': 5383, 'orphan': 8147, 'whaaat': 12674, 'kaya': 5975, 'naaaaan': 7531, 'pausing': 8372, 'smileyam': 10451, 'inglewood': 5454, 'ummm': 12121, 'charcoal': 1883, 'midend': 7172, 'rodfanta': 9633, 'wasp': 12552, 'stings': 10977, 'averted': 720, 'exo': 3592, 'seeklyfrown': 9968, 'shocking': 10202, 'riptito': 9577, 'manbearpig': 6864, 'academics': 53, 'exclusive': 3577, 'unfair': 12154, 'esp': 3497, 'bleak': 1263, 'charts': 1899, 'pfft': 8503, 'polaroid': 8729, 'newbethvideo': 7685, 'xur': 12965, 'imy': 5378, 'heartsuitheartsuitxoxoxo': 4905, 'cerealtoo': 1827, 'stud': 11054, 'earrings': 3239, 'massages': 6953, 'hunde': 5222, 'yach': 12984, 'huvvft': 5246, 'zoo': 13198, 'fieldtrips': 3855, 'kingfutureboss': 6092, 'sizwe': 10354, 'assignments': 650, 'shifts': 10171, 'aaaaahhhhhhhh': 6, 'boredom': 1378, 'sinse': 10324, 'somehow': 10685, 'tiny': 11714, 'barbells': 906, 'owww': 8223, 'sparklingheart': 10784, 'looooong': 6597, 'apartement': 508, 'longe': 6585, 'litro': 6505, 'shepherd': 10161, 'lami': 6244, 'relaxfrown': 9399, 'lungomare': 6724, 'pesaro': 8486, 'giachietittiwedding': 4351, 'igersoftheday': 5309, 'summertime': 11140, 'nose': 7849, 'bruised': 1529, 'scarf': 9876, 'afford': 161, 'morningfrown': 7367, 'fry': 4162, 'woe': 12813, 'nigga': 7747, 'motn': 7387, 'lighting': 6438, 'meand': 7024, 'longeryet': 6587, 'ver': 12343, 'huhuhu': 5205, 'mlady': 7278, 'acads': 54, 'scheduled': 9887, 'nowwww': 7888, 'cops': 2356, 'window': 12763, 'hugh': 5196, 'pawing': 8373, 'muddy': 7453, 'marks': 6918, 'cupcakes': 2541, 'talaga': 11327, 'poppin': 8761, 'joc': 5795, 'playin': 8666, 'ferdelicious': 3834, 'subj': 11081, 'sobrang': 10639, 'zamn': 13165, 'afropunk': 168, 'fest': 3840, 'shithouse': 10191, 'dance': 2619, 'oppahug': 8100, 'handed': 4765, 'ladder': 6218, 'climb': 2094, 'wracking': 12902, 'booset': 1368, 'restarted': 9494, 'assassins': 643, 'creed': 2474, 'ii': 5316, 'heaps': 4886, 'gameswish': 4245, 'beginsighps': 1050, 'ankle': 444, 'stepped': 10957, 'puddle': 9083, 'slippers': 10414, 'eve': 3530, 'sararocs': 9829, 'hairs': 4729, 'faceblowingakisssparklingheart': 3662, 'anywayhedidanicejob': 499, 'disappointedface': 2949, 'local': 6544, 'cruise': 2508, 'wail': 12491, 'wheelchair': 12694, 'checked': 1914, 'fits': 3924, 'sbenu': 9869, 'sasin': 9833, 'poutingbut': 8817, 'anarchy': 405, 'candle': 1715, 'medicine': 7042, 'hoya': 5166, 'poutingno': 8845, 'aing': 232, 'hush': 5241, 'gurly': 4661, 'purty': 9117, 'closerthat': 2108, 'shiver': 10197, 'paid': 8244, 'properly': 9038, 'gol': 4453, 'pea': 8402, 'emotionally': 3380, 'mentally': 7105, 'tierd': 11690, 'thnkyouuuuuuuuu': 11616, 'highlights': 4989, 'climbing': 2096, 'courage': 2411, 'fishy': 3919, 'idek': 5289, 'apink': 515, 'bulet': 1574, 'gendut': 4305, 'noo': 7822, 'racing': 9185, 'hotwheels': 5148, 'itfrown': 5619, 'ahaha': 210, 'whyyyyyy': 12734, 'sucked': 11101, 'akon': 266, 'nightmare': 7754, 'mino': 7227, 'crazyyyy': 2460, 'thooo': 11624, 'zz': 13206, 'soundcheck': 10756, 'antagonistic': 477, 'obs': 7940, 'phantasy': 8509, 'issuei': 5607, 'morningsleepdeprivedtiredashelllookingaspoteven': 7371, 'kinaras': 6079, 'closed': 2104, 'poutingwe': 8871, 'awami': 733, 'gtgtgt': 4624, 'muca': 7442, 'niqqa': 7772, 'ajaydevgn': 258, 'pbcontestants': 8388, 'snakes': 10606, 'youfrown': 13099, 'aarwwi': 18, 'lmbo': 6534, 'dangit': 2629, 'emceeeee': 3362, 'ohmygod': 7993, 'scenario': 9880, 'tooooooo': 11818, 'baechyyy': 831, 'okayyyy': 8004, 'noone': 7826, 'drag': 3113, 'seriously': 10038, 'misundersranding': 7262, 'chal': 1845, 'raha': 9191, 'yhm': 13064, 'edsa': 3275, 'jasmingarrick': 5702, 'nakamaforever': 7558, 'unicefs': 12170, 'accounts': 68, 'fu': 4168, 'managed': 6860, 'stephen': 10956, 'appeared': 532, 'frustration': 4161, 'mapz': 6897, 'woza': 12901, 'entle': 3446, 'senight': 10011, 'amateur': 358, 'hotscratch': 5144, 'sell': 9997, 'socks': 10652, 'pesos': 8487, 'degrassi': 2754, 'bcz': 986, 'rejected': 9386, 'chem': 1934, 'onscreen': 8066, 'thoofscreenhe': 11623, 'ignores': 5313, 'herfrown': 4961, 'irony': 5575, 'rhisfor': 9538, 'camsex': 1703, 'gofrown': 4447, 'fxhelp': 4216, 'poopie': 8750, 'partisan': 8324, 'pipped': 8606, 'cupcake': 2540, 'glue': 4425, 'kuchar': 6182, 'ups': 12234, 'definite': 2750, 'anywaysconfusion': 501, 'lanzzz': 6265, 'samei': 9795, 'georgia': 4323, 'transmission': 11906, 'orang': 8119, 'suma': 11134, 'shouldeeerr': 10230, 'ages': 193, 'repack': 9434, 'groups': 4598, 'repacks': 9436, 'alwaysconfusion': 351, 'grown': 4605, 'dyed': 3222, 'rihanna': 9566, 'ginge': 4375, 'nikes': 7762, 'adidas': 125, 'procom': 9000, 'ifeelyou': 5302, 'todaythats': 11759, 'ratbaglater': 9248, 'semester': 10004, 'gin': 4372, 'poutingpurpleheart': 8854, 'gutted': 4663, 'reynold': 9535, 'desserts': 2838, 'village': 12400, 'cities': 2042, 'jhastie': 5766, 'uniting': 12176, 'oppressed': 8108, 'afghanistnwar': 162, 'tore': 11835, 'sunggyu': 11148, 'injure': 5463, 'plaster': 8654, 'rtd': 9695, 'welder': 12642, 'hogo': 5050, 'vishaya': 12421, 'adu': 138, 'bjp': 1239, 'madatte': 6772, 'anta': 474, 'vishwas': 12422, 'illa': 5329, 'wua': 12928, 'picky': 8562, 'swell': 11253, 'unfollowed': 12158, 'thenting': 11563, 'sexual': 10079, 'syncs': 11283, 'plugdj': 8702, 'suspemsion': 11217, 'cope': 2353, 'offroading': 7979, 'harvest': 4821, 'machinery': 6767, 'inapropriate': 5385, 'weave': 12600, 'investment': 5550, 'scottish': 9912, 'dire': 2932, 'nomoney': 7810, 'yungthot': 13154, 'nawf': 7612, 'sum': 11133, 'bechos': 1029, 'overly': 8205, 'lab': 6207, 'zap': 13167, 'distressing': 2990, 'cinema': 2033, 'louisianashooting': 6641, 'har': 4799, 'chum': 2018, 'ncc': 7621, 'ph': 8507, 'itong': 5631, 'shirt': 10186, 'thaaaat': 11512, 'cttoconfusion': 2525, 'expired': 3613, 'bis': 1214, 'confusionfrown': 2263, 'jfc': 5761, 'flies': 3958, 'bodo': 1325, 'amat': 357, 'yelaaaaaaa': 13031, 'sooooooooooo': 10723, 'dublin': 3177, 'potter': 8805, 'hugwant': 5200, 'smilewant': 10447, 'eyessince': 3647, 'comics': 2195, 'pining': 8595, 'keybind': 6016, 'warfare': 12538, 'controlls': 2326, 'diagnosed': 2878, 'wiv': 12797, 'scheuermanns': 9890, 'diseaseback': 2967, 'bone': 1345, 'rlyhurts': 9598, 'howdo': 5160, 'georgesampson': 4322, 'pe': 8401, 'presence': 8930, 'signal': 10288, 'calls': 1682, 'reckon': 9327, 'taunton': 11382, 'justiceforsandrabland': 5900, 'sandrabland': 9810, 'disturbing': 2994, 'happpy': 4791, 'justinbieber': 5902, 'gtdaianerufatolt': 4618, 'smileyamconfusion': 10452, 'delphy': 2778, 'injured': 5464, 'dom': 3045, 'techniques': 11443, 'mince': 7207, 'bangyongguk': 893, 'symphony': 11280, 'poutingneed': 8843, 'co': 2122, 'wth': 12926, 'schedule': 9886, 'aisyhhh': 251, 'eyed': 3640, 'bald': 858, 'seungchan': 10061, 'aigooo': 229, 'riri': 9578, 'vet': 12358, 'vaim': 12298, 'kept': 6006, 'luminous': 6719, 'treating': 11918, 'horribly': 5118, 'popularity': 8764, 'whyjust': 12730, 'stopbebeeeee': 10994, 'inaccuracies': 5381, 'jokes': 5813, 'inaccurate': 5382, 'worried': 12878, 'burning': 1606, 'tragic': 11885, 'toronto': 11837, 'stuart': 11051, 'partys': 8333, 'iyalaya': 5646, 'clockfrown': 2101, 'happier': 4786, 'hampm': 4757, 'ubusy': 12083, 'gymnastics': 4678, 'aahhhh': 11, 'noggin': 7802, 'bumped': 1585, 'feelslikeanidiot': 3818, 'pregnant': 8912, 'dearly': 2704, 'suk': 11129, 'buttttttt': 1631, 'pumpkin': 9095, 'scones': 9901, 'outnumbered': 8189, 'eris': 3480, 'geez': 4295, 'exolt': 3593, 'hive': 5034, 'vietnam': 12390, 'dunt': 3202, 'awwwwwwww': 764, 'sobbing': 10638, 'buff': 1561, 'toni': 11803, 'deactivated': 2695, 'shadys': 10102, 'isibaya': 5591, 'facewithcoldsweat': 3669, 'colder': 2149, 'sausage': 9847, 'adios': 126, 'messenger': 7134, 'shittier': 10193, 'leno': 6378, 'identity': 5291, 'crisis': 2490, 'roommates': 9660, 'knocked': 6140, 'nighter': 7752, 'flew': 3953, 'visits': 12428, 'wetherspoons': 12663, 'pubs': 9081, 'police': 8731, 'lisaherring': 6490, 'ebony': 3255, 'polka': 8738, 'loudlycryingfaceloudlycryingface': 6631, 'ndi': 7626, 'leftovers': 6355, 'grahampatrick': 4525, 'owns': 8222, 'ruined': 9707, 'walnut': 12525, 'whips': 12708, 'boah': 1315, 'mady': 6787, 'momentnot': 7319, 'aminormalyet': 384, 'poorly': 8754, 'pjs': 8632, 'groaning': 4588, 'stroya': 11041, 'nou': 7871, 'ken': 5998, 'saras': 9830, 'accident': 61, 'manage': 6859, 'describe': 2821, 'prydz': 9060, 'sisterinlaw': 10337, 'installed': 5501, 'seat': 9945, 'rearended': 9302, 'everyones': 3549, 'boobs': 1352, 'stairs': 10885, 'childhood': 1956, 'toothsensitivity': 11820, 'factor': 3689, 'shem': 10159, 'awell': 740, 'weekendofmadness': 12620, 'tropicaldrinkcocktailglasstropicaldrink': 11955, 'cb': 1798, 'threatened': 11640, 'dancer': 2621, 'noi': 7805, 'choregrapherbut': 1991, 'poutingwhyyyyyyyyyyyy': 8875, 'happening': 4784, 'existed': 3588, 'messaged': 7130, 'hasnt': 4829, 'replied': 9449, 'hoe': 5048, 'recording': 9335, 'xiu': 12952, 'nk': 7786, 'gi': 4350, 'uss': 12274, 'awwwwww': 763, 'elisse': 3335, 'ksoo': 6178, 'tat': 11374, 'rdbut': 9267, 'glen': 4415, 'yoult': 13103, 'cledera': 2079, 'rancho': 9219, 'imperial': 5363, 'de': 2693, 'silang': 10295, 'subdivision': 11079, 'center': 1815, 'canampt': 1706, 'evry': 3560, 'cornwall': 2368, 'veritably': 12349, 'penny': 8437, 'addictedtoanalsex': 112, 'sweetbj': 11247, 'blowjob': 1298, 'mhhh': 7155, 'sed': 9959, 'seungh': 10062, 'mee': 7047, 'envious': 3457, 'lovey': 6670, 'dovey': 3103, 'workin': 12860, 'schade': 9884, 'isco': 5583, 'penis': 8436, 'hushed': 5242, 'nationpraying': 7601, 'louisianalafayette': 6640, 'matteroftheheart': 6979, 'waduhpantes': 12479, 'suspended': 11218, 'smoking': 10595, 'cliche': 2083, 'youuuu': 13127, 'rma': 9601, 'jersey': 5751, 'texted': 11497, 'jaclintiler': 5663, 'likeforlike': 6444, 'hotfmnoaidilforariana': 5140, 'pleasefrown': 8680, 'fuckkk': 4177, 'sanum': 9820, 'poutingllaollao': 8837, 'dessert': 2837, 'foood': 4027, 'glares': 4408, 'vines': 12406, 'figuring': 3868, 'choreo': 1992, 'offensive': 7967, 'yousad': 13115, 'yeyy': 13062, 'hd': 4867, 'sux': 11222, 'nothaveld': 7860, 'mosquitoe': 7376, 'bites': 1229, 'kinky': 6095, 'hsould': 5179, 'justget': 5897, 'shuffle': 10257, 'buckling': 1548, 'springs': 10857, 'millz': 7200, 'askies': 633, 'millzxytongue': 7201, 'awusasho': 756, 'mbeki': 7002, 'unlucky': 12190, 'briefly': 1474, 'eggs': 3292, 'spotted': 10847, 'greatful': 4554, 'brooke': 1507, 'cracked': 2441, 'maverickgamerjuly': 6986, 'external': 3627, 'sd': 9935, 'airdroid': 236, 'supported': 11182, 'cramps': 2448, 'unstan': 12204, 'tay': 11390, 'ngeze': 7711, 'parties': 8322, 'cocktaily': 2132, 'loudlycryingfaceloudlycryingfaceloudlycryingface': 6632, 'ams': 393, 'crashing': 2455, 'airplane': 242, 'poutingumbrellawithraindrops': 8868, 'pens': 8439, 'spares': 10781, 'guests': 4639, 'barcelona': 908, 'bilbao': 1180, 'sharyl': 10135, 'shane': 10117, 'deactivate': 2694, 'giddy': 4356, 'zipper': 13191, 'repair': 9437, 'offering': 7971, 'cont': 2297, 'englandfrown': 3422, 'wore': 12852, 'tempted': 11467, 'oreos': 8131, 'networks': 7680, 'ain': 231, 'lolipop': 6565, 'kebab': 5984, 'klappertart': 6125, 'moodboster': 7350, 'unprepared': 12200, 'sry': 10872, 'dresscode': 3137, 'caitlintierney': 1660, 'stab': 10875, 'meh': 7061, 'wrocilam': 12914, 'loowwfrown': 6603, 'mariebear': 6907, 'recovered': 9339, 'wayne': 12578, 'lossstolen': 6619, 'accidentally': 62, 'damaged': 2608, 'devices': 2857, 'warranty': 12545, 'repairs': 9438, 'facewithtearsofjoyfacewithtearsofjoyfacewithtearsofjoyboym': 3678, 'okhandfruits': 8007, 'kyddque': 6197, 'lmfaooso': 6538, 'fra': 4078, 'otamendi': 8159, 'ny': 7927, 'oncomingtaxistatueoflibertynightwithstars': 8055, 'stealth': 10942, 'bastard': 942, 'therapy': 11569, 'exhausting': 3586, 'understandable': 12144, 'switzerland': 11267, 'wolrd': 12819, 'isi': 5590, 'fyn': 4219, 'genuinely': 4319, 'nightmares': 7755, 'audio': 690, 'noooooooooooooooooo': 7834, 'deck': 2727, 'chairs': 1844, 'yk': 13074, 'resy': 9502, 'strms': 11034, 'memory': 7093, 'bruh': 1526, 'locked': 6550, 'fbc': 3794, 'mork': 7363, 'hotspotwithdanris': 5145, 'choclbear': 1975, 'sone': 10700, 'produce': 9003, 'potagermy': 8798, 'blight': 1274, 'mych': 7518, 'shiiit': 10174, 'prompts': 9034, 'claimed': 2051, 'aready': 573, 'soulmate': 10752, 'smilingfacefacewithtearsofjoygrinningfacewithsmilingeyes': 10573, 'hws': 5250, 'jouch': 5835, 'por': 8766, 'que': 9152, 'liceooooo': 6419, 'ayala': 768, 'tunnel': 12008, 'promised': 9023, 'centres': 1819, 'thatscold': 11543, 'lourdes': 6643, 'bangfrown': 891, 'pv': 9130, 'anywhere': 502, 'showbox': 10242, 'companion': 2213, 'skinny': 10371, 'zzzz': 13208, 'dubai': 3175, 'laribuggy': 6273, 'nutella': 7917, 'loses': 6616, 'couldve': 2393, 'sirius': 10330, 'goat': 4437, 'naut': 7606, 'frudging': 4155, 'numbers': 7912, 'bbz': 979, 'angeke': 424, 'sbali': 9868, 'khang': 6027, 'euuuwwww': 3527, 'worker': 12855, 'reach': 9273, 'styles': 11072, 'poutingnelle': 8844, 'jaysus': 5717, 'insecurities': 5479, 'buti': 1623, 'poop': 8749, 'rome': 9653, 'throat': 11649, 'eshaaax': 3493, 'llama': 6528, 'getwellsoonamber': 4338, 'ajol': 259, 'heath': 4908, 'ledger': 6348, 'permission': 8469, 'mugabi': 7457, 'leadssupersport': 6331, 'milkshake': 7194, 'witcher': 12791, 'papertown': 8296, 'bale': 859, 'bahay': 840, 'bahayan': 841, 'magisa': 6803, 'lang': 6256, 'sadlyf': 9755, 'bunso': 1594, 'sleeeeep': 10392, 'astonvilla': 658, 'berigaud': 1107, 'bakar': 851, 'louisianafrown': 6639, 'streams': 11020, 'allergic': 308, 'depressing': 2811, 'blaines': 1251, 'acoustic': 87, 'hernia': 4963, 'doctored': 3025, 'toxin': 11866, 'ariel': 584, 'slapped': 10388, 'slammed': 10386, 'bees': 1038, 'finddjderek': 3891, 'uuughhhh': 12286, 'grabe': 4516, 'smi': 10443, 'poutingjust': 8835, 'nemesis': 7663, 'xdconfusion': 12945, 'appealing': 529, 'neeeeeeeeeeeeeeeeein': 7646, 'saaaad': 9737, 'hanging': 4776, 'creases': 2465, 'homed': 5071, 'tanned': 11358, 'dallas': 2604, 'nichols': 7736, 'walks': 12517, 'infront': 5452, 'beato': 1007, 'tim': 11699, 'minha': 7217, 'deleicious': 2763, 'skinner': 10370, 'bliss': 1276, 'pcb': 8393, 'peregrines': 8455, 'tram': 11895, 'hav': 4845, 'apt': 556, 'worki': 12859, 'bldg': 1261, 'mmmmm': 7281, 'nicki': 7738, 'fucjikg': 4169, 'buynotanapologyonitunes': 1637, 'avalible': 717, 'frustrated': 4159, 'nw': 7924, 'sch': 9883, 'jeslyn': 5752, 'rooting': 9661, 'kuch': 6181, 'hua': 5184, 'bitching': 1226, 'newbies': 7686, 'miracle': 7236, 'wings': 12771, 'fail': 3700, 'growingheartgrowingheartgrowingheart': 4602, 'nux': 7920, 'hinanap': 5012, 'uy': 12291, 'sched': 9885, 'anyare': 486, 'entertain': 3442, 'typa': 12069, 'buddies': 1552, 'transparency': 11907, 'photoshop': 8543, 'decided': 2723, 'planner': 8647, 'helpppp': 4949, 'wearig': 12591, 'dri': 3142, 'prey': 8954, 'drained': 3120, 'ausfailia': 702, 'snow': 10628, 'footy': 4032, 'countsnd': 2405, 'row': 9684, 'mampms': 6856, 'kitkat': 6112, 'steeez': 10945, 'wearyfacewearyfacewearyfacecryingface': 12596, 'suger': 11116, 'olivia': 8027, 'bamps': 873, 'audition': 691, 'injurys': 5466, 'appendix': 536, 'appendicitis': 535, 'fack': 3686, 'nhl': 7718, 'hays': 4860, 'khamis': 6025, 'kadhafi': 5908, 'reaaly': 9270, 'naomi': 7576, 'arias': 583, 'contemporary': 2306, 'messed': 7133, 'slacke': 10384, 'jahat': 5672, 'discount': 2958, 'thorpe': 11628, 'payneourdaddy': 8382, 'guessed': 4637, 'nicely': 7732, 'esnho': 3496, 'node': 7797, 'directx': 2937, 'shading': 10098, 'uploaded': 12227, 'blackberry': 1243, 'povertyyouareevil': 8879, 'emm': 3371, 'lied': 6422, 'poutingyou': 8877, 'elgin': 3331, 'vava': 12323, 'makati': 6826, 'yellowheart': 13037, 'baon': 901, 'soak': 10634, 'bread': 1451, 'mush': 7483, 'theyd': 11586, 'ouat': 8172, 'blinkin': 1275, 'headack': 4872, 'tension': 11474, 'eritation': 3481, 'perspective': 8480, 'poutinglouis': 8838, 'endlessly': 3409, 'batting': 954, 'kiddo': 6045, 'rumbelle': 9712, 'irresponsibly': 5578, 'pakighinabi': 8257, 'pinkfinite': 8598, 'beb': 1022, 'migraine': 7179, 'coyote': 2431, 'unamusedfaceunamusedface': 12130, 'headache': 4870, 'baechu': 830, 'calibraskaep': 1672, 'elgato': 3330, 'ant': 473, 'unexpect': 12152, 'poutingbestfriend': 8815, 'tri': 11930, 'fainted': 3705, 'bp': 1416, 'subway': 11096, 'fragile': 4080, 'gap': 4259, 'plots': 8692, 'net': 7671, 'bungie': 1590, 'woohyun': 12843, 'guilty': 4643, 'davao': 2665, 'luckyyyy': 6707, 'eunhae': 3522, 'misplaced': 7242, 'dae': 2594, 'bap': 902, 'modoki': 7307, 'irwinstagram': 5580, 'plsfrown': 8694, 'huehue': 5190, 'rice': 9544, 'krispy': 6171, 'marshmallows': 6928, 'mmjunction': 7280, 'soulsurvivor': 10754, 'stafford': 10882, 'mixture': 7272, 'theyve': 11589, 'shems': 10160, 'lage': 6228, 'ramd': 9214, 'sorryfrown': 10737, 'munchkin': 7473, 'todayfrown': 11756, 'poutingbought': 8816, 'parting': 8323, 'giftso': 4363, 'juja': 5870, 'murugan': 7480, 'handles': 4767, 'bgtau': 1147, 'harap': 4801, 'bagi': 837, 'aminn': 383, 'fraand': 4079, 'grimacingface': 4578, 'bigbang': 1169, 'gg': 4342, 'sian': 10266, 'nicoleapage': 7743, 'hellish': 4936, 'thirstyyyy': 11605, 'chesties': 1942, 'nandos': 7574, 'bow': 1403, 'madexx': 6775, 'hen': 4953, 'rdd': 9268, 'dissipating': 2986, 'capeee': 1726, 'japan': 5695, 'outlive': 8186, 'xrays': 12960, 'dental': 2798, 'spinenothing': 10821, 'relief': 9408, 'popol': 8759, 'stomach': 10985, 'frog': 4146, 'genad': 4303, 'negotiable': 7651, 'huhuhuhuhu': 5207, 'bbmadeinmanila': 970, 'findavip': 3890, 'boyirl': 1413, 'yasss': 13000, 'june': 5889, 'itnot': 5628, 'laine': 6239, 'difficiency': 2905, 'customer': 2559, 'speed': 10806, 'rapists': 9234, 'crime': 2488, 'bachpan': 799, 'yaadein': 12982, 'finnair': 3907, 'heathrow': 4909, 'norwegian': 7848, 'batteries': 952, 'upvotes': 12240, 'keeno': 5989, 'whatthefuck': 12688, 'grotty': 4592, 'seeker': 9967, 'morality': 7360, 'fern': 3836, 'mimi': 7204, 'bali': 860, 'poutingshes': 8859, 'tooo': 11817, 'todayyesterday': 11761, 'pleaseeeee': 8678, 'lowbat': 6676, 'poutingotwolgrandtrailer': 8850, 'funkfrown': 4199, 'wewanticecream': 12666, 'sweat': 11236, 'eugh': 3521, 'sara': 9824, 'occasionally': 7949, 'izzys': 5652, 'dorm': 3082, 'choppy': 1990, 'contacted': 2299, 'infinites': 5434, 'hion': 5018, 'cayton': 1797, 'darcey': 2637, 'connor': 2280, 'spoke': 10835, 'ripped': 9573, 'bottle': 1395, 'roomits': 9657, 'roommateexperience': 9659, 'ic': 5271, 'te': 11410, 'autofollowback': 711, 'asianbut': 627, 'penguin': 8435, 'poutingsad': 8857, 'ljp': 6527, 'nowdays': 7877, 'pleass': 8683, 'rawrx': 9257, 'numb': 7909, 'dentist': 2799, 'ag': 181, 'misss': 7253, 'rid': 9550, 'tab': 11292, 'ucas': 12085, 'bigtime': 1174, 'rumor': 9714, 'poutingzayniscomingbackonjuly': 8878, 'warmest': 12541, 'greeting': 4564, 'chin': 1965, 'tickle': 11684, 'zikra': 13190, 'lusi': 6730, 'hasyaconfusion': 4831, 'nuggets': 7906, 'soms': 10695, 'browning': 1519, 'millies': 7198, 'ano': 459, 'stans': 10901, 'camping': 1699, 'mags': 6807, 'hateeeee': 4835, 'lease': 6339, 'written': 12913, 'sizing': 10353, 'gs': 4613, 'unsuccessful': 12205, 'earlobes': 3234, 'sue': 11107, 'dreary': 3134, 'noooooo': 7830, 'denise': 2796, 'murielle': 7478, 'ahours': 221, 'prbrand': 8901, 'lyra': 6751, 'kathd': 5965, 'responded': 9487, 'chopped': 1989, 'wbu': 12582, 'activity': 94, 'kme': 6130, 'cram': 2447, 'curious': 2543, 'announcements': 453, 'trespassers': 11928, 'clandestins': 2053, 'loudlycryingfacesparklingheart': 6636, 'muller': 7464, 'obvious': 7944, 'mufc': 7455, 'stu': 11050, 'buddyyyy': 1554, 'feelgoodfriday': 3812, 'camp': 1696, 'forest': 4039, 'babysit': 793, 'stayed': 10937, 'opixer': 8097, 'pilllow': 8586, 'fool': 4026, 'bragging': 1424, 'skrillah': 10376, 'drowned': 3163, 'gue': 4635, 'muchha': 7446, 'grans': 4537, 'sjkaos': 10356, 'angrynow': 436, 'disappointedmmsrry': 2950, 'stuffy': 11063, 'boconfusion': 1323, 'honma': 5090, 'yeh': 13027, 'walay': 12509, 'bohat': 1329, 'wailay': 12492, 'preseason': 8929, 'shor': 10216, 'machaya': 6765, 'samjha': 9797, 'shopaholic': 10213, 'smilingfacewithopenmouthsmilingeyesthumbsup': 10581, 'pensivefacefacewithcoldsweat': 8442, 'sirkay': 10331, 'wali': 12511, 'pyaaz': 9135, 'daal': 2587, 'onions': 8061, 'vinegar': 12404, 'cooking': 2344, 'soho': 10666, 'wobbly': 12812, 'ciao': 2025, 'masaan': 6939, 'muv': 7507, 'beast': 1001, 'hayst': 4861, 'hnnnnnnn': 5044, 'saaad': 9738, 'rsa': 9692, 'ates': 662, 'whileconfusion': 12704, 'optimisation': 8111, 'soniii': 10706, 'kahaaaa': 5912, 'freezing': 4099, 'fml': 3987, 'jackets': 5659, 'sleepy': 10403, 'bullying': 1580, 'racial': 9184, 'halls': 4750, 'looooool': 6598, 'slutcake': 10429, 'playfrown': 8664, 'sobs': 10640, 'busier': 1617, 'onwards': 8071, 'coincidence': 2144, 'imac': 5341, 'grams': 4526, 'lived': 6511, 'nearer': 7631, 'blainedarren': 1250, 'fuuuuuuuuuck': 4212, 'gishwhes': 4392, 'excluded': 3576, 'angelica': 426, 'pulled': 9090, 'poutinggot': 8824, 'movement': 7399, 'frou': 4151, 'vaccines': 12296, 'armor': 589, 'legendary': 6360, 'cash': 1773, 'effort': 3289, 'trips': 11947, 'nat': 7590, 'brake': 1434, 'grumpy': 4610, 'hahahax': 4711, 'wrecking': 12905, 'gahhh': 4225, 'terible': 11482, 'kiligs': 6063, 'sugg': 11117, 'weeksurprise': 12627, 'blacktomorrow': 1248, 'weaker': 12585, 'shravan': 10253, 'maas': 6758, 'stooooop': 10991, 'giguilty': 4369, 'akooooooooooooooo': 268, 'imveryverysorry': 5377, 'poutingso': 8861, 'greyed': 4572, 'basename': 932, 'theme': 11556, 'sessions': 10051, 'cigar': 2028, 'speakers': 10792, 'anyways': 500, 'offered': 7970, 'promethazine': 9021, 'zopiclone': 13201, 'addition': 117, 'quetiapine': 9161, 'modified': 7305, 'releasetypically': 9404, 'prescription': 8928, 'greska': 4569, 'macedonian': 6764, 'slovak': 10420, 'hiking': 4999, 'tested': 11490, 'browsers': 1524, 'zokay': 13195, 'accentconfusion': 56, 'bbut': 975, 'gintama': 4379, 'shinsengumi': 10177, 'chapters': 1877, 'crapple': 2452, 'agrees': 206, 'phandroid': 8508, 'tline': 11740, 'orchestra': 8124, 'rehearsal': 9380, 'bittersweetness': 1236, 'eunji': 3523, 'bakit': 853, 'ehdar': 3296, 'pegea': 8427, 'panga': 8285, 'dosto': 3091, 'poutingopen': 8849, 'realliampayne': 9297, 'dmed': 3014, 'canceled': 1710, 'alreaddyyy': 334, 'luceleva': 6699, 'naeun': 7538, 'kidneys': 6047, 'ink': 5468, 'themselvesihatesomepeople': 11559, 'table': 11293, 'hardwired': 4808, 'canadian': 1704, 'acne': 84, 'poutinggulo': 8826, 'poutingkandekjs': 8836, 'rize': 9593, 'meydanconfusion': 7149, 'experienced': 3605, 'fcking': 3798, 'crei': 2477, 'connection': 2277, 'dormmates': 3083, 'bo': 1314, 'activation': 92, 'cod': 2137, 'redeem': 9347, 'invalid': 5545, 'wag': 12482, 'hopia': 5108, 'editor': 3270, 'revealed': 9522, 'boooo': 1366, 'extensions': 3626, 'rightnow': 9562, 'btu': 1539, 'blaine': 1249, 'licence': 6418, 'apb': 511, 'mbf': 7003, 'hahahaokay': 4710, 'capcom': 1725, 'basara': 928, 'url': 12250, 'booking': 1356, 'grumbling': 4609, 'migrant': 7180, 'awsme': 754, 'picking': 8560, 'tmwuwuwell': 11747, 'jinki': 5778, 'taems': 11301, 'gifs': 4359, 'cambridge': 1689, 'viathe': 12363, 'cyprus': 2582, 'zayncomebacktod': 13172, 'spazzing': 10789, 'soobin': 10711, 'dances': 2622, 'poutingsummer': 8862, 'unmarried': 12191, 'floating': 3968, 'pressure': 8938, 'lifetime': 6431, 'hiondsheings': 5019, 'sexdate': 10074, 'demis': 2786, 'junjou': 5893, 'romantica': 9652, 'isla': 5593, 'cruel': 2506, 'privilege': 8981, 'mixtape': 7271, 'convince': 2335, 'friexs': 4136, 'shaylan': 10145, 'ylona': 13076, 'reality': 9292, 'waitting': 12499, 'andgore': 411, 'noon': 7825, 'likeouh': 6449, 'riseso': 9581, 'tax': 11384, 'ohhhh': 7990, 'nm': 7789, 'encanta': 3399, 'vale': 12301, 'osea': 8154, 'bea': 991, 'muchi': 7448, 'followplease': 4015, 'ennyselise': 3431, 'awwwwwwwwwww': 765, 'starz': 10923, 'baek': 832, 'dunwan': 3203, 'haiz': 4734, 'dc': 2686, 'hill': 5004, 'confusedfacefrown': 2257, 'insonia': 5489, 'rick': 9548, 'ross': 9670, 'balling': 866, 'poutingo': 8847, 'heartbreaking': 4894, 'millie': 7197, 'pagehappy': 8242, 'golden': 4456, 'homes': 5074, 'rosebury': 9665, 'familyhome': 3729, 'monkey': 7334, 'durance': 3208, 'erica': 3478, 'shikinrizal': 10175, 'istg': 5610, 'jackson': 5662, 'nsbzhdnxndamal': 7892, 'amhours': 377, 'amsigh': 394, 'mahilig': 6810, 'mambully': 6852, 'mtaani': 7427, 'tunaita': 12004, 'viazi': 12364, 'choma': 1986, 'celebrated': 1807, 'jerk': 5750, 'magicfrown': 6799, 'menille': 7100, 'kams': 5927, 'meeee': 7048, 'diz': 3004, 'bioooo': 1198, 'ay': 767, 'taray': 11362, 'yumuyoutuber': 13149, 'hurting': 5239, 'parijat': 8308, 'willmissyouparijat': 12754, 'sets': 10056, 'jollies': 5817, 'needing': 7644, 'mcnuggets': 7016, 'sophie': 10727, 'caramello': 1731, 'koalas': 6153, 'suckmejimin': 11102, 'sucky': 11104, 'pou': 8807, 'goddamn': 4442, 'barking': 919, 'nje': 7783, 'dbn': 2685, 'ribbon': 9542, 'hardest': 4805, 'wout': 12896, 'abbeytaylor': 24, 'pledge': 8686, 'viber': 12366, 'mwah': 7513, 'estate': 3505, 'lansi': 6264, 'hp': 5168, 'waah': 12474, 'vandag': 12313, 'monthre': 7343, 'kgola': 6022, 'neng': 7664, 'eintlik': 3307, 'cryingface': 2517, 'porn': 8769, 'repost': 9456, 'whaaaaaat': 12673, 'whyyyyyyy': 12735, 'magpie': 6806, 'marshmallow': 6927, 'chswiyfxcskcalum': 2014, 'nvm': 7922, 'fooffrown': 4025, 'casillas': 1775, 'manchester': 6865, 'madritongue': 6785, 'xi': 12949, 'rmtour': 9602, 'songcan': 10702, 'irl': 5574, 'bloopers': 1296, 'huhuhuhu': 5206, 'natake': 7591, 'sorta': 10740, 'unfriend': 12166, 'poutingltgreysonchance': 8839, 'disappointed': 2948, 'sandwich': 9813, 'thenfrown': 11562, 'belle': 1075, 'sebastian': 9948, 'rewatched': 9531, 'sers': 10040, 'outdated': 8180, 'abandoned': 22, 'peopleshooting': 8449, 'theater': 11545, 'smhdamn': 10442, 'ceceli': 1805, 'ekk': 3312, 'giriboy': 4381, 'danni': 2634, 'harriet': 4814, 'gegu': 4296, 'gray': 4548, 'mcclure': 7006, 'politics': 8737, 'blaming': 1256, 'representing': 9459, 'corbyn': 2359, 'labours': 6211, 'fortunes': 4060, 'ry': 9730, 'lfccw': 6404, 'ontheroadagain': 8067, 'halaaaang': 4739, 'recieved': 9321, 'flip': 3961, 'flops': 3972, 'caesarspalace': 1655, 'socialrewards': 10647, 'esse': 3502, 'cali': 1669, 'wo': 12808, 'fuckboys': 4171, 'chennai': 1937, 'chrompet': 2011, 'immune': 5357, 'lush': 6729, 'bathtub': 949, 'phpmysql': 8545, 'libmysqlclientdev': 6414, 'sync': 11281, 'dev': 2850, 'pleasanton': 8674, 'wala': 12505, 'earlyconfusion': 3236, 'heed': 4920, 'gwss': 4675, 'poutingredheartredheart': 8856, 'thankyouuredheart': 11532, 'charade': 1882, 'piano': 8555, 'pippy': 8607, 'scored': 9907, 'complaint': 2225, 'yelling': 13034, 'whatsoever': 12687, 'wentz': 12654, 'shogi': 10207, 'blameshoghicp': 1255, 'kinds': 6087, 'classmate': 2066, 'friendseverything': 4132, 'ordering': 8128, 'fixedgearfrenzy': 3932, 'dispatch': 2981, 'hats': 4843, 'shamuons': 10115, 'toe': 11766, 'poutingmanaged': 8840, 'horrendously': 5115, 'jumping': 5886, 'someones': 10687, 'hasb': 4822, 'atty': 687, 'mujy': 7461, 'sirf': 10329, 'helpfulsensible': 4945, 'cyclerevolution': 2577, 'caaaannntttt': 1648, 'overdrawn': 8201, 'tbf': 11397, 'complained': 2223, 'zayniscomingbackonjulyim': 13177, 'cryingi': 2519, 'perfume': 8465, 'samples': 9801, 'chanelburberryprada': 1861, 'noesss': 7800, 'topgear': 11827, 'bridesmaid': 1471, 'gathering': 4273, 'sudden': 11105, 'randomrestart': 9223, 'randomreboot': 9222, 'lumia': 6718, 'windowsphone': 12765, 'microsofts': 7168, 'addressing': 122, 'maana': 6757, 'solos': 10676, 'rappings': 9236, 'striker': 11029, 'lvg': 6738, 'fuuuuuck': 4211, 'helppp': 4948, 'refurbished': 9366, 'cintiq': 2037, 'originates': 8145, 'finnicks': 3908, 'askfinnick': 632, 'container': 2303, 'hairy': 4730, 'buried': 1602, 'omaygad': 8040, 'vic': 12369, 'surgery': 11198, 'tttt': 11986, 'hyper': 5257, 'imiss': 5347, 'knowfor': 6143, 'prepaid': 8922, 'grandma': 4532, 'grandpas': 4535, 'cow': 2429, 'sheeps': 10151, 'vegetables': 12331, 'puking': 9088, 'delirious': 2772, 'motilium': 7384, 'shite': 10189, 'schoolworks': 9895, 'phoebes': 8526, 'pothole': 8804, 'sorryi': 10738, 'robyn': 9625, 'necklaces': 7639, 'rachel': 9183, 'upfrown': 12219, 'shan': 10116, 'ramzan': 9217, 'crosssed': 2501, 'clapham': 2055, 'investigate': 5548, 'sth': 10967, 'purchased': 9109, 'essentially': 3503, 'photoshoooot': 8541, 'mahone': 6815, 'shut': 10259, 'andaming': 409, 'memorization': 7092, 'cotton': 2385, 'sickfrown': 10272, 'concept': 2236, 'swallowing': 11228, 'snot': 10627, 'chokes': 1984, 'taknottem': 11324, 'btob': 1537, 'percentage': 8454, 'swift': 11256, 'ait': 252, 'poutingwsalelove': 8876, 'sexyjane': 10083, 'goodmusic': 4474, 'lart': 6276, 'sew': 10069, 'nogrimacingface': 7803, 'chairfrown': 1843, 'clevermonkey': 2082, 'skyfall': 10381, 'premiere': 8915, 'yummyjust': 13148, 'pee': 8419, 'suns': 11158, 'xgn': 12948, 'manteca': 6883, 'chair': 1842, 'shiatsu': 10168, 'setting': 10058, 'heat': 4906, 'risk': 9583, 'edward': 3278, 'hopper': 5111, 'eyyah': 3649, 'dughtr': 3187, 'utd': 12279, 'cart': 1767, 'logged': 6555, 'aaaaaaaaaaaaa': 2, 'waifu': 12490, 'breakup': 1458, 'bias': 1161, 'syndrome': 11284, 'shy': 10262, 'biases': 1162, 'pixelated': 8626, 'karltovera': 5952, 'weh': 12629, 'apayor': 510, 'maymay': 6994, 'advance': 143, 'allowance': 317, 'magpaalam': 6805, 'tf': 11501, 'changs': 1866, 'backstory': 814, 'cabangal': 1649, 'neato': 7636, 'wru': 12918, 'scissors': 9899, 'komal': 6160, 'creations': 2469, 'amtired': 396, 'imysm': 5379, 'tut': 12018, 'trop': 11953, 'tard': 11363, 'deadline': 2697, 'frogs': 4147, 'ryry': 9733, 'shepherds': 10162, 'premiun': 8919, 'notcool': 7855, 'lahat': 6235, 'araw': 562, 'naging': 7543, 'gyu': 4680, 'lmfaoooo': 6536, 'deleted': 2765, 'mashup': 6946, 'eu': 3520, 'lcs': 6324, 'yass': 12999, 'relatives': 9395, 'yr': 13131, 'sydney': 11276, 'perf': 8456, 'programmes': 9013, 'agoconfusion': 201, 'hashtags': 4828, 'omfg': 8043, 'combat': 2182, 'dosent': 3088, 'sods': 10656, 'yahoo': 12988, 'yodel': 13080, 'jokingly': 5816, 'seriousness': 10039, 'gahd': 4224, 'zayns': 13178, 'dragging': 3115, 'discover': 2959, 'obyun': 7947, 'wayhh': 12576, 'prevalent': 8949, 'controversy': 2327, 'teacupwithouthandlehotbeverage': 11415, 'tube': 11989, 'strike': 11028, 'youthats': 13118, 'inches': 5393, 'meck': 7037, 'sleeeep': 10393, 'mcfc': 7009, 'ucan': 12084, 'poc': 8714, 'blocking': 1281, 'specific': 10800, 'sinhala': 10321, 'billionaires': 1185, 'maldives': 6837, 'dheena': 2872, 'fasgadah': 3765, 'alvadhaau': 349, 'burned': 1605, 'rolls': 9648, 'countdown': 2397, 'functions': 4194, 'desktop': 2832, 'evelineconrade': 3531, 'kikmsn': 6060, 'selfshot': 9995, 'backkk': 812, 'heartsuitheartsuitheartsuit': 4904, 'relaxing': 9400, 'dull': 3191, 'overcast': 8200, 'phipps': 8523, 'missin': 7249, 'hangin': 4775, 'wiff': 12743, 'interactive': 5524, 'dept': 2812, 'cherry': 1940, 'bakewell': 852, 'collecting': 2162, 'teal': 11416, 'sect': 9955, 'tennunb': 11473, 'skip': 10373, 'doomsday': 3078, 'neglected': 7649, 'postie': 8792, 'bellamy': 1074, 'raven': 9255, 'clarke': 2059, 'helmy': 4940, 'uh': 12098, 'cnt': 2121, 'whereisthesun': 12699, 'summerismissing': 11138, 'longggg': 6589, 'ridiculous': 9558, 'stocko': 10981, 'lucozade': 6708, 'shootings': 10211, 'explosions': 3621, 'zarryy': 13170, 'beh': 1052, 'halfremembered': 4743, 'melodys': 7082, 'recall': 9311, 'mouths': 7396, 'mile': 7185, 'dropped': 3157, 'travelling': 11915, 'expo': 3622, 'jisoo': 5779, 'anon': 460, 'mager': 6793, 'wifrown': 12745, 'wht': 12727, 'worlds': 12875, 'londonim': 6577, 'yourselfit': 13113, 'buffering': 1563, 'insane': 5477, 'charli': 1893, 'ganas': 4247, 'studio': 11058, 'arch': 565, 'methey': 7143, 'mspxo': 7424, 'lyin': 6744, 'kian': 6037, 'youuuuuufrown': 13128, 'supercars': 11169, 'gurgaon': 4659, 'locations': 6548, 'whyyyy': 12732, 'satire': 9837, 'regretting': 9375, 'peanut': 8409, 'viners': 12405, 'palembang': 8267, 'sorrrrryyyyy': 10734, 'fany': 3754, 'mcinnes': 7014, 'boner': 1346, 'mercy': 7118, 'jake': 5676, 'gyllenhaal': 4676, 'impact': 5359, 'ledgers': 6349, 'coldcough': 2148, 'depleted': 2808, 'mbasa': 7000, 'client': 2087, 'hopeconfusion': 5100, 'aah': 10, 'blocks': 1283, 'pacopy': 8236, 'biomes': 1197, 'mosque': 7374, 'smelly': 10439, 'emptier': 3387, 'ciaras': 2026, 'everythings': 3553, 'clipsconfusion': 2099, 'tall': 11340, 'intention': 5520, 'kissed': 6103, 'ambs': 370, 'harrys': 4817, 'smileyfrown': 10499, 'mayday': 6992, 'parade': 8299, 'lyf': 6743, 'pensivefacepensivefacepensiveface': 8443, 'animal': 438, 'risky': 9585, 'brooks': 1509, 'cologne': 2169, 'avonsparadise': 725, 'twodevils': 12052, 'babes': 786, 'duo': 3204, 'ballads': 864, 'bish': 1217, 'intern': 5530, 'yumyum': 13150, 'cathys': 1789, 'missyou': 7254, 'bishes': 1218, 'ruby': 9702, 'pora': 8767, 'karlia': 5950, 'khatam': 6030, 'bandi': 884, 'loudlycryingfacecrown': 6629, 'pyaari': 9134, 'gawd': 4277, 'massis': 6955, 'poutingthatselfiethough': 8866, 'aishhh': 249, 'viewer': 12393, 'sighssss': 10284, 'burnt': 1609, 'toffee': 11768, 'honesty': 5086, 'slight': 10411, 'cheatday': 1910, 'protein': 9050, 'sissi': 10335, 'tote': 11847, 'slowly': 10426, 'church': 2019, 'pll': 8690, 'sel': 9978, 'serbia': 10031, 'serbian': 10032, 'selenators': 9987, 'motavators': 7380, 'kissmarkredheartkissmarkredheart': 6106, 'zayyyyyn': 13179, 'died': 2892, 'happend': 4781, 'rebelinme': 9307, 'imperative': 5362, 'cleaned': 2071, 'panas': 8277, 'quickest': 9166, 'sake': 9770, 'hamstring': 4759, 'injury': 5465, 'rodwell': 9635, 'likeme': 6448, 'tracing': 11871, 'powder': 8881, 'snaeun': 10604, 'wider': 12740, 'pains': 8248, 'omnibus': 8050, 'bruno': 1531, 'ed': 3260, 'croke': 2496, 'toll': 11778, 'shape': 10121, 'khooie': 6033, 'muchconfusion': 7445, 'unluckiest': 12189, 'bettor': 1135, 'nstp': 7896, 'sem': 10002, 'tan': 11352, 'chipotle': 1970, 'chickfila': 1950, 'stole': 10983, 'ramadhan': 9213, 'stexpert': 10966, 'ripstegi': 9576, 'nickyyyyyyyyyyyyyyyy': 7741, 'emotion': 3378, 'centralise': 1817, 'discontinued': 2957, 'disappointment': 2952, 'sniff': 10620, 'struggles': 11047, 'bother': 1392, 'nurannisaaa': 7914, 'atirahmatasri': 666, 'nfr': 7707, 'ainzuhraa': 234, 'therese': 11577, 'creds': 2473, 'sheenapadua': 10149, 'ttit': 11985, 'eliminated': 3334, 'poutingteamzipalsmtm': 8864, 'assingnment': 651, 'editied': 3267, 'nakaka': 7556, 'beastmode': 1002, 'gaaawd': 4221, 'robs': 9624, 'colombia': 2171, 'yots': 13096, 'labyo': 6213, 'prettyfaceblowingakissfaceblowingakiss': 8946, 'pano': 8288, 'nalamannn': 7560, 'bebeee': 1024, 'toogot': 11813, 'hardheaded': 4806, 'zachs': 13162, 'xpress': 12959, 'hopkins': 5110, 'melatonin': 7076, 'tasks': 11369, 'hahaah': 4697, 'frequently': 4104, 'jail': 5674, 'weirddd': 12635, 'bestfriends': 1122, 'donghyuk': 3061, 'beks': 1063, 'reynoldsgrl': 9536, 'shade': 10096, 'ole': 8024, 'beardy': 1000, 'saaaaaaad': 9736, 'kaussies': 5973, 'pixels': 8628, 'bummer': 1584, 'fightingmcirene': 3863, 'michaels': 7165, 'exercising': 3584, 'ignored': 5312, 'meheartsuitheartsuitheartsuitheartsuit': 7066, 'miserable': 7241, 'poutingsweatdropletsumbrellawithraindrops': 8863, 'sunwithfacewomandancingmediumskintonetropicaldrink': 11163, 'meangtfrown': 7025, 'snakeskeptical': 10607, 'shouldve': 10233, 'stalking': 10889, 'saffron': 9764, 'queens': 9155, 'nfinite': 7706, 'adminmyung': 130, 'slp': 10427, 'saddest': 9749, 'downyou': 3109, 'laomma': 6266, 'kebaya': 5985, 'bandung': 885, 'indonesialine': 5428, 'dfwhatsapp': 2865, 'laommacouture': 6267, 'beatrizhoran': 1010, 'haizzz': 4735, 'urghhh': 12248, 'workingonatightschedule': 12863, 'ganbarimasu': 4248, 'livid': 6520, 'whammy': 12678, 'meheartsuitheartsuitheartsuit': 7065, 'quuuuuuee': 9177, 'friooooo': 4139, 'meheartsuitheartsuit': 7064, 'meheartsuit': 7063, 'stereo': 10959, 'kicks': 6041, 'chwang': 2022, 'lorm': 6609, 'unhappy': 12167, 'nathansinclair': 7598, 'lolzz': 6572, 'dats': 2661, 'corey': 2360, 'bng': 1312, 'mahirap': 6811, 'accept': 57, 'foods': 4024, 'fried': 4126, 'noodles': 7824, 'lovepurpleheartpurpleheartpurpleheart': 6660, 'veeeeerry': 12328, 'orig': 8141, 'starholicxx': 10906, 'amconfusion': 371, 'notr': 7870, 'hwy': 5251, 'fraud': 4086, 'diplomacy': 2929, 'survival': 11210, 'fittest': 3925, 'zero': 13188, 'tolerant': 11776, 'performances': 8462, 'pier': 8573, 'approach': 547, 'rattle': 9252, 'robe': 9614, 'hack': 4690, 'emphasis': 3383, 'vocals': 12440, 'chose': 1997, 'broco': 1497, 'leemiller': 6352, 'abbycan': 26, 'persuade': 8481, 'lyrics': 6752, 'emilys': 3369, 'elected': 3322, 'shiiiit': 10172, 'kamiss': 5926, 'mwa': 7512, 'scream': 9918, 'beforeduring': 1042, 'cafe': 1656, 'melbourne': 7077, 'anyonneeee': 493, 'loner': 6581, 'fricken': 4111, 'rito': 9587, 'friendzone': 4134, 'panels': 8283, 'startim': 10915, 'everythingfrown': 3552, 'hsm': 5178, 'canarios': 1708, 'bothering': 1394, 'ukiss': 12104, 'kurt': 6189, 'fatmam': 3775, 'lmfao': 6535, 'honestlymore': 5085, 'poutingplease': 8852, 'flapjacks': 3937, 'countthecost': 2406, 'ihop': 5315, 'cyclists': 2579, 'infra': 5448, 'rolled': 9645, 'lq': 6682, 'sotired': 10748, 'mybrainneedstoshutoff': 7517, 'maccies': 6763, 'wtfi': 12925, 'againand': 183, 'silicon': 10297, 'kbye': 5981, 'ini': 5457, 'tuilagi': 11993, 'embarrassed': 3358, 'citizens': 2043, 'compared': 2216, 'ranking': 9230, 'mcountdown': 7017, 'hesitantfrown': 4968, 'thapelo': 11536, 'chocolates': 1977, 'peanuts': 8410, 'civ': 2046, 'crashed': 2454, 'wooden': 12839, 'mic': 7161, 'organization': 8138, 'translate': 11903, 'mechatotems': 7036, 'nak': 7555, 'tgk': 11507, 'townssssss': 11864, 'jokid': 5814, 'rent': 9432, 'fuckfrown': 4174, 'spacey': 10770, 'tinker': 11713, 'inconsiderate': 5403, 'softball': 10661, 'tomcat': 11786, 'chel': 1929, 'jemma': 5738, 'matchy': 6966, 'elsa': 3345, 'postpone': 8795, 'karin': 5949, 'vist': 12429, 'unhealthy': 12168, 'propa': 9036, 'knockin': 6141, 'owwww': 8224, 'sandwiches': 9814, 'preholiday': 8913, 'meanies': 7026, 'deathbybaconsmell': 2707, 'inital': 5459, 'location': 6547, 'destination': 2839, 'fxconfusion': 4215, 'victoriaamberlunaand': 12374, 'krystal': 6175, 'ajaaaa': 257, 'sarajevo': 9827, 'wearyfacewearyfacewearyfacewearyfaceloudlycryingface': 12597, 'haix': 4733, 'sp': 10767, 'wii': 12748, 'bayonetta': 962, 'transfers': 11901, 'doable': 3019, 'drove': 3161, 'trains': 11893, 'awfulconfusion': 746, 'agencies': 191, 'storymiss': 11008, 'everone': 3542, 'jps': 5848, 'mamabear': 6848, 'poutingimintoher': 8831, 'ughi': 12095, 'nowi': 7880, 'understands': 12146, 'underrated': 12142, 'slovakias': 10421, 'saklap': 9774, 'rizal': 9592, 'lib': 6413, 'lam': 6243, 'enthusiast': 3444, 'advisory': 151, 'period': 8467, 'dit': 2996, 'dus': 3211, 'harsh': 4819, 'ohgod': 7987, 'abligaverins': 34, 'sexygirlbypreciouslemmy': 10082, 'ripsandrabland': 9575, 'cri': 2483, 'catching': 1785, 'damnits': 2615, 'edel': 3261, 'salam': 9778, 'mubark': 7440, 'eidfeeling': 3302, 'badsad': 827, 'dong': 3060, 'tammirossm': 11348, 'speck': 10801, 'abbymill': 27, 'cigarella': 2029, 'ion': 5557, 'lock': 6549, 'hse': 5177, 'noob': 7823, 'pensiveface': 8441, 'fck': 3796, 'nae': 7536, 'naefrown': 7537, 'whit': 12711, 'vans': 12317, 'bristol': 1490, 'subserver': 11090, 'platon': 8656, 'tub': 11988, 'penyfan': 8445, 'breconbeacons': 1463, 'tittheir': 11734, 'hottie': 5147, 'fuzzy': 4213, 'antonio': 481, 'kang': 5928, 'junhee': 5891, 'pz': 9137, 'waitfrown': 12497, 'somersetlooking': 10688, 'sunburnt': 11145, 'safer': 9763, 'releasing': 9405, 'sim': 10301, 'kg': 6021, 'inputs': 5475, 'gamestomp': 4243, 'desc': 2819, 'sirplease': 10332, 'angelos': 429, 'yna': 13077, 'fiver': 3928, 'sakho': 9771, 'threat': 11639, 'goalscorer': 4436, 'nooooooo': 7831, 'sham': 10111, 'baao': 780, 'alrightfrown': 338, 'nisrina': 7776, 'bcs': 983, 'ladygaga': 6223, 'marrish': 6925, 'otps': 8166, 'yesssad': 13052, 'edomnt': 3274, 'qih': 9140, 'shxbs': 10261, 'stolen': 10984, 'chilton': 1964, 'wasted': 12554, 'creepy': 2476, 'boohoo': 1353, 'roar': 9608, 'lions': 6483, 'victory': 12376, 'tweepsmatchout': 12027, 'angelinahoran': 427, 'nein': 7657, 'communism': 2209, 'willlow': 12753, 'sowwy': 10766, 'grinds': 4581, 'gears': 4288, 'winning': 12777, 'mode': 7300, 'shotsfrown': 10227, 'madi': 6778, 'mochila': 7297, 'gtgtfrown': 4623, 'shanzay': 10120, 'salabraty': 9776, 'journo': 5839, 'lure': 6726, 'gang': 4252, 'twisting': 12046, 'mashaket': 6944, 'pets': 8499, 'bapak': 903, 'prima': 8962, 'hospitalconfusion': 5127, 'mune': 7475, 'plisss': 8689, 'poutingmy': 8842, 'sunway': 11161, 'petaling': 8489, 'jaya': 5713, 'selangorconfusion': 9980, 'glow': 4423, 'huhuu': 5208, 'margo': 6905, 'konga': 6163, 'topeh': 11826, 'wathrice': 12567, 'ode': 7959, 'etopeh': 3518, 'disvirginedlike': 2995, 'negotiate': 7652, 'yulin': 13143, 'meat': 7033, 'syawal': 11275, 'lapar': 6269, 'foundation': 4069, 'facil': 3685, 'dh': 2867, 'chalet': 1846, 'suay': 11076, 'anot': 463, 'buggers': 1567, 'chandauli': 1860, 'majhwar': 6823, 'titos': 11733, 'titas': 11729, 'critical': 2492, 'condition': 2245, 'steals': 10941, 'narcos': 7580, 'regens': 9370, 'unfaved': 12156, 'tofrom': 11769, 'benadryl': 1087, 'yg': 13063, 'sxrew': 11273, 'dissappeared': 2985, 'swapping': 11230, 'bleeding': 1265, 'placefrown': 8636, 'ishal': 5587, 'thaanks': 11514, 'jhezz': 5767, 'sneaks': 10618, 'defence': 2741, 'defensive': 2745, 'nrltigersroosters': 7891, 'indiana': 5412, 'hibbs': 4977, 'nh': 7715, 'biblethump': 1165, 'rlyyyy': 9599, 'septum': 10029, 'pierced': 8575, 'tonightfrown': 11805, 'venomous': 12339, 'carriage': 1761, 'furtrimmed': 4207, 'stetsons': 10962, 'error': 3485, 'xue': 12964, 'midori': 7176, 'disabled': 2944, 'sakit': 9773, 'disgusts': 2971, 'shityoure': 10195, 'mateo': 6968, 'luckygrowingheart': 6706, 'transferred': 11900, 'bartender': 926, 'poutingfeel': 8821, 'shockingwhy': 10203, 'livesometimes': 6517, 'despair': 2833, 'poutinghope': 8827, 'iwantin': 5644, 'fault': 3776, 'helpcouk': 4942, 'benedictervention': 1093, 'contents': 2309, 'popcorn': 8757, 'joycecalm': 5842, 'oooops': 8082, 'paalam': 8228, 'sair': 9769, 'sazballs': 9866, 'cuting': 2567, 'incident': 5394, 'aaaahh': 7, 'gooooo': 4493, 'stomachs': 10987, 'growling': 4604, 'shave': 10140, 'beard': 999, 'nooooope': 7835, 'faceblowingakisspartypopper': 3661, 'marta': 6930, 'hundred': 5223, 'meg': 7055, 'veritys': 12351, 'rupert': 9723, 'mancio': 6866, 'studying': 11061, 'pleaaase': 8671, 'backhandindexpointinguplightskintonebackhandindexpointinguplightskintone': 811, 'woaah': 12809, 'solvo': 10680, 'cryingdont': 2516, 'twin': 12041, 'crow': 2502, 'loveam': 6647, 'lego': 6365, 'barefooted': 912, 'twelvyy': 12037, 'boaz': 1320, 'myhill': 7519, 'takeover': 11319, 'wba': 12581, 'taeyeons': 11303, 'derp': 2817, 'pd': 8399, 'zoom': 13199, 'sunnys': 11156, 'besst': 1116, 'plague': 8638, 'pits': 8621, 'serwiee': 10049, 'sight': 10285, 'frail': 4082, 'twurkin': 12058, 'razzist': 9264, 'reports': 9455, 'tumblr': 11999, 'shek': 10157, 'plssssssssssssssss': 8699, 'taissa': 11313, 'farmiga': 3762, 'roberts': 9617, 'ahs': 223, 'software': 10662, 'restore': 9497, 'momo': 7325, 'pharma': 8511, 'sugaralmost': 11114, 'immovable': 5356, 'gots': 4506, 'messy': 7138, 'anshe': 467, 'hippie': 5020, 'sadfrown': 9750, 'billions': 1186, 'rands': 9224, 'phoi': 8527, 'bein': 1059, 'sadlolgo': 9753, 'tla': 11739, 'tweng': 12038, 'genes': 4308, 'upcome': 12213, 'county': 2407, 'dmhelperr': 3015, 'cooler': 2347, 'minhyuks': 7219, 'sleepyfacesleepyfacesleepyface': 10404, 'nas': 7587, 'hz': 5264, 'wolle': 12818, 'emta': 3391, 'hatigii': 4840, 'baa': 778, 'anesthesia': 421, 'penrithemu': 8438, 'plains': 8639, 'missconfusion': 7245, 'knowvery': 6148, 'tiffanyhwang': 11691, 'slotted': 10419, 'untouched': 12209, 'brienne': 1475, 'lsh': 6687, 'gunna': 4656, 'former': 4054, 'darn': 2648, 'pakistans': 8262, 'juudiciary': 5904, 'hortons': 5125, 'dunkin': 3200, 'socialising': 10645, 'cara': 1729, 'delevingnes': 2766, 'laced': 6215, 'fank': 3745, 'takfaham': 11322, 'melissa': 7080, 'ufffff': 12090, 'sr': 10865, 'dard': 2638, 'katekyn': 5962, 'ehh': 3298, 'amiir': 381, 'mylife': 7520, 'hacharatt': 4689, 'niwll': 7779, 'poorfrown': 8752, 'define': 2747, 'witnessed': 12795, 'goa': 4433, 'orrhettofrappe': 8148, 'linis': 6476, 'kasi': 5956, 'sweating': 11238, 'brothers': 1515, 'pissed': 8614, 'rhd': 9537, 'physical': 8549, 'wae': 12480, 'subsidized': 11091, 'lunches': 6722, 'youngjae': 13107, 'breakups': 1459, 'harumph': 4820, 'soggy': 10663, 'weeding': 12616, 'experiencing': 3607, 'errors': 3486, 'minutesfrown': 7235, 'teas': 11434, 'sakura': 9775, 'flavour': 3946, 'chokkie': 1985, 'wearyfaceloudlycryingfaceteacupwithouthandlecherryblossom': 12595, 'siman': 10302, 'unavailable': 12133, 'richard': 9546, 'satya': 9842, 'aditya': 128, 'steamingbowlsteamingbowlsteamingbowlsteamingbowlsteamingbowl': 10944, 'vibrating': 12368, 'cus': 2553, 'parker': 8312, 'dhaka': 2869, 'poutingguess': 8825, 'jam': 5681, 'cheering': 1921, 'cornettos': 2366, 'nosebleed': 7850, 'nintendo': 7771, 'wew': 12665, 'ramos': 9216, 'ground': 4593, 'shawn': 10142, 'mendes': 7097, 'xconfusion': 12942, 'dinghy': 2924, 'skye': 10380, 'namedescription': 7565, 'gagal': 4223, 'txt': 12060, 'sims': 10309, 'noooot': 7838, 'notch': 7854, 'thts': 11661, 'starving': 10921, 'pyjamas': 9136, 'envy': 3459, 'suks': 11130, 'swifties': 11257, 'sorna': 10733, 'db': 2684, 'lurgy': 6727, 'kits': 6114, 'scaring': 9877, 'fenestoscope': 3831, 'etienne': 3516, 'bandana': 881, 'dressfrown': 3139, 'valeria': 12304, 'iyer': 5647, 'suriya': 11199, 'dangling': 2630, 'mjhe': 7275, 'aaj': 12, 'kisi': 6101, 'eyesight': 3645, 'everyonegood': 3547, 'aftenoon': 170, 'booooore': 1367, 'uuu': 12285, 'boyfriend': 1412, 'concerts': 2242, 'garage': 4260, 'denim': 2793, 'ce': 1803, 'gws': 4674, 'greys': 4574, 'anatomy': 406, 'morisettes': 7362, 'nontrial': 7821, 'sayhername': 9863, 'lootcrate': 6602, 'inca': 5389, 'trail': 11886, 'sandboarding': 9807, 'cancels': 1713, 'derby': 2815, 'mugs': 7458, 'unable': 12125, 'lavigne': 6307, 'signature': 10289, 'dishes': 2973, 'unfamiliar': 12155, 'mediadesk': 7040, 'coldest': 2150, 'thirdwheeling': 11602, 'lovebirds': 6648, 'imo': 5358, 'babytalk': 795, 'isfamiliar': 5585, 'ahhhhh': 216, 'stages': 10884, 'realising': 9289, 'copies': 2354, 'sensiesha': 10016, 'eldest': 3321, 'worriedface': 12879, 'keedz': 5987, 'pleaseif': 8681, 'thoits': 11620, 'taybigail': 11391, 'jordans': 5828, 'tournaments': 11857, 'kinks': 6094, 'chargers': 1887, 'streak': 11016, 'scorch': 9904, 'srsky': 10869, 'tdc': 11406, 'insensitivenessridiculousfrown': 5481, 'cooperating': 2351, 'conversion': 2333, 'thurston': 11672, 'collins': 2168, 'quietly': 9169, 'kennel': 6001, 'rnfrown': 9604, 'pluckerssss': 8700, 'gion': 4380, 'kidschoiceawards': 6049, 'recorded': 9334, 'ming': 7215, 'pbr': 8391, 'periscope': 8468, 'uts': 12282, 'shawty': 10143, 'naw': 7609, 'sterlings': 10960, 'muses': 7482, 'hrryok': 5173, 'wnt': 12807, 'bueno': 1559, 'receptionist': 9319, 'minsyou': 7229, 'ella': 3338, 'ketchup': 6010, 'tasteless': 11371, 'deantd': 2702, 'justgotkanekified': 5898, 'notgonnabeactiveforweeksdontmissittoomuch': 7859, 'vlog': 12435, 'chills': 1963, 'turtles': 12017, 'cnn': 2119, 'strapline': 11013, 'theatres': 11546, 'guncontrol': 4653, 'lafayette': 6226, 'stung': 11065, 'poutinga': 8812, 'powerpoint': 8884, 'expectations': 3597, 'diner': 2922, 'nono': 7818, 'hinde': 5013, 'jc': 5722, 'circuit': 2039, 'secondary': 9951, 'joins': 5808, 'sodders': 10655, 'mobitel': 7294, 'playstation': 8670, 'charged': 1885, 'exp': 3594, 'misspelt': 7252, 'hyungwon': 5263, 'alarms': 277, 'cancelling': 1712, 'needicecreamnow': 7643, 'shakes': 10107, 'repeatedly': 9443, 'nuuh': 7919, 'jace': 5657, 'mostest': 7377, 'ar': 560, 'supercard': 11168, 'ridacongratulation': 9552, 'vips': 12414, 'babefrown': 785, 'sadbad': 9748, 'urgh': 12247, 'grigsons': 4575, 'carrot': 1764, 'ughh': 12094, 'enable': 3396, 'otter': 8167, 'protection': 9049, 'argh': 576, 'pon': 8740, 'otl': 8164, 'sleepovers': 10400, 'jesse': 5754, 'fabina': 3655, 'meantfacewithtearsofjoyfacewithtearsofjoy': 7031, 'gardening': 4263, 'barristas': 924, 'pup': 9104, 'drivers': 3152, 'brolly': 1505, 'buckner': 1549, 'dey': 2863, 'serve': 10041, 'bitin': 1230, 'pretzels': 8948, 'bblf': 967, 'vanilla': 12315, 'latte': 6296, 'poa': 8713, 'rog': 9637, 'skulker': 10377, 'threatongue': 11643, 'pgq': 8505, 'hungrrrryyy': 5228, 'icloud': 5279, 'ipod': 5564, 'hallyu': 4751, 'mac': 6759, 'buuuut': 1632, 'ber': 1104, 'okie': 8008, 'harlo': 4809, 'torrentialrain': 11838, 'aconfusion': 85, 'lloyds': 6529, 'knowwww': 6149, 'runny': 9720, 'sweater': 11237, 'ford': 4035, 'rightand': 9561, 'intolerant': 5539, 'xenophobes': 12946, 'wtfff': 12924, 'newer': 7690, 'pish': 8611, 'comparison': 2218, 'remastered': 9415, 'fe': 3799, 'icons': 5281, 'barker': 917, 'appear': 530, 'cornetto': 2364, 'strawberry': 11015, 'cornettoconfusion': 2365, 'nowwhen': 7886, 'kapatidkongpogi': 5935, 'mel': 7074, 'longest': 6588, 'carmen': 1754, 'login': 6558, 'wingstop': 12772, 'loool': 6596, 'budge': 1555, 'fuq': 4202, 'ilhoon': 5326, 'getthescoop': 4334, 'hearess': 4889, 'txtshot': 12061, 'unfollowing': 12161, 'standby': 10895, 'inatall': 5386, 'zenmate': 13186, 'carefulnamechecking': 1745, 'whistle': 12710, 'junmyeon': 5894, 'dddy': 2691, 'ketepi': 6011, 'arini': 585, 'je': 5726, 'igbo': 5307, 'blamehoney': 1254, 'whhr': 12703, 'trilla': 11940, 'samhernandez': 9796, 'snuggle': 10633, 'usage': 12259, 'warning': 12544, 'animator': 441, 'poutingcrying': 8819, 'vertigo': 12356, 'panic': 8286, 'attacks': 679, 'dual': 3173, 'carriageway': 1762, 'poutingaragalang': 8813, 'tams': 11351, 'boses': 1386, 'theo': 11564, 'anymoreeeeee': 489, 'cactus': 1652, 'sorrry': 10735, 'bowel': 1404, 'disease': 2966, 'tumour': 12002, 'waited': 12495, 'puffy': 9085, 'eyelids': 3642, 'musicas': 7488, 'campsites': 1701, 'sooooo': 10718, 'miah': 7158, 'hahays': 4716, 'churro': 2020, 'montana': 7338, 'chantay': 1871, 'okayx': 8002, 'reign': 9383, 'example': 3566, 'inflation': 5437, 'sic': 10270, 'reset': 9475, 'entlerbountly': 3448, 'dirtykik': 2941, 'sexcam': 10071, 'swollen': 11268, 'nams': 7570, 'kafi': 5909, 'mene': 7098, 'koi': 6158, 'rewert': 9533, 'bunta': 1595, 'warnaaaaaaafrown': 12543, 'torture': 11839, 'jumped': 5885, 'iran': 5567, 'irandeal': 5568, 'usiran': 12273, 'nuclear': 7899, 'mits': 7265, 'experts': 3610, 'severely': 10068, 'li': 6406, 'rumpy': 9715, 'gallon': 4232, 'responsibilities': 9491, 'dandia': 2626, 'caged': 1659, 'parrot': 8315, 'ly': 6740, 'election': 3323, 'commission': 2201, 'cag': 1657, 'striped': 11032, 'ilymelanie': 5337, 'todd': 11763, 'milli': 7196, 'unlike': 12184, 'talent': 11329, 'deepxcape': 2739, 'doin': 3040, 'thesis': 11582, 'redheartredheartredheart': 9354, 'laughed': 6298, 'hugged': 5194, 'poutingu': 8867, 'refresh': 9362, 'nowas': 7876, 'lurryface': 6728, 'gtg': 4621, 'compete': 2220, 'vv': 12468, 'nys': 7932, 'optouted': 8115, 'vam': 12309, 'speced': 10794, 'ells': 3342, 'sexyamelie': 10081, 'float': 3967, 'fineandyu': 3895, 'nonot': 7819, 'daftbut': 2597, 'imsorry': 5376, 'koe': 6155, 'emyu': 3394, 'confetti': 2249, 'sams': 9802, 'byfrown': 1644, 'poutingsini': 8860, 'dipoppofaceblowingakissfaceblowingakissfaceblowingakissfaceblowingakiss': 2930, 'hop': 5098, 'bestweekend': 1126, 'okayish': 8001, 'html': 5183, 'imjinah': 5350, 'geneva': 4310, 'getupandtry': 4337, 'patml': 8360, 'abouty': 36, 'reaally': 9269, 'meter': 7141, 'displays': 2983, 'unanswered': 12131, 'bri': 1466, 'magcon': 6792, 'merch': 7115, 'rightthe': 9564, 'sinuend': 10325, 'laper': 6270, 'rage': 9190, 'divined': 3001, 'brendon': 1464, 'uries': 12249, 'sumer': 11136, 'repackage': 9435, 'yongbe': 13087, 'suede': 11108, 'spending': 10811, 'belly': 1077, 'jannatul': 5691, 'ferdous': 3835, 'ami': 378, 'ekta': 3314, 'kharap': 6029, 'manush': 6889, 'mart': 6929, 'gua': 4631, 'cans': 1720, 'khloes': 6032, 'nhe': 7716, 'yar': 12996, 'minkyuk': 7225, 'hols': 5066, 'isolated': 5600, 'sensor': 10017, 'broker': 1504, 'wna': 12805, 'flaviana': 3944, 'chickmt': 1951, 'letsfootball': 6393, 'atk': 667, 'greymind': 4573, 'gayle': 4281, 'mooddump': 7351, 'livestream': 6518, 'sneaking': 10617, 'felton': 3827, 'verity': 12350, 'standens': 10896, 'sponge': 10837, 'smilingfacewithopenmouthclosedeyessmilingfacewithopenmouthclosedeyes': 10579, 'takoyaki': 11325, 'aisyah': 250, 'ffvi': 3851, 'youtubegpctsojkw': 13123, 'donutsss': 3073, 'pizzas': 8631, 'grated': 4543, 'sparse': 10788, 'lagifrown': 6230, 'hoodafc': 5095, 'yescant': 13048, 'riderfrown': 9555, 'hueeeee': 5189, 'passwordrecall': 8343, 'thingy': 11596, 'george': 4321, 'chewing': 1945, 'stella': 10951, 'yelled': 13033, 'theaccidentalcouple': 11544, 'smooth': 10597, 'handover': 4769, 'spick': 10814, 'offense': 7966, 'bebii': 1025, 'happenend': 4783, 'dr': 3112, 'poutingwhat': 8874, 'balms': 868, 'hmph': 5041, 'bubba': 1542, 'cuddles': 2528, 'cuddling': 2529, 'floor': 3971, 'oi': 7994, 'bengalis': 1096, 'masterchef': 6959, 'whatchya': 12680, 'petrol': 8498, 'diesel': 2898, 'cock': 2128, 'drown': 3162, 'nyquil': 7931, 'poooootek': 8748, 'leaking': 6333, 'thermos': 11579, 'casting': 1779, 'smilingfacewithsmilingeyessmilingfacewithsmilingeyessmilingfacewithsmilingeyesredheart': 10584, 'skate': 10359, 'twoheartstwoheartstwoheartstwohearts': 12054, 'tae': 11300, 'kita': 6109, 'crys': 2521, 'ia': 5265, 'nation': 7599, 'corrupted': 2373, 'anythingsurely': 496, 'october': 7956, 'ene': 3412, 'zehr': 13183, 'khany': 6028, 'grocery': 4589, 'hubba': 5187, 'bubble': 1543, 'gum': 4650, 'closet': 2110, 'jhalak': 5764, 'bakwas': 854, 'seehiah': 9964, 'omggg': 8046, 'goys': 4512, 'nachos': 7533, 'braid': 1425, 'braids': 1426, 'boongfrown': 1365, 'recommendations': 9331, 'cwnt': 2573, 'trivia': 11949, 'crack': 2440, 'bdays': 988, 'ownconfusion': 8219, 'rohingya': 9641, 'muslims': 7493, 'indicted': 5415, 'trafficking': 11883, 'charges': 1888, 'thailand': 11516, 'savetherohingya': 9855, 'sabaa': 9741, 'rumble': 9713, 'kumble': 6185, 'scold': 9900, 'cleaning': 2072, 'phrased': 8547, 'include': 5396, 'themi': 11558, 'melting': 7085, 'tfw': 11502, 'jestconfusion': 5756, 'relaxes': 9398, 'offended': 7964, 'sleepingwithsirens': 10398, 'bringmethehorizon': 1487, 'dzul': 3227, 'carva': 1770, 'louisiana': 6638, 'regularly': 9377, 'sympathis': 11278, 'expected': 3598, 'revamps': 9521, 'mosquito': 7375, 'headphones': 4877, 'poutingnow': 8846, 'wacha': 12476, 'niende': 7745, 'kk': 6122, 'calibraksaep': 1670, 'darlin': 2646, 'grounded': 4594, 'doednt': 3029, 'meaningful': 7027, 'horrific': 5119, 'royally': 9687, 'sweedy': 11243, 'maui': 6983, 'pooo': 8745, 'nobodies': 7794, 'sacconejolys': 9744, 'bethesda': 1131, 'likee': 6442, 'kateee': 5961, 'iloveyouu': 5335, 'riixc': 9567, 'linux': 6481, 'meital': 7072, 'nawwwe': 7613, 'chikka': 1954, 'ug': 12091, 'rata': 9247, 'soonest': 10714, 'mwamwa': 7514, 'juarez': 5857, 'faggot': 3695, 'opener': 8089, 'bitsenpai': 1232, 'nicest': 7733, 'mehendi': 7067, 'dash': 2652, 'bookmark': 1357, 'whay': 12690, 'shaa': 10092, 'pramis': 8896, 'kissingfacewithclosedeyes': 6105, 'ngee': 7710, 'crikey': 2487, 'snit': 10622, 'nathanielhinanakit': 7596, 'naya': 7615, 'spinny': 10823, 'loading': 6541, 'wheel': 12693, 'poutingi': 8830, 'notifs': 7868, 'poutingin': 8832, 'dammitstop': 2611, 'guyslol': 4667, 'albeit': 280, 'disappointing': 2951, 'athlete': 665, 'stripes': 11033, 'gfriend': 4340, 'fugly': 4181, 'smilingfacewithsmilingeyesrevolvinghearts': 10583, 'jongdaei': 5823, 'tlists': 11741, 'budget': 1556, 'pabebegirls': 8230, 'pabebe': 8229, 'altered': 340, 'sandra': 9809, 'storify': 11003, 'londonfrown': 6576, 'mtvhottest': 7433, 'gaga': 4222, 'cage': 1658, 'cryingfacedizzyfaceloudlycryingface': 2518, 'hulkamania': 5210, 'unloved': 12188, 'ihhh': 5314, 'stackare': 10879, 'brownxox': 1520, 'remedy': 9417, 'ov': 8196, 'raiz': 9204, 'nvr': 7923, 'gv': 4670, 'upwt': 12242, 'nowwt': 7887, 'achievedin': 79, 'thr': 11638, 'soln': 10672, 'whaaaaaaaaaat': 12671, 'pipes': 8603, 'airwolf': 248, 'lawn': 6311, 'pierce': 8574, 'cupids': 2542, 'torn': 11836, 'retainers': 9505, 'haiss': 4732, 'todayy': 11760, 'thoo': 11622, 'trainsec': 11894, 'sprees': 10854, 'everday': 3539, 'poutingit': 8834, 'william': 12751, 'umboh': 12118, 'addicts': 115, 'jadines': 5668, 'thiz': 11613, 'iz': 5648, 'emeged': 3364, 'kennat': 6000, 'sav': 9848, 'reunite': 9517, 'abi': 30, 'arctic': 569, 'chicsirific': 1953, 'struggle': 11046, 'structured': 11044, 'mootongue': 7359, 'cumbia': 2534, 'poutingwearyface': 8872, 'badlife': 824, 'nameisdan': 7567, 'kaslkdja': 5957, 'wks': 12802, 'feverfew': 3846, 'weddingflowers': 12611, 'diyflowers': 3003, 'insyaf': 5512, 'fitnes': 3922, 'wolverine': 12820, 'innocent': 5471, 'foldedhandslightskintonebirthdaycake': 3997, 'buyorder': 1638, 'mememe': 7090, 'krystoria': 6176, 'snob': 10623, 'poutingsakit': 8858, 'zumba': 13203, 'greekcrisis': 4560, 'greeks': 4561, 'leavework': 6343, 'remained': 9413, 'artistic': 609, 'dutch': 3213, 'legible': 6363, 'israeli': 5605, 'passport': 8341, 'froze': 4153, 'bananas': 876, 'theories': 11567, 'stomachache': 10986, 'agains': 187, 'otani': 8160, 'niaaaaaaaaaaaaaaaaaaaaaaaaaaapls': 7722, 'revolvinghearts': 9526, 'schemes': 9889, 'fckin': 3797, 'avoiding': 724, 'vin': 12401, 'plss': 8696, 'rply': 9689, 'rat': 9246, 'backup': 816, 'lunes': 6723, 'martes': 6931, 'robinhood': 9619, 'robinhoodies': 9620, 'sportutilityvehiclegreenheart': 10843, 'docopenhagen': 3023, 'setter': 10057, 'swiping': 11263, 'bbygurl': 978, 'shouyno': 10240, 'caribbean': 1748, 'takraw': 11326, 'niggacarlos': 7748, 'fersuree': 3839, 'angie': 433, 'plsss': 8697, 'sheriff': 10164, 'aaaaaaaaaaa': 1, 'aaaaages': 5, 'sulk': 11131, 'nonce': 7813, 'pad': 8237, 'bison': 1219, 'qdon': 9139, 'stabbed': 10876, 'cheated': 1911, 'poutingunknown': 8869, 'stomping': 10988, 'aaaaaaaaaaaah': 3, 'kanye': 5933, 'jdjdjdjd': 5724, 'jimins': 5775, 'fancafe': 3737, 'wtvd': 12927, 'waffle': 12481, 'himseek': 5010, 'glo': 4418, 'poutingpls': 8853, 'cory': 2375, 'monteith': 7340, 'louth': 6644, 'hashbrownsfacewithtearsofjoysmilingfacewithsmilingeyesheartwitharrowheartwitharrow': 4824, 'pgs': 8506, 'msc': 7417, 'hierro': 4984, 'shirleycam': 10185, 'pal': 8263, 'gilet': 4370, 'cheeks': 1918, 'squishy': 10864, 'lahhh': 6236, 'eon': 3460, 'sunrise': 11157, 'beety': 1040, 'getaway': 4332, 'committing': 2204, 'criminal': 2489, 'amiibo': 380, 'habe': 4686, 'siannn': 10267, 'chuckin': 2016, 'ampsha': 392, 'nia': 7721, 'seniors': 10013, 'replacement': 9445, 'strap': 11012, 'dz': 3226, 'entlead': 3447, 'ifsc': 5304, 'mayor': 6996, 'biodiversity': 1195, 'taxonomic': 11389, 'infrastructure': 5450, 'collaboration': 2154, 'species': 10799, 'suppl': 11179, 'pdf': 8400, 'collar': 2158, 'belting': 1082, 'smith': 10591, 'rides': 9557, 'eyeliner': 3643, 'therefore': 11572, 'netherlands': 7676, 'disgusted': 2969, 'el': 3315, 'jeb': 5730, 'blacklivesmatter': 1246, 'slogan': 10415, 'msnbc': 7423, 'cnnjebbush': 2120, 'famished': 3730, 'marino': 6911, 'qualified': 9145, 'suzy': 11225, 'qualify': 9146, 'skirt': 10374, 'tama': 11341, 'warrior': 12546, 'wounded': 12895, 'reported': 9454, 'iraq': 5569, 'camara': 1688, 'coveralls': 2425, 'inspy': 5495, 'sneezy': 10619, 'rogerwatch': 9639, 'stalkerfrown': 10888, 'velvet': 12337, 'plsssssss': 8698, 'traditions': 11879, 'beheaviour': 1055, 'loveredheart': 6662, 'aaron': 17, 'banged': 889, 'jelouse': 5737, 'mtg': 7429, 'thoughtseized': 11635, 'rounds': 9678, 'playables': 8660, 'oldies': 8020, 'goodies': 4471, 'mcg': 7012, 'inspirit': 5493, 'ised': 5584, 'assume': 655, 'waisted': 12493, 'jeansfrown': 5729, 'guinness': 4645, 'poutingthank': 8865, 'pepper': 8451, 'thessidew': 11583, 'genesis': 4309, 'november': 7874, 'mashed': 6945, 'whattsap': 12689, 'inuyasha': 5544, 'outfwith': 8183, 'myungsoo': 7527, 'yeol': 13039, 'victoria': 12373, 'satisfied': 9838, 'challo': 1849, 'pliss': 8688, 'juliana': 5874, 'enroll': 3434, 'vibares': 12365, 'darlene': 2645, 'emoji': 3375, 'brisbane': 1489, 'merlin': 7123, 'nawwwee': 7614, 'hyperbullies': 5258, 'tong': 11800, 'nga': 7709, 'seatmates': 9946, 'rajud': 9207, 'ores': 8132, 'kaylas': 5976, 'ericavan': 3479, 'jong': 5822, 'dongwoo': 3063, 'photocards': 8534, 'wh': 12670, 'dw': 3218, 'tumor': 12001, 'si': 10263, 'vivian': 12433, 'mmsmalubhangsakit': 7283, 'beive': 1062, 'jillcruz': 5771, 'qt': 9141, 'tossing': 11844, 'pushes': 9120, 'unsettled': 12203, 'showers': 10246, 'gh': 4345, 'rllyfrown': 9596, 'hamsters': 4758, 'sheeran': 10153, 'preform': 8909, 'monash': 7328, 'whatp': 12684, 'hitmarker': 5030, 'glitch': 4417, 'safaa': 9760, 'selenas': 9986, 'fansfrown': 3747, 'galat': 4230, 'tum': 11998, 'ab': 21, 'respected': 9482, 'lrka': 6683, 'bna': 1310, 'bhook': 1157, 'push': 9118, 'tonightive': 11806, 'excuses': 3579, 'gerry': 4328, 'afterschool': 175, 'bilal': 1179, 'ashraf': 621, 'icu': 5282, 'ruksar': 9710, 'thankssss': 11528, 'annnd': 451, 'winchester': 12761, 'porter': 8775, 'grepe': 4567, 'grepein': 4568, 'panem': 8284, 'jazdorothy': 5718, 'sulli': 11132, 'toowell': 11822, 'darren': 2649, 'cpm': 2436, 'condemned': 2244, 'political': 8735, 'heavycheckmark': 4915, 'occurred': 7950, 'mentality': 7104, 'unagi': 12126, 'elw': 3351, 'mesh': 7125, 'beytaad': 1140, 'fluent': 3979, 'varsity': 12321, 'sengenza': 10010, 'typos': 12075, 'movnat': 7408, 'yields': 13066, 'nbheroes': 7618, 'workfrown': 12857, 'agover': 203, 'brasileirao': 1442, 'abusive': 49, 'hashmi': 4825, 'unfollower': 12159, 'unparents': 12197, 'bianca': 1160, 'bun': 1587, 'dislike': 2976, 'burdensome': 1597, 'amelia': 372, 'melon': 7083, 'soccer': 10642, 'nevermind': 7683, 'jeon': 5747, 'thigh': 11591, 'traction': 11875, 'zoomed': 13200, 'damnit': 2614, 'prypv': 9061, 'relive': 9411, 'nycpv': 7929, 'communicate': 2208, 'klm': 6128, 'mcds': 7008, 'hung': 5225, 'seventh': 10065, 'otwolgrandtrailer': 8170, 'splendour': 10828, 'swedish': 11242, 'metal': 7140, 'legends': 6361, 'hirfrce': 5023, 'givecodpieceachance': 4397, 'stiles': 10974, 'prague': 8895, 'sadis': 9751, 'hayeee': 4856, 'patwari': 8368, 'iks': 5325, 'vision': 12423, 'awhhh': 749, 'nalang': 7561, 'opens': 8092, 'albanian': 278, 'cursed': 2548, 'tavas': 11383, 'chara': 1879, 'teteh': 11494, 'verry': 12352, 'colleagues': 2161, 'sb': 9867, 'nawee': 7611, 'macho': 6768, 'purity': 9111, 'kwento': 6195, 'whaaaaaaat': 12672, 'noooooooo': 7832, 'nakakapikon': 7557, 'nagbabasa': 7540, 'damned': 2613, 'answered': 469, 'leading': 6329, 'cancer': 1714, 'jonathas': 5820, 'betis': 1132, 'greatings': 4556, 'shits': 10192, 'psv': 9064, 'sogok': 10664, 'premium': 8917, 'instrument': 5508, 'dastardly': 2654, 'swine': 11262, 'envelope': 3456, 'pipol': 8604, 'wiper': 12781, 'kernels': 6008, 'facking': 3687, 'intelconfusion': 5514, 'bent': 1099, 'pins': 8600, 'pcgaming': 8395, 'pcupgrade': 8397, 'alreadyfrown': 336, 'brainwashed': 1432, 'smoshthe': 10598, 'plawnew': 8658, 'litter': 6506, 'mensch': 7102, 'sepanx': 10023, 'battle': 955, 'pcy': 8398, 'caerphilly': 1653, 'omwsmilingfacewithhearteyes': 8051, 'hahdhdhshhs': 4717, 'growinguppoor': 4603, 'loudlycryingfacei': 6630, 'bangtans': 892, 'jakub': 5677, 'mahmood': 6813, 'taimoor': 11312, 'meray': 7113, 'dost': 3090, 'tyas': 12063, 'offender': 7965, 'pissbaby': 8613, 'planks': 8645, 'inconsistent': 5404, 'booksanother': 1360, 'bin': 1189, 'osxchromevoiceover': 8158, 'devo': 2859, 'hulkhogan': 5211, 'unpleasantness': 12198, 'daaaaaamn': 2585, 'dadas': 2591, 'unniefrown': 12196, 'spike': 10816, 'panics': 8287, 'cov': 2422, 'launching': 6304, 'lizardz': 6525, 'emergency': 3366, 'dormtel': 3084, 'scho': 9891, 'siya': 10350, 'oneee': 8058, 'watson': 12568, 'feta': 3844, 'blaaaaze': 1241, 'nausea': 7605, 'aware': 736, 'topup': 11833, 'sharknado': 10131, 'ernie': 3483, 'ezoo': 3650, 'lilybutle': 6459, 'seduce': 9960, 'preforming': 8910, 'powai': 8880, 'neighbor': 7654, 'lielama': 6423, 'belieb': 1068, 'stocking': 10980, 'unsafe': 12202, 'evicted': 3557, 'halo': 4752, 'fred': 4092, 'gaon': 4258, 'infnt': 5442, 'eligible': 3333, 'acube': 104, 'bullshitfrown': 1579, 'drops': 3159, 'hanaaaa': 4761, 'jn': 5789, 'basta': 941, 'headachewoke': 4871, 'sexting': 10078, 'relation': 9392, 'dhisbackhandindexpointingright': 2874, 'fakmarey': 3712, 'doo': 3074, 'flags': 3935, 'ardi': 571, 'fulltime': 4189, 'frustrating': 4160, 'barcelonaconfusion': 909, 'beet': 1039, 'juice': 5867, 'dci': 2688, 'granddad': 4530, 'minion': 7221, 'bucket': 1546, 'war': 12534, 'kapan': 5934, 'poutingoh': 8848, 'udah': 12088, 'dihapus': 2915, 'hilang': 5000, 'dari': 2641, 'muka': 7462, 'bumii': 1582, 'fifty': 3860, 'gona': 4461, 'chellos': 1930, 'gates': 4272, 'guards': 4632, 'crepes': 2478, 'forsaken': 4057, 'kanin': 5930, 'hypixel': 5260, 'grrrr': 4606, 'thestruggleisreal': 11584, 'geek': 4291, 'gamers': 4241, 'afterbirth': 172, 'apinks': 516, 'overperhatianfrown': 8207, 'pox': 8887, 'predicted': 8905, 'ahmive': 220, 'londonnor': 6578, 'chancecash': 1858, 'wit': 12790, 'karlie': 5951, 'kloss': 6129, 'goofy': 4485, 'pcd': 8394, 'antagonised': 476, 'writer': 12909, 'nudges': 7902, 'skeleton': 10362, 'delved': 2783, 'horrendous': 5114, 'digits': 2914, 'marbles': 6901, 'grandad': 4529, 'grays': 4549, 'followk': 4013, 'pace': 8231, 'molly': 7314, 'higher': 4986, 'ceremony': 1828, 'partyin': 8330, 'layouts': 6318, 'christine': 2005, 'moody': 7354, 'throwbacks': 11654, 'barbs': 907, 'cooper': 2350, 'convinced': 2336, 'creasy': 2466, 'deputy': 2814, 'saludos': 9787, 'dissapointed': 2984, 'bbloggers': 968, 'tiredface': 11722, 'baes': 834, 'lasting': 6283, 'pimples': 8589, 'hais': 4731, 'pamela': 8270, 'goodanna': 4467, 'woes': 12814, 'solom': 10675, 'mini': 7220, 'mast': 6957, 'intermittent': 5529, 'janniecam': 5692, 'braxton': 1448, 'urban': 12244, 'unprecedented': 12199, 'brainwashing': 1433, 'tebow': 11439, 'smithconfusion': 10592, 'okaaay': 7999, 'sayanggggggggg': 9860, 'housework': 5157, 'bust': 1619, 'disneyland': 2980, 'thomas': 11621, 'tommyy': 11793, 'kisaragi': 6100, 'kevin': 6014, 'strictly': 11027, 'whyyyyy': 12733, 'nsc': 7893, 'mat': 6963, 'awhh': 748, 'rammed': 9215, 'vouchers': 12457, 'smadvow': 10432, 'acdcmissed': 72, 'jobe': 5792, 'akere': 263, 'gmail': 4429, 'hugots': 5197, 'sprevelink': 10855, 'lana': 6249, 'loveyoutilltheendcarter': 6673, 'sfvcapcom': 10090, 'winners': 12776, 'yesterdayjust': 13056, 'poutinghopefully': 8828, 'tito': 11732, 'rosie': 9669, 'hayoung': 4859, 'nlb': 7787, 'comforting': 2192, 'wattie': 12569, 'katies': 5968, 'forth': 4058, 'meningitis': 7101, 'viral': 12415, 'tonsillitis': 11810, 'ange': 423, 'facewithstuckouttongueclosedeyes': 3672, 'babyy': 796, 'kidston': 6050, 'cryingcatfacebeatingheartbeatinghearttwoheartskissingfacewithclosedeyeskissingfacewithclosedeyeskissingfacewithclosedeyeskissingfacewithclosedeyeskissingfacewithclosedeyesredheartredheartredheartredheartredheart': 2515, 'weigh': 12630, 'risks': 9584, 'premiums': 8918, 'keen': 5988, 'petrofac': 8497, 'wig': 12746, 'thisgt': 11608, 'pathetic': 8353, 'burdensays': 1596, 'respects': 9485, 'tolerates': 11777, 'itchy': 5614, 'cheaper': 1907, 'malaysia': 6836, 'nooooo': 7829, 'snapchattimg': 10611, 'funsmirkingfacesmirkingface': 4201, 'sin': 10310, 'dedicating': 2732, 'worriedly': 12880, 'stared': 10904, 'toneady': 11799, 'snapdirty': 10612, 'corpses': 2370, 'taeny': 11302, 'fyeah': 4217, 'andromeda': 417, 'yunnie': 13155, 'developers': 2854, 'writings': 12912, 'whdjwksja': 12691, 'ziam': 13189, 'fucks': 4178, 'upi': 12225, 'hawke': 4854, 'spoil': 10833, 'curtain': 2549, 'watchable': 12558, 'migrines': 7181, 'ltltltltltltltltltlt': 6693, 'gdcegamescom': 4286, 'loudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingfaceloudlycryingface': 6634, 'dot': 3093, 'tracking': 11873, 'num': 7908, 'lmfaooooo': 6537, 'oooooouch': 8081, 'pinky': 8599, 'footprints': 4031, 'podiatrists': 8718, 'opened': 8088, 'gusto': 4662, 'rodics': 9634, 'adoohh': 133, 'bbutt': 976, 'poutingget': 8823, 'tigermilk': 11693, 'huard': 5185, 'east': 3248, 'dulwich': 3192, 'intense': 5519, 'kagami': 5910, 'kuroko': 6188, 'sana': 9805, 'makita': 6834, 'spooky': 10840, 'smol': 10596, 'bean': 996, 'fagans': 3694, 'meadowhall': 7020, 'actuallyconfusion': 101, 'lola': 6562, 'nadalaw': 7535, 'labyu': 6214, 'okies': 8009, 'jot': 5833, 'homeslice': 5075, 'emoticon': 3377, 'eyebrows': 3639, 'prettylooks': 8947, 'whitney': 12716, 'shamil': 10114, 'tonnes': 11809, 'status': 10934, 'suddenly': 11106, 'ally': 324, 'mani': 6873, 'wraps': 12904, 'neck': 7638, 'pulls': 9091, 'heartbroken': 4895, 'chover': 1999, 'cebu': 1804, 'lechon': 6345, 'kitten': 6116, 'jannygreen': 5693, 'lyah': 6741, 'conno': 2279, 'brooo': 1510, 'lovebox': 6649, 'prods': 9002, 'ims': 5375, 'osad': 8151, 'itb': 5613, 'omigod': 8049, 'locate': 6546, 'ehem': 3297, 'smirkingfacesmirkingface': 10589, 'yeke': 13030, 'jumpa': 5884, 'maybefacesavouringdeliciousfood': 6991, 'ape': 512, 'bestfriendfrown': 1121, 'namin': 7569, 'epetitions': 3464, 'sleepover': 10399, 'pretending': 8941, 'hosting': 5130, 'irking': 5573, 'ruess': 9705, 'aigoo': 228, 'recover': 9338, 'doujin': 3100, 'ging': 4374, 'dicks': 2887, 'ginggon': 4377, 'iti': 5622, 'youguysall': 13100, 'lovefrown': 6652, 'ytd': 13137, 'poutingpdapaghimok': 8851, 'flexible': 3956, 'sheet': 10154, 'nanaman': 7572, 'curves': 2551, 'pinay': 8591, 'pie': 8570, 'jadi': 5667, 'langsung': 6259, 'flasback': 3939, 'los': 6612, 'nicknames': 7740, 'involve': 5556, 'scrapes': 9916, 'piles': 8583, 'dhesi': 2873, 'sare': 9832, 'bandar': 883, 'varge': 12319, 'hammering': 4755, 'nowlooks': 7881, 'dayfrown': 2673, 'edited': 3266, 'lolo': 6569, 'onlynay': 8064, 'xbsbabnb': 12941, 'stillllllllllll': 10976, 'seriousfrown': 10036, 'wakeupgop': 12503, 'adams': 108, 'mv': 7508, 'bull': 1575, 'trafficccccccc': 11881, 'translator': 11905, 'ummmm': 12122, 'filmed': 3878, 'pornography': 8771, 'slutshamed': 10430, 'faked': 3710, 'suicideect': 11121, 'poland': 8728, 'faraway': 3757, 'cookies': 2343, 'forgetting': 4045, 'kazanaki': 5978, 'cgi': 1835, 'punconfusion': 9098, 'upsets': 12236, 'xs': 12962, 'xxxxx': 12971, 'cheat': 1909, 'osaka': 8152, 'allypasturan': 325, 'aytona': 773, 'hala': 4738, 'mathird': 6974, 'jkjk': 5784, 'backtrack': 815, 'utilizing': 12281, 'pats': 8365, 'broh': 1499, 'callllllls': 1681, 'icarus': 5272, 'awning': 753, 'bach': 798, 'landlords': 6251, 'mps': 7411, 'bullshit': 1578, 'sainz': 9768, 'daming': 2609, 'tie': 11689, 'ishii': 5589, 'clara': 2057, 'yiling': 13067, 'ts': 11975, 'stil': 10973, 'sidharth': 10278, 'ndabenhle': 7624, 'doggy': 3035, 'antagal': 475, 'jhart': 5765, 'pages': 8243, 'thus': 11673, 'jenners': 5741, 'troubleshooting': 11958, 'dem': 2784, 'bang': 887, 'automatically': 712, 'redirected': 9356, 'chip': 1969, 'nnnoooo': 7792, 'cz': 2583, 'gorilla': 4499, 'matteo': 6977, 'hbm': 4865, 'admire': 131, 'jason': 5703, 'shackells': 10095, 'podcast': 8717, 'twers': 12039, 'performing': 8464, 'hahaahahahaha': 4698, 'bums': 1586, 'mutilated': 7503, 'robot': 9623, 'destroyedgtfrown': 2840, 'freakin': 4090, 'haestarr': 4693, 'hoju': 5051, 'jimz': 5776, 'grinningfaceflying': 4583, 'recordings': 9336, 'snippets': 10621, 'mefd': 7053, 'diana': 2880, 'led': 6347, 'sleeep': 10394, 'meowkd': 7112, 'trends': 11926, 'bryann': 1534, 'anymoreskeptical': 490, 'swimmers': 11260, 'leh': 6368, 'tht': 11659, 'ggfrown': 4343, 'didnot': 2888, 'ths': 11657, 'episodefrown': 3469, 'facewithtearsofjoyfacewithtearsofjoyfacewithtearsofjoythank': 3679, 'sangrinningfacezanele': 9816, 'usanele': 12262, 'replace': 9444, 'shuffling': 10258, 'micha': 7163, 'creep': 2475, 'throughout': 11650, 'ave': 718, 'triple': 11945, 'lectures': 6346, 'jaw': 5709, 'quarter': 9151, 'kimono': 6077, 'sony': 10709, 'followmeaaron': 4014, 'tzelumxoxo': 12078, 'mew': 7145, 'poutinghow': 8829, 'indicated': 5414, 'oulive': 8176, 'viernesderolenahot': 12389, 'longmorn': 6590, 'tobermory': 11750, 'recuerda': 9343, 'tanto': 11359, 'nurse': 7915, 'awaited': 730, 'urslef': 12255, 'lime': 6463, 'truckloads': 11963, 'favours': 3789, 'spectator': 10803, 'sailing': 9767, 'wend': 12651, 'bbc': 966, 'foiling': 3996, 'catamarans': 1782, 'shak': 10105, 'pely': 8430, 'sextaatequemfimseguesdvcomvalentino': 10077, 'befor': 1041, 'cinnamon': 2036, 'comfort': 2190, 'mtap': 7428, 'penge': 8433, 'frozen': 4154, 'bagus': 838, 'emang': 3357, 'preferably': 8907, 'puppiesconfusion': 9105, 'engg': 3418, 'cmc': 2116, 'maging': 6802, 'statement': 10927, 'moodswings': 7353, 'terminal': 11484, 'diseases': 2968, 'peep': 8424, 'removing': 9429, 'roguk': 9640, 'bandanafrown': 882, 'mef': 7052, 'rebound': 9309, 'pooooooooor': 8747, 'perpetually': 8471, 'resting': 9495, 'wished': 12787, 'suzaku': 11223, 'unfollows': 12162, 'poutingwearyfacesparklingheart': 8873, 'zayncomebackwemissyou': 13173, 'pmsl': 8710, 'mianhe': 7160, 'milkeu': 7192, 'lrt': 6684, 'bambam': 872, 'sodas': 10654, 'payback': 8376, 'kats': 5971, 'jobee': 5793, 'muchie': 7449, 'revolvingheartsballoonbirthdaycakepartypopperfaceblowingakiss': 9527, 'blr': 1299, 'bathroom': 948, 'lagg': 6229, 'banget': 890, 'dreamed': 3129, 'thered': 11571, 'invisible': 5552, 'beasts': 1003, 'scuttling': 9934, 'worm': 12877, 'tracks': 11874, 'bauuuuuuuukkk': 957, 'damnnn': 2616, 'fineeeeeeeee': 3896, 'omaigoshhhhhhh': 8037, 'quits': 9173, 'argument': 579, 'rlly': 9595, 'bummed': 1583, 'yellowheartyellowheartyellowheartyellowheart': 13038, 'bore': 1375, 'smilingcatfacewithopenmouthweddinggemstonepartypopper': 10571, 'feelin': 3813, 'biscuit': 1215, 'slathered': 10390, 'taxed': 11385, 'investigations': 5549, 'pups': 9107, 'jsut': 5853, 'beloved': 1081, 'grandmother': 4533, 'edits': 3271, 'babeeeee': 784, 'demn': 2787, 'hotaisndonwyvauwjoqhsjsnaihsuswtf': 5133, 'nirame': 7773, 'geng': 4311, 'fikri': 3870, 'tirtagangga': 11724, 'hotelconfusion': 5138, 'char': 1878, 'riprishikeshwariyour': 9574, 'peacefrown': 8404, 'artists': 610, 'creamist': 2464, 'pleaseeeeefrown': 8679, 'challenge': 1848, 'substitution': 11093, 'cplt': 2435, 'cp': 2434, 'hannah': 4778, 'blueheart': 1301, 'opus': 8116, 'bbq': 974, 'lolliver': 6567, 'split': 10829, 'collat': 2159, 'spilt': 10819, 'poutingquitkarwaoyaaro': 8855, 'sherep': 10163, 'nemen': 7662, 'behey': 1056, 'motherfucker': 7382, 'mads': 6786, 'reece': 9358, 'vm': 12437, 'deth': 2848, 'ovi': 8215, 'lest': 6389, 'departure': 2805, 'madhvitommo': 6777, 'ammilliam': 386, 'wipe': 12780, 'yuck': 13139, 'ystrday': 13134, 'seolhyun': 10021, 'spicy': 10815, 'owls': 8218, 'latersign': 6292, 'suunn': 11220, 'wallpaper': 12522, 'cba': 1799, 'hilife': 5003, 'rec': 9310, 'gotdamn': 4504, 'baaack': 779, 'srw': 10871, 'mobage': 7290, 'passes': 8338, 'digitals': 2913, 'sexcams': 10072, 'interruptd': 5536, 'strokes': 11036, 'gnr': 4431, 'partied': 8321, 'backstage': 813, 'slash': 10389, 'tagged': 11307, 'bunny': 1591, 'sooner': 10713, 'kwon': 6196, 'financial': 3887, 'analyst': 403, 'expedia': 3600, 'bellevue': 1076, 'waconfusion': 12478, 'finance': 3886, 'expediajobs': 3601, 'prison': 8977, 'dose': 3087, 'huhuh': 5204, 'heartburn': 4896, 'listens': 6497, 'againawalmu': 184, 'njareeeeem': 7782, 'nooooooooo': 7833, 'psycho': 9065, 'wahhh': 12488, 'abudhabi': 48, 'blues': 1303, 'hibye': 4978, 'shareyoursummer': 10127, 'mustbe': 7498, 'dairy': 2601, 'produxt': 9008, 'lactose': 6217, 'midlands': 7174, 'roblong': 9621, 'knackered': 6132, 'footage': 4029, 'icing': 5278, 'dragged': 3114, 'lifeless': 6428, 'knowwwww': 6150, 'pricing': 8960, 'lakeland': 6242, 'hoursembarrassed': 5153, 'pengen': 8434, 'boxing': 1409, 'indonesiaconfusion': 5427, 'girlll': 4387, 'tsunami': 11981, 'indies': 5419, 'wnick': 12806, 'picks': 8561, 'tirade': 11720, 'stoop': 10992, 'lower': 6677, 'thunder': 11667, 'fight': 3861, 'apologize': 521, 'adults': 141, 'facade': 3657, 'democracy': 2789, 'hye': 5253, 'brat': 1443, 'bade': 822, 'fursat': 4206, 'usey': 12271, 'banaya': 878, 'uppar': 12231, 'waale': 12475, 'ney': 7704, 'afsos': 169, 'humse': 5219, 'dur': 3207, 'gif': 4358, 'whod': 12718, 'naruhina': 7584, 'nameeee': 7566, 'haiqal': 4725, 'picc': 8557, 'instore': 5506, 'prevoting': 8952, 'durian': 3209, 'strudel': 11045, 'tsk': 11979, 'marines': 6910, 'kailan': 5917, 'separated': 10024, 'payday': 8377, 'payhour': 8378, 'immediately': 5354, 'mekele': 7073, 'wrongfrown': 12916, 'guppy': 4658, 'poorkid': 8753, 'misunderstood': 7263, 'cuddly': 2530, 'scratches': 9917, 'tries': 11939, 'thumb': 11663, 'ankles': 445, 'torturing': 11840, 'caste': 1778, 'kirkiri': 6098, 'hearted': 4899, 'facewithtearsofjoyrevolvinghearts': 3682, 'wonho': 12836, 'mission': 7251, 'pap': 8291, 'danzell': 2636, 'crafting': 2445, 'devil': 2858, 'sheff': 10155, 'utdyork': 12280, 'visa': 12419, 'bench': 1088, 'catlin': 1790, 'facewithtearsofjoywearyfacewearyface': 3684, 'harmful': 4811, 'motivation': 7386, 'yolo': 13086, 'bloating': 1277, 'ollys': 8032, 'alternis': 345, 'overall': 8199, 'continental': 2313, 'grinningfacepistol': 4585, 'thirsty': 11604, 'bhatti': 1152, 'konami': 6161, 'pes': 8485, 'rantie': 9232, 'perverse': 8483, 'bracelets': 1421, 'twins': 12043, 'bylfnnz': 1645, 'banned': 896, 'pakistan': 8258, 'failsatlife': 3704, 'poutingwaaah': 8870, 'jaebum': 5669, 'ahmad': 218, 'maslan': 6949, 'cooks': 2345, 'hull': 5212, 'supporter': 11183, 'misserable': 7247}
# Model Generation Using Multinomial Naive Bayes
clf = MultinomialNB().fit(X_train, y_train)
predicted = clf.predict(X_test)
print("MultinomialNB Accuracy:", metrics.accuracy_score(y_test, predicted))
MultinomialNB Accuracy: 0.973
Human language is astoundingly perplexing and diverse. NLP is an approach that helps us improve our communication and influence skills at a time these are becoming even more important.
Even though computing systems enable fast and highly accurate communication channels, machines have never been good at understanding how and why we communicate in the first place.
- NLP is significant in light of the fact that it helps settle ambiguity in language and adds valuable numeric structure to the information for some downstream applications, for example, speech recognition or text analytics.