twitter_to_csv 0.0.5 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore CHANGED
@@ -4,5 +4,3 @@ Gemfile.lock
4
4
  pkg/*
5
5
  .idea
6
6
  data
7
- out.json
8
- out.csv
data/.rvmrc CHANGED
@@ -1 +1 @@
1
- rvm use 1.9.2@twitter_to_csv --create
1
+ rvm use 1.9.3@twitter_to_csv --create
data/Gemfile CHANGED
@@ -1,5 +1,3 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- # Specify your gem's dependencies in twitter_to_csv.gemspec
4
- gemspec
5
-
3
+ gemspec
data/README.markdown CHANGED
@@ -24,16 +24,46 @@ Alternatively, you can always stream directly to CSV:
24
24
 
25
25
  ## Requiring English
26
26
 
27
- You may want to limit to Tweets that appear to be writen in English.
27
+ You may want to limit to Tweets that appear to be written in English.
28
28
 
29
29
  twitter_to_csv --username <your twitter username> --password <your twitter password> \
30
30
  --require-english --fields ...
31
31
 
32
- This filter isn't perfect and will have both false positives and false negatives, but it works pretty well.
32
+ This filter isn't perfect and will have both false positives and false negatives, but it works fairly well.
33
33
 
34
- ## URLS
34
+ ## URLS, Hashtags, and User Mentions
35
35
 
36
- You can extract URLs from the tweet into their own columns by including `--url-columns 3`, for example, to get up to 3 extracted URLs in their own columns.
36
+ You can extract URLs, Hashtags, and User Mentions from the tweet into their own columns by using `--url-columns`, `--hashtag-columns`, and `--user-mention-columns`.
37
+ For example, you could use `--url-columns 3` to get up to 3 extracted URLs in their own columns.
38
+
39
+ ## Sentiment Tagging
40
+
41
+ Twitter To CSV can compute an average sentiment score for each tweet. Provide `--compute-sentiment` to use this feature.
42
+ The [AFINN-111](http://fnielsen.posterous.com/old-anew-a-sentiment-about-sentiment-analysis) valence database is used to look up the valence of
43
+ each recognized word, then the average is computed, only considering words that have some known valence associated. That is, "I love cheese" only has
44
+ one word with valence, "love" with a score of 3, so the average is 3. "I love cheese and like bread", on the other hand, has two words with
45
+ valence, "love" (3) and "like" (2), and so has an average valence of (3 + 2) / 2, or 2.5. The library will break hyphenated words up and score them as
46
+ separate words unless the whole thing has a single known valence.
47
+
48
+ ## Handling of Retweets
49
+
50
+ Once you have a recorded Twitter stream, you can rollup retweets in various ways. Here is an example that collapses retweets into the `retweet_count` field of the original tweet, only outputs tweets with at least 1 retweet, ignores retweets that happened more than 7 days after the original tweet, and outputs retweet count columns at half an hour, 2 hours, and 2 days after the original tweet:
51
+
52
+ twitter_to_csv --replay-from-file out.json -c out.csv --fields retweet_count,text -e --retweet-mode rollup --retweet-threshold 1 --retweet-window 7 --retweet-counts-at 0.5,2,48
53
+
54
+ Note that all of the retweet features require you to `--replay-from-file` because they parse the stream backwards. They will not function correctly from the stream directly.
55
+
56
+ ## Selecting Windows
57
+
58
+ To select a specific window of time in a pre-recorded stream by `created_at`, pass in `--start` and `--end`, for example:
59
+
60
+ twitter_to_csv --replay-from-file out.json --start "Mon Mar 07 07:42:22 +0000 2011" --end "Mon Mar 08 07:42:22 +0000 2011"
61
+
62
+ ## Mind the Gap
63
+
64
+ Sometimes the Twitter API goes down. You can analyze a json output file to see where data gaps (of over 10 minutes, in this case) have occurred:
65
+
66
+ twitter_to_csv --replay-from-file out.json --analyze-gaps 10
37
67
 
38
68
  ## Field names
39
69
 
data/bin/twitter_to_csv CHANGED
@@ -2,9 +2,10 @@
2
2
  require 'rubygems'
3
3
  require 'open-uri'
4
4
  require 'optparse'
5
+ require 'time'
5
6
  require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'twitter_to_csv'))
6
7
 
7
- options = { :csv => STDOUT, :fields => %w[text] }
8
+ options = { :fields => %w[created_at text] }
8
9
  parser = OptionParser.new do |opts|
9
10
  opts.banner = "Usage: #{File.basename($0)} [options]"
10
11
  opts.separator ""
@@ -18,13 +19,13 @@ parser = OptionParser.new do |opts|
18
19
  options[:password] = password
19
20
  end
20
21
 
21
- opts.on("-c", "--csv FILE", "The CSV file to append to") do |csv|
22
+ opts.on("-c", "--csv FILE", "The CSV file to append to, or - for STDOUT") do |csv|
22
23
  options[:csv_appending] = File.exists?(csv)
23
- options[:csv] = File.open(csv, 'a')
24
+ options[:csv] = csv == "-" ? STDOUT : File.open(csv, 'a')
24
25
  end
25
26
 
26
- opts.on("-j", "--json FILE", "The JSON file to append to") do |json|
27
- options[:json] = File.open(json, 'a')
27
+ opts.on("-j", "--json FILE", "The JSON file to append to, or - for STDOUT") do |json|
28
+ options[:json] = json == "-" ? STDOUT : File.open(json, 'a')
28
29
  end
29
30
 
30
31
  opts.on("-f", "--filter KEYWORDS", "Keywords to ask Twitter to filter on") do |filter|
@@ -43,18 +44,46 @@ parser = OptionParser.new do |opts|
43
44
  options[:verbose] = v
44
45
  end
45
46
 
46
- opts.on_tail(nil, "--sample-fields NUMBER_OF_SAMPLES", "Record NUMBER_OF_SAMPLES tweets and then print out all","of the field names seen. Use to find out what can be passed to.") do |samples|
47
- options[:sample_fields] = samples && samples.to_i
47
+ opts.on("-r", "--replay-from-file FILENAME", "Replay tweets from a JSON dump file") do |replay_file|
48
+ options[:replay_from_file] = replay_file
48
49
  end
49
50
 
50
- opts.on_tail("", "--replay-from-file FILENAME", "Replay tweets from a JSON dump file") do |replay_file|
51
- options[:replay_from_file] = replay_file
51
+ opts.on("--analyze-gaps MINUTES", "Look at the stream and display gap information for gaps longer than MINUTES") do |gap_minutes|
52
+ options[:analyze_gaps] = gap_minutes && gap_minutes.to_i
52
53
  end
53
54
 
54
- opts.on_tail("", "--url-columns NUMBER_OF_COLUMNS", "Extract up to NUMBER_OF_COLUMNS urls from the status and include them in the CSV") do |url_columns|
55
+ opts.on("--sample-fields NUMBER_OF_SAMPLES", "Record NUMBER_OF_SAMPLES tweets and then print out all","of the field names seen. Use to find out what can be passed to.") do |samples|
56
+ options[:sample_fields] = samples && samples.to_i
57
+ end
58
+
59
+ opts.on("--url-columns NUM_COLUMNS", "Extract up to NUM_COLUMNS urls from the status and include them in the CSV") do |url_columns|
55
60
  options[:url_columns] = url_columns.to_i
56
61
  end
57
62
 
63
+ opts.on("--hash-columns NUM_COLUMNS", "Extract up to NUM_COLUMNS hashtags (#foo) from the status and include them in the CSV") do |hashtag_columns|
64
+ options[:hashtag_columns] = hashtag_columns.to_i
65
+ end
66
+
67
+ opts.on("--user-columns NUM_COLUMNS", "Extract up to NUM_COLUMNS user mentions (@foo) from the status and include them in the CSV") do |user_mention_columns|
68
+ options[:user_mention_columns] = user_mention_columns.to_i
69
+ end
70
+
71
+ opts.on("-s", "--compute-sentiment", "Compute an average sentiment score for each status using the AFINN-111 sentiment dictionary") do |compute_sentiment|
72
+ options[:compute_sentiment] = compute_sentiment
73
+ end
74
+
75
+ opts.on("--compute-word-count", "Include a word count for each status in the output CSV") do |compute_word_count|
76
+ options[:compute_word_count] = compute_word_count
77
+ end
78
+
79
+ opts.on("--start TIME", "Ignore tweets with a created_at earlier than TIME") do |start_time|
80
+ options[:start_time] = Time.parse(start_time)
81
+ end
82
+
83
+ opts.on("--end TIME", "Ignore tweets with a created_at later than TIME") do |end_time|
84
+ options[:end_time] = Time.parse(end_time)
85
+ end
86
+
58
87
  opts.on_tail("-h", "--help", "Show this message") do
59
88
  STDERR.puts opts
60
89
  exit
@@ -64,12 +93,32 @@ parser = OptionParser.new do |opts|
64
93
  STDERR.puts "twitter_to_csv version #{TwitterToCsv::VERSION}"
65
94
  exit
66
95
  end
96
+
97
+ opts.separator ""
98
+ opts.separator "If you would like to do special retweet handling, use the following options."
99
+ opts.separator "For these to function, you must be using --replay-from-file. The replay will be performed in reverse."
100
+
101
+ opts.on("--retweet-mode MODE", "Determine how to handle retweets", "Options are just 'ROLLUP'") do |retweet_mode|
102
+ options[:retweet_mode] = retweet_mode.downcase.to_sym
103
+ end
104
+
105
+ opts.on("--retweet-threshold COUNT", "Only consider statuses with at least COUNT retweets") do |retweet_threshold|
106
+ options[:retweet_threshold] = retweet_threshold.to_i
107
+ end
108
+
109
+ opts.on("--retweet-window WINDOW", "Ignore retweets that occur beyond WINDOW days", "Additionally, statuses where WINDOW days have not yet passed will be ignored.") do |retweet_window|
110
+ options[:retweet_window] = retweet_window.to_i
111
+ end
112
+
113
+ opts.on("--retweet-counts-at HOURS", "Output the number of retweets seen at specific times after the original tweet") do |retweet_counts_at|
114
+ options[:retweet_counts_at] = retweet_counts_at.split(",").map(&:to_f)
115
+ end
67
116
  end
68
117
 
69
118
  parser.parse!
70
119
 
71
120
  unless (options[:username] && options[:password]) || options[:replay_from_file]
72
- STDERR.puts "Error: Twitter username and password are required fields.\n\n"
121
+ STDERR.puts "Error: Twitter username and password are required fields unless you're replaying from a file.\n\n"
73
122
  STDERR.puts parser
74
123
  exit 1
75
124
  end
@@ -0,0 +1,2478 @@
1
+ abandon -2
2
+ abandoned -2
3
+ abandons -2
4
+ abducted -2
5
+ abduction -2
6
+ abductions -2
7
+ abhor -3
8
+ abhorred -3
9
+ abhorrent -3
10
+ abhors -3
11
+ abilities 2
12
+ ability 2
13
+ aboard 1
14
+ absentee -1
15
+ absentees -1
16
+ absolve 2
17
+ absolved 2
18
+ absolves 2
19
+ absolving 2
20
+ absorbed 1
21
+ abuse -3
22
+ abused -3
23
+ abuses -3
24
+ abusive -3
25
+ accept 1
26
+ accepted 1
27
+ accepting 1
28
+ accepts 1
29
+ accident -2
30
+ accidental -2
31
+ accidentally -2
32
+ accidents -2
33
+ accomplish 2
34
+ accomplished 2
35
+ accomplishes 2
36
+ accusation -2
37
+ accusations -2
38
+ accuse -2
39
+ accused -2
40
+ accuses -2
41
+ accusing -2
42
+ ache -2
43
+ achievable 1
44
+ aching -2
45
+ acquit 2
46
+ acquits 2
47
+ acquitted 2
48
+ acquitting 2
49
+ acrimonious -3
50
+ active 1
51
+ adequate 1
52
+ admire 3
53
+ admired 3
54
+ admires 3
55
+ admiring 3
56
+ admit -1
57
+ admits -1
58
+ admitted -1
59
+ admonish -2
60
+ admonished -2
61
+ adopt 1
62
+ adopts 1
63
+ adorable 3
64
+ adore 3
65
+ adored 3
66
+ adores 3
67
+ advanced 1
68
+ advantage 2
69
+ advantages 2
70
+ adventure 2
71
+ adventures 2
72
+ adventurous 2
73
+ affected -1
74
+ affection 3
75
+ affectionate 3
76
+ afflicted -1
77
+ affronted -1
78
+ afraid -2
79
+ aggravate -2
80
+ aggravated -2
81
+ aggravates -2
82
+ aggravating -2
83
+ aggression -2
84
+ aggressions -2
85
+ aggressive -2
86
+ aghast -2
87
+ agog 2
88
+ agonise -3
89
+ agonised -3
90
+ agonises -3
91
+ agonising -3
92
+ agonize -3
93
+ agonized -3
94
+ agonizes -3
95
+ agonizing -3
96
+ agree 1
97
+ agreeable 2
98
+ agreed 1
99
+ agreement 1
100
+ agrees 1
101
+ alarm -2
102
+ alarmed -2
103
+ alarmist -2
104
+ alarmists -2
105
+ alas -1
106
+ alert -1
107
+ alienation -2
108
+ alive 1
109
+ allergic -2
110
+ allow 1
111
+ alone -2
112
+ amaze 2
113
+ amazed 2
114
+ amazes 2
115
+ amazing 4
116
+ ambitious 2
117
+ ambivalent -1
118
+ amuse 3
119
+ amused 3
120
+ amusement 3
121
+ amusements 3
122
+ anger -3
123
+ angers -3
124
+ angry -3
125
+ anguish -3
126
+ anguished -3
127
+ animosity -2
128
+ annoy -2
129
+ annoyance -2
130
+ annoyed -2
131
+ annoying -2
132
+ annoys -2
133
+ antagonistic -2
134
+ anti -1
135
+ anticipation 1
136
+ anxiety -2
137
+ anxious -2
138
+ apathetic -3
139
+ apathy -3
140
+ apeshit -3
141
+ apocalyptic -2
142
+ apologise -1
143
+ apologised -1
144
+ apologises -1
145
+ apologising -1
146
+ apologize -1
147
+ apologized -1
148
+ apologizes -1
149
+ apologizing -1
150
+ apology -1
151
+ appalled -2
152
+ appalling -2
153
+ appease 2
154
+ appeased 2
155
+ appeases 2
156
+ appeasing 2
157
+ applaud 2
158
+ applauded 2
159
+ applauding 2
160
+ applauds 2
161
+ applause 2
162
+ appreciate 2
163
+ appreciated 2
164
+ appreciates 2
165
+ appreciating 2
166
+ appreciation 2
167
+ apprehensive -2
168
+ approval 2
169
+ approved 2
170
+ approves 2
171
+ ardent 1
172
+ arrest -2
173
+ arrested -3
174
+ arrests -2
175
+ arrogant -2
176
+ ashame -2
177
+ ashamed -2
178
+ ass -4
179
+ assassination -3
180
+ assassinations -3
181
+ asset 2
182
+ assets 2
183
+ assfucking -4
184
+ asshole -4
185
+ astonished 2
186
+ astound 3
187
+ astounded 3
188
+ astounding 3
189
+ astoundingly 3
190
+ astounds 3
191
+ attack -1
192
+ attacked -1
193
+ attacking -1
194
+ attacks -1
195
+ attract 1
196
+ attracted 1
197
+ attracting 2
198
+ attraction 2
199
+ attractions 2
200
+ attracts 1
201
+ audacious 3
202
+ authority 1
203
+ avert -1
204
+ averted -1
205
+ averts -1
206
+ avid 2
207
+ avoid -1
208
+ avoided -1
209
+ avoids -1
210
+ await -1
211
+ awaited -1
212
+ awaits -1
213
+ award 3
214
+ awarded 3
215
+ awards 3
216
+ awesome 4
217
+ awful -3
218
+ awkward -2
219
+ axe -1
220
+ axed -1
221
+ backed 1
222
+ backing 2
223
+ backs 1
224
+ bad -3
225
+ badass -3
226
+ badly -3
227
+ bailout -2
228
+ bamboozle -2
229
+ bamboozled -2
230
+ bamboozles -2
231
+ ban -2
232
+ banish -1
233
+ bankrupt -3
234
+ bankster -3
235
+ banned -2
236
+ bargain 2
237
+ barrier -2
238
+ bastard -5
239
+ bastards -5
240
+ battle -1
241
+ battles -1
242
+ beaten -2
243
+ beatific 3
244
+ beating -1
245
+ beauties 3
246
+ beautiful 3
247
+ beautifully 3
248
+ beautify 3
249
+ belittle -2
250
+ belittled -2
251
+ beloved 3
252
+ benefit 2
253
+ benefits 2
254
+ benefitted 2
255
+ benefitting 2
256
+ bereave -2
257
+ bereaved -2
258
+ bereaves -2
259
+ bereaving -2
260
+ best 3
261
+ betray -3
262
+ betrayal -3
263
+ betrayed -3
264
+ betraying -3
265
+ betrays -3
266
+ better 2
267
+ bias -1
268
+ biased -2
269
+ big 1
270
+ bitch -5
271
+ bitches -5
272
+ bitter -2
273
+ bitterly -2
274
+ bizarre -2
275
+ blah -2
276
+ blame -2
277
+ blamed -2
278
+ blames -2
279
+ blaming -2
280
+ bless 2
281
+ blesses 2
282
+ blessing 3
283
+ blind -1
284
+ bliss 3
285
+ blissful 3
286
+ blithe 2
287
+ block -1
288
+ blockbuster 3
289
+ blocked -1
290
+ blocking -1
291
+ blocks -1
292
+ bloody -3
293
+ blurry -2
294
+ boastful -2
295
+ bold 2
296
+ boldly 2
297
+ bomb -1
298
+ boost 1
299
+ boosted 1
300
+ boosting 1
301
+ boosts 1
302
+ bore -2
303
+ bored -2
304
+ boring -3
305
+ bother -2
306
+ bothered -2
307
+ bothers -2
308
+ bothersome -2
309
+ boycott -2
310
+ boycotted -2
311
+ boycotting -2
312
+ boycotts -2
313
+ brainwashing -3
314
+ brave 2
315
+ breakthrough 3
316
+ breathtaking 5
317
+ bribe -3
318
+ bright 1
319
+ brightest 2
320
+ brightness 1
321
+ brilliant 4
322
+ brisk 2
323
+ broke -1
324
+ broken -1
325
+ brooding -2
326
+ bullied -2
327
+ bullshit -4
328
+ bully -2
329
+ bullying -2
330
+ bummer -2
331
+ buoyant 2
332
+ burden -2
333
+ burdened -2
334
+ burdening -2
335
+ burdens -2
336
+ calm 2
337
+ calmed 2
338
+ calming 2
339
+ calms 2
340
+ can't stand -3
341
+ cannot stand -3
342
+ cancel -1
343
+ cancelled -1
344
+ cancelling -1
345
+ cancels -1
346
+ cancer -1
347
+ capable 1
348
+ captivated 3
349
+ care 2
350
+ carefree 1
351
+ careful 2
352
+ carefully 2
353
+ careless -2
354
+ cares 2
355
+ cashing in -2
356
+ casualty -2
357
+ catastrophe -3
358
+ catastrophic -4
359
+ cautious -1
360
+ celebrate 3
361
+ celebrated 3
362
+ celebrates 3
363
+ celebrating 3
364
+ censor -2
365
+ censored -2
366
+ censors -2
367
+ certain 1
368
+ chagrin -2
369
+ chagrined -2
370
+ challenge -1
371
+ chance 2
372
+ chances 2
373
+ chaos -2
374
+ chaotic -2
375
+ charged -3
376
+ charges -2
377
+ charm 3
378
+ charming 3
379
+ charmless -3
380
+ chastise -3
381
+ chastised -3
382
+ chastises -3
383
+ chastising -3
384
+ cheat -3
385
+ cheated -3
386
+ cheater -3
387
+ cheaters -3
388
+ cheats -3
389
+ cheer 2
390
+ cheered 2
391
+ cheerful 2
392
+ cheering 2
393
+ cheerless -2
394
+ cheers 2
395
+ cheery 3
396
+ cherish 2
397
+ cherished 2
398
+ cherishes 2
399
+ cherishing 2
400
+ chic 2
401
+ childish -2
402
+ chilling -1
403
+ choke -2
404
+ choked -2
405
+ chokes -2
406
+ choking -2
407
+ clarifies 2
408
+ clarity 2
409
+ clash -2
410
+ classy 3
411
+ clean 2
412
+ cleaner 2
413
+ clear 1
414
+ cleared 1
415
+ clearly 1
416
+ clears 1
417
+ clever 2
418
+ clouded -1
419
+ clueless -2
420
+ cock -5
421
+ cocksucker -5
422
+ cocksuckers -5
423
+ cocky -2
424
+ coerced -2
425
+ collapse -2
426
+ collapsed -2
427
+ collapses -2
428
+ collapsing -2
429
+ collide -1
430
+ collides -1
431
+ colliding -1
432
+ collision -2
433
+ collisions -2
434
+ colluding -3
435
+ combat -1
436
+ combats -1
437
+ comedy 1
438
+ comfort 2
439
+ comfortable 2
440
+ comforting 2
441
+ comforts 2
442
+ commend 2
443
+ commended 2
444
+ commit 1
445
+ commitment 2
446
+ commits 1
447
+ committed 1
448
+ committing 1
449
+ compassionate 2
450
+ compelled 1
451
+ competent 2
452
+ competitive 2
453
+ complacent -2
454
+ complain -2
455
+ complained -2
456
+ complains -2
457
+ comprehensive 2
458
+ conciliate 2
459
+ conciliated 2
460
+ conciliates 2
461
+ conciliating 2
462
+ condemn -2
463
+ condemnation -2
464
+ condemned -2
465
+ condemns -2
466
+ confidence 2
467
+ confident 2
468
+ conflict -2
469
+ conflicting -2
470
+ conflictive -2
471
+ conflicts -2
472
+ confuse -2
473
+ confused -2
474
+ confusing -2
475
+ congrats 2
476
+ congratulate 2
477
+ congratulation 2
478
+ congratulations 2
479
+ consent 2
480
+ consents 2
481
+ consolable 2
482
+ conspiracy -3
483
+ constrained -2
484
+ contagion -2
485
+ contagions -2
486
+ contagious -1
487
+ contempt -2
488
+ contemptuous -2
489
+ contemptuously -2
490
+ contend -1
491
+ contender -1
492
+ contending -1
493
+ contentious -2
494
+ contestable -2
495
+ controversial -2
496
+ controversially -2
497
+ convince 1
498
+ convinced 1
499
+ convinces 1
500
+ convivial 2
501
+ cool 1
502
+ cool stuff 3
503
+ cornered -2
504
+ corpse -1
505
+ costly -2
506
+ courage 2
507
+ courageous 2
508
+ courteous 2
509
+ courtesy 2
510
+ cover-up -3
511
+ coward -2
512
+ cowardly -2
513
+ coziness 2
514
+ cramp -1
515
+ crap -3
516
+ crash -2
517
+ crazier -2
518
+ craziest -2
519
+ crazy -2
520
+ creative 2
521
+ crestfallen -2
522
+ cried -2
523
+ cries -2
524
+ crime -3
525
+ criminal -3
526
+ criminals -3
527
+ crisis -3
528
+ critic -2
529
+ criticism -2
530
+ criticize -2
531
+ criticized -2
532
+ criticizes -2
533
+ criticizing -2
534
+ critics -2
535
+ cruel -3
536
+ cruelty -3
537
+ crush -1
538
+ crushed -2
539
+ crushes -1
540
+ crushing -1
541
+ cry -1
542
+ crying -2
543
+ cunt -5
544
+ curious 1
545
+ curse -1
546
+ cut -1
547
+ cute 2
548
+ cuts -1
549
+ cutting -1
550
+ cynic -2
551
+ cynical -2
552
+ cynicism -2
553
+ damage -3
554
+ damages -3
555
+ damn -4
556
+ damned -4
557
+ damnit -4
558
+ danger -2
559
+ daredevil 2
560
+ daring 2
561
+ darkest -2
562
+ darkness -1
563
+ dauntless 2
564
+ dead -3
565
+ deadlock -2
566
+ deafening -1
567
+ dear 2
568
+ dearly 3
569
+ death -2
570
+ debonair 2
571
+ debt -2
572
+ deceit -3
573
+ deceitful -3
574
+ deceive -3
575
+ deceived -3
576
+ deceives -3
577
+ deceiving -3
578
+ deception -3
579
+ decisive 1
580
+ dedicated 2
581
+ defeated -2
582
+ defect -3
583
+ defects -3
584
+ defender 2
585
+ defenders 2
586
+ defenseless -2
587
+ defer -1
588
+ deferring -1
589
+ defiant -1
590
+ deficit -2
591
+ degrade -2
592
+ degraded -2
593
+ degrades -2
594
+ dehumanize -2
595
+ dehumanized -2
596
+ dehumanizes -2
597
+ dehumanizing -2
598
+ deject -2
599
+ dejected -2
600
+ dejecting -2
601
+ dejects -2
602
+ delay -1
603
+ delayed -1
604
+ delight 3
605
+ delighted 3
606
+ delighting 3
607
+ delights 3
608
+ demand -1
609
+ demanded -1
610
+ demanding -1
611
+ demands -1
612
+ demonstration -1
613
+ demoralized -2
614
+ denied -2
615
+ denier -2
616
+ deniers -2
617
+ denies -2
618
+ denounce -2
619
+ denounces -2
620
+ deny -2
621
+ denying -2
622
+ depressed -2
623
+ depressing -2
624
+ derail -2
625
+ derailed -2
626
+ derails -2
627
+ deride -2
628
+ derided -2
629
+ derides -2
630
+ deriding -2
631
+ derision -2
632
+ desirable 2
633
+ desire 1
634
+ desired 2
635
+ desirous 2
636
+ despair -3
637
+ despairing -3
638
+ despairs -3
639
+ desperate -3
640
+ desperately -3
641
+ despondent -3
642
+ destroy -3
643
+ destroyed -3
644
+ destroying -3
645
+ destroys -3
646
+ destruction -3
647
+ destructive -3
648
+ detached -1
649
+ detain -2
650
+ detained -2
651
+ detention -2
652
+ determined 2
653
+ devastate -2
654
+ devastated -2
655
+ devastating -2
656
+ devoted 3
657
+ diamond 1
658
+ dick -4
659
+ dickhead -4
660
+ die -3
661
+ died -3
662
+ difficult -1
663
+ diffident -2
664
+ dilemma -1
665
+ dipshit -3
666
+ dire -3
667
+ direful -3
668
+ dirt -2
669
+ dirtier -2
670
+ dirtiest -2
671
+ dirty -2
672
+ disabling -1
673
+ disadvantage -2
674
+ disadvantaged -2
675
+ disappear -1
676
+ disappeared -1
677
+ disappears -1
678
+ disappoint -2
679
+ disappointed -2
680
+ disappointing -2
681
+ disappointment -2
682
+ disappointments -2
683
+ disappoints -2
684
+ disaster -2
685
+ disasters -2
686
+ disastrous -3
687
+ disbelieve -2
688
+ discard -1
689
+ discarded -1
690
+ discarding -1
691
+ discards -1
692
+ disconsolate -2
693
+ disconsolation -2
694
+ discontented -2
695
+ discord -2
696
+ discounted -1
697
+ discouraged -2
698
+ discredited -2
699
+ disdain -2
700
+ disgrace -2
701
+ disgraced -2
702
+ disguise -1
703
+ disguised -1
704
+ disguises -1
705
+ disguising -1
706
+ disgust -3
707
+ disgusted -3
708
+ disgusting -3
709
+ disheartened -2
710
+ dishonest -2
711
+ disillusioned -2
712
+ disinclined -2
713
+ disjointed -2
714
+ dislike -2
715
+ dismal -2
716
+ dismayed -2
717
+ disorder -2
718
+ disorganized -2
719
+ disoriented -2
720
+ disparage -2
721
+ disparaged -2
722
+ disparages -2
723
+ disparaging -2
724
+ displeased -2
725
+ dispute -2
726
+ disputed -2
727
+ disputes -2
728
+ disputing -2
729
+ disqualified -2
730
+ disquiet -2
731
+ disregard -2
732
+ disregarded -2
733
+ disregarding -2
734
+ disregards -2
735
+ disrespect -2
736
+ disrespected -2
737
+ disruption -2
738
+ disruptions -2
739
+ disruptive -2
740
+ dissatisfied -2
741
+ distort -2
742
+ distorted -2
743
+ distorting -2
744
+ distorts -2
745
+ distract -2
746
+ distracted -2
747
+ distraction -2
748
+ distracts -2
749
+ distress -2
750
+ distressed -2
751
+ distresses -2
752
+ distressing -2
753
+ distrust -3
754
+ distrustful -3
755
+ disturb -2
756
+ disturbed -2
757
+ disturbing -2
758
+ disturbs -2
759
+ dithering -2
760
+ dizzy -1
761
+ dodging -2
762
+ dodgy -2
763
+ does not work -3
764
+ dolorous -2
765
+ dont like -2
766
+ doom -2
767
+ doomed -2
768
+ doubt -1
769
+ doubted -1
770
+ doubtful -1
771
+ doubting -1
772
+ doubts -1
773
+ douche -3
774
+ douchebag -3
775
+ downcast -2
776
+ downhearted -2
777
+ downside -2
778
+ drag -1
779
+ dragged -1
780
+ drags -1
781
+ drained -2
782
+ dread -2
783
+ dreaded -2
784
+ dreadful -3
785
+ dreading -2
786
+ dream 1
787
+ dreams 1
788
+ dreary -2
789
+ droopy -2
790
+ drop -1
791
+ drown -2
792
+ drowned -2
793
+ drowns -2
794
+ drunk -2
795
+ dubious -2
796
+ dud -2
797
+ dull -2
798
+ dumb -3
799
+ dumbass -3
800
+ dump -1
801
+ dumped -2
802
+ dumps -1
803
+ dupe -2
804
+ duped -2
805
+ dysfunction -2
806
+ eager 2
807
+ earnest 2
808
+ ease 2
809
+ easy 1
810
+ ecstatic 4
811
+ eerie -2
812
+ eery -2
813
+ effective 2
814
+ effectively 2
815
+ elated 3
816
+ elation 3
817
+ elegant 2
818
+ elegantly 2
819
+ embarrass -2
820
+ embarrassed -2
821
+ embarrasses -2
822
+ embarrassing -2
823
+ embarrassment -2
824
+ embittered -2
825
+ embrace 1
826
+ emergency -2
827
+ empathetic 2
828
+ emptiness -1
829
+ empty -1
830
+ enchanted 2
831
+ encourage 2
832
+ encouraged 2
833
+ encouragement 2
834
+ encourages 2
835
+ endorse 2
836
+ endorsed 2
837
+ endorsement 2
838
+ endorses 2
839
+ enemies -2
840
+ enemy -2
841
+ energetic 2
842
+ engage 1
843
+ engages 1
844
+ engrossed 1
845
+ enjoy 2
846
+ enjoying 2
847
+ enjoys 2
848
+ enlighten 2
849
+ enlightened 2
850
+ enlightening 2
851
+ enlightens 2
852
+ ennui -2
853
+ enrage -2
854
+ enraged -2
855
+ enrages -2
856
+ enraging -2
857
+ enrapture 3
858
+ enslave -2
859
+ enslaved -2
860
+ enslaves -2
861
+ ensure 1
862
+ ensuring 1
863
+ enterprising 1
864
+ entertaining 2
865
+ enthral 3
866
+ enthusiastic 3
867
+ entitled 1
868
+ entrusted 2
869
+ envies -1
870
+ envious -2
871
+ envy -1
872
+ envying -1
873
+ erroneous -2
874
+ error -2
875
+ errors -2
876
+ escape -1
877
+ escapes -1
878
+ escaping -1
879
+ esteemed 2
880
+ ethical 2
881
+ euphoria 3
882
+ euphoric 4
883
+ eviction -1
884
+ evil -3
885
+ exaggerate -2
886
+ exaggerated -2
887
+ exaggerates -2
888
+ exaggerating -2
889
+ exasperated 2
890
+ excellence 3
891
+ excellent 3
892
+ excite 3
893
+ excited 3
894
+ excitement 3
895
+ exciting 3
896
+ exclude -1
897
+ excluded -2
898
+ exclusion -1
899
+ exclusive 2
900
+ excuse -1
901
+ exempt -1
902
+ exhausted -2
903
+ exhilarated 3
904
+ exhilarates 3
905
+ exhilarating 3
906
+ exonerate 2
907
+ exonerated 2
908
+ exonerates 2
909
+ exonerating 2
910
+ expand 1
911
+ expands 1
912
+ expel -2
913
+ expelled -2
914
+ expelling -2
915
+ expels -2
916
+ exploit -2
917
+ exploited -2
918
+ exploiting -2
919
+ exploits -2
920
+ exploration 1
921
+ explorations 1
922
+ expose -1
923
+ exposed -1
924
+ exposes -1
925
+ exposing -1
926
+ extend 1
927
+ extends 1
928
+ exuberant 4
929
+ exultant 3
930
+ exultantly 3
931
+ fabulous 4
932
+ fad -2
933
+ fag -3
934
+ faggot -3
935
+ faggots -3
936
+ fail -2
937
+ failed -2
938
+ failing -2
939
+ fails -2
940
+ failure -2
941
+ failures -2
942
+ fainthearted -2
943
+ fair 2
944
+ faith 1
945
+ faithful 3
946
+ fake -3
947
+ fakes -3
948
+ faking -3
949
+ fallen -2
950
+ falling -1
951
+ falsified -3
952
+ falsify -3
953
+ fame 1
954
+ fan 3
955
+ fantastic 4
956
+ farce -1
957
+ fascinate 3
958
+ fascinated 3
959
+ fascinates 3
960
+ fascinating 3
961
+ fascist -2
962
+ fascists -2
963
+ fatalities -3
964
+ fatality -3
965
+ fatigue -2
966
+ fatigued -2
967
+ fatigues -2
968
+ fatiguing -2
969
+ favor 2
970
+ favored 2
971
+ favorite 2
972
+ favorited 2
973
+ favorites 2
974
+ favors 2
975
+ fear -2
976
+ fearful -2
977
+ fearing -2
978
+ fearless 2
979
+ fearsome -2
980
+ fed up -3
981
+ feeble -2
982
+ feeling 1
983
+ felonies -3
984
+ felony -3
985
+ fervent 2
986
+ fervid 2
987
+ festive 2
988
+ fiasco -3
989
+ fidgety -2
990
+ fight -1
991
+ fine 2
992
+ fire -2
993
+ fired -2
994
+ firing -2
995
+ fit 1
996
+ fitness 1
997
+ flagship 2
998
+ flees -1
999
+ flop -2
1000
+ flops -2
1001
+ flu -2
1002
+ flustered -2
1003
+ focused 2
1004
+ fond 2
1005
+ fondness 2
1006
+ fool -2
1007
+ foolish -2
1008
+ fools -2
1009
+ forced -1
1010
+ foreclosure -2
1011
+ foreclosures -2
1012
+ forget -1
1013
+ forgetful -2
1014
+ forgive 1
1015
+ forgiving 1
1016
+ forgotten -1
1017
+ fortunate 2
1018
+ frantic -1
1019
+ fraud -4
1020
+ frauds -4
1021
+ fraudster -4
1022
+ fraudsters -4
1023
+ fraudulence -4
1024
+ fraudulent -4
1025
+ free 1
1026
+ freedom 2
1027
+ frenzy -3
1028
+ fresh 1
1029
+ friendly 2
1030
+ fright -2
1031
+ frightened -2
1032
+ frightening -3
1033
+ frikin -2
1034
+ frisky 2
1035
+ frowning -1
1036
+ frustrate -2
1037
+ frustrated -2
1038
+ frustrates -2
1039
+ frustrating -2
1040
+ frustration -2
1041
+ ftw 3
1042
+ fuck -4
1043
+ fucked -4
1044
+ fucker -4
1045
+ fuckers -4
1046
+ fuckface -4
1047
+ fuckhead -4
1048
+ fucking -4
1049
+ fucktard -4
1050
+ fud -3
1051
+ fuked -4
1052
+ fuking -4
1053
+ fulfill 2
1054
+ fulfilled 2
1055
+ fulfills 2
1056
+ fuming -2
1057
+ fun 4
1058
+ funeral -1
1059
+ funerals -1
1060
+ funky 2
1061
+ funnier 4
1062
+ funny 4
1063
+ furious -3
1064
+ futile 2
1065
+ gag -2
1066
+ gagged -2
1067
+ gain 2
1068
+ gained 2
1069
+ gaining 2
1070
+ gains 2
1071
+ gallant 3
1072
+ gallantly 3
1073
+ gallantry 3
1074
+ generous 2
1075
+ genial 3
1076
+ ghost -1
1077
+ giddy -2
1078
+ gift 2
1079
+ glad 3
1080
+ glamorous 3
1081
+ glamourous 3
1082
+ glee 3
1083
+ gleeful 3
1084
+ gloom -1
1085
+ gloomy -2
1086
+ glorious 2
1087
+ glory 2
1088
+ glum -2
1089
+ god 1
1090
+ goddamn -3
1091
+ godsend 4
1092
+ good 3
1093
+ goodness 3
1094
+ grace 1
1095
+ gracious 3
1096
+ grand 3
1097
+ grant 1
1098
+ granted 1
1099
+ granting 1
1100
+ grants 1
1101
+ grateful 3
1102
+ gratification 2
1103
+ grave -2
1104
+ gray -1
1105
+ great 3
1106
+ greater 3
1107
+ greatest 3
1108
+ greed -3
1109
+ greedy -2
1110
+ green wash -3
1111
+ green washing -3
1112
+ greenwash -3
1113
+ greenwasher -3
1114
+ greenwashers -3
1115
+ greenwashing -3
1116
+ greet 1
1117
+ greeted 1
1118
+ greeting 1
1119
+ greetings 2
1120
+ greets 1
1121
+ grey -1
1122
+ grief -2
1123
+ grieved -2
1124
+ gross -2
1125
+ growing 1
1126
+ growth 2
1127
+ guarantee 1
1128
+ guilt -3
1129
+ guilty -3
1130
+ gullibility -2
1131
+ gullible -2
1132
+ gun -1
1133
+ ha 2
1134
+ hacked -1
1135
+ haha 3
1136
+ hahaha 3
1137
+ hahahah 3
1138
+ hail 2
1139
+ hailed 2
1140
+ hapless -2
1141
+ haplessness -2
1142
+ happiness 3
1143
+ happy 3
1144
+ hard -1
1145
+ hardier 2
1146
+ hardship -2
1147
+ hardy 2
1148
+ harm -2
1149
+ harmed -2
1150
+ harmful -2
1151
+ harming -2
1152
+ harms -2
1153
+ harried -2
1154
+ harsh -2
1155
+ harsher -2
1156
+ harshest -2
1157
+ hate -3
1158
+ hated -3
1159
+ haters -3
1160
+ hates -3
1161
+ hating -3
1162
+ haunt -1
1163
+ haunted -2
1164
+ haunting 1
1165
+ haunts -1
1166
+ havoc -2
1167
+ healthy 2
1168
+ heartbreaking -3
1169
+ heartbroken -3
1170
+ heartfelt 3
1171
+ heaven 2
1172
+ heavenly 4
1173
+ heavyhearted -2
1174
+ hell -4
1175
+ help 2
1176
+ helpful 2
1177
+ helping 2
1178
+ helpless -2
1179
+ helps 2
1180
+ hero 2
1181
+ heroes 2
1182
+ heroic 3
1183
+ hesitant -2
1184
+ hesitate -2
1185
+ hid -1
1186
+ hide -1
1187
+ hides -1
1188
+ hiding -1
1189
+ highlight 2
1190
+ hilarious 2
1191
+ hindrance -2
1192
+ hoax -2
1193
+ homesick -2
1194
+ honest 2
1195
+ honor 2
1196
+ honored 2
1197
+ honoring 2
1198
+ honour 2
1199
+ honoured 2
1200
+ honouring 2
1201
+ hooligan -2
1202
+ hooliganism -2
1203
+ hooligans -2
1204
+ hope 2
1205
+ hopeful 2
1206
+ hopefully 2
1207
+ hopeless -2
1208
+ hopelessness -2
1209
+ hopes 2
1210
+ hoping 2
1211
+ horrendous -3
1212
+ horrible -3
1213
+ horrific -3
1214
+ horrified -3
1215
+ hostile -2
1216
+ huckster -2
1217
+ hug 2
1218
+ huge 1
1219
+ hugs 2
1220
+ humerous 3
1221
+ humiliated -3
1222
+ humiliation -3
1223
+ humor 2
1224
+ humorous 2
1225
+ humour 2
1226
+ humourous 2
1227
+ hunger -2
1228
+ hurrah 5
1229
+ hurt -2
1230
+ hurting -2
1231
+ hurts -2
1232
+ hypocritical -2
1233
+ hysteria -3
1234
+ hysterical -3
1235
+ hysterics -3
1236
+ idiot -3
1237
+ idiotic -3
1238
+ ignorance -2
1239
+ ignorant -2
1240
+ ignore -1
1241
+ ignored -2
1242
+ ignores -1
1243
+ ill -2
1244
+ illegal -3
1245
+ illiteracy -2
1246
+ illness -2
1247
+ illnesses -2
1248
+ imbecile -3
1249
+ immobilized -1
1250
+ immortal 2
1251
+ immune 1
1252
+ impatient -2
1253
+ imperfect -2
1254
+ importance 2
1255
+ important 2
1256
+ impose -1
1257
+ imposed -1
1258
+ imposes -1
1259
+ imposing -1
1260
+ impotent -2
1261
+ impress 3
1262
+ impressed 3
1263
+ impresses 3
1264
+ impressive 3
1265
+ imprisoned -2
1266
+ improve 2
1267
+ improved 2
1268
+ improvement 2
1269
+ improves 2
1270
+ improving 2
1271
+ inability -2
1272
+ inaction -2
1273
+ inadequate -2
1274
+ incapable -2
1275
+ incapacitated -2
1276
+ incensed -2
1277
+ incompetence -2
1278
+ incompetent -2
1279
+ inconsiderate -2
1280
+ inconvenience -2
1281
+ inconvenient -2
1282
+ increase 1
1283
+ increased 1
1284
+ indecisive -2
1285
+ indestructible 2
1286
+ indifference -2
1287
+ indifferent -2
1288
+ indignant -2
1289
+ indignation -2
1290
+ indoctrinate -2
1291
+ indoctrinated -2
1292
+ indoctrinates -2
1293
+ indoctrinating -2
1294
+ ineffective -2
1295
+ ineffectively -2
1296
+ infatuated 2
1297
+ infatuation 2
1298
+ infected -2
1299
+ inferior -2
1300
+ inflamed -2
1301
+ influential 2
1302
+ infringement -2
1303
+ infuriate -2
1304
+ infuriated -2
1305
+ infuriates -2
1306
+ infuriating -2
1307
+ inhibit -1
1308
+ injured -2
1309
+ injury -2
1310
+ injustice -2
1311
+ innovate 1
1312
+ innovates 1
1313
+ innovation 1
1314
+ innovative 2
1315
+ inquisition -2
1316
+ inquisitive 2
1317
+ insane -2
1318
+ insanity -2
1319
+ insecure -2
1320
+ insensitive -2
1321
+ insensitivity -2
1322
+ insignificant -2
1323
+ insipid -2
1324
+ inspiration 2
1325
+ inspirational 2
1326
+ inspire 2
1327
+ inspired 2
1328
+ inspires 2
1329
+ inspiring 3
1330
+ insult -2
1331
+ insulted -2
1332
+ insulting -2
1333
+ insults -2
1334
+ intact 2
1335
+ integrity 2
1336
+ intelligent 2
1337
+ intense 1
1338
+ interest 1
1339
+ interested 2
1340
+ interesting 2
1341
+ interests 1
1342
+ interrogated -2
1343
+ interrupt -2
1344
+ interrupted -2
1345
+ interrupting -2
1346
+ interruption -2
1347
+ interrupts -2
1348
+ intimidate -2
1349
+ intimidated -2
1350
+ intimidates -2
1351
+ intimidating -2
1352
+ intimidation -2
1353
+ intricate 2
1354
+ intrigues 1
1355
+ invincible 2
1356
+ invite 1
1357
+ inviting 1
1358
+ invulnerable 2
1359
+ irate -3
1360
+ ironic -1
1361
+ irony -1
1362
+ irrational -1
1363
+ irresistible 2
1364
+ irresolute -2
1365
+ irresponsible 2
1366
+ irreversible -1
1367
+ irritate -3
1368
+ irritated -3
1369
+ irritating -3
1370
+ isolated -1
1371
+ itchy -2
1372
+ jackass -4
1373
+ jackasses -4
1374
+ jailed -2
1375
+ jaunty 2
1376
+ jealous -2
1377
+ jeopardy -2
1378
+ jerk -3
1379
+ jesus 1
1380
+ jewel 1
1381
+ jewels 1
1382
+ jocular 2
1383
+ join 1
1384
+ joke 2
1385
+ jokes 2
1386
+ jolly 2
1387
+ jovial 2
1388
+ joy 3
1389
+ joyful 3
1390
+ joyfully 3
1391
+ joyless -2
1392
+ joyous 3
1393
+ jubilant 3
1394
+ jumpy -1
1395
+ justice 2
1396
+ justifiably 2
1397
+ justified 2
1398
+ keen 1
1399
+ kill -3
1400
+ killed -3
1401
+ killing -3
1402
+ kills -3
1403
+ kind 2
1404
+ kinder 2
1405
+ kiss 2
1406
+ kudos 3
1407
+ lack -2
1408
+ lackadaisical -2
1409
+ lag -1
1410
+ lagged -2
1411
+ lagging -2
1412
+ lags -2
1413
+ lame -2
1414
+ landmark 2
1415
+ laugh 1
1416
+ laughed 1
1417
+ laughing 1
1418
+ laughs 1
1419
+ laughting 1
1420
+ launched 1
1421
+ lawl 3
1422
+ lawsuit -2
1423
+ lawsuits -2
1424
+ lazy -1
1425
+ leak -1
1426
+ leaked -1
1427
+ leave -1
1428
+ legal 1
1429
+ legally 1
1430
+ lenient 1
1431
+ lethargic -2
1432
+ lethargy -2
1433
+ liar -3
1434
+ liars -3
1435
+ libelous -2
1436
+ lied -2
1437
+ lifesaver 4
1438
+ lighthearted 1
1439
+ like 2
1440
+ liked 2
1441
+ likes 2
1442
+ limitation -1
1443
+ limited -1
1444
+ limits -1
1445
+ litigation -1
1446
+ litigious -2
1447
+ lively 2
1448
+ livid -2
1449
+ lmao 4
1450
+ lmfao 4
1451
+ loathe -3
1452
+ loathed -3
1453
+ loathes -3
1454
+ loathing -3
1455
+ lobby -2
1456
+ lobbying -2
1457
+ lol 3
1458
+ lonely -2
1459
+ lonesome -2
1460
+ longing -1
1461
+ loom -1
1462
+ loomed -1
1463
+ looming -1
1464
+ looms -1
1465
+ loose -3
1466
+ looses -3
1467
+ loser -3
1468
+ losing -3
1469
+ loss -3
1470
+ lost -3
1471
+ lovable 3
1472
+ love 3
1473
+ loved 3
1474
+ lovelies 3
1475
+ lovely 3
1476
+ loving 2
1477
+ lowest -1
1478
+ loyal 3
1479
+ loyalty 3
1480
+ luck 3
1481
+ luckily 3
1482
+ lucky 3
1483
+ lugubrious -2
1484
+ lunatic -3
1485
+ lunatics -3
1486
+ lurk -1
1487
+ lurking -1
1488
+ lurks -1
1489
+ mad -3
1490
+ maddening -3
1491
+ made-up -1
1492
+ madly -3
1493
+ madness -3
1494
+ mandatory -1
1495
+ manipulated -1
1496
+ manipulating -1
1497
+ manipulation -1
1498
+ marvel 3
1499
+ marvelous 3
1500
+ marvels 3
1501
+ masterpiece 4
1502
+ masterpieces 4
1503
+ matter 1
1504
+ matters 1
1505
+ mature 2
1506
+ meaningful 2
1507
+ meaningless -2
1508
+ medal 3
1509
+ mediocrity -3
1510
+ meditative 1
1511
+ melancholy -2
1512
+ menace -2
1513
+ menaced -2
1514
+ mercy 2
1515
+ merry 3
1516
+ mess -2
1517
+ messed -2
1518
+ messing up -2
1519
+ methodical 2
1520
+ mindless -2
1521
+ miracle 4
1522
+ mirth 3
1523
+ mirthful 3
1524
+ mirthfully 3
1525
+ misbehave -2
1526
+ misbehaved -2
1527
+ misbehaves -2
1528
+ misbehaving -2
1529
+ mischief -1
1530
+ mischiefs -1
1531
+ miserable -3
1532
+ misery -2
1533
+ misgiving -2
1534
+ misinformation -2
1535
+ misinformed -2
1536
+ misinterpreted -2
1537
+ misleading -3
1538
+ misread -1
1539
+ misreporting -2
1540
+ misrepresentation -2
1541
+ miss -2
1542
+ missed -2
1543
+ missing -2
1544
+ mistake -2
1545
+ mistaken -2
1546
+ mistakes -2
1547
+ mistaking -2
1548
+ misunderstand -2
1549
+ misunderstanding -2
1550
+ misunderstands -2
1551
+ misunderstood -2
1552
+ moan -2
1553
+ moaned -2
1554
+ moaning -2
1555
+ moans -2
1556
+ mock -2
1557
+ mocked -2
1558
+ mocking -2
1559
+ mocks -2
1560
+ mongering -2
1561
+ monopolize -2
1562
+ monopolized -2
1563
+ monopolizes -2
1564
+ monopolizing -2
1565
+ moody -1
1566
+ mope -1
1567
+ moping -1
1568
+ moron -3
1569
+ motherfucker -5
1570
+ motherfucking -5
1571
+ motivate 1
1572
+ motivated 2
1573
+ motivating 2
1574
+ motivation 1
1575
+ mourn -2
1576
+ mourned -2
1577
+ mournful -2
1578
+ mourning -2
1579
+ mourns -2
1580
+ mumpish -2
1581
+ murder -2
1582
+ murderer -2
1583
+ murdering -3
1584
+ murderous -3
1585
+ murders -2
1586
+ myth -1
1587
+ n00b -2
1588
+ naive -2
1589
+ nasty -3
1590
+ natural 1
1591
+ naïve -2
1592
+ needy -2
1593
+ negative -2
1594
+ negativity -2
1595
+ neglect -2
1596
+ neglected -2
1597
+ neglecting -2
1598
+ neglects -2
1599
+ nerves -1
1600
+ nervous -2
1601
+ nervously -2
1602
+ nice 3
1603
+ nifty 2
1604
+ niggas -5
1605
+ nigger -5
1606
+ no -1
1607
+ no fun -3
1608
+ noble 2
1609
+ noisy -1
1610
+ nonsense -2
1611
+ noob -2
1612
+ nosey -2
1613
+ not good -2
1614
+ not working -3
1615
+ notorious -2
1616
+ novel 2
1617
+ numb -1
1618
+ nuts -3
1619
+ obliterate -2
1620
+ obliterated -2
1621
+ obnoxious -3
1622
+ obscene -2
1623
+ obsessed 2
1624
+ obsolete -2
1625
+ obstacle -2
1626
+ obstacles -2
1627
+ obstinate -2
1628
+ odd -2
1629
+ offend -2
1630
+ offended -2
1631
+ offender -2
1632
+ offending -2
1633
+ offends -2
1634
+ offline -1
1635
+ oks 2
1636
+ ominous 3
1637
+ once-in-a-lifetime 3
1638
+ opportunities 2
1639
+ opportunity 2
1640
+ oppressed -2
1641
+ oppressive -2
1642
+ optimism 2
1643
+ optimistic 2
1644
+ optionless -2
1645
+ outcry -2
1646
+ outmaneuvered -2
1647
+ outrage -3
1648
+ outraged -3
1649
+ outreach 2
1650
+ outstanding 5
1651
+ overjoyed 4
1652
+ overload -1
1653
+ overlooked -1
1654
+ overreact -2
1655
+ overreacted -2
1656
+ overreaction -2
1657
+ overreacts -2
1658
+ oversell -2
1659
+ overselling -2
1660
+ oversells -2
1661
+ oversimplification -2
1662
+ oversimplified -2
1663
+ oversimplifies -2
1664
+ oversimplify -2
1665
+ overstatement -2
1666
+ overstatements -2
1667
+ overweight -1
1668
+ oxymoron -1
1669
+ pain -2
1670
+ pained -2
1671
+ panic -3
1672
+ panicked -3
1673
+ panics -3
1674
+ paradise 3
1675
+ paradox -1
1676
+ pardon 2
1677
+ pardoned 2
1678
+ pardoning 2
1679
+ pardons 2
1680
+ parley -1
1681
+ passionate 2
1682
+ passive -1
1683
+ passively -1
1684
+ pathetic -2
1685
+ pay -1
1686
+ peace 2
1687
+ peaceful 2
1688
+ peacefully 2
1689
+ penalty -2
1690
+ pensive -1
1691
+ perfect 3
1692
+ perfected 2
1693
+ perfectly 3
1694
+ perfects 2
1695
+ peril -2
1696
+ perjury -3
1697
+ perpetrator -2
1698
+ perpetrators -2
1699
+ perplexed -2
1700
+ persecute -2
1701
+ persecuted -2
1702
+ persecutes -2
1703
+ persecuting -2
1704
+ perturbed -2
1705
+ pesky -2
1706
+ pessimism -2
1707
+ pessimistic -2
1708
+ petrified -2
1709
+ phobic -2
1710
+ picturesque 2
1711
+ pileup -1
1712
+ pique -2
1713
+ piqued -2
1714
+ piss -4
1715
+ pissed -4
1716
+ pissing -3
1717
+ piteous -2
1718
+ pitied -1
1719
+ pity -2
1720
+ playful 2
1721
+ pleasant 3
1722
+ please 1
1723
+ pleased 3
1724
+ pleasure 3
1725
+ poised -2
1726
+ poison -2
1727
+ poisoned -2
1728
+ poisons -2
1729
+ pollute -2
1730
+ polluted -2
1731
+ polluter -2
1732
+ polluters -2
1733
+ pollutes -2
1734
+ poor -2
1735
+ poorer -2
1736
+ poorest -2
1737
+ popular 3
1738
+ positive 2
1739
+ positively 2
1740
+ possessive -2
1741
+ postpone -1
1742
+ postponed -1
1743
+ postpones -1
1744
+ postponing -1
1745
+ poverty -1
1746
+ powerful 2
1747
+ powerless -2
1748
+ praise 3
1749
+ praised 3
1750
+ praises 3
1751
+ praising 3
1752
+ pray 1
1753
+ praying 1
1754
+ prays 1
1755
+ prblm -2
1756
+ prblms -2
1757
+ prepared 1
1758
+ pressure -1
1759
+ pressured -2
1760
+ pretend -1
1761
+ pretending -1
1762
+ pretends -1
1763
+ pretty 1
1764
+ prevent -1
1765
+ prevented -1
1766
+ preventing -1
1767
+ prevents -1
1768
+ prick -5
1769
+ prison -2
1770
+ prisoner -2
1771
+ prisoners -2
1772
+ privileged 2
1773
+ proactive 2
1774
+ problem -2
1775
+ problems -2
1776
+ profiteer -2
1777
+ progress 2
1778
+ prominent 2
1779
+ promise 1
1780
+ promised 1
1781
+ promises 1
1782
+ promote 1
1783
+ promoted 1
1784
+ promotes 1
1785
+ promoting 1
1786
+ propaganda -2
1787
+ prosecute -1
1788
+ prosecuted -2
1789
+ prosecutes -1
1790
+ prosecution -1
1791
+ prospect 1
1792
+ prospects 1
1793
+ prosperous 3
1794
+ protect 1
1795
+ protected 1
1796
+ protects 1
1797
+ protest -2
1798
+ protesters -2
1799
+ protesting -2
1800
+ protests -2
1801
+ proud 2
1802
+ proudly 2
1803
+ provoke -1
1804
+ provoked -1
1805
+ provokes -1
1806
+ provoking -1
1807
+ pseudoscience -3
1808
+ punish -2
1809
+ punished -2
1810
+ punishes -2
1811
+ punitive -2
1812
+ pushy -1
1813
+ puzzled -2
1814
+ quaking -2
1815
+ questionable -2
1816
+ questioned -1
1817
+ questioning -1
1818
+ racism -3
1819
+ racist -3
1820
+ racists -3
1821
+ rage -2
1822
+ rageful -2
1823
+ rainy -1
1824
+ rant -3
1825
+ ranter -3
1826
+ ranters -3
1827
+ rants -3
1828
+ rape -4
1829
+ rapist -4
1830
+ rapture 2
1831
+ raptured 2
1832
+ raptures 2
1833
+ rapturous 4
1834
+ rash -2
1835
+ ratified 2
1836
+ reach 1
1837
+ reached 1
1838
+ reaches 1
1839
+ reaching 1
1840
+ reassure 1
1841
+ reassured 1
1842
+ reassures 1
1843
+ reassuring 2
1844
+ rebellion -2
1845
+ recession -2
1846
+ reckless -2
1847
+ recommend 2
1848
+ recommended 2
1849
+ recommends 2
1850
+ redeemed 2
1851
+ refuse -2
1852
+ refused -2
1853
+ refusing -2
1854
+ regret -2
1855
+ regretful -2
1856
+ regrets -2
1857
+ regretted -2
1858
+ regretting -2
1859
+ reject -1
1860
+ rejected -1
1861
+ rejecting -1
1862
+ rejects -1
1863
+ rejoice 4
1864
+ rejoiced 4
1865
+ rejoices 4
1866
+ rejoicing 4
1867
+ relaxed 2
1868
+ relentless -1
1869
+ reliant 2
1870
+ relieve 1
1871
+ relieved 2
1872
+ relieves 1
1873
+ relieving 2
1874
+ relishing 2
1875
+ remarkable 2
1876
+ remorse -2
1877
+ repulse -1
1878
+ repulsed -2
1879
+ rescue 2
1880
+ rescued 2
1881
+ rescues 2
1882
+ resentful -2
1883
+ resign -1
1884
+ resigned -1
1885
+ resigning -1
1886
+ resigns -1
1887
+ resolute 2
1888
+ resolve 2
1889
+ resolved 2
1890
+ resolves 2
1891
+ resolving 2
1892
+ respected 2
1893
+ responsible 2
1894
+ responsive 2
1895
+ restful 2
1896
+ restless -2
1897
+ restore 1
1898
+ restored 1
1899
+ restores 1
1900
+ restoring 1
1901
+ restrict -2
1902
+ restricted -2
1903
+ restricting -2
1904
+ restriction -2
1905
+ restricts -2
1906
+ retained -1
1907
+ retard -2
1908
+ retarded -2
1909
+ retreat -1
1910
+ revenge -2
1911
+ revengeful -2
1912
+ revered 2
1913
+ revive 2
1914
+ revives 2
1915
+ reward 2
1916
+ rewarded 2
1917
+ rewarding 2
1918
+ rewards 2
1919
+ rich 2
1920
+ ridiculous -3
1921
+ rig -1
1922
+ rigged -1
1923
+ right direction 3
1924
+ rigorous 3
1925
+ rigorously 3
1926
+ riot -2
1927
+ riots -2
1928
+ risk -2
1929
+ risks -2
1930
+ rob -2
1931
+ robber -2
1932
+ robed -2
1933
+ robing -2
1934
+ robs -2
1935
+ robust 2
1936
+ rofl 4
1937
+ roflcopter 4
1938
+ roflmao 4
1939
+ romance 2
1940
+ rotfl 4
1941
+ rotflmfao 4
1942
+ rotflol 4
1943
+ ruin -2
1944
+ ruined -2
1945
+ ruining -2
1946
+ ruins -2
1947
+ sabotage -2
1948
+ sad -2
1949
+ sadden -2
1950
+ saddened -2
1951
+ sadly -2
1952
+ safe 1
1953
+ safely 1
1954
+ safety 1
1955
+ salient 1
1956
+ sappy -1
1957
+ sarcastic -2
1958
+ satisfied 2
1959
+ save 2
1960
+ saved 2
1961
+ scam -2
1962
+ scams -2
1963
+ scandal -3
1964
+ scandalous -3
1965
+ scandals -3
1966
+ scapegoat -2
1967
+ scapegoats -2
1968
+ scare -2
1969
+ scared -2
1970
+ scary -2
1971
+ sceptical -2
1972
+ scold -2
1973
+ scoop 3
1974
+ scorn -2
1975
+ scornful -2
1976
+ scream -2
1977
+ screamed -2
1978
+ screaming -2
1979
+ screams -2
1980
+ screwed -2
1981
+ screwed up -3
1982
+ scumbag -4
1983
+ secure 2
1984
+ secured 2
1985
+ secures 2
1986
+ sedition -2
1987
+ seditious -2
1988
+ seduced -1
1989
+ self-confident 2
1990
+ self-deluded -2
1991
+ selfish -3
1992
+ selfishness -3
1993
+ sentence -2
1994
+ sentenced -2
1995
+ sentences -2
1996
+ sentencing -2
1997
+ serene 2
1998
+ severe -2
1999
+ sexy 3
2000
+ shaky -2
2001
+ shame -2
2002
+ shamed -2
2003
+ shameful -2
2004
+ share 1
2005
+ shared 1
2006
+ shares 1
2007
+ shattered -2
2008
+ shit -4
2009
+ shithead -4
2010
+ shitty -3
2011
+ shock -2
2012
+ shocked -2
2013
+ shocking -2
2014
+ shocks -2
2015
+ shoot -1
2016
+ short-sighted -2
2017
+ short-sightedness -2
2018
+ shortage -2
2019
+ shortages -2
2020
+ shrew -4
2021
+ shy -1
2022
+ sick -2
2023
+ sigh -2
2024
+ significance 1
2025
+ significant 1
2026
+ silencing -1
2027
+ silly -1
2028
+ sincere 2
2029
+ sincerely 2
2030
+ sincerest 2
2031
+ sincerity 2
2032
+ sinful -3
2033
+ singleminded -2
2034
+ skeptic -2
2035
+ skeptical -2
2036
+ skepticism -2
2037
+ skeptics -2
2038
+ slam -2
2039
+ slash -2
2040
+ slashed -2
2041
+ slashes -2
2042
+ slashing -2
2043
+ slavery -3
2044
+ sleeplessness -2
2045
+ slick 2
2046
+ slicker 2
2047
+ slickest 2
2048
+ sluggish -2
2049
+ slut -5
2050
+ smart 1
2051
+ smarter 2
2052
+ smartest 2
2053
+ smear -2
2054
+ smile 2
2055
+ smiled 2
2056
+ smiles 2
2057
+ smiling 2
2058
+ smog -2
2059
+ sneaky -1
2060
+ snub -2
2061
+ snubbed -2
2062
+ snubbing -2
2063
+ snubs -2
2064
+ sobering 1
2065
+ solemn -1
2066
+ solid 2
2067
+ solidarity 2
2068
+ solution 1
2069
+ solutions 1
2070
+ solve 1
2071
+ solved 1
2072
+ solves 1
2073
+ solving 1
2074
+ somber -2
2075
+ some kind 0
2076
+ son-of-a-bitch -5
2077
+ soothe 3
2078
+ soothed 3
2079
+ soothing 3
2080
+ sophisticated 2
2081
+ sore -1
2082
+ sorrow -2
2083
+ sorrowful -2
2084
+ sorry -1
2085
+ spam -2
2086
+ spammer -3
2087
+ spammers -3
2088
+ spamming -2
2089
+ spark 1
2090
+ sparkle 3
2091
+ sparkles 3
2092
+ sparkling 3
2093
+ speculative -2
2094
+ spirit 1
2095
+ spirited 2
2096
+ spiritless -2
2097
+ spiteful -2
2098
+ splendid 3
2099
+ sprightly 2
2100
+ squelched -1
2101
+ stab -2
2102
+ stabbed -2
2103
+ stable 2
2104
+ stabs -2
2105
+ stall -2
2106
+ stalled -2
2107
+ stalling -2
2108
+ stamina 2
2109
+ stampede -2
2110
+ startled -2
2111
+ starve -2
2112
+ starved -2
2113
+ starves -2
2114
+ starving -2
2115
+ steadfast 2
2116
+ steal -2
2117
+ steals -2
2118
+ stereotype -2
2119
+ stereotyped -2
2120
+ stifled -1
2121
+ stimulate 1
2122
+ stimulated 1
2123
+ stimulates 1
2124
+ stimulating 2
2125
+ stingy -2
2126
+ stolen -2
2127
+ stop -1
2128
+ stopped -1
2129
+ stopping -1
2130
+ stops -1
2131
+ stout 2
2132
+ straight 1
2133
+ strange -1
2134
+ strangely -1
2135
+ strangled -2
2136
+ strength 2
2137
+ strengthen 2
2138
+ strengthened 2
2139
+ strengthening 2
2140
+ strengthens 2
2141
+ stressed -2
2142
+ stressor -2
2143
+ stressors -2
2144
+ stricken -2
2145
+ strike -1
2146
+ strikers -2
2147
+ strikes -1
2148
+ strong 2
2149
+ stronger 2
2150
+ strongest 2
2151
+ struck -1
2152
+ struggle -2
2153
+ struggled -2
2154
+ struggles -2
2155
+ struggling -2
2156
+ stubborn -2
2157
+ stuck -2
2158
+ stunned -2
2159
+ stunning 4
2160
+ stupid -2
2161
+ stupidly -2
2162
+ suave 2
2163
+ substantial 1
2164
+ substantially 1
2165
+ subversive -2
2166
+ success 2
2167
+ successful 3
2168
+ suck -3
2169
+ sucks -3
2170
+ suffer -2
2171
+ suffering -2
2172
+ suffers -2
2173
+ suicidal -2
2174
+ suicide -2
2175
+ suing -2
2176
+ sulking -2
2177
+ sulky -2
2178
+ sullen -2
2179
+ sunshine 2
2180
+ super 3
2181
+ superb 5
2182
+ superior 2
2183
+ support 2
2184
+ supported 2
2185
+ supporter 1
2186
+ supporters 1
2187
+ supporting 1
2188
+ supportive 2
2189
+ supports 2
2190
+ survived 2
2191
+ surviving 2
2192
+ survivor 2
2193
+ suspect -1
2194
+ suspected -1
2195
+ suspecting -1
2196
+ suspects -1
2197
+ suspend -1
2198
+ suspended -1
2199
+ suspicious -2
2200
+ swear -2
2201
+ swearing -2
2202
+ swears -2
2203
+ sweet 2
2204
+ swift 2
2205
+ swiftly 2
2206
+ swindle -3
2207
+ swindles -3
2208
+ swindling -3
2209
+ sympathetic 2
2210
+ sympathy 2
2211
+ tard -2
2212
+ tears -2
2213
+ tender 2
2214
+ tense -2
2215
+ tension -1
2216
+ terrible -3
2217
+ terribly -3
2218
+ terrific 4
2219
+ terrified -3
2220
+ terror -3
2221
+ terrorize -3
2222
+ terrorized -3
2223
+ terrorizes -3
2224
+ thank 2
2225
+ thankful 2
2226
+ thanks 2
2227
+ thorny -2
2228
+ thoughtful 2
2229
+ thoughtless -2
2230
+ threat -2
2231
+ threaten -2
2232
+ threatened -2
2233
+ threatening -2
2234
+ threatens -2
2235
+ threats -2
2236
+ thrilled 5
2237
+ thwart -2
2238
+ thwarted -2
2239
+ thwarting -2
2240
+ thwarts -2
2241
+ timid -2
2242
+ timorous -2
2243
+ tired -2
2244
+ tits -2
2245
+ tolerant 2
2246
+ toothless -2
2247
+ top 2
2248
+ tops 2
2249
+ torn -2
2250
+ torture -4
2251
+ tortured -4
2252
+ tortures -4
2253
+ torturing -4
2254
+ totalitarian -2
2255
+ totalitarianism -2
2256
+ tout -2
2257
+ touted -2
2258
+ touting -2
2259
+ touts -2
2260
+ tragedy -2
2261
+ tragic -2
2262
+ tranquil 2
2263
+ trap -1
2264
+ trapped -2
2265
+ trauma -3
2266
+ traumatic -3
2267
+ travesty -2
2268
+ treason -3
2269
+ treasonous -3
2270
+ treasure 2
2271
+ treasures 2
2272
+ trembling -2
2273
+ tremulous -2
2274
+ tricked -2
2275
+ trickery -2
2276
+ triumph 4
2277
+ triumphant 4
2278
+ trouble -2
2279
+ troubled -2
2280
+ troubles -2
2281
+ true 2
2282
+ trust 1
2283
+ trusted 2
2284
+ tumor -2
2285
+ twat -5
2286
+ ugly -3
2287
+ unacceptable -2
2288
+ unappreciated -2
2289
+ unapproved -2
2290
+ unaware -2
2291
+ unbelievable -1
2292
+ unbelieving -1
2293
+ unbiased 2
2294
+ uncertain -1
2295
+ unclear -1
2296
+ uncomfortable -2
2297
+ unconcerned -2
2298
+ unconfirmed -1
2299
+ unconvinced -1
2300
+ uncredited -1
2301
+ undecided -1
2302
+ underestimate -1
2303
+ underestimated -1
2304
+ underestimates -1
2305
+ underestimating -1
2306
+ undermine -2
2307
+ undermined -2
2308
+ undermines -2
2309
+ undermining -2
2310
+ undeserving -2
2311
+ undesirable -2
2312
+ uneasy -2
2313
+ unemployment -2
2314
+ unequal -1
2315
+ unequaled 2
2316
+ unethical -2
2317
+ unfair -2
2318
+ unfocused -2
2319
+ unfulfilled -2
2320
+ unhappy -2
2321
+ unhealthy -2
2322
+ unified 1
2323
+ unimpressed -2
2324
+ unintelligent -2
2325
+ united 1
2326
+ unjust -2
2327
+ unlovable -2
2328
+ unloved -2
2329
+ unmatched 1
2330
+ unmotivated -2
2331
+ unprofessional -2
2332
+ unresearched -2
2333
+ unsatisfied -2
2334
+ unsecured -2
2335
+ unsettled -1
2336
+ unsophisticated -2
2337
+ unstable -2
2338
+ unstoppable 2
2339
+ unsupported -2
2340
+ unsure -1
2341
+ untarnished 2
2342
+ unwanted -2
2343
+ unworthy -2
2344
+ upset -2
2345
+ upsets -2
2346
+ upsetting -2
2347
+ uptight -2
2348
+ urgent -1
2349
+ useful 2
2350
+ usefulness 2
2351
+ useless -2
2352
+ uselessness -2
2353
+ vague -2
2354
+ validate 1
2355
+ validated 1
2356
+ validates 1
2357
+ validating 1
2358
+ verdict -1
2359
+ verdicts -1
2360
+ vested 1
2361
+ vexation -2
2362
+ vexing -2
2363
+ vibrant 3
2364
+ vicious -2
2365
+ victim -3
2366
+ victimize -3
2367
+ victimized -3
2368
+ victimizes -3
2369
+ victimizing -3
2370
+ victims -3
2371
+ vigilant 3
2372
+ vile -3
2373
+ vindicate 2
2374
+ vindicated 2
2375
+ vindicates 2
2376
+ vindicating 2
2377
+ violate -2
2378
+ violated -2
2379
+ violates -2
2380
+ violating -2
2381
+ violence -3
2382
+ violent -3
2383
+ virtuous 2
2384
+ virulent -2
2385
+ vision 1
2386
+ visionary 3
2387
+ visioning 1
2388
+ visions 1
2389
+ vitality 3
2390
+ vitamin 1
2391
+ vitriolic -3
2392
+ vivacious 3
2393
+ vociferous -1
2394
+ vulnerability -2
2395
+ vulnerable -2
2396
+ walkout -2
2397
+ walkouts -2
2398
+ wanker -3
2399
+ want 1
2400
+ war -2
2401
+ warfare -2
2402
+ warm 1
2403
+ warmth 2
2404
+ warn -2
2405
+ warned -2
2406
+ warning -3
2407
+ warnings -3
2408
+ warns -2
2409
+ waste -1
2410
+ wasted -2
2411
+ wasting -2
2412
+ wavering -1
2413
+ weak -2
2414
+ weakness -2
2415
+ wealth 3
2416
+ wealthy 2
2417
+ weary -2
2418
+ weep -2
2419
+ weeping -2
2420
+ weird -2
2421
+ welcome 2
2422
+ welcomed 2
2423
+ welcomes 2
2424
+ whimsical 1
2425
+ whitewash -3
2426
+ whore -4
2427
+ wicked -2
2428
+ widowed -1
2429
+ willingness 2
2430
+ win 4
2431
+ winner 4
2432
+ winning 4
2433
+ wins 4
2434
+ winwin 3
2435
+ wish 1
2436
+ wishes 1
2437
+ wishing 1
2438
+ withdrawal -3
2439
+ woebegone -2
2440
+ woeful -3
2441
+ won 3
2442
+ wonderful 4
2443
+ woo 3
2444
+ woohoo 3
2445
+ wooo 4
2446
+ woow 4
2447
+ worn -1
2448
+ worried -3
2449
+ worry -3
2450
+ worrying -3
2451
+ worse -3
2452
+ worsen -3
2453
+ worsened -3
2454
+ worsening -3
2455
+ worsens -3
2456
+ worshiped 3
2457
+ worst -3
2458
+ worth 2
2459
+ worthless -2
2460
+ worthy 2
2461
+ wow 4
2462
+ wowow 4
2463
+ wowww 4
2464
+ wrathful -3
2465
+ wreck -2
2466
+ wrong -2
2467
+ wronged -2
2468
+ wtf -4
2469
+ yeah 1
2470
+ yearning 1
2471
+ yeees 2
2472
+ yes 1
2473
+ youthful 2
2474
+ yucky -2
2475
+ yummy 3
2476
+ zealot -2
2477
+ zealots -2
2478
+ zealous 2