sad_panda 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c166057b2e74dd81a0530bdc3d66e4c06137dfc9
4
+ data.tar.gz: 5ce921a9cf3595ea02e8946adddcae41dcd1b83f
5
+ SHA512:
6
+ metadata.gz: 381f20a70f1a4fdf7b284290c522252d6bbba0660887b73fe46866b7bae320e5a1797ad4d4f57e2e0727c5d5d8332399e69c6f95ba366d86b8cdfc5dbd86aa1a
7
+ data.tar.gz: 996ce9d033f8ab3350ff4609ce014413cc28be06a074c6212564fb8bc47a6f0b902e847d27031a3520ed95ad859eb1b4e18bee263c32e673cde9f6606393838a
@@ -0,0 +1 @@
1
+ sad_panda
@@ -0,0 +1 @@
1
+ 2.4.1
data/README.md CHANGED
@@ -24,17 +24,20 @@ Or install it yourself as:
24
24
 
25
25
  require 'sad_panda'
26
26
 
27
- SadPanda.emotion("my lobster collection makes me happy!")
27
+ SadPanda.emotion('my lobster collection makes me happy!')
28
+ => :joy
28
29
 
29
- => "joy"
30
+ SadPanda.polarity('I love cactuses!')
31
+ => 10.0
30
32
 
33
+ sad_panda = SadPanda::Emotion.new('my lobster collection makes me happy!')
34
+ sad_panda.call
35
+ sad_pands.scores = {:anger=>0, :disgust=>0, :joy=>1, :surprise=>0, :fear=>0, :sadness=>0, :ambiguous=>0}
31
36
 
32
-
33
- SadPanda.polarity("my lobster collection makes me happy!")
34
- my_message.polarity
35
-
36
- => 5
37
-
37
+ sad_panda.joy => 1
38
+ sad_panda.fear => 0
39
+ # same for all the other emotions
40
+
38
41
  ## Contributing
39
42
 
40
43
  1. Fork it
@@ -1,175 +1,24 @@
1
- require_relative "./sad_panda/version"
2
- require_relative './sad_panda/emotions/emotion_bank.rb'
3
- require_relative './sad_panda/emotions/term_polarities.rb'
4
- require_relative './sad_panda/emotions/stopwords.rb'
1
+ require 'sad_panda/bank/emotions'
2
+ require 'sad_panda/bank/polarities'
3
+ require 'sad_panda/bank/stopwords'
4
+ require 'sad_panda/emotion'
5
+ require 'sad_panda/polarity'
6
+ require 'sad_panda/helpers'
5
7
  require 'lingua/stemmer'
6
8
 
9
+ # SadPanda main module
7
10
  module SadPanda
8
-
9
11
  # this method returns the best-fit emotion for the status message
10
- def self.emotion(message)
12
+ def self.emotion(text)
11
13
  # get the emotion for which the emotion score value is highest
12
- SadPanda.get_emotion_score(message, EmotionBank.get_term_emotions, build_term_frequencies(message))
14
+ SadPanda::Emotion.new(text).call
13
15
  end
14
16
 
15
17
  # this method returns the polarity value for the status message
16
18
  # (normalized by the number of 'polar' words that the status
17
19
  # message contains)
18
- def self.polarity(message)
20
+ def self.polarity(text)
19
21
  # get the polarity for which the polarity score value is highest
20
- SadPanda.get_polarity_score(message, TermPolarities.get_term_polarities, SadPanda.build_term_frequencies(message))
22
+ SadPanda::Polarity.new(text).call
21
23
  end
