As a preliminary analysis, the data can be examined before making any assumptions. This can help in identifying any apparent errors or patterns present in the data.
# IMPORT DEPENDENCIES
import pandas as pd
import numpy as np
import plotly.express as px
import plotly.graph_objects as go
import plotly.io as pio
import chart_studio
import chart_studio.plotly as py
import chart_studio.tools as tls
import seaborn as sns
import matplotlib.pyplot as plt
from plotly.subplots import make_subplots
from collections import Counter
from wordcloud import WordCloud, STOPWORDS, ImageColorGenerator
import matplotlib.pyplot as plt
from PIL import Image
from sklearn.feature_extraction.text import CountVectorizer
import nltk
from plotly.subplots import make_subplots
import plotly.graph_objects as go
import plotly.offline as pyo
pyo.init_notebook_mode()
# READ DATA
song_data = pd.read_csv('../Data/merged_finaltop100_revised.csv')
# REMOVE ROWS WITH NULL VALUES
song_data = song_data.dropna()
song_data.head()
Unnamed: 0 | track_id | artist_names | track_name | source | rank | weeks_on_chart | streams | country | danceability | ... | duration_ms | time_signature | album_release_date | lyrics | lyrics_trans | continent | iso_alpha3 | len_words_orig | len_words_trans | lyrics_clean | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 0yLdNVWF3Srea0uzk55zFn | Miley Cyrus | Flowers | Columbia | 1 | 5 | 124198 | United Arab Emirates | 0.707 | ... | 200455.0 | 4.0 | 2023-01-13 | We were good, we were gold\nKinda dream that c... | we were good we were gold kinda dream that can... | Asia | ARE | 334 | 334 | good gold dream sell right til build home watc... |
1 | 1 | 1Qrg8KqiBpW07V7PNxwwwL | SZA | Kill Bill | Top Dawg Entertainment/RCA Records | 2 | 10 | 106927 | United Arab Emirates | 0.644 | ... | 153947.0 | 4.0 | 2022-12-08 | I'm still a fan even though I was salty\nHate ... | im still a fan even though i was salty hate to... | Asia | ARE | 362 | 362 | fan even though salty hate see broad know happ... |
2 | 2 | 6AQbmUe0Qwf5PZnt4HmTXv | PinkPantheress, Ice Spice | Boy's a liar Pt. 2 | Warner Records | 3 | 2 | 83627 | United Arab Emirates | 0.696 | ... | 131013.0 | 4.0 | 2023-02-03 | Take a look inside your heart\nIs there any ro... | take a look inside your heart is there any roo... | Asia | ARE | 372 | 372 | take look inside heart room room would hold br... |
3 | 3 | 0WtM2NBVQNNJLh6scP13H8 | Rema, Selena Gomez | Calm Down (with Selena Gomez) | Mavin Records / Jonzing World | 4 | 25 | 79714 | United Arab Emirates | 0.801 | ... | 239318.0 | 4.0 | 2022-08-25 | Vibez\nOh, no\nAnother banger\nBaby, calm down... | vibez oh no another banger baby calm down calm... | Asia | ARE | 495 | 495 | another banger baby calm calm girl body put he... |
4 | 4 | 2dHHgzDwk4BJdRwy9uXhTO | Metro Boomin, The Weeknd, 21 Savage | Creepin' (with The Weeknd & 21 Savage) | Republic Records | 5 | 11 | 79488 | United Arab Emirates | 0.715 | ... | 221520.0 | 4.0 | 2022-12-02 | Ooh, ooh-ooh\nOoh-ooh-ooh, ooh, ooh-ooh (Just ... | ooh oohooh oohoohooh ooh oohooh just cant beli... | Asia | ARE | 458 | 456 | believe man want somebody say saw person kiss ... |
5 rows × 30 columns
# SUMMARY STATISTICS
song_data.iloc[:, 7:].describe() #summary for quantitative features
streams | danceability | energy | key | loudness | mode | speechiness | acousticness | instrumentalness | liveness | valence | tempo | duration_ms | time_signature | len_words_orig | len_words_trans | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
count | 6.809000e+03 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 | 6809.000000 |
mean | 4.645751e+05 | 0.686711 | 0.648354 | 5.252460 | -6.359081 | 0.524012 | 0.104867 | 0.256297 | 0.017564 | 0.167459 | 0.517240 | 122.470919 | 196034.198561 | 3.953885 | 367.341754 | 397.202967 |
std | 1.004412e+06 | 0.134797 | 0.151325 | 3.609155 | 2.401002 | 0.499460 | 0.095804 | 0.239559 | 0.092202 | 0.117771 | 0.220002 | 28.362855 | 46454.632618 | 0.279415 | 169.962184 | 167.235124 |
min | 4.899000e+03 | 0.210000 | 0.034900 | 0.000000 | -20.617000 | 0.000000 | 0.023200 | 0.000008 | 0.000000 | 0.017800 | 0.034200 | 60.001000 | 60000.000000 | 1.000000 | 4.000000 | 4.000000 |
25% | 4.968300e+04 | 0.593000 | 0.545000 | 2.000000 | -7.665000 | 0.000000 | 0.042500 | 0.062800 | 0.000000 | 0.093400 | 0.346000 | 98.035000 | 163886.000000 | 4.000000 | 269.000000 | 289.000000 |
50% | 1.070540e+05 | 0.700000 | 0.662000 | 5.000000 | -5.983000 | 1.000000 | 0.063600 | 0.171000 | 0.000003 | 0.122000 | 0.514000 | 119.985000 | 192000.000000 | 4.000000 | 348.000000 | 367.000000 |
75% | 4.436090e+05 | 0.789000 | 0.754000 | 8.000000 | -4.727000 | 1.000000 | 0.131000 | 0.391000 | 0.000132 | 0.210000 | 0.680000 | 139.981000 | 224427.000000 | 4.000000 | 449.000000 | 474.000000 |
max | 1.608968e+07 | 0.981000 | 0.996000 | 11.000000 | 0.963000 | 1.000000 | 0.862000 | 0.983000 | 0.957000 | 0.960000 | 0.978000 | 235.815000 | 620696.000000 | 5.000000 | 3071.000000 | 3048.000000 |
# AVERAGE AUDIO FEATURES BY COUNTRY
feats_mean_country = song_data.groupby('country')[['streams', 'valence', 'mode', 'loudness',
'acousticness', 'tempo', 'energy', 'liveness',
'key', 'duration_ms', 'instrumentalness', 'danceability',
'speechiness', 'len_words_orig', 'len_words_trans']].mean().reset_index() #summary by continent
feats_mean_country
country | streams | valence | mode | loudness | acousticness | tempo | energy | liveness | key | duration_ms | instrumentalness | danceability | speechiness | len_words_orig | len_words_trans | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Argentina | 1.179263e+06 | 0.625626 | 0.404040 | -5.361980 | 0.237290 | 112.951848 | 0.664677 | 0.181675 | 5.444444 | 187128.434343 | 0.008968 | 0.751545 | 0.117749 | 413.797980 | 451.151515 |
1 | Australia | 6.192648e+05 | 0.496356 | 0.620000 | -6.315040 | 0.221503 | 125.277250 | 0.664310 | 0.159586 | 4.940000 | 199312.920000 | 0.020464 | 0.649480 | 0.080443 | 375.850000 | 377.470000 |
2 | Austria | 8.770041e+04 | 0.543645 | 0.474747 | -6.254061 | 0.213266 | 123.259626 | 0.685020 | 0.181289 | 5.343434 | 183957.303030 | 0.014873 | 0.708828 | 0.106137 | 413.343434 | 420.575758 |
3 | Belarus | 2.909776e+04 | 0.447598 | 0.484211 | -6.879421 | 0.208271 | 125.379137 | 0.670958 | 0.201082 | 4.600000 | 158243.378947 | 0.044603 | 0.692832 | 0.133614 | 301.589474 | 337.631579 |
4 | Belgium | 1.371359e+05 | 0.508441 | 0.600000 | -6.345560 | 0.262591 | 125.294170 | 0.645270 | 0.151885 | 5.040000 | 197440.200000 | 0.017074 | 0.662280 | 0.089938 | 381.740000 | 389.690000 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
68 | United Arab Emirates | 3.221250e+04 | 0.459147 | 0.666667 | -6.503958 | 0.282520 | 123.080115 | 0.625021 | 0.163030 | 5.395833 | 197423.093750 | 0.019190 | 0.629760 | 0.072226 | 366.343750 | 366.916667 |
69 | United Kingdom | 9.593073e+05 | 0.507231 | 0.642857 | -6.410847 | 0.223069 | 125.682122 | 0.653378 | 0.149428 | 5.214286 | 201593.744898 | 0.013729 | 0.643010 | 0.098102 | 394.806122 | 394.357143 |
70 | Uruguay | 8.442847e+04 | 0.608344 | 0.437500 | -5.203010 | 0.230471 | 112.094948 | 0.664927 | 0.182758 | 5.302083 | 182995.281250 | 0.009368 | 0.757583 | 0.126501 | 423.958333 | 461.500000 |
71 | Venezuela | 5.352543e+04 | 0.551919 | 0.454545 | -5.111434 | 0.241461 | 122.753202 | 0.687758 | 0.166743 | 4.727273 | 197992.878788 | 0.010564 | 0.747020 | 0.116214 | 414.949495 | 454.151515 |
72 | Vietnam | 1.848383e+05 | 0.442502 | 0.684783 | -8.073359 | 0.543023 | 127.640761 | 0.517070 | 0.149307 | 4.913043 | 226810.815217 | 0.011024 | 0.659815 | 0.063158 | 404.119565 | 379.152174 |
73 rows × 16 columns
# AVERAGE AUDIO FEATURES BY COUNTRY
pd.options.plotting.backend = "plotly"
feats_mean_country.plot.barh(y='country', x=['streams', 'valence', 'mode', 'loudness',
'acousticness', 'tempo', 'energy', 'liveness',
'key', 'duration_ms', 'instrumentalness', 'danceability',
'speechiness', 'len_words_orig', 'len_words_trans'],
title = 'Average audio features by country', template = 'plotly_dark')
Figure 1.1
According to Figure 1.1, there are significant variations in the averages of several quantitative features, including streams, mode, acousticness, instrumentalness, and speechiness, across 73 countries in six continents. For instance, Brazil exhibits a considerably higher average liveness in comparison to others.
# SUMMARY FOR QUALITATIVE FEATURES
song_data[['track_id','artist_names', 'track_name', 'source', 'country','album_release_date', 'lyrics']].describe()
track_id | artist_names | track_name | source | country | album_release_date | lyrics | |
---|---|---|---|---|---|---|---|
count | 6809 | 6809 | 6809 | 6809 | 6809 | 6809 | 6809 |
unique | 2864 | 2116 | 2830 | 1202 | 73 | 828 | 2858 |
top | 0yLdNVWF3Srea0uzk55zFn | Bad Bunny | Flowers | Columbia | Italy | 2023-01-27 | We were good, we were gold\nKinda dream that c... |
freq | 70 | 140 | 70 | 340 | 100 | 205 | 70 |
# PLOT STREAMS FOR TOP 1 SONG IN 73 COUNTRIES
df = song_data.loc[song_data['rank']==1] #get rank 1 songs
fig = px.scatter_geo(df, locations='iso_alpha3', color="track_name",
hover_name="country", size="streams",
title='Streams of Top 1 Songs' )
fig.update_geos(
showcoastlines=True, coastlinecolor="white",
showocean=True, oceancolor="black",
)
fig.update_layout(legend_title = "Top 1 Songs")
fig.show()
Figure 1.2
Brazil, Mexico, USA, and Italy have the highest streams for their top 1 songs.
# EXPORT PLOT
pio.write_html(fig, file='../Analysis/Plots/Top1Streams.html', auto_open=True)
# PLOT CORRELATIONS
plt.figure(figsize=(16, 6))
heatmap = sns.heatmap(song_data.iloc[:, 7:].corr(), vmin=-1, vmax=1, annot=True,cmap='BrBG')
heatmap.set_title('Correlation Heatmap', fontdict={'fontsize':12}, pad=12)
plt.savefig('../Analysis/Plots/Heatmap1.png', dpi=300, bbox_inches='tight');
C:\Users\kayan\AppData\Local\Temp\ipykernel_4760\1686967092.py:3: FutureWarning: The default value of numeric_only in DataFrame.corr is deprecated. In a future version, it will default to False. Select only valid columns or specify the value of numeric_only to silence this warning.
Figure 1.3
Valence and danceability have the highest positive correlations while acousticness and energy have the weakest correlation.
# PLOT CORRELATIONS
plt.figure(figsize=(8, 12))
heatmap2 = sns.heatmap(song_data.iloc[:, 7:].corr()[['streams']].sort_values(by='streams', ascending=False), vmin=-1, vmax=1, annot=True, cmap='BrBG')
heatmap2.set_title('Features Correlating with Streams', fontdict={'fontsize':12}, pad=6)
plt.savefig('../Analysis/Plots/Heatmap2.png', dpi=300, bbox_inches='tight')
C:\Users\kayan\AppData\Local\Temp\ipykernel_4760\745660606.py:3: FutureWarning: The default value of numeric_only in DataFrame.corr is deprecated. In a future version, it will default to False. Select only valid columns or specify the value of numeric_only to silence this warning.
Figure 1.4
The correlation between popularity, as measured by the number of streams, and the quantitative features appears to be very weak. This indicates that changes in these variables are unlikely to significantly influence the number of streams. Nonetheless, this weak correlation does not rule out the possibility of predictive power between the variables, as there could be non-linear relationships that have not been observed.
# JOIN CLEANED LYRICS FOR EACH COUNTRY
lyrics_joined = song_data.dropna(subset=['lyrics_clean', 'continent'])
lyrics_joined = lyrics_joined.groupby('country')['lyrics_clean'].apply(' '.join).reset_index()
lyrics_joined = pd.merge(lyrics_joined, song_data[['country', 'continent']].drop_duplicates(), on='country', how='inner')
lyrics_joined
country | lyrics_clean | continent | |
---|---|---|---|
0 | Argentina | come back want get hurt lose count forgive dre... | South America |
1 | Australia | good gold dream sell right til build home watc... | Oceania |
2 | Austria | good gold dream sell right til build home watc... | Europe |
3 | Belarus | generally want want implant call doctor love h... | Europe |
4 | Belgium | good gold dream sell right til build home watc... | Europe |
... | ... | ... | ... |
68 | United Arab Emirates | good gold dream sell right til build home watc... | Asia |
69 | United Kingdom | good gold dream sell right til build home watc... | Europe |
70 | Uruguay | will oversize fit combine well dance see cat e... | South America |
71 | Venezuela | let see tell go street today baby case think w... | South America |
72 | Vietnam | universe want want put first universe night li... | Asia |
73 rows × 3 columns
Most popular word for each country
def mostfreq_word(text):
'''get most frequent word'''
words_list = text.split() #tokenize the text
word_counts = Counter(words_list) #count frequency of each word
return word_counts.most_common(2), #return most frequent word
# GET MOST FREQUENT WORD
most_frequent = lyrics_joined['lyrics_clean'].apply(mostfreq_word)
lyrics_joined['most_frequent_word'] = [i[0][0][0]for i in most_frequent]
lyrics_joined['most_frequent_cnt'] = [i[0][0][1]for i in most_frequent]
# PLOT MOST FREQUENT WORD
fig1 = px.scatter(lyrics_joined, y="country", x="most_frequent_cnt", color="continent", text="most_frequent_word")
fig1.update_traces(textposition='top center')
fig1.update_layout(height=700, title_text='Most Frequent Word',template = 'plotly_dark')
fig1.show()
Figure 1.5
The most frequent words in lyrics of popular songs in different regions appears very similar.
# PRINT TOTAL NUMBER OF WORDS IN COMBINED LYRICS
text = ' '.join(song_data['lyrics_clean']) #join cleaned lyrics
ls = text.split(' ')
len(ls)
1045530
# MOST COMMON WORDS IN POPULAR SONGS
wordcloud = WordCloud( background_color = 'white', colormap="Dark2").generate(text)
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis("off")
plt.title('Most common words in popular songs in February 2023')
plt.show()
Figure 1.6
Typically, modern song lyrics include certain words that are associated with contemporary themes. For instance, the prevalent themes in new-age songs usually revolve around words like "party" and "love" as shown in this wordcloud.
# JOIN LYRICS BY CONTINENT
joined_lyrics = song_data.dropna(subset=['lyrics_clean'])
joined_lyrics = joined_lyrics.groupby('continent')['lyrics_clean'].apply(' '.join).reset_index()
# COMPUTE WORD FREQUENCIES
vec = CountVectorizer(tokenizer = nltk.word_tokenize)
freq = vec.fit_transform(joined_lyrics['lyrics_clean'])
feat_names = vec.get_feature_names_out()
C:\Users\kayan\Anaconda3\envs\py310\lib\site-packages\sklearn\feature_extraction\text.py:528: UserWarning: The parameter 'token_pattern' will not be used since 'tokenizer' is not None'
# CONVERT WORD FREQUENCIES TO DATAFRAME
df1 = pd.DataFrame(freq.todense(),columns=feat_names).transpose()
df1.reset_index(inplace=True)
df1 = df1.rename(columns = {'index':'token', 0: 'Africa',
1: 'Asia', 2: 'Europe', 3:'North America',
4:'Oceania', 5: 'South America'})
df1
token | Africa | Asia | Europe | North America | Oceania | South America | |
---|---|---|---|---|---|---|---|
0 | abandon | 0 | 6 | 1 | 13 | 0 | 20 |
1 | abbot | 0 | 0 | 0 | 0 | 0 | 2 |
2 | abdomen | 0 | 0 | 0 | 11 | 0 | 6 |
3 | abdominal | 0 | 0 | 1 | 0 | 0 | 0 |
4 | abduction | 0 | 1 | 1 | 0 | 0 | 0 |
... | ... | ... | ... | ... | ... | ... | ... |
11000 | zombie | 2 | 11 | 3 | 0 | 3 | 3 |
11001 | zone | 8 | 19 | 56 | 9 | 2 | 8 |
11002 | zoo | 1 | 1 | 3 | 0 | 0 | 0 |
11003 | zoom | 0 | 1 | 11 | 0 | 0 | 0 |
11004 | zorro | 0 | 1 | 2 | 16 | 0 | 10 |
11005 rows × 7 columns
# MOST FREQUENT WORDS BY CONTINENT
def plot_wordcloud(df,row,col):
wc = WordCloud(background_color="white",colormap="cividis",
max_font_size=100,random_state=15)
fig = plt.figure(figsize=(20,10))
for index, value in enumerate(df.columns[1:]):
top_dict = dict(zip(df['token'].tolist(),df[value].tolist()))
wc.generate_from_frequencies(top_dict)
plt.subplot(row,col,index+1)
plt.imshow(wc,interpolation="bilinear")
plt.axis("off")
plt.title(f"{value}",fontsize=15)
plt.subplots_adjust(wspace=0, hspace=0.2)
plt.show()
plot_wordcloud(df1,3,2) #plot wordcloud
Figure 1.7
The top words in popular songs across various regions seem to be similar, with frequently used words being simple and commonly used. However, it is worth noting that the lyrics used to create these word clouds have undergone preprocessing, and some commonly used words like "hey" and "yeah" were not successfuly eliminated using nltk stopwords.
# GET FREQUENCY DISTRIBUTIONS FOR TOKENS
d = nltk.FreqDist(w for w in ls if w.isalnum())
d
FreqDist({'like': 27075, 'know': 19940, 'love': 16436, 'get': 15532, 'want': 14420, 'yeah': 14368, 'baby': 12024, 'one': 10552, 'see': 10256, 'say': 9874, ...})
# SORT FREQUENCIES
sorted_d = dict(sorted(d.items(), key=lambda x: x[1], reverse=True)) #sort dict descending
print(sorted_d)
{'like': 27075, 'know': 19940, 'love': 16436, 'get': 15532, 'want': 14420, 'yeah': 14368, 'baby': 12024, 'one': 10552, 'see': 10256, 'say': 9874, 'come': 9629, 'make': 8797, 'tell': 8594, 'take': 8104, 'let': 7988, 'time': 7914, 'might': 7779, 'feel': 7626, 'go': 7543, 'hey': 7456, 'also': 7310, 'look': 7187, 'never': 6977, 'give': 6534, 'night': 6160, 'would': 5910, 'think': 5910, 'back': 5688, 'cause': 5676, 'even': 5506, 'heart': 5335, 'leave': 4953, 'good': 4647, 'girl': 4162, 'need': 4116, 'day': 4089, 'could': 4070, 'life': 4062, 'put': 3819, 'another': 3815, 'way': 3720, 'better': 3642, 'thing': 3631, 'keep': 3434, 'away': 3299, 'always': 3281, 'everything': 3272, 'drink': 3185, 'lose': 3135, 'bitch': 3127, 'stay': 3096, 'well': 3070, 'little': 3049, 'find': 3046, 'call': 3043, 'break': 3001, 'dance': 2938, 'eye': 2930, 'forget': 2917, 'without': 2828, 'today': 2798, 'fall': 2774, 'hand': 2770, 'right': 2726, 'alone': 2692, 'talk': 2578, 'world': 2496, 'every': 2493, 'money': 2459, 'much': 2445, 'bad': 2445, 'hold': 2444, 'aint': 2432, 'two': 2400, 'already': 2377, 'turn': 2368, 'face': 2359, 'mind': 2246, 'crazy': 2218, 'cry': 2176, 'yes': 2171, 'long': 2105, 'head': 2102, 'live': 2070, 'party': 2060, 'try': 2044, 'last': 2030, 'man': 2011, 'boy': 1992, 'friend': 1985, 'body': 1972, 'tonight': 1942, 'stop': 1912, 'die': 1891, 'run': 1878, 'kiss': 1869, 'god': 1866, 'mine': 1861, 'there': 1828, 'hurt': 1823, 'daddy': 1821, 'use': 1819, 'end': 1810, 'nothing': 1803, 'around': 1780, 'something': 1777, 'ever': 1774, 'low': 1767, 'bet': 1760, 'light': 1757, 'miss': 1742, 'home': 1740, 'walk': 1729, 'name': 1703, 'someone': 1700, 'ask': 1699, 'lie': 1696, 'please': 1654, 'wait': 1619, 'hit': 1612, 'song': 1565, 'dream': 1559, 'mommy': 1556, 'care': 1539, 'show': 1508, 'people': 1502, 'really': 1486, 'many': 1478, 'tear': 1469, 'new': 1457, 'touch': 1441, 'watch': 1435, 'anything': 1423, 'place': 1422, 'first': 1412, 'will': 1408, 'real': 1383, 'play': 1381, 'move': 1349, 'dey': 1345, 'sing': 1345, 'enough': 1328, 'throw': 1317, 'nobody': 1313, 'bed': 1308, 'smoke': 1307, 'huh': 1298, 'change': 1289, 'inside': 1284, 'everyone': 1272, 'sleep': 1268, 'sweat': 1263, 'star': 1263, 'together': 1260, 'understand': 1252, 'ticket': 1242, 'meet': 1231, 'remember': 1231, 'hear': 1221, 'hard': 1220, 'high': 1219, 'sun': 1219, 'bout': 1215, 'babe': 1215, 'lot': 1197, 'big': 1194, 'bring': 1183, 'house': 1173, 'listen': 1169, 'save': 1160, 'worry': 1145, 'alright': 1144, 'matter': 1144, 'gon': 1130, 'buy': 1127, 'hate': 1126, 'longer': 1126, 'else': 1125, 'street': 1121, 'saw': 1119, 'beautiful': 1116, 'maybe': 1108, 'wish': 1103, 'sometimes': 1103, 'beat': 1102, 'eat': 1102, 'shoot': 1093, 'fly': 1092, 'stand': 1087, 'side': 1078, 'damn': 1072, 'guy': 1067, 'fire': 1060, 'write': 1032, 'believe': 1023, 'word': 1019, 'cold': 1018, 'car': 1009, 'close': 1004, 'best': 1000, 'hot': 994, 'drop': 994, 'sit': 987, 'hope': 982, 'pain': 980, 'work': 978, 'top': 977, 'shake': 976, 'start': 975, 'burn': 974, 'smile': 970, 'sky': 951, 'wake': 950, 'since': 950, 'three': 949, 'room': 944, 'fine': 941, 'old': 935, 'anyone': 919, 'sorry': 917, 'pretty': 916, 'memory': 899, 'phone': 894, 'doctor': 893, 'stick': 890, 'tomorrow': 878, 'next': 873, 'shine': 867, 'far': 867, 'music': 861, 'whole': 859, 'fight': 856, 'do': 854, 'wrong': 854, 'year': 853, 'soul': 850, 'wear': 848, 'sound': 844, 'spend': 839, 'moment': 839, 'though': 832, 'whats': 826, 'send': 826, 'problem': 824, 'morning': 815, 'hour': 814, 'note': 795, 'happy': 791, 'mean': 779, 'wow': 779, 'pull': 772, 'forever': 768, 'full': 758, 'rich': 752, 'flow': 750, 'four': 748, 'mouth': 745, 'dark': 741, 'ready': 740, 'young': 738, 'trust': 735, 'til': 732, 'feat': 731, 'sure': 730, 'mother': 728, 'brother': 726, 'black': 720, 'late': 719, 'round': 709, 'behind': 696, 'woman': 695, 'arm': 689, 'free': 680, 'ride': 669, 'hair': 666, 'drive': 666, 'afraid': 663, 'skin': 662, 'gang': 662, 'taste': 661, 'rather': 656, 'bastard': 655, 'reason': 644, 'city': 644, 'hide': 642, 'thousand': 642, 'easy': 642, 'lover': 641, 'speak': 637, 'happen': 637, 'superman': 636, 'cut': 632, 'sweet': 631, 'wave': 629, 'rest': 627, 'roll': 623, 'rain': 613, 'bar': 612, 'lip': 611, 'although': 611, 'felt': 610, 'lady': 606, 'pussy': 601, 'catch': 599, 'player': 598, 'follow': 597, 'road': 597, 'diamond': 595, 'become': 595, 'bottle': 595, 'check': 594, 'worth': 593, 'heat': 592, 'havent': 592, 'wind': 588, 'open': 587, 'empty': 585, 'story': 584, 'bite': 583, 'hello': 579, 'rock': 578, 'everybody': 578, 'game': 578, 'unholy': 577, 'calm': 576, 'step': 576, 'spit': 576, 'drug': 574, 'who': 572, 'cat': 571, 'red': 570, 'hell': 567, 'tire': 566, 'glass': 564, 'pay': 563, 'win': 563, 'bear': 563, 'hundred': 558, 'person': 557, 'front': 556, 'fast': 555, 'may': 554, 'flower': 553, 'rise': 552, 'five': 547, 'blue': 547, 'alive': 540, 'king': 536, 'perfect': 535, 'slowly': 535, 'small': 534, 'set': 534, 'different': 531, 'deep': 530, 'sell': 522, 'sex': 520, 'tra': 515, 'grow': 514, 'voice': 513, 'must': 512, 'plan': 512, 'shop': 508, 'club': 507, 'forgive': 506, 'regret': 505, 'ten': 504, 'door': 500, 'fear': 499, 'sea': 499, 'main': 495, 'swear': 495, 'scream': 494, 'bunny': 492, 'dog': 491, 'dick': 486, 'somebody': 484, 'cloud': 483, 'help': 480, 'guess': 477, 'learn': 476, 'air': 476, 'sad': 471, 'men': 469, 'woo': 468, 'ring': 468, 'promise': 467, 'middle': 466, 'white': 465, 'return': 463, 'smell': 462, 'yesterday': 462, 'repeat': 462, 'outside': 459, 'dead': 456, 'yah': 456, 'mirror': 455, 'jump': 452, 'theyre': 449, 'bag': 447, 'dress': 447, 'mistake': 446, 'lonely': 444, 'true': 444, 'fell': 444, 'couple': 443, 'truth': 439, 'piece': 438, 'laugh': 435, 'whip': 434, 'child': 434, 'devil': 432, 'hotel': 431, 'rap': 431, 'fit': 430, 'secret': 429, 'record': 428, 'past': 427, 'fool': 425, 'part': 424, 'control': 423, 'wall': 423, 'continue': 423, 'act': 423, 'wonder': 422, 'favorite': 421, 'attention': 421, 'reach': 419, 'wherever': 419, 'moon': 419, 'liar': 418, 'gold': 413, 'rush': 413, 'line': 412, 'block': 411, 'peace': 410, 'water': 410, 'answer': 408, 'dad': 403, 'pretend': 402, 'choose': 402, 'style': 401, 'cover': 401, 'steal': 401, 'slow': 400, 'table': 399, 'cash': 397, 'straight': 397, 'thank': 395, 'whoa': 395, 'raise': 394, 'lead': 393, 'bop': 393, 'foot': 392, 'murder': 390, 'wouldnt': 390, 'cool': 390, 'photo': 389, 'wan': 385, 'neck': 385, 'bone': 385, 'point': 383, 'chi': 382, 'mood': 381, 'half': 381, 'soon': 380, 'yet': 379, 'mad': 379, 'fun': 378, 'kind': 377, 'magic': 377, 'carry': 376, 'mature': 375, 'single': 375, 'text': 374, 'waste': 374, 'arrive': 372, 'apart': 371, 'treat': 371, 'case': 371, 'summer': 365, 'suck': 365, 'switch': 363, 'pray': 363, 'floor': 362, 'angel': 362, 'almost': 361, 'clothe': 359, 'asleep': 355, 'cup': 355, 'heaven': 355, 'enjoy': 355, 'somewhere': 354, 'death': 354, 'fault': 353, 'bless': 353, 'lucky': 352, 'father': 352, 'hoe': 350, 'future': 350, 'pocket': 349, 'chest': 347, 'able': 345, 'sand': 344, 'count': 344, 'fan': 342, 'pick': 341, 'beach': 341, 'pink': 340, 'stone': 339, 'deserve': 338, 'simple': 337, 'blow': 337, 'chain': 336, 'alcohol': 335, 'picture': 333, 'idea': 329, 'movie': 329, 'mummy': 327, 'respect': 327, 'grind': 327, 'month': 325, 'war': 324, 'warm': 324, 'form': 323, 'lay': 321, 'safe': 320, 'doubt': 317, 'clean': 315, 'minute': 315, 'either': 315, 'business': 314, 'moonlight': 314, 'lock': 314, 'shut': 314, 'job': 313, 'screw': 312, 'blood': 311, 'whatever': 308, 'everywhere': 308, 'wet': 306, 'nice': 305, 'chance': 304, 'finish': 304, 'green': 303, 'desire': 302, 'dollar': 301, 'dirty': 300, 'mess': 300, 'dawn': 300, 'second': 299, 'window': 299, 'notice': 298, 'brown': 297, 'fake': 297, 'pure': 297, 'none': 295, 'sunrise': 292, 'number': 292, 'wrap': 291, 'clearly': 291, 'breathe': 291, 'bottom': 290, 'honest': 290, 'track': 290, 'shady': 290, 'sick': 288, 'ahead': 286, 'loose': 286, 'short': 286, 'distance': 285, 'paint': 284, 'read': 281, 'hole': 280, 'teach': 280, 'town': 279, 'course': 279, 'ice': 279, 'trip': 278, 'kick': 277, 'bye': 277, 'park': 277, 'twenty': 276, 'along': 273, 'gun': 273, 'pose': 271, 'sense': 269, 'patience': 266, 'forty': 266, 'gum': 265, 'flight': 264, 'weve': 264, 'breath': 263, 'whore': 263, 'brain': 261, 'sin': 261, 'fix': 261, 'bright': 261, 'link': 260, 'imagine': 259, 'cross': 259, 'slim': 258, 'six': 257, 'least': 256, 'spin': 256, 'force': 256, 'brand': 255, 'snap': 255, 'clear': 255, 'woof': 255, 'finally': 254, 'drum': 254, 'busy': 252, 'mein': 251, 'color': 250, 'normal': 250, 'marry': 249, 'drown': 249, 'explain': 249, 'twice': 248, 'beg': 248, 'sign': 248, 'cute': 248, 'drama': 247, 'begin': 247, 'shy': 246, 'suit': 246, 'build': 245, 'match': 245, 'angry': 244, 'cell': 244, 'double': 243, 'pleasure': 243, 'pour': 242, 'wine': 241, 'land': 241, 'heel': 240, 'blame': 240, 'blind': 240, 'push': 239, 'escape': 239, 'dear': 239, 'seat': 239, 'twelve': 238, 'ball': 238, 'harry': 237, 'boom': 236, 'dust': 236, 'leaf': 236, 'worst': 235, 'knee': 234, 'quiet': 234, 'fade': 234, 'naked': 233, 'space': 233, 'team': 233, 'race': 232, 'champagne': 232, 'nine': 232, 'model': 231, 'deal': 231, 'test': 231, 'bank': 231, 'trap': 231, 'probably': 230, 'ear': 229, 'enemy': 229, 'trouble': 229, 'dum': 229, 'float': 228, 'enter': 228, 'family': 227, 'hopeless': 227, 'poppin': 226, 'finger': 226, 'youd': 226, 'anyway': 226, 'disappear': 225, 'delicious': 225, 'cost': 225, 'ago': 225, 'glow': 224, 'shout': 224, 'pop': 222, 'dare': 222, 'mercy': 221, 'scene': 221, 'pack': 221, 'willie': 221, 'faith': 220, 'lane': 220, 'rapper': 220, 'key': 220, 'son': 220, 'lower': 219, 'sweater': 218, 'neighborhood': 218, 'hero': 217, 'quickly': 217, 'luck': 217, 'stupid': 215, 'question': 215, 'type': 214, 'darkness': 214, 'quick': 214, 'chase': 214, 'role': 213, 'grab': 212, 'cocaine': 211, 'message': 211, 'fact': 210, 'difficult': 210, 'passion': 209, 'hug': 209, 'video': 208, 'sister': 208, 'fame': 208, 'grass': 208, 'post': 207, 'june': 207, 'art': 206, 'whenever': 206, 'crowd': 205, 'important': 204, 'symptom': 203, 'decide': 203, 'phi': 203, 'guarantee': 200, 'doll': 199, 'congratulate': 199, 'happiness': 198, 'happier': 197, 'strong': 197, 'honey': 195, 'shade': 195, 'bandit': 195, 'harder': 195, 'level': 195, 'band': 194, 'grave': 194, 'bullet': 194, 'golden': 193, 'nana': 193, 'saint': 192, 'power': 192, 'fret': 192, 'great': 191, 'realize': 191, 'tera': 191, 'page': 190, 'wife': 189, 'han': 189, 'yellow': 188, 'excuse': 188, 'cigarette': 188, 'wolf': 188, 'suddenly': 188, 'price': 187, 'dope': 187, 'zero': 187, 'gym': 187, 'private': 187, 'action': 187, 'situation': 186, 'energy': 186, 'vision': 186, 'thug': 186, 'whoever': 186, 'tie': 185, 'plane': 185, 'swallow': 185, 'snow': 185, 'super': 184, 'pass': 184, 'shoulder': 183, 'shirt': 183, 'sugar': 183, 'hook': 183, 'addict': 183, 'tight': 182, 'jaw': 182, 'paper': 181, 'shoe': 181, 'stuff': 181, 'view': 181, 'demon': 181, 'bang': 181, 'flame': 180, 'lift': 180, 'later': 180, 'erase': 179, 'sober': 178, 'hood': 178, 'weekend': 178, 'seem': 177, 'sight': 177, 'spread': 177, 'heartless': 177, 'candy': 176, 'strange': 176, 'closer': 176, 'bug': 176, 'fresh': 176, 'fat': 175, 'higher': 175, 'mere': 175, 'lick': 174, 'share': 174, 'tongue': 174, 'queen': 174, 'refuse': 174, 'weed': 173, 'broad': 172, 'mission': 172, 'lately': 172, 'account': 172, 'suppose': 172, 'corner': 172, 'jail': 171, 'news': 171, 'holy': 171, 'week': 171, 'contact': 171, 'worse': 170, 'throat': 170, 'cake': 169, 'toy': 169, 'noise': 169, 'country': 169, 'dude': 169, 'order': 168, 'habit': 168, 'tree': 168, 'prefer': 168, 'umbrella': 168, 'crime': 167, 'badly': 167, 'mix': 167, 'expensive': 167, 'phase': 167, 'legend': 166, 'crack': 166, 'complete': 166, 'rid': 165, 'nasty': 165, 'silence': 165, 'wire': 164, 'kitten': 164, 'dry': 164, 'shadow': 164, 'hip': 163, 'school': 163, 'bounce': 162, 'relationship': 162, 'interest': 162, 'cheese': 162, 'anybody': 161, 'evil': 161, 'tattoo': 160, 'lord': 160, 'suffer': 160, 'winter': 160, 'haze': 159, 'entertain': 159, 'darling': 159, 'loud': 159, 'perfume': 159, 'stage': 158, 'scar': 158, 'amber': 158, 'nowhere': 157, 'fail': 157, 'nightmare': 156, 'skinny': 156, 'lifetime': 156, 'wheel': 156, 'load': 156, 'anywhere': 154, 'foreign': 154, 'undress': 154, 'ultra': 154, 'blunt': 153, 'press': 153, 'wild': 153, 'history': 153, 'among': 153, 'card': 153, 'bum': 152, 'flex': 152, 'ditto': 152, 'toxic': 152, 'aha': 152, 'island': 152, 'kilo': 152, 'heavy': 152, 'cap': 151, 'plain': 151, 'slap': 151, 'upper': 151, 'ocean': 151, 'jerk': 151, 'shark': 151, 'area': 151, 'cannot': 150, 'squeeze': 150, 'tune': 150, 'deny': 150, 'welcome': 150, 'leg': 150, 'neither': 150, 'state': 149, 'shed': 149, 'remind': 149, 'someday': 149, 'tail': 149, 'pressure': 149, 'lack': 149, 'numb': 148, 'jean': 148, 'bleed': 148, 'oclock': 148, 'awake': 148, 'rack': 147, 'slaughter': 147, 'knock': 147, 'apartment': 146, 'chick': 146, 'belly': 146, 'sheet': 146, 'dumb': 145, 'liquor': 145, 'police': 145, 'teatime': 144, 'apple': 144, 'weight': 144, 'ceiling': 144, 'draw': 144, 'shallow': 144, 'balance': 144, 'booty': 143, 'swim': 143, 'universe': 143, 'paradise': 143, 'taxi': 142, 'league': 142, 'wing': 142, 'bus': 142, 'wed': 142, 'radio': 141, 'date': 141, 'blah': 141, 'directly': 140, 'flood': 140, 'fantasy': 140, 'silent': 140, 'clock': 140, 'field': 140, 'sink': 140, 'sip': 140, 'early': 140, 'stare': 139, 'surprise': 139, 'drip': 139, 'brunette': 139, 'rah': 139, 'nail': 138, 'molly': 138, 'pow': 138, 'combine': 138, 'list': 138, 'gift': 138, 'west': 138, 'class': 137, 'present': 137, 'mile': 137, 'dangerous': 137, 'eternal': 137, 'bend': 137, 'criminal': 137, 'tale': 136, 'speed': 136, 'jealous': 136, 'fashion': 135, 'monster': 135, 'crash': 135, 'forgiveness': 135, 'fifty': 135, 'bam': 135, 'panty': 134, 'circle': 134, 'tame': 134, 'cop': 134, 'tour': 134, 'mambo': 134, 'freeze': 134, 'position': 133, 'palm': 133, 'uncle': 133, 'gangster': 133, 'exhaust': 132, 'waist': 132, 'remix': 132, 'serious': 132, 'completely': 132, 'evidence': 131, 'gravity': 131, 'champion': 131, 'sunset': 130, 'sexy': 130, 'studio': 130, 'hesitate': 130, 'confuse': 130, 'figure': 130, 'joint': 129, 'spaceship': 129, 'adventure': 129, 'box': 129, 'often': 129, 'involve': 129, 'here': 128, 'shiver': 128, 'melt': 128, 'celebrate': 127, 'hush': 126, 'funny': 126, 'poison': 126, 'behave': 126, 'melody': 126, 'dancer': 126, 'unless': 125, 'wit': 125, 'bae': 125, 'plenty': 125, 'cheer': 125, 'bother': 125, 'bell': 124, 'system': 124, 'food': 124, 'heal': 124, 'remain': 124, 'coffee': 123, 'yell': 123, 'envy': 123, 'special': 123, 'relive': 123, 'bird': 123, 'therapist': 122, 'plate': 122, 'spring': 122, 'truck': 122, 'neighbor': 122, 'rule': 122, 'center': 122, 'impossible': 122, 'instead': 122, 'jungle': 122, 'grr': 122, 'stranger': 121, 'mark': 121, 'guard': 121, 'eight': 121, 'risk': 120, 'mode': 120, 'seven': 120, 'river': 120, 'weather': 120, 'pusher': 120, 'value': 119, 'admit': 119, 'festival': 119, 'market': 118, 'wey': 118, 'cane': 118, 'roof': 118, 'lipstick': 117, 'stiffen': 117, 'cream': 117, 'stress': 117, 'shame': 117, 'ugly': 116, 'witness': 116, 'across': 116, 'gas': 116, 'amen': 116, 'search': 116, 'law': 116, 'sir': 116, 'toward': 115, 'belong': 115, 'funk': 115, 'victim': 115, 'hunt': 115, 'spiteful': 115, 'focus': 114, 'lyric': 114, 'within': 114, 'soft': 114, 'unstoppable': 114, 'kitchen': 114, 'earth': 114, 'careful': 114, 'hang': 114, 'fate': 114, 'crush': 113, 'gay': 113, 'controversy': 113, 'highway': 112, 'aid': 112, 'chew': 112, 'cha': 112, 'signal': 112, 'beer': 112, 'ruin': 112, 'bigger': 112, 'ash': 112, 'nonsense': 111, 'toe': 111, 'innocent': 111, 'hum': 111, 'destiny': 110, 'path': 110, 'romance': 109, 'human': 109, 'dive': 109, 'release': 109, 'antihero': 108, 'difference': 108, 'desperate': 108, 'accept': 108, 'fragile': 108, 'theyll': 107, 'chip': 107, 'lighter': 106, 'midnight': 106, 'animal': 106, 'string': 106, 'damage': 106, 'brake': 106, 'travel': 106, 'climb': 106, 'ahem': 106, 'swing': 105, 'thirsty': 105, 'sorrow': 105, 'patient': 105, 'surround': 105, 'shrink': 105, 'runway': 104, 'inch': 104, 'tap': 104, 'chop': 104, 'shall': 104, 'cheap': 104, 'jet': 104, 'train': 104, 'clip': 104, 'several': 104, 'protect': 104, 'nova': 103, 'ebony': 103, 'ivory': 103, 'playboy': 103, 'sunshine': 103, 'gin': 103, 'glad': 103, 'zone': 102, 'centerpiece': 102, 'prayer': 102, 'somehow': 102, 'stomach': 102, 'delete': 102, 'exactly': 102, 'piano': 102, 'confess': 102, 'twist': 102, 'fifteen': 102, 'frost': 101, 'teeth': 101, 'effect': 101, 'avoid': 101, 'venom': 101, 'dignity': 101, 'compare': 101, 'decision': 100, 'vice': 100, 'hotter': 100, 'hoodie': 100, 'joy': 100, 'para': 100, 'cleaner': 99, 'oil': 99, 'strength': 99, 'buttock': 99, 'naughty': 99, 'goal': 99, 'marijuana': 99, 'argue': 99, 'forward': 99, 'balcony': 99, 'lightweight': 98, 'competition': 98, 'knife': 98, 'rude': 98, 'shimmer': 98, 'third': 98, 'machine': 98, 'actually': 98, 'cent': 98, 'stack': 98, 'horse': 98, 'age': 97, 'near': 97, 'toto': 97, 'snore': 97, 'charge': 97, 'letter': 97, 'lean': 97, 'conversation': 97, 'martin': 97, 'ana': 97, 'actin': 96, 'bathroom': 96, 'square': 96, 'silver': 96, 'camera': 96, 'verse': 96, 'faithful': 96, 'guilty': 96, 'purple': 96, 'ton': 96, 'describe': 95, 'nerve': 95, 'rookie': 95, 'motorcycle': 95, 'chorus': 95, 'triple': 95, 'whoo': 95, 'poor': 95, 'curse': 95, 'parent': 95, 'cheat': 94, 'pride': 94, 'pant': 94, 'burst': 94, 'skirt': 94, 'flag': 94, 'heartbeat': 94, 'sneaky': 93, 'glitter': 93, 'season': 93, 'flash': 93, 'talent': 93, 'confusion': 93, 'jay': 93, 'bass': 92, 'sunlight': 92, 'invite': 92, 'iron': 92, 'islander': 92, 'necessary': 92, 'rot': 92, 'sport': 92, 'freedom': 92, 'husband': 92, 'maze': 91, 'splash': 91, 'plus': 91, 'beauty': 91, 'wrist': 91, 'coincidence': 91, 'obvious': 91, 'hungry': 91, 'book': 91, 'toast': 90, 'afternoon': 90, 'comfort': 90, 'dale': 90, 'emotion': 90, 'bra': 90, 'gray': 89, 'oh': 89, 'wallet': 89, 'seriously': 89, 'hater': 89, 'titi': 89, 'company': 89, 'tea': 89, 'steam': 88, 'older': 88, 'ignore': 88, 'judge': 88, 'gaze': 88, 'convince': 88, 'bore': 88, 'willy': 88, 'aware': 88, 'messy': 88, 'steady': 87, 'baba': 87, 'rhyme': 87, 'expect': 87, 'beyond': 87, 'dash': 86, 'cuff': 86, 'disappointment': 86, 'dandelion': 86, 'hurry': 86, 'madness': 86, 'owner': 86, 'success': 86, 'shin': 86, 'comment': 86, 'whisper': 85, 'weak': 85, 'breakfast': 85, 'york': 85, 'false': 85, 'candle': 85, 'rub': 85, 'leather': 85, 'vain': 85, 'believer': 85, 'gossip': 85, 'pin': 84, 'pen': 84, 'pierce': 84, 'tease': 84, 'tee': 84, 'gate': 84, 'bread': 84, 'crown': 84, 'pimp': 84, 'wash': 84, 'pal': 84, 'playa': 84, 'ski': 84, 'boot': 84, 'paw': 84, 'limit': 84, 'sadness': 84, 'coke': 84, 'tit': 84, 'bloom': 84, 'rag': 83, 'tall': 83, 'visit': 83, 'ouch': 83, 'click': 83, 'obviously': 83, 'snooze': 82, 'mockingbird': 82, 'piss': 82, 'yoga': 82, 'chemistry': 82, 'thirty': 82, 'ship': 82, 'reality': 82, 'warrior': 82, 'reserve': 82, 'garden': 82, 'daughter': 82, 'bracelet': 81, 'swag': 81, 'tempo': 81, 'active': 81, 'plaza': 81, 'wide': 81, 'barcelona': 81, 'shell': 81, 'vein': 81, 'bin': 81, 'choke': 81, 'lion': 81, 'sauce': 81, 'portrait': 81, 'boat': 81, 'cherry': 80, 'crib': 80, 'flat': 80, 'fish': 80, 'ease': 80, 'character': 80, 'spite': 80, 'attack': 80, 'pair': 80, 'mask': 80, 'guest': 80, 'cheek': 80, 'mountain': 80, 'north': 80, 'hop': 80, 'bitter': 80, 'banger': 79, 'blast': 79, 'shelter': 79, 'code': 79, 'trash': 79, 'afar': 79, 'pitcher': 79, 'agree': 79, 'healthy': 79, 'sincere': 79, 'pah': 79, 'voyage': 79, 'remorse': 78, 'muse': 78, 'swift': 78, 'banga': 78, 'screen': 78, 'intention': 78, 'rug': 78, 'desert': 78, 'van': 78, 'spoil': 78, 'connect': 78, 'client': 78, 'rover': 77, 'bury': 77, 'suite': 77, 'superhero': 77, 'complicate': 77, 'enroll': 77, 'caress': 77, 'bomb': 77, 'stubborn': 77, 'support': 77, 'butterfly': 77, 'orange': 76, 'gather': 76, 'debt': 76, 'pot': 76, 'scent': 76, 'choice': 76, 'slide': 76, 'location': 76, 'warmth': 76, 'devour': 76, 'album': 76, 'opportunity': 76, 'failure': 76, 'prove': 76, 'appear': 75, 'chrome': 75, 'sock': 75, 'relax': 75, 'offer': 75, 'picket': 75, 'score': 75, 'loneliness': 75, 'insane': 75, 'blade': 75, 'dinner': 75, 'undercover': 75, 'salty': 74, 'dot': 74, 'naam': 74, 'rip': 74, 'rat': 74, 'ecstasy': 74, 'handle': 74, 'vacation': 74, 'weakness': 74, 'violent': 74, 'tower': 74, 'tan': 74, 'joke': 74, 'honestly': 74, 'ghetto': 74, 'receive': 74, 'ching': 74, 'traffic': 74, 'pound': 74, 'lump': 74, 'sofa': 74, 'hat': 74, 'size': 73, 'edge': 73, 'lame': 73, 'tequila': 73, 'slip': 73, 'possible': 73, 'idiot': 73, 'sucker': 73, 'embrace': 73, 'version': 72, 'armor': 72, 'lavender': 72, 'archangel': 72, 'jordan': 72, 'horn': 72, 'base': 72, 'storm': 72, 'experience': 72, 'kitty': 72, 'pending': 72, 'colleague': 72, 'tony': 72, 'bliss': 72, 'poppy': 72, 'vie': 72, 'beam': 71, 'lease': 71, 'planet': 71, 'upset': 71, 'gaby': 71, 'con': 71, 'advantage': 71, 'fee': 71, 'thunder': 71, 'extra': 71, 'dough': 71, 'perfectly': 70, 'settle': 70, 'tremendous': 70, 'danger': 70, 'rhythm': 70, 'scratch': 70, 'perhaps': 70, 'upon': 70, 'wiggle': 70, 'owe': 70, 'demand': 70, 'fearless': 70, 'scheme': 69, 'spot': 69, 'excite': 69, 'comfortable': 69, 'mar': 69, 'opposite': 69, 'spirit': 69, 'trade': 69, 'comb': 69, 'romantic': 69, 'gram': 69, 'painful': 69, 'boo': 69, 'ban': 69, 'museum': 69, 'yam': 69, 'rubber': 68, 'pie': 68, 'miny': 68, 'dreamer': 68, 'strike': 68, 'willer': 68, 'intense': 68, 'except': 68, 'grape': 68, 'pity': 68, 'justify': 68, 'winner': 67, 'drake': 67, 'soldier': 67, 'pole': 67, 'trick': 67, 'loco': 67, 'partner': 67, 'group': 67, 'remove': 67, 'tip': 67, 'final': 67, 'exploit': 67, 'cest': 67, 'strive': 67, 'peach': 66, 'fuse': 66, 'depression': 66, 'church': 66, 'wipe': 66, 'vacuum': 66, 'ghost': 66, 'creep': 66, 'divide': 66, 'hardly': 66, 'san': 66, 'jam': 66, 'ray': 66, 'hopefully': 66, 'farmer': 65, 'device': 65, 'seal': 65, 'biggest': 65, 'smack': 65, 'prescription': 65, 'ford': 65, 'mall': 65, 'guide': 65, 'notebook': 65, 'join': 65, 'attitude': 65, 'towards': 65, 'sech': 65, 'laughter': 65, 'mary': 65, 'per': 65, 'fair': 65, 'medicine': 65, 'stray': 65, 'rodeo': 64, 'afford': 64, 'violence': 64, 'pitch': 64, 'south': 64, 'maria': 64, 'greet': 64, 'mellow': 63, 'public': 63, 'unapologetic': 63, 'rust': 63, 'gravy': 63, 'touchdown': 63, 'koi': 63, 'topic': 63, 'concert': 63, 'exist': 63, 'amaze': 63, 'bloody': 63, 'autumn': 63, 'ration': 62, 'radiant': 62, 'bust': 62, 'college': 62, 'serve': 62, 'blouse': 62, 'dizzy': 62, 'everyday': 62, 'claim': 62, 'childhood': 62, 'cure': 62, 'whether': 62, 'replace': 62, 'exclusive': 62, 'contract': 62, 'suicidal': 62, 'embarrass': 62, 'wile': 62, 'sweaty': 61, 'fighter': 61, 'blonde': 61, 'garage': 61, 'trophy': 61, 'pool': 61, 'dom': 61, 'belt': 61, 'add': 61, 'classic': 61, 'quite': 61, 'amor': 61, 'bubble': 61, 'drag': 61, 'princess': 61, 'explode': 61, 'direction': 61, 'nude': 61, 'amazement': 60, 'chalk': 60, 'prize': 60, 'ordinary': 60, 'tennis': 60, 'vulture': 60, 'bedroom': 60, 'replacement': 60, 'cortina': 60, 'hall': 60, 'sab': 60, 'mention': 60, 'missionary': 60, 'nose': 60, 'effort': 60, 'chopper': 60, 'endless': 60, 'moan': 60, 'essence': 60, 'cock': 60, 'anger': 60, 'toa': 60, 'presentiment': 60, 'current': 60, 'conform': 59, 'disguise': 59, 'papa': 59, 'meter': 59, 'pit': 59, 'famous': 59, 'physic': 59, 'pic': 59, 'image': 59, 'heave': 59, 'paranoid': 59, 'apologize': 59, 'mansion': 59, 'insist': 59, 'shooter': 59, 'artist': 59, 'satisfy': 59, 'charm': 59, 'capital': 59, 'yard': 59, 'copy': 59, 'pam': 59, 'teacher': 59, 'powder': 59, 'range': 58, 'monkey': 58, 'hain': 58, 'bridge': 58, 'lung': 58, 'panic': 58, 'distant': 58, 'advance': 58, 'pistol': 58, 'scatter': 58, 'lazy': 57, 'dish': 57, 'grace': 57, 'puzzle': 57, 'row': 57, 'oxygen': 57, 'plastic': 57, 'curve': 57, 'overtake': 57, 'bikini': 57, 'monotony': 57, 'otherwise': 57, 'slut': 57, 'honesty': 57, 'coach': 56, 'joker': 56, 'shift': 56, 'meaningless': 56, 'elevate': 56, 'criticize': 56, 'thin': 56, 'grey': 56, 'dedicate': 56, 'exchange': 56, 'tape': 56, 'measure': 56, 'address': 56, 'shore': 56, 'brave': 56, 'bah': 56, 'cage': 56, 'cruel': 56, 'smart': 56, 'resist': 56, 'peso': 56, 'snatch': 56, 'par': 56, 'dome': 56, 'machi': 56, 'coast': 55, 'narcissism': 55, 'lavish': 55, 'carat': 55, 'chart': 55, 'grand': 55, 'grudge': 55, 'invest': 55, 'fancy': 55, 'nightfall': 55, 'frown': 55, 'tremble': 55, 'fog': 55, 'weapon': 55, 'chair': 55, 'language': 55, 'trailer': 55, 'grateful': 55, 'weird': 55, 'career': 55, 'daily': 55, 'hah': 55, 'willow': 55, 'cum': 55, 'solve': 55, 'o': 55, 'forest': 55, 'coconut': 55, 'crisis': 54, 'selfish': 54, 'distinguish': 54, 'substance': 54, 'dip': 54, 'wonderful': 54, 'forbid': 54, 'revenge': 54, 'beast': 54, 'border': 54, 'favor': 54, 'bike': 54, 'karma': 54, 'option': 54, 'void': 54, 'betrayal': 54, 'fairy': 54, 'crap': 54, 'corduroy': 54, 'drift': 54, 'rocket': 53, 'unknown': 53, 'kneel': 53, 'unite': 53, 'cook': 53, 'wander': 53, 'buck': 53, 'health': 53, 'disaster': 53, 'loyal': 53, 'cast': 53, 'complain': 53, 'whiskey': 53, 'prince': 53, 'quit': 53, 'sword': 53, 'whose': 53, 'scare': 53, 'precinct': 52, 'finer': 52, 'din': 52, 'temptation': 52, 'viral': 52, 'glimpse': 52, 'watermelon': 52, 'clap': 52, 'fist': 52, 'punishment': 52, 'eighteen': 52, 'thief': 52, 'outfit': 52, 'throne': 52, 'luggage': 52, 'environment': 52, 'jealousy': 52, 'map': 52, 'hammer': 52, 'familiar': 52, 'wither': 52, 'trend': 52, 'unlock': 52, 'plug': 52, 'attic': 52, 'definitely': 52, 'quarter': 52, 'package': 52, 'quality': 52, 'proof': 52, 'groom': 52, 'respond': 51, 'context': 51, 'smudge': 51, 'modern': 51, 'writer': 51, 'sinner': 51, 'thong': 51, 'trigger': 51, 'wood': 51, 'store': 51, 'cowboy': 51, 'journey': 51, 'frontier': 51, 'captain': 51, 'nonstop': 51, 'rescue': 51, 'spell': 51, 'emergency': 51, 'loss': 51, 'counter': 51, 'dig': 51, 'shutdown': 51, 'smoker': 50, 'quote': 50, 'glorious': 50, 'jar': 50, 'casket': 50, 'motor': 50, 'usually': 50, 'strip': 50, 'genius': 50, 'aura': 50, 'rob': 50, 'hack': 50, 'pipe': 50, 'poem': 50, 'presence': 50, 'advice': 50, 'footprint': 50, 'earn': 50, 'stumble': 50, 'shock': 50, 'tough': 50, 'trance': 50, 'victory': 50, 'pandora': 50, 'franc': 50, 'housewife': 49, 'toke': 49, 'ninety': 49, 'titty': 49, 'plot': 49, 'eve': 49, 'savin': 49, 'graphic': 49, 'boulder': 49, 'vacate': 49, 'rent': 49, 'adore': 49, 'meal': 49, 'shape': 49, 'guitar': 49, 'addiction': 49, 'collect': 49, 'aire': 49, 'separate': 49, 'network': 49, 'ashamed': 49, 'juicy': 49, 'credit': 49, 'lap': 49, 'blindly': 49, 'differently': 49, 'purpose': 49, 'responsibility': 49, 'coin': 49, 'choir': 49, 'courage': 49, 'study': 49, 'strap': 49, 'robbery': 49, 'cuffin': 48, 'dink': 48, 'hurricane': 48, 'smash': 48, 'gar': 48, 'large': 48, 'hostage': 48, 'riddle': 48, 'conscience': 48, 'sleeve': 48, 'deeply': 48, 'tension': 48, 'stock': 48, 'auh': 48, 'approach': 48, 'aggressive': 48, 'scoundrel': 48, 'split': 48, 'useless': 48, 'crave': 48, 'sting': 48, 'bonbon': 48, 'natural': 48, 'vodka': 48, 'designer': 48, 'bun': 48, 'honor': 48, 'disappoint': 48, 'fourth': 48, 'faster': 48, 'lesson': 48, 'roar': 48, 'dodo': 48, 'quietly': 48, 'lai': 48, 'painter': 47, 'radar': 47, 'award': 47, 'depress': 47, 'detail': 47, 'desk': 47, 'scary': 47, 'dynamite': 47, 'groan': 47, 'disgust': 47, 'youth': 47, 'harm': 47, 'appearance': 47, 'prisoner': 47, 'wise': 47, 'clown': 47, 'aye': 47, 'humble': 47, 'midst': 47, 'president': 47, 'castle': 47, 'struggle': 47, 'reporter': 46, 'blackboard': 46, 'wraith': 46, 'savage': 46, 'straighten': 46, 'pace': 46, 'mortify': 46, 'treasury': 46, 'alleyway': 46, 'jack': 46, 'freak': 46, 'motion': 46, 'absence': 46, 'chile': 46, 'seek': 46, 'collide': 46, 'envious': 46, 'dose': 46, 'farewell': 46, 'birthday': 46, 'barely': 46, 'queue': 46, 'fifth': 46, 'miracle': 46, 'hallelujah': 46, 'master': 46, 'apparatus': 46, 'tha': 45, 'nan': 45, 'total': 45, 'biscuit': 45, 'rarely': 45, 'platinum': 45, 'huge': 45, 'net': 45, 'mass': 45, 'coat': 45, 'gasoline': 45, 'adult': 45, 'surely': 45, 'film': 45, 'label': 45, 'china': 45, 'rope': 45, 'smooth': 45, 'steer': 45, 'tot': 45, 'thumb': 45, 'feed': 45, 'oath': 45, 'aim': 45, 'mystery': 45, 'layer': 45, 'easily': 45, 'sensation': 45, 'manipulate': 44, 'period': 44, 'daze': 44, 'passport': 44, 'lovely': 44, 'county': 44, 'alarm': 44, 'eleven': 44, 'student': 44, 'halfway': 44, 'spare': 44, 'dirt': 44, 'departure': 44, 'ting': 44, 'passenger': 44, 'juice': 44, 'noose': 44, 'sweep': 44, 'royal': 44, 'adrenaline': 44, 'thigh': 44, 'request': 44, 'alibi': 43, 'brag': 43, 'penthouse': 43, 'tum': 43, 'lee': 43, 'daffodil': 43, 'fore': 43, 'belief': 43, 'mate': 43, 'usual': 43, 'omega': 43, 'singer': 43, 'rare': 43, 'bathtub': 43, 'invent': 43, 'sacrifice': 43, 'colour': 43, 'sho': 43, 'salt': 43, 'deaf': 43, 'ego': 43, 'phew': 43, 'junior': 43, 'sentence': 43, 'mon': 43, 'laun': 43, 'wagon': 42, 'backfire': 42, 'piggy': 42, 'bowl': 42, 'levitate': 42, 'needle': 42, 'engine': 42, 'farmhouse': 42, 'court': 42, 'stain': 42, 'motorboat': 42, 'minor': 42, 'deceive': 42, 'factory': 42, 'harmful': 42, 'loser': 42, 'funeral': 42, 'berlin': 42, 'fourteen': 42, 'crank': 42, 'ich': 42, 'bunch': 42, 'stretch': 42, 'lionheart': 42, 'jab': 42, 'wiser': 41, 'twirl': 41, 'dragon': 41, 'arctic': 41, 'codeine': 41, 'survive': 41, 'arrow': 41, 'movement': 41, 'anthem': 41, 'license': 41, 'sale': 41, 'opinion': 41, 'due': 41, 'upside': 41, 'medium': 41, 'bench': 41, 'breeze': 41, 'blink': 41, 'accord': 41, 'root': 41, 'dada': 41, 'soso': 41, 'backwood': 41, 'torturous': 41, 'joe': 41, 'mesh': 41, 'microphone': 41, 'east': 41, 'sensual': 41, 'crucify': 41, 'raj': 41, 'pata': 41, 'specially': 40, 'swirl': 40, 'whirl': 40, 'firsthand': 40, 'jeweler': 40, 'stab': 40, 'lewis': 40, 'flesh': 40, 'provide': 40, 'glory': 40, 'barefoot': 40, 'topless': 40, 'n': 40, 'mustache': 40, 'jacket': 40, 'bull': 40, 'abandon': 40, 'pile': 40, 'pedal': 40, 'beef': 40, 'crystal': 40, 'birth': 40, 'despite': 40, 'collar': 40, 'tasty': 40, 'celestial': 40, 'trace': 40, 'ala': 40, 'bali': 40, 'sixteen': 40, 'mou': 40, 'gall': 40, 'comforter': 40, 'articulate': 39, 'communicate': 39, 'solar': 39, 'birdie': 39, 'bump': 39, 'awaken': 39, 'pier': 39, 'puppet': 39, 'emptiness': 39, 'leadership': 39, 'underground': 39, 'entrance': 39, 'tank': 39, 'crook': 39, 'dealer': 39, 'sparkle': 39, 'horny': 39, 'tiny': 39, 'mental': 39, 'affection': 39, 'gentle': 39, 'bow': 39, 'poetry': 39, 'atmosphere': 39, 'depth': 39, 'den': 39, 'upgrade': 39, 'bullion': 39, 'edition': 38, 'scarface': 38, 'represent': 38, 'loop': 38, 'lemon': 38, 'female': 38, 'buddy': 38, 'international': 38, 'direct': 38, 'loca': 38, 'expert': 38, 'spark': 38, 'dissolve': 38, 'reply': 38, 'echo': 38, 'snake': 38, 'gush': 38, 'shield': 38, 'pon': 38, 'gentleman': 38, 'morat': 38, 'solid': 38, 'fold': 38, 'chal': 38, 'childish': 37, 'graveyard': 37, 'lamb': 37, 'khan': 37, 'chicken': 37, 'bulletproof': 37, 'dean': 37, 'arent': 37, 'invincible': 37, 'rough': 37, 'inspiration': 37, 'therapy': 37, 'male': 37, 'alley': 37, 'fence': 37, 'recognize': 37, 'accelerator': 37, 'review': 37, 'route': 37, 'pulse': 37, 'tag': 37, 'destroy': 37, 'beside': 37, 'mentality': 37, 'however': 37, 'silhouette': 37, 'electricity': 37, 'burden': 37, 'original': 37, 'sensitive': 37, 'imagination': 37, 'starlight': 37, 'summertime': 37, 'covert': 36, 'altruism': 36, 'congressman': 36, 'hefty': 36, 'trek': 36, 'zip': 36, 'ratchet': 36, 'hustle': 36, 'untouchable': 36, 'knight': 36, 'stroke': 36, 'heater': 36, 'highest': 36, 'glance': 36, 'pale': 36, 'samba': 36, 'squeal': 36, 'debate': 36, 'peak': 36, 'tint': 36, 'coco': 36, 'grandma': 36, 'pencil': 36, 'treason': 36, 'gunshot': 36, 'grip': 36, 'hash': 36, 'bush': 36, 'heroin': 36, 'lake': 36, 'create': 36, 'lullaby': 36, 'nature': 36, 'tick': 36, 'sha': 36, 'equal': 36, 'phenomenal': 36, 'pique': 36, 'sway': 36, 'treasure': 36, 'boil': 36, 'brick': 36, 'thump': 36, 'overweight': 35, 'grocery': 35, 'woe': 35, 'pacific': 35, 'underneath': 35, 'younger': 35, 'blurry': 35, 'wicked': 35, 'tone': 35, 'background': 35, 'colder': 35, 'bat': 35, 'crawl': 35, 'torment': 35, 'threesome': 35, 'slave': 35, 'tense': 35, 'condition': 35, 'confirm': 35, 'file': 35, 'station': 35, 'bind': 35, 'command': 35, 'distract': 35, 'aside': 35, 'volume': 35, 'reflect': 35, 'underwear': 35, 'mana': 35, 'pearl': 35, 'contagious': 35, 'roadster': 34, 'valedictorian': 34, 'cape': 34, 'wage': 34, 'battery': 34, 'friendship': 34, 'pepper': 34, 'smith': 34, 'backwards': 34, 'session': 34, 'salad': 34, 'button': 34, 'confidence': 34, 'speech': 34, 'invitation': 34, 'hookah': 34, 'sixty': 34, 'driver': 34, 'project': 34, 'sunny': 34, 'airplane': 34, 'bon': 34, 'core': 34, 'rainy': 34, 'fever': 34, 'glue': 34, 'chat': 34, 'kai': 34, 'generation': 34, 'visa': 34, 'diet': 34, 'butt': 34, 'luxury': 34, 'softly': 34, 'chic': 34, 'prison': 34, 'bark': 34, 'caroline': 34, 'turbo': 33, 'powerful': 33, 'exception': 33, 'lend': 33, 'egg': 33, 'syrup': 33, 'anxious': 33, 'anxiety': 33, 'undue': 33, 'aka': 33, 'repair': 33, 'sudden': 33, 'discover': 33, 'practice': 33, 'discus': 33, 'peter': 33, 'flirt': 33, 'yea': 33, 'milk': 33, 'wah': 33, 'sideways': 33, 'curiosity': 33, 'pablo': 33, 'towel': 33, 'necklace': 33, 'bando': 33, 'chapter': 33, 'kan': 33, 'bob': 32, 'chiropractor': 32, 'athlete': 32, 'exotic': 32, 'portable': 32, 'devotion': 32, 'spear': 32, 'chin': 32, 'optimistic': 32, 'doggy': 32, 'intimacy': 32, 'monthly': 32, 'rainbow': 32, 'prepare': 32, 'hoop': 32, 'allow': 32, 'incredible': 32, 'battle': 32, 'sleepy': 32, 'pump': 32, 'elite': 32, 'sole': 32, 'brush': 32, 'supreme': 32, 'surrender': 32, 'bath': 32, 'german': 32, 'goat': 32, 'hospital': 32, 'nervous': 32, 'windy': 32, 'barrel': 32, 'solo': 32, 'motel': 32, 'rancor': 32, 'telephone': 32, 'easier': 32, 'maya': 32, 'labium': 32, 'cooky': 32, 'self': 32, 'iconic': 32, 'tug': 32, 'glover': 31, 'professional': 31, 'mob': 31, 'jewel': 31, 'reflection': 31, 'obligatory': 31, 'unblock': 31, 'strawberry': 31, 'cousin': 31, 'rumble': 31, 'professor': 31, 'spank': 31, 'madman': 31, 'common': 31, 'despair': 31, 'shower': 31, 'kindergarten': 31, 'reward': 31, 'duck': 31, 'grandmother': 31, 'takin': 31, 'dis': 31, 'degree': 31, 'grapefruit': 31, 'rum': 31, 'puff': 31, 'ben': 31, 'aunt': 31, 'reckless': 31, 'register': 31, 'tippy': 31, 'worthless': 31, 'mallet': 31, 'peel': 31, 'sigh': 31, 'onto': 31, 'appreciate': 31, 'underestimate': 30, 'multiple': 30, 'floss': 30, 'lotion': 30, 'rural': 30, 'annual': 30, 'uncover': 30, 'diesel': 30, 'restless': 30, 'maroon': 30, 'flavor': 30, 'armchair': 30, 'dessert': 30, 'permission': 30, 'tranquilizer': 30, 'height': 30, 'picky': 30, 'bora': 30, 'boob': 30, 'event': 30, 'sharp': 30, 'getaway': 30, 'swish': 30, 'dice': 30, 'cavalry': 30, 'sie': 30, 'mac': 30, 'dar': 30, 'elsewhere': 30, 'cola': 30, 'stair': 30, 'standard': 30, 'tonic': 30, 'praise': 30, 'absent': 30, 'nicky': 30, 'expand': 30, 'bach': 30, 'quantum': 29, 'caller': 29, 'additionally': 29, 'promptly': 29, 'cole': 29, 'gently': 29, 'haunt': 29, 'ritual': 29, 'pilot': 29, 'pina': 29, 'automatic': 29, 'implant': 29, 'parallel': 29, 'sail': 29, 'accidentally': 29, 'mole': 29, 'humanity': 29, 'mermaid': 29, 'entire': 29, 'holiday': 29, 'destination': 29, 'improve': 29, 'grandpa': 29, 'polish': 29, 'personal': 29, 'shotgun': 29, 'nope': 29, 'gain': 29, 'flip': 29, 'insult': 29, 'grade': 29, 'celebrity': 29, 'perfection': 29, 'misery': 29, 'terrible': 29, 'rewind': 29, 'extend': 29, 'tiger': 29, 'goddess': 29, 'camouflage': 29, 'zorro': 29, 'drawer': 29, 'instinct': 29, 'firm': 29, 'ugh': 29, 'overcome': 29, 'dull': 29, 'interrupt': 29, 'cigar': 29, 'metal': 29, 'vita': 29, 'mila': 29, 'dali': 29, 'blanket': 28, 'division': 28, 'vet': 28, 'flyer': 28, 'parachute': 28, 'erotic': 28, 'ava': 28, 'hollow': 28, 'freeway': 28, 'attend': 28, 'punish': 28, 'showcase': 28, 'explicit': 28, 'report': 28, 'truly': 28, 'sleepless': 28, 'disease': 28, 'montana': 28, 'pro': 28, 'similar': 28, 'series': 28, 'content': 28, 'blur': 28, 'era': 28, 'discount': 28, 'guilt': 28, 'applause': 28, 'buzz': 28, 'liver': 28, 'cinnamon': 28, 'rate': 28, 'arrival': 28, 'pew': 28, 'mobile': 28, 'rifle': 28, 'cooper': 28, 'gap': 28, 'manage': 28, 'ballad': 28, 'restaurant': 28, 'expectation': 28, 'warn': 28, 'firework': 28, 'bouquet': 28, 'jazz': 28, 'yuh': 28, 'board': 28, 'teck': 28, 'separation': 28, 'thick': 28, 'putt': 28, 'clutch': 27, 'cozy': 27, 'wisely': 27, 'demi': 27, 'nit': 27, 'tourist': 27, 'bully': 27, 'combination': 27, 'routine': 27, 'leader': 27, 'pod': 27, 'priceless': 27, 'offend': 27, 'tempt': 27, 'willet': 27, 'estate': 27, 'deliver': 27, 'ache': 27, 'unfurl': 27, 'hurl': 27, 'companion': 27, 'hatred': 27, 'available': 27, 'nostalgia': 27, 'bake': 27, 'buckle': 27, 'member': 27, 'peda': 27, 'transparent': 27, 'compete': 27, 'brazil': 27, 'conquer': 27, 'thorn': 27, 'sticky': 27, 'ale': 27, 'butter': 27, 'poisonous': 27, 'naa': 27, 'sen': 27, 'general': 27, 'jiggy': 27, 'chemical': 27, 'fin': 27, 'lolly': 27, 'paranoia': 26, 'tracker': 26, 'clone': 26, 'baccarat': 26, 'coupon': 26, 'hath': 26, 'waisted': 26, 'bride': 26, 'berry': 26, 'appetite': 26, 'lace': 26, 'glove': 26, 'avenue': 26, 'infinite': 26, 'windshield': 26, 'phenomenon': 26, 'opponent': 26, 'collection': 26, 'resume': 26, 'squad': 26, 'quiles': 26, 'conceptual': 26, 'straw': 26, 'petal': 26, 'frame': 26, 'starry': 26, 'cuss': 26, 'poker': 26, 'closet': 26, 'cab': 26, 'shiny': 26, 'profit': 26, 'target': 26, 'euphoria': 26, 'precious': 26, 'plebe': 26, 'bartender': 26, 'hail': 26, 'pajama': 26, 'mule': 26, 'soak': 26, 'crew': 26, 'influential': 26, 'update': 26, 'superior': 26, 'knot': 26, 'kite': 26, 'troop': 26, 'consider': 26, 'southern': 26, 'panther': 26, 'chocolate': 26, 'formula': 26, 'slope': 26, 'tal': 26, 'nun': 26, 'crunk': 25, 'mush': 25, 'vanish': 25, 'cow': 25, 'reaper': 25, 'enlighten': 25, 'perry': 25, 'japan': 25, 'canary': 25, 'muddy': 25, 'basic': 25, 'curious': 25, 'convertible': 25, 'bait': 25, 'solution': 25, 'mike': 25, 'random': 25, 'sol': 25, 'comet': 25, 'negative': 25, 'downtown': 25, 'develop': 25, 'curtain': 25, 'lawsuit': 25, 'ist': 25, 'corona': 25, 'meek': 25, 'surface': 25, 'balloon': 25, 'banana': 25, 'lust': 25, 'instant': 25, 'pad': 25, 'data': 25, 'helmet': 25, 'lottery': 25, 'coffin': 25, 'alpha': 25, 'replay': 25, 'suspect': 25, 'icy': 25, 'vulnerable': 25, 'chaos': 25, 'silently': 25, 'grandfather': 25, 'eventually': 25, 'heartbreak': 25, 'pupil': 25, 'das': 25, 'jehu': 25, 'flea': 24, 'reciprocate': 24, 'echelon': 24, 'unapproachable': 24, 'loaf': 24, 'complacent': 24, 'patiently': 24, 'greed': 24, 'raw': 24, 'freaky': 24, 'morris': 24, 'bruise': 24, 'scandal': 24, 'devilish': 24, 'divine': 24, 'bud': 24, 'mute': 24, 'concern': 24, 'auto': 24, 'lamp': 24, 'selfishness': 24, 'profession': 24, 'besides': 24, 'issue': 24, 'revolution': 24, 'lab': 24, 'authentic': 24, 'unpublished': 24, 'clarify': 24, 'decadent': 24, 'henny': 24, 'carefully': 24, 'wallah': 24, 'marvel': 24, 'producer': 24, 'revel': 24, 'nuisance': 24, 'sheep': 24, 'shelf': 24, 'galaxy': 24, 'secretly': 24, 'magazine': 24, 'torture': 24, 'branch': 24, 'dam': 24, 'agony': 24, 'benefit': 24, 'industry': 24, 'gonorrhea': 24, 'graduate': 24, 'accelerate': 24, 'pointless': 24, 'countless': 24, 'possibility': 24, 'waterman': 24, 'beamer': 24, 'immediately': 24, 'chevy': 24, 'presidential': 24, 'lemonade': 24, 'strangely': 24, 'quey': 24, 'tun': 24, 'sten': 24, 'overflow': 24, 'ignition': 24, 'shah': 24, 'ness': 24, 'soja': 24, 'yahoo': 23, 'broccoli': 23, 'benjamin': 23, 'couch': 23, 'withdrawal': 23, 'ink': 23, 'silicone': 23, 'alan': 23, 'genre': 23, 'fox': 23, 'tummy': 23, 'cough': 23, 'bizarre': 23, 'scissor': 23, 'channel': 23, 'yale': 23, 'grandparent': 23, 'shampoo': 23, 'government': 23, 'recipe': 23, 'thirteen': 23, 'satellite': 23, 'entangle': 23, 'sickness': 23, 'exit': 23, 'sapphire': 23, 'florence': 23, 'abuse': 23, 'masochist': 23, 'braid': 23, 'sneaker': 23, 'slice': 23, 'rebel': 23, 'obscene': 23, 'emotional': 23, 'undo': 23, 'percent': 23, 'valley': 23, 'punk': 23, 'ammo': 23, 'compass': 23, 'jewelry': 23, 'infinity': 23, 'fuss': 23, 'caliber': 23, 'loot': 23, 'solitude': 23, 'proposal': 23, 'brigade': 23, 'orphan': 23, 'wheeler': 23, 'accompany': 23, 'saga': 23, 'appointment': 23, 'lina': 23, 'elevator': 23, 'mount': 23, 'blush': 23, 'patrol': 23, 'dilate': 23, 'password': 23, 'kithe': 23, 'bal': 23, 'hoon': 23, 'poco': 22, 'unsad': 22, 'octave': 22, 'sunglass': 22, 'beautifully': 22, 'attach': 22, 'owl': 22, 'ambition': 22, 'forehead': 22, 'moonlit': 22, 'depart': 22, 'denim': 22, 'zombie': 22, 'suspicion': 22, 'legendary': 22, 'twitter': 22, 'apparently': 22, 'traitor': 22, 'restlessness': 22, 'rave': 22, 'sum': 22, 'annoy': 22, 'loudly': 22, 'defend': 22, 'manner': 22, 'gata': 22, 'resentment': 22, 'whine': 22, 'punta': 22, 'camel': 22, 'philosophy': 22, 'bare': 22, 'unfortunately': 22, 'kingdom': 22, 'stadium': 22, 'entertainment': 22, 'carpet': 22, 'rage': 22, 'poster': 22, 'gamble': 22, 'wrestle': 22, 'distraction': 22, 'antenna': 22, 'apache': 22, 'source': 22, 'poet': 22, 'sentimental': 22, 'sade': 22, 'seventeen': 22, 'non': 22, 'ace': 22, 'certain': 22, 'footstep': 22, 'design': 22, 'extinguish': 22, 'salvation': 22, 'dial': 22, 'breast': 22, 'sour': 22, 'punch': 22, 'succeed': 22, 'delay': 22, 'fleet': 22, 'faint': 22, 'clumsy': 22, 'encounter': 22, 'gringo': 22, 'taffy': 22, 'rudeness': 22, 'flaw': 22, 'express': 22, 'mandrake': 22, 'relative': 22, 'worship': 22, 'response': 22, 'reborn': 22, 'console': 22, 'whistle': 22, 'mud': 22, 'tender': 22, 'certify': 22, 'sooner': 22, 'filter': 22, 'satire': 22, 'serum': 22, 'stream': 22, 'daydream': 22, 'jersey': 22, 'menu': 22, 'psychopath': 22, 'eighty': 22, 'chap': 22, 'beloved': 22, 'rely': 22, 'unnecessary': 22, 'daylight': 21, 'hypersonic': 21, 'wale': 21, 'gal': 21, 'pinky': 21, 'leap': 21, 'robe': 21, 'greatness': 21, 'buzzer': 21, 'hitter': 21, 'nectar': 21, 'wack': 21, 'snail': 21, 'nosy': 21, 'comparison': 21, 'eminence': 21, 'nakedness': 21, 'independent': 21, 'fag': 21, 'cabin': 21, 'helpless': 21, 'catastrophe': 21, 'emerge': 21, 'scooter': 21, 'wreck': 21, 'fingertip': 21, 'dew': 21, 'headlight': 21, 'shee': 21, 'eager': 21, 'memo': 21, 'knit': 21, 'safety': 21, 'shovel': 21, 'kindness': 21, 'razor': 21, 'mourn': 21, 'inner': 21, 'thread': 21, 'bel': 21, 'admire': 21, 'major': 21, 'existence': 21, 'plank': 21, 'march': 21, 'bond': 21, 'motto': 21, 'log': 21, 'goodness': 21, 'result': 21, 'delinquent': 21, 'shave': 21, 'steel': 21, 'identity': 21, 'forgetfulness': 21, 'tide': 21, 'landscape': 21, 'whoop': 21, 'jag': 20, 'regular': 20, 'teen': 20, 'leash': 20, 'dread': 20, 'stepper': 20, 'tend': 20, 'handcuff': 20, 'reject': 20, 'che': 20, 'cone': 20, 'genetic': 20, 'theme': 20, 'office': 20, 'infant': 20, 'beater': 20, 'calculate': 20, 'pirate': 20, 'introduce': 20, 'especially': 20, 'idol': 20, 'error': 20, 'pig': 20, 'rival': 20, 'dump': 20, 'thirst': 20, 'uncontrollable': 20, 'gesture': 20, 'concentrate': 20, 'budget': 20, 'unlucky': 20, 'vest': 20, 'simply': 20, 'depend': 20, 'booze': 20, 'booth': 20, 'define': 20, 'lightning': 20, 'symbol': 20, 'unstuck': 20, 'port': 20, 'flawless': 20, 'travis': 20, 'mend': 20, 'pat': 20, 'increase': 20, 'concrete': 20, 'magical': 20, 'urus': 20, 'nation': 20, 'groove': 20, 'curry': 20, 'circus': 20, 'borrow': 20, 'sake': 20, 'spray': 20, 'chucky': 20, 'spicy': 20, 'mischief': 20, 'paste': 20, 'flee': 20, 'worthy': 20, 'ideal': 20, 'foul': 20, 'cliff': 20, 'religion': 20, 'swamp': 20, 'profile': 20, 'paca': 20, 'polo': 20, 'august': 20, 'customer': 20, 'casino': 20, 'succulent': 20, 'origin': 20, 'dictate': 20, 'proudly': 20, 'ame': 20, 'doc': 20, 'mage': 19, 'argument': 19, 'bee': 19, 'pursue': 19, 'helicopter': 19, 'sneak': 19, 'assault': 19, 'endurance': 19, 'gusty': 19, 'purr': 19, 'gear': 19, 'arca': 19, 'neverland': 19, 'yap': 19, 'grinch': 19, 'grandson': 19, 'gypsy': 19, 'jeopardize': 19, 'arrest': 19, 'airport': 19, 'girasole': 19, 'kinky': 19, 'trustworthy': 19, 'malice': 19, 'turbulence': 19, 'produce': 19, 'giant': 19, 'trumpet': 19, 'simplicity': 19, 'exaggerate': 19, 'naive': 19, 'sniff': 19, 'suitcase': 19, 'cattle': 19, 'pizza': 19, 'safari': 19, 'dilemma': 19, 'harmony': 19, 'kim': 19, 'coal': 19, 'wisdom': 19, 'bloodstain': 19, 'electric': 19, 'carve': 19, 'nest': 19, 'correct': 19, 'prophet': 19, 'dispute': 19, 'bleacher': 19, 'underwater': 19, 'reel': 19, 'defeat': 19, 'mina': 19, 'bid': 19, 'closely': 19, 'relieve': 19, 'stink': 19, 'principle': 19, 'untold': 19, 'various': 19, 'affect': 19, 'poverty': 19, 'minus': 19, 'lava': 19, 'howl': 19, 'swerve': 19, 'contrary': 19, 'overdose': 19, 'canal': 19, 'rational': 19, 'reh': 19, 'dabb': 19, 'tri': 19, 'jane': 18, 'bean': 18, 'insecure': 18, 'twin': 18, 'nameless': 18, 'confident': 18, 'mil': 18, 'openly': 18, 'ubi': 18, 'ken': 18, 'accustom': 18, 'rout': 18, 'roast': 18, 'uncomfortable': 18, 'propose': 18, 'pardon': 18, 'outstanding': 18, 'challenge': 18, 'host': 18, 'comeback': 18, 'concept': 18, 'gat': 18, 'grant': 18, 'personality': 18, 'drool': 18, 'absurd': 18, 'pause': 18, 'patch': 18, 'stamen': 18, 'mor': 18, 'cere': 18, 'pone': 18, 'speaker': 18, 'accent': 18, 'unmake': 18, 'negligence': 18, 'abstinence': 18, 'permanence': 18, 'greedy': 18, 'nodal': 18, 'oppose': 18, 'delicately': 18, 'perverse': 18, 'translator': 18, 'nebula': 18, 'visage': 18, 'overnight': 18, 'sympathy': 18, 'ambulance': 18, 'district': 18, 'rim': 18, 'deuce': 18, 'visionary': 18, 'remedy': 18, 'cannibal': 18, 'creak': 18, 'proceed': 18, 'edit': 18, 'army': 18, 'banshee': 18, 'stir': 18, 'penny': 18, 'carefree': 18, 'noon': 18, 'warsaw': 18, 'tin': 18, 'mint': 18, 'loyalty': 18, 'purse': 18, 'lovesick': 18, 'tantrum': 18, 'attempt': 18, 'pineapple': 18, 'virgin': 18, 'mainly': 18, 'temper': 18, 'ama': 18, 'dodge': 18, 'micro': 18, 'waterfall': 18, 'melancholy': 18, 'yacht': 18, 'therefore': 18, 'fortune': 18, 'squat': 18, 'impala': 18, 'premiere': 18, 'naturally': 18, 'unique': 18, 'servant': 18, 'amount': 18, 'min': 18, 'sore': 18, 'suffocate': 18, 'ope': 18, 'unfinished': 18, 'dun': 18, 'underdog': 18, 'girlie': 18, 'foggy': 18, 'notion': 17, 'potato': 17, 'privacy': 17, 'lacy': 17, 'irrelevant': 17, 'spiral': 17, 'mattress': 17, 'compressor': 17, 'valentine': 17, 'indulge': 17, 'retire': 17, 'sincerely': 17, 'anonymously': 17, 'dimension': 17, 'circulate': 17, 'collapse': 17, 'traveler': 17, 'cloudy': 17, 'rebellious': 17, 'kin': 17, 'constantly': 17, 'sponsor': 17, 'clearer': 17, 'humility': 17, 'neo': 17, 'down': 17, 'soap': 17, 'abroad': 17, 'chuck': 17, 'forth': 17, 'awesome': 17, 'operate': 17, 'moose': 17, 'horizon': 17, 'excess': 17, 'ridiculous': 17, 'seduce': 17, 'normally': 17, 'indeed': 17, 'wheelbarrow': 17, 'blank': 17, 'engrave': 17, 'freezer': 17, 'yummy': 17, 'plant': 17, 'highlight': 17, 'mouse': 17, 'endure': 17, 'doubtful': 17, 'veiny': 17, 'crunchy': 17, 'coverage': 17, 'eme': 17, 'privilege': 17, 'myth': 17, 'invisible': 17, 'gallop': 17, 'connection': 17, 'brat': 17, 'nigger': 17, 'fragment': 17, 'sprite': 17, 'stamp': 17, 'rick': 17, 'hobby': 17, 'monte': 17, 'recently': 17, 'nod': 17, 'cho': 17, 'raindrop': 17, 'lookout': 17, 'vera': 17, 'cling': 17, 'official': 17, 'abdomen': 17, 'protection': 17, 'jellyfish': 17, 'be': 17, 'snitch': 17, 'complaint': 17, 'reveal': 17, 'legal': 17, 'anniversary': 17, 'bucket': 17, 'vanity': 17, 'acid': 17, 'ember': 17, 'denial': 17, 'scenery': 17, 'geet': 17, 'tou': 17, 'scoop': 17, 'persona': 16, 'pager': 16, 'khair': 16, 'rendezvous': 16, 'potion': 16, 'unchanging': 16, 'liter': 16, 'ballet': 16, 'initial': 16, 'unconditionally': 16, 'moony': 16, 'society': 16, 'prophecy': 16, 'gradually': 16, 'silk': 16, 'fruit': 16, 'progress': 16, 'tray': 16, 'chichi': 16, 'audience': 16, 'sly': 16, 'sow': 16, 'cayenne': 16, 'grin': 16, 'mailbox': 16, 'posse': 16, 'skip': 16, 'afterwards': 16, 'gimmick': 16, 'pollute': 16, 'pleasant': 16, 'hump': 16, 'audio': 16, 'nurse': 16, 'mist': 16, 'pregnant': 16, 'deed': 16, 'heartbroken': 16, 'cloth': 16, 'defense': 16, 'likely': 16, 'ticktock': 16, 'bazaar': 16, 'pan': 16, 'pest': 16, 'pasha': 16, 'fitness': 16, 'daisy': 16, 'tweet': 16, 'paisa': 16, 'cornerstone': 16, 'murderous': 16, 'poodle': 16, 'goo': 16, 'curly': 16, 'national': 16, 'actress': 16, 'slum': 16, 'porch': 16, 'laser': 16, 'clout': 16, 'auxiliary': 16, 'multiply': 16, 'military': 16, 'domino': 16, 'weigh': 16, 'guardian': 16, 'coupe': 16, 'bitterness': 16, 'rewrite': 16, 'hay': 16, 'earring': 16, 'nap': 16, 'revive': 16, 'positive': 16, 'sog': 16, 'lily': 16, 'orchid': 16, 'swipe': 16, 'ding': 16, 'profligacy': 16, 'melon': 16, 'crow': 16, 'acquaintance': 16, 'costume': 16, 'convey': 16, 'blossom': 16, 'reaction': 16, 'yaya': 16, 'ram': 16, 'assure': 16, 'vex': 16, 'banda': 16, 'retreat': 16, 'flutter': 16, 'heather': 16, 'impurity': 16, 'testify': 15, 'overdrive': 15, 'rotate': 15, 'pee': 15, 'walker': 15, 'temperature': 15, 'bulge': 15, 'attendant': 15, 'apocalypse': 15, 'zeta': 15, 'argentine': 15, 'anti': 15, 'tao': 15, 'carnival': 15, 'doublet': 15, 'stutter': 15, 'theater': 15, 'actor': 15, 'condemn': 15, 'fountain': 15, 'element': 15, 'stormy': 15, 'vomit': 15, 'unhappy': 15, 'masterpiece': 15, 'friendly': 15, 'tax': 15, 'brim': 15, 'bathe': 15, 'frighten': 15, 'toilet': 15, 'rocky': 15, 'norm': 15, 'soda': 15, 'limp': 15, 'educate': 15, 'kamikaze': 15, 'jade': 15, 'simmer': 15, 'homesick': 15, 'cave': 15, 'performance': 15, 'can': 15, 'cargo': 15, 'computer': 15, 'betray': 15, 'nut': 15, 'gut': 15, 'businessman': 15, 'cinema': 15, 'manager': 15, 'endlessly': 15, 'mat': 15, 'trial': 15, 'fully': 15, 'downstairs': 15, 'sec': 15, 'dop': 15, 'frog': 15, 'abuser': 15, 'crossover': 15, 'server': 15, 'excellent': 15, 'allergy': 15, 'provoke': 15, 'studious': 15, 'shaman': 15, 'expression': 15, 'hasta': 15, 'mano': 15, 'noisy': 15, 'salon': 15, 'century': 15, 'valid': 15, 'frequency': 15, 'passionate': 15, 'stupidly': 15, 'pac': 15, 'nae': 15, 'fellow': 15, 'feast': 15, 'undefeated': 15, 'disturb': 15, 'speck': 15, 'enchant': 15, 'vibrate': 15, 'fury': 15, 'unfaithful': 15, 'stylish': 15, 'cancer': 15, 'rice': 15, 'status': 15, 'whale': 15, 'passe': 15, 'rumor': 15, 'knowledge': 15, 'wound': 15, 'hint': 15, 'cam': 15, 'hin': 15, 'delusion': 15, 'bande': 15, 'vair': 15, 'mysterious': 15, 'madder': 15, 'rani': 15, 'tuck': 14, 'mindless': 14, 'satan': 14, 'kidnap': 14, 'throughout': 14, 'parrot': 14, 'sweetie': 14, 'untie': 14, 'friction': 14, 'complex': 14, 'willfully': 14, 'eyelid': 14, 'aby': 14, 'wick': 14, 'rio': 14, 'fatal': 14, 'commitment': 14, 'opera': 14, 'potter': 14, 'bloodshot': 14, 'fantastic': 14, 'messenger': 14, 'seventh': 14, 'meanwhile': 14, 'clique': 14, 'fry': 14, 'trice': 14, 'hellion': 14, 'bask': 14, 'splinter': 14, 'taskit': 14, 'suspenseful': 14, 'selfishly': 14, 'wealthy': 14, 'sandal': 14, 'dentist': 14, 'magician': 14, 'basement': 14, 'pinch': 14, 'mir': 14, 'bluff': 14, 'luke': 14, 'heavily': 14, 'plaque': 14, 'behavior': 14, 'stitch': 14, 'service': 14, 'reproach': 14, 'diddy': 14, 'penetrate': 14, 'maniac': 14, 'coward': 14, 'wallpaper': 14, 'swell': 14, 'bundle': 14, 'unstable': 14, 'unlike': 14, 'bose': 14, 'frenzy': 14, 'capacity': 14, 'seize': 14, 'roe': 14, 'convenient': 14, 'whim': 14, 'whereabouts': 14, 'material': 14, 'parade': 14, 'repress': 14, 'launch': 14, 'reverse': 14, 'trail': 14, 'speechless': 14, 'tram': 14, 'fiction': 14, 'hypnotize': 14, 'clan': 14, 'kilometer': 14, 'chef': 14, 'gra': 14, 'comedian': 14, 'elder': 14, 'lawyer': 14, 'salary': 14, 'witch': 14, 'violin': 14, 'plop': 14, 'wad': 14, 'toad': 14, 'justice': 14, 'bittersweet': 14, 'extraordinary': 14, 'resolve': 14, 'toi': 14, 'chalet': 14, 'insecurity': 14, 'magnet': 14, 'marathon': 14, 'palace': 14, 'sou': 14, 'dab': 14, 'halal': 14, 'lollipop': 14, 'blend': 14, 'intersection': 14, 'virtual': 14, 'baller': 14, 'eternity': 14, 'northern': 14, 'soy': 14, 'drain': 14, 'beret': 14, 'quarrel': 14, 'stash': 14, 'expose': 14, 'ketchup': 14, 'commander': 14, 'sexual': 14, 'dazzle': 14, 'boundary': 14, 'unquenchable': 14, 'mane': 14, 'keeper': 14, 'bedside': 14, 'desi': 14, 'dharma': 14, 'fragrant': 14, 'alight': 14, 'sope': 14, 'flair': 14, 'righteous': 13, 'confidential': 13, 'aroma': 13, 'rowdy': 13, 'innocence': 13, 'teardrop': 13, 'globe': 13, 'bane': 13, 'yang': 13, 'pelvis': 13, 'streak': 13, 'elbow': 13, 'carnal': 13, 'tinder': 13, 'blaze': 13, 'marc': 13, 'example': 13, 'laundry': 13, 'product': 13, 'tenderness': 13, 'vol': 13, 'pear': 13, 'bold': 13, 'arrogant': 13, 'hardship': 13, 'calmly': 13, 'dexter': 13, 'accident': 13, 'ass': 13, 'dummy': 13, 'adrift': 13, 'mandarin': 13, 'turkey': 13, 'program': 13, 'handful': 13, 'packet': 13, 'prick': 13, 'ping': 13, 'cautious': 13, 'ally': 13, 'backstage': 13, 'revolutionary': 13, 'tommy': 13, 'feminist': 13, 'discovery': 13, 'antidote': 13, 'onion': 13, 'arise': 13, 'arsenal': 13, 'morgan': 13, 'shaky': 13, 'cancel': 13, 'defensive': 13, 'script': 13, 'stale': 13, 'soup': 13, 'you': 13, 'wheat': 13, 'weave': 13, 'dunce': 13, 'mala': 13, 'weld': 13, 'hedgehog': 13, 'gender': 13, 'sterling': 13, 'breed': 13, 'finesse': 13, 'interfere': 13, 'moral': 13, 'herd': 13, 'subject': 13, 'dime': 13, 'cadi': 13, 'bonus': 13, 'trunk': 13, 'curl': 13, 'tooth': 13, 'inspire': 13, 'cora': 13, 'singular': 13, 'furious': 13, 'attraction': 13, 'fashionable': 13, 'lunch': 13, 'dolly': 13, 'impress': 13, 'tool': 13, 'pout': 13, 'fur': 13, 'asphalt': 13, 'dominate': 13, 'popcorn': 13, 'staff': 13, 'heavenly': 13, 'marina': 13, 'huckster': 13, 'inadequate': 13, 'liquid': 13, 'snack': 13, 'dozen': 13, 'anime': 13, 'muscle': 13, 'potential': 13, 'colorado': 13, 'canvas': 13, 'scorch': 13, 'certainly': 13, 'tango': 13, 'comma': 13, 'riot': 13, 'fam': 13, 'hound': 13, 'furied': 13, 'decorate': 13, 'tai': 13, 'stripper': 13, 'unexpected': 13, 'irresistible': 13, 'unread': 13, 'rooster': 13, 'dolphin': 13, 'yalla': 13, 'creature': 13, 'circumstance': 13, 'possess': 13, 'corridor': 13, 'slander': 13, 'deluxe': 13, 'chief': 13, 'nicotine': 13, 'elegant': 13, 'malo': 13, 'mischievous': 13, 'applaud': 13, 'seed': 13, 'biography': 13, 'glen': 13, 'mum': 13, 'happily': 13, 'casualty': 13, 'lightly': 13, 'reasonable': 13, 'wrinkle': 13, 'cocktail': 13, 'humbly': 13, 'risky': 13, 'cherish': 13, 'trivial': 13, 'slay': 13, 'sect': 13, 'puck': 13, 'momentary': 13, 'apology': 13, 'ref': 13, 'pattu': 13, 'bile': 13, 'borderline': 13, 'moody': 12, 'notable': 12, 'wetter': 12, 'tate': 12, 'sam': 12, 'vow': 12, 'eel': 12, 'technique': 12, 'mail': 12, 'alert': 12, 'ankle': 12, 'serf': 12, 'mustang': 12, 'agent': 12, 'frank': 12, 'skull': 12, 'conflict': 12, 'garbage': 12, 'volcano': 12, 'poop': 12, 'scale': 12, 'buffet': 12, 'panorama': 12, 'mister': 12, 'utopia': 12, 'mack': 12, 'distribute': 12, 'jimmy': 12, 'bobby': 12, 'climate': 12, 'broker': 12, 'legacy': 12, 'dusk': 12, 'anticipation': 12, 'precipitation': 12, 'indigo': 12, 'threaten': 12, 'duty': 12, 'grief': 12, 'engineer': 12, 'vermin': 12, 'decrescendo': 12, 'costa': 12, 'headrest': 12, 'sorrel': 12, 'icon': 12, 'raptor': 12, 'finland': 12, 'bail': 12, 'agenda': 12, 'tat': 12, 'constant': 12, 'rebellion': 12, 'gallon': 12, 'torque': 12, 'fright': 12, 'defiant': 12, 'dispenser': 12, 'novel': 12, 'pendant': 12, 'outburst': 12, 'sidewalk': 12, 'occasion': 12, 'catwalk': 12, 'compose': 12, 'pawn': 12, 'security': 12, 'residue': 12, 'fraud': 12, 'lam': 12, 'boost': 12, 'department': 12, 'zoom': 12, 'holla': 12, 'pub': 12, 'muzzle': 12, 'rib': 12, 'drone': 12, 'rede': 12, 'bale': 12, 'reputation': 12, 'lens': 12, 'temporary': 12, 'tube': 12, 'survivor': 12, 'skate': 12, 'jolt': 12, 'caramel': 12, 'boss': 12, 'harsh': 12, 'nostril': 12, 'toss': 12, 'outcast': 12, 'currency': 12, 'astray': 12, 'ganja': 12, 'crop': 12, 'suicide': 12, 'surpass': 12, 'thereover': 12, 'hereunder': 12, 'chimney': 12, 'preach': 12, 'creator': 12, 'ozone': 12, 'forge': 12, 'chord': 12, 'robber': 12, 'lade': 12, 'subside': 12, 'persuasive': 12, 'jerkin': 12, 'yaba': 12, 'soil': 12, 'headache': 12, 'camp': 12, 'information': 12, 'symphony': 12, 'spud': 12, 'promoter': 12, 'feather': 12, 'descendant': 12, 'phantom': 12, 'ruthless': 12, 'temporarily': 12, 'enthusiasm': 12, 'dim': 12, 'polyester': 12, 'karo': 12, 'fir': 12, 'hone': 12, 'sare': 12, 'kaka': 12, 'chad': 12, 'bobo': 12, 'baa': 12, 'clunk': 12, 'ewe': 12, 'yahan': 11, 'twain': 11, 'quiz': 11, 'stave': 11, 'vogue': 11, 'stretcher': 11, 'lipa': 11, 'uncork': 11, 'oversize': 11, 'atheist': 11, 'migrant': 11, 'oblivion': 11, 'puppy': 11, 'policeman': 11, 'altar': 11, 'tutu': 11, 'foam': 11, 'maiden': 11, 'scrap': 11, 'clash': 11, 'perform': 11, 'cooler': 11, 'vicious': 11, 'local': 11, 'explosion': 11, 'average': 11, 'negro': 11, 'trout': 11, 'crocodile': 11, 'spike': 11, 'skim': 11, 'slipper': 11, 'phoenix': 11, 'notch': 11, 'meat': 11, 'filthy': 11, 'assistant': 11, 'invade': 11, 'purchase': 11, 'shortly': 11, 'logic': 11, 'partial': 11, 'toothbrush': 11, 'neon': 11, 'elle': 11, 'kit': 11, 'kore': 11, 'tissue': 11, 'permanent': 11, 'carriage': 11, 'worker': 11, 'luckily': 11, 'downfall': 11, 'cheeky': 11, 'keen': 11, 'recall': 11, 'proper': 11, 'keto': 11, 'meteorite': 11, 'cannon': 11, 'immortal': 11, 'football': 11, 'cache': 11, 'pattern': 11, 'caravan': 11, 'differentiate': 11, 'nea': 11, 'hasty': 11, 'urgent': 11, 'smear': 11, 'fuel': 11, 'freshness': 11, 'farm': 11, 'willingly': 11, 'corolla': 11, 'sprout': 11, 'object': 11, 'sequel': 11, 'kay': 11, 'hire': 11, 'smaller': 11, 'despise': 11, 'stripe': 11, 'covid': 11, 'trapper': 11, 'peep': 11, 'shroud': 11, 'sphere': 11, 'delusional': 11, 'squint': 11, 'sometime': 11, 'kent': 11, 'unravel': 11, 'lobby': 11, 'kiki': 11, 'waver': 11, 'hypocrite': 11, 'cartel': 11, 'pervert': 11, 'deck': 11, 'ponder': 11, 'medical': 11, 'cuckoo': 11, 'tomboy': 11, 'suspicious': 11, 'ungrateful': 11, 'mediterranean': 11, 'diva': 11, 'resistance': 11, 'properly': 11, 'roller': 11, 'bara': 11, 'negotiate': 11, 'sprinkle': 11, 'aftermath': 11, 'sane': 11, 'photograph': 11, 'pedro': 11, 'intend': 11, 'breathless': 11, 'gorgeous': 11, 'gem': 11, 'usher': 11, 'dangerously': 11, 'delicate': 11, 'compromise': 11, 'cube': 11, 'ginger': 11, 'desolate': 11, 'thorny': 11, 'peaceful': 11, 'tang': 11, 'kon': 11, 'coyote': 11, 'foolish': 11, 'dak': 11, 'haya': 11, 'jib': 11, 'craze': 11, 'hathi': 11, 'babbler': 11, 'kiwi': 11, 'basta': 10, 'breakaway': 10, 'porter': 10, 'gabby': 10, 'hammy': 10, 'blick': 10, 'odds': 10, 'intact': 10, 'cunning': 10, 'maker': 10, 'keyboard': 10, 'adjust': 10, 'throttle': 10, 'culture': 10, 'steak': 10, 'assume': 10, 'span': 10, 'chubby': 10, 'noria': 10, 'reap': 10, 'basket': 10, 'mango': 10, 'seldom': 10, 'matador': 10, 'mash': 10, 'jeep': 10, 'thrift': 10, 'barker': 10, 'torch': 10, 'validation': 10, 'coma': 10, 'wonderland': 10, 'infallible': 10, 'intercourse': 10, 'exile': 10, 'fra': 10, 'bargain': 10, 'narcotic': 10, 'math': 10, 'vitriol': 10, 'alike': 10, 'stool': 10, 'ancient': 10, 'hydroplane': 10, 'dow': 10, 'entity': 10, 'spoon': 10, 'deadly': 10, 'minimum': 10, 'crate': 10, 'maam': 10, 'beneath': 10, 'nearby': 10, 'fund': 10, 'rinse': 10, 'handgun': 10, 'bloc': 10, 'medal': 10, 'recover': 10, 'insomnia': 10, 'coca': 10, 'trauma': 10, 'sheriff': 10, 'foundation': 10, 'vast': 10, 'nickname': 10, 'limbo': 10, 'totally': 10, 'cycle': 10, 'momo': 10, 'withdraw': 10, 'boomer': 10, 'hunger': 10, 'passage': 10, 'apply': 10, 'stable': 10, 'chunk': 10, 'legging': 10, 'interstellar': 10, 'religious': 10, 'unfamiliar': 10, 'claro': 10, 'capture': 10, 'dynamic': 10, 'vampire': 10, 'mona': 10, 'descend': 10, 'episode': 10, 'nymphet': 10, 'massage': 10, 'narrow': 10, 'terror': 10, 'flock': 10, 'calf': 10, 'declare': 10, 'ruler': 10, 'successful': 10, 'posture': 10, 'brutal': 10, 'containment': 10, 'pressor': 10, 'libido': 10, 'social': 10, 'zany': 10, 'limousine': 10, 'motherland': 10, 'devote': 10, 'alien': 10, 'upstairs': 10, 'fatty': 10, 'crumple': 10, 'equipment': 10, 'woody': 10, 'temple': 10, 'sauna': 10, 'blackberry': 10, 'clue': 10, 'jara': 10, 'global': 10, 'flop': 10, 'detonate': 10, 'surname': 10, 'scarf': 10, 'monotonous': 10, 'canoe': 10, 'bur': 10, 'tiffany': 10, 'olive': 10, 'goose': 10, 'prey': 10, 'sneer': 10, 'cicada': 10, 'payment': 10, 'semi': 10, 'disrespect': 10, 'afterlife': 10, 'irreplaceable': 10, 'wink': 10, 'flush': 10, 'stake': 10, 'term': 10, 'newspaper': 10, 'plead': 10, 'jakes': 10, 'suitable': 10, 'plunder': 10, 'arena': 10, 'creation': 10, 'cognac': 10, 'severe': 10, 'custom': 10, 'joey': 10, 'tickle': 10, 'guidance': 10, 'manifest': 10, 'objection': 10, 'gig': 10, 'donna': 10, 'tho': 10, 'pandemic': 10, 'recount': 10, 'itchy': 10, 'phrase': 10, 'ross': 10, 'construction': 10, 'linger': 10, 'immortality': 10, 'earphone': 10, 'lilac': 10, 'rex': 10, 'orientation': 10, 'baga': 10, 'mare': 10, 'vaire': 10, 'sur': 10, 'ley': 10, 'bebop': 10, 'awkward': 10, 'uniform': 10, 'yati': 10, 'martial': 10, 'hiker': 10, 'caption': 9, 'washin': 9, 'dresser': 9, 'timid': 9, 'suave': 9, 'backside': 9, 'wrestler': 9, 'ule': 9, 'locket': 9, 'jug': 9, 'laziness': 9, 'slippery': 9, 'penalty': 9, 'charisma': 9, 'ounce': 9, 'weep': 9, 'director': 9, 'responsible': 9, 'commit': 9, 'dub': 9, 'television': 9, 'vote': 9, 'intoxicate': 9, 'bonfire': 9, 'resign': 9, 'barbaric': 9, 'critical': 9, 'sincerity': 9, 'booby': 9, 'locate': 9, 'chili': 9, 'moss': 9, 'bouncer': 9, 'piranha': 9, 'craft': 9, 'suppress': 9, 'gallery': 9, 'wasp': 9, 'furniture': 9, 'critic': 9, 'tenth': 9, 'homicide': 9, 'snoop': 9, 'tragic': 9, 'pus': 9, 'lordy': 9, 'backhand': 9, 'anthrax': 9, 'congratulation': 9, 'allergic': 9, 'digital': 9, 'captivate': 9, 'awa': 9, 'bibi': 9, 'bambino': 9, 'entry': 9, 'panama': 9, 'operator': 9, 'faucet': 9, 'passionately': 9, 'shi': 9, 'slightly': 9, 'spade': 9, 'influence': 9, 'charger': 9, 'sovereign': 9, 'crab': 9, 'mirage': 9, 'dap': 9, 'splat': 9, 'waitress': 9, 'rightly': 9, 'sensitivity': 9, 'jogger': 9, 'glossy': 9, 'jazzy': 9, 'underage': 9, 'victor': 9, 'chico': 9, 'affront': 9, 'pix': 9, 'stalk': 9, 'slab': 9, 'regardless': 9, 'cable': 9, 'alfa': 9, 'robot': 9, 'generally': 9, 'brainwash': 9, 'popular': 9, 'blizzard': 9, 'fume': 9, 'reload': 9, 'siren': 9, 'tunnel': 9, 'dialogue': 9, 'goon': 9, 'puddle': 9, 'knuckle': 9, 'unconscious': 9, 'doorstep': 9, 'corn': 9, 'plaster': 9, 'university': 9, 'rider': 9, 'process': 9, 'jaguar': 9, 'shameless': 9, 'astronaut': 9, 'randy': 9, 'volleyball': 9, 'litmus': 9, 'susu': 9, 'sesame': 9, 'molasses': 9, 'abstract': 9, 'catchy': 9, 'ralph': 9, 'capsule': 9, 'panda': 9, 'parakeet': 9, 'stagnant': 9, 'vertigo': 9, 'lifeguard': 9, 'larry': 9, 'officer': 9, 'serenade': 9, 'captive': 9, 'mono': 9, 'factor': 9, 'merry': 9, 'ammunition': 9, 'colorful': 9, 'hydraulics': 9, 'boulevard': 9, 'chamber': 9, 'behold': 9, 'cruise': 9, 'wavy': 9, 'impatient': 9, 'discussion': 9, 'stall': 9, 'determine': 9, 'stunt': 9, 'graph': 9, 'merchandise': 9, 'bien': 9, 'pet': 9, 'terrace': 9, 'crossroad': 9, 'bolt': 9, 'surfboard': 9, 'willies': 9, 'rail': 9, 'ignorant': 9, 'playground': 9, 'site': 9, 'soma': 9, 'grain': 9, 'rabbit': 9, 'organize': 9, 'pond': 9, 'obey': 9, 'overtime': 9, 'stallion': 9, 'impression': 9, 'undecided': 9, 'title': 9, 'confide': 9, 'fireplace': 9, 'rampage': 9, 'ditch': 9, 'inhale': 9, 'incense': 9, 'mania': 9, 'baar': 9, 'paar': 9, 'mull': 9, 'brink': 9, 'angle': 9, 'philosopher': 9, 'dribble': 9, 'saa': 9, 'misunderstand': 9, 'koko': 9, 'imitation': 9, 'shutter': 9, 'hilarious': 9, 'kana': 9, 'ancestor': 9, 'blad': 9, 'valise': 9, 'yak': 9, 'bodyguard': 9, 'kele': 9, 'nineteen': 9, 'knack': 9, 'encore': 9, 'anise': 9, 'monsoon': 9, 'vert': 8, 'honorable': 8, 'brainless': 8, 'melancholia': 8, 'scrutiny': 8, 'realest': 8, 'pigeonhole': 8, 'suds': 8, 'molester': 8, 'duppy': 8, 'musty': 8, 'beefin': 8, 'deadbeat': 8, 'buccaneer': 8, 'mistreat': 8, 'gasp': 8, 'missy': 8, 'nick': 8, 'autograph': 8, 'interview': 8, 'appeal': 8, 'threat': 8, 'theory': 8, 'relay': 8, 'donkey': 8, 'misbehave': 8, 'region': 8, 'carton': 8, 'crafty': 8, 'garment': 8, 'hoarse': 8, 'bolero': 8, 'abusive': 8, 'scientist': 8, 'electronic': 8, 'falsehood': 8, 'boxer': 8, 'majestic': 8, 'cord': 8, 'headline': 8, 'gutter': 8, 'sort': 8, 'fetch': 8, 'zodiac': 8, 'musk': 8, 'cope': 8, 'molle': 8, 'candlelight': 8, 'moonwalking': 8, 'broadway': 8, 'isolation': 8, 'hardy': 8, 'definition': 8, 'perspective': 8, 'chestnut': 8, 'clitoris': 8, 'antelope': 8, 'elope': 8, 'durst': 8, 'flap': 8, 'skit': 8, 'statue': 8, 'stub': 8, 'fabulous': 8, 'cardigan': 8, 'hotheaded': 8, 'blackheart': 8, 'intrude': 8, 'peek': 8, 'madame': 8, 'roulette': 8, 'consume': 8, 'twinge': 8, 'wickedness': 8, 'vagina': 8, 'disc': 8, 'madly': 8, 'poorly': 8, 'trot': 8, 'notorious': 8, 'excitement': 8, 'bay': 8, 'decent': 8, 'mediocre': 8, 'sack': 8, 'continent': 8, 'inevitable': 8, 'affair': 8, 'contain': 8, 'arch': 8, 'rodent': 8, 'spotlight': 8, 'cart': 8, 'cosmetic': 8, 'surgery': 8, 'rattle': 8, 'shackle': 8, 'indifferent': 8, 'marriage': 8, 'foamy': 8, 'portray': 8, 'vista': 8, 'tramp': 8, 'cub': 8, 'irony': 8, 'dreamy': 8, 'realization': 8, 'print': 8, 'schedule': 8, 'skunk': 8, 'rump': 8, 'hesitation': 8, 'hawk': 8, 'gospel': 8, 'navel': 8, 'ladder': 8, 'beggar': 8, 'basically': 8, 'kettle': 8, 'transfer': 8, 'absorb': 8, 'lethal': 8, 'attain': 8, 'subway': 8, 'absolutely': 8, 'salute': 8, 'delirious': 8, 'doom': 8, 'capable': 8, 'hymn': 8, 'indifferently': 8, 'fiend': 8, 'banquette': 8, 'escort': 8, 'hourglass': 8, 'yearn': 8, 'pointer': 8, 'abu': 8, 'discreet': 8, 'dagger': 8, 'adapt': 8, 'sap': 8, 'callous': 8, 'encourage': 8, 'insurance': 8, 'relief': 8, 'bicycle': 8, 'bamboo': 8, 'prejudice': 8, 'mali': 8, 'sorcerer': 8, 'unrecognizable': 8, 'undertaker': 8, 'cardboard': 8, 'patron': 8, 'hooligan': 8, 'exceed': 8, 'writhe': 8, 'lene': 8, 'pigeon': 8, 'gen': 8, 'officially': 8, 'visible': 8, 'skid': 8, 'unable': 8, 'finance': 8, 'typical': 8, 'specialist': 8, 'length': 8, 'eyey': 8, 'mocha': 8, 'mora': 8, 'gloomy': 8, 'reverend': 8, 'locker': 8, 'anyways': 8, 'distress': 8, 'malik': 8, 'magnolia': 8, 'defect': 8, 'dusty': 8, 'fictional': 8, 'orbit': 8, 'catacomb': 8, 'item': 8, 'dishevel': 8, 'elastic': 8, 'necessity': 8, 'boston': 8, 'latest': 8, 'quadruped': 8, 'oven': 8, 'bailey': 8, 'obstacle': 8, 'lag': 8, 'clever': 8, 'elephant': 8, 'firecracker': 8, 'cheetah': 8, 'access': 8, 'tana': 8, 'playful': 8, 'monogram': 8, 'thee': 8, 'constellation': 8, 'confidant': 8, 'tightly': 8, 'scholar': 8, 'extremely': 8, 'hastily': 8, 'unrequited': 8, 'restore': 8, 'aurora': 8, 'narcissistic': 8, 'income': 8, 'tab': 8, 'incident': 8, 'taa': 8, 'feere': 8, 'sher': 8, 'oriole': 8, 'crayon': 8, 'cavity': 8, 'tribe': 8, 'manal': 8, 'tout': 8, 'ach': 8, 'gali': 8, 'hullabaloo': 8, 'adviser': 8, 'automatically': 8, 'dimple': 8, 'cabbage': 8, 'doorknob': 8, 'gust': 8, 'bourgeois': 8, 'colony': 8, 'err': 7, 'disown': 7, 'savor': 7, 'cityscape': 7, 'soundly': 7, 'anonymous': 7, 'cancan': 7, 'earthquake': 7, 'stiff': 7, 'donate': 7, 'immense': 7, 'ethereal': 7, 'contempt': 7, 'prime': 7, 'reminder': 7, 'crumb': 7, 'physical': 7, 'blunder': 7, 'jackal': 7, 'incomplete': 7, 'observe': 7, 'anna': 7, 'aspirin': 7, 'matte': 7, 'stump': 7, 'prank': 7, 'arrange': 7, 'addition': 7, 'beard': 7, 'delirium': 7, 'murderer': 7, 'intimate': 7, 'ordeal': 7, 'plack': 7, 'wildfire': 7, 'via': 7, 'hypocrisy': 7, 'explanation': 7, 'creepy': 7, 'iceberg': 7, 'insistent': 7, 'deceit': 7, 'treatment': 7, 'exact': 7, 'convoy': 7, 'independence': 7, 'handsome': 7, 'salmon': 7, 'tingle': 7, 'seventy': 7, 'whirlwind': 7, 'stanza': 7, 'premonition': 7, 'runaway': 7, 'deliberately': 7, 'snare': 7, 'stuffy': 7, 'pebble': 7, 'exercise': 7, 'bolo': 7, 'beluga': 7, 'thus': 7, 'digest': 7, 'consciousness': 7, 'gunner': 7, 'corpse': 7, 'golf': 7, 'superficial': 7, 'homework': 7, 'sob': 7, 'kil': 7, 'valiant': 7, 'meaner': 7, 'cyrus': 7, 'simpler': 7, 'broadcast': 7, 'listener': 7, 'saliva': 7, 'feature': 7, 'harvest': 7, 'wrapper': 7, 'flattery': 7, 'disable': 7, 'conclusion': 7, 'musician': 7, 'turnover': 7, 'fender': 7, 'tornado': 7, 'nearly': 7, 'advertisement': 7, 'enlist': 7, 'besee': 7, 'vino': 7, 'diploma': 7, 'ability': 7, 'lin': 7, 'prevail': 7, 'revolver': 7, 'community': 7, 'sabotage': 7, 'socialize': 7, 'venue': 7, 'basketball': 7, 'vagabond': 7, 'eagle': 7, 'surf': 7, 'labyrinth': 7, 'trickster': 7, 'unlikely': 7, 'motive': 7, 'gogo': 7, 'soprano': 7, 'masha': 7, 'abortion': 7, 'dinero': 7, 'ambush': 7, 'weekday': 7, 'sandwich': 7, 'sergeant': 7, 'sniper': 7, 'runner': 7, 'batch': 7, 'loan': 7, 'brass': 7, 'tack': 7, 'brightly': 7, 'gel': 7, 'unloved': 7, 'yep': 7, 'slime': 7, 'unbearable': 7, 'variety': 7, 'kennel': 7, 'challenger': 7, 'aimlessly': 7, 'supply': 7, 'palaver': 7, 'volt': 7, 'nowadays': 7, 'comedy': 7, 'luxurious': 7, 'curler': 7, 'samurai': 7, 'diary': 7, 'royalty': 7, 'palma': 7, 'condone': 7, 'jerry': 7, 'kali': 7, 'desperately': 7, 'campo': 7, 'indoor': 7, 'soccer': 7, 'sike': 7, 'hysterical': 7, 'priority': 7, 'heartbreaker': 7, 'radiation': 7, 'waxy': 7, 'stubbornly': 7, 'destruction': 7, 'lan': 7, 'modest': 7, 'chess': 7, 'porcelain': 7, 'tsunami': 7, 'vary': 7, 'scenario': 7, 'production': 7, 'diligence': 7, 'prevent': 7, 'consequence': 7, 'rear': 7, 'gratitude': 7, 'committee': 7, 'renaissance': 7, 'lifeline': 7, 'unforgettable': 7, 'steven': 7, 'careless': 7, 'intentional': 7, 'breakdown': 7, 'omen': 7, 'chaser': 7, 'oppressor': 7, 'talented': 7, 'deer': 7, 'manhood': 7, 'receipt': 7, 'possession': 7, 'sweetness': 7, 'mortal': 7, 'barrier': 7, 'vocal': 7, 'formation': 7, 'instruction': 7, 'tch': 7, 'goblin': 7, 'vacancy': 7, 'kora': 7, 'antagonist': 7, 'nostalgic': 7, 'dizziness': 7, 'orchestra': 7, 'masa': 7, 'absolute': 7, 'och': 7, 'gee': 7, 'avalanche': 7, 'talkative': 7, 'manny': 7, 'peloton': 7, 'charity': 7, 'rubble': 7, 'legally': 7, 'cruciate': 7, 'ligament': 7, 'massive': 7, 'poh': 7, 'crumble': 7, 'politician': 7, 'ruby': 7, 'particular': 7, 'ranch': 7, 'mosquito': 7, 'kelly': 7, 'chapel': 7, 'tranquility': 7, 'taboo': 7, 'voluntarily': 7, 'hallucination': 7, 'henry': 7, 'primrose': 7, 'sensory': 7, 'inexplicable': 7, 'vitamin': 7, 'palette': 7, 'nephew': 7, 'eyelash': 7, 'snuggle': 7, 'lotto': 7, 'rotten': 7, 'ark': 7, 'hearted': 7, 'moderation': 7, 'sharpen': 7, 'regard': 7, 'stressful': 7, 'ankh': 7, 'rakh': 7, 'tor': 7, 'purposely': 7, 'agency': 7, 'relent': 7, 'uncertain': 7, 'intertwine': 7, 'distort': 7, 'farther': 7, 'bottomless': 7, 'racist': 7, 'dari': 7, 'kola': 7, 'baya': 7, 'propeller': 7, 'charabanc': 7, 'manifesto': 7, 'texture': 7, 'rudder': 7, 'bleach': 6, 'propane': 6, 'roke': 6, 'champ': 6, 'fugitive': 6, 'selection': 6, 'library': 6, 'modesty': 6, 'onomatopoeia': 6, 'academy': 6, 'pilar': 6, 'setback': 6, 'gala': 6, 'heartbreaking': 6, 'platter': 6, 'syllable': 6, 'miraculous': 6, 'cartridge': 6, 'emblem': 6, 'achieve': 6, 'luna': 6, 'kangaroo': 6, 'union': 6, 'follower': 6, 'plat': 6, 'firewood': 6, 'science': 6, 'yer': 6, 'kiosk': 6, 'documentary': 6, 'aitch': 6, 'whatnot': 6, 'clink': 6, 'function': 6, 'spa': 6, 'twilight': 6, 'slot': 6, 'launder': 6, 'hallway': 6, 'binge': 6, 'jingle': 6, 'ditty': 6, 'consistent': 6, 'shred': 6, 'poof': 6, 'lowa': 6, 'unemployed': 6, 'sind': 6, 'survival': 6, 'ramp': 6, 'sunflower': 6, 'flirty': 6, 'fussy': 6, 'portion': 6, 'handy': 6, 'hassle': 6, 'tumble': 6, 'playmaker': 6, 'dramatic': 6, 'urge': 6, 'neutral': 6, 'bulk': 6, 'abnormal': 6, 'upright': 6, 'almighty': 6, 'sadden': 6, 'tub': 6, 'bathrobe': 6, 'wap': 6, 'thermal': 6, 'canna': 6, 'zipper': 6, 'tighten': 6, 'sedan': 6, 'perceive': 6, 'amphetamine': 6, 'stupidity': 6, 'vinyl': 6, 'awe': 6, 'teenage': 6, 'banquet': 6, 'pathetic': 6, 'heroine': 6, 'revolve': 6, 'tux': 6, 'interior': 6, 'psyche': 6, 'moth': 6, 'margarita': 6, 'reference': 6, 'hose': 6, 'symphonic': 6, 'fagot': 6, 'carol': 6, 'thesis': 6, 'maximum': 6, 'nicely': 6, 'crane': 6, 'vila': 6, 'maintain': 6, 'suffocation': 6, 'cleavage': 6, 'cocky': 6, 'secrecy': 6, 'bola': 6, 'terrorist': 6, 'management': 6, 'cyclone': 6, 'juju': 6, 'massacre': 6, 'quench': 6, 'plywood': 6, 'moron': 6, 'canister': 6, 'penis': 6, 'compliment': 6, 'vegetable': 6, 'seedling': 6, 'ganggang': 6, 'superfluous': 6, 'dissimilate': 6, 'stylist': 6, 'noble': 6, 'cummin': 6, 'vendetta': 6, 'stomp': 6, 'dicky': 6, 'geld': 6, 'psychologist': 6, 'hashish': 6, 'censorship': 6, 'payday': 6, 'wag': 6, 'punisher': 6, 'moonshine': 6, 'pledge': 6, 'allegiance': 6, 'fatigue': 6, 'eric': 6, 'homo': 6, 'swimmer': 6, 'coincidental': 6, 'mustard': 6, 'affliction': 6, 'fumble': 6, 'horoscope': 6, 'skyscraper': 6, 'teary': 6, 'glare': 6, 'vamp': 6, 'harmless': 6, 'fabric': 6, 'pali': 6, 'beagle': 6, 'invoice': 6, 'acknowledge': 6, 'trio': 6, 'pomp': 6, 'stewardess': 6, 'apa': 6, 'monastery': 6, 'brandy': 6, 'cradle': 6, 'bronze': 6, 'claw': 6, 'fierce': 6, 'privately': 6, 'entrepreneur': 6, 'widow': 6, 'tomb': 6, 'unpredictable': 6, 'crouton': 6, 'neutron': 6, 'piston': 6, 'tombstone': 6, 'starter': 6, 'buff': 6, 'leftover': 6, 'unpaid': 6, 'accountant': 6, 'temperament': 6, 'lobster': 6, 'waiter': 6, 'benzo': 6, 'playback': 6, 'spender': 6, 'matrix': 6, 'rep': 6, 'consolation': 6, 'alani': 6, 'deposit': 6, 'eyebrow': 6, 'tulip': 6, 'louse': 6, 'glide': 6, 'weightlessness': 6, 'goalkeeper': 6, 'literally': 6, 'underfoot': 6, 'lizard': 6, 'wasteland': 6, 'rape': 6, 'display': 6, 'empire': 6, 'reduce': 6, 'precise': 6, 'brothel': 6, 'assassin': 6, 'godfather': 6, 'relate': 6, 'feint': 6, 'decade': 6, 'psychosis': 6, 'reversal': 6, 'morality': 6, 'pari': 6, 'raven': 6, 'firestone': 6, 'stubbornness': 6, 'virus': 6, 'carbon': 6, 'virginity': 6, 'blo': 6, 'bloke': 6, 'peanut': 6, 'audition': 6, 'handicap': 6, 'lament': 6, 'unscathed': 6, 'rhapsody': 6, 'aute': 6, 'liturgy': 6, 'slack': 6, 'pavement': 6, 'wallflower': 6, 'romanticize': 6, 'composure': 6, 'invasion': 6, 'revenue': 6, 'earl': 6, 'serpent': 6, 'dungaree': 6, 'unintentionally': 6, 'amidst': 6, 'premium': 6, 'canada': 6, 'cabriolet': 6, 'fang': 6, 'divorce': 6, 'dwell': 6, 'scout': 6, 'yield': 6, 'obsession': 6, 'bossy': 6, 'inferiority': 6, 'abracadabra': 6, 'terminator': 6, 'conviction': 6, 'persecute': 6, 'contour': 6, 'vee': 6, 'redo': 6, 'mun': 6, 'fondly': 6, 'former': 6, 'tid': 6, 'calendar': 6, 'purely': 6, 'attract': 6, 'wealth': 6, 'decamp': 6, 'scold': 6, 'rebuild': 6, 'flute': 6, 'karate': 6, 'polite': 6, 'misfortune': 6, 'pony': 6, 'probation': 6, 'sharply': 6, 'intensely': 6, 'jap': 6, 'taller': 6, 'hoard': 6, 'accordion': 6, 'featherweight': 6, 'regulate': 6, 'expense': 6, 'happiest': 6, 'milky': 6, 'arrogance': 6, 'substitute': 6, 'subtle': 6, 'unexpectedly': 6, 'greater': 6, 'transition': 6, 'hazy': 6, 'heartache': 6, 'stride': 6, 'flourish': 6, 'anemia': 6, 'rank': 6, 'lei': 6, 'neat': 6, 'unthinkable': 6, 'mural': 6, 'nineteenth': 6, 'periodically': 6, 'grizzly': 6, 'shrine': 6, 'deathless': 6, 'discrimination': 6, 'ethnic': 6, 'noa': 6, 'baith': 6, 'bache': 6, 'hundi': 6, 'kolo': 6, 'agar': 6, 'gaddi': 6, 'laine': 6, 'hoti': 6, 'classy': 6, 'tol': 6, 'theek': 6, 'assi': 6, 'guru': 6, 'wali': 6, 'tile': 6, 'seth': 6, 'casque': 6, 'infamous': 6, 'penetrator': 6, 'sentiment': 6, 'raki': 6, 'harshness': 6, 'stunner': 6, 'rusty': 6, 'wisp': 6, 'splendid': 6, 'faction': 6, 'intelligently': 6, 'amini': 6, 'jibi': 6, 'bash': 6, 'sma': 6, 'ayah': 6, 'swap': 6, 'reveil': 6, 'kappa': 6, 'vibration': 6, 'enjoyment': 6, 'wonna': 6, 'porridge': 6, 'alienist': 6, 'beget': 6, 'earnest': 6, 'ibis': 6, 'belve': 6, 'seemingly': 6, 'turnkey': 6, 'envelope': 6, 'starlet': 6, 'loft': 6, 'fetal': 6, 'inaudible': 6, 'latitude': 6, 'yuan': 6, 'perch': 6, 'indoors': 6, 'scrappy': 6, 'mortgage': 6, 'auntie': 6, 'dashboard': 5, 'chaka': 5, 'rufus': 5, 'dee': 5, 'blueberry': 5, 'pasture': 5, 'toll': 5, 'pluck': 5, 'mast': 5, 'copilot': 5, 'saxophone': 5, 'w': 5, 'activate': 5, 'vagrancy': 5, 'patent': 5, 'contender': 5, 'drab': 5, 'erection': 5, 'spine': 5, 'ministry': 5, 'transit': 5, 'sector': 5, 'association': 5, 'terminus': 5, 'equation': 5, 'cosmos': 5, 'dislike': 5, 'attentive': 5, 'mica': 5, 'defame': 5, 'mau': 5, 'infinitely': 5, 'podium': 5, 'slang': 5, 'inject': 5, 'sonic': 5, 'brightness': 5, 'harbour': 5, 'dense': 5, 'glam': 5, 'umbilical': 5, 'handshake': 5, 'vintage': 5, 'decline': 5, 'horde': 5, 'tavern': 5, 'avenger': 5, 'tradition': 5, 'territory': 5, 'hectic': 5, 'eighteenth': 5, 'smuggle': 5, 'recent': 5, 'advocate': 5, 'collaborate': 5, 'tolerate': 5, 'precisely': 5, 'vehicle': 5, 'ambassador': 5, 'bulb': 5, 'crutch': 5, 'cranberry': 5, 'atta': 5, 'foo': 5, 'slam': 5, 'redecorate': 5, 'eighth': 5, 'scam': 5, 'warmer': 5, 'organic': 5, 'dedication': 5, 'banker': 5, 'puke': 5, 'transport': 5, 'tobacco': 5, 'indestructible': 5, 'ensemble': 5, 'quarry': 5, 'mot': 5, 'soot': 5, 'platoon': 5, 'harbor': 5, 'lone': 5, 'native': 5, 'broom': 5, 'musical': 5, 'vile': 5, 'outline': 5, 'backup': 5, 'iceland': 5, 'russia': 5, 'lyrical': 5, 'hyena': 5, 'pallet': 5, 'rotation': 5, 'marble': 5, 'identical': 5, 'dekko': 5, 'quest': 5, 'barra': 5, 'temporal': 5, 'tic': 5, 'motif': 5, 'conduct': 5, 'corrupt': 5, 'population': 5, 'catcher': 5, 'oppress': 5, 'peripheral': 5, 'vale': 5, 'spiritual': 5, 'sage': 5, 'flaunt': 5, 'instigate': 5, 'boner': 5, 'ser': 5, 'maha': 5, 'triumph': 5, 'dag': 5, 'drought': 5, 'mink': 5, 'sketch': 5, 'shaft': 5, 'sausage': 5, 'sacred': 5, 'mutual': 5, 'equally': 5, 'extension': 5, 'plump': 5, 'migraine': 5, 'smoky': 5, 'wildly': 5, 'zoo': 5, 'centimeter': 5, 'hasan': 5, 'resort': 5, 'impulsive': 5, 'roc': 5, 'blackbird': 5, 'familia': 5, 'candidate': 5, 'rut': 5, 'tropic': 5, 'underworld': 5, 'totem': 5, 'casually': 5, 'breaker': 5, 'balaclava': 5, 'honda': 5, 'demeanor': 5, 'malicious': 5, 'musically': 5, 'womanizer': 5, 'hoax': 5, 'explore': 5, 'mentally': 5, 'exquisite': 5, 'blake': 5, 'disclosure': 5, 'arriba': 5, 'barrack': 5, 'voltage': 5, 'parcel': 5, 'aspire': 5, 'grease': 5, 'koala': 5, 'solver': 5, 'cutie': 5, 'batman': 5, 'somewhat': 5, 'aimless': 5, 'moro': 5, 'satisfaction': 5, 'seeker': 5, 'scribble': 5, 'rosary': 5, 'dishonest': 5, 'oasis': 5, 'clay': 5, 'redeem': 5, 'cheerleader': 5, 'embellishment': 5, 'vagrant': 5, 'sheen': 5, 'manual': 5, 'wool': 5, 'alternate': 5, 'miserable': 5, 'raider': 5, 'central': 5, 'mamba': 5, 'admiration': 5, 'timeless': 5, 'unavailable': 5, 'static': 5, 'terribly': 5, 'delivery': 5, 'surgeon': 5, 'baggage': 5, 'cynical': 5, 'gravel': 5, 'transform': 5, 'tent': 5, 'mig': 5, 'overlap': 5, 'useful': 5, 'ham': 5, 'jenny': 5, 'chaotic': 5, 'grasp': 5, 'magnetic': 5, 'criticism': 5, 'lid': 5, 'unusual': 5, 'dune': 5, 'punto': 5, 'advise': 5, 'ornament': 5, 'oak': 5, 'accuse': 5, 'statement': 5, 'communication': 5, 'sandstorm': 5, 'julio': 5, 'sixth': 5, 'section': 5, 'pamper': 5, 'exclusively': 5, 'permissible': 5, 'railway': 5, 'disarm': 5, 'wee': 5, 'convenience': 5, 'shawl': 5, 'simplify': 5, 'remote': 5, 'cruelty': 5, 'previous': 5, 'excessive': 5, 'accountable': 5, 'highness': 5, 'imam': 5, 'protagonist': 5, 'utter': 5, 'eddy': 5, 'morocco': 5, 'determination': 5, 'scotch': 5, 'sneeze': 5, 'pursuit': 5, 'aground': 5, 'derby': 5, 'investigation': 5, 'outer': 5, 'hatch': 5, 'breakup': 5, 'tutti': 5, 'emma': 5, 'pigtail': 5, 'difficulty': 5, 'prop': 5, 'western': 5, 'wiz': 5, 'sample': 5, 'asp': 5, 'remake': 5, 'attractive': 5, 'solace': 5, 'autobahn': 5, 'counterattack': 5, 'morphine': 5, 'flatter': 5, 'default': 5, 'highly': 5, 'ave': 5, 'snuff': 5, 'sally': 5, 'ballerina': 5, 'occasionally': 5, 'coral': 5, 'web': 5, 'amateur': 5, 'method': 5, 'mashallah': 5, 'strictly': 5, 'pinto': 5, 'tuna': 5, 'whiz': 5, 'backwoods': 5, 'wang': 5, 'canelo': 5, 'soothe': 5, 'isolate': 5, 'scan': 5, 'futile': 5, 'submerge': 5, 'contrast': 5, 'overthrow': 5, 'freely': 5, 'peacefully': 5, 'secure': 5, 'competitive': 5, 'residence': 5, 'encouragement': 5, 'felony': 5, 'souffle': 5, 'torrent': 5, 'immaturely': 5, 'unfortune': 5, 'unfortunate': 5, 'boundless': 5, 'buda': 5, 'kayak': 5, 'quad': 5, 'sew': 5, 'hesitant': 5, 'incarnation': 5, 'reign': 5, 'remark': 5, 'latecomer': 5, 'shrapnel': 5, 'nain': 5, 'peer': 5, 'rab': 5, 'binna': 5, 'mascara': 5, 'manzil': 5, 'tod': 5, 'patta': 5, 'thar': 5, 'khanda': 5, 'dha': 5, 'chit': 5, 'headphone': 5, 'hanna': 5, 'arete': 5, 'cubic': 5, 'scarce': 5, 'bene': 5, 'digress': 5, 'chandelier': 5, 'painfully': 5, 'koto': 5, 'flare': 5, 'asteroid': 5, 'ingredient': 5, 'weary': 5, 'injure': 5, 'radiance': 5, 'refrain': 5, 'raja': 5, 'tayer': 5, 'temp': 5, 'adhesive': 5, 'dour': 5, 'petit': 5, 'saddle': 5, 'farthest': 5, 'vina': 5, 'wade': 5, 'aisle': 5, 'asunder': 5, 'medulla': 5, 'learner': 5, 'trouser': 5, 'gateman': 5, 'unto': 5, 'parol': 5, 'squeak': 5, 'handbag': 5, 'physique': 5, 'caffeine': 5, 'snort': 5, 'velvety': 5, 'charismatic': 5, 'chariot': 5, 'beastie': 5, 'beginner': 5, 'colorless': 5, 'sleazy': 5, 'spontaneously': 5, 'sari': 4, 'saya': 4, 'peephole': 4, 'slouch': 4, 'shrimp': 4, 'agile': 4, 'willful': 4, 'versatile': 4, 'dama': 4, 'compartment': 4, 'rabid': 4, 'superb': 4, 'tortuous': 4, 'decorous': 4, 'plexus': 4, 'bilirubin': 4, 'affectionate': 4, 'wooden': 4, 'practically': 4, 'initially': 4, 'pitiful': 4, 'intelligence': 4, 'petty': 4, 'elementary': 4, 'torso': 4, 'pun': 4, 'overdo': 4, 'pompous': 4, 'homage': 4, 'frankly': 4, 'symbiosis': 4, 'cowardice': 4, 'downpour': 4, 'convert': 4, 'worm': 4, 'nougat': 4, 'improvise': 4, 'championship': 4, 'defy': 4, 'detective': 4, 'investigate': 4, 'heed': 4, 'cockroach': 4, 'coup': 4, 'manipulable': 4, 'lull': 4, 'detect': 4, 'schnapps': 4, 'jackknife': 4, 'crass': 4, 'wedlock': 4, 'knockoff': 4, 'dominantly': 4, 'imperial': 4, 'dominant': 4, 'instrument': 4, 'incubator': 4, 'downside': 4, 'panoramic': 4, 'edible': 4, 'pong': 4, 'greasy': 4, 'complication': 4, 'lawn': 4, 'privy': 4, 'defiance': 4, 'imitate': 4, 'horsepower': 4, 'eleventh': 4, 'gracefully': 4, 'unheard': 4, 'croak': 4, 'gleam': 4, 'arouse': 4, 'lotus': 4, 'gib': 4, 'deadline': 4, 'raisin': 4, 'chug': 4, 'gnat': 4, 'unaccommodating': 4, 'interlude': 4, 'marsh': 4, 'ringer': 4, 'renegade': 4, 'supper': 4, 'explorer': 4, 'sultana': 4, 'breeder': 4, 'crimson': 4, 'sketchy': 4, 'broadly': 4, 'charcoal': 4, 'concentration': 4, 'regain': 4, 'fatter': 4, 'baseball': 4, 'creative': 4, 'jota': 4, 'muffler': 4, 'coil': 4, 'imperfect': 4, 'shaker': 4, 'expiration': 4, 'paralysis': 4, 'praya': 4, 'compound': 4, 'cockpit': 4, 'jig': 4, 'couplet': 4, 'ami': 4, 'muffle': 4, 'meditate': 4, 'republic': 4, 'panel': 4, 'rook': 4, 'demonic': 4, 'kat': 4, 'bitterly': 4, 'reverie': 4, 'ruble': 4, 'duvet': 4, 'entourage': 4, 'gluttony': 4, 'filth': 4, 'funnel': 4, 'campaign': 4, 'theoretical': 4, 'textbook': 4, 'timber': 4, 'lantern': 4, 'sorceress': 4, 'supposedly': 4, 'sensational': 4, 'fork': 4, 'lanyard': 4, 'creole': 4, 'awn': 4, 'scrape': 4, 'allowance': 4, 'buggy': 4, 'rascal': 4, 'alligator': 4, 'specie': 4, 'conquest': 4, 'trainer': 4, 'porto': 4, 'covet': 4, 'barbecue': 4, 'organization': 4, 'mal': 4, 'homeland': 4, 'toil': 4, 'junk': 4, 'indecent': 4, 'strand': 4, 'bandage': 4, 'out': 4, 'brock': 4, 'pau': 4, 'cheerful': 4, 'tolerant': 4, 'titanic': 4, 'parenthesis': 4, 'truthful': 4, 'creativity': 4, 'heifer': 4, 'accomplice': 4, 'afloat': 4, 'leak': 4, 'bourbon': 4, 'suspiciously': 4, 'trite': 4, 'jeff': 4, 'showdown': 4, 'spice': 4, 'humor': 4, 'disfavor': 4, 'tardy': 4, 'drunken': 4, 'desperado': 4, 'dibs': 4, 'threshold': 4, 'burr': 4, 'ataman': 4, 'primitive': 4, 'sub': 4, 'salesman': 4, 'fulminate': 4, 'ingot': 4, 'keta': 4, 'cove': 4, 'bipolar': 4, 'authority': 4, 'morenita': 4, 'pint': 4, 'brooch': 4, 'valuable': 4, 'registration': 4, 'extreme': 4, 'nymphomaniac': 4, 'tock': 4, 'rod': 4, 'jake': 4, 'wombat': 4, 'shyness': 4, 'inmate': 4, 'starve': 4, 'frat': 4, 'maid': 4, 'soar': 4, 'nexus': 4, 'hako': 4, 'rapid': 4, 'quilt': 4, 'oyster': 4, 'honeymoon': 4, 'slur': 4, 'cellar': 4, 'lew': 4, 'pleon': 4, 'retard': 4, 'rime': 4, 'lete': 4, 'impact': 4, 'sweetheart': 4, 'strategy': 4, 'accusation': 4, 'tier': 4, 'gazelle': 4, 'secondary': 4, 'emerald': 4, 'overseas': 4, 'alp': 4, 'cotton': 4, 'awful': 4, 'char': 4, 'honk': 4, 'flour': 4, 'ashore': 4, 'tech': 4, 'mumble': 4, 'ula': 4, 'brawl': 4, 'gene': 4, 'drastic': 4, 'caviar': 4, 'mostly': 4, 'menace': 4, 'opaque': 4, 'pind': 4, 'tue': 4, 'acoustic': 4, 'tropical': 4, 'swarm': 4, 'terrier': 4, 'mayday': 4, 'thaw': 4, 'soulless': 4, 'alen': 4, 'spruce': 4, 'hau': 4, 'teller': 4, 'whirlpool': 4, 'lobo': 4, 'biceps': 4, 'satin': 4, 'strongly': 4, 'loosen': 4, 'jelly': 4, 'informer': 4, 'stopover': 4, 'veteran': 4, 'exam': 4, 'salesperson': 4, 'crestfallen': 4, 'dewy': 4, 'pirouette': 4, 'geography': 4, 'cava': 4, 'revers': 4, 'bald': 4, 'curb': 4, 'yeat': 4, 'appreciation': 4, 'hostile': 4, 'bulldozer': 4, 'commando': 4, 'confectioner': 4, 'crookedness': 4, 'perish': 4, 'serene': 4, 'precede': 4, 'cutter': 4, 'pyramid': 4, 'heresy': 4, 'wellness': 4, 'tangible': 4, 'originally': 4, 'fortunately': 4, 'propaganda': 4, 'devoid': 4, 'baggy': 4, 'lettuce': 4, 'dooley': 4, 'lawful': 4, 'council': 4, 'strengthen': 4, 'pronounce': 4, 'exhale': 4, 'genie': 4, 'barricade': 4, 'fiercely': 4, 'confrontation': 4, 'politely': 4, 'zaman': 4, 'lat': 4, 'helplessness': 4, 'fateful': 4, 'prostitute': 4, 'twinkle': 4, 'architect': 4, 'nuance': 4, 'stimulus': 4, 'disobey': 4, 'landlord': 4, 'internal': 4, 'galactic': 4, 'cocoon': 4, 'practical': 4, 'reset': 4, 'parquet': 4, 'behaviour': 4, 'burp': 4, 'hustler': 4, 'smog': 4, 'wizard': 4, 'gallant': 4, 'folk': 4, 'bingo': 4, 'colt': 4, 'verbal': 4, 'reservation': 4, 'tambourine': 4, 'gros': 4, 'fascinate': 4, 'locomotive': 4, 'fluffy': 4, 'detour': 4, 'asylum': 4, 'intoxication': 4, 'baw': 4, 'screenwriter': 4, 'spat': 4, 'culprit': 4, 'timpani': 4, 'dote': 4, 'eclipse': 4, 'weightless': 4, 'reveler': 4, 'delight': 4, 'insensitive': 4, 'decrease': 4, 'dingdong': 4, 'gluten': 4, 'rearrange': 4, 'incapable': 4, 'kidney': 4, 'lad': 4, 'prima': 4, 'gland': 4, 'mason': 4, 'puffer': 4, 'shove': 4, 'continuously': 4, 'foreigner': 4, 'tar': 4, 'batty': 4, 'roadblock': 4, 'disorder': 4, 'acapulco': 4, 'leniency': 4, 'consignment': 4, 'condominium': 4, 'esoteric': 4, 'pantry': 4, 'raid': 4, 'sophisticate': 4, 'strut': 4, 'nelson': 4, 'occasional': 4, 'absurdity': 4, 'fortress': 4, 'vent': 4, 'bravely': 4, 'baptism': 4, 'restriction': 4, 'refuge': 4, 'reminisce': 4, 'powerless': 4, 'leisurely': 4, 'variable': 4, 'detention': 4, 'unbelievable': 4, 'tuition': 4, 'repent': 4, 'accommodate': 4, 'doorbell': 4, 'outcome': 4, 'vividly': 4, 'ripple': 4, 'mundane': 4, 'psych': 4, 'pharmacy': 4, 'pessimistic': 4, 'mite': 4, 'sadly': 4, 'scandalous': 4, 'lime': 4, 'checkmate': 4, 'murky': 4, 'intercessor': 4, 'thou': 4, 'atonement': 4, 'alf': 4, 'mushroom': 4, 'idle': 4, 'yawn': 4, 'hoga': 4, 'tut': 4, 'vall': 4, 'siva': 4, 'dao': 4, 'lash': 4, 'loka': 4, 'dite': 4, 'fad': 4, 'subah': 4, 'chalta': 4, 'hame': 4, 'gor': 4, 'darr': 4, 'peen': 4, 'goli': 4, 'tara': 4, 'pension': 4, 'lod': 4, 'sheepskin': 4, 'beta': 4, 'semifinal': 4, 'inning': 4, 'warren': 4, 'athletics': 4, 'mariner': 4, 'baker': 4, 'falcon': 4, 'tally': 4, 'insight': 4, 'misdemeanor': 4, 'fudge': 4, 'meadow': 4, 'banal': 4, 'unplug': 4, 'igloo': 4, 'interpret': 4, 'snowflake': 4, 'impossibly': 4, 'unreliable': 4, 'bakery': 4, 'extent': 4, 'unbreakable': 4, 'ambiguous': 4, 'vague': 4, 'aru': 4, 'shandy': 4, 'resonate': 4, 'growth': 4, 'mankind': 4, 'decay': 4, 'incoming': 4, 'bumpy': 4, 'unbearably': 4, 'overload': 4, 'rampant': 4, 'familiarity': 4, 'savory': 4, 'diligently': 4, 'nam': 4, 'redden': 4, 'glittery': 4, 'aftereffect': 4, 'tinnitus': 4, 'foolishly': 4, 'jointly': 4, 'lighthouse': 4, 'landmark': 4, 'exoticism': 4, 'motivation': 4, 'easter': 4, 'ras': 4, 'bureau': 4, 'frass': 4, 'wast': 4, 'mellit': 4, 'lard': 4, 'selt': 4, 'lour': 4, 'salina': 4, 'sib': 4, 'noir': 4, 'liberty': 4, 'mae': 4, 'ramus': 4, 'warlike': 4, 'bezel': 4, 'detach': 4, 'rebuke': 4, 'spanner': 4, 'modulate': 4, 'surviver': 4, 'engage': 4, 'dental': 4, 'lager': 4, 'tights': 4, 'halo': 4, 'beak': 4, 'flake': 4, 'creem': 4, 'apothecary': 4, 'boza': 4, 'palpable': 4, 'bloop': 4, 'kaha': 4, 'bahut': 4, 'ghoom': 4, 'priest': 4, 'vigilance': 4, 'lounger': 4, 'oversized': 4, 'mulatto': 4, 'rustle': 4, 'bungee': 4, 'bankruptcy': 4, 'pigment': 4, 'nane': 4, 'grog': 4, 'iyo': 4, 'hotbox': 4, 'lawless': 4, 'thirteenth': 4, 'classroom': 4, 'ambitious': 4, 'partly': 4, 'ground': 4, 'insoluble': 4, 'eventful': 4, 'epochal': 4, 'gauge': 4, 'melodious': 4, 'finisher': 4, 'veuve': 4, 'zar': 3, 'tume': 3, 'penance': 3, 'blackjack': 3, 'folklore': 3, 'ransom': 3, 'sailboat': 3, 'trickle': 3, 'cello': 3, 'qualm': 3, 'tailpipe': 3, 'headliner': 3, 'murga': 3, 'renovation': 3, 'jubilant': 3, 'warranty': 3, 'demolish': 3, 'credible': 3, 'heir': 3, 'controversial': 3, 'pronunciation': 3, 'entirely': 3, 'trachea': 3, 'anal': 3, 'detonator': 3, 'monument': 3, 'wig': 3, 'semen': 3, 'truce': 3, 'instrumental': 3, 'barbarian': 3, 'gunman': 3, 'madwoman': 3, 'bagel': 3, 'orgy': 3, 'replica': 3, 'repression': 3, 'submissive': 3, 'contra': 3, 'knave': 3, 'fray': 3, 'fasten': 3, 'theft': 3, 'deception': 3, 'cobra': 3, 'beige': 3, 'cro': 3, 'flamingo': 3, 'denominator': 3, 'presto': 3, 'psychiatry': 3, 'lousy': 3, 'snappy': 3, 'giggle': 3, 'timbo': 3, 'tec': 3, 'subtlety': 3, 'criss': 3, 'lax': 3, 'stiletto': 3, 'bishop': 3, 'clover': 3, 'weatherman': 3, 'metric': 3, 'skeleton': 3, 'innkeeper': 3, 'gulp': 3, 'litter': 3, 'latex': 3, 'binary': 3, 'curvy': 3, 'trifle': 3, 'striker': 3, 'shopper': 3, 'inquiry': 3, 'eject': 3, 'molar': 3, 'imperfection': 3, 'delta': 3, 'calibrate': 3, 'perimeter': 3, 'inappropriate': 3, 'grit': 3, 'qua': 3, 'pronto': 3, 'stummy': 3, 'sickly': 3, 'fatality': 3, 'troll': 3, 'intellectual': 3, 'associate': 3, 'hemp': 3, 'bravo': 3, 'evergreen': 3, 'bypass': 3, 'disk': 3, 'northwestern': 3, 'mayor': 3, 'balk': 3, 'ovation': 3, 'morgen': 3, 'cramp': 3, 'hindrance': 3, 'tele': 3, 'relapse': 3, 'circulation': 3, 'await': 3, 'ruse': 3, 'detergent': 3, 'keel': 3, 'shaggy': 3, 'renew': 3, 'nomad': 3, 'glucose': 3, 'patamar': 3, 'maturity': 3, 'architecture': 3, 'sabe': 3, 'fez': 3, 'uncontrolled': 3, 'algorithm': 3, 'topo': 3, 'horseback': 3, 'consistency': 3, 'accumulate': 3, 'corruption': 3, 'buoy': 3, 'feline': 3, 'certainty': 3, 'blazer': 3, 'oblique': 3, 'lair': 3, 'vapor': 3, 'henchman': 3, 'voucher': 3, 'judgment': 3, 'blitz': 3, 'identify': 3, 'paulin': 3, 'collector': 3, 'asset': 3, 'dumdum': 3, 'mim': 3, 'moki': 3, 'falter': 3, 'cheep': 3, 'yan': 3, 'needy': 3, 'seasick': 3, 'tragedy': 3, 'kunk': 3, 'periphery': 3, 'restraint': 3, 'savior': 3, 'patio': 3, 'mileage': 3, 'engagement': 3, 'alma': 3, 'mutation': 3, 'rouge': 3, 'ranger': 3, 'hydro': 3, 'sticker': 3, 'bib': 3, 'mighty': 3, 'unemployment': 3, 'pubic': 3, 'pancake': 3, 'cocker': 3, 'fertilizer': 3, 'choleric': 3, 'reread': 3, 'tenderly': 3, 'manta': 3, 'marine': 3, 'operation': 3, 'suggest': 3, 'competitor': 3, 'react': 3, 'greener': 3, 'accidental': 3, 'hickey': 3, 'supernova': 3, 'battlefield': 3, 'amulet': 3, 'aggression': 3, 'battalion': 3, 'tackle': 3, 'archive': 3, 'grimace': 3, 'roundup': 3, 'laurel': 3, 'boudoir': 3, 'prediction': 3, 'mannequin': 3, 'chino': 3, 'veil': 3, 'toty': 3, 'install': 3, 'protein': 3, 'perk': 3, 'aqua': 3, 'tournament': 3, 'cupboard': 3, 'insert': 3, 'ponce': 3, 'victorious': 3, 'clandestine': 3, 'eliminate': 3, 'whew': 3, 'midweek': 3, 'redd': 3, 'urban': 3, 'lute': 3, 'ann': 3, 'velvet': 3, 'queendom': 3, 'stud': 3, 'flu': 3, 'tutor': 3, 'investment': 3, 'nudity': 3, 'pine': 3, 'mid': 3, 'representative': 3, 'acquire': 3, 'tassel': 3, 'hearse': 3, 'vinegar': 3, 'marginal': 3, 'fingerprint': 3, 'visor': 3, 'aesthetic': 3, 'equivalent': 3, 'cuckold': 3, 'mignon': 3, 'aloe': 3, 'unanswered': 3, 'essay': 3, 'meta': 3, 'pare': 3, 'shamelessly': 3, 'transformer': 3, 'germ': 3, 'almond': 3, 'tribal': 3, 'marzipan': 3, 'intelligentsia': 3, 'goblet': 3, 'epic': 3, 'sewer': 3, 'pastime': 3, 'immigrant': 3, 'polka': 3, 'bender': 3, 'calmness': 3, 'freshly': 3, 'cheesy': 3, 'pilgrimage': 3, 'ani': 3, 'buyer': 3, 'creek': 3, 'grandchild': 3, 'chum': 3, 'coaster': 3, 'grope': 3, 'badge': 3, 'nipple': 3, 'raspberry': 3, 'legalize': 3, 'interrogation': 3, 'sideline': 3, 'domain': 3, 'solely': 3, 'freckle': 3, 'havoc': 3, 'furthest': 3, 'driveway': 3, 'randomly': 3, 'hong': 3, 'stagger': 3, 'unpack': 3, 'inseparable': 3, 'resolution': 3, 'decoration': 3, 'profitable': 3, 'leopard': 3, 'baguette': 3, 'flashlight': 3, 'slob': 3, 'terminal': 3, 'hiss': 3, 'dependent': 3, 'liberate': 3, 'template': 3, 'questionable': 3, 'inconsiderate': 3, 'flashy': 3, 'backdrop': 3, 'upcoming': 3, 'indifference': 3, 'sorcery': 3, 'communion': 3, 'external': 3, 'benny': 3, 'rune': 3, 'carter': 3, 'chronic': 3, 'poppa': 3, 'recognition': 3, 'lighten': 3, 'inventive': 3, 'ninth': 3, 'supersonic': 3, 'vase': 3, 'scornful': 3, 'ravage': 3, 'chancellor': 3, 'overwhelm': 3, 'tiredness': 3, 'dunk': 3, 'gue': 3, 'disconnect': 3, 'finale': 3, 'franklin': 3, 'viper': 3, 'slick': 3, 'discharge': 3, 'romanticism': 3, 'catholic': 3, 'barbershop': 3, 'beni': 3, 'chime': 3, 'ripe': 3, 'bosom': 3, 'ramble': 3, 'doorway': 3, 'doorframe': 3, 'realist': 3, 'potpourri': 3, 'minimal': 3, 'rash': 3, 'rally': 3, 'genesis': 3, 'treachery': 3, 'khoja': 3, 'frivolous': 3, 'jinni': 3, 'relatively': 3, 'consent': 3, 'prestige': 3, 'echidna': 3, 'avert': 3, 'treacherous': 3, 'amuse': 3, 'yad': 3, 'clog': 3, 'sasa': 3, 'amenity': 3, 'precariously': 3, 'elegance': 3, 'dearly': 3, 'alternative': 3, 'audacity': 3, 'companionship': 3, 'administration': 3, 'dissatisfy': 3, 'caution': 3, 'maru': 3, 'telegram': 3, 'reprimand': 3, 'humiliation': 3, 'alliance': 3, 'rigid': 3, 'preferably': 3, 'shepherd': 3, 'hogan': 3, 'remembrance': 3, 'livelihood': 3, 'starvation': 3, 'similarity': 3, 'mola': 3, 'reassure': 3, 'shuttle': 3, 'dictionary': 3, 'outdated': 3, 'reconcile': 3, 'passive': 3, 'psychological': 3, 'universal': 3, 'longevity': 3, 'poke': 3, 'popeye': 3, 'interact': 3, 'pregnancy': 3, 'preference': 3, 'stingy': 3, 'furnish': 3, 'basis': 3, 'righteousness': 3, 'specifically': 3, 'overly': 3, 'relation': 3, 'plumber': 3, 'nationality': 3, 'overpower': 3, 'railroad': 3, 'goa': 3, 'itch': 3, 'problematic': 3, 'roommate': 3, 'dialect': 3, 'gawk': 3, 'erratic': 3, 'melancholic': 3, 'amour': 3, 'sil': 3, 'literature': 3, 'platform': 3, 'smelly': 3, 'replaceable': 3, 'sal': 3, 'bot': 3, 'kyl': 3, 'catfish': 3, 'lota': 3, 'jukebox': 3, 'foil': 3, 'uptown': 3, 'nearest': 3, 'spectator': 3, 'container': 3, 'harness': 3, 'sonny': 3, 'frosty': 3, 'melanin': 3, 'municipality': 3, 'prodigal': 3, 'pelican': 3, 'shorter': 3, 'raucous': 3, 'poetic': 3, 'unit': 3, 'cheater': 3, 'relaxation': 3, 'galley': 3, 'microbe': 3, 'bac': 3, 'confession': 3, 'massa': 3, 'biff': 3, 'stilt': 3, 'continuation': 3, 'cowardly': 3, 'emotionally': 3, 'dumpling': 3, 'indebted': 3, 'tidal': 3, 'sine': 3, 'certificate': 3, 'pork': 3, 'peddle': 3, 'geek': 3, 'independently': 3, 'golfer': 3, 'sequence': 3, 'precaution': 3, 'tolerable': 3, 'tipsy': 3, 'frequent': 3, 'tarot': 3, 'goofy': 3, 'luger': 3, 'calorie': 3, 'organ': 3, 'babble': 3, 'commercial': 3, 'cemetery': 3, 'souvenir': 3, 'pate': 3, 'comfortably': 3, 'warehouse': 3, 'checker': 3, 'intercontinental': 3, 'rancho': 3, 'exuberant': 3, 'graham': 3, 'pip': 3, 'hakim': 3, 'bazooka': 3, 'gladiator': 3, 'solstice': 3, 'wry': 3, 'traction': 3, 'disperse': 3, 'vigorous': 3, 'bumper': 3, 'persuade': 3, 'withstand': 3, 'bombard': 3, 'kindly': 3, 'refine': 3, 'appropriately': 3, 'trench': 3, 'wordless': 3, 'reunite': 3, 'tearful': 3, 'volunteer': 3, 'prosperity': 3, 'preparation': 3, 'cabinet': 3, 'suture': 3, 'mock': 3, 'tasteless': 3, 'vat': 3, 'manic': 3, 'bacon': 3, 'shortcoming': 3, 'slight': 3, 'pastry': 3, 'discard': 3, 'epicenter': 3, 'refrigerator': 3, 'wholeheartedly': 3, 'quotation': 3, 'forum': 3, 'forecast': 3, 'task': 3, 'cacique': 3, 'disprove': 3, 'catechism': 3, 'catechesis': 3, 'hardware': 3, 'deviate': 3, 'unfold': 3, 'petrol': 3, 'groggy': 3, 'waft': 3, 'tsar': 3, 'gosh': 3, 'moccasin': 3, 'dan': 3, 'amar': 3, 'bom': 3, 'countryside': 3, 'digger': 3, 'crypt': 3, 'undead': 3, 'homeless': 3, 'resound': 3, 'narrative': 3, 'instantly': 3, 'evaluate': 3, 'structure': 3, 'outshine': 3, 'stun': 3, 'disagree': 3, 'pastor': 3, 'pagan': 3, 'refer': 3, 'activity': 3, 'personally': 3, 'spy': 3, 'brighten': 3, 'revelation': 3, 'chaa': 3, 'bole': 3, 'samaj': 3, 'tode': 3, 'cheque': 3, 'pave': 3, 'amir': 3, 'dere': 3, 'nee': 3, 'bahar': 3, 'biter': 3, 'panne': 3, 'pooch': 3, 'ode': 3, 'boredom': 3, 'taraf': 3, 'tarfa': 3, 'pith': 3, 'bap': 3, 'eardrum': 3, 'lut': 3, 'haff': 3, 'holm': 3, 'lackey': 3, 'marlin': 3, 'diamondback': 3, 'p': 3, 'schoolbook': 3, 'specter': 3, 'popper': 3, 'granny': 3, 'immensity': 3, 'cement': 3, 'liberation': 3, 'stive': 3, 'earplug': 3, 'ambiguity': 3, 'parole': 3, 'abysmal': 3, 'shune': 3, 'unresolved': 3, 'premise': 3, 'claque': 3, 'magistrate': 3, 'incomparable': 3, 'superpower': 3, 'belle': 3, 'reptile': 3, 'mantra': 3, 'activist': 3, 'anarchy': 3, 'jubilee': 3, 'reweave': 3, 'uta': 3, 'troublesome': 3, 'sonnet': 3, 'manipulator': 3, 'spec': 3, 'unclear': 3, 'pandemonium': 3, 'compensate': 3, 'dye': 3, 'seaside': 3, 'heck': 3, 'chant': 3, 'sweetly': 3, 'bummer': 3, 'generously': 3, 'tiara': 3, 'readership': 3, 'refund': 3, 'inverse': 3, 'paradigm': 3, 'maneuver': 3, 'radius': 3, 'reseller': 3, 'quadruple': 3, 'dimly': 3, 'enlarge': 3, 'spider': 3, 'bari': 3, 'crude': 3, 'sentimentally': 3, 'brew': 3, 'barn': 3, 'oppression': 3, 'mime': 3, 'promotion': 3, 'require': 3, 'gramme': 3, 'tala': 3, 'lob': 3, 'cox': 3, 'immerse': 3, 'nasi': 3, 'beau': 3, 'hak': 3, 'fils': 3, 'kiri': 3, 'application': 3, 'sai': 3, 'reave': 3, 'solder': 3, 'raya': 3, 'biti': 3, 'sawt': 3, 'lyam': 3, 'salat': 3, 'lile': 3, 'parle': 3, 'dit': 3, 'taro': 3, 'sac': 3, 'lamba': 3, 'entia': 3, 'bain': 3, 'dernier': 3, 'khatri': 3, 'staple': 3, 'specific': 3, 'solemn': 3, 'insincerity': 3, 'sweety': 3, 'amala': 3, 'anyhow': 3, 'torus': 3, 'sey': 3, 'chameleon': 3, 'downgrade': 3, 'commot': 3, 'ase': 3, 'parasite': 3, 'peppermint': 3, 'lunge': 3, 'overdue': 3, 'gravitational': 3, 'logical': 3, 'therein': 3, 'bestow': 3, 'cleat': 3, 'adagio': 3, 'carcass': 3, 'prose': 3, 'abominable': 3, 'stainless': 3, 'financial': 3, 'curfew': 3, 'rein': 3, 'quickie': 3, 'vicar': 3, 'regiment': 3, 'reside': 3, 'bareness': 3, 'overgrow': 3, 'breakable': 3, 'incompatible': 3, 'socially': 3, 'ant': 3, 'sune': 3, 'mang': 3, 'kebab': 3, 'paddle': 3, 'dong': 3, 'raft': 3, 'tumor': 3, 'tablet': 3, 'intersect': 3, 'shyly': 3, 'hulk': 3, 'quota': 3, 'torpedo': 3, 'industrious': 3, 'hamstring': 3, 'sling': 3, 'fiddle': 3, 'coquettish': 3, 'slayer': 3, 'vegetarian': 3, 'crouch': 3, 'enigma': 3, 'nimshi': 3, 'anoint': 3, 'watchman': 3, 'horseman': 3, 'dromedary': 3, 'underpants': 3, 'impenetrable': 3, 'wen': 3, 'faff': 3, 'radical': 3, 'sickle': 3, 'agama': 3, 'emir': 3, 'bustle': 3, 'tanga': 3, 'pioneer': 3, 'dependency': 3, 'blacker': 3, 'abolitionist': 3, 'involuntary': 3, 'inferior': 3, 'trident': 3, 'submit': 3, 'albino': 3, 'barren': 3, 'unilaterally': 3, 'misty': 3, 'wilt': 3, 'freshener': 3, 'supersize': 3, 'supa': 3, 'combust': 3, 'silicon': 2, 'rusher': 2, 'musha': 2, 'intensive': 2, 'versus': 2, 'imitable': 2, 'autopsy': 2, 'liquidate': 2, 'perversion': 2, 'spunky': 2, 'terrify': 2, 'theoretician': 2, 'jester': 2, 'admirer': 2, 'portman': 2, 'sperm': 2, 'frail': 2, 'allude': 2, 'doubly': 2, 'subsidy': 2, 'ambidextrous': 2, 'cult': 2, 'percentage': 2, 'dildo': 2, 'sphincter': 2, 'multisyllable': 2, 'crummy': 2, 'squirt': 2, 'bidet': 2, 'facet': 2, 'research': 2, 'megalomania': 2, 'cutlery': 2, 'livid': 2, 'resignation': 2, 'drunkard': 2, 'flask': 2, 'impractical': 2, 'guaracha': 2, 'puncture': 2, 'empathize': 2, 'toga': 2, 'unnoticed': 2, 'hypocritical': 2, 'presume': 2, 'reproduction': 2, 'rhodium': 2, 'motorize': 2, 'prior': 2, 'gravitation': 2, 'indomitable': 2, 'fiat': 2, 'duo': 2, 'pish': 2, 'fiery': 2, 'rogue': 2, 'camper': 2, 'pike': 2, 'membership': 2, 'decease': 2, 'reflex': 2, 'prater': 2, 'grenade': 2, 'pimple': 2, 'crackle': 2, 'quark': 2, 'taj': 2, 'vitality': 2, 'domination': 2, 'tetra': 2, 'menthol': 2, 'maxwell': 2, 'perversely': 2, 'rhinestone': 2, 'nevertheless': 2, 'undershirt': 2, 'kilogram': 2, 'margin': 2, 'wir': 2, 'rehearse': 2, 'yok': 2, 'barracuda': 2, 'amy': 2, 'winehouse': 2, 'tash': 2, 'interrupter': 2, 'kerosene': 2, 'evanescence': 2, 'kiley': 2, 'luscious': 2, 'flyleaf': 2, 'tigress': 2, 'sumner': 2, 'questionnaire': 2, 'submarine': 2, 'roter': 2, 'polar': 2, 'legislate': 2, 'scramble': 2, 'endear': 2, 'attacker': 2, 'admission': 2, 'discern': 2, 'musicality': 2, 'eucharistic': 2, 'malaise': 2, 'artistic': 2, 'sketcher': 2, 'stew': 2, 'skeer': 2, 'philosophize': 2, 'valve': 2, 'tenner': 2, 'extensively': 2, 'greenhouse': 2, 'contribution': 2, 'termite': 2, 'pestle': 2, 'diameter': 2, 'massy': 2, 'ply': 2, 'ure': 2, 'timidly': 2, 'believable': 2, 'mezzo': 2, 'rant': 2, 'aftertaste': 2, 'persistently': 2, 'unturned': 2, 'spasm': 2, 'sarcasm': 2, 'tonsil': 2, 'hut': 2, 'butcher': 2, 'crookedly': 2, 'reptilian': 2, 'peasant': 2, 'limb': 2, 'scald': 2, 'mop': 2, 'sundown': 2, 'quarterback': 2, 'baku': 2, 'tightrope': 2, 'backward': 2, 'flinch': 2, 'boar': 2, 'longitude': 2, 'duet': 2, 'blockage': 2, 'carrion': 2, 'cheerfully': 2, 'yarn': 2, 'galena': 2, 'roger': 2, 'strict': 2, 'slapstick': 2, 'hypothesis': 2, 'lioness': 2, 'newsstand': 2, 'mauve': 2, 'cowherd': 2, 'graduation': 2, 'education': 2, 'gnaw': 2, 'revolt': 2, 'quica': 2, 'intrigue': 2, 'flightless': 2, 'indignant': 2, 'boldo': 2, 'croup': 2, 'miscreant': 2, 'nog': 2, 'quarantine': 2, 'hornet': 2, 'arroba': 2, 'harmonization': 2, 'leprechaun': 2, 'requiem': 2, 'folly': 2, 'vendor': 2, 'recite': 2, 'seductive': 2, 'barras': 2, 'inheritance': 2, 'abbot': 2, 'intelligent': 2, 'gabi': 2, 'paty': 2, 'doodle': 2, 'user': 2, 'idiotic': 2, 'instruct': 2, 'bewitch': 2, 'transmission': 2, 'arcade': 2, 'manly': 2, 'stingray': 2, 'stern': 2, 'snapper': 2, 'reciprocity': 2, 'salient': 2, 'accumulation': 2, 'paradox': 2, 'interference': 2, 'reservoir': 2, 'hydrant': 2, 'humanitarian': 2, 'deprave': 2, 'trimmer': 2, 'udder': 2, 'turban': 2, 'bougie': 2, 'maverick': 2, 'fabulously': 2, 'excitedly': 2, 'penguin': 2, 'viking': 2, 'headband': 2, 'scolopendra': 2, 'voodoo': 2, 'hinge': 2, 'sinful': 2, 'handwrite': 2, 'frostbite': 2, 'kino': 2, 'tendency': 2, 'stupor': 2, 'whitefish': 2, 'harem': 2, 'experiment': 2, 'layout': 2, 'capricious': 2, 'peekaboo': 2, 'moo': 2, 'clime': 2, 'miraculously': 2, 'despot': 2, 'ardor': 2, 'ought': 2, 'drawl': 2, 'sicker': 2, 'hog': 2, 'reckon': 2, 'empathy': 2, 'perennial': 2, 'prospect': 2, 'batzen': 2, 'quantity': 2, 'dazzler': 2, 'agitate': 2, 'profanity': 2, 'telepathy': 2, 'stickle': 2, 'bowlegged': 2, 'grownup': 2, 'unwind': 2, 'armament': 2, 'biological': 2, 'suitor': 2, 'minnie': 2, 'insure': 2, 'slogan': 2, 'property': 2, 'generate': 2, 'watery': 2, 'publish': 2, 'yore': 2, 'perse': 2, 'ante': 2, 'elusive': 2, 'baboon': 2, 'moor': 2, 'doctorate': 2, 'veto': 2, 'talus': 2, 'baru': 2, 'loin': 2, 'lulu': 2, 'mino': 2, 'derail': 2, 'incorporate': 2, 'balboa': 2, 'prodigy': 2, 'format': 2, 'waltz': 2, 'hallow': 2, 'sierra': 2, 'botella': 2, 'kyle': 2, 'dame': 2, 'kunzite': 2, 'shire': 2, 'clam': 2, 'transportation': 2, 'puma': 2, 'receptive': 2, 'backwardness': 2, 'oat': 2, 'barrio': 2, 'radiate': 2, 'sensuality': 2, 'confront': 2, 'skimp': 2, 'mixture': 2, 'swine': 2, 'contemplate': 2, 'capitan': 2, 'null': 2, 'tamer': 2, 'courteous': 2, 'summarize': 2, 'madam': 2, 'euphoric': 2, 'neckline': 2, 'accessible': 2, 'hummingbird': 2, 'compatible': 2, 'duper': 2, 'flowery': 2, 'velar': 2, 'freemason': 2, 'spendthrift': 2, 'aggressor': 2, 'abduction': 2, 'politics': 2, 'firmness': 2, 'mitigation': 2, 'diplomat': 2, 'macaroon': 2, 'galore': 2, 'emperor': 2, 'polygon': 2, 'filet': 2, 'asparagus': 2, 'diver': 2, 'khaki': 2, 'repulsion': 2, 'fiver': 2, 'logion': 2, 'sharper': 2, 'uncharted': 2, 'fae': 2, 'thema': 2, 'lira': 2, 'sloppy': 2, 'liverless': 2, 'rental': 2, 'despicable': 2, 'carnation': 2, 'arabesque': 2, 'rosette': 2, 'buckshot': 2, 'burglar': 2, 'agaze': 2, 'ruffian': 2, 'sled': 2, 'tapa': 2, 'pentagram': 2, 'infernal': 2, 'canyon': 2, 'titanium': 2, 'turf': 2, 'brewhouse': 2, 'mosaic': 2, 'cripple': 2, 'powerfully': 2, 'arsenic': 2, 'hive': 2, 'manure': 2, 'underpass': 2, 'daredevil': 2, 'lister': 2, 'apex': 2, 'moneybag': 2, 'flick': 2, 'cloak': 2, 'genealogy': 2, 'introduction': 2, 'hundredth': 2, 'venomous': 2, 'tyrone': 2, 'refresher': 2, 'smooch': 2, 'accordance': 2, 'gag': 2, 'conclude': 2, 'capitalize': 2, 'sue': 2, 'representation': 2, 'masquerade': 2, 'unavoidable': 2, 'reliable': 2, 'rejection': 2, 'unwrinkled': 2, 'rivet': 2, 'anchor': 2, 'anomaly': 2, 'sabbath': 2, 'entrust': 2, 'milestone': 2, 'paragraph': 2, 'forearm': 2, 'alder': 2, 'homemade': 2, 'plow': 2, 'inform': 2, 'tabula': 2, 'rasa': 2, 'opium': 2, 'prefab': 2, 'shard': 2, 'pacifier': 2, 'skater': 2, 'faker': 2, 'horrible': 2, 'clingy': 2, 'boisterous': 2, 'surfer': 2, 'fitty': 2, 'merciless': 2, 'corny': 2, 'traumatic': 2, 'cinematically': 2, 'node': 2, 'subtitle': 2, 'walter': 2, 'burnout': 2, 'solen': 2, 'sycamore': 2, 'agger': 2, 'lamin': 2, 'mag': 2, 'capitalism': 2, 'infect': 2, 'warrant': 2, 'juggle': 2, 'wawa': 2, 'womb': 2, 'drunkenness': 2, 'terrain': 2, 'conjure': 2, 'scorpion': 2, 'vaccine': 2, 'defective': 2, 'prostate': 2, 'evacuation': 2, 'diplomatic': 2, 'verb': 2, 'sufferer': 2, 'nito': 2, 'alias': 2, 'parao': 2, 'unmask': 2, 'marquee': 2, 'rake': 2, 'guava': 2, 'disgrace': 2, 'flay': 2, 'dual': 2, 'nori': 2, 'oval': 2, 'relevant': 2, 'raver': 2, 'elaine': 2, 'midget': 2, 'ambience': 2, 'tinkle': 2, 'concord': 2, 'fallacy': 2, 'scrub': 2, 'hierarch': 2, 'peine': 2, 'explosive': 2, 'unity': 2, 'exclude': 2, 'desolation': 2, 'suffice': 2, 'amend': 2, 'vulgar': 2, 'morgue': 2, 'blacksmith': 2, 'daft': 2, 'silencer': 2, 'smother': 2, 'shortage': 2, 'boycott': 2, 'brotherhood': 2, 'brokenness': 2, 'combat': 2, 'unconditional': 2, 'fortuneteller': 2, 'harass': 2, 'serpentine': 2, 'mythical': 2, 'humiliate': 2, 'assignment': 2, 'compulsory': 2, 'jujube': 2, 'heroic': 2, 'canine': 2, 'exceptional': 2, 'trample': 2, 'brotherly': 2, 'bravery': 2, 'spoiler': 2, 'taha': 2, 'rethink': 2, 'custard': 2, 'acquaint': 2, 'acceptable': 2, 'gore': 2, 'appropriate': 2, 'sweeten': 2, 'hazelnut': 2, 'economic': 2, 'prof': 2, 'rubbish': 2, 'auctioneer': 2, 'duchess': 2, 'repel': 2, 'disagreement': 2, 'blackness': 2, 'sima': 2, 'equality': 2, 'sultan': 2, 'lev': 2, 'referee': 2, 'dory': 2, 'excel': 2, 'article': 2, 'worldly': 2, 'turmoil': 2, 'manga': 2, 'unjust': 2, 'cerebral': 2, 'sizzle': 2, 'wax': 2, 'aga': 2, 'adversary': 2, 'beware': 2, 'ahu': 2, 'sina': 2, 'governor': 2, 'analyze': 2, 'secretary': 2, 'psychologically': 2, 'stalker': 2, 'fragrance': 2, 'bey': 2, 'traditional': 2, 'definite': 2, 'encroachment': 2, 'somersault': 2, 'inclination': 2, 'antiquity': 2, 'memorize': 2, 'collision': 2, 'sika': 2, 'fico': 2, 'leech': 2, 'meanness': 2, 'vocabulary': 2, 'tourism': 2, 'resemble': 2, 'zigzag': 2, 'restart': 2, 'virtue': 2, 'hemisphere': 2, 'intern': 2, 'gown': 2, 'contraband': 2, 'rondo': 2, 'antarctica': 2, 'psychiatrist': 2, 'succumb': 2, 'basque': 2, 'approval': 2, 'pollen': 2, 'plea': 2, 'lukewarm': 2, 'transaction': 2, 'pellet': 2, 'gurgle': 2, 'obi': 2, 'wobble': 2, 'mug': 2, 'differ': 2, 'dich': 2, 'ferry': 2, 'unfair': 2, 'robin': 2, 'resource': 2, 'mote': 2, 'bine': 2, 'clerk': 2, 'pawnshop': 2, 'mutt': 2, 'nugget': 2, 'mysteriously': 2, 'mindful': 2, 'diagram': 2, 'unsay': 2, 'duplicate': 2, 'limelight': 2, 'distribution': 2, 'enormous': 2, 'midsummer': 2, 'tory': 2, 'iceman': 2, 'scoreboard': 2, 'seller': 2, 'scum': 2, 'theatrical': 2, 'squirrel': 2, 'blackmail': 2, 'gibbon': 2, 'trapeze': 2, 'potency': 2, 'verbally': 2, 'stroller': 2, 'slinger': 2, 'mustnt': 2, 'offense': 2, 'khalifa': 2, 'cuddly': 2, 'verge': 2, 'magnum': 2, 'dissipate': 2, 'sentinel': 2, 'bogus': 2, 'brecham': 2, 'rue': 2, 'fut': 2, 'drumstick': 2, 'transcribe': 2, 'tenacious': 2, 'stork': 2, 'torah': 2, 'harbi': 2, 'venerable': 2, 'prod': 2, 'trombone': 2, 'sprint': 2, 'parka': 2, 'turquoise': 2, 'peck': 2, 'gyro': 2, 'technical': 2, 'pontoon': 2, 'oblige': 2, 'impulse': 2, 'hover': 2, 'placebo': 2, 'oneself': 2, 'slobber': 2, 'seer': 2, 'skeen': 2, 'chauffer': 2, 'improvement': 2, 'northwest': 2, 'attendance': 2, 'assemble': 2, 'quid': 2, 'kosher': 2, 'whilst': 2, 'ammonia': 2, 'closure': 2, 'footballer': 2, 'snorkel': 2, 'reschedule': 2, 'reappear': 2, 'settee': 2, 'pucker': 2, 'cusp': 2, 'nowt': 2, 'unreleased': 2, 'nervously': 2, 'juggler': 2, 'calypso': 2, 'whack': 2, 'utopian': 2, 'eavesdrop': 2, 'toupee': 2, 'pepperoni': 2, 'roi': 2, 'mechanism': 2, 'citizen': 2, 'ruckus': 2, 'wildlife': 2, 'digit': 2, 'kingpin': 2, 'potty': 2, 'bret': 2, 'negate': 2, 'stigma': 2, 'lever': 2, 'triangle': 2, 'prat': 2, 'baldy': 2, 'despoil': 2, 'electro': 2, 'hemoglobin': 2, 'unarm': 2, 'sectional': 2, 'eldest': 2, 'adoration': 2, 'adverse': 2, 'falsetto': 2, 'offset': 2, 'tink': 2, 'fruity': 2, 'rudimental': 2, 'sepsis': 2, 'burg': 2, 'artful': 2, 'burgess': 2, 'dropout': 2, 'turbine': 2, 'kalashnikov': 2, 'corporation': 2, 'supercharge': 2, 'discretion': 2, 'pantheon': 2, 'civilization': 2, 'oneness': 2, 'wayward': 2, 'behalf': 2, 'gild': 2, 'ridicule': 2, 'blueprint': 2, 'midautumn': 2, 'reunion': 2, 'vaguely': 2, 'discourage': 2, 'gentleness': 2, 'equinox': 2, 'embarrassment': 2, 'participation': 2, 'semester': 2, 'disturbance': 2, 'migratory': 2, 'beacon': 2, 'permanently': 2, 'revisit': 2, 'fiber': 2, 'provocative': 2, 'superstitious': 2, 'retribution': 2, 'conspiracy': 2, 'frenzied': 2, 'outrage': 2, 'conservative': 2, 'exposure': 2, 'nothingness': 2, 'unvomited': 2, 'obediently': 2, 'essential': 2, 'hinder': 2, 'recklessly': 2, 'turbulent': 2, 'swan': 2, 'tacit': 2, 'actual': 2, 'simulate': 2, 'cultivation': 2, 'remarriage': 2, 'unconsciously': 2, 'dilute': 2, 'farfetched': 2, 'vortex': 2, 'sustenance': 2, 'hypothermia': 2, 'snot': 2, 'sentimentality': 2, 'sorrowful': 2, 'breakthrough': 2, 'teammate': 2, 'ward': 2, 'torii': 2, 'supermarket': 2, 'unequal': 2, 'filtration': 2, 'sewage': 2, 'turbidity': 2, 'vault': 2, 'sedative': 2, 'nozzle': 2, 'fishy': 2, 'shabby': 2, 'rebound': 2, 'deflate': 2, 'pious': 2, 'activation': 2, 'persist': 2, 'distinction': 2, 'secular': 2, 'reincarnation': 2, 'thinner': 2, 'helplessly': 2, 'sentient': 2, 'spectrum': 2, 'stability': 2, 'unrestrained': 2, 'serial': 2, 'column': 2, 'willingness': 2, 'contradictory': 2, 'annoyance': 2, 'trajectory': 2, 'specimen': 2, 'recommend': 2, 'screamer': 2, 'pea': 2, 'hazen': 2, 'stoke': 2, 'folder': 2, 'tabloid': 2, 'backdoor': 2, 'forint': 2, 'dung': 2, 'czar': 2, 'levin': 2, 'talisman': 2, 'creed': 2, 'nave': 2, 'complement': 2, 'sleepily': 2, 'debut': 2, 'commonplace': 2, 'cocoa': 2, 'horror': 2, 'pseudo': 2, 'restrain': 2, 'residual': 2, 'necessarily': 2, 'incandescent': 2, 'weaken': 2, 'wingless': 2, 'dinosaur': 2, 'meteor': 2, 'hunch': 2, 'grieve': 2, 'pathway': 2, 'mouthpiece': 2, 'entertainer': 2, 'michigan': 2, 'thankful': 2, 'abundance': 2, 'minority': 2, 'collective': 2, 'physically': 2, 'premier': 2, 'carnivore': 2, 'wireless': 2, 'feedback': 2, 'nirvana': 2, 'depository': 2, 'roam': 2, 'compensation': 2, 'strain': 2, 'nylon': 2, 'uncertainty': 2, 'shamsheer': 2, 'surma': 2, 'bulla': 2, 'chakar': 2, 'shad': 2, 'neet': 2, 'kande': 2, 'pand': 2, 'nako': 2, 'tuza': 2, 'chowk': 2, 'andron': 2, 'flamboyant': 2, 'jive': 2, 'kra': 2, 'nak': 2, 'harr': 2, 'chakra': 2, 'karela': 2, 'katar': 2, 'dene': 2, 'reg': 2, 'gangan': 2, 'mange': 2, 'surrey': 2, 'crore': 2, 'pita': 2, 'lagan': 2, 'daler': 2, 'ber': 2, 'haste': 2, 'changa': 2, 'maun': 2, 'chandi': 2, 'heer': 2, 'thana': 2, 'hem': 2, 'smuggler': 2, 'conqueror': 2, 'impetuous': 2, 'impregnable': 2, 'm': 2, 'clause': 2, 'colon': 2, 'jiffy': 2, 'ruth': 2, 'manicure': 2, 'fluid': 2, 'realm': 2, 'murphy': 2, 'swisher': 2, 'hector': 2, 'cardinal': 2, 'brewer': 2, 'padre': 2, 'jed': 2, 'observance': 2, 'uncommon': 2, 'trait': 2, 'ultimately': 2, 'juvenile': 2, 'grammar': 2, 'shocker': 2, 'bedrock': 2, 'grail': 2, 'onehow': 2, 'cypress': 2, 'humpty': 2, 'waka': 2, 'dalton': 2, 'precipice': 2, 'discomfort': 2, 'homesickness': 2, 'griffin': 2, 'delude': 2, 'cinematic': 2, 'astronomy': 2, 'ascend': 2, 'thirtieth': 2, 'porta': 2, 'visualize': 2, 'dele': 2, 'emirate': 2, 'intercom': 2, 'hypnotic': 2, 'aspect': 2, 'dictatorship': 2, 'cachet': 2, 'poolside': 2, 'assassination': 2, 'ted': 2, 'metronome': 2, 'colossal': 2, 'sissy': 2, 'separately': 2, 'discipline': 2, 'slumber': 2, 'inconsolable': 2, 'correctness': 2, 'exceptionally': 2, 'patchwork': 2, 'kyah': 2, 'classify': 2, 'ancestry': 2, 'arbitrarily': 2, 'overturn': 2, 'thumbnail': 2, 'development': 2, 'labyrinthine': 2, 'arcane': 2, 'draft': 2, 'crybaby': 2, 'reverberation': 2, 'unreasonable': 2, 'intuition': 2, 'hyperventilation': 2, 'kombu': 2, 'bonito': 2, 'frustration': 2, 'willness': 2, 'cringe': 2, 'repetition': 2, 'deepen': 2, 'ignite': 2, 'morn': 2, 'singsong': 2, 'yen': 2, 'crossword': 2, 'boldly': 2, 'locksmith': 2, 'coldly': 2, 'irregular': 2, 'interval': 2, 'warmly': 2, 'dazzlingly': 2, 'pungent': 2, 'carbonic': 2, 'mel': 2, 'tae': 2, 'yoke': 2, 'misconception': 2, 'senior': 2, 'snipe': 2, 'evident': 2, 'blase': 2, 'sturdy': 2, 'ripen': 2, 'lifeless': 2, 'unopened': 2, 'infection': 2, 'ghoul': 2, 'plaga': 2, 'relentlessly': 2, 'muskrat': 2, 'i': 2, 'rigmarole': 2, 'ona': 2, 'idler': 2, 'shamal': 2, 'tez': 2, 'teaser': 2, 'merge': 2, 'autopilot': 2, 'beet': 2, 'injustice': 2, 'fraction': 2, 'beehive': 2, 'captivity': 2, 'sleeper': 2, 'jockey': 2, 'stafette': 2, 'plakat': 2, 'chaft': 2, 'mandala': 2, 'pete': 2, 'wat': 2, 'kilowatt': 2, 'ficelle': 2, 'sarna': 2, 'maki': 2, 'tari': 2, 'khir': 2, 'gale': 2, 'anba': 2, 'alef': 2, 'seclude': 2, 'muscat': 2, 'saki': 2, 'fare': 2, 'sowel': 2, 'baron': 2, 'larva': 2, 'condor': 2, 'bito': 2, 'notate': 2, 'corp': 2, 'smite': 2, 'daytime': 2, 'bordel': 2, 'mima': 2, 'reb': 2, 'wid': 2, 'ara': 2, 'hia': 2, 'chay': 2, 'scoot': 2, 'kob': 2, 'policy': 2, 'dutch': 2, 'kalo': 2, 'dire': 2, 'piscine': 2, 'amma': 2, 'swiss': 2, 'monstrous': 2, 'sorus': 2, 'stylo': 2, 'martyr': 2, 'beanie': 2, 'gable': 2, 'snout': 2, 'neglect': 2, 'pastel': 2, 'eternally': 2, 'enterprise': 2, 'commandment': 2, 'sup': 2, 'singlet': 2, 'affiliate': 2, 'yin': 2, 'pelu': 2, 'campus': 2, 'jargon': 2, 'dola': 2, 'elemi': 2, 'loma': 2, 'procrastinate': 2, 'agreement': 2, 'novice': 2, 'fireboy': 2, 'leadin': 2, 'plantation': 2, 'tule': 2, 'python': 2, 'chati': 2, 'disciple': 2, 'shank': 2, 'hish': 2, 'organically': 2, 'mathematics': 2, 'soh': 2, 'tipe': 2, 'giver': 2, 'waistline': 2, 'sile': 2, 'gist': 2, 'knicker': 2, 'screech': 2, 'dita': 2, 'demented': 2, 'sympathize': 2, 'perpetrator': 2, 'cyan': 2, 'waggie': 2, 'bachelor': 2, 'bankrupt': 2, 'smoothly': 2, 'merit': 2, 'marrow': 2, 'adorable': 2, 'moly': 2, 'legitimacy': 2, 'bugger': 2, 'caribou': 2, 'battler': 2, 'metropolis': 2, 'trough': 2, 'krone': 2, 'seriousness': 2, 'unsure': 2, 'bondage': 2, 'bunk': 2, 'inhibition': 2, 'h': 2, 'vessel': 2, 'conch': 2, 'undergo': 2, 'clientele': 2, 'handmade': 2, 'prototype': 2, 'acquiescent': 2, 'subtraction': 2, 'demonize': 2, 'narrate': 2, 'preamble': 2, 'avenge': 2, 'procedure': 2, 'lope': 2, 'scientific': 2, 'duke': 2, 'marquis': 2, 'monomania': 2, 'astonish': 2, 'execution': 2, 'pope': 2, 'monarchy': 2, 'reasonableness': 2, 'prudent': 2, 'hazel': 2, 'attractiveness': 2, 'indicate': 2, 'enslave': 2, 'pageant': 2, 'pretender': 2, 'montage': 2, 'portal': 2, 'negatively': 2, 'disadvantage': 2, 'tanha': 2, 'dungeon': 2, 'hue': 2, 'waar': 2, 'gul': 2, 'comfy': 2, 'r': 2, 'bullan': 2, 'sham': 2, 'coz': 2, 'hansa': 2, 'dilo': 2, 'labor': 2, 'nay': 2, 'bandi': 2, 'garb': 2, 'institution': 2, 'suppository': 2, 'roundabout': 2, 'litany': 2, 'glacier': 2, 'overboard': 2, 'zloty': 2, 'statistic': 2, 'ventriloquist': 2, 'hellcat': 2, 'shotty': 2, 'cayman': 2, 'pixy': 2, 'atlantic': 2, 'cleverly': 2, 'cartoon': 2, 'bundy': 2, 'erupt': 2, 'etna': 2, 'rye': 2, 'dorado': 2, 'bord': 2, 'schizophrenic': 2, 'correction': 2, 'blindfold': 2, 'brad': 2, 'genuine': 2, 'mascot': 2, 'typhoon': 2, 'crotch': 2, 'verily': 2, 'toothpick': 2, 'infidelity': 2, 'bribery': 2, 'bicarbonate': 2, 'sieve': 2, 'purity': 2, 'sinusitis': 2, 'sarcophagus': 2, 'eunuch': 2, 'snoopy': 2, 'merch': 2, 'duro': 2, 'monetary': 2, 'verdict': 2, 'eclair': 2, 'occult': 2, 'instance': 2, 'monopoly': 2, 'famine': 2, 'varnish': 2, 'yeast': 2, 'correctional': 2, 'widely': 2, 'poler': 2, 'acceptance': 2, 'prostitution': 2, 'loam': 2, 'quell': 2, 'unknowingly': 2, 'unseemly': 2, 'unpromising': 2, 'unsightly': 2, 'qualification': 2, 'sobriety': 2, 'greenness': 2, 'quicken': 2, 'irritable': 2, 'recklessness': 2, 'prelude': 2, 'investor': 2, 'profound': 2, 'youngster': 2, 'escalate': 2, 'playmate': 2, 'tong': 2, 'muster': 2, 'incessant': 2, 'marten': 2, 'wingman': 2, 'renunciation': 2, 'gloom': 2, 'coy': 2, 'nook': 2, 'diseased': 2, 'abide': 2, 'harpoon': 2, 'unreadable': 2, 'nausea': 2, 'clark': 2, 'toot': 2, 'marionette': 2, 'worshipfulness': 2, 'lafayette': 2, 'manumission': 2, 'instability': 2, 'commemorate': 2, 'lustful': 2, 'comprehension': 2, 'insincerely': 2, 'wallboard': 2, 'persistence': 2, 'uniqueness': 2, 'nye': 2, 'mercilessly': 2, 'unreal': 2, 'contest': 2, 'leper': 2, 'nether': 2, 'steppe': 2, 'caustic': 2, 'savoy': 2, 'ling': 2, 'detractor': 2, 'unending': 2, 'horizontal': 2, 'vertical': 2, 'earnestly': 2, 'abundant': 2, 'mortar': 2, 'rosy': 2, 'vau': 2, 'lovingly': 2, 'apricot': 2, 'conceal': 2, 'coastal': 2, 'dowry': 2, 'noun': 2, 'weakling': 2, 'kudu': 2, 'innocently': 2, 'evildoer': 2, 'township': 2, 'thud': 2, 'untamed': 1, 'wane': 1, 'viperine': 1, 'lyricist': 1, 'hoist': 1, 'inconvenience': 1, 'acidity': 1, 'bestial': 1, 'lunatic': 1, 'basto': 1, 'measurement': 1, 'excellence': 1, 'porr': 1, 'theorem': 1, 'locality': 1, 'consecutive': 1, 'localist': 1, 'jocular': 1, 'reproduce': 1, 'fourteenth': 1, 'instinctively': 1, 'parodic': 1, 'exquisiteness': 1, 'rigor': 1, 'caste': 1, 'wardrobe': 1, 'flume': 1, 'spill': 1, 'consumer': 1, 'alienate': 1, 'protest': 1, 'samadhi': 1, 'moisture': 1, 'arrogantly': 1, 'stimulant': 1, 'timelessness': 1, 'parable': 1, 'luxuriantly': 1, 'transcendental': 1, 'gainer': 1, 'aloud': 1, 'announce': 1, 'gouge': 1, 'signature': 1, 'scanner': 1, 'hairy': 1, 'accompaniment': 1, 'farce': 1, 'fuselage': 1, 'relic': 1, 'schoolgirl': 1, 'grotesque': 1, 'armless': 1, 'prosthesis': 1, 'inhabitant': 1, 'ministerial': 1, 'lingerie': 1, 'ingloriously': 1, 'almanac': 1, 'twa': 1, 'kef': 1, 'napkin': 1, 'nuclear': 1, 'emcee': 1, 'howitzer': 1, 'incompetent': 1, 'idiocy': 1, 'ambrosia': 1, 'upward': 1, 'literary': 1, 'wham': 1, 'sunup': 1, 'simulant': 1, 'chronicle': 1, 'doe': 1, 'unfavorable': 1, 'consciously': 1, 'meerkat': 1, 'basin': 1, 'memorial': 1, 'optional': 1, 'farad': 1, 'gestural': 1, 'vestibular': 1, 'plankton': 1, 'cue': 1, 'previously': 1, 'ped': 1, 'skew': 1, 'residential': 1, 'folio': 1, 'scavenger': 1, 'communism': 1, 'lensed': 1, 'carrier': 1, 'ariel': 1, 'washer': 1, 'hormone': 1, 'blower': 1, 'individually': 1, 'regime': 1, 'axe': 1, 'casual': 1, 'pendulum': 1, 'conscious': 1, 'coffer': 1, 'pretext': 1, 'systematic': 1, 'neurotic': 1, 'unagreeable': 1, 'insolvent': 1, 'pothole': 1, 'outlaw': 1, 'viva': 1, 'pulp': 1, 'indirectly': 1, 'nei': 1, 'sapo': 1, 'levir': 1, 'brute': 1, 'viola': 1, 'zimbabwe': 1, 'debauchery': 1, 'inn': 1, 'carburate': 1, 'beck': 1, 'fanatic': 1, 'unfriendly': 1, 'toughness': 1, 'bardo': 1, 'bate': 1, 'venture': 1, 'ascendant': 1, 'tribute': 1, 'arcanum': 1, 'loreal': 1, 'digestive': 1, 'jambo': 1, 'painlessly': 1, 'wha': 1, 'correspondence': 1, 'skewer': 1, 'iodine': 1, 'walrus': 1, 'adequately': 1, 'zealously': 1, 'kinescope': 1, 'automaton': 1, 'cheekbone': 1, 'morgenstern': 1, 'snicker': 1, 'rerun': 1, 'artfully': 1, 'flapper': 1, 'nightgown': 1, 'shagreen': 1, 'escapist': 1, 'punitive': 1, 'flasher': 1, 'granite': 1, 'pulpy': 1, 'expire': 1, 'pedestal': 1, 'napalm': 1, 'simp': 1, 'succubus': 1, 'imager': 1, 'outlet': 1, 'clarinet': 1, 'maestro': 1, 'brook': 1, 'alco': 1, 'precocious': 1, 'mongrel': 1, 'squeaky': 1, 'smolder': 1, 'lawzy': 1, 'parody': 1, 'tachycardia': 1, 'bookmark': 1, 'sportswear': 1, 'crunch': 1, 'vibrant': 1, 'eater': 1, 'cork': 1, 'treacherously': 1, 'wuss': 1, 'slaughterhouse': 1, 'emphasis': 1, 'brin': 1, 'turnstile': 1, 'diversity': 1, 'registry': 1, 'pap': 1, 'tron': 1, 'quay': 1, 'vivacious': 1, 'hamlet': 1, 'frontage': 1, 'contaminate': 1, 'malevolent': 1, 'lectern': 1, 'frolic': 1, 'benne': 1, 'pup': 1, 'fay': 1, 'rebate': 1, 'flirtatious': 1, 'photocopy': 1, 'gigantic': 1, 'perkin': 1, 'pacemaker': 1, 'coolie': 1, 'luminous': 1, 'bronzer': 1, 'communicative': 1, 'franco': 1, 'sporty': 1, 'token': 1, 'papaya': 1, 'description': 1, 'hache': 1, 'sensa': 1, 'chivalrous': 1, 'export': 1, 'commune': 1, 'gazebo': 1, 'rockrose': 1, 'dispatch': 1, 'trivia': 1, 'deprive': 1, 'chatterbox': 1, 'mahone': 1, 'heartthrob': 1, 'gourmet': 1, 'robust': 1, 'elf': 1, 'distrust': 1, 'demoniac': 1, 'cob': 1, 'inconspicuous': 1, 'unrepeatable': 1, 'preferable': 1, 'incorrigible': 1, 'eyesight': 1, 'collagen': 1, 'suburb': 1, 'guiltily': 1, 'skeet': 1, 'offbeat': 1, 'kisser': 1, 'hub': 1, 'scraper': 1, 'sider': 1, 'slug': 1, 'marigold': 1, 'chimera': 1, 'hysteric': 1, 'ooze': 1, 'coot': 1, 'unconsciousness': 1, 'deduction': 1, 'saber': 1, 'pug': 1, 'opposition': 1, 'precision': 1, 'travesty': 1, 'vine': 1, 'hoot': 1, 'slugger': 1, 'disgraceful': 1, 'pep': 1, 'crowbar': 1, 'researcher': 1, 'formerly': 1, 'biz': 1, 'haft': 1, 'mutate': 1, 'harmonize': 1, 'sixteenth': 1, 'playroom': 1, 'hakam': 1, 'amnesia': 1, 'gratuity': 1, 'lure': 1, 'slash': 1, 'marocain': 1, 'thoughtless': 1, 'bunker': 1, 'claustrophobia': 1, 'quicksand': 1, 'leed': 1, 'hateful': 1, 'firmly': 1, 'merk': 1, 'pickle': 1, 'dreary': 1, 'straightforward': 1, 'sov': 1, 'marinate': 1, 'setup': 1, 'flavour': 1, 'hen': 1, 'benzene': 1, 'election': 1, 'borderland': 1, 'onetime': 1, 'heller': 1, 'spinder': 1, 'frisk': 1, 'redbone': 1, 'bringer': 1, 'steep': 1, 'patina': 1, 'subtext': 1, 'gob': 1, 'monologue': 1, 'freebooter': 1, 'adultery': 1, 'sylvester': 1, 'fabrication': 1, 'newly': 1, 'gumbo': 1, 'kopi': 1, 'carl': 1, 'opus': 1, 'wingbeat': 1, 'windflower': 1, 'gio': 1, 'pleaser': 1, 'diorama': 1, 'freewheeler': 1, 'lucy': 1, 'hammerhead': 1, 'reem': 1, 'intervention': 1, 'financially': 1, 'unleash': 1, 'erotically': 1, 'idiotically': 1, 'teem': 1, 'collie': 1, 'facial': 1, 'negation': 1, 'subsonic': 1, 'molecule': 1, 'innermost': 1, 'enjoyable': 1, 'gymnasium': 1, 'inequality': 1, 'champaign': 1, 'interplay': 1, 'alist': 1, 'exterior': 1, 'hedge': 1, 'overthink': 1, 'frogman': 1, 'genitalia': 1, 'primate': 1, 'inboard': 1, 'achievement': 1, 'ravine': 1, 'compute': 1, 'brey': 1, 'pantie': 1, 'zinc': 1, 'buoyant': 1, 'mese': 1, 'consideration': 1, 'piso': 1, 'potassium': 1, 'llama': 1, 'cero': 1, 'hammock': 1, 'weekly': 1, 'isabelita': 1, 'cardholder': 1, 'chemist': 1, 'vibrator': 1, 'slutty': 1, 'haw': 1, 'demagogy': 1, 'shirtless': 1, 'lassie': 1, 'teat': 1, 'ragpicker': 1, 'choli': 1, 'romper': 1, 'spout': 1, 'scabbard': 1, 'jolly': 1, 'valet': 1, 'fling': 1, 'coo': 1, 'ose': 1, 'messin': 1, 'clava': 1, 'rewire': 1, 'talker': 1, 'prudence': 1, 'pato': 1, 'hansel': 1, 'gibby': 1, 'circuit': 1, 'pino': 1, 'tripy': 1, 'shellac': 1, 'dislocate': 1, 'senseless': 1, 'gnome': 1, 'alpine': 1, 'plateau': 1, 'delegate': 1, 'ohm': 1, 'handrail': 1, 'downward': 1, 'douche': 1, 'soloist': 1, 'fiesta': 1, 'siesta': 1, 'bayonet': 1, 'composition': 1, 'fermentation': 1, 'scalpel': 1, 'disability': 1, 'omicron': 1, 'tablecloth': 1, 'colin': 1, 'graft': 1, 'delicacy': 1, 'ignorance': 1, 'mediator': 1, 'generator': 1, 'huff': 1, 'interface': 1, 'critically': 1, 'categorical': 1, 'mavis': 1, 'marginalize': 1, 'brief': 1, 'deliciousness': 1, 'oversight': 1, 'transgression': 1, 'divination': 1, 'incomprehensible': 1, 'loach': 1, 'knead': 1, 'lighthearted': 1, 'betty': 1, 'colliery': 1, 'gloat': 1, 'adventurer': 1, 'imp': 1, 'category': 1, 'renewal': 1, 'stinginess': 1, 'afflict': 1, 'bassist': 1, 'deduct': 1, 'adopt': 1, 'execute': 1, 'droll': 1, 'imminent': 1, 'doggedness': 1, 'reiterate': 1, 'solicitous': 1, 'scruple': 1, 'imperative': 1, 'alt': 1, 'muffin': 1, 'rhein': 1, 'freight': 1, 'deb': 1, 'transgress': 1, 'fondle': 1, 'virility': 1, 'respectable': 1, 'jinx': 1, 'bacteria': 1, 'terrestrial': 1, 'laura': 1, 'arithmetic': 1, 'efficiency': 1, 'efficient': 1, 'fondness': 1, 'athletic': 1, 'invalidate': 1, 'hyper': 1, 'karaoke': 1, 'apron': 1, 'frustrate': 1, 'nullify': 1, 'distinctive': 1, 'enamel': 1, 'expel': 1, 'eloquently': 1, 'pamphlet': 1, 'shack': 1, 'ing': 1, 'disobedient': 1, 'occupant': 1, 'factorial': 1, 'purify': 1, 'hemorrhage': 1, 'turk': 1, 'urine': 1, 'resuscitation': 1, 'zee': 1, 'fink': 1, 'exaggeration': 1, 'corps': 1, 'bridle': 1, 'violation': 1, 'hostel': 1, 'acceleration': 1, 'installment': 1, 'liken': 1, 'ahmadi': 1, 'titer': 1, 'squawk': 1, 'sift': 1, 'degrade': 1, 'murshid': 1, 'integrity': 1, 'rugged': 1, 'friendliness': 1, 'tartar': 1, 'searchlight': 1, 'dib': 1, 'neurological': 1, 'mandatory': 1, 'imprisonment': 1, 'individual': 1, 'locust': 1, 'awareness': 1, 'breastfeed': 1, 'steadfastness': 1, 'amplifier': 1, 'psychotherapist': 1, 'steadily': 1, 'tuxedo': 1, 'converge': 1, 'heroism': 1, 'senile': 1, 'multiplicity': 1, 'trespass': 1, 'mold': 1, 'blindness': 1, 'spoonful': 1, 'gallows': 1, 'spleen': 1, 'immoral': 1, 'respectfully': 1, 'fash': 1, 'joule': 1, 'paprika': 1, 'oki': 1, 'employment': 1, 'reindeer': 1, 'stardom': 1, 'engross': 1, 'apparent': 1, 'hemorrhoid': 1, 'contradict': 1, 'calculation': 1, 'feminine': 1, 'anus': 1, 'advertise': 1, 'majesty': 1, 'twitch': 1, 'wadi': 1, 'mineral': 1, 'jetty': 1, 'blanc': 1, 'smartness': 1, 'capper': 1, 'cylinder': 1, 'virtuous': 1, 'dervish': 1, 'currently': 1, 'insistence': 1, 'sympathetic': 1, 'imposition': 1, 'hallucinate': 1, 'absinthe': 1, 'lovesickness': 1, 'zealous': 1, 'afterhours': 1, 'pounce': 1, 'synonymous': 1, 'luce': 1, 'hypochondria': 1, 'moha': 1, 'coexist': 1, 'boast': 1, 'deluge': 1, 'clave': 1, 'rata': 1, 'sorbus': 1, 'adjustment': 1, 'butane': 1, 'canopy': 1, 'brunch': 1, 'bubbly': 1, 'smock': 1, 'trampoline': 1, 'mouthful': 1, 'accomplish': 1, 'province': 1, 'misogyny': 1, 'futility': 1, 'hedonistic': 1, 'heinous': 1, 'acropolis': 1, 'slant': 1, 'outplay': 1, 'dictator': 1, 'dominance': 1, 'negativity': 1, 'albeit': 1, 'windbreaker': 1, 'ownership': 1, 'logistical': 1, 'pigskin': 1, 'insole': 1, 'streptococcus': 1, 'ligger': 1, 'armpit': 1, 'installation': 1, 'dualist': 1, 'humanist': 1, 'phosphorus': 1, 'patchouli': 1, 'amba': 1, 'jami': 1, 'chisel': 1, 'catnip': 1, 'divider': 1, 'taxman': 1, 'achingly': 1, 'publicity': 1, 'reek': 1, 'admittedly': 1, 'aluminum': 1, 'acute': 1, 'masculinity': 1, 'axon': 1, 'expanse': 1, 'brutally': 1, 'juniper': 1, 'birch': 1, 'growl': 1, 'faller': 1, 'hitchhiker': 1, 'vane': 1, 'monk': 1, 'playbook': 1, 'manually': 1, 'bootstrap': 1, 'lapsi': 1, 'unidirectional': 1, 'countryman': 1, 'johannes': 1, 'nonsensical': 1, 'polonaise': 1, 'rightfully': 1, 'fiasco': 1, 'nomination': 1, 'antique': 1, 'influenza': 1, 'lapse': 1, 'doldrums': 1, 'pantomime': 1, 'virile': 1, 'ulla': 1, 'truckload': 1, 'nucleus': 1, 'embodiment': 1, 'hysteria': 1, 'dingo': 1, 'doup': 1, 'pesa': 1, 'breakage': 1, 'intractable': 1, 'tenant': 1, 'intimidate': 1, 'hybrid': 1, 'conk': 1, 'grapple': 1, 'poultry': 1, 'suspender': 1, 'toph': 1, 'crony': 1, 'ingrate': 1, 'ensure': 1, 'comic': 1, 'gearbox': 1, 'wring': 1, 'sequential': 1, 'stupefaction': 1, 'geneva': 1, 'brochure': 1, 'quail': 1, 'marge': 1, 'fusional': 1, 'holder': 1, 'firmament': 1, 'retain': 1, 'atlas': 1, 'bramble': 1, 'treble': 1, 'resin': 1, 'retina': 1, 'divert': 1, 'courtesy': 1, 'vineyard': 1, 'quibble': 1, 'sibling': 1, 'buffoon': 1, 'elaborate': 1, 'glutton': 1, 'dock': 1, 'animate': 1, 'xylophone': 1, 'screwdriver': 1, 'latch': 1, 'jostle': 1, 'procedural': 1, 'voyeur': 1, 'grocer': 1, 'mackerel': 1, 'mucus': 1, 'qualify': 1, 'pudding': 1, 'winegrower': 1, 'maqui': 1, 'ceremony': 1, 'hock': 1, 'sandman': 1, 'atrocious': 1, 'fizzy': 1, 'truncheon': 1, 'equip': 1, 'counterfeit': 1, 'schoolboy': 1, 'destabilize': 1, 'unison': 1, 'filippo': 1, 'moreover': 1, 'taunt': 1, 'kodak': 1, 'inspector': 1, 'firearm': 1, 'globule': 1, 'erosive': 1, 'posterior': 1, 'jasmine': 1, 'miff': 1, 'noxious': 1, 'carbo': 1, 'stoppage': 1, 'faust': 1, 'stifle': 1, 'entail': 1, 'aerial': 1, 'snowfall': 1, 'predict': 1, 'stringy': 1, 'riddance': 1, 'pane': 1, 'peri': 1, 'stoner': 1, 'indecision': 1, 'pollution': 1, 'empress': 1, 'forevermore': 1, 'outrageous': 1, 'ratio': 1, 'alphabet': 1, 'cee': 1, 'cellular': 1, 'embryonic': 1, 'fleece': 1, 'enrage': 1, 'humour': 1, 'amongst': 1, 'snide': 1, 'canny': 1, 'chanter': 1, 'softy': 1, 'immediate': 1, 'prune': 1, 'prosecution': 1, 'commercially': 1, 'slyly': 1, 'wooer': 1, 'besa': 1, 'feud': 1, 'impeccable': 1, 'appetizer': 1, 'reef': 1, 'dumbbell': 1, 'shoddy': 1, 'shure': 1, 'aria': 1, 'unruly': 1, 'policyholder': 1, 'calyx': 1, 'stratus': 1, 'plucker': 1, 'clack': 1, 'tartan': 1, 'unconvinced': 1, 'chute': 1, 'foreman': 1, 'demonstrate': 1, 'shadowbox': 1, 'phonograph': 1, 'assaulter': 1, 'devise': 1, 'electrify': 1, 'fullback': 1, 'dosage': 1, 'hypnosis': 1, 'launcher': 1, 'splatter': 1, 'chump': 1, 'unify': 1, 'gambler': 1, 'handler': 1, 'tical': 1, 'infrared': 1, 'dole': 1, 'fole': 1, 'ejaculate': 1, 'gardener': 1, 'hider': 1, 'drinker': 1, 'coiffure': 1, 'censer': 1, 'gigolo': 1, 'choreography': 1, 'cashier': 1, 'ingratitude': 1, 'minaret': 1, 'accordingly': 1, 'lora': 1, 'sweeper': 1, 'heartfelt': 1, 'rapidly': 1, 'counteract': 1, 'accolade': 1, 'smug': 1, 'unbiased': 1, 'inspect': 1, 'convergence': 1, 'hostility': 1, 'anecdote': 1, 'newlywed': 1, 'embroidery': 1, 'fanatical': 1, 'alumnus': 1, 'inspirational': 1, 'crust': 1, 'solitary': 1, 'encroach': 1, 'energetic': 1, 'generous': 1, 'width': 1, 'numerous': 1, 'calmer': 1, 'vengeance': 1, 'resentful': 1, 'unsolved': 1, 'benevolence': 1, 'drowsy': 1, 'braver': 1, 'awkwardly': 1, 'perfunctorily': 1, 'lest': 1, 'contentment': 1, 'extract': 1, 'evolution': 1, 'formal': 1, 'duckling': 1, 'touchingly': 1, 'invert': 1, 'meniscus': 1, 'unfathomable': 1, 'synchronize': 1, 'interspace': 1, 'digitally': 1, 'recreate': 1, 'simulation': 1, 'nutrient': 1, 'voluntary': 1, 'cultivate': 1, 'injury': 1, 'lovelorn': 1, 'fullness': 1, 'tearfully': 1, 'evaporate': 1, 'discouragement': 1, 'immersion': 1, 'chang': 1, 'partiality': 1, 'hereafter': 1, 'atrium': 1, 'firefly': 1, 'hao': 1, 'clinic': 1, 'incisively': 1, 'diligent': 1, 'indefinitely': 1, 'pinnacle': 1, 'comfortingly': 1, 'exploration': 1, 'embankment': 1, 'composer': 1, 'editor': 1, 'supervisor': 1, 'mudstone': 1, 'carelessly': 1, 'transformation': 1, 'reluctant': 1, 'vulgarity': 1, 'dependence': 1, 'passageway': 1, 'elderly': 1, 'sedation': 1, 'analgesia': 1, 'strangulation': 1, 'strangle': 1, 'medication': 1, 'windpipe': 1, 'pitchfork': 1, 'prong': 1, 'causeway': 1, 'unfailing': 1, 'belligerent': 1, 'kung': 1, 'enrich': 1, 'diaphragm': 1, 'persevere': 1, 'ugliness': 1, 'disrespectful': 1, 'popularity': 1, 'characterize': 1, 'fairyland': 1, 'wilderness': 1, 'backtrack': 1, 'comparative': 1, 'sanitary': 1, 'ware': 1, 'optimization': 1, 'clang': 1, 'indiscriminately': 1, 'affordable': 1, 'imprison': 1, 'spectacular': 1, 'bereavement': 1, 'introversion': 1, 'unacknowledged': 1, 'teacup': 1, 'pessimism': 1, 'irreversible': 1, 'disassembly': 1, 'leisure': 1, 'sponge': 1, 'calor': 1, 'disloyal': 1, 'hawthorn': 1, 'quieter': 1, 'seizure': 1, 'halfman': 1, 'enviously': 1, 'verbatim': 1, 'constructive': 1, 'witty': 1, 'foresight': 1, 'visitation': 1, 'defuse': 1, 'kell': 1, 'respectful': 1, 'venereal': 1, 'buffalo': 1, 'matchbox': 1, 'distributor': 1, 'porterhouse': 1, 'diversion': 1, 'lethargy': 1, 'prestigious': 1, 'spinner': 1, 'susi': 1, 'autobiography': 1, 'raff': 1, 'ret': 1, 'muller': 1, 'strychnine': 1, 'vinny': 1, 'predella': 1, 'beth': 1, 'cor': 1, 'godmother': 1, 'rincon': 1, 'tody': 1, 'drunkenly': 1, 'mixer': 1, 'walnut': 1, 'vaccinate': 1, 'chasm': 1, 'epileptic': 1, 'daresay': 1, 'patriotism': 1, 'repertoire': 1, 'spur': 1, 'drastically': 1, 'acrobat': 1, 'blindingly': 1, 'habeas': 1, 'corpus': 1, 'irritant': 1, 'deceitful': 1, 'bong': 1, 'teng': 1, 'gullible': 1, 'declaration': 1, 'liven': 1, 'wakefulness': 1, 'puffin': 1, 'phonogram': 1, 'likewise': 1, 'hierarchical': 1, 'recede': 1, 'monochrome': 1, 'encapsulate': 1, 'bias': 1, 'quitter': 1, 'interaction': 1, 'cliche': 1, 'allure': 1, 'uneasy': 1, 'anywheres': 1, 'nurture': 1, 'intimately': 1, 'scavenge': 1, 'proficient': 1, 'poignant': 1, 'whitewash': 1, 'faithless': 1, 'collateral': 1, 'disapproval': 1, 'bleak': 1, 'meaty': 1, 'earthly': 1, 'nighttime': 1, 'opal': 1, 'omer': 1, 'sanctification': 1, 'jama': 1, 'discriminatory': 1, 'domestic': 1, 'homelessness': 1, 'frequently': 1, 'workplace': 1, 'assign': 1, 'harassment': 1, 'squirm': 1, 'maw': 1, 'humorous': 1, 'mystical': 1, 'segment': 1, 'conditioner': 1, 'convention': 1, 'sri': 1, 'blockbuster': 1, 'galilee': 1, 'sprinkler': 1, 'opener': 1, 'rabbi': 1, 'dang': 1, 'lieutenant': 1, 'rioter': 1, 'screed': 1, 'enthusiastic': 1, 'bacca': 1, 'deserter': 1, 'joyful': 1, 'cafeteria': 1, 'omelette': 1, 'hyperactive': 1, 'fictitious': 1, 'cougar': 1, 'lagoon': 1, 'honeysuckle': 1, 'antibiotic': 1, 'fusion': 1, 'hals': 1, 'haircut': 1, 'palpitation': 1, 'jealously': 1, 'offensive': 1, 'mand': 1, 'tula': 1, 'yede': 1, 'rukh': 1, 'baal': 1, 'shaikh': 1, 'wer': 1, 'mitra': 1, 'melam': 1, 'danda': 1, 'sar': 1, 'salaam': 1, 'wrangler': 1, 'dubb': 1, 'dian': 1, 'penda': 1, 'rame': 1, 'jog': 1, 'singh': 1, 'tamas': 1, 'pinnal': 1, 'vela': 1, 'mela': 1, 'misuse': 1, 'entanglement': 1, 'tur': 1, 'militiaman': 1, 'urbanist': 1, 'technology': 1, 'bearer': 1, 'shindy': 1, 'instructor': 1, 'tahin': 1, 'kale': 1, 'mesmerize': 1, 'exchequer': 1, 'borg': 1, 'iva': 1, 'linnet': 1, 'matti': 1, 'stam': 1, 'vocalise': 1, 'syringe': 1, 'batter': 1, 'dickey': 1, 'brett': 1, 'wainwright': 1, 'lough': 1, 'kelvin': 1, 'dodger': 1, 'homer': 1, 'morale': 1, 'gaslight': 1, 'sheath': 1, 'egotism': 1, 'zeppelin': 1, 'bead': 1, 'janitor': 1, 'fiancee': 1, 'apparition': 1, 'addend': 1, 'furor': 1, 'cameo': 1, 'guardo': 1, 'preveto': 1, 'reattach': 1, 'blockade': 1, 'cirque': 1, 'soleil': 1, 'hiccup': 1, 'systematize': 1, 'courtyard': 1, 'sadistic': 1, 'haywire': 1, 'unresponsive': 1, 'redder': 1, 'feign': 1, 'condolence': 1, 'idealize': 1, 'emptier': 1, 'flexible': 1, 'upwards': 1, 'dine': 1, 'holey': 1, 'sustain': 1, 'reteach': 1, 'topography': 1, 'initiation': 1, 'resurrect': 1, 'lynch': 1, 'militant': 1, 'scour': 1, 'stethoscope': 1, 'insufferable': 1, 'morsel': 1, 'paolo': 1, 'damme': 1, 'decipher': 1, 'hatchet': 1, 'auction': 1, 'heritage': 1, 'crest': 1, 'oxymoron': 1, 'antipode': 1, 'rematch': 1, 'dryness': 1, 'incorrect': 1, 'tarantella': 1, 'petite': 1, 'sans': 1, 'mutive': 1, 'vedette': 1, 'extraordinarily': 1, 'guardrail': 1, 'newscast': 1, 'hooliganism': 1, 'hibernate': 1, 'gloss': 1, 'extort': 1, 'predator': 1, 'manipulation': 1, 'unusable': 1, 'permit': 1, 'apprenticeship': 1, 'deface': 1, 'optical': 1, 'herbal': 1, 'weeda': 1, 'regional': 1, 'farsighted': 1, 'provincial': 1, 'caterer': 1, 'troupe': 1, 'diabetes': 1, 'soldo': 1, 'semiautomatic': 1, 'infamy': 1, 'extinct': 1, 'unworthy': 1, 'docile': 1, 'unspoken': 1, 'tekken': 1, 'timon': 1, 'banca': 1, 'unlimited': 1, 'cellophane': 1, 'coldness': 1, 'unwavering': 1, 'unnecessarily': 1, 'unspecified': 1, 'unglamorous': 1, 'youze': 1, 'monopolize': 1, 'lameness': 1, 'notification': 1, 'keyhole': 1, 'unacceptably': 1, 'moisten': 1, 'categorize': 1, 'obscure': 1, 'completion': 1, 'irresponsible': 1, 'koku': 1, 'sora': 1, 'unsubstantial': 1, 'tactic': 1, 'turntable': 1, 'cameraman': 1, 'roughly': 1, 'bravado': 1, 'unmatched': 1, 'finite': 1, 'flashily': 1, 'vermilion': 1, 'unmistakable': 1, 'bluish': 1, 'tremor': 1, 'puffy': 1, 'serenity': 1, 'thinker': 1, 'roughhewn': 1, 'trainee': 1, 'frantically': 1, 'regretful': 1, 'warmhearted': 1, 'whimsical': 1, 'oblivious': 1, 'inoperable': 1, 'relativity': 1, 'fortunetelling': 1, 'hurtful': 1, 'erika': 1, 'assimilate': 1, 'analogy': 1, 'wonderfulness': 1, 'irresponsibly': 1, 'impose': 1, 'flyable': 1, 'snowy': 1, 'uninhabited': 1, 'quo': 1, 'overbear': 1, 'highball': 1, 'decisive': 1, 'occurrence': 1, 'customary': 1, 'outfield': 1, 'unprecedented': 1, 'flashiness': 1, 'firepower': 1, 'outrun': 1, 'indistinguishable': 1, 'punctuation': 1, 'awfully': 1, 'righteously': 1, 'mediocrity': 1, 'citrus': 1, 'envelop': 1, 'inexperienced': 1, 'omission': 1, 'preciousness': 1, 'blueness': 1, 'clumsiness': 1, 'pry': 1, 'refresh': 1, 'doctrine': 1, 'wormhole': 1, 'adjective': 1, 'anew': 1, 'shudder': 1, 'shekel': 1, 'stereo': 1, 'immunity': 1, 'fizzle': 1, 'pumpkin': 1, 'webster': 1, 'crescent': 1, 'amok': 1, 'boyhood': 1, 'flexibly': 1, 'opacity': 1, 'badness': 1, 'vocalization': 1, 'awkwardness': 1, 'retrace': 1, 'unobtainable': 1, 'expressionless': 1, 'odd': 1, 'densely': 1, 'cranky': 1, 'gait': 1, 'stimulate': 1, 'carelessness': 1, 'burdensome': 1, 'freshman': 1, 'insurmountable': 1, 'ticktick': 1, 'momentum': 1, 'flicky': 1, 'homey': 1, 'thoughtlessly': 1, 'hike': 1, 'insolent': 1, 'beckon': 1, 'otto': 1, 'macabre': 1, 'macan': 1, 'hindsight': 1, 'realign': 1, 'demise': 1, 'confine': 1, 'ait': 1, 'consist': 1, 'blissful': 1, 'grimy': 1, 'internally': 1, 'tunu': 1, 'arzan': 1, 'cosine': 1, 'cleaver': 1, 'myna': 1, 'kep': 1, 'unattainable': 1, 'goody': 1, 'weightlessly': 1, 'slag': 1, 'manger': 1, 'upstart': 1, 'hart': 1, 'oversalt': 1, 'outsider': 1, 'parish': 1, 'synonym': 1, 'manna': 1, 'heartily': 1, 'altitude': 1, 'synthetic': 1, 'zat': 1, 'tutelage': 1, 'reagent': 1, 'biology': 1, 'anatomy': 1, 'botany': 1, 'wedge': 1, 'plum': 1, 'cricket': 1, 'nitrogen': 1, 'antic': 1, 'interestingly': 1, 'racial': 1, 'historical': 1, 'subordinate': 1, 'unfettered': 1, 'cipher': 1, 'tusk': 1, 'raggedy': 1, 'melodramatic': 1, 'blimp': 1, 'unpersuaded': 1, 'resent': 1, 'bucky': 1, 'poignet': 1, 'tendence': 1, 'awd': 1, 'lalo': 1, 'thermometer': 1, 'sert': 1, 'revival': 1, 'kirk': 1, 'untitled': 1, 'laney': 1, 'trinity': 1, 'ruff': 1, 'josh': 1, 'allan': 1, 'beal': 1, 'poetics': 1, 'linga': 1, 'curt': 1, 'folie': 1, 'nake': 1, 'rater': 1, 'breezy': 1, 'nul': 1, 'kawaka': 1, 'soud': 1, 'soka': 1, 'civil': 1, 'stoa': 1, 'stola': 1, 'cartouche': 1, 'mout': 1, 'tji': 1, 'froom': 1, 'pedaler': 1, 'telega': 1, 'nakhod': 1, 'disaccord': 1, 'tirer': 1, 'chateau': 1, 'weft': 1, 'accommodation': 1, 'quenelle': 1, 'deodorant': 1, 'summit': 1, 'limen': 1, 'tandour': 1, 'journal': 1, 'etiquette': 1, 'amra': 1, 'bant': 1, 'saute': 1, 'ansu': 1, 'kimono': 1, 'wafer': 1, 'beneficial': 1, 'cabal': 1, 'cogitate': 1, 'nodi': 1, 'discourse': 1, 'lexical': 1, 'gol': 1, 'crispy': 1, 'lunette': 1, 'signer': 1, 'coquette': 1, 'sensible': 1, 'cursor': 1, 'parental': 1, 'tad': 1, 'tanan': 1, 'hob': 1, 'arad': 1, 'critique': 1, 'naga': 1, 'jina': 1, 'sombre': 1, 'cuisse': 1, 'sken': 1, 'keratin': 1, 'saffron': 1, 'strass': 1, 'sequin': 1, 'bellow': 1, 'xenophobia': 1, 'gris': 1, 'soiree': 1, 'dah': 1, 'faro': 1, 'asse': 1, 'kibe': 1, 'barrette': 1, 'caddy': 1, 'cree': 1, 'paga': 1, 'ryal': 1, 'chafer': 1, 'hami': 1, 'kona': 1, 'lasa': 1, 'facile': 1, 'telescope': 1, 'yaw': 1, 'manness': 1, 'tabet': 1, 'alb': 1, 'haine': 1, 'tasse': 1, 'alk': 1, 'waer': 1, 'hadji': 1, 'chamal': 1, 'dosa': 1, 'visiter': 1, 'matin': 1, 'completement': 1, 'chanson': 1, 'tach': 1, 'tabla': 1, 'plume': 1, 'ghazi': 1, 'awin': 1, 'brit': 1, 'rit': 1, 'ria': 1, 'bateau': 1, 'torta': 1, 'artiste': 1, 'plage': 1, 'flan': 1, 'blan': 1, 'cadre': 1, 'frap': 1, 'nema': 1, 'punctual': 1, 'cupcake': 1, 'democracy': 1, 'fascism': 1, 'industrialist': 1, 'democrat': 1, 'minister': 1, 'manhole': 1, 'vigorously': 1, 'tamara': 1, 'lek': 1, 'placenta': 1, 'mandate': 1, 'tanger': 1, 'jenna': 1, 'tiar': 1, 'robinet': 1, 'solitaire': 1, 'trifa': 1, 'injection': 1, 'mouly': 1, 'marco': 1, 'maro': 1, 'lader': 1, 'dismantle': 1, 'dustbin': 1, 'olm': 1, 'moul': 1, 'bigg': 1, 'bight': 1, 'lemony': 1, 'khass': 1, 'marshal': 1, 'financier': 1, 'alem': 1, 'wiper': 1, 'terma': 1, 'roulade': 1, 'iso': 1, 'tine': 1, 'tamarind': 1, 'inflate': 1, 'mouthy': 1, 'paralyze': 1, 'suburban': 1, 'blemish': 1, 'swoop': 1, 'raffle': 1, 'acronym': 1, 'greenback': 1, 'shipment': 1, 'devotee': 1, 'coherent': 1, 'insubordinate': 1, 'inventory': 1, 'daud': 1, 'wretched': 1, 'offshore': 1, 'surplus': 1, 'dozer': 1, 'jubilate': 1, 'thorough': 1, 'aromatic': 1, 'acrobatic': 1, 'kelp': 1, 'wun': 1, 'dank': 1, 'ventilation': 1, 'crock': 1, 'unbeaten': 1, 'federal': 1, 'feeder': 1, 'commodore': 1, 'cease': 1, 'alif': 1, 'dynasty': 1, 'ourself': 1, 'fathom': 1, 'sledger': 1, 'wilding': 1, 'underrate': 1, 'oversea': 1, 'germinate': 1, 'girly': 1, 'mulla': 1, 'loamy': 1, 'nancy': 1, 'orb': 1, 'druidic': 1, 'modulator': 1, 'ghostly': 1, 'zobo': 1, 'defender': 1, 'vouch': 1, 'calculus': 1, 'tench': 1, 'sapa': 1, 'partake': 1, 'hypertension': 1, 'boun': 1, 'iba': 1, 'tole': 1, 'incase': 1, 'fey': 1, 'soco': 1, 'pawpaw': 1, 'stroll': 1, 'formy': 1, 'yon': 1, 'halogen': 1, 'downcast': 1, 'prosper': 1, 'lepa': 1, 'poltergeist': 1, 'resurrection': 1, 'nonchalant': 1, 'unbothered': 1, 'gree': 1, 'ownself': 1, 'negotiation': 1, 'epilepsy': 1, 'pidgin': 1, 'helpful': 1, 'orgasm': 1, 'intermittent': 1, 'truant': 1, 'lurk': 1, 'racer': 1, 'turner': 1, 'abdominal': 1, 'habituation': 1, 'padlock': 1, 'monsieur': 1, 'giraffe': 1, 'decan': 1, 'noter': 1, 'sommelier': 1, 'picnic': 1, 'pickwick': 1, 'prankster': 1, 'lemma': 1, 'boa': 1, 'clockmaker': 1, 'endow': 1, 'planner': 1, 'hunchback': 1, 'participate': 1, 'overcrowd': 1, 'unanimous': 1, 'shrift': 1, 'cot': 1, 'progression': 1, 'disrupt': 1, 'hijack': 1, 'refuel': 1, 'consistently': 1, 'fryer': 1, 'agitation': 1, 'irritation': 1, 'dredge': 1, 'alimony': 1, 'reed': 1, 'dignify': 1, 'skinless': 1, 'kor': 1, 'spaghetti': 1, 'clamp': 1, 'toughen': 1, 'gross': 1, 'passable': 1, 'hank': 1, 'stowaway': 1, 'charlatan': 1, 'retirement': 1, 'fister': 1, 'inculpable': 1, 'formidable': 1, 'bland': 1, 'inhibit': 1, 'wand': 1, 'napoleon': 1, 'drowsiness': 1, 'creamy': 1, 'crevasse': 1, 'cavernous': 1, 'pleonasm': 1, 'presumably': 1, 'plumb': 1, 'floral': 1, 'throwback': 1, 'broiler': 1, 'dissatisfaction': 1, 'dampness': 1, 'revue': 1, 'quirky': 1, 'cataract': 1, 'sender': 1, 'behn': 1, 'thermos': 1, 'tiptoe': 1, 'blackie': 1, 'snob': 1, 'orally': 1, 'thrifty': 1, 'lamppost': 1, 'backfield': 1, 'we': 1, 'e': 1, 'eggplant': 1, 'talc': 1, 'conspire': 1, 'rectangle': 1, 'sleepwalk': 1, 'index': 1, 'pontiff': 1, 'franchise': 1, 'commoner': 1, 'congress': 1, 'baptize': 1, 'expansion': 1, 'unveil': 1, 'scope': 1, 'monomaniac': 1, 'cubicle': 1, 'brusque': 1, 'regularly': 1, 'academic': 1, 'trope': 1, 'antithesis': 1, 'apostrophe': 1, 'shuttlecock': 1, 'scripture': 1, 'lightninglike': 1, 'wretch': 1, 'derrick': 1, 'utmost': 1, 'grandeur': 1, 'scribe': 1, 'steward': 1, 'classification': 1, 'subclass': 1, 'miscellaneous': 1, 'continual': 1, 'aversion': 1, 'morbid': 1, 'astute': 1, 'observation': 1, 'regimen': 1, 'medicinal': 1, 'curative': 1, 'palliative': 1, 'dint': 1, 'sagacity': 1, 'ruminate': 1, 'decree': 1, 'puree': 1, 'excessively': 1, 'no': 1, 'fatally': 1, 'campfire': 1, 'transcription': 1, 'agua': 1, 'serrano': 1, 'nervousness': 1, 'repeatedly': 1, 'sammy': 1, 'soaker': 1, 'confluence': 1, 'wrongdoing': 1, 'affirmation': 1, 'overdramatic': 1, 'untrue': 1, 'impatience': 1, 'sanctuary': 1, 'vend': 1, 'undergrad': 1, 'barse': 1, 'revert': 1, 'navy': 1, 'tubman': 1, 'baton': 1, 'attribute': 1, 'fanciful': 1, 'classical': 1, 'grammatical': 1, 'clavicle': 1, 'dynamical': 1, 'maza': 1, 'ide': 1, 'baka': 1, 'cham': 1, 'atma': 1, 'artificial': 1, 'bure': 1, 'waise': 1, 'artisan': 1, 'gangland': 1, 'topi': 1, 'blinder': 1, 'gey': 1, 'bhang': 1, 'feasible': 1, 'funky': 1, 'menses': 1, 'sunn': 1, 'haje': 1, 'tamasha': 1, 'inactive': 1, 'interactive': 1, 'lark': 1, 'nobility': 1, 'uninformed': 1, 'hokey': 1, 'spectacle': 1, 'shor': 1, 'loon': 1, 'kail': 1, 'immemorial': 1, 'sahib': 1, 'breach': 1, 'gutt': 1, 'syllabus': 1, 'oda': 1, 'jawab': 1, 'laang': 1, 'continuous': 1, 'bard': 1, 'hoy': 1, 'soya': 1, 'arrangement': 1, 'barbiturate': 1, 'banya': 1, 'consultation': 1, 'halibut': 1, 'brace': 1, 'subconsciously': 1, 'redhead': 1, 'whisperer': 1, 'anesthesia': 1, 'talentless': 1, 'seaweed': 1, 'intestine': 1, 'muggles': 1, 'hamster': 1, 'manticore': 1, 'chopin': 1, 'lexicon': 1, 'genuinely': 1, 'plenum': 1, 'calisthenics': 1, 'xylitol': 1, 'tibia': 1, 'yellowish': 1, 'radiator': 1, 'birthmark': 1, 'pornography': 1, 'boor': 1, 'spalding': 1, 'turtle': 1, 'runny': 1, 'mustachioed': 1, 'catchup': 1, 'output': 1, 'envision': 1, 'shopkeeper': 1, 'counselor': 1, 'magister': 1, 'ethanol': 1, 'relish': 1, 'caboose': 1, 'bronchus': 1, 'cesspool': 1, 'ambient': 1, 'bream': 1, 'placement': 1, 'ironman': 1, 'accomplishment': 1, 'camaraderie': 1, 'herb': 1, 'preschool': 1, 'solarium': 1, 'intangible': 1, 'debit': 1, 'errand': 1, 'hairdresser': 1, 'eyeball': 1, 'oxy': 1, 'checkbook': 1, 'moat': 1, 'clatter': 1, 'navigation': 1, 'biopsy': 1, 'gunfire': 1, 'scab': 1, 'thanatophobia': 1, 'paradoxically': 1, 'metaphor': 1, 'insignia': 1, 'sachet': 1, 'seta': 1, 'stricken': 1, 'cereal': 1, 'starfish': 1, 'bandy': 1, 'detachment': 1, 'discoloration': 1, 'projector': 1, 'elegantly': 1, 'moulin': 1, 'gauze': 1, 'hoof': 1, 'breathlessness': 1, 'proportion': 1, 'sicilian': 1, 'cappy': 1, 'haystack': 1, 'durable': 1, 'hula': 1, 'indent': 1, 'kuba': 1, 'basilisk': 1, 'liqueur': 1, 'inexhaustible': 1, 'waterproof': 1, 'foehn': 1, 'flammable': 1, 'instantaneous': 1, 'experimental': 1, 'unconventional': 1, 'bristle': 1, 'wrath': 1, 'incalculable': 1, 'helium': 1, 'undying': 1, 'vastness': 1, 'soreness': 1, 'sulk': 1, 'pedicure': 1, 'complexion': 1, 'beautician': 1, 'betide': 1, 'unwrap': 1, 'bilo': 1, 'summary': 1, 'unrelated': 1, 'galosh': 1, 'psychology': 1, 'consequently': 1, 'orthopedic': 1, 'coitus': 1, 'leaflet': 1, 'nil': 1, 'nitro': 1, 'elixir': 1, 'occupy': 1, 'moneylender': 1, 'croft': 1, 'choker': 1, 'accuracy': 1, 'comrade': 1, 'cautiously': 1, 'insulate': 1, 'drummer': 1, 'mercenary': 1, 'stature': 1, 'senator': 1, 'snobbish': 1, 'parker': 1, 'dwarf': 1, 'cit': 1, 'tofu': 1, 'encyclopedia': 1, 'profess': 1, 'budge': 1, 'monitor': 1, 'jovial': 1, 'clod': 1, 'discreetly': 1, 'imbecile': 1, 'shortness': 1, 'possessive': 1, 'permissive': 1, 'concealer': 1, 'shrug': 1, 'gastritis': 1, 'principal': 1, 'sensor': 1, 'lindo': 1, 'trashy': 1, 'disfigure': 1, 'stargaze': 1, 'belch': 1, 'legit': 1, 'godparent': 1, 'curd': 1, 'tradesman': 1, 'nanny': 1, 'removal': 1, 'limestone': 1, 'classically': 1, 'throated': 1, 'erect': 1, 'stupendous': 1, 'nationally': 1, 'sorghum': 1, 'clockwork': 1, 'seasonal': 1, 'kilt': 1, 'spatial': 1, 'infidel': 1, 'unscrew': 1, 'cheaply': 1, 'stairway': 1, 'particle': 1, 'unload': 1, 'leathery': 1, 'mow': 1, 'cacophony': 1, 'mongoose': 1, 'plural': 1, 'samp': 1, 'wapp': 1, 'sphinx': 1, 'loosely': 1, 'epithet': 1, 'leprosy': 1, 'trinket': 1, 'showmanship': 1, 'lata': 1, 'narrower': 1, 'deafen': 1, 'recur': 1, 'courtroom': 1, 'disruptive': 1, 'adieu': 1, 'muck': 1, 'mushy': 1, 'mingle': 1, 'prosecutor': 1, 'textile': 1, 'scroll': 1, 'woodpecker': 1, 'helly': 1, 'elk': 1, 'bumblebee': 1, 'altogether': 1, 'gola': 1, 'whacker': 1, 'cleanly': 1, 'jury': 1, 'lodge': 1, 'mutter': 1, 'glint': 1, 'combustible': 1, 'azalea': 1, 'gird': 1, 'thy': 1, 'vial': 1, 'shalt': 1, 'phial': 1, 'insanely': 1, 'splint': 1, 'multitude': 1, 'repay': 1, 'gur': 1, 'sepulcher': 1, 'tread': 1, 'accurse': 1, 'lingo': 1, 'lumen': 1, 'sleigh': 1, 'gunpowder': 1, 'testimonial': 1, 'acetone': 1, 'compress': 1, 'strategist': 1, 'strait': 1, 'shoelace': 1, 'trucker': 1, 'triceps': 1, 'gambia': 1, 'hovel': 1, 'haffle': 1, 'flicker': 1, 'anabolic': 1, 'vara': 1, 'iniquity': 1, 'veer': 1, 'fro': 1, 'stagecraft': 1, 'headlong': 1, 'recession': 1, 'dissident': 1, 'charter': 1, 'balm': 1, 'remorseful': 1, 'loveless': 1, 'ventilate': 1, 'esquire': 1, 'adept': 1, 'assertive': 1, 'insurgent': 1, 'arrhythmia': 1, 'overshoot': 1, 'safely': 1, 'irreparable': 1, 'workout': 1, 'chow': 1, 'chauffeur': 1, 'parliament': 1, 'performer': 1, 'headless': 1, 'quantify': 1, 'protocol': 1, 'stein': 1, 'now': 1, 'fable': 1, 'volition': 1, 'alcoholic': 1, 'resonance': 1, 'gape': 1, 'fakir': 1, 'motivational': 1, 'motivate': 1, 'navigate': 1, 'paulie': 1, 'pilgrim': 1, 'motionless': 1, 'otherness': 1, 'wobbly': 1, 'hypochondriac': 1, 'magpie': 1, 'orthodox': 1, 'moronic': 1, 'insidious': 1, 'lecture': 1, 'kop': 1, 'sodium': 1, 'kaput': 1, 'dreamland': 1, 'evocative': 1, 'coincidentally': 1, 'hopeful': 1, 'punt': 1, 'partisan': 1, 'trump': 1, 'don': 1, 'presidency': 1, 'pseudonym': 1, 'sophistication': 1, 'entice': 1, 'diction': 1, 'sicken': 1, 'immaculate': 1, 'gator': 1, 'gritty': 1, 'dissect': 1, 'remarkable': 1, 'gab': 1, 'nickel': 1, 'leer': 1, 'wary': 1, 'baht': 1, 'ointment': 1, 'retract': 1, 'freer': 1, 'ringleader': 1, 'lightless': 1, 'fanfare': 1, 'cruelly': 1, 'sullen': 1, 'decency': 1, 'extinction': 1, 'tilt': 1, 'dilapidate': 1, 'contradiction': 1, 'stella': 1, 'purgatory': 1, 'arar': 1, 'berat': 1, 'analysis': 1, 'ivy': 1, 'burry': 1, 'ado': 1, 'partridge': 1, 'expatriate': 1, 'salvo': 1, 'mislead': 1, 'makeshift': 1, 'thoroughly': 1, 'confirmation': 1, 'violate': 1, 'dishonor': 1, 'fracture': 1, 'urgently': 1, 'reverence': 1, 'jihad': 1, 'reduction': 1, 'daybreak': 1, 'nash': 1, 'bomber': 1, 'drippy': 1, 'weariness': 1, 'hurdle': 1, 'relentless': 1, 'jako': 1, 'handkerchief': 1, 'coincide': 1, 'indecisive': 1, 'knocker': 1, 'purge': 1, 'epidemic': 1, 'hypothetical': 1, 'lithe': 1, 'capsize': 1, 'translate': 1, 'establish': 1, 'mezcal': 1, 'siege': 1, 'angular': 1, 'incurable': 1, 'graze': 1, 'tiptop': 1, 'phony': 1, 'singlehandedly': 1, 'overall': 1, 'agnostic': 1, 'cascade': 1, 'lyricism': 1, 'ultimate': 1, 'evolve': 1, 'astound': 1, 'fifteenth': 1, 'charade': 1, 'congest': 1, 'layaway': 1, 'locally': 1, 'cardiology': 1, 'naw': 1, 'astrology': 1, 'calamity': 1, 'fetish': 1, 'nosebleed': 1, 'mockery': 1, 'accumulative': 1, 'copper': 1, 'blaster': 1, 'furry': 1, 'oaf': 1, 'socket': 1, 'extraterrestrial': 1, 'converter': 1, 'krypton': 1, 'scholarship': 1, 'prob': 1, 'holler': 1, 'unimpeachable': 1, 'stoic': 1, 'brandish': 1, 'essentially': 1, 'spree': 1, 'ascendancy': 1, 'panicky': 1, 'tailor': 1, 'apprentice': 1, 'fraught': 1, 'conventional': 1, 'emancipation': 1, 'foe': 1, 'violently': 1, 'spoilage': 1, 'meng': 1, 'perfunctory': 1, 'maintenance': 1, 'inability': 1, 'sculpture': 1, 'memorable': 1, 'persistent': 1, 'variation': 1, 'impermanence': 1, 'weal': 1, 'outage': 1, 'subtropical': 1, 'slavish': 1, 'redefine': 1, 'soothsayer': 1, 'nonverbal': 1, 'elm': 1, 'fertile': 1, 'pul': 1, 'hearty': 1, 'diem': 1, 'mace': 1, 'banner': 1, 'rephrase': 1, 'severely': 1, 'ostentatious': 1, 'sarcastic': 1, 'futuristic': 1, 'snowball': 1, 'soullessly': 1, 'disclaimer': 1, 'darken': 1, 'annotate': 1, 'annotation': 1, 'bracket': 1, 'alban': 1, 'riley': 1, 'voyager': 1, 'josie': 1, 'welt': 1, 'blanco': 1, 'coli': 1, 'pash': 1, 'unsuccessful': 1, 'marabou': 1, 'seductress': 1, 'heathen': 1, 'relinquish': 1, 'defection': 1, 'godless': 1, 'attune': 1, 'egocentric': 1, 'overview': 1, 'wreath': 1, 'fern': 1, 'wird': 1, 'hei': 1, 'seiner': 1, 'orc': 1, 'grove': 1, 'javelin': 1, 'tractor': 1, 'groin': 1, 'shelly': 1, 'flurry': 1, 'octagon': 1, 'summon': 1, 'cater': 1, 'loony': 1, 'offspring': 1, 'gracious': 1, 'visitor': 1, 'rebirth': 1, 'trey': 1, 'maple': 1, 'bobber': 1, 'limitation': 1, 'stile': 1, 'validate': 1, 'dysfunction': 1, 'godlike': 1, 'payroll': 1, 'existential': 1, 'forsake': 1, 'ballot': 1, 'purebred': 1, 'substitution': 1, 'bichy': 1, 'palomino': 1, 'clasp': 1, 'inadvertent': 1, 'timely': 1, 'spinach': 1, 'grumpy': 1, 'confidentiality': 1, 'flange': 1, 'provocation': 1, 'mindfulness': 1, 'hopelessly': 1, 'dispel': 1, 'sleepwalker': 1, 'puku': 1, 'mildly': 1, 'vermicelli': 1, 'constraint': 1, 'reclaim': 1, 'tyrant': 1, 'ultraviolet': 1, 'adjacent': 1, 'impermanent': 1, 'considerate': 1, 'employee': 1, 'libra': 1, 'footage': 1, 'preoccupy': 1, 'intensity': 1, 'bewilder': 1, 'perpetually': 1, 'gyroscope': 1, 'pickup': 1, 'lakeside': 1, 'dissolution': 1, 'virtuously': 1, 'animosity': 1, 'ruddy': 1, 'filial': 1, 'crystallize': 1, 'coop': 1, 'calligraphy': 1, 'tam': 1, 'housework': 1, 'powdery': 1, 'unripe': 1, 'midday': 1, 'listless': 1, 'cloudlike': 1, 'cloudless': 1, 'pharmacist': 1, 'selflessly': 1, 'foliage': 1, 'sublimation': 1, 'plunge': 1, 'eagerness': 1, 'spacious': 1, 'drizzle': 1, 'anxiously': 1, 'vector': 1, 'skeif': 1, 'congregation': 1, 'cabernet': 1, 'apostle': 1, 'fossil': 1, 'petrify': 1, 'clot': 1, 'lionel': 1, 'pneumonia': 1, 'ayu': 1, 'slowdown': 1, 'preview': 1, 'gaup': 1, 'mani': 1, 'hake': 1, 'yow': 1, 'purdy': 1, 'butternut': 1, 'spew': 1, 'volcanic': 1, 'sext': 1, 'duffel': 1, 'teamwork': 1, 'esteem': 1, 'intervene': 1, 'matrimony': 1, 'crucial': 1, 'stark': 1, 'catalogue': 1, 'household': 1, 'handout': 1, 'jagger': 1, 'gazi': 1, 'schematic': 1, 'robbin': 1, 'merciful': 1, 'nother': 1, 'godly': 1, 'mentor': 1, 'tomato': 1, 'formulation': 1, 'credential': 1}
# TOP 20 MOST FREQUENT
top_20 = list(sorted_d.items())[:20] #get 20 key-val pairs from dict
top_20 = dict(top_20) # Convert the list to a dictionary
print(top_20)
{'like': 27075, 'know': 19940, 'love': 16436, 'get': 15532, 'want': 14420, 'yeah': 14368, 'baby': 12024, 'one': 10552, 'see': 10256, 'say': 9874, 'come': 9629, 'make': 8797, 'tell': 8594, 'take': 8104, 'let': 7988, 'time': 7914, 'might': 7779, 'feel': 7626, 'go': 7543, 'hey': 7456}
# PLOT TOP 20 TOKENS
d = pd.DataFrame(top_20.items(), columns=['word', 'count'])
fig = px.bar(d.sort_values(by='count', ascending=True), y='word', x='count')
fig.update_layout(title = 'Frequency of top 20 words', template = 'plotly_dark')
Figure 1.8
# PLOT TOP 50 TOKENS
top_50 = list(sorted_d.items())[:50]
top_50 = dict(top_50)
d = pd.DataFrame(top_50.items(), columns=['word', 'count'])
fig = px.bar(d.sort_values(by='count', ascending=True), y='word', x='count')
fig.update_layout(title = 'Frequency of top 50 words', template = 'plotly_dark')
Figure 1.9
After analyzing the lyrics data, it is evident that the predominant theme of the popular hits in February 2023 is centered around the topic of love. This finding is not surprising, as Valentine's Day also falls within the same month.