22
-
23
-
24
- private
25
-
26
- # this method reads the text of the status message
27
- # inputed by the user, removes common english words,
28
- # strips punctuation and capitalized letters, isolates
29
- # the stem of the word, and ultimately produces a hash
30
- # where the keys are the stems of the remaining words,
31
- # and the values are their respective frequencies within
32
- # the status message
33
- def self.build_term_frequencies(message, term_frequencies = {})
34
- # clean the text of the status message
35
- happy_emoticon = happy_emoticon(message)
36
- sad_emoticon = sad_emoticon(message)
37
- words = words_from_message_text(message)
38
- #filter for english stopwords
39
- stopwords = Stopwords.stopwords
40
- words = words - stopwords
41
- #get word stems
42
- word_stems = SadPanda.get_word_stems words
43
- #create term_frequencies
44
- #return term frequency hash
45
- create_term_frequencies(word_stems, term_frequencies)
46
- end
47
-
48
- # this method takes an array of words an returns an array of word stems
49
- def self.get_word_stems(words, output=[])
50
- stemmer = Lingua::Stemmer.new(:language => "en")
51
- words.each do |word|
52
- output << stemmer.stem(word)
53
- end
54
- output
55
- end
56
-
57
- # this method takes an emotion-words hash and a hash containing word
58
- # frequencies for the status message, calculates a numerical score
59
- # for each possble emotion, and returns the emotion with the highest
60
- # "score"
61
- def self.get_emotion_score(message, emotions, term_frequencies, emotion_score = {})
62
- term_frequencies.each do |key,value|
63
- set_emotions(emotions, emotion_score, key, value)
64
- end
65
- # return an emotion_score_hash to be processed by emotion
66
- # get clue from any emoticons present
67
- check_emoticon_for_emotion(emotion_score, message)
68
- end
69
-
70
- # this method gives the status method a normalized polarity
71
- # value based on the words it contains
72
- def self.get_polarity_score (message, polarity_hash, term_frequencies, polarity_scores = [])
73
- term_frequencies.each do |key, value|
74
- set_polarities(key, value, polarity_hash, polarity_scores)
75
- end
76
-
77
- # return an polarity_score_hash to be processed by polarity method
78
- # return an emotion_score_hash to be processed by emotion
79
- # get clue from any emoticons present
80
- check_emoticon_for_polarity(polarity_scores, message)
81
- end
82
-
83
- def self.happy_emoticon(message)
84
- (message.include?(":)") || message.include?(":-)") || message.include?(":]") || message.include?(":-]"))
85
- end
86
-
87
- def self.sad_emoticon(message)
88
- (message.include?(":(") || message.include?(":-(") || message.include?(":[") || message.include?(":-["))
89
- end
90
-
91
- def self.words_from_message_text(message)
92
- message.gsub!(/[^a-z ]/i, '')
93
- message.downcase!
94
- message.gsub!(/((([A-Za-z]{3,9}:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)/, '')
95
- message.gsub!(/(?=\w*h)(?=\w*t)(?=\w*t)(?=\w*p)\w*/, '')
96
- message.gsub!(/\s\s+/,' ')
97
- message.split(" ")
98
- end
99
-
100
- def self.set_emotions(emotions, emotion_score, term, frequency)
101
- emotions.keys.each do |k|
102
- store_emotions(emotions, emotion_score, k, term, frequency)
103
- end
104
- end
105
-
106
- def self.set_polarities(term, frequency, polarity_hash, polarity_scores)
107
- polarity_hash.keys.each do |k|
108
- store_polarities(term, k, polarity_hash, polarity_scores)
109
- end
110
- end
111
-
112
- def self.store_emotions(emotions, emotion_score, emotion, term, frequency)
113
- if emotions[emotion].include?(term)
114
- emotion_score[emotion] ||= 0
115
- emotion_score[emotion] += frequency
116
- end
117
- end
118
-
119
- def self.store_polarities(term, word, polarity_hash, polarity_scores)
120
- if term == word
121
- polarity_scores << (polarity_hash[word].to_f)
122
- end
123
- end
124
-
125
- def self.check_emoticon_for_emotion(emotion_score, message)
126
- if (happy_emoticon(message) && sad_emoticon(message))
127
- "ambiguous"
128
- elsif happy_emoticon(message)
129
- "joy"
130
- elsif sad_emoticon(message)
131
- "sadness"
132
- else
133
- return_emotion_score(emotion_score)
134
- end
135
- end
136
-
137
- def self.return_emotion_score(emotion_score)
138
- ## 0 if unable to detect emotion
139
- if emotion_score == {}
140
- "ambiguous"
141
- else
142
- emotion_score.max_by{|k, v| v}[0]
143
- end
144
- end
145
-
146
- def self.check_emoticon_for_polarity(polarity_scores, message)
147
- if (happy_emoticon(message) && sad_emoticon(message))
148
- score = 5
149
- elsif happy_emoticon(message)
150
- score = 8
151
- elsif sad_emoticon(message)
152
- score = 2
153
- else
154
- return_polarity_scores(polarity_scores)
155
- end
156
- end
157
-
158
- def self.return_polarity_scores(polarity_scores)
159
- if polarity_scores == []
160
- # polarity unreadable; return a neutral score of 5
161
- 5
162
- else
163
- polarity_scores.inject(0.0){ |sum, el| sum + el}/polarity_scores.length
164
- end
165
- end
166
-
167
- def self.create_term_frequencies(word_stems, term_frequencies)
168
- word_stems.each do |stem|
169
- term_frequencies[stem] = word_stems.count(stem)
170
- end
171
- term_frequencies
172
- end
173
-
174
-
175
24
  end
@@ -0,0 +1,18 @@
1
+ module SadPanda
2
+ # Holds the hardcoded data
3
+ module Bank
4
+ # this method reads a csv file containing 'word,emotion' pairs,
5
+ # and groups them into a hash where the keys are the 7 available
6
+ # emotions ("anger", "disgust", "joy", "surprise", "fear", "sadness",
7
+ # , uneasiness) and the values are the words associated with them
8
+ sadness = %w(aggriev aggrieve attrit attrition bad bereav bereaved bereft blue blue_devil blue_devils bore bored brokenhearted brokenheartedness cast_down cheerless cheerlessly cheerlessness compunct compunction contrit contrite contritely contriteness contrition dark deject demor demoralis demoralising demoralization demoralize demoralized demoralizing deplor deplorable deplorably depress depressed depressing depression depressive desol desolate desolation despair despairingly despond despondence despondency despondent despondently dingi dingy disconsol disconsolate disconsolateness discourag discouraged dishearten disheartened disheartening dismal dismay dispirit dispirited dispiritedness dispiriting distress distressed dole doleful dolefully dolefulness dolor dolorous dolour dolourous down downcast downheart downhearted downheartedness downtrodden drab drear dreari dreary dysphor dysphoria dysphoric execr execrable forlorn forlornly forlornness get_down gloom gloomful gloomi gloomili gloomily gloominess glooming gloomy glum godforsaken grief grief-stricken griev grieve grieving grievous grievously grim guilt guilt_feel guilt_feelings guilt_trip guilti guilty guilty_consci guilty_conscience hangdog hapless harass heartach heartache heartbreak heartbreaking heartrend heartrending heartsick heartsickness heavyheart heavyhearted heavyheartedness helpless helplessness joyless joylessly joylessness lachrymos lachrymose laden lament lamentably loneli loneliness long-fac long-faced lorn low low-spirit low-spirited low-spiritedness melanchol melancholi melancholic melancholy miser miserable miserably miseri misery misfortun misfortunate mourn mournful mournfully mournfulness mourning oppress oppressed oppression oppressive oppressively oppressiveness pathet pathetic penanc penance penit penitence penitent penitenti penitentially penitently persecut persecute persecuted piteous piti pitiabl pitiable pitiful pitying plaintiv plaintive plaintively plaintiveness poor regret regretful remors remorse remorseful remorsefully repent repentance repentant repentantly rue rueful ruefulli ruefully ruefulness ruth ruthfulness sad sadden saddening sadly sadness self-piti self-pity self-reproach shame shamed shamefac shamefaced somber somberness sorri sorrow sorrowful sorrowfully sorrowfulness sorrowing sorry sorry_for suffer suffering tear tearful tearfulness tyrann tyrannical tyrannous uncheer uncheerful uncheerfulness unhappi unhappiness unhappy weep weepi weepiness weeping weight Weltschmerz woe woebegon woebegone woeful woefulli woefully woefulness world-weari world-weariness world-weary wretch wretched)
9
+ fear = %w(affright afraid alarm alarmed alert anxious anxiously appal appall apprehens apprehension apprehensive apprehensively apprehensiveness atroci atrocious aw awful awfully bash bashfully bode boding browbeaten bulli bullied chill chilling cliff-hang cliff-hanging coldhearted coldheartedness constern consternation cow cowed cower crawl creep creeps cring cringe cruel cruelli cruelly cruelti cruelty dash daunt diffid diffidence diffident diffidently dire direful dismay dread dreaded dreadful dreadfully fawn fear fearful fearfully fearfulness fearsom fearsome forebod foreboding fright frighten frighten_away frighten_off frightened frightening frighteningly frightful grovel hangdog hardheart hardhearted hardheartedness heartless heartlessly heartlessness hesit hesitance hesitancy hesitantly hesitatingly hideous hideously horrend horrendous horribl horrible horribly horrid horridly horrif horrifi horrific horrified horrify horrifying horrifyingly horror horror-stricken horror-struck hyster hysteria hysterical hysterically intimid intimidate intimidated intimidation merciless mercilessness monstrous monstrously outrag outrageous pall panic panic_attack panic-stricken panic-struck panick panicked panicki panicky pitiless pitilessness premonit premonition presag presage presenti presentiment ruthless ruthlessness scare scare_away scare_off scared scarey scari scarili scarily scary self-distrust self-doubt shadow shi shiveri shivery shudderi shuddery shy shyli shyly shyness stage_fright suspens suspense suspenseful suspensive terribl terrible terrifi terrified terror timid timidity timidly timidness timor timorous timorously timorousness trepid trepidation trepidly ugli ugly unassert unassertive unassertively unassertiveness uneasili uneasily unkind unsur unsure)
10
+ surprise = %w(admir admiration amaz amaze amazed amazement amazing amazingly astoni astonied astonish astonished astonishing astonishingly astonishment astound astounded astounding aw awe awed awestricken awestruck awful baffl baffle beat besot bewild bewilder daze dazed dumbfound dumbfounded dumfound dumfounded fantast fantastic flabbergast flabbergasted flummox get gravel howl howling in_awe_of marvel marvellously marvelous marvelously mystifi mystify nonplus perplex puzzl puzzle rattl rattling stagger staggering stun stunned stupefact stupefaction stupefi stupefied stupefy stupefying stupid stupifi stupify superbl superbly surpris surprise surprised surprisedly surprising surprisingly terrif terrific terrifically thunderstruck top toppingly tremend tremendous trounc trounce wonder wonderful wonderfully wonderment wondrous wondrously)
11
+ joy = %w(admir admirable admirably admiration admire ador adorably adoration adoring affect affection affectional affectionate affectionateness affective amat amative amatori amatory amic amicability amicable amicableness amicably amor amorous amorousness anticip anticipate anticipation appreci appreciated approb approbative approbatori approbatory approv approval approve approved approving ardor ardour attach attachment avid avidity avidness bang banter barrack be_on_cloud_nin be_on_cloud_nine beam beaming becharm beguil beguile beguiled belong belonging benef benefic beneficed beneficence beneficent benefici beneficially benevol benevolence benevolent benevolently bewitch bewitching blith blithely blitheness bonheur brother brotherhood brotherlik brotherlike brotherly buoyanc buoyancy calf_lov calf_love captiv captivate captivated captivating captivation captur capture care carefre carefree carefreeness caring catch chaff charg charge charit charitable charm charmed cheer cheer_up cheerful cheerfully cheerfulness cheeri cheering cheery chirk_up cliff-hang cliff-hanging close closeness comfort comfortable comfortableness comfortably comforting commend commendable compat compatibility compatible compatibly complac complacence complacency complacent concern congratul congratulate consol console content contented contentment crush delight delighted devot devoted devotedness devotion eager eagerly eagerness ebulli ebullient ebulliently elan elat elate elated elating elation embolden emot emotive empath empathet empathetic empathetically empathi empathic empathy enamor enamored enamoredness enamour enchant enchanting enchantment endear endearingly enjoy enthral enthralled enthralling enthrallment enthusiasm enthusiast enthusiastic enthusiastically entranc entrance entranced entrancing esteem euphor euphori euphoria euphoriant euphoric exalt excit excitement exciting exhilar exhilarate exhilarated exhilarating exhilaration exhort expans expansively expect expectancy exuber exuberance exuberant exuberantly exult exultant exultantly exultation exulting exultingly fanci fancy fascin fascinate fascinating fascination favor favorable favorably favour favourable favourably feeling_of_ident feeling_of_identity fellow_feel fellow_feeling festal festiv festive flush fond fond_regard fondly fondness fratern fraternal friend friendli friendliness friendly fulfil fulfill fulfillment fulfilment gaieti gaiety gala gay gayli gayly giving_protect giving_protection glad gladden gladdened gladfulness gladness gladsom gladsome gladsomeness glee gleeful gleefulli gleefully gleefulness gloat gloating gloatingly good good_wil good_will goodwil goodwill gratifi gratify gratifying gratifyingly great gusto happi happili happily happiness happy heart hearten hero_worship high_spirit high_spirits high-spirit high-spirited hilar hilari hilarious hilariously hilarity identif identifi identification identify impress infatu infatuation insouci insouciance inspir inspire interest intimaci intimacy intox intoxicate jocular jocularity jocund jocundity jolli jolliti jollity jolly jolly_along jolly_up jovial joviality joy joyful joyfully joyfulness joyous joyously joyousness jubil jubilance jubilancy jubilant jubilantly jubilate jubilation jump_for_joy keen keenness kick kid kind kindheart kindhearted kindheartedness kindly laudabl laudably lift_up lighthearted lightheartedness lightsom lightsomeness likabl likable like likeabl likeable liking live_up_to look_for look_to look_up_to love lovesom lovesome loving lovingly lovingness loyalti loyalty merri merrili merrily merriment merry mirth mirthful mirthfully mirthfulness move near nigh occupi occupy offering_protect offering_protection partial partiality penchant pep_up perki perkiness pick_up pleas pleased pleasing praiseworthili praiseworthily predilect predilection preen prefer preference pride prideful protect protective protectively protectiveness proud proudly puppy_lov puppy_love rapport recreat recreate regard rejoic rejoice rejoicing relish respect revel riotous riotously romant romantic rush satiabl satiable satisfact satisfaction satisfactori satisfactorili satisfactorily satisfactory satisfi satisfiable satisfied satisfy satisfying satisfyingly schadenfreud schadenfreude scream screaming self-complac self-complacency self-satisfact self-satisfaction self-satisfi self-satisfied smug smugness soft_spot soft-boil soft-boiled softheart softhearted softheartedness solac solace sooth soothe stimul stimulating strike sunni sunny suspens suspense suspenseful suspensive sympathet sympathetic sympathetically sympathi sympathy tast taste teas teased tender tenderness thirstili thirstily thrill tickl tickle titil titillate titillated titillating titillation togeth togetherness tranc trance triumph triumphal triumphant triumphantly unworri unworried uplift uproari uproarious uproariously urg urge urge_on walk_on_air wallow warm warmheart warmhearted warmheartedness warmth weak weakness with_empathi with_empathy with_happi with_happiness with_prid with_pride with_sympathi with_sympathy worri worry worship worshipful zeal zealous zest zestfulness)
12
+ disgust = %w(abhorr abhorrent abomin abominably churn_up detest detestable detestably disgust disgusted disgustedly disgustful disgusting disgustingly distast distasteful distastefully fed_up foul hideous horror loath loathly loathsom loathsome nausea nauseat nauseate nauseated nauseating nauseous noisom noisome obscen obscene odious odiously offens offensive queasi queasy repel repellant repellent repugn repugnance repugnant repuls repulse repulsion repulsive repulsively revolt revolting revoltingly revuls revulsion sick sick_of sicken sickening sickeningly sickish tired_of turn_off vile wick wicked yucki yucky)
13
+ anger = %w(abhor abhorr abhorrence abomin abominate abomination aggrav aggravate aggravated aggravation aggress aggression aggressive aggressiveness amok amuck anger angered angri angrili angrily angry animos animosity animus annoy annoyance annoyed annoying antagon antagonism avarici avaricious bad_blood bad_temp bad_temper baffl baffled balk balked bedevil begrudg begrudge begrudging belliger belligerence belligerency belligerent belligerently bitter bitterness bother bothersom bothersome brood chafe choler choleric class_feel class_feeling contemn covet covetous covetously covetousness crucifi crucify dander despis despisal despise despising despit despiteful detest detestation devil discourag discouraged disdain displeas displease displeased displeasing displeasingly displeasur displeasure dudgeon dun enfuri enfuriate enmiti enmity enrag enraged enragement envi enviabl enviable enviably envious enviously enviousness envy evil exacerb exacerbate exasper exasperate exasperating exasperation execr execrate execration fit frustrat frustrate frustrated frustrating frustration furi furious furiously fury gall galling get_at get_to grabbi grabby grasp grasping gravel greedi greedy green-ey green-eyed green-eyed_monst green-eyed_monster grievanc grievance grizzl grizzle grudg grudge grudging hackl hackles harass harassed harassment harri harried hate hateful hatefully hatr hatred heartburn heartburning high_dudgeon hostil hostile hostilely hostility huffi huffili huffily huffiness huffish huffishness huffy ill_temp ill_temper ill_wil ill_will incens incense incensed indign indignant indignantly indignation infuri infuriate infuriated infuriating infuriation irasc irascibility irascible ire irrit irritate irritated irritating irritation jealous jealousi jealously jealousy livid lividity lividly loath loathe loathing mad madden maddened maddening madness malef malefic maleficence malevol malevolence malevolent malevolently malic malice malici malicious maliciously maliciousness malign malignity misanthrop misanthropi misanthropic misanthropical misanthropy misocainea misogami misogamy misogyn misogyni misogynic misogynism misogyny misolog misology mison misoneism misopedia murder murderously murderousness nark nettl nettle nettled nettlesom nettlesome odium offend offens offense oppress outrag outrage outraged overjeal overjealous peev peeved persecut persecute peski pesky pester pestered pestering pestifer pestiferous piqu pique piss pissed plaguey plaguy poop pout prehensil prehensile provok provoked quick_temp quick_temper rag rage rancor rancour resent resentful resentfully resentment reveng revengefully rile riled roil roiled scene score scorn see_r see_red short_temp short_temper sore spite spiteful spitefulness spleen stew stung sulk sulki sulkiness sulky tantal tantalize tantrum teas teasing temper the_green-eyed_monst the_green-eyed_monster torment umbrag umbrage umbrageous veng vengefully vengefulness venom vex vexat vexati vexation vexatious vexed vexing vindict vindictive vindictively vindictiveness warpath with_hostil with_hostility wrath wrathful wrathfully wroth wrothful)
14
+
15
+ EMOTIONS = { anger: anger, disgust: disgust, joy: joy,
16
+ surprise: surprise, fear: fear, sadness: sadness }.freeze
17
+ end
18
+ end
@@ -0,0 +1,1466 @@
1
+ # Has the polarity for all the words
2
+ module SadPanda
3
+ # Holds the hardcoded data
4
+ module Bank
5
+ POLARITIES = { abandoned: 2.5, abandonment: 2.5, abandon: 2.5, abase: 0,
6
+ abasement: 0, abash: 0, abate: 2.5, abdicate: 2.5, aberration: 0,
7
+ abhor: 0, abhorred: 0, abhorrence: 0, abhorrent: 0,
8
+ abhorrently: 0, abhors: 0, abidance: 10, abide: 10, abject: 0,
9
+ abjectly: 0, abjure: 2.5, abilities: 7.5, ability: 7.5, able: 7.5,
10
+ abnormal: 2.5, abolish: 2.5, abominable: 0, abominably: 0,
11
+ abominate: 0, abomination: 0, above: 7.5, aboveaverage: 7.5,
12
+ abound: 7.5, abrade: 2.5, abrasive: 0, abrupt: 2.5, abscond: 0,
13
+ absence: 2.5, absentee: 2.5, absentminded: 0, absolve: 10, absurd: 0,
14
+ absurdity: 0, absurdly: 0, absurdness: 0, abundant: 7.5,
15
+ abundance: 7.5, abuse: 0, abuses: 2.5, abusive: 0, abysmal: 0,
16
+ abysmally: 0, abyss: 0, accede: 10, accept: 7.5, acceptance: 7.5,
17
+ acceptable: 7.5, accessible: 7.5, accidental: 2.5, acclaim: 10,
18
+ acclaimed: 10, acclamation: 10, accolade: 10, accolades: 10,
19
+ accommodative: 7.5, accomplish: 7.5, accomplishment: 7.5,
20
+ accomplishments: 7.5, accord: 7.5, accordance: 7.5, accordantly: 7.5,
21
+ accost: 2.5, accountable: 2.5, accurate: 7.5, accurately: 7.5,
22
+ accursed: 0, accusation: 0, accusations: 0, accuse: 0,
23
+ accuses: 0, accusing: 0, accusingly: 0, acerbate: 0,
24
+ acerbic: 0, acerbically: 0, ache: 0, achievable: 7.5, achieve: 7.5,
25
+ achievement: 7.5, achievements: 7.5, acknowledge: 7.5, acknowledgement: 7.5,
26
+ acquit: 7.5, acrid: 0, acridly: 0, acridness: 0, acrimonious: 0,
27
+ acrimoniously: 0, acrimony: 0, active: 7.5, acumen: 10, adamant: 0,
28
+ adamantly: 0, adaptable: 7.5, adaptability: 7.5, adaptive: 7.5,
29
+ addict: 2.5, addiction: 2.5, adept: 7.5, adeptly: 7.5, adequate: 7.5,
30
+ adherence: 7.5, adherent: 7.5, adhesion: 7.5, admirable: 10, admirer: 10,
31
+ admirably: 10, admiration: 10, admire: 10, admiring: 10, admiringly: 10,
32
+ admission: 7.5, admit: 10, admittedly: 10, admonish: 0, admonisher: 0,
33
+ admonishingly: 0, admonishment: 0, admonition: 0, adorable: 10,
34
+ adore: 10, adored: 10, adorer: 10, adoring: 10, adoringly: 10,
35
+ adrift: 2.5, adroit: 10, adroitly: 10, adulate: 10, adulation: 10,
36
+ adulatory: 10, adulterate: 0, adulterated: 0, adulteration: 0,
37
+ advanced: 7.5, advantage: 7.5, advantageous: 10, advantages: 7.5,
38
+ adventure: 7.5, adventuresome: 10, adventurism: 10, adventurous: 7.5,
39
+ adversarial: 2.5, adversary: 2.5, adverse: 2.5, adversity: 0,
40
+ advice: 7.5, advisable: 7.5, advocate: 10, advocacy: 10, affable: 10,
41
+ affability: 7.5, affably: 7.5, affectation: 2.5, affection: 10,
42
+ affectionate: 10, affinity: 7.5, affirm: 10, affirmation: 10,
43
+ affirmative: 7.5, afflict: 2.5, affliction: 2.5, afflictive: 0,
44
+ affluent: 7.5, affluence: 7.5, afford: 7.5, affordable: 7.5, affront: 0,
45
+ afloat: 7.5, afraid: 0, against: 2.5, aggravate: 0, aggravating: 0,
46
+ aggravation: 0, aggression: 0, aggressive: 0, aggressiveness: 0,
47
+ aggressor: 0, aggrieve: 0, aggrieved: 0, aghast: 0, agile: 7.5,
48
+ agilely: 7.5, agility: 7.5, agitate: 0, agitated: 0, agitation: 0,
49
+ agitator: 0, agonies: 0, agonize: 0, agonizing: 0,
50
+ agonizingly: 0, agony: 0, agree: 10, agreeability: 10, agreeable: 10,
51
+ agreeableness: 10, agreeably: 10, agreement: 7.5, ail: 2.5, ailment: 2.5,
52
+ aimless: 0, airs: 2.5, alarm: 2.5, alarmed: 0, alarming: 0,
53
+ alarmingly: 0, alas: 0, alienate: 2.5, alienated: 2.5,
54
+ alienation: 2.5, allay: 10, allegation: 0, allegations: 0,
55
+ allege: 2.5, allergic: 2.5, alleviate: 7.5, allow: 7.5, allowable: 7.5,
56
+ allure: 10, alluring: 10, alluringly: 10, ally: 10, almighty: 10,
57
+ aloof: 0, altercation: 2.5, although: 2.5, altruist: 10,
58
+ altruistic: 10, altruistically: 10, amaze: 10, amazed: 10, amazement: 10,
59
+ amazing: 10, amazingly: 10, ambiguous: 0, ambiguity: 0,
60
+ ambitious: 7.5, ambitiously: 7.5, ambivalence: 0, ambivalent: 0,
61
+ ambush: 2.5, ameliorate: 10, amenable: 10, amenity: 7.5, amiability: 10,
62
+ amiabily: 10, amiable: 10, amicability: 10, amicable: 10, amicably: 10,
63
+ amiss: 0, amity: 7.5, amnesty: 7.5, amour: 10, ample: 7.5, amply: 7.5,
64
+ amputate: 2.5, amuse: 10, amusement: 10, amusing: 10, amusingly: 10,
65
+ anarchism: 0, anarchist: 0, anarchistic: 0, anarchy: 0,
66
+ anemic: 2.5, angel: 7.5, angelic: 10, anger: 0, poop: 0, angrily: 0,
67
+ angriness: 0, angry: 0, anguish: 0, annihilate: 0,
68
+ annihilation: 0, animated: 7.5, animosity: 0, annoy: 0,
69
+ annoyance: 0, annoyed: 0, annoying: 0, annoyingly: 0,
70
+ anomalous: 2.5, anomaly: 2.5, antagonism: 0, antagonist: 2.5,
71
+ antagonistic: 0, antagonize: 0, anti: 0, antiAmerican: 0,
72
+ antiIsraeli: 0, antiSemites: 0, antiUS: 0, antioccupation: 0,
73
+ antiproliferation: 0, antisocial: 0, antiwhite: 0, antipathy: 0,
74
+ antiquated: 0, antithetical: 0, anxieties: 0, anxiety: 0,
75
+ anxious: 0, anxiously: 0, anxiousness: 0, apathetic: 0,
76
+ apathetically: 0, apathy: 0, ape: 0, apocalypse: 0,
77
+ apocalyptic: 0, apologist: 0, apologists: 0, apostle: 10,
78
+ apotheosis: 10, appal: 0, appall: 0, appalled: 0, appalling: 0,
79
+ appallingly: 0, appeal: 7.5, appealing: 10, appease: 7.5, applaud: 10,
80
+ appreciable: 7.5, appreciate: 10, appreciation: 10, appreciative: 10,
81
+ appreciatively: 10, appreciativeness: 10, apprehension: 0,
82
+ apprehensions: 0, apprehensive: 0, apprehensively: 0,
83
+ appropriate: 7.5, approval: 7.5, approve: 7.5, apt: 7.5, aptly: 7.5,
84
+ aptitude: 7.5, arbitrary: 0, arcane: 0, archaic: 0, ardent: 10,
85
+ ardently: 10, ardor: 10, arduous: 0, arduously: 0, aristocratic: 7.5,
86
+ argue: 0, argument: 2.5, argumentative: 0, arguments: 2.5,
87
+ arousal: 10, arouse: 10, arousing: 10, arresting: 10, arrogance: 0,
88
+ arrogant: 0, arrogantly: 0, articulate: 10, artificial: 2.5,
89
+ ascendant: 10, ascertainable: 10, ashamed: 0, asinine: 0,
90
+ asininely: 0, asinininity: 0, askance: 0, asperse: 0,
91
+ aspersion: 0, aspersions: 0, aspiration: 10, aspirations: 10,
92
+ aspire: 10, assail: 2.5, assassinate: 2.5, assassin: 0, assault: 2.5,
93
+ assent: 10, assertions: 10, assertive: 7.5, asset: 7.5, assiduous: 10,
94
+ assiduously: 10, assuage: 7.5, assurance: 7.5, assurances: 7.5, assure: 10,
95
+ assuredly: 10, astonish: 10, astonished: 10, astonishing: 10,
96
+ astonishingly: 10, astonishment: 10, astound: 10, astounded: 10,
97
+ astounding: 10, astoundingly: 10, astray: 2.5, astute: 10, astutely: 10,
98
+ asunder: 0, asylum: 7.5, atrocious: 0, atrocities: 0, atrocity: 0,
99
+ atrophy: 0, attack: 2.5, attain: 7.5, attainable: 7.5, attentive: 10,
100
+ attest: 10, attraction: 10, attractive: 10, attractively: 10, attune: 7.5,
101
+ audacious: 0, audaciously: 0, audaciousness: 0, audacity: 0,
102
+ auspicious: 10, austere: 0, authentic: 7.5, authoritarian: 2.5,
103
+ authoritative: 7.5, autocrat: 0, autocratic: 0, award: 7.5,
104
+ autonomous: 7.5, avalanche: 0, avarice: 0, avaricious: 0,
105
+ avariciously: 0, avenge: 0, aver: 10, averse: 0, aversion: 0,
106
+ avid: 10, avidly: 10, avoid: 2.5, avoidance: 2.5, awe: 10, awed: 10,
107
+ awesome: 10, awesomely: 10, awesomeness: 10, awestruck: 10, awful: 0,
108
+ awfully: 0, awfulness: 0, awkward: 0, awkwardness: 0, ax: 0,
109
+ babble: 0, back: 7.5, backbite: 0, backbiting: 0, backbone: 7.5,
110
+ backward: 0, backwardness: 0, bad: 0, badly: 0, baffle: 0,
111
+ baffled: 0, bafflement: 0, baffling: 0, bait: 0, balanced: 7.5,
112
+ balk: 0, banal: 0, banalize: 0, bane: 0, banish: 0,
113
+ banishment: 0, bankrupt: 2.5, bar: 2.5, barbarian: 0, barbaric: 0,
114
+ barbarically: 0, barbarity: 0, barbarous: 0, barbarously: 0,
115
+ barely: 2.5, bargain: 10, barren: 0, baseless: 0, bashful: 0,
116
+ basic: 7.5, bask: 7.5, bastard: 0, battered: 2.5, battering: 2.5,
117
+ battle: 2.5, battlelines: 0, battlefield: 2.5, battleground: 0,
118
+ batty: 0, beacon: 7.5, bearish: 2.5, beast: 0, beastly: 0,
119
+ beatify: 10, beauteous: 10, beautiful: 10, beautifully: 10, beautify: 10,
120
+ beauty: 10, bedlam: 0, bedlamite: 0, befit: 10, befitting: 10,
121
+ befoul: 0, befriend: 10, beg: 0, beggar: 2.5, beggarly: 0,
122
+ begging: 0, beguile: 0, belated: 2.5, belabor: 0, beleaguer: 0,
123
+ belie: 0, believable: 10, belittle: 0, belittled: 0,
124
+ belittling: 0, bellicose: 0, belligerence: 0, belligerent: 0,
125
+ belligerently: 0, beloved: 10, bemoan: 0, bemoaning: 0,
126
+ bemused: 0, benefactor: 7.5, beneficial: 10, beneficent: 10,
127
+ beneficially: 10, beneficiary: 10, benefit: 7.5, benefits: 7.5,
128
+ benevolence: 10, benevolent: 10, benign: 7.5, bent: 2.5, berate: 0,
129
+ bereave: 0, bereavement: 0, bereft: 0, berserk: 0, beseech: 0,
130
+ beset: 2.5, besiege: 2.5, besmirch: 0, best: 10, bestknown: 10,
131
+ bestperforming: 10, bestselling: 7.5, bestial: 0, betray: 0,
132
+ betrayal: 0, betrayals: 0, betrayer: 0, better: 7.5,
133
+ betterknown: 10, betterthanexpected: 10, bewail: 0, beware: 2.5,
134
+ bewilder: 0, bewildered: 0, bewildering: 0, bewilderingly: 0,
135
+ bewilderment: 0, bewitch: 0, bias: 0, biased: 0, biases: 0,
136
+ bicker: 0, bickering: 0, bidrigging: 2.5, bitch: 0, bitchy: 0,
137
+ biting: 0, bitingly: 0, bitter: 0, bitterly: 0, bitterness: 0,
138
+ bizarre: 0, blab: 0, blabber: 0, black: 2.5, blackmail: 2.5,
139
+ blah: 0, blame: 0, blameless: 10, blameworthy: 0, bland: 0,
140
+ blandish: 0, blaspheme: 0, blasphemous: 0, blasphemy: 0,
141
+ blast: 2.5, blasted: 0, blatant: 0, blatantly: 0, blather: 0,
142
+ bleak: 0, bleakly: 0, bleakness: 0, bleed: 2.5, blemish: 2.5,
143
+ bless: 10, blessing: 10, blind: 2.5, blinding: 0, blindingly: 0,
144
+ blindness: 2.5, blindside: 0, bliss: 10, blissful: 10, blissfully: 10,
145
+ blister: 0, blistering: 0, blithe: 10, bloated: 0, block: 2.5,
146
+ blockhead: 0, blood: 2.5, bloodshed: 0, bloodthirsty: 0,
147
+ bloody: 2.5, bloom: 7.5, blossom: 7.5, blow: 2.5, blunder: 0,
148
+ blundering: 0, blunders: 0, blunt: 0, blur: 2.5, blurt: 0,
149
+ boast: 0, boastful: 0, boggle: 0, bogus: 0, boil: 0,
150
+ boiling: 0, boisterous: 0, bold: 10, boldly: 10, boldness: 10,
151
+ bolster: 10, bombard: 2.5, bomb: 2.5, bombardment: 0, bombastic: 0,
152
+ bondage: 0, bonkers: 0, bonny: 10, bonus: 7.5, boom: 7.5, booming: 7.5,
153
+ boost: 7.5, bore: 0, boredom: 0, boring: 0, botch: 0,
154
+ bother: 0, bothersome: 0, boundless: 10, bountiful: 10,
155
+ bowdlerize: 0, boycott: 2.5, brag: 0, braggart: 0, bragger: 0,
156
+ brains: 10, brainwash: 0, brainy: 10, brash: 0, brashly: 0,
157
+ brashness: 0, brat: 0, bravado: 0, brave: 10, bravery: 10,
158
+ brazen: 0, brazenly: 0, brazenness: 0, breach: 2.5, break: 2.5,
159
+ breakpoint: 0, breakdown: 2.5, breakthrough: 7.5, breakthroughs: 7.5,
160
+ breathlessness: 10, breathtaking: 10, breathtakingly: 10, bright: 7.5,
161
+ brighten: 7.5, brightness: 7.5, brilliance: 7.5, brilliant: 10,
162
+ brilliantly: 10, brimstone: 0, brisk: 7.5, bristle: 0, brittle: 2.5,
163
+ broad: 7.5, broke: 2.5, brokenhearted: 0, brood: 0, brook: 10,
164
+ brotherly: 7.5, browbeat: 0, bruise: 2.5, brusque: 0, brutal: 0,
165
+ brutalising: 0, brutalities: 0, brutality: 0, brutalize: 0,
166
+ brutalizing: 0, brutally: 0, brute: 0, brutish: 0, bug: 2.5,
167
+ buckle: 2.5, bulky: 2.5, bull: 7.5, bullies: 0, bullish: 7.5,
168
+ bully: 0, bullyingly: 0, bum: 2.5, bumpy: 2.5, bungle: 0,
169
+ bungler: 0, bunk: 2.5, buoyant: 7.5, burden: 0, burdensome: 0,
170
+ burdensomely: 0, burn: 0, busy: 2.5, busybody: 0, butcher: 2.5,
171
+ butchery: 0, byzantine: 0, cackle: 0, cajole: 0, calamities: 0,
172
+ calamitous: 0, calamitously: 0, calamity: 0, callous: 0,
173
+ calm: 7.5, calming: 10, calmness: 7.5, calumniate: 0, calumniation: 0,
174
+ calumnies: 0, calumnious: 0, calumniously: 0, calumny: 0,
175
+ cancer: 2.5, cancerous: 2.5, candid: 10, candor: 10, cannibal: 0,
176
+ cannibalize: 0, capable: 7.5, capability: 7.5, capably: 7.5,
177
+ capitalize: 7.5, capitulate: 2.5, capricious: 0, capriciously: 0,
178
+ capriciousness: 0, capsize: 2.5, captivate: 10, captivating: 10,
179
+ captivation: 10, captive: 2.5, care: 7.5, carefree: 10, careful: 7.5,
180
+ careless: 0, carelessness: 0, caricature: 0, carnage: 0,
181
+ carp: 0, cartoon: 2.5, cartoonish: 0, cashstrapped: 2.5,
182
+ castigate: 0, casualty: 2.5, cataclysm: 0, cataclysmal: 0,
183
+ cataclysmic: 0, cataclysmically: 0, catalyst: 10, catastrophe: 0,
184
+ catastrophes: 0, catastrophic: 0, catastrophically: 0, catchy: 10,
185
+ caustic: 0, caustically: 0, cautionary: 0, cautious: 2.5,
186
+ cave: 2.5, celebrate: 10, celebrated: 10, celebration: 10,
187
+ celebratory: 10, celebrity: 7.5, censure: 0, chafe: 0, chaff: 0,
188
+ chagrin: 0, challenge: 2.5, challenging: 2.5, champion: 7.5, champ: 7.5,
189
+ chaos: 0, chaotic: 0, charisma: 0, charismatic: 10, charitable: 7.5,
190
+ charity: 7.5, charm: 10, charming: 10, charmingly: 10, chaste: 10,
191
+ chasten: 0, chastise: 0, chastisement: 0, chatter: 0,
192
+ chatterbox: 0, cheapen: 0, cheap: 0, cheat: 0, cheater: 0,
193
+ cheer: 10, cheery: 10, cheerful: 10, cheerless: 0, cherish: 10,
194
+ cherished: 10, cherub: 10, chic: 10, chide: 0, childish: 0,
195
+ chill: 2.5, chilly: 2.5, chit: 0, chivalry: 10, chivalrous: 10,
196
+ choppy: 2.5, choke: 2.5, chore: 2.5, chronic: 2.5, chum: 7.5,
197
+ civility: 10, civilization: 7.5, civilize: 7.5, civil: 7.5, clamor: 2.5,
198
+ clamorous: 2.5, clarity: 7.5, clash: 2.5, classic: 7.5, clean: 7.5,
199
+ cleanliness: 7.5, cleanse: 7.5, clear: 7.5, clearcut: 10, clearer: 10,
200
+ clearly: 10, clever: 10, cliche: 0, cliched: 0, clique: 2.5,
201
+ clog: 2.5, close: 2.5, closeness: 10, cloud: 0, clout: 10,
202
+ clumsy: 0, cooperation: 7.5, coarse: 2.5, coax: 10, cocky: 0,
203
+ coddle: 7.5, coerce: 0, coercion: 0, coercive: 0, cogent: 10,
204
+ cohesive: 7.5, cohere: 7.5, coherence: 10, coherent: 7.5, cohesion: 7.5,
205
+ cold: 2.5, coldly: 0, collapse: 2.5, collide: 2.5, collude: 0,
206
+ collusion: 0, colorful: 7.5, colossal: 7.5, combative: 2.5, comeback: 7.5,
207
+ comedy: 2.5, comely: 10, comfort: 7.5, comfortable: 7.5, comfortably: 7.5,
208
+ comforting: 10, comical: 2.5, commend: 10, commendable: 10,
209
+ commendably: 10, commensurate: 7.5, commonsense: 7.5, commonsensible: 7.5,
210
+ commonsensibly: 7.5, commonsensical: 7.5, commodious: 7.5, commiserate: 0,
211
+ commitment: 7.5, commonplace: 2.5, commotion: 0, compact: 7.5,
212
+ compassion: 10, compassionate: 10, compatible: 7.5, compel: 0,
213
+ compelling: 10, compensate: 10, competent: 7.5, competence: 7.5,
214
+ competency: 7.5, competitive: 7.5, competitiveness: 7.5, complacent: 0,
215
+ complain: 0, complaining: 0, complaint: 0, complaints: 0,
216
+ complement: 7.5, complex: 2.5, compliant: 10, complicate: 2.5,
217
+ complicated: 2.5, complication: 2.5, complicit: 0, compliment: 10,
218
+ complimentary: 10, comprehensive: 7.5, compromise: 7.5, compromises: 7.5,
219
+ compulsion: 0, compulsive: 0, compulsory: 2.5, comrades: 10,
220
+ concede: 0, conceit: 0, conceited: 0, conceivable: 10,
221
+ concern: 2.5, concerned: 0, concerns: 0, concession: 2.5,
222
+ concessions: 2.5, conciliate: 10, conciliatory: 10, conclusive: 7.5,
223
+ concrete: 7.5, concur: 10, condescend: 0, condescending: 0,
224
+ condescendingly: 0, condescension: 0, condemn: 0, condemnable: 0,
225
+ condemnation: 0, condolence: 0, condolences: 0, condone: 10,
226
+ conducive: 7.5, confer: 7.5, confess: 0, confession: 0,
227
+ confessions: 0, confidence: 10, confident: 10, conflict: 2.5,
228
+ confound: 2.5, confounded: 2.5, confounding: 2.5, confront: 2.5,
229
+ confrontation: 0, confrontational: 2.5, confuse: 0, confused: 0,
230
+ confusing: 0, confusion: 0, confute: 10, congenial: 10,
231
+ congested: 2.5, congestion: 2.5, congratulate: 10, congratulations: 10,
232
+ congratulatory: 10, conquer: 7.5, conscience: 7.5, conscientious: 10,
233
+ consensus: 10, consent: 10, considerate: 10, consistent: 7.5, console: 7.5,
234
+ conspicuous: 0, conspicuously: 0, conspiracies: 2.5, conspiracy: 2.5,
235
+ conspirator: 0, conspiratorial: 0, conspire: 0, constancy: 10,
236
+ consternation: 0, constrain: 2.5, constraint: 2.5, constructive: 7.5,
237
+ consume: 2.5, consummate: 10, contagious: 2.5, contaminate: 2.5,
238
+ contamination: 2.5, contempt: 0, contemptible: 0, contemptuous: 0,
239
+ contemptuously: 0, contend: 0, content: 7.5, contention: 0,
240
+ contentment: 10, contentious: 0, continuity: 7.5, contort: 0,
241
+ contortions: 0, contradict: 0, contradiction: 0, contradictory: 0,
242
+ contrariness: 0, contrary: 0, contravene: 0, contribution: 7.5,
243
+ contrive: 0, contrived: 0, controversial: 2.5, controversy: 2.5,
244
+ convenient: 10, conveniently: 10, conviction: 7.5, convince: 7.5,
245
+ convincing: 10, convincingly: 10, convoluted: 0, cooperate: 7.5,
246
+ cooperative: 7.5, cooperatively: 7.5, coping: 2.5, cordial: 7.5,
247
+ cornerstone: 10, correct: 7.5, correctly: 10, corrode: 2.5,
248
+ corrosion: 2.5, corrosive: 2.5, corrupt: 0, corruption: 0,
249
+ costeffective: 7.5, costsaving: 7.5, costly: 2.5, counterproductive: 0,
250
+ coupists: 0, courage: 10, courageous: 10, courageously: 10,
251
+ courageousness: 10, court: 10, courteous: 10, courtesy: 10, courtly: 10,
252
+ covenant: 7.5, covet: 0, coveting: 0, covetingly: 0, covetous: 0,
253
+ covetously: 0, cow: 2.5, coward: 0, cowardly: 0, cozy: 10,
254
+ crackdown: 2.5, crafty: 0, cramped: 2.5, cranky: 0, crass: 0,
255
+ crave: 10, craven: 0, cravenly: 0, craving: 10, craze: 0,
256
+ crazily: 0, craziness: 0, crazy: 0, creative: 10, credence: 10,
257
+ credible: 10, credulous: 0, crime: 2.5, criminal: 2.5, cringe: 0,
258
+ cripple: 0, crippling: 0, crisis: 2.5, crisp: 7.5, critic: 0,
259
+ critical: 0, criticism: 0, criticisms: 0, criticize: 0,
260
+ critics: 0, crook: 0, crooked: 0, cross: 0, crowded: 2.5,
261
+ crude: 2.5, cruel: 0, cruelties: 0, cruelty: 0, crumble: 2.5,
262
+ crumple: 2.5, crusade: 10, crusader: 10, crush: 2.5, crushing: 2.5,
263
+ cry: 0, culpable: 0, cuplrit: 0, cumbersome: 0, cureall: 10,
264
+ curious: 10, curiously: 10, curse: 0, cursed: 0, curses: 0,
265
+ cursory: 2.5, curt: 2.5, cuss: 0, cut: 2.5, cute: 10, cutthroat: 0,
266
+ cynical: 0, cynicism: 0, damage: 2.5, damaging: 2.5, damn: 0,
267
+ damnable: 0, damnably: 0, damnation: 0, damned: 0, damning: 0,
268
+ dance: 7.5, danger: 2.5, dangerous: 2.5, dangerousness: 0, dangle: 0,
269
+ dare: 10, daring: 10, daringly: 10, dark: 2.5, darken: 2.5,
270
+ darkness: 2.5, darling: 10, darn: 0, dash: 2.5, dashing: 10,
271
+ dastard: 0, dastardly: 0, daunt: 0, daunting: 0, dauntingly: 0,
272
+ dauntless: 10, dawdle: 0, dawn: 7.5, daydream: 10, daydreamer: 10,
273
+ daze: 0, dazed: 0, dazzle: 10, dazzled: 10, dazzling: 10, dead: 2.5,
274
+ deadbeat: 0, deadlock: 0, deadly: 2.5, deadweight: 0, deaf: 2.5,
275
+ deal: 7.5, dear: 10, dearth: 0, death: 2.5, debacle: 0, debase: 0,
276
+ debasement: 0, debaser: 0, debatable: 0, debate: 0, debauch: 0,
277
+ debaucher: 0, debauchery: 0, debilitate: 2.5, debilitating: 2.5,
278
+ debility: 2.5, decadence: 0, decadent: 0, decay: 0, decayed: 0,
279
+ deceit: 0, deceitful: 0, deceitfully: 0, deceitfulness: 0,
280
+ deceiving: 0, deceive: 0, deceiver: 0, deceivers: 0, decent: 7.5,
281
+ decency: 7.5, deception: 0, deceptive: 0, deceptively: 0,
282
+ decisive: 7.5, decisiveness: 7.5, declaim: 0, decline: 2.5,
283
+ declining: 2.5, decrease: 2.5, decreasing: 2.5, decrement: 2.5,
284
+ decrepit: 0, decrepitude: 0, decry: 0, dedicated: 10, deep: 2.5,
285
+ deepening: 0, defamation: 0, defamations: 0, defamatory: 0,
286
+ defame: 0, defeat: 2.5, defect: 2.5, defective: 0, defend: 7.5,
287
+ defender: 10, defensive: 2.5, deference: 10, defense: 7.5, defiance: 0,
288
+ defiant: 0, defiantly: 0, deficiency: 2.5, deficient: 2.5,
289
+ defile: 0, defiler: 0, definite: 7.5, definitely: 7.5, definitive: 7.5,
290
+ definitively: 10, deflationary: 7.5, deform: 2.5, deformed: 2.5,
291
+ defrauding: 0, deft: 10, defunct: 0, defy: 0, degenerate: 0,
292
+ degenerately: 0, degeneration: 0, degradation: 0, degrade: 0,
293
+ degrading: 0, degradingly: 0, dehumanization: 0, dehumanize: 0,
294
+ deign: 0, deject: 0, dejected: 0, dejectedly: 0, dejection: 0,
295
+ delectable: 10, delicacy: 7.5, delicate: 7.5, delicious: 10, delight: 10,
296
+ delighted: 10, delightful: 10, delightfully: 10, delightfulness: 10,
297
+ delinquency: 2.5, delinquent: 2.5, delirious: 0, delirium: 0,
298
+ delude: 0, deluded: 0, deluge: 2.5, delusion: 0, delusional: 0,
299
+ delusions: 0, demand: 0, demands: 2.5, demean: 0, demeaning: 0,
300
+ demise: 0, democratic: 7.5, demolish: 2.5, demolisher: 2.5, demon: 0,
301
+ demonic: 0, demonize: 0, demoralize: 0, demoralizing: 0,
302
+ demoralizingly: 0, demystify: 10, denial: 0, denigrate: 0,
303
+ deny: 0, denounce: 0, denunciate: 0, denunciation: 0,
304
+ denunciations: 0, dependable: 7.5, deplete: 2.5, deplorable: 0,
305
+ deplorably: 0, deplore: 0, deploring: 0, deploringly: 0,
306
+ deprave: 0, depraved: 0, depravedly: 0, deprecate: 0,
307
+ depress: 2.5, depressed: 0, depressing: 0, depressingly: 0,
308
+ depression: 2.5, deprive: 0, deprived: 0, deride: 0, derision: 0,
309
+ derisive: 0, derisively: 0, derisiveness: 0, derogatory: 0,
310
+ desecrate: 0, deserve: 10, deserved: 10, deservedly: 10, deserving: 10,
311
+ desert: 0, desertion: 0, desiccate: 0, desiccated: 0,
312
+ desirable: 10, desire: 10, desirous: 10, desolate: 0, desolately: 0,
313
+ desolation: 0, despair: 0, despairing: 0, despairingly: 0,
314
+ desperate: 0, desperately: 0, desperation: 0, despicable: 0,
315
+ despicably: 0, despise: 0, despised: 0, despite: 0, despoil: 0,
316
+ despoiler: 0, despondence: 0, despondency: 0, despondent: 0,
317
+ despondently: 0, despot: 0, despotic: 0, despotism: 0,
318
+ destabilisation: 0, destine: 7.5, destined: 7.5, destinies: 10,
319
+ destiny: 10, destitute: 0, destitution: 0, destroy: 2.5,
320
+ destroyer: 0, destruction: 2.5, destructive: 0, desultory: 0,
321
+ deter: 2.5, deteriorate: 2.5, deteriorating: 2.5, deterioration: 2.5,
322
+ determination: 10, deterrent: 2.5, detest: 0, detestable: 0,
323
+ detestably: 0, detract: 2.5, detraction: 2.5, detriment: 0,
324
+ detrimental: 0, devastate: 0, devastated: 0, devastating: 0,
325
+ devastatingly: 0, devastation: 2.5, deviate: 2.5, deviation: 2.5,
326
+ devil: 0, devilish: 0, devilishly: 0, devilment: 0, devilry: 0,
327
+ devious: 0, deviously: 0, deviousness: 0, devoid: 0, devote: 10,
328
+ devoted: 10, devotee: 10, devotion: 10, devout: 7.5, dexterity: 7.5,
329
+ dexterous: 10, dexterously: 10, dextrous: 10, diabolic: 0,
330
+ diabolical: 0, diabolically: 0, diametrically: 0, diatribe: 0,
331
+ diatribes: 0, dictator: 2.5, dictatorial: 2.5, differ: 2.5,
332
+ difficult: 2.5, difficulties: 2.5, difficulty: 0, diffidence: 0,
333
+ dig: 7.5, dignified: 10, dignify: 7.5, dignity: 10, digress: 0,
334
+ dilapidated: 0, dilemma: 2.5, diligence: 7.5, diligent: 7.5,
335
+ diligently: 7.5, dillydally: 0, dim: 2.5, diminish: 2.5,
336
+ diminishing: 2.5, din: 2.5, dinky: 2.5, diplomatic: 7.5, dire: 0,
337
+ direly: 0, direness: 0, dirt: 2.5, dirty: 2.5, disable: 2.5,
338
+ disabled: 2.5, disaccord: 0, disadvantage: 0, disadvantaged: 2.5,
339
+ disadvantageous: 0, disaffect: 0, disaffected: 0, disaffirm: 0,
340
+ disagree: 0, disagreeable: 0, disagreeably: 0, disagreement: 0,
341
+ disallow: 0, disappoint: 0, disappointed: 0, disappointing: 0,
342
+ disappointingly: 0, disappointment: 0, disapprobation: 0,
343
+ disapproval: 0, disapprove: 0, disapproving: 0, disarm: 2.5,
344
+ disarray: 0, disaster: 0, disastrous: 0, disastrously: 0,
345
+ disavow: 0, disavowal: 0, disbelief: 0, disbelieve: 0,
346
+ disbeliever: 0, discerning: 10, disclaim: 0, discombobulate: 0,
347
+ discomfit: 0, discomfititure: 0, discomfort: 2.5, discompose: 2.5,
348
+ disconcert: 0, disconcerted: 0, disconcerting: 0,
349
+ disconcertingly: 0, disconsolate: 0, disconsolately: 0,
350
+ disconsolation: 0, discontent: 0, discontented: 0,
351
+ discontentedly: 0, discontinuity: 0, discord: 0, discordance: 0,
352
+ discordant: 0, discountenance: 0, discourage: 0,
353
+ discouragement: 0, discouraging: 0, discouragingly: 0,
354
+ discourteous: 0, discourteously: 0, discredit: 0, discreet: 7.5,
355
+ discrepant: 2.5, discretion: 7.5, discriminate: 2.5, discriminating: 7.5,
356
+ discriminatingly: 7.5, discrimination: 2.5, discriminatory: 0,
357
+ disdain: 0, disdainful: 0, disdainfully: 0, disease: 2.5,
358
+ diseased: 2.5, disfavor: 0, disgrace: 0, disgraced: 0,
359
+ disgraceful: 0, disgracefully: 0, disgruntle: 0, disgruntled: 0,
360
+ disgust: 0, disgusted: 0, disgustedly: 0, disgustful: 0,
361
+ disgustfully: 0, disgusting: 0, disgustingly: 0, dishearten: 0,
362
+ disheartening: 0, dishearteningly: 0, dishonest: 0,
363
+ dishonestly: 0, dishonesty: 0, dishonor: 0, dishonorable: 0,
364
+ dishonorablely: 0, disillusion: 0, disillusioned: 0,
365
+ disinclination: 0, disinclined: 0, disingenuous: 0,
366
+ disingenuously: 0, disintegrate: 2.5, disinterested: 0,
367
+ disintegration: 2.5, disinterest: 0, dislike: 0, dislocated: 2.5,
368
+ disloyal: 0, disloyalty: 0, dismal: 0, dismally: 0,
369
+ dismalness: 0, dismay: 0, dismayed: 0, dismaying: 0,
370
+ dismayingly: 0, dismissive: 0, dismissively: 0, disobedience: 0,
371
+ disobedient: 0, disobey: 0, disown: 0, disorder: 2.5,
372
+ disordered: 2.5, disorderly: 2.5, disorganized: 0, disorient: 0,
373
+ disoriented: 0, disparage: 0, disparaging: 0, disparagingly: 0,
374
+ dispensable: 2.5, dispirit: 0, dispirited: 0, dispiritedly: 0,
375
+ dispiriting: 0, displace: 2.5, displaced: 2.5, displease: 0,
376
+ displeasing: 0, displeasure: 0, disproportionate: 2.5, disprove: 0,
377
+ disputable: 0, dispute: 0, disputed: 0, disquiet: 0,
378
+ disquieting: 0, disquietingly: 0, disquietude: 0, disregard: 0,
379
+ disregardful: 0, disreputable: 0, disrepute: 0, disrespect: 0,
380
+ disrespectable: 0, disrespectablity: 0, disrespectful: 0,
381
+ disrespectfully: 0, disrespectfulness: 0, disrespecting: 0,
382
+ disrupt: 0, disruption: 0, disruptive: 0, dissatisfaction: 0,
383
+ dissatisfactory: 0, dissatisfied: 0, dissatisfy: 0,
384
+ dissatisfying: 0, dissemble: 0, dissembler: 0, dissension: 0,
385
+ dissent: 0, dissenter: 0, dissention: 0, disservice: 0,
386
+ dissidence: 0, dissident: 0, dissidents: 0, dissocial: 0,
387
+ dissolute: 0, dissolution: 2.5, dissonance: 0, dissonant: 0,
388
+ dissonantly: 0, dissuade: 0, dissuasive: 0, distaste: 0,
389
+ distasteful: 0, distastefully: 0, distinct: 7.5, distinction: 7.5,
390
+ distinctive: 7.5, distinguish: 7.5, distinguished: 10, distort: 0,
391
+ distortion: 0, distract: 2.5, distracting: 0, distraction: 0,
392
+ distraught: 0, distraughtly: 0, distraughtness: 0, distress: 0,
393
+ distressed: 0, distressing: 0, distressingly: 0, distrust: 0,
394
+ distrustful: 0, distrusting: 0, disturb: 0, disturbed: 0,
395
+ disturbedlet: 0, disturbing: 0, disturbingly: 0, disunity: 0,
396
+ disvalue: 0, divergent: 2.5, diversified: 7.5, divide: 2.5,
397
+ divided: 2.5, divine: 10, divinely: 10, division: 2.5, divisive: 0,
398
+ divisively: 0, divisiveness: 0, divorce: 2.5, divorced: 2.5,
399
+ dizzy: 0, dizzing: 0, dizzingly: 0, doddering: 0, dodge: 10,
400
+ dodgey: 0, dogged: 0, doggedly: 0, dogmatic: 0, doldrums: 0,
401
+ dominance: 2.5, dominate: 2.5, domination: 0, domineer: 0,
402
+ domineering: 0, doom: 0, doomsday: 0, dope: 2.5, dote: 10,
403
+ dotingly: 10, doubt: 0, doubtful: 0, doubtfully: 0, doubtless: 10,
404
+ doubts: 0, down: 2.5, downbeat: 0, downcast: 0, downer: 0,
405
+ downfall: 0, downfallen: 0, downgrade: 2.5, downhearted: 0,
406
+ downheartedly: 0, downside: 0, drab: 0, draconian: 0,
407
+ draconic: 0, dragon: 0, dragons: 0, dragoon: 0, drain: 0,
408
+ drama: 0, drastic: 0, drastically: 0, dread: 0, dreadful: 0,
409
+ dreadfully: 0, dreadfulness: 0, dream: 10, dreamland: 10, dreams: 7.5,
410
+ dreamy: 7.5, dreary: 0, drive: 7.5, driven: 7.5, drones: 0, droop: 2.5,
411
+ drought: 2.5, drowning: 2.5, drunk: 0, drunkard: 0, drunken: 0,
412
+ dubious: 0, dubiously: 0, dubitable: 0, dud: 2.5, dull: 2.5,
413
+ dullard: 0, dumb: 0, dumbfound: 0, dumbfounded: 0, dummy: 0,
414
+ dump: 2.5, dunce: 0, dungeon: 0, dungeons: 0, dupe: 0,
415
+ durable: 7.5, durability: 7.5, dusty: 2.5, dwindle: 2.5, dwindling: 2.5,
416
+ dynamic: 7.5, dying: 2.5, eager: 10, eagerly: 10, eagerness: 10,
417
+ earnest: 10, earnestly: 10, earnestness: 10, earsplitting: 0, ease: 7.5,
418
+ easier: 7.5, easiest: 7.5, easily: 7.5, easiness: 7.5, easy: 7.5,
419
+ easygoing: 10, ebullience: 10, ebullient: 10, ebulliently: 10,
420
+ eccentric: 2.5, eccentricity: 2.5, eclectic: 10, economical: 7.5,
421
+ ecstasies: 10, ecstasy: 10, ecstatic: 10, ecstatically: 10, edgy: 0,
422
+ edify: 10, educable: 7.5, educated: 7.5, educational: 7.5, effective: 7.5,
423
+ effectiveness: 7.5, effectual: 7.5, efficacious: 7.5, efficiency: 7.5,
424
+ efficient: 7.5, effigy: 0, effortless: 10, effortlessly: 10,
425
+ effrontery: 0, effusion: 10, effusive: 10, effusively: 10,
426
+ effusiveness: 10, egalitarian: 7.5, ego: 0, egocentric: 0,
427
+ egomania: 0, egotism: 0, egotistical: 0, egotistically: 0,
428
+ egregious: 0, egregiously: 0, ejaculate: 0, elan: 10, elate: 7.5,
429
+ elated: 10, elatedly: 10, elation: 10, electionrigger: 0,
430
+ electrification: 10, electrify: 7.5, elegance: 10, elegant: 10,
431
+ elegantly: 10, elevate: 7.5, elevated: 7.5, eligible: 7.5, eliminate: 2.5,
432
+ elimination: 2.5, elite: 7.5, eloquence: 10, eloquent: 10, eloquently: 10,
433
+ emaciated: 0, emancipate: 7.5, emasculate: 0, embarrass: 0,
434
+ embarrassing: 0, embarrassingly: 0, embarrassment: 0,
435
+ embattled: 2.5, embellish: 10, embolden: 7.5, embrace: 10, embroil: 0,
436
+ embroiled: 0, embroilment: 0, eminence: 10, eminent: 10,
437
+ emotional: 0, empathize: 0, empathy: 0, emphatic: 0,
438
+ emphatically: 0, empower: 7.5, empowerment: 7.5, emptiness: 0,
439
+ empty: 2.5, enable: 7.5, enchant: 10, enchanted: 10, enchanting: 10,
440
+ enchantingly: 10, encourage: 7.5, encouragement: 10, encouraging: 10,
441
+ encouragingly: 10, encroach: 2.5, encroachment: 2.5, endanger: 0,
442
+ endear: 10, endearing: 10, endless: 2.5, endorse: 10, endorsement: 10,
443
+ endorser: 10, endurable: 10, endure: 10, enduring: 10, enemies: 2.5,
444
+ enemy: 2.5, energetic: 7.5, energize: 7.5, enervate: 0, enfeeble: 0,
445
+ enflame: 0, engaging: 10, engrossing: 10, engulf: 2.5, enhance: 7.5,
446
+ enhanced: 7.5, enhancement: 7.5, enjoin: 0, enjoy: 7.5, enjoyable: 10,
447
+ enjoyably: 10, enjoyment: 10, enlighten: 7.5, enlightenment: 7.5,
448
+ enliven: 7.5, enmity: 0, ennoble: 10, enormities: 0, enormity: 0,
449
+ enormous: 0, enormously: 0, enrage: 0, enraged: 0, enrapt: 10,
450
+ enrapture: 7.5, enraptured: 10, enrich: 7.5, enrichment: 7.5, enslave: 0,
451
+ ensure: 7.5, entangle: 2.5, entanglement: 2.5, enterprising: 7.5,
452
+ entertain: 7.5, entertaining: 10, enthral: 10, enthrall: 10,
453
+ enthralled: 10, enthuse: 10, enthusiasm: 10, enthusiast: 10,
454
+ enthusiastic: 10, enthusiastically: 10, entice: 10, enticing: 10,
455
+ enticingly: 10, entrance: 7.5, entranced: 10, entrancing: 10, entrap: 0,
456
+ entrapment: 0, entreat: 10, entreatingly: 10, entrust: 7.5,
457
+ enviable: 10, enviably: 10, envious: 0, enviously: 0,
458
+ enviousness: 0, envision: 7.5, envisions: 7.5, envy: 0, epic: 10,
459
+ epidemic: 2.5, epitome: 10, equality: 7.5, equitable: 7.5, equivocal: 0,
460
+ eradicate: 2.5, erase: 2.5, erode: 2.5, erosion: 2.5, err: 0,
461
+ errant: 2.5, erratic: 0, erratically: 0, erroneous: 0,
462
+ erroneously: 0, error: 2.5, erudite: 10, escapade: 2.5, eschew: 0,
463
+ esoteric: 2.5, essential: 7.5, especially: 10, esteem: 10, estranged: 0,
464
+ established: 7.5, eternal: 2.5, eternity: 10, ethical: 10, eulogize: 10,
465
+ euphoria: 10, euphoric: 10, euphorically: 10, evade: 2.5, evasion: 2.5,
466
+ evasive: 2.5, even: 7.5, evenly: 7.5, eventful: 7.5, everlasting: 10,
467
+ evident: 7.5, evidently: 10, evil: 0, evildoer: 0, evils: 0,
468
+ eviscerate: 0, evocative: 10, exacerbate: 0, exacting: 2.5,
469
+ exaggerate: 0, exaggeration: 0, exalt: 10, exaltation: 10,
470
+ exalted: 10, exaltedly: 10, exalting: 10, exaltingly: 10,
471
+ exasperate: 0, exasperation: 0, exasperating: 0,
472
+ exasperatingly: 0, exceed: 10, exceeding: 10, exceedingly: 10,
473
+ excel: 10, excellence: 10, excellency: 10, excellent: 10,
474
+ excellently: 10, exceptional: 10, exceptionally: 10, excessive: 0,
475
+ excessively: 0, excite: 7.5, excited: 10, excitedly: 10,
476
+ excitedness: 10, excitement: 10, exciting: 10, excitingly: 10,
477
+ exclaim: 0, exclude: 2.5, exclusion: 2.5, exclusive: 7.5,
478
+ excoriate: 0, excruciating: 0, excruciatingly: 0, excusable: 10,
479
+ excuse: 7.5, excuses: 2.5, execrate: 0, exemplar: 10, exemplary: 10,
480
+ exhaust: 2.5, exhaustion: 2.5, exhaustive: 7.5, exhaustively: 7.5,
481
+ exhilarate: 10, exhilarating: 10, exhilaratingly: 10, exhilaration: 10,
482
+ exhort: 0, exile: 2.5, exonerate: 10, exorbitant: 0,
483
+ exorbitantance: 0, exorbitantly: 0, expansive: 10, expedient: 2.5,
484
+ expediencies: 2.5, expel: 2.5, expensive: 2.5, experienced: 7.5,
485
+ expert: 7.5, expertly: 10, expire: 0, explicit: 10, explicitly: 10,
486
+ explode: 2.5, exploit: 0, exploitation: 0, expose: 2.5, exposed: 2.5,
487
+ explosive: 2.5, expressive: 7.5, expropriate: 2.5, expropriation: 2.5,
488
+ expulse: 2.5, expunge: 0, exquisite: 10, exquisitely: 10,
489
+ exterminate: 0, extermination: 0, extinguish: 2.5, extol: 10,
490
+ extoll: 10, extort: 2.5, extortion: 0, extraneous: 2.5,
491
+ extraordinarily: 10, extraordinary: 10, extravagance: 0,
492
+ extravagant: 0, extravagantly: 0, extreme: 0, extremely: 0,
493
+ extremism: 2.5, extremist: 2.5, extremists: 2.5, exuberance: 10,
494
+ exuberant: 10, exuberantly: 10, exult: 10, exultation: 10,
495
+ exultingly: 10, fabricate: 2.5, fabrication: 0, fabulous: 10,
496
+ fabulously: 10, facetious: 0, facetiously: 0, facilitate: 7.5,
497
+ fading: 2.5, fail: 2.5, failing: 0, failure: 2.5, failures: 2.5,
498
+ faint: 2.5, fainthearted: 0, fair: 7.5, fairly: 7.5, fairness: 7.5,
499
+ faith: 10, faithful: 10, faithfully: 10, faithfulness: 10,
500
+ faithless: 0, fake: 0, fall: 2.5, fallacies: 0, fallacious: 0,
501
+ fallaciously: 0, fallaciousness: 0, fallacy: 0, fallout: 0,
502
+ FALSE: 0, falsehood: 0, falsely: 0, falsify: 0, falter: 0,
503
+ famed: 10, fame: 10, famine: 0, famished: 0, famous: 7.5,
504
+ famously: 10, fanatic: 0, fanatical: 0, fanatically: 0,
505
+ fanaticism: 0, fanatics: 0, fanciful: 0, fancy: 10, fanfare: 10,
506
+ fantastic: 10, fantastically: 10, fantasy: 10, farfetched: 0,
507
+ farce: 0, farcical: 0, farcicalyetprovocative: 0, farcically: 0,
508
+ farsighted: 7.5, fascinate: 10, fascinating: 10, fascinatingly: 10,
509
+ fascination: 10, fascism: 0, fascist: 0, fashionable: 10,
510
+ fashionably: 10, fastgrowing: 7.5, fastpaced: 7.5, fastestgrowing: 7.5,
511
+ fastidious: 0, fastidiously: 0, fastuous: 0, fat: 2.5, fatal: 2.5,
512
+ fatalistic: 0, fatalistically: 0, fatally: 2.5, fateful: 0,
513
+ fatefully: 0, fathom: 7.5, fathomless: 0, fatigue: 2.5, fatty: 2.5,
514
+ fatuity: 0, fatuous: 0, fatuously: 0, fault: 0, faulty: 2.5,
515
+ favor: 10, favorable: 10, favored: 7.5, favorite: 10, fawn: 0,
516
+ fawningly: 0, favour: 10, faze: 2.5, fear: 0, fearful: 0,
517
+ fearfully: 0, fearless: 10, fearlessly: 10, fears: 0, fearsome: 0,
518
+ feasible: 7.5, feasibly: 7.5, feat: 7.5, featly: 10, feckless: 0,
519
+ feeble: 2.5, feeblely: 2.5, feebleminded: 0, feign: 2.5, feint: 2.5,
520
+ feisty: 10, felicitate: 10, felicitous: 10, felicity: 10, fell: 0,
521
+ felon: 2.5, felonious: 2.5, ferocious: 0, ferociously: 0,
522
+ ferocity: 0, fertile: 7.5, fervent: 10, fervently: 10, fervid: 10,
523
+ fervidly: 10, fervor: 10, feverish: 2.5, festive: 10, fetid: 0,
524
+ fever: 2.5, fiasco: 0, fiat: 2.5, fib: 0, fibber: 0, fickle: 0,
525
+ fiction: 2.5, fictional: 2.5, fictitious: 0, fidelity: 10, fidget: 0,
526
+ fidgety: 0, fiend: 0, fiendish: 0, fierce: 2.5, fiery: 7.5,
527
+ fight: 2.5, figurehead: 2.5, filth: 0, filthy: 0, finagle: 2.5,
528
+ fine: 2.5, finely: 10, firstclass: 7.5, firstrate: 10, fissures: 2.5,
529
+ fist: 2.5, fit: 10, fitting: 10, flabbergast: 0, flabbergasted: 0,
530
+ flagging: 2.5, flagrant: 0, flagrantly: 0, flair: 7.5, flak: 0,
531
+ flake: 2.5, flakey: 2.5, flaky: 2.5, flame: 7.5, flash: 2.5, flashy: 2.5,
532
+ flatout: 0, flatter: 10, flattering: 10, flatteringly: 10, flaunt: 0,
533
+ flaw: 2.5, flaws: 2.5, flawed: 2.5, flawless: 10, flawlessly: 10,
534
+ fleer: 0, fleeting: 2.5, flexible: 10, flighty: 0, flimflam: 0,
535
+ flimsy: 2.5, flirt: 0, flirty: 0, floored: 0, flounder: 0,
536
+ floundering: 0, flourish: 10, flourishing: 10, flout: 0, fluent: 7.5,
537
+ fluster: 2.5, foe: 0, fond: 10, fondly: 10, fondness: 10, fool: 0,
538
+ foolhardy: 0, foolish: 0, foolishly: 0, foolishness: 0,
539
+ foolproof: 7.5, forbid: 0, forbidden: 0, forbidding: 2.5, force: 2.5,
540
+ forceful: 2.5, foreboding: 0, forebodingly: 0, foremost: 10,
541
+ foresight: 10, forfeit: 2.5, forgave: 10, forged: 2.5, forget: 0,
542
+ forgetful: 0, forgetfully: 0, forgetfulness: 0, forgive: 10,
543
+ forgiven: 10, forgiveness: 10, forgiving: 10, forgivingly: 10,
544
+ forlorn: 0, forlornly: 0, formidable: 0, forsake: 0,
545
+ forsaken: 0, forswear: 0, fortitude: 10, fortuitous: 10,
546
+ fortuitously: 10, fortunate: 10, fortunately: 10, fortune: 10, foul: 2.5,
547
+ foully: 0, foulness: 0, fractious: 0, fractiously: 0,
548
+ fracture: 2.5, fragile: 2.5, fragmented: 2.5, fragrant: 10, frail: 2.5,
549
+ frank: 10, frantic: 0, frantically: 0, franticly: 0,
550
+ fraternize: 0, fraud: 2.5, fraudulent: 2.5, fraught: 0, freak: 0,
551
+ freakish: 0, freakishly: 0, frazzle: 0, frazzled: 0, free: 7.5,
552
+ freedom: 7.5, freedoms: 7.5, frenetic: 0, frenetically: 0,
553
+ frenzied: 0, frenzy: 0, fresh: 7.5, fret: 0, fretful: 0,
554
+ friction: 0, frictions: 0, friend: 7.5, friendliness: 10,
555
+ friendly: 10, friends: 7.5, friendship: 7.5, friggin: 0, fright: 0,
556
+ frighten: 0, frightening: 0, frighteningly: 0, frightful: 0,
557
+ frightfully: 0, frigid: 2.5, frivolous: 0, frolic: 10, frown: 0,fuck: 10, fucking: 10,
558
+ frozen: 2.5, fruitful: 7.5, fruitless: 0, fruitlessly: 0, fumble: 2.5,
559
+ fun: 10, frustrate: 0, frustrated: 0, frustrating: 0,
560
+ frustratingly: 0, frustration: 0, fudge: 0, fugitive: 2.5,
561
+ fulfillment: 7.5, fullblown: 2.5, fullfledged: 7.5, fulminate: 0,
562
+ fume: 0, functional: 7.5, fundamentalism: 2.5, funny: 10, furious: 0,
563
+ furiously: 0, furor: 0, fury: 0, fuss: 0, fustigate: 0,
564
+ fussy: 0, fusty: 0, futile: 0, futilely: 0, futility: 0,
565
+ fuzzy: 2.5, gabble: 0, gaff: 0, gaffe: 0, gaiety: 10, gaily: 10,
566
+ gain: 7.5, gainful: 10, gainfully: 10, gainsay: 0, gainsayer: 0,
567
+ gaga: 0, gaggle: 0, gall: 0, gallant: 10, gallantly: 10,
568
+ galling: 0, gallingly: 0, galore: 10, gamble: 2.5, game: 2.5,
569
+ gape: 0, garbage: 2.5, garish: 0, gasp: 0, gauche: 0,
570
+ gaudy: 0, gawk: 0, gawky: 0, geezer: 0, gem: 7.5, gems: 7.5,
571
+ generosity: 10, generous: 10, generously: 10, genial: 7.5, genius: 10,
572
+ genocide: 0, gentle: 7.5, genuine: 7.5, germane: 7.5, getrich: 0,
573
+ ghastly: 0, ghetto: 2.5, gibber: 0, gibberish: 0, gibe: 0,
574
+ giddy: 10, gifted: 10, glad: 10, gladden: 10, gladly: 10, gladness: 10,
575
+ glamorous: 10, glare: 0, glaring: 0, glaringly: 0, glee: 10,
576
+ gleeful: 10, gleefully: 10, glib: 0, glibly: 0, glimmer: 10,
577
+ glimmering: 10, glisten: 10, glistening: 10, glitch: 2.5, glitter: 10,
578
+ gloat: 0, gloatingly: 0, gloom: 0, gloomy: 0, glorify: 10,
579
+ glorious: 10, gloriously: 10, glory: 10, gloss: 0, glossy: 10,
580
+ glow: 10, glower: 0, glowing: 10, glowingly: 10, glum: 0, glut: 2.5,
581
+ gnawing: 2.5, goahead: 7.5, goad: 0, goading: 0, godawful: 0,
582
+ godgiven: 10, goddam: 0, goddamn: 0, godlike: 10, gold: 7.5,
583
+ golden: 7.5, good: 7.5, goodly: 7.5, goodness: 10, goodwill: 10, goof: 0,
584
+ gorgeous: 10, gorgeously: 10, gossip: 0, grace: 10, graceful: 10,
585
+ gracefully: 10, graceless: 0, gracelessly: 0, gracious: 10,
586
+ graciously: 10, graciousness: 10, graft: 2.5, grail: 7.5, grand: 7.5,
587
+ grandeur: 10, grandiose: 0, grapple: 2.5, grate: 0, grateful: 10,
588
+ gratefully: 10, gratification: 10, gratify: 10, gratifying: 10,
589
+ gratifyingly: 10, grating: 0, gratitude: 10, gratuitous: 0,
590
+ gratuitously: 0, grave: 0, gravely: 0, great: 10, greatest: 10,
591
+ greatness: 10, greed: 0, greedy: 0, greet: 10, grief: 0,
592
+ grievance: 0, grievances: 0, grieve: 0, grieving: 0,
593
+ grievous: 0, grievously: 0, grill: 2.5, grim: 0, grimace: 0,
594
+ grin: 10, grind: 0, gripe: 0, grisly: 0, grit: 10, gritty: 2.5,
595
+ groove: 7.5, gross: 2.5, grossly: 0, grotesque: 0, grouch: 0,
596
+ grouchy: 0, groundbreaking: 10, groundless: 0, grouse: 0,
597
+ growl: 0, grudge: 0, grudges: 0, grudging: 0, grudgingly: 0,
598
+ gruesome: 0, gruesomely: 0, gruff: 0, grumble: 0, guarantee: 7.5,
599
+ guardian: 7.5, guidance: 7.5, guile: 0, guilt: 0, guiltless: 10,
600
+ guilty: 2.5, guiltily: 0, gullible: 0, gush: 7.5, gumption: 10,
601
+ gusto: 10, gutsy: 10, haggard: 0, haggle: 0, hail: 10, halcyon: 10,
602
+ hale: 10, halfhearted: 0, halfheartedly: 0, hallowed: 10,
603
+ hallucinate: 0, hallucination: 0, hamper: 0, hamstring: 0,
604
+ hamstrung: 0, handicapped: 2.5, handily: 10, handsome: 10, handy: 10,
605
+ hanker: 10, hapless: 0, haphazard: 2.5, happily: 10, happiness: 10,
606
+ happy: 10, harangue: 0, harass: 2.5, harassment: 0, harboring: 2.5,
607
+ harbors: 2.5, hard: 2.5, hardhit: 2.5, hardline: 0, hardliner: 2.5,
608
+ hardworking: 7.5, hardball: 0, harden: 2.5, hardened: 2.5,
609
+ hardheaded: 0, hardhearted: 0, hardier: 10, hardliners: 2.5,
610
+ hardly: 0, hardship: 0, hardships: 0, hardy: 7.5, harm: 0,
611
+ harmful: 0, harmless: 10, harmonious: 10, harmoniously: 10,
612
+ harmonize: 10, harmony: 10, harms: 0, harpy: 0, harridan: 0,
613
+ harried: 0, harrow: 0, harsh: 0, harshly: 0, hassle: 0,
614
+ haste: 0, hasty: 2.5, hate: 0, hater: 0, hateful: 0,
615
+ hatefully: 0, hatefulness: 0, haughtily: 0, haughty: 0,
616
+ hatred: 0, haunt: 2.5, haunting: 0, haven: 10, havoc: 0,
617
+ hawkish: 0, hazard: 2.5, hazardous: 2.5, hazy: 2.5, headache: 2.5,
618
+ headaches: 2.5, headway: 7.5, heady: 10, heal: 7.5, healthful: 10,
619
+ healthy: 7.5, heart: 7.5, heartbreak: 0, heartbreaker: 0,
620
+ heartbreaking: 0, heartbreakingly: 0, hearten: 10, heartening: 10,
621
+ heartfelt: 10, heartily: 10, heartless: 0, heartrending: 0,
622
+ heartwarming: 10, heathen: 0, heaven: 7.5, heavenly: 10, heavily: 0,
623
+ heavyhanded: 0, heavyhearted: 0, heck: 0, heckle: 0, hectic: 2.5,
624
+ hedge: 0, hedonistic: 0, heedless: 0, hegemonism: 2.5,
625
+ hegemonistic: 0, hegemony: 2.5, heinous: 0, hell: 0, hellbent: 0,
626
+ hellion: 0, help: 7.5, helpful: 7.5, helpless: 2.5, helplessly: 2.5,
627
+ helplessness: 2.5, herald: 10, heresy: 0, heretic: 0, heretical: 0,
628
+ hero: 10, heroic: 10, heroically: 10, heroine: 10, heroize: 10,
629
+ heros: 10, hesitant: 0, hideous: 0, hideously: 0, hideousness: 0,
630
+ highquality: 7.5, highlight: 10, hilarious: 10, hilariously: 10,
631
+ hilariousness: 10, hilarity: 10, hinder: 0, hindrance: 0,
632
+ historic: 7.5, hoard: 0, hoax: 0, hobble: 2.5, hole: 2.5,
633
+ hollow: 0, holy: 7.5, homage: 10, honest: 7.5, honestly: 10,
634
+ honesty: 10, honeymoon: 7.5, honor: 10, honorable: 10, hoodwink: 0,
635
+ hope: 10, hopeful: 10, hopefully: 10, hopefulness: 10, hopeless: 0,
636
+ hopelessly: 0, hopelessness: 0, hopes: 10, horde: 2.5,
637
+ horrendous: 0, horrendously: 0, horrible: 0, horribly: 0,
638
+ horrid: 0, horrific: 0, horrifically: 0, horrify: 0,
639
+ horrifying: 0, horrifyingly: 0, horror: 0, horrors: 0,
640
+ hospitable: 10, hostage: 2.5, hostile: 2.5, hostilities: 2.5,
641
+ hostility: 0, hot: 7.5, hothead: 0, hotheaded: 0, hotbeds: 0,
642
+ hothouse: 2.5, hubris: 0, huckster: 0, hug: 10, humane: 10,
643
+ humanists: 7.5, humanity: 7.5, humankind: 10, humble: 10, humbling: 0,
644
+ humiliate: 0, humiliating: 0, humiliation: 0, humility: 10,
645
+ humor: 10, humorous: 10, humorously: 10, humour: 10, humourous: 10,
646
+ hunger: 0, hungry: 2.5, hurt: 2.5, hurtful: 2.5, hustler: 2.5,
647
+ hypocrisy: 0, hypocrite: 0, hypocrites: 0, hypocritical: 0,
648
+ hypocritically: 0, hysteria: 0, hysteric: 0, hysterical: 0,
649
+ hysterically: 0, hysterics: 0, icy: 2.5, ideal: 10, idealism: 7.5,
650
+ idealist: 7.5, idealize: 10, ideally: 10, idiocies: 0, idiocy: 0,
651
+ idiot: 0, idiotic: 0, idiotically: 0, idiots: 0, idle: 2.5,
652
+ idol: 10, idolize: 10, idolized: 10, idyllic: 10, ignoble: 0,
653
+ ignominious: 0, ignominiously: 0, ignominy: 0, ignore: 2.5,
654
+ ignorance: 0, ignorant: 0, ill: 2.5, illadvised: 0,
655
+ illconceived: 0, illfated: 0, illfavored: 0, illmannered: 0,
656
+ illnatured: 0, illsorted: 0, illtempered: 0, illtreated: 0,
657
+ illtreatment: 0, illusage: 0, illused: 0, illegal: 2.5,
658
+ illegally: 2.5, illegitimate: 2.5, illicit: 2.5, illiquid: 2.5,
659
+ illiterate: 2.5, illness: 2.5, illogic: 0, illogical: 0,
660
+ illogically: 0, illuminate: 10, illuminati: 10, illuminating: 10,
661
+ illumine: 10, illusion: 0, illusions: 0, illusory: 0,
662
+ illustrious: 10, imaginary: 0, imaginative: 10, imbalance: 0,
663
+ imbecile: 0, imbroglio: 0, immaculate: 10, immaculately: 10,
664
+ immaterial: 0, immature: 2.5, imminence: 0, imminent: 0,
665
+ imminently: 0, immobilized: 2.5, immoderate: 0, immoderately: 0,
666
+ immodest: 0, immoral: 0, immorality: 0, immorally: 0,
667
+ immovable: 0, impair: 0, impaired: 0, impartial: 7.5,
668
+ impartiality: 7.5, impartially: 7.5, impasse: 0, impassioned: 10,
669
+ impassive: 2.5, impatience: 0, impatient: 0, impatiently: 0,
670
+ impeach: 0, impeccable: 10, impeccably: 10, impede: 0,
671
+ impedance: 0, impediment: 0, impel: 10, impending: 0,
672
+ impenitent: 0, imperfect: 2.5, imperfectly: 2.5, imperial: 7.5,
673
+ imperialist: 0, imperil: 0, imperious: 0, imperiously: 0,
674
+ impermissible: 2.5, impersonal: 2.5, impertinent: 0, imperturbable: 10,
675
+ impervious: 10, impetuous: 0, impetuously: 0, impetus: 7.5,
676
+ impiety: 0, impinge: 0, impious: 0, implacable: 0,
677
+ implausible: 0, implausibly: 0, implicate: 2.5, implication: 2.5,
678
+ implode: 0, implore: 0, imploring: 0, imploringly: 0,
679
+ impolite: 0, impolitely: 0, impolitic: 0, importance: 7.5,
680
+ important: 7.5, importantly: 7.5, importunate: 0, importune: 0,
681
+ impose: 0, imposers: 0, imposing: 2.5, imposition: 0,
682
+ impossible: 2.5, impossiblity: 2.5, impossibly: 2.5, impotent: 0,
683
+ impoverish: 2.5, impoverished: 2.5, impractical: 0, imprecate: 0,
684
+ imprecise: 2.5, imprecisely: 2.5, imprecision: 2.5, impregnable: 10,
685
+ impress: 7.5, impression: 7.5, impressions: 7.5, impressive: 10,
686
+ impressively: 10, impressiveness: 10, imprison: 2.5, imprisonment: 2.5,
687
+ improbability: 0, improbable: 0, improbably: 0, improper: 0,
688
+ improperly: 0, impropriety: 0, improving: 7.5, improve: 7.5,
689
+ improved: 7.5, improvement: 7.5, improvise: 10, imprudence: 0,
690
+ imprudent: 0, impudence: 0, impudent: 0, impudently: 0,
691
+ impugn: 0, impulsive: 0, impulsively: 0, impunity: 2.5,
692
+ impure: 0, impurity: 0, inability: 2.5, inaccessible: 2.5,
693
+ inaccuracy: 2.5, inaccuracies: 2.5, inaccurate: 0, inaccurately: 0,
694
+ inaction: 2.5, inactive: 2.5, inadequacy: 2.5, inadequate: 2.5,
695
+ inadequately: 2.5, inadverent: 2.5, inadverently: 2.5, inadvisable: 2.5,
696
+ inadvisably: 2.5, inalienable: 7.5, inane: 0, inanely: 0,
697
+ inappropriate: 0, inappropriately: 0, inapt: 0, inaptitude: 0,
698
+ inarticulate: 0, inattentive: 0, incapable: 0, incapably: 0,
699
+ incautious: 0, incendiary: 0, incense: 2.5, incessant: 0,
700
+ incessantly: 0, incisive: 10, incisively: 10, incisiveness: 10,
701
+ incite: 2.5, incitement: 2.5, incivility: 0, inclement: 2.5,
702
+ inclination: 10, inclinations: 10, inclined: 10, inclusive: 7.5,
703
+ incognizant: 0, incoherence: 0, incoherent: 0, incoherently: 0,
704
+ incommensurate: 0, incomparable: 2.5, incomparably: 2.5,
705
+ incompatibility: 2.5, incompatible: 2.5, incompetence: 0,
706
+ incompetent: 0, incompetently: 0, incomplete: 2.5, incompliant: 2.5,
707
+ incomprehensible: 0, incomprehension: 0, inconceivable: 0,
708
+ inconceivably: 0, inconclusive: 2.5, incongruous: 0,
709
+ incongruously: 0, inconsequent: 0, inconsequently: 0,
710
+ inconsequential: 0, inconsequentially: 0, inconsiderate: 0,
711
+ inconsiderately: 0, inconsistence: 0, inconsistencies: 0,
712
+ inconsistency: 2.5, inconsistent: 2.5, inconsolable: 0,
713
+ inconsolably: 0, inconstant: 0, incontestable: 10,
714
+ incontrovertible: 10, inconvenience: 0, inconvenient: 0,
715
+ inconveniently: 0, incorrect: 2.5, incorrectly: 0, incorrigible: 0,
716
+ incorrigibly: 0, incorruptible: 10, incredible: 10, incredibly: 10,
717
+ incredulous: 0, incredulously: 0, inculcate: 0, indebted: 7.5,
718
+ indecency: 0, indecent: 0, indecently: 0, indecision: 0,
719
+ indecisive: 0, indecisively: 0, indecorum: 0, indefatigable: 10,
720
+ indefensible: 0, indefinite: 2.5, indefinitely: 2.5, indelible: 10,
721
+ indelibly: 10, indelicate: 0, independence: 7.5, independent: 7.5,
722
+ indescribable: 10, indescribably: 10, indestructible: 10,
723
+ indeterminable: 2.5, indeterminably: 2.5, indeterminate: 2.5,
724
+ indifference: 0, indifferent: 0, indigent: 2.5, indignant: 0,
725
+ indignantly: 0, indignation: 0, indignity: 0, indiscernible: 2.5,
726
+ indiscreet: 0, indiscreetly: 0, indiscretion: 0,
727
+ indiscriminate: 0, indiscriminating: 0, indiscriminately: 0,
728
+ indispensable: 10, indispensability: 10, indisposed: 0,
729
+ indisputable: 10, indistinct: 2.5, indistinctive: 2.5, individuality: 7.5,
730
+ indoctrinate: 0, indoctrination: 0, indolent: 0, indomitable: 10,
731
+ indomitably: 10, indubitable: 10, indubitably: 10, indulge: 0,
732
+ indulgence: 10, indulgent: 10, industrious: 7.5, ineffective: 2.5,
733
+ ineffectively: 2.5, ineffectiveness: 2.5, ineffectual: 2.5,
734
+ ineffectually: 2.5, ineffectualness: 2.5, inefficacious: 0,
735
+ inefficacy: 0, inefficiency: 2.5, inefficient: 2.5, inefficiently: 2.5,
736
+ ineligible: 2.5, inelegance: 0, inelegant: 0, ineloquent: 0,
737
+ ineloquently: 0, inept: 0, ineptitude: 0, ineptly: 0,
738
+ inequalities: 2.5, inequality: 0, inequitable: 0, inequitably: 0,
739
+ inequities: 0, inertia: 2.5, inescapable: 0, inescapably: 0,
740
+ inessential: 0, inestimable: 10, inestimably: 10, inevitable: 0,
741
+ inevitably: 0, inexact: 2.5, inexcusable: 0, inexcusably: 0,
742
+ inexorable: 0, inexorably: 0, inexpensive: 7.5, inexperience: 2.5,
743
+ inexperienced: 2.5, inexpert: 2.5, inexpertly: 2.5, inexpiable: 0,
744
+ inexplainable: 0, inexplicable: 0, inextricable: 0,
745
+ inextricably: 0, infallible: 10, infallibly: 10, infallibility: 10,
746
+ infamous: 0, infamously: 0, infamy: 0, infatuated: 0,
747
+ infected: 2.5, inferior: 0, inferiority: 0, infernal: 0,
748
+ infest: 2.5, infested: 2.5, infidel: 0, infidels: 0,
749
+ infiltrator: 2.5, infiltrators: 2.5, infirm: 0, inflame: 0,
750
+ inflammatory: 0, inflated: 2.5, inflationary: 2.5, inflexible: 0,
751
+ inflict: 0, influential: 7.5, informative: 7.5, infraction: 2.5,
752
+ infringe: 0, infringement: 0, infringements: 0, infuriate: 0,
753
+ infuriated: 0, infuriating: 0, infuriatingly: 0, ingenious: 10,
754
+ ingeniously: 10, ingenuity: 10, ingenuous: 10, ingenuously: 10,
755
+ inglorious: 0, ingrate: 0, ingratiate: 10, ingratiating: 10,
756
+ ingratiatingly: 10, ingratitude: 0, inhibit: 2.5, inhibition: 2.5,
757
+ inhospitable: 0, inhospitality: 0, inhuman: 0, inhumane: 0,
758
+ inhumanity: 0, inimical: 0, inimically: 0, iniquitous: 0,
759
+ iniquity: 0, injudicious: 0, injure: 2.5, injurious: 2.5,
760
+ injury: 2.5, injustice: 0, injustices: 0, innocence: 7.5,
761
+ innocent: 7.5, innocently: 7.5, innocuous: 10, innovation: 7.5,
762
+ innovative: 7.5, innuendo: 0, inoffensive: 10, inopportune: 0,
763
+ inordinate: 0, inordinately: 0, inquisitive: 10, insane: 0,
764
+ insanely: 0, insanity: 0, insatiable: 0, insecure: 2.5,
765
+ insecurity: 0, insensible: 2.5, insensitive: 0, insensitively: 0,
766
+ insensitivity: 0, insidious: 0, insidiously: 0, insight: 10,
767
+ insightful: 10, insightfully: 10, insignificance: 2.5, insignificant: 2.5,
768
+ insignificantly: 2.5, insincere: 0, insincerely: 0, insincerity: 0,
769
+ insinuate: 0, insinuating: 0, insinuation: 0, insist: 10,
770
+ insistence: 7.5, insistent: 10, insistently: 10, insociable: 0,
771
+ isolation: 2.5, insolence: 0, insolent: 0, insolently: 0,
772
+ insolvent: 2.5, insouciance: 0, inspiration: 10, inspirational: 10,
773
+ inspire: 10, inspiring: 10, instability: 2.5, instable: 2.5,
774
+ instigate: 0, instigator: 0, instigators: 0, instructive: 7.5,
775
+ instrumental: 7.5, insubordinate: 2.5, insubstantial: 0,
776
+ insubstantially: 0, insufferable: 0, insufferably: 0,
777
+ insufficiency: 2.5, insufficient: 2.5, insufficiently: 2.5, insular: 2.5,
778
+ insult: 0, insulted: 0, insulting: 0, insultingly: 0,
779
+ insupportable: 0, insupportably: 0, insurmountable: 2.5,
780
+ insurmountably: 2.5, insurrection: 2.5, intact: 7.5, integral: 7.5,
781
+ integrity: 10, intelligent: 10, intelligence: 7.5, intelligible: 10,
782
+ intercede: 7.5, interest: 7.5, interested: 7.5, interesting: 10,
783
+ interests: 7.5, interfere: 2.5, interference: 2.5, intermittent: 2.5,
784
+ interrupt: 2.5, interruption: 2.5, intimacy: 10, intimate: 7.5,
785
+ intimidate: 2.5, intimidating: 0, intimidatingly: 0,
786
+ intimidation: 2.5, intolerable: 0, intolerablely: 0, intolerance: 0,
787
+ intolerant: 0, intoxicate: 2.5, intractable: 2.5, intransigence: 0,
788
+ intransigent: 0, intricate: 7.5, intrigue: 10, intriguing: 10,
789
+ intriguingly: 10, intrude: 0, intrusion: 2.5, intrusive: 0,
790
+ intuitive: 10, inundate: 0, inundated: 0, invader: 2.5, invalid: 0,
791
+ invalidate: 0, invalidity: 0, invaluable: 10, invaluablely: 10,
792
+ invasive: 2.5, invective: 0, inveigle: 0, inventive: 7.5,
793
+ invidious: 0, invidiously: 0, invidiousness: 0, invigorate: 7.5,
794
+ invigorating: 10, invincibility: 10, invincible: 10, inviolable: 10,
795
+ inviolate: 10, invulnerable: 10, involuntarily: 2.5, involuntary: 2.5,
796
+ irate: 0, irately: 0, ire: 0, irk: 0, irksome: 0, ironic: 0,
797
+ ironies: 0, irony: 0, irrational: 0, irrationality: 0,
798
+ irrationally: 0, irreconcilable: 0, irredeemable: 0,
799
+ irredeemably: 0, irreformable: 0, irrefutable: 10, irrefutably: 10,
800
+ irregular: 2.5, irregularity: 2.5, irrelevance: 0, irrelevant: 0,
801
+ irreparable: 0, irreplacible: 0, irrepressible: 0,
802
+ irreproachable: 10, irresistible: 10, irresistibly: 10, irresolute: 0,
803
+ irresolvable: 2.5, irresponsible: 0, irresponsibly: 0,
804
+ irretrievable: 2.5, irreverence: 0, irreverent: 0, irreverently: 0,
805
+ irreversible: 0, irritable: 0, irritably: 0, irritant: 2.5,
806
+ irritate: 0, irritated: 0, irritating: 0, irritation: 0,
807
+ isolate: 2.5, isolated: 2.5, itch: 0, jabber: 0, jaded: 0,
808
+ jam: 2.5, jar: 2.5, jaundiced: 0, jauntily: 10, jaunty: 10,
809
+ jealous: 0, jealously: 0, jealousness: 0, jealousy: 0, jeer: 0,
810
+ jeering: 0, jeeringly: 0, jeers: 0, jeopardize: 0, jeopardy: 0,
811
+ jerk: 0, jest: 10, jittery: 0, jobless: 2.5, joke: 10, joker: 0,
812
+ jollify: 7.5, jolly: 10, jolt: 2.5, jovial: 10, joy: 10, joyful: 10,
813
+ joyfully: 10, joyless: 10, joyous: 10, joyously: 10, jubilant: 10,
814
+ jubilantly: 10, jubilate: 10, jubilation: 10, judicious: 10, jumpy: 2.5,
815
+ junk: 2.5, junky: 2.5, just: 7.5, justice: 7.5, justifiable: 10,
816
+ justifiably: 10, justification: 10, justify: 10, justly: 10,
817
+ juvenile: 2.5, kaput: 0, keen: 0, keenly: 10, keenness: 10,
818
+ kemp: 10, kick: 0, kid: 10, kill: 2.5, killer: 2.5, killjoy: 0,
819
+ kind: 10, kindly: 10, kindliness: 10, kindness: 10, kingmaker: 10,
820
+ kiss: 7.5, knave: 0, knife: 2.5, knock: 2.5, knowledgeable: 10,
821
+ kook: 0, kooky: 0, lack: 0, lackadaisical: 0, lackey: 0,
822
+ lackeys: 0, lacking: 0, lackluster: 0, laconic: 0, lag: 2.5,
823
+ lambast: 0, lambaste: 0, lame: 2.5, lameduck: 0, lament: 0,
824
+ lamentable: 0, lamentably: 0, languid: 0, languish: 0,
825
+ lanky: 2.5, languor: 0, languorous: 0, languorously: 0, lapse: 2.5,
826
+ large: 7.5, lark: 10, lascivious: 0, lastditch: 0, laud: 10,
827
+ laudable: 10, laudably: 10, laugh: 0, laughable: 0, laughably: 0,
828
+ laughingstock: 0, laughter: 0, lavish: 10, lavishly: 10,
829
+ lawabiding: 10, lawbreaker: 0, lawbreaking: 0, lawful: 7.5,
830
+ lawfully: 7.5, lawless: 0, lawlessness: 0, lax: 0, lazy: 0,
831
+ leading: 7.5, leak: 2.5, leakage: 2.5, leaky: 2.5, lean: 7.5,
832
+ learning: 7.5, learned: 7.5, least: 2.5, lech: 0, lecher: 0,
833
+ lecherous: 0, lechery: 0, lecture: 2.5, leech: 0, leer: 0,
834
+ leery: 0, leftleaning: 0, legendary: 7.5, legitimacy: 7.5,
835
+ legitimate: 7.5, legitimately: 7.5, lenient: 7.5, leniently: 7.5, less: 2.5,
836
+ lessdeveloped: 2.5, lessexpensive: 7.5, lessen: 2.5, lesser: 2.5,
837
+ lesserknown: 2.5, letch: 0, lethal: 2.5, lethargic: 2.5, lethargy: 2.5,
838
+ leverage: 7.5, levity: 10, lewd: 0, lewdly: 0, lewdness: 0,
839
+ liable: 2.5, liability: 0, liar: 0, liars: 0, liberal: 7.5,
840
+ liberation: 7.5, liberalism: 7.5, liberally: 7.5, liberate: 10, liberty: 10,
841
+ licentious: 0, licentiously: 0, licentiousness: 0, lie: 2.5,
842
+ lier: 0, lies: 0, lifethreatening: 2.5, lifeblood: 10, lifeless: 2.5,
843
+ lifelong: 7.5, light: 7.5, lighthearted: 10, lighten: 7.5, likable: 10,
844
+ like: 10, liking: 10, limit: 2.5, limitation: 2.5, limited: 2.5,
845
+ limp: 0, lionhearted: 10, listless: 0, literate: 7.5, litigious: 0,
846
+ little: 0, littleknown: 0, live: 7.5, lively: 10, livid: 0,
847
+ lividly: 0, loath: 0, loathe: 0, loathing: 0, loathly: 0,
848
+ loathsome: 0, loathsomely: 0, lofty: 10, logical: 7.5, lone: 0,
849
+ loneliness: 0, lonely: 0, lonesome: 0, long: 0, longing: 0,
850
+ longingly: 0, loophole: 0, loopholes: 0, loot: 0, lorn: 0,
851
+ losing: 0, lose: 2.5, loser: 2.5, loss: 2.5, lost: 2.5, lousy: 0,
852
+ lovable: 10, lovably: 10, love: 10, loveless: 0, loveliness: 10,
853
+ lovelorn: 0, lover: 10, lovely: 10, low: 2.5, lowcost: 7.5,
854
+ lowrated: 0, lowrisk: 7.5, lowerpriced: 7.5, lowly: 0, loyal: 7.5,
855
+ loyalty: 10, lucid: 10, lucidly: 10, luck: 10, luckier: 10,
856
+ luckiest: 10, luckily: 10, luckiness: 10, lucky: 10, lucrative: 7.5,
857
+ ludicrous: 0, ludicrously: 0, lugubrious: 0, lukewarm: 0,
858
+ lull: 2.5, luminous: 7.5, lunatic: 0, lunaticism: 0, lurch: 0,
859
+ lure: 0, lurid: 0, lurk: 0, lurking: 0, lush: 10, lust: 0,
860
+ luster: 10, lustrous: 10, luxuriant: 10, luxuriate: 7.5, luxurious: 10,
861
+ luxuriously: 10, luxury: 10, lying: 0, lyrical: 10, macabre: 0,
862
+ mad: 0, madden: 0, maddening: 0, maddeningly: 0, madder: 0,
863
+ madly: 0, madman: 0, madness: 0, magic: 10, magical: 10,
864
+ magnanimous: 10, magnanimously: 10, magnetic: 7.5, magnificence: 10,
865
+ magnificent: 10, magnificently: 10, magnify: 7.5, majestic: 10,
866
+ majesty: 10, maladjusted: 0, maladjustment: 0, malady: 2.5,
867
+ malaise: 2.5, malcontent: 0, malcontented: 0, maledict: 0,
868
+ malevolence: 0, malevolent: 0, malevolently: 0, malice: 0,
869
+ malicious: 0, maliciously: 0, maliciousness: 0, malign: 0,
870
+ malignant: 2.5, malodorous: 0, maltreatment: 0, manageable: 7.5,
871
+ maneuver: 2.5, mangle: 0, mania: 0, maniac: 0, maniacal: 0,
872
+ manic: 0, manifest: 10, manipulate: 2.5, manipulation: 2.5,
873
+ manipulative: 0, manipulators: 0, manly: 10, mannerly: 10, mar: 0,
874
+ marginal: 2.5, marginally: 2.5, martyrdom: 0, martyrdomseeking: 0,
875
+ marvel: 10, marvellous: 10, marvelous: 10, marvelously: 10,
876
+ marvelousness: 10, marvels: 10, massacre: 0, massacres: 0,
877
+ master: 10, masterful: 10, masterfully: 10, masterpiece: 10,
878
+ masterpieces: 10, masters: 10, mastery: 10, matchless: 10, mature: 7.5,
879
+ maturely: 7.5, maturity: 7.5, maverick: 0, mawkish: 0, mawkishly: 0,
880
+ mawkishness: 0, maxidevaluation: 0, maximize: 10, meager: 0,
881
+ mean: 0, meaningful: 10, meaningless: 0, meanness: 0, meddle: 0,
882
+ meddlesome: 0, mediocre: 0, mediocrity: 0, meek: 10,
883
+ melancholy: 0, mellow: 10, melodramatic: 0, melodramatically: 0,
884
+ memorable: 10, memorialize: 10, menace: 0, menacing: 0,
885
+ menacingly: 0, mend: 7.5, mendacious: 0, mendacity: 0, menial: 2.5,
886
+ mentor: 7.5, merciful: 10, mercifully: 10, merciless: 0,
887
+ mercilessly: 0, mercy: 10, mere: 0, merely: 0, merit: 10,
888
+ meritorious: 10, merrily: 10, merriment: 10, merriness: 10, merry: 10,
889
+ mesmerize: 10, mesmerizing: 10, mesmerizingly: 10, mess: 0, messy: 2.5,
890
+ meticulous: 7.5, meticulously: 7.5, midget: 0, miff: 2.5, might: 10,
891
+ mightily: 10, mighty: 10, mild: 7.5, militancy: 0, mind: 2.5,
892
+ mindful: 10, mindless: 0, mindlessly: 0, minister: 7.5, miracle: 10,
893
+ miracles: 10, miraculous: 10, miraculously: 10, miraculousness: 10,
894
+ mirage: 0, mire: 0, mirth: 10, misapprehend: 2.5, misbecoming: 0,
895
+ misbecome: 0, misbegotten: 0, misbehave: 0, misbehavior: 0,
896
+ miscalculate: 2.5, miscalculation: 2.5, mischief: 0, mischievous: 0,
897
+ mischievously: 0, misconception: 0, misconceptions: 0,
898
+ miscreant: 0, miscreants: 0, misdirection: 0, miser: 0,
899
+ miserly: 0, miserable: 0, miserableness: 0, miserably: 0,
900
+ miseries: 0, misery: 0, misfit: 0, misfortune: 0, misgiving: 0,
901
+ misgivings: 0, misguidance: 0, misguide: 0, misguided: 0,
902
+ mishandle: 0, mishap: 0, misinform: 0, misinformed: 0,
903
+ misinterpret: 0, misjudge: 0, misjudgment: 0, mislead: 0,
904
+ misleading: 0, misleadingly: 0, mislike: 0, mismanage: 0,
905
+ misread: 0, misreading: 0, misrepresent: 0, misrepresentation: 0,
906
+ miss: 2.5, misstatement: 0, mistake: 0, mistaken: 0,
907
+ mistakenly: 0, mistakes: 0, mistrust: 0, mistrustful: 0,
908
+ mistrustfully: 0, misunderstand: 0, misunderstood: 0,
909
+ misunderstanding: 0, misunderstandings: 0, misuse: 0, moan: 0,
910
+ mock: 0, mockeries: 0, mockery: 0, mocking: 0, mockingly: 0,
911
+ moderate: 10, moderation: 10, modern: 7.5, modest: 7.5, modesty: 7.5,
912
+ molest: 0, molestation: 0, mollify: 10, momentous: 10,
913
+ monotonous: 0, monotony: 0, monster: 0, monstrosities: 0,
914
+ monstrosity: 0, monstrous: 0, monstrously: 0, monumental: 10,
915
+ monumentally: 10, moody: 0, moon: 2.5, moot: 2.5, mope: 2.5,
916
+ moral: 10, morality: 10, moralize: 10, morbid: 0, morbidly: 0,
917
+ mordant: 0, mordantly: 0, moribund: 0, mortification: 0,
918
+ mortified: 0, mortify: 0, mortifying: 0, motionless: 2.5,
919
+ motivate: 10, motivated: 10, motivation: 10, motley: 0, mourn: 0,
920
+ mourner: 0, mournful: 0, mournfully: 0, moving: 10, muddle: 2.5,
921
+ muddy: 2.5, mudslinger: 0, mudslinging: 0, mulish: 0,
922
+ multipolarization: 0, mundane: 0, murder: 2.5, murderous: 2.5,
923
+ murderously: 2.5, murky: 2.5, muscleflexing: 0, myriad: 7.5,
924
+ mysterious: 0, mysteriously: 0, mystery: 0, mystify: 2.5,
925
+ mistified: 2.5, myth: 0, nag: 0, nagging: 0, naive: 0,
926
+ naively: 0, narrow: 2.5, narrower: 0, nastily: 0, nastiness: 0,
927
+ nasty: 0, nationalism: 0, natural: 7.5, naturally: 7.5, naughty: 0,
928
+ nauseate: 2.5, nauseating: 0, nauseatingly: 0, navigable: 7.5,
929
+ neat: 7.5, neatly: 7.5, nebulous: 0, nebulously: 0, necessarily: 7.5,
930
+ necessary: 7.5, need: 2.5, needless: 2.5, needlessly: 2.5, needy: 2.5,
931
+ nefarious: 0, nefariously: 0, negate: 2.5, negation: 2.5,
932
+ negative: 2.5, neglect: 0, neglected: 0, negligent: 0,
933
+ negligence: 0, negligible: 2.5, nemesis: 0, nettle: 2.5,
934
+ nettlesome: 0, nervous: 0, nervously: 0, nervousness: 0,
935
+ neurotic: 0, neurotically: 0, neutralize: 7.5, nice: 10, nicely: 10,
936
+ nifty: 10, niggle: 2.5, nightmare: 0, nightmarish: 0,
937
+ nightmarishly: 0, nimble: 10, nix: 0, noble: 10, nobly: 10,
938
+ noisy: 2.5, nonconfidence: 0, nonviolence: 7.5, nonviolent: 7.5,
939
+ nonexistent: 2.5, nonsense: 0, normal: 7.5, nosey: 0, notable: 10,
940
+ notably: 10, noteworthy: 10, noticeable: 7.5, notorious: 0,
941
+ notoriously: 0, novel: 10, nourish: 7.5, nourishing: 7.5,
942
+ nourishment: 7.5, nuisance: 0, numb: 2.5, nurture: 10, nurturing: 10,
943
+ oasis: 10, obedience: 10, obedient: 10, obediently: 10, obey: 10,
944
+ obese: 0, object: 0, objection: 0, objectionable: 0,
945
+ objections: 0, objective: 7.5, objectively: 7.5, obliged: 10,
946
+ oblique: 2.5, obliterate: 0, obliterated: 0, oblivious: 0,
947
+ obnoxious: 0, obnoxiously: 0, obscene: 0, obscenely: 0,
948
+ obscenity: 0, obscure: 0, obscurity: 0, obsess: 0,
949
+ obsession: 0, obsessions: 0, obsessive: 0, obsessively: 0,
950
+ obsessiveness: 0, obsolete: 2.5, obstacle: 0, obstinate: 0,
951
+ obstinately: 0, obstruct: 2.5, obstruction: 2.5, obtrusive: 0,
952
+ obtuse: 0, obviate: 10, obviously: 0, odd: 2.5, odder: 0,
953
+ oddest: 0, oddities: 0, oddity: 0, oddly: 0, offbeat: 10,
954
+ offence: 2.5, offend: 0, offending: 0, offenses: 0, offensive: 2.5,
955
+ offensively: 0, offensiveness: 0, officious: 0, offset: 7.5,
956
+ okay: 10, ominous: 0, ominously: 0, omission: 2.5, omit: 2.5,
957
+ oneside: 0, onesided: 0, onerous: 0, onerously: 0,
958
+ onslaught: 2.5, onward: 7.5, open: 7.5, openly: 7.5, openness: 7.5,
959
+ opinionated: 0, opponent: 0, opportune: 10, opportunity: 10,
960
+ opportunistic: 2.5, oppose: 0, opposition: 0, oppositions: 0,
961
+ oppress: 0, oppression: 0, oppressive: 0, oppressively: 0,
962
+ oppressiveness: 0, oppressors: 0, optimal: 10, optimism: 10,
963
+ optimistic: 7.5, opulent: 10, ordeal: 0, orderly: 7.5, original: 7.5,
964
+ originality: 7.5, orphan: 2.5, ostracize: 0, outbreak: 2.5,
965
+ outburst: 0, outbursts: 0, outcast: 0, outcry: 0, outdated: 2.5,
966
+ outdo: 10, outgoing: 7.5, outlaw: 0, outmoded: 2.5, outrage: 0,
967
+ outraged: 0, outrageous: 0, outrageously: 0, outrageousness: 0,
968
+ outrages: 0, outshine: 10, outsider: 2.5, outsmart: 10,
969
+ outstanding: 10, outstandingly: 10, outstrip: 10, outwit: 10,
970
+ ovation: 10, overacted: 0, overvaluation: 2.5, overachiever: 10,
971
+ overact: 0, overawe: 2.5, overbalance: 2.5, overbalanced: 2.5,
972
+ overbearing: 0, overbearingly: 0, overblown: 0, overcome: 0,
973
+ overdo: 0, overdone: 0, overdue: 0, overemphasize: 0,
974
+ overjoyed: 10, overkill: 0, overlook: 0, overplay: 0,
975
+ overpower: 2.5, overreach: 2.5, overrun: 2.5, overshadow: 2.5,
976
+ oversight: 2.5, oversimplification: 2.5, oversimplified: 2.5,
977
+ oversimplify: 2.5, oversized: 2.5, overstate: 0, overstatement: 0,
978
+ overstatements: 0, overtaxed: 2.5, overthrow: 2.5, overturn: 2.5,
979
+ overture: 10, overwhelm: 2.5, overwhelming: 0, overwhelmingly: 0,
980
+ overworked: 0, overzealous: 0, overzealously: 0, pacifist: 10,
981
+ pacifists: 10, pain: 2.5, painful: 2.5, painfully: 2.5, painless: 7.5,
982
+ painlessly: 7.5, pains: 0, painstaking: 10, painstakingly: 10,
983
+ palatable: 10, palatial: 10, pale: 2.5, palliate: 10, paltry: 0,
984
+ pamper: 7.5, pan: 2.5, pandemonium: 0, panic: 0, panicky: 0,
985
+ paradise: 10, paradoxical: 0, paradoxically: 0, paralize: 2.5,
986
+ paralyzed: 2.5, paramount: 10, paranoia: 0, paranoid: 0,
987
+ parasite: 2.5, pardon: 10, pariah: 0, parody: 0, partiality: 0,
988
+ partisan: 0, partisans: 0, passe: 0, passion: 10, passionate: 10,
989
+ passionately: 10, passive: 0, passiveness: 0, pathetic: 0,
990
+ pathetically: 0, patience: 10, patient: 7.5, patiently: 10, patriot: 10,
991
+ patriotic: 10, patronize: 0, paucity: 0, pauper: 0, paupers: 0,
992
+ payback: 0, peace: 7.5, peaceable: 10, peaceful: 7.5, peacefully: 7.5,
993
+ peacekeepers: 7.5, peculiar: 0, peculiarly: 0, pedantic: 0,
994
+ pedestrian: 2.5, peerless: 10, peeve: 0, peeved: 0, peevish: 0,
995
+ peevishly: 0, penalize: 0, penalty: 2.5, penetrating: 10,
996
+ penitent: 10, perceptive: 10, perfect: 10, perfection: 10, perfectly: 10,
997
+ perfidious: 0, perfidity: 0, perfunctory: 0, peril: 0,
998
+ perilous: 2.5, perilously: 2.5, peripheral: 2.5, perish: 0,
999
+ permissible: 7.5, pernicious: 0, perplex: 0, perplexed: 0,
1000
+ perplexing: 0, perplexity: 0, persecute: 0, persecution: 0,
1001
+ perseverance: 10, persevere: 10, persistent: 7.5, personages: 7.5,
1002
+ personality: 10, perspicuous: 10, perspicuously: 10, persuade: 10,
1003
+ persuasive: 10, persuasively: 10, pertinacious: 0, pertinaciously: 0,
1004
+ pertinacity: 0, pertinent: 7.5, perturb: 0, perturbed: 0,
1005
+ pervasive: 0, perverse: 0, perversely: 0, perversion: 0,
1006
+ perversity: 0, pervert: 0, perverted: 0, pessimism: 0,
1007
+ pessimistic: 0, pessimistically: 0, pest: 0, pestilent: 0,
1008
+ petrify: 0, petrified: 0, pettifog: 0, petty: 0, phenomenal: 10,
1009
+ phenomenally: 10, phobia: 0, phobic: 0, phony: 0, picky: 0,
1010
+ picturesque: 10, piety: 7.5, pillage: 0, pillar: 10, pillory: 0,
1011
+ pinch: 2.5, pine: 0, pinnacle: 10, pious: 10, pique: 2.5, pithy: 10,
1012
+ pitiable: 0, pitiful: 0, pitifully: 0, pitiless: 0,
1013
+ pitilessly: 0, pittance: 0, pity: 0, placate: 10, placid: 7.5,
1014
+ plagiarize: 0, plague: 2.5, plain: 7.5, plainly: 10, plausibility: 10,
1015
+ plausible: 10, playful: 10, playfully: 10, plaything: 0, plead: 0,
1016
+ pleading: 0, pleadingly: 0, plea: 2.5, pleas: 0, pleasant: 7.5,
1017
+ pleasantly: 7.5, please: 10, pleased: 10, pleasing: 10, pleasingly: 10,
1018
+ pleasurable: 10, pleasurably: 10, pleasure: 10, plebeian: 0,
1019
+ pledge: 10, pledges: 10, plentiful: 7.5, plenty: 10, plight: 0,
1020
+ plot: 0, plotters: 0, ploy: 0, plunder: 0, plunderer: 0,
1021
+ plush: 10, poetic: 10, poeticize: 10, poignant: 10, pointless: 2.5,
1022
+ pointlessly: 2.5, poise: 10, poised: 10, poison: 0, poisonous: 2.5,
1023
+ poisonously: 2.5, polarisation: 0, polemize: 0, polished: 7.5,
1024
+ polite: 7.5, politeness: 7.5, pollute: 2.5, polluter: 0, polluters: 0,
1025
+ polution: 2.5, pompous: 0, poor: 2.5, poorly: 0, popular: 7.5,
1026
+ popularity: 7.5, portable: 7.5, posh: 10, positive: 7.5, positiveness: 10,
1027
+ positively: 10, posterity: 7.5, posturing: 0, potent: 10, potential: 7.5,
1028
+ pout: 0, poverty: 0, powerful: 7.5, powerfully: 7.5, powerless: 2.5,
1029
+ practicable: 7.5, practical: 7.5, pragmatic: 10, praise: 10,
1030
+ praiseworthy: 10, praising: 10, prate: 0, pratfall: 0, prattle: 0,
1031
+ preeminent: 7.5, preach: 10, preaching: 10, precarious: 2.5,
1032
+ precariously: 2.5, precaution: 10, precautions: 10, precedent: 7.5,
1033
+ precious: 10, precipitate: 0, precipitous: 0, precise: 7.5,
1034
+ precisely: 7.5, precision: 7.5, predatory: 2.5, predicament: 0,
1035
+ preemptive: 7.5, prefer: 10, preferable: 10, preferably: 10,
1036
+ preference: 10, preferences: 10, prejudge: 0, prejudice: 0,
1037
+ prejudicial: 0, premeditated: 0, premier: 7.5, premium: 7.5,
1038
+ preoccupy: 2.5, prepared: 7.5, preponderance: 10, preposterous: 0,
1039
+ preposterously: 0, press: 7.5, pressing: 0, prestige: 10,
1040
+ prestigious: 7.5, presume: 0, presumptuous: 0, presumptuously: 0,
1041
+ pretence: 0, pretend: 0, pretense: 0, pretentious: 0,
1042
+ pretentiously: 0, prettily: 10, pretty: 10, prevaricate: 0,
1043
+ priceless: 10, pricey: 2.5, prickle: 0, prickles: 0, pride: 10,
1044
+ prideful: 0, primitive: 2.5, principle: 7.5, principled: 7.5,
1045
+ prison: 2.5, prisoner: 2.5, privilege: 10, privileged: 10, prize: 10,
1046
+ pro: 7.5, proAmerican: 10, proBeijing: 10, proCuba: 10, propeace: 10,
1047
+ proactive: 10, problem: 2.5, problematic: 0, problems: 2.5,
1048
+ procrastinate: 0, procrastination: 0, prodigious: 10,
1049
+ prodigiously: 10, prodigy: 10, productive: 7.5, profane: 0,
1050
+ profanity: 0, profess: 10, proficient: 10, proficiently: 10,
1051
+ profit: 7.5, profitable: 7.5, profound: 10, profoundly: 10, profuse: 10,
1052
+ profusely: 10, profusion: 10, progress: 7.5, progressive: 7.5,
1053
+ prohibit: 2.5, prohibitive: 2.5, prohibitively: 2.5, prolific: 7.5,
1054
+ prominent: 7.5, prominence: 7.5, promise: 10, promising: 10, promoter: 10,
1055
+ prompt: 7.5, promptly: 7.5, propaganda: 0, propagandize: 0, proper: 7.5,
1056
+ properly: 7.5, propitious: 10, propitiously: 10, proscription: 0,
1057
+ proscriptions: 0, prosecute: 0, prospect: 7.5, prospects: 7.5,
1058
+ prosper: 10, prosperity: 7.5, prosperous: 7.5, protect: 7.5, protection: 7.5,
1059
+ protective: 7.5, protector: 10, protest: 0, protests: 2.5,
1060
+ protracted: 2.5, proud: 10, providence: 10, provocation: 0,
1061
+ provocative: 0, provoke: 0, prowess: 10, prudence: 7.5, prudent: 10,
1062
+ prudently: 10, pry: 2.5, pugnacious: 0, pugnaciously: 0,
1063
+ pugnacity: 0, punch: 0, punctual: 10, pundits: 10, punish: 0,
1064
+ punishable: 2.5, punitive: 2.5, puny: 0, puppet: 0, puppets: 0,
1065
+ pure: 7.5, purification: 7.5, purify: 7.5, purity: 7.5, purposeful: 10,
1066
+ puzzle: 0, puzzled: 0, puzzlement: 0, puzzling: 0, quack: 0,
1067
+ quaint: 10, qualified: 7.5, qualify: 7.5, qualms: 0, quandary: 0,
1068
+ quarrel: 0, quarrellous: 0, quarrellously: 0, quarrels: 0,
1069
+ quarrelsome: 0, quash: 0, quasially: 10, queer: 2.5, quench: 7.5,
1070
+ questionable: 0, quibble: 0, quicken: 10, quit: 2.5, quitter: 0,
1071
+ racism: 2.5, racist: 0, racists: 0, rack: 0, radiance: 10,
1072
+ radiant: 10, radical: 0, radicalization: 0, radically: 0,
1073
+ radicals: 0, rage: 0, ragged: 0, raging: 0, rail: 0,
1074
+ rally: 10, rampage: 0, rampant: 0, ramshackle: 0, rancor: 0,
1075
+ rank: 0, rankle: 0, rant: 0, ranting: 0, rantingly: 0,
1076
+ rapprochement: 7.5, rapport: 10, rapt: 10, rapture: 10, raptureous: 10,
1077
+ raptureously: 10, rapturous: 10, rapturously: 10, rascal: 0, rash: 0,
1078
+ rat: 2.5, rational: 10, rationality: 7.5, rationalize: 0, rattle: 0,
1079
+ ravage: 0, rave: 10, raving: 0, reconquest: 10, reactionary: 0,
1080
+ readily: 7.5, ready: 7.5, reaffirm: 7.5, reaffirmation: 7.5, real: 7.5,
1081
+ realist: 10, realistic: 10, realistically: 10, reason: 7.5,
1082
+ reasonable: 7.5, reasonably: 7.5, reasoned: 7.5, reassurance: 10,
1083
+ reassure: 10, rebellious: 0, rebuff: 0, rebuke: 0,
1084
+ recalcitrant: 0, recant: 0, receptive: 10, recession: 2.5,
1085
+ recessionary: 2.5, reckless: 0, recklessly: 0, recklessness: 0,
1086
+ reclaim: 7.5, recognition: 7.5, recoil: 0, recommend: 10,
1087
+ recommendation: 10, recommendations: 10, recommended: 10, recompense: 7.5,
1088
+ reconcile: 7.5, reconciliation: 7.5, recordsetting: 7.5, recourses: 2.5,
1089
+ recover: 7.5, rectification: 10, rectify: 10, rectifying: 10, redeem: 10,
1090
+ redeeming: 10, redemption: 10, redundancy: 2.5, redundant: 2.5,
1091
+ reestablish: 7.5, refine: 7.5, refined: 7.5, refinement: 7.5, reform: 7.5,
1092
+ refresh: 7.5, refreshing: 10, refuge: 10, refusal: 2.5, refuse: 0,
1093
+ refutation: 0, refute: 0, regal: 10, regally: 10, regard: 10,
1094
+ regress: 2.5, regression: 2.5, regressive: 2.5, regret: 0,
1095
+ regretful: 0, regretfully: 0, regrettable: 0, regrettably: 0,
1096
+ rehabilitate: 7.5, rehabilitation: 7.5, reinforce: 7.5, reinforcement: 7.5,
1097
+ reject: 0, rejection: 0, rejoice: 10, rejoicing: 10, rejoicingly: 10,
1098
+ relapse: 2.5, relax: 7.5, relaxed: 7.5, relent: 10, relentless: 0,
1099
+ relentlessly: 0, relentlessness: 0, relevant: 7.5, relevance: 7.5,
1100
+ reliable: 7.5, reliability: 7.5, reliably: 7.5, relief: 10, relieve: 7.5,
1101
+ relish: 10, reluctance: 0, reluctant: 2.5, reluctantly: 2.5,
1102
+ remarkable: 10, remarkably: 10, remedy: 7.5, reminiscent: 10,
1103
+ remorse: 0, remorseful: 0, remorsefully: 0, remorseless: 0,
1104
+ remorselessly: 0, remorselessness: 0, remunerate: 10, renaissance: 10,
1105
+ renewal: 7.5, renovate: 7.5, renovation: 7.5, renounce: 0, renown: 10,
1106
+ renowned: 10, renunciation: 0, repair: 7.5, reparation: 7.5, repay: 10,
1107
+ repel: 2.5, repent: 10, repentance: 10, repetitive: 2.5,
1108
+ reprehensible: 0, reprehensibly: 0, reprehension: 0,
1109
+ reprehensive: 0, repress: 2.5, repression: 2.5, repressive: 2.5,
1110
+ reprimand: 0, reproach: 0, reproachful: 0, reprove: 0,
1111
+ reprovingly: 0, repudiate: 0, repudiation: 0, repugn: 0,
1112
+ repugnance: 0, repugnant: 0, repugnantly: 0, repulse: 2.5,
1113
+ repulsed: 2.5, repulsing: 0, repulsive: 0, repulsively: 0,
1114
+ repulsiveness: 0, reputable: 7.5, rescue: 7.5, resent: 0,
1115
+ resentful: 0, resentment: 0, reservations: 2.5, resignation: 2.5,
1116
+ resigned: 2.5, resilient: 7.5, resistance: 2.5, resistant: 2.5,
1117
+ resolute: 7.5, resolve: 7.5, resolved: 7.5, resound: 7.5, resounding: 10,
1118
+ resourceful: 10, resourcefulness: 10, respect: 7.5, respectable: 10,
1119
+ respectful: 10, respectfully: 10, respite: 10, resplendent: 10,
1120
+ responsibility: 7.5, responsible: 7.5, responsibly: 7.5, responsive: 7.5,
1121
+ restful: 7.5, restless: 2.5, restlessness: 2.5, restoration: 7.5,
1122
+ restore: 7.5, restraint: 7.5, restrict: 2.5, restricted: 2.5,
1123
+ restriction: 2.5, restrictive: 2.5, resurgent: 7.5, retaliate: 2.5,
1124
+ retaliatory: 2.5, retard: 2.5, reticent: 0, retire: 2.5, retract: 2.5,
1125
+ retreat: 2.5, reunite: 7.5, revel: 10, revelation: 7.5, revenge: 0,
1126
+ revengeful: 0, revengefully: 0, revere: 10, reverence: 10,
1127
+ reverent: 10, reverently: 10, revert: 2.5, revival: 7.5, revive: 7.5,
1128
+ revile: 0, reviled: 0, revitalize: 7.5, revoke: 2.5, revolt: 2.5,
1129
+ revolting: 0, revoltingly: 0, revolution: 7.5, revulsion: 0,
1130
+ revulsive: 0, reward: 10, rewarding: 10, rewardingly: 10,
1131
+ rhapsodize: 2.5, rhetoric: 2.5, rhetorical: 0, rich: 7.5, riches: 7.5,
1132
+ richly: 10, richness: 10, rid: 0, ridicule: 0, ridiculous: 0,
1133
+ ridiculously: 0, rife: 0, rift: 0, rifts: 0, right: 10,
1134
+ righten: 10, righteous: 10, righteously: 10, righteousness: 10,
1135
+ rightful: 10, rightfully: 10, rightly: 10, rightness: 10, rights: 7.5,
1136
+ rigid: 2.5, rigor: 2.5, rigorous: 2.5, rile: 0, riled: 0, ripe: 7.5,
1137
+ risk: 2.5, riskfree: 7.5, risky: 2.5, rival: 2.5, rivalry: 2.5,
1138
+ roadblocks: 0, robust: 7.5, rocky: 2.5, rogue: 0, rollercoaster: 0,
1139
+ romantic: 10, romantically: 10, romanticize: 10, rosy: 10, rot: 2.5,
1140
+ rotten: 0, rough: 2.5, rousing: 10, rubbish: 0, rude: 0, rue: 0,
1141
+ ruffian: 0, ruffle: 2.5, ruin: 2.5, ruinous: 2.5, rumbling: 0,
1142
+ rumor: 0, rumors: 0, rumours: 0, rumple: 0, rundown: 0,
1143
+ runaway: 0, rupture: 2.5, rusty: 0, ruthless: 0, ruthlessly: 0,
1144
+ ruthlessness: 0, sabotage: 0, sacred: 10, sacrifice: 0, sad: 0,
1145
+ sadden: 0, sadly: 0, sadness: 0, safe: 7.5, safeguard: 10,
1146
+ sag: 2.5, sagacity: 10, sage: 10, sagely: 10, saint: 10,
1147
+ saintliness: 10, saintly: 10, salable: 7.5, salacious: 0, salivate: 7.5,
1148
+ salutary: 10, salute: 10, salvation: 10, sanctimonious: 0,
1149
+ sanctify: 10, sanction: 10, sanctity: 10, sanctuary: 10, sanguine: 10,
1150
+ sane: 10, sanity: 10, sap: 0, sarcasm: 0, sarcastic: 0,
1151
+ sarcastically: 0, sardonic: 0, sardonically: 0, sass: 0,
1152
+ satirical: 0, satirize: 0, satisfaction: 10, satisfactorily: 10,
1153
+ satisfactory: 10, satisfy: 7.5, satisfying: 7.5, savage: 0, savaged: 0,
1154
+ savagely: 0, savagery: 0, savages: 0, savor: 7.5, savvy: 10,
1155
+ scandal: 2.5, scandalize: 0, scandalized: 0, scandalous: 0,
1156
+ scandalously: 0, scandals: 0, scant: 2.5, scapegoat: 0, scar: 0,
1157
+ scarred: 0, scarce: 2.5, scarcely: 0, scarcity: 2.5, scare: 0,
1158
+ scared: 0, scarier: 0, scariest: 0, scarily: 0, scars: 0,
1159
+ scary: 0, scathing: 0, scathingly: 0, scenic: 7.5, scheme: 2.5,
1160
+ scheming: 0, scoff: 0, scoffingly: 0, scold: 0, scolding: 0,
1161
+ scoldingly: 0, scorching: 0, scorchingly: 0, scorn: 0,
1162
+ scornful: 0, scornfully: 0, scoundrel: 0, scourge: 0, scowl: 0,
1163
+ scream: 0, screech: 0, screw: 2.5, scruples: 10, scrupulous: 10,
1164
+ scrupulously: 10, scum: 0, scummy: 0, seamless: 10, seasoned: 7.5,
1165
+ secondclass: 0, secondtier: 2.5, secretive: 2.5, secure: 7.5,
1166
+ securely: 7.5, security: 7.5, sedentary: 2.5, seductive: 10, seedy: 0,
1167
+ seethe: 0, seething: 0, selective: 7.5, selfcoup: 0,
1168
+ selfcriticism: 0, selfdefeating: 2.5, selfdestructive: 0,
1169
+ selfdetermination: 10, selfhumiliation: 0, selfinterest: 0,
1170
+ selfinterested: 0, selfrespect: 10, selfsatisfaction: 10,
1171
+ selfserving: 0, selfsufficiency: 7.5, selfsufficient: 7.5, selfish: 0,
1172
+ selfishly: 0, selfishness: 0, semblance: 7.5, senile: 0,
1173
+ sensation: 10, sensational: 10, sensationalize: 0, sensationally: 10,
1174
+ sensations: 10, sense: 7.5, senseless: 0, senselessly: 0,
1175
+ sensible: 10, sensibly: 10, sensitive: 7.5, sensitively: 10,
1176
+ sensitivity: 10, sentiment: 10, sentimentality: 10, sentimentally: 10,
1177
+ sentiments: 10, serene: 10, serenity: 10, serious: 0, seriously: 0,
1178
+ seriousness: 0, sermonize: 0, servitude: 0, settle: 7.5, setup: 0,
1179
+ sever: 2.5, severe: 0, severely: 0, severity: 0, sexy: 10,
1180
+ shabby: 0, shadow: 0, shadowy: 2.5, shady: 0, shake: 2.5,
1181
+ shaky: 2.5, shallow: 2.5, sham: 0, shambles: 0, shame: 0,
1182
+ shameful: 0, shamefully: 0, shamefulness: 0, shameless: 0,
1183
+ shamelessly: 0, shamelessness: 0, shark: 0, sharp: 2.5,
1184
+ sharply: 2.5, shatter: 0, sheer: 0, shelter: 7.5, shield: 7.5,
1185
+ shimmer: 10, shimmering: 10, shimmeringly: 10, shine: 7.5, shiny: 10,
1186
+ shirk: 0, shirker: 0, shipwreck: 2.5, shiver: 0, shock: 0,
1187
+ shocking: 0, shockingly: 0, shoddy: 0, shortlived: 2.5,
1188
+ shortage: 2.5, shortchange: 0, shortcoming: 0, shortcomings: 0,
1189
+ shortsighted: 0, shortsightedness: 0, showdown: 2.5, shred: 2.5,
1190
+ shrew: 0, shrewd: 10, shrewdly: 10, shrewdness: 10, shriek: 0,
1191
+ shrill: 0, shrilly: 0, shrivel: 0, shroud: 0, shrouded: 0,
1192
+ shrug: 2.5, shun: 0, shunned: 0, shy: 0, shyly: 0, shyness: 0,
1193
+ sick: 2.5, sicken: 2.5, sickly: 0, sickening: 0, sickeningly: 0,
1194
+ sickness: 2.5, sidetrack: 0, sidetracked: 0, siege: 2.5,
1195
+ significant: 7.5, significance: 7.5, signify: 7.5, sillily: 0, silly: 0,
1196
+ simmer: 0, simple: 7.5, simplicity: 10, simplified: 7.5, simplify: 7.5,
1197
+ simplistic: 0, simplistically: 0, sin: 0, sinful: 0,
1198
+ sinfully: 0, sincere: 10, sincerely: 10, sincerity: 7.5, sinister: 0,
1199
+ sinisterly: 0, sinking: 2.5, skeletons: 0, skeptical: 0,
1200
+ skeptically: 0, skepticism: 0, sketchy: 2.5, skill: 7.5, skilled: 7.5,
1201
+ skillful: 10, skillfully: 10, skimpy: 2.5, skittish: 0,
1202
+ skittishly: 0, skulk: 0, slack: 2.5, slander: 0, slanderer: 0,
1203
+ slanderous: 0, slanderously: 0, slanders: 0, slap: 0,
1204
+ slashing: 0, slaughter: 2.5, slaughtered: 2.5, slaves: 0,
1205
+ sleazy: 0, sleek: 7.5, slender: 7.5, slight: 2.5, slightly: 2.5,
1206
+ slim: 7.5, slime: 0, sloppy: 0, sloppily: 0, sloth: 0,
1207
+ slothful: 0, slow: 2.5, slowly: 2.5, slowmoving: 2.5, slug: 2.5,
1208
+ sluggish: 2.5, slump: 2.5, slur: 0, sly: 0, smack: 0, smart: 10,
1209
+ smarter: 10, smartest: 10, smartly: 10, smash: 2.5, smear: 2.5,
1210
+ smelling: 2.5, smile: 10, smiling: 10, smilingly: 10, smitten: 10,
1211
+ smokescreen: 0, smolder: 0, smoldering: 0, smooth: 7.5,
1212
+ smother: 0, smoulder: 0, smouldering: 0, smug: 0, smugly: 0,
1213
+ smut: 0, smuttier: 0, smuttiest: 0, smutty: 0, snare: 2.5,
1214
+ snarl: 2.5, snatch: 2.5, sneak: 2.5, sneakily: 2.5, sneaky: 2.5,
1215
+ sneer: 0, sneering: 0, sneeringly: 0, snub: 0, socal: 0,
1216
+ socalled: 0, sob: 0, sober: 2.5, sobering: 0, sociable: 10,
1217
+ softspoken: 7.5, soften: 10, solace: 10, solemn: 2.5, solicitous: 10,
1218
+ solicitously: 10, solicitude: 10, solid: 7.5, solidarity: 10, somber: 0,
1219
+ soothe: 10, soothingly: 10, sophisticated: 10, sore: 0, sorely: 0,
1220
+ soreness: 2.5, sorrow: 2.5, sorrowful: 0, sorrowfully: 0, sorry: 0,
1221
+ sound: 7.5, sounding: 2.5, soundness: 7.5, sour: 2.5, sourly: 2.5,
1222
+ spacious: 7.5, spade: 0, spank: 0, spare: 7.5, sparing: 7.5,
1223
+ sparingly: 7.5, sparkle: 10, sparkling: 7.5, special: 7.5, spectacular: 10,
1224
+ spectacularly: 10, speedy: 7.5, spellbind: 10, spellbinding: 10,
1225
+ spellbindingly: 10, spellbound: 10, spilling: 0, spinster: 2.5,
1226
+ spirit: 7.5, spirited: 7.5, spiritless: 0, spiritual: 10, spite: 0,
1227
+ spiteful: 0, spitefully: 0, spitefulness: 0, splendid: 10,
1228
+ splendidly: 10, splendor: 10, split: 2.5, splitting: 2.5, spoil: 0,
1229
+ spook: 0, spookier: 0, spookiest: 0, spookily: 0, spooky: 0,
1230
+ spoonfed: 0, spoonfeed: 0, sporadic: 2.5, spot: 2.5, spotless: 10,
1231
+ spotty: 2.5, sprightly: 10, spur: 10, spurious: 0, spurn: 0,
1232
+ sputter: 0, squabble: 0, squabbling: 0, squander: 0,
1233
+ squarely: 10, squash: 0, squirm: 0, stab: 2.5, stability: 7.5,
1234
+ stabilize: 7.5, stable: 7.5, stagger: 2.5, staggering: 0,
1235
+ staggeringly: 0, stagnant: 2.5, stagnate: 0, stagnation: 0,
1236
+ staid: 0, stain: 2.5, stainless: 7.5, stake: 2.5, stale: 0,
1237
+ stalemate: 0, stammer: 0, stampede: 2.5, stand: 7.5, standstill: 0,
1238
+ star: 10, stark: 0, starkly: 0, stars: 10, startle: 0,
1239
+ startling: 0, startlingly: 0, starvation: 2.5, starve: 2.5,
1240
+ stately: 10, static: 2.5, statuesque: 10, staunch: 10, staunchly: 10,
1241
+ staunchness: 10, steadfast: 10, steadfastly: 10, steadfastness: 10,
1242
+ steadiness: 7.5, steady: 7.5, steal: 2.5, stealing: 2.5, steep: 2.5,
1243
+ steeply: 2.5, stellar: 10, stellarly: 10, stench: 0, stereotype: 0,
1244
+ stereotypical: 0, stereotypically: 0, stern: 0, stew: 0,
1245
+ sticky: 2.5, stiff: 2.5, stifle: 0, stifling: 0, stiflingly: 0,
1246
+ stigma: 0, stigmatize: 0, stimulate: 7.5, stimulating: 10,
1247
+ stimulative: 7.5, sting: 2.5, stinging: 0, stingingly: 0, stink: 0,
1248
+ stinking: 0, stirring: 10, stirringly: 10, stodgy: 0, stole: 2.5,
1249
+ stolen: 2.5, stood: 7.5, stooge: 0, stooges: 0, storm: 2.5,
1250
+ stormy: 2.5, straggle: 2.5, straggler: 2.5, straight: 7.5,
1251
+ straightforward: 10, strain: 2.5, strained: 2.5, strange: 0,
1252
+ strangely: 0, stranger: 0, strangest: 0, strangle: 2.5,
1253
+ streamlined: 7.5, strenuous: 2.5, stress: 0, stressful: 0,
1254
+ stressfully: 0, stricken: 0, strict: 0, strictly: 0, stride: 10,
1255
+ strident: 0, stridently: 0, strides: 7.5, strife: 0, strike: 2.5,
1256
+ striking: 10, strikingly: 10, stringent: 2.5, stringently: 2.5,
1257
+ striving: 10, strong: 7.5, struck: 2.5, struggle: 0, strut: 0,
1258
+ stubborn: 0, stubbornly: 0, stubbornness: 0, studious: 10,
1259
+ studiously: 10, stuffy: 0, stumble: 2.5, stump: 2.5, stun: 2.5,
1260
+ stunned: 10, stunning: 10, stunningly: 10, stunt: 2.5, stunted: 2.5,
1261
+ stupendous: 10, stupendously: 10, stupid: 0, stupidity: 0,
1262
+ stupidly: 0, stupified: 0, stupify: 0, stupor: 0, sturdy: 7.5,
1263
+ sty: 0, stylish: 10, stylishly: 10, suave: 10, subdued: 2.5,
1264
+ subjected: 2.5, subjection: 2.5, subjugate: 0, subjugation: 0,
1265
+ sublime: 10, submissive: 2.5, subordinate: 2.5, subscribe: 7.5,
1266
+ subservience: 0, subservient: 0, subside: 2.5, substandard: 2.5,
1267
+ substantial: 7.5, substantially: 7.5, substantive: 7.5, subtle: 7.5,
1268
+ subtract: 2.5, subversion: 2.5, subversive: 2.5, subversively: 2.5,
1269
+ subvert: 2.5, succeed: 7.5, success: 7.5, successful: 7.5, successfully: 7.5,
1270
+ succumb: 0, sucker: 0, suffer: 2.5, sufferer: 0, sufferers: 0,
1271
+ suffering: 0, suffice: 7.5, sufficient: 7.5, sufficiently: 7.5,
1272
+ suffocate: 0, sugarcoat: 0, sugarcoated: 0, suggest: 7.5,
1273
+ suggestions: 7.5, suicidal: 2.5, suicide: 2.5, suit: 7.5, suitable: 7.5,
1274
+ sulk: 0, sullen: 0, sully: 0, sumptuous: 10, sumptuously: 10,
1275
+ sumptuousness: 10, sunder: 0, sunny: 7.5, super: 10, superb: 10,
1276
+ superbly: 10, superficial: 0, superficiality: 0, superficially: 0,
1277
+ superfluous: 0, superior: 7.5, superiority: 0, superlative: 10,
1278
+ superstition: 0, superstitious: 0, support: 7.5, supporter: 10,
1279
+ supportive: 10, supposed: 2.5, suppress: 2.5, suppression: 2.5,
1280
+ supremacy: 0, supreme: 10, supremely: 10, supurb: 10, supurbly: 10,
1281
+ sure: 10, surely: 10, surge: 10, surging: 10, surmise: 10, surmount: 10,
1282
+ surpass: 0, surprising: 2.5, surrender: 2.5, survival: 7.5, survive: 7.5,
1283
+ survivor: 7.5, susceptible: 2.5, suspect: 2.5, suspicion: 2.5,
1284
+ suspicions: 0, suspicious: 0, suspiciously: 0, sustainability: 7.5,
1285
+ sustainable: 7.5, sustained: 7.5, swagger: 0, swamped: 0, swear: 0,
1286
+ sweeping: 10, sweet: 7.5, sweeten: 7.5, sweetheart: 7.5, sweetly: 7.5,
1287
+ sweetness: 7.5, swift: 7.5, swiftness: 7.5, swindle: 0, swipe: 0,
1288
+ swoon: 2.5, swore: 0, sworn: 10, sympathetic: 0,
1289
+ sympathetically: 0, sympathies: 0, sympathize: 0, sympathy: 0,
1290
+ symptom: 2.5, syndrome: 2.5, taboo: 0, tact: 10, taint: 0,
1291
+ tainted: 0, talent: 10, talented: 10, tamper: 2.5, tangled: 2.5,
1292
+ tantalize: 7.5, tantalizing: 10, tantalizingly: 10, tantrum: 0,
1293
+ tardy: 2.5, tarnish: 2.5, taste: 7.5, tattered: 0, taunt: 0,
1294
+ taunting: 0, tauntingly: 0, taunts: 0, tawdry: 0, tease: 2.5,
1295
+ teasingly: 0, taxing: 2.5, tedious: 0, tediously: 0, temerity: 0,
1296
+ temper: 2.5, temperance: 7.5, temperate: 7.5, tempest: 2.5, tempt: 10,
1297
+ temptation: 0, tempting: 10, temptingly: 10, tenacious: 10,
1298
+ tenaciously: 10, tenacity: 10, tender: 7.5, tenderly: 7.5, tenderness: 7.5,
1299
+ tense: 2.5, tension: 2.5, tentative: 2.5, tentatively: 2.5, tenuous: 2.5,
1300
+ tenuously: 2.5, tepid: 2.5, terrible: 0, terribleness: 0,
1301
+ terribly: 0, terrific: 10, terrifically: 10, terrified: 0,
1302
+ terrify: 0, terrifying: 0, terrifyingly: 0, terror: 0,
1303
+ terrorgenic: 0, terrorism: 2.5, terrorize: 0, thank: 10,
1304
+ thankful: 10, thankfully: 10, thankless: 0, thinkable: 10, thirst: 0,
1305
+ thorny: 0, thorough: 7.5, thoughtful: 10, thoughtfully: 10,
1306
+ thoughtfulness: 10, thoughtless: 0, thoughtlessly: 0,
1307
+ thoughtlessness: 0, thrash: 2.5, threat: 2.5, threaten: 2.5,
1308
+ threatening: 2.5, threats: 2.5, thrift: 7.5, thrifty: 7.5, thrill: 10,
1309
+ thrilling: 10, thrillingly: 10, thrills: 10, thrive: 7.5, thriving: 7.5,
1310
+ throttle: 0, throw: 2.5, thumb: 2.5, thumbs: 2.5, thwart: 0,
1311
+ tickle: 7.5, tidy: 10, timehonored: 10, timely: 7.5, timid: 0,
1312
+ timidity: 0, timidly: 0, timidness: 0, tingle: 10, tiny: 2.5,
1313
+ tire: 2.5, tired: 0, tiresome: 0, tiring: 0, tiringly: 0,
1314
+ titillate: 7.5, titillating: 10, titillatingly: 10, toast: 10,
1315
+ togetherness: 10, toil: 0, tolerable: 10, tolerably: 10, tolerance: 10,
1316
+ tolerant: 7.5, tolerantly: 10, tolerate: 7.5, toleration: 7.5, toll: 2.5,
1317
+ too: 2.5, top: 7.5, topple: 2.5, torment: 0, tormented: 0,
1318
+ torrent: 0, torrid: 10, torridly: 10, torture: 2.5, tortured: 2.5,
1319
+ tortuous: 0, torturous: 0, torturously: 0, totalitarian: 2.5,
1320
+ tradition: 7.5, traditional: 7.5, touchy: 0, toughness: 0, toxic: 2.5,
1321
+ traduce: 0, tragedy: 2.5, tragic: 0, tragically: 0, traitor: 0,
1322
+ traitorous: 0, traitorously: 0, tramp: 0, trample: 0,
1323
+ tranquil: 10, tranquility: 10, transgress: 2.5, transgression: 2.5,
1324
+ trauma: 0, traumatic: 0, traumatically: 0, traumatize: 0,
1325
+ traumatized: 0, travesties: 0, travesty: 0, treacherous: 2.5,
1326
+ treacherously: 2.5, treachery: 0, treason: 0, treasonous: 0,
1327
+ treasure: 10, treat: 7.5, tremendous: 10, tremendously: 10, trendy: 10,
1328
+ trepidation: 10, trial: 2.5, tribute: 10, trick: 0, tricky: 0,
1329
+ trickery: 0, trim: 7.5, triumph: 10, triumphal: 10, triumphant: 10,
1330
+ triumphantly: 10, trivial: 0, trivialize: 0, trivially: 0,
1331
+ trouble: 0, troublemaker: 0, troublesome: 0, troublesomely: 0,
1332
+ troubling: 0, troublingly: 0, truant: 2.5, truculent: 10,
1333
+ truculently: 10, TRUE: 10, truly: 10, trump: 10, trumpet: 10, trust: 7.5,
1334
+ trusting: 10, trustingly: 10, trustworthiness: 10, trustworthy: 10,
1335
+ truth: 10, truthful: 10, truthfully: 10, truthfulness: 10, try: 2.5,
1336
+ trying: 2.5, tumultuous: 2.5, turbulent: 2.5, turmoil: 0, twinkly: 10,
1337
+ twist: 0, twisted: 0, twists: 2.5, tyrannical: 0,
1338
+ tyrannically: 0, tyranny: 0, tyrant: 0, ugh: 0, ugliness: 0,
1339
+ ugly: 0, ulterior: 0, ultimate: 10, ultimately: 10, ultimatum: 0,
1340
+ ultimatums: 0, ultra: 10, ultrahardline: 0, unabashed: 10,
1341
+ unabashedly: 10, unable: 2.5, unacceptable: 0, unacceptablely: 0,
1342
+ unaccustomed: 2.5, unanimous: 10, unassailable: 10, unattractive: 0,
1343
+ unauthentic: 2.5, unavailable: 2.5, unavoidable: 2.5, unavoidably: 2.5,
1344
+ unbiased: 7.5, unbearable: 0, unbearablely: 0, unbelievable: 0,
1345
+ unbelievably: 0, unbosom: 10, unbound: 7.5, unbroken: 7.5,
1346
+ uncertain: 2.5, uncivil: 0, uncivilized: 0, unclean: 0,
1347
+ unclear: 2.5, uncollectible: 2.5, uncomfortable: 2.5, uncommon: 10,
1348
+ uncommonly: 10, uncompetitive: 2.5, uncompromising: 0,
1349
+ uncompromisingly: 0, unconcerned: 10, unconditional: 7.5,
1350
+ unconfirmed: 2.5, unconstitutional: 2.5, uncontrolled: 2.5,
1351
+ unconventional: 7.5, unconvincing: 0, unconvincingly: 0, uncouth: 0,
1352
+ undaunted: 10, undecided: 2.5, undefined: 2.5, undependability: 0,
1353
+ undependable: 0, underdog: 0, underestimate: 0, underlings: 0,
1354
+ undermine: 0, underpaid: 2.5, understand: 10, understandable: 10,
1355
+ understanding: 7.5, understood: 10, understate: 10, understated: 10,
1356
+ understatedly: 10, undesirable: 0, undetermined: 2.5, undid: 2.5,
1357
+ undignified: 0, undisputable: 10, undisputably: 10, undisputed: 7.5,
1358
+ undo: 2.5, undocumented: 2.5, undone: 2.5, undoubted: 10,
1359
+ undoubtedly: 10, undue: 0, unease: 0, uneasily: 0, uneasiness: 0,
1360
+ uneasy: 0, uneconomical: 2.5, unencumbered: 7.5, unequal: 0,
1361
+ unequivocal: 10, unequivocally: 10, unethical: 0, uneven: 2.5,
1362
+ uneventful: 2.5, unexpected: 2.5, unexpectedly: 0, unexplained: 2.5,
1363
+ unfair: 0, unfairly: 0, unfaithful: 0, unfaithfully: 0,
1364
+ unfamiliar: 2.5, unfavorable: 0, unfazed: 10, unfeeling: 0,
1365
+ unfettered: 10, unfinished: 2.5, unfit: 0, unforeseen: 2.5,
1366
+ unforgettable: 10, unfortunate: 0, unfortunately: 0, unfounded: 0,
1367
+ unfriendly: 0, unfulfilled: 2.5, unfunded: 2.5, ungrateful: 0,
1368
+ ungovernable: 0, unhappily: 0, unhappiness: 0, unhappy: 0,
1369
+ unhealthy: 2.5, uniform: 7.5, uniformly: 7.5, unilateralism: 0,
1370
+ unimaginable: 0, unimaginably: 0, unimportant: 0, uninformed: 2.5,
1371
+ uninsured: 2.5, unipolar: 0, unique: 7.5, unity: 7.5, universal: 7.5,
1372
+ unjust: 0, unjustifiable: 0, unjustifiably: 0, unjustified: 2.5,
1373
+ unjustly: 0, unkind: 0, unkindly: 0, unlamentable: 0,
1374
+ unlamentably: 0, unlawful: 2.5, unlawfully: 2.5, unlawfulness: 2.5,
1375
+ unleash: 0, unlicensed: 2.5, unlikely: 2.5, unlimited: 7.5,
1376
+ unlucky: 0, unmoved: 2.5, unnatural: 2.5, unnaturally: 0,
1377
+ unnecessary: 2.5, unneeded: 2.5, unnerve: 0, unnerved: 0,
1378
+ unnerving: 0, unnervingly: 0, unnoticed: 2.5, unobserved: 2.5,
1379
+ unorthodox: 0, unorthodoxy: 0, unparalleled: 10, unpleasant: 0,
1380
+ unpleasantries: 0, unpopular: 0, unprecedent: 0, unprecedented: 0,
1381
+ unpredictable: 2.5, unprepared: 2.5, unpretentious: 10, unproductive: 2.5,
1382
+ unprofitable: 2.5, unqualified: 0, unquestionable: 10,
1383
+ unquestionably: 10, unravel: 0, unraveled: 2.5, unrealistic: 0,
1384
+ unreasonable: 2.5, unreasonably: 0, unrelenting: 0,
1385
+ unrelentingly: 0, unreliability: 0, unreliable: 0, unresolved: 2.5,
1386
+ unrest: 0, unrestricted: 7.5, unruly: 0, unsafe: 2.5,
1387
+ unsatisfactory: 2.5, unsavory: 0, unscathed: 7.5, unscrupulous: 0,
1388
+ unscrupulously: 0, unseemly: 0, unselfish: 10, unsettle: 0,
1389
+ unsettled: 2.5, unsettling: 0, unsettlingly: 0, unskilled: 2.5,
1390
+ unsophisticated: 0, unsound: 0, unspeakable: 0, unspeakablely: 0,
1391
+ unspecified: 2.5, unstable: 2.5, unsteadily: 2.5, unsteadiness: 2.5,
1392
+ unsteady: 2.5, unsuccessful: 2.5, unsuccessfully: 2.5, unsupported: 2.5,
1393
+ unsure: 2.5, unsuspecting: 0, unsustainable: 2.5, untenable: 0,
1394
+ untested: 2.5, unthinkable: 0, unthinkably: 0, untimely: 0,
1395
+ untouched: 7.5, untrained: 7.5, untrue: 0, untrustworthy: 0,
1396
+ untruthful: 0, unusual: 2.5, unusually: 0, unwanted: 0,
1397
+ unwarranted: 0, unwelcome: 0, unwieldy: 0, unwilling: 0,
1398
+ unwillingly: 0, unwillingness: 0, unwise: 0, unwisely: 0,
1399
+ unworkable: 0, unworthy: 0, unyielding: 0, upbeat: 10,
1400
+ upbraid: 0, upfront: 7.5, upgrade: 7.5, upheaval: 0, upheld: 10,
1401
+ uphold: 10, uplift: 7.5, uplifting: 10, upliftingly: 10, upliftment: 10,
1402
+ upright: 7.5, uprising: 2.5, uproar: 0, uproarious: 0,
1403
+ uproariously: 0, uproarous: 0, uproarously: 0, uproot: 2.5,
1404
+ upscale: 7.5, upset: 2.5, upsetting: 0, upsettingly: 0, upside: 10,
1405
+ upward: 7.5, urge: 10, urgency: 0, urgent: 2.5, urgently: 2.5,
1406
+ usable: 7.5, useful: 7.5, usefulness: 7.5, useless: 2.5, usurp: 0,
1407
+ usurper: 0, utilitarian: 7.5, utmost: 10, utter: 0, utterly: 0,
1408
+ uttermost: 10, vagrant: 0, vague: 2.5, vagueness: 2.5, vain: 0,
1409
+ vainly: 0, valiant: 10, valiantly: 10, valid: 7.5, validity: 7.5,
1410
+ valor: 10, valuable: 10, value: 7.5, values: 7.5, vanish: 2.5,
1411
+ vanity: 2.5, vanquish: 10, vast: 7.5, vastly: 7.5, vastness: 7.5,
1412
+ vehement: 0, vehemently: 0, venerable: 10, venerably: 10,
1413
+ venerate: 7.5, vengeance: 0, vengeful: 0, vengefully: 0,
1414
+ vengefulness: 0, venom: 0, venomous: 0, venomously: 0, vent: 0,
1415
+ verifiable: 7.5, veritable: 10, versatile: 7.5, versatility: 7.5,
1416
+ vestiges: 0, veto: 0, vex: 0, vexation: 0, vexing: 0,
1417
+ vexingly: 0, viable: 7.5, viability: 7.5, vibrant: 10, vibrantly: 10,
1418
+ vice: 0, vicious: 0, viciously: 0, viciousness: 0,
1419
+ victimize: 0, victorious: 7.5, victory: 7.5, vie: 0, vigilance: 7.5,
1420
+ vigilant: 7.5, vigorous: 7.5, vigorously: 7.5, vile: 0, vileness: 0,
1421
+ vilify: 0, villainous: 0, villainously: 0, villains: 0,
1422
+ villian: 0, villianous: 0, villianously: 0, villify: 0,
1423
+ vindicate: 10, vindictive: 0, vindictively: 0, vindictiveness: 0,
1424
+ vintage: 7.5, violate: 0, violation: 2.5, violator: 0, violent: 2.5,
1425
+ violently: 2.5, viper: 2.5, virtue: 10, virtuous: 10, virtuously: 10,
1426
+ virulence: 0, virulent: 0, virulently: 0, virus: 0,
1427
+ visionary: 10, vital: 10, vitality: 10, vivacious: 10, vivid: 10,
1428
+ vocally: 2.5, vociferous: 0, vociferously: 0, void: 2.5,
1429
+ volatile: 2.5, volatility: 2.5, voluntarily: 7.5, voluntary: 7.5,
1430
+ vomit: 2.5, vouch: 10, vouchsafe: 10, vow: 10, vulgar: 0,
1431
+ vulnerable: 10, wail: 0, wallow: 2.5, wane: 2.5, waning: 0,
1432
+ want: 10, wanton: 0, war: 2.5, warlike: 0, warfare: 2.5, warm: 7.5,
1433
+ warmhearted: 10, warmly: 10, warmth: 7.5, warning: 2.5, warp: 2.5,
1434
+ warped: 2.5, wary: 0, warily: 0, wariness: 0, waste: 2.5,
1435
+ wasteful: 2.5, wastefulness: 2.5, watchdog: 0, wayward: 0, weak: 2.5,
1436
+ weaken: 0, weakening: 0, weakness: 0, weaknesses: 0, wealthy: 7.5,
1437
+ weariness: 0, wearisome: 0, weary: 2.5, wedge: 2.5, wee: 0,
1438
+ weed: 2.5, weep: 2.5, weird: 0, weirdly: 0, welcome: 7.5,
1439
+ welfare: 7.5, well: 7.5, wellbeing: 10, wellconnected: 10,
1440
+ welleducated: 7.5, wellestablished: 7.5, wellinformed: 10,
1441
+ wellintentioned: 10, wellmanaged: 10, wellpositioned: 7.5,
1442
+ wellpublicized: 7.5, wellreceived: 10, wellregarded: 10, wellrun: 10,
1443
+ wellwishers: 10, whatever: 2.5, wheedle: 0, whimper: 0,
1444
+ whimsical: 10, whine: 0, whips: 0, white: 7.5, wholeheartedly: 10,
1445
+ wholesome: 10, wicked: 0, wickedly: 0, wickedness: 0, wide: 7.5,
1446
+ wideopen: 7.5, wideranging: 7.5, widespread: 2.5, wild: 2.5, wildly: 2.5,
1447
+ wiles: 0, will: 10, willful: 10, willfully: 10, willing: 10,
1448
+ willingness: 10, wilt: 0, wily: 0, wince: 0, wink: 10,
1449
+ winnable: 10, winners: 10, wisdom: 10, wise: 10, wisely: 10, wish: 10,
1450
+ wishes: 10, wishing: 10, withheld: 2.5, withhold: 2.5, witty: 10,
1451
+ woe: 0, woebegone: 0, woeful: 0, woefully: 0, wonder: 10,
1452
+ wonderful: 10, wonderfully: 10, wonderous: 10, wonderously: 10,
1453
+ wondrous: 10, woo: 10, workable: 10, worldfamous: 10, worn: 2.5,
1454
+ worried: 0, worriedly: 0, worrier: 0, worries: 0, worrisome: 0,
1455
+ worry: 0, worrying: 0, worryingly: 0, worse: 0, worsen: 0,
1456
+ worsening: 0, worship: 7.5, worst: 0, worth: 10, worthwhile: 10,
1457
+ worthiness: 10, worthless: 0, worthlessly: 0, worthlessness: 0,
1458
+ worthy: 10, wound: 2.5, wounds: 2.5, wow: 10, wreck: 2.5, wrangle: 0,
1459
+ wrath: 0, wrest: 0, wrestle: 2.5, wretch: 0, wretched: 0,
1460
+ wretchedly: 0, wretchedness: 0, writhe: 2.5, wrong: 2.5,
1461
+ wrongful: 2.5, wrongly: 0, wrought: 2.5, wry: 10, yawn: 0,
1462
+ yearn: 10, yearning: 10, yearningly: 10, yelp: 0, yep: 10, yes: 10,
1463
+ youthful: 7.5, zeal: 10, zealot: 0, zealous: 0, zealously: 0,
1464
+ zenith: 10, zest: 10 }.freeze
1465
+ end
1466
+ end