-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.json
More file actions
6527 lines (6527 loc) · 220 KB
/
data.json
File metadata and controls
6527 lines (6527 loc) · 220 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "128",
"labels": [
"Black-and-white Fallacy/Dictatorship",
"Name calling/Labeling",
"Smears"
],
"text": "THERE ARE ONLY TWO GENDERS\n\nFEMALE \n\nMALE\n",
"image": "128_image.png"
},
{
"id": "189",
"labels": [
"Reductio ad hitlerum",
"Smears",
"Transfer"
],
"text": "This is not an accident!",
"image": "189_image.png"
},
{
"id": "96",
"labels": [
"Appeal to fear/prejudice",
"Loaded Language",
"Name calling/Labeling",
"Slogans",
"Smears",
"Transfer"
],
"text": "SO BERNIE BROS HAVEN'T COMMITTED VIOLENCE EH?\n\nPOWER COMES FROM THE BARREL OF A GUN, COMRADES.\n\nWHAT ABOUT THE ONE WHO SHOT CONGRESSMAN SCALISE OR THE DAYTON OHIO MASS SHOOTER?\n",
"image": "96_image.png"
},
{
"id": "154",
"labels": [
"Causal Oversimplification",
"Glittering generalities (Virtue)",
"Loaded Language",
"Name calling/Labeling",
"Slogans",
"Smears"
],
"text": "PATHETIC\n\nThe Cowardly Asshole\nWeak Failure!!!\n\nImpeach it again!!!\n\n# 45 the coward s afraid of strong women!!\n\nPOLITICUSUSA.COM\nChildish Trump Won't Meet With Pelosi On Coronavirus\nBecause He Doesn't Like Her\n",
"image": "154_image.png"
},
{
"id": "15",
"labels": [
"Flag-waving",
"Misrepresentation of Someone's Position (Straw Man)",
"Smears"
],
"text": "WHO TRUMP REPRESENTS\n\nWHO DEMOCRATS REPRESENT\n",
"image": "15_image.png"
},
{
"id": "169",
"labels": [
"Appeal to fear/prejudice",
"Causal Oversimplification",
"Exaggeration/Minimisation",
"Slogans"
],
"text": "Our elders were called to war to save lives.\nWe are being called to sit on the couch to save theirs.\nWe can do this.\n",
"image": "169_image.png"
},
{
"id": "145",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Reductio ad hitlerum",
"Smears",
"Transfer"
],
"text": "Adolf Hitler\n• Believed state power would fix Germany\n• Proposed gun control\n• Promised a political revolution\n• Called himself socialist\n• Blamed Jews for Germany's problems\n• Wanted a heavily regulated economy\n\nBernie Sanders\n• Believes state power will fix America\n• Proposes gun control\n• Promises a political revolution\n• Calls himself socialist\n• Blames the rich for America's problems\n• Wants a heavily regulated economy",
"image": "145_image.png"
},
{
"id": "73",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "CALM DOWN LITTLE TRUMP HATER\nI FOUND YOUR BINKY\n",
"image": "73_image.png"
},
{
"id": "153",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Repetition",
"Smears"
],
"text": "UGLY INSIDE & OUT\n\nRACIST, LIAR with NO ETHICS, and he's NUTS\n\nDangerously STUPID and Certifiably CRAZY\n\nUGLY INSIDE & OUT",
"image": "153_image.png"
},
{
"id": "130",
"labels": [
"Causal Oversimplification",
"Glittering generalities (Virtue)",
"Loaded Language",
"Name calling/Labeling"
],
"text": "WHEN YOUR TAXES ARE FINALLY USED TO KILL TERRORISTS...\n\nINSTEAD OF FUNDING THEM!\nTRUMP 2020\n",
"image": "130_image.png"
},
{
"id": "104",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Loaded Language",
"Slogans",
"Smears"
],
"text": "SCARE TATICS BY THE LEFT.\n\nClose businesses\nClose stadiums\nDestroy the stock market\nTry to eliminate TRUMP RALLIES.\nIs this part of a larger CONSPIRÁCY?\nCORONAVIRUS\nDON'T PANIC..\nTHINK AMERICA!\n",
"image": "104_image.png"
},
{
"id": "146",
"labels": [
"Appeal to fear/prejudice",
"Causal Oversimplification",
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "THOSE LIBERALS HATE ME\n\nIT'S BECAUSE I'M BLACK ISN'T IT ?\n",
"image": "146_image.png"
},
{
"id": "188",
"labels": [
"Misrepresentation of Someone's Position (Straw Man)",
"Smears"
],
"text": "If you think \"they\" are hiding the cure for cancer, but you discourage people from getting the HPV and Hep. B vaccines...\n\nthen YOU are \"they.\"\n",
"image": "188_image.png"
},
{
"id": "175",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Loaded Language",
"Name calling/Labeling"
],
"text": "A society that keeps cures a secret, in an effort to sell medications for huge profits, is not a civilised society; it is a mental institution ruled over by phsychopaths.\n",
"image": "175_image.png"
},
{
"id": "168",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Slogans",
"Smears"
],
"text": "ITS NOT THE HERO WE NEED\n\nBUT THE HERO WE DESERVE\n",
"image": "168_image.png"
},
{
"id": "106",
"labels": [
"Exaggeration/Minimisation",
"Glittering generalities (Virtue)",
"Loaded Language",
"Misrepresentation of Someone's Position (Straw Man)",
"Name calling/Labeling",
"Smears"
],
"text": "TRUMP CURES CORONAVIRUS!\n\nCURING CORONA VIRUS IS RACIST\n\nWE HAVE THE RIGHT TO DIE FROM OUR CORONAVIRUS\n\nDEMOCRATS ARE OUTRAGED!\n",
"image": "106_image.png"
},
{
"id": "66",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Loaded Language",
"Slogans"
],
"text": "UN\n\nNew York UN Office Recruits Paramilitary Troops for 'Disarmament' and Reintegration' of US Civilians\n\nWELCOME TO AMERICA\n\n",
"image": "66_image.png"
},
{
"id": "129",
"labels": [
"Appeal to (Strong) Emotions",
"Causal Oversimplification",
"Exaggeration/Minimisation",
"Loaded Language",
"Smears",
"Transfer"
],
"text": "HIROSHIMA\n1945\n2016\n\nDETROIT\n1945\n2016\n\nMORAL OF THE STORY...\nIT'S EASIER TO COME BACK FROM A NUCLEAR BOMB THAN DECADES OF DEMOCRATIC LEADERSHIP\n",
"image": "129_image.png"
},
{
"id": "2",
"labels": [
"Appeal to (Strong) Emotions",
"Doubt",
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "Reminder: This building in Oklahoma City was blown up and destroyed just 4 days before Hillary Clinton was to be indicted in the Whitewater scandal. \nAll documents lost!\n",
"image": "2_image.png"
},
{
"id": "65",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears",
"Transfer"
],
"text": "How to tell if your dog is involved in a sex scandal\n",
"image": "65_image.png"
},
{
"id": "8",
"labels": [
"Glittering generalities (Virtue)",
"Repetition",
"Smears"
],
"text": "I PROMISE.\n\nI PROMISE.\n\nI PROMISE.\n\nI DELIVER.\n",
"image": "8_image.png"
},
{
"id": "127",
"labels": [
"Loaded Language",
"Misrepresentation of Someone's Position (Straw Man)",
"Name calling/Labeling",
"Obfuscation, Intentional vagueness, Confusion",
"Smears"
],
"text": "THE PEOPLE WHO ONCE CALLED OUR SOLDIERS BABY KILLERS\n\nNOW MARCH FOR THE RIGHT TO KILL BABIES\n",
"image": "127_image.png"
},
{
"id": "142",
"labels": [
"Appeal to (Strong) Emotions",
"Name calling/Labeling",
"Reductio ad hitlerum",
"Smears",
"Transfer"
],
"text": "DEMOCRATS STARTED WEARING ALL WHITE...\n\nAGAIN",
"image": "142_image.png"
},
{
"id": "29",
"labels": [
"Loaded Language",
"Slogans",
"Smears"
],
"text": "ALL I WANT FOR CHRISTMAS IS JUSTICE\n",
"image": "29_image.png"
},
{
"id": "131",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears",
"Whataboutism"
],
"text": "LEFTISTS THINK INJECTING CATTLE WITH HORMONES IS EVIL\n\nBUT THINK INJECTING KIDS WITH HORMONES TO CHANGE THEIR GENDER IS JUST FINE\n",
"image": "131_image.png"
},
{
"id": "176",
"labels": [
"Appeal to (Strong) Emotions",
"Smears",
"Transfer"
],
"text": "CORRECT:\n\nTHE WORLD\n\nCHINA\n",
"image": "176_image.png"
},
{
"id": "125",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Reductio ad hitlerum",
"Smears"
],
"text": "I HATE TRUMP\n\nMOST TERRORIST DO",
"image": "125_image.png"
},
{
"id": "182",
"labels": [
"Exaggeration/Minimisation",
"Name calling/Labeling",
"Smears",
"Transfer"
],
"text": "The most costly errors in all of history\n\nWorld Health Organization (WHO)\nPreliminary investigations conducted by the Chinese authorities have found no clear evidence of human-to-human transmission of the novel #coronavirus (2019-nCoV) identified in #Wuhan, #China\n14 Jan 2020\n\nWORLD NEWS FEBRUARY 3, 2020 / 10:33 PM / 2 MONTHS AGO\nWHO chief says widespread travel bans not needed to beat China virus\n",
"image": "182_image.png"
},
{
"id": "178",
"labels": [
"Causal Oversimplification",
"Glittering generalities (Virtue)"
],
"text": "COVID-19 is everywhere but countries with heads of state managing the crisis better seem to have something in common..\n\nGERMANY\n\nNEW ZEALAND\n\nBELGIUM\n\nFINLAND\n\nICELAND\n\nDENMARK\n",
"image": "178_image.png"
},
{
"id": "115",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Causal Oversimplification",
"Exaggeration/Minimisation",
"Loaded Language",
"Smears"
],
"text": "PEOPLE KEEP ASKING: \"WHY DID GOD TURN HIS BACK ON AMERICA?\"\n\nHE DIDN'T.\nAMERICA TURNED HER BACK ON GOD. \nTHIS IS WHAT THE WORLD LOOKS LIKE WITHOUT HIM.\n",
"image": "115_image.png"
},
{
"id": "166",
"labels": [
"Causal Oversimplification"
],
"text": "COULDN'T WASH HANDS\n\nIS NOW EXTINCT\n",
"image": "166_image.png"
},
{
"id": "132",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Loaded Language",
"Smears"
],
"text": "WHAT KIDS THINK COMMUNISM IS\n\nWHAT COMMUNISM REALLY IS\n",
"image": "132_image.png"
},
{
"id": "1",
"labels": [
"Causal Oversimplification",
"Glittering generalities (Virtue)",
"Smears",
"Transfer"
],
"text": "8 YEARS UNDER OBAMA\n4 MILLION JOBS LOST\nUNEMPLOYMENT PEAKED TO 9.9%\nGDP DOWN 2.8%\n\n2 1/2 YEARS UNDER TRUMP\n5.1 MILLION JOBS GAINED\nUNEMPLΟΥΜΕΝΤ FELL TO 3.6%\nGDP UP 3.2%\n",
"image": "1_image.png"
},
{
"id": "150",
"labels": [
"Appeal to fear/prejudice",
"Exaggeration/Minimisation",
"Flag-waving",
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "THE TWO BIGGEST THREATS TO AMERICA\n\nTHE WORST SENATE LEADER EVER AND THE MOST CORRUPT PRESIDENT EVER\n",
"image": "150_image.png"
},
{
"id": "165",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Black-and-white Fallacy/Dictatorship",
"Slogans"
],
"text": "This is your child with WHOOPING COUGH\n\nVACCINATE your children NOW\n",
"image": "165_image.png"
},
{
"id": "152",
"labels": [
"Flag-waving",
"Slogans",
"Smears"
],
"text": "\"Yes, Mr. Trump, let's make America great again. But first, get one thing straight: America was great – before you were elected.\"\n\nBarbra Streisand\n",
"image": "152_image.png"
},
{
"id": "193",
"labels": [
"Misrepresentation of Someone's Position (Straw Man)"
],
"text": "IT WAS NEVER ABOUT THE VIRUS \n\nIT'S ABOUT SEEING HOW FAR WE CAN PUSH YOU BEFORE YOU PUSH BACK\n",
"image": "193_image.png"
},
{
"id": "161",
"labels": [
"Appeal to fear/prejudice",
"Black-and-white Fallacy/Dictatorship",
"Exaggeration/Minimisation",
"Name calling/Labeling",
"Reductio ad hitlerum",
"Slogans",
"Smears",
"Thought-terminating cliché"
],
"text": "HOW DARE YOU NOT VOTERINO FOR HECKIN' BERNERINO?! DON'T YOU KNOW THAT A VOTE FOR BIDEN IS A VOTE FOR FASCISM? THE WORLD IS LITERALLY DYING AND BERNIE-SAMA IS THE ONLY ONE WHO CAN SAVE IT!\n\nhaha hey its the Obama guy\n\nRIDIN WITH BIDEN **2020**",
"image": "161_image.png"
},
{
"id": "16",
"labels": [
"Glittering generalities (Virtue)",
"Loaded Language",
"Name calling/Labeling",
"Smears",
"Transfer",
"Whataboutism"
],
"text": "Killed thousands of innocents with drone strikes Received a Nobel Peace\n\nDecided not to retaliate and kill 150 people over an unmanned drone \nCalled a Warmonger\n",
"image": "16_image.png"
},
{
"id": "72",
"labels": [
"Flag-waving",
"Glittering generalities (Virtue)",
"Name calling/Labeling",
"Smears",
"Transfer"
],
"text": "SPELLING LESSON\n\nTHE LAST 4 LETTERS IN \"AMERICAN\": \"I CAN!\"\n\nTHE LAST 4 LETTERS IN \"REPUBLICAN\": \"I CAN!\"\n\nTHE LAST 4 LETTERS IN \"DEMOCRATS\": RATS!\n",
"image": "72_image.png"
},
{
"id": "84",
"labels": [
"Name calling/Labeling",
"Smears",
"Transfer"
],
"text": "\"If you tell a lie big enough and keep repeating it, people will eventually come to believe it.\"\n- Joseph Goebbels, Nazi Propaganda Minister\n\nThe New York Times \nCNN \nBBC\nTIME\nMSNBC\nNBC\nLos Angeles Times\nFox NEWS channel\nnpr\nabc\nCBS NEWS\nThe Washington Post\nUSA TODAY\n",
"image": "84_image.png"
},
{
"id": "105",
"labels": [
"Smears"
],
"text": "MUST BE AN ELECTION COMING, DEMOCRATS ARE VISITING BLACK COMMUNITIES AGAIN.\n\n",
"image": "105_image.png"
},
{
"id": "27",
"labels": [
"Causal Oversimplification",
"Smears"
],
"text": "Deaths in the U.S. During a 10 Year Period: 2004 to 2015\n\nDue to Measles\nZERO\nSource: CDC\n\nDue to Measles Vaccines\n108\nSource: VAERS database\n",
"image": "27_image.png"
},
{
"id": "122",
"labels": [
"Exaggeration/Minimisation",
"Flag-waving",
"Loaded Language",
"Misrepresentation of Someone's Position (Straw Man)",
"Smears"
],
"text": "DEMOCRATS HAVE OUTRIGHT STATED THAT THEY WILL OBSTRUCT EVERYTHING THE REPUBLICAN PRESIDENT DOES. \nEVEN IF IT MEANS HARMING AMERICA \nTHEY HAVE PUT PARTY BEFORE COUNTRY AND IT IS UNACCEPTABLE\n",
"image": "122_image.png"
},
{
"id": "139",
"labels": [
"Appeal to (Strong) Emotions",
"Flag-waving",
"Loaded Language",
"Name calling/Labeling",
"Reductio ad hitlerum",
"Slogans",
"Smears",
"Transfer"
],
"text": "The Democratic Party IS THE PARTY OF CRIME & EVIL... A TERRORIST ORGANIZATION WHO HATES AMERICA & AMERICANS\n\nTRAITORS TO AMERICA\n\nTHE COMMUNIST PARTY\n\nSAVE AMERICA SUPPORT TRUMP\n",
"image": "139_image.png"
},
{
"id": "177",
"labels": [
"Glittering generalities (Virtue)",
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "DON'T FORGET THAT IN JANUARY:\n\nTRUMP FORMED THE CORONAVIRUS TASK FORCE\n\nTHE DEMS WERE WASTING TIME ON A SHAM IMPEACHMENT\n",
"image": "177_image.png"
},
{
"id": "162",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Loaded Language",
"Slogans"
],
"text": "TILL DEATH DO US PART\n\nNO TO VIOLENCE AGAINST WOMEN\n",
"image": "162_image.png"
},
{
"id": "192",
"labels": [
"Loaded Language",
"Smears"
],
"text": "If y'all liberals want to tear down monuments to slavery & racism, I have just the monument for you!\n\nDEMOCRATIC NATIONAL HEADQUARTERS\n430 SOUTH CAPITOL STREET\n",
"image": "192_image.png"
},
{
"id": "134",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Reductio ad hitlerum",
"Smears"
],
"text": "If Trump isn't Hitler, Then l'm a Moron\n\nSelf-awareness\n",
"image": "134_image.png"
},
{
"id": "196",
"labels": [
"Exaggeration/Minimisation",
"Smears"
],
"text": "I'm not pregnant, I haven't been tested. \nBut the President says if it's not tested it's not real. \nI think it's gas...",
"image": "196_image.png"
},
{
"id": "114",
"labels": [
"Appeal to (Strong) Emotions",
"Reductio ad hitlerum"
],
"text": "HISTORY HAS SHOWN THAT THESE ARE THE FIRST TWO THINGS BANNED BY TOTALITARIAN GOVERNMENTS",
"image": "114_image.png"
},
{
"id": "160",
"labels": [
"Presenting Irrelevant Data (Red Herring)"
],
"text": "IF WE DIVIDE 125 GENDERS BY THREE BATHROOMS\n\nHOW MUCH CLIMATE CHANGE DO WE HAVE?",
"image": "160_image.png"
},
{
"id": "194",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "Finished 4th in lowa behind an Old Communist, a Gay guy and a Fake Indian!\n\nThere's nothing quite like getting your ass beat by the Village People!",
"image": "194_image.png"
},
{
"id": "159",
"labels": [
"Appeal to fear/prejudice",
"Causal Oversimplification",
"Glittering generalities (Virtue)",
"Loaded Language",
"Smears"
],
"text": "Do you remember when: Swine Flu Ebola Virus, and Zika Virus Caused mass cancellations?\nCrashed our stock market?\nCaused confusion from misinformation?\nDrove people to stockpile toilet paper?\n\nOf Course not... Because Obama HANDLED that SHIT!\n",
"image": "159_image.png"
},
{
"id": "123",
"labels": [
"Loaded Language",
"Slogans",
"Smears"
],
"text": "Former Presidents can be IMPEACHED!\nIMPEACH OBAMA!\n",
"image": "123_image.png"
},
{
"id": "93",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "The Real Virus Threatening America\n",
"image": "93_image.png"
},
{
"id": "120",
"labels": [
"Appeal to authority",
"Black-and-white Fallacy/Dictatorship",
"Loaded Language",
"Name calling/Labeling"
],
"text": "\"If a law is unjust, a man is not only right to disobey it, he is obligated to do so.\"\n -Thomas Jefferson\n",
"image": "120_image.png"
},
{
"id": "143",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "THE BULGE IN CONSERVATIVE GIRLS PANTS IS A GUN\n\nTHE BULGE IN LIBERAL GIRLS PANTS IS A PENIS\n",
"image": "143_image.png"
},
{
"id": "69",
"labels": [
"Causal Oversimplification",
"Smears",
"Thought-terminating cliché"
],
"text": "Transgender man gives birth to non-binary partner's baby with female sperm donor\n\nIf I didn't see it, it didn't happen.\n",
"image": "69_image.png"
},
{
"id": "14",
"labels": [
"Appeal to (Strong) Emotions",
"Glittering generalities (Virtue)",
"Loaded Language",
"Misrepresentation of Someone's Position (Straw Man)",
"Obfuscation, Intentional vagueness, Confusion",
"Smears"
],
"text": "21 people running for President and only 1 stands against killing babies\n",
"image": "14_image.png"
},
{
"id": "112",
"labels": [
"Name calling/Labeling",
"Smears"
],
"text": "HILLARY CLINTON JOE BIDEN \n\nWEEKEND AT BERNIES'S\n\nHE MAY BE DEAD... BUT HE'S THE LIFE OF THE PARTY!",
"image": "112_image.png"
},
{
"id": "181",
"labels": [
"Smears"
],
"text": "\"People are dying who have never died before.\"\n- Donald J. Trump, March 18, 2020",
"image": "181_image.png"
},
{
"id": "108",
"labels": [
"Appeal to fear/prejudice",
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "THE PARTY OF 'DIVERSITY'\n\nBLACK WOMAN\nBLACK\nBLACK\nSAMOAN WOMAN\nMEXICAN\nOLD WHITE MILLIONAIRE\n\nFAKE MEXICAN\nMOSTLY GAS\nGALAXY DUST\nTAIWANESE\nGAY\nOLD WHITE MILLIONAIRE",
"image": "108_image.png"
},
{
"id": "113",
"labels": [
"Exaggeration/Minimisation",
"Glittering generalities (Virtue)",
"Loaded Language",
"Smears"
],
"text": "ELEGANT AT LYING\n\nBRUTAL WITH THE TRUTH\n",
"image": "113_image.png"
},
{
"id": "17",
"labels": [
"Causal Oversimplification",
"Glittering generalities (Virtue)",
"Smears"
],
"text": "THIS IS THE DIFFERENCE BETWEEN 1.4% GDP AND 4.1% GDP\n",
"image": "17_image.png"
},
{
"id": "136",
"labels": [
"Exaggeration/Minimisation",
"Glittering generalities (Virtue)",
"Name calling/Labeling",
"Smears"
],
"text": "WHAT A CONTRAST\n\nFROM WORST EVER TO BEST EVER",
"image": "136_image.png"
},
{
"id": "91",
"labels": [
"Appeal to authority",
"Exaggeration/Minimisation",
"Smears"
],
"text": "\"Socialism only works in two places: Heaven where they don't need it, and hell where they already have it.\"\nRonald Regan\n",
"image": "91_image.png"
},
{
"id": "133",
"labels": [
"Appeal to (Strong) Emotions",
"Name calling/Labeling",
"Smears",
"Thought-terminating cliché"
],
"text": "THAT'S A FACT \n\nDID YOU KNOW THE NRA TRAINED BLACK AMERICANS TO FIGHT AGAINST THE DEMOCRAT FORMED GROUP THE KKK\n",
"image": "133_image.png"
},
{
"id": "12",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears",
"Transfer"
],
"text": "TRAITORS\n\nMOSCOW MITCH\n\nMOSCOW'S BITCH\n\n",
"image": "12_image.png"
},
{
"id": "67",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "PEDO TRASH PRETENDING TO BE LIBERTARIAN\n\nPEOPLE THAT UNDERSTAND CONSENT\n\nTHE FUCK OUTTA HERE\n",
"image": "67_image.png"
},
{
"id": "3",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "I DIDN'T KNOW THERE WAS A SEXUAL PREDATOR AWARD...\n\nTHANKS DEMOCRATS\n",
"image": "3_image.png"
},
{
"id": "98",
"labels": [
"Loaded Language",
"Name calling/Labeling",
"Smears",
"Transfer"
],
"text": "WHEN YOU'RE ANTI TRUMP BUT YOU'RE PRO RAPIST\n\nTHEY ALL KNEW AND\n\n",
"image": "98_image.png"
},
{
"id": "85",
"labels": [
"Appeal to fear/prejudice",
"Flag-waving",
"Loaded Language",
"Name calling/Labeling",
"Smears",
"Whataboutism"
],
"text": "KEEP IN MIND THAT DEMOCRATS VOTED TO FINE AMERICAN CITIZENS FOR NOT BUYING INSURANCE, AND THEN CONSPIRED TO GIVE IT TO ILLEGAL ALIENS FOR FREE.\n",
"image": "85_image.png"
},
{
"id": "137",
"labels": [
"Appeal to (Strong) Emotions",
"Exaggeration/Minimisation",
"Smears"
],
"text": "I'LL NEVER FORGET WHO DID THIS\n\nNO MATTER HOW MUCH FACEBOOK DEFENDS THEM\n",
"image": "137_image.png"
},
{
"id": "42",
"labels": [
"Smears"
],
"text": "DEMOCRAT PARTY\n\nNBC\n\nCBS\n\nMSNBC\n\nCNN\n",
"image": "42_image.png"
},
{
"id": "199",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Misrepresentation of Someone's Position (Straw Man)",
"Smears"
],
"text": "A journalist asked Justin Trudeau when more help would arrive for seniors...\n\n...he answered by saying \"the priority was on helping other groups of Canadians first.\"\n",
"image": "199_image.png"
},
{
"id": "121",
"labels": [
"Smears"
],
"text": "Guess who's waiting for someone else to do all the work lol\n\nBernie\n",
"image": "121_image.png"
},
{
"id": "53",
"labels": [
"Appeal to (Strong) Emotions",
"Misrepresentation of Someone's Position (Straw Man)",
"Name calling/Labeling",
"Smears",
"Thought-terminating cliché"
],
"text": "LIBERAL LOGIC: \"DON'T CALL THEM ANIMALS!\"\n\n\"DON'T CALL THEM PEOPLE!\"\n",
"image": "53_image.png"
},
{
"id": "49",
"labels": [
"Appeal to (Strong) Emotions",
"Loaded Language",
"Misrepresentation of Someone's Position (Straw Man)",
"Smears"
],
"text": "WHY DO LIBERALS FIGHT TO KEЕР THESE AND FIGHT TO KILL THESE\n",
"image": "49_image.png"
},
{
"id": "74",
"labels": [
"Flag-waving",
"Glittering generalities (Virtue)",
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "PATRIOTS\n\nWHICH GROUP HELD THE COUNTRY'S INTERESTS OVER THEIR OWN PERSONAL GAIN?\n\nPARASITES\n",
"image": "74_image.png"
},
{
"id": "118",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Flag-waving",
"Glittering generalities (Virtue)",
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "Coward\n\nAmerican\n",
"image": "118_image.png"
},
{
"id": "184",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Black-and-white Fallacy/Dictatorship",
"Doubt"
],
"text": "Acquiring immunity \"the natural way\" \n\nAcquiring immunity through vaccination\n\nWhich would you choose?\n",
"image": "184_image.png"
},
{
"id": "149",
"labels": [
"Exaggeration/Minimisation",
"Loaded Language",
"Misrepresentation of Someone's Position (Straw Man)",
"Slogans",
"Smears"
],
"text": "Trump Reportedly Offered A German Firm $1,00,000,000 For Exclusive Rights To Any Coronavirus Vaccine.\n\n\"Trump wanted not only to control any new vaccine but also to make sure that it would only be available on a for-profit basis,\" reported Common Dreams.\n\nWhat could be more depraved than trying to profit off of the suffering of the entire world?\n Spread his shame.",
"image": "149_image.png"
},
{
"id": "21",
"labels": [
"Appeal to (Strong) Emotions",
"Doubt",
"Flag-waving",
"Loaded Language"
],
"text": "FREE SPEECH?\n\nHATE SPEECH?\n\nSOMEONE EXPLAIN THIS SHIT...\n\n",
"image": "21_image.png"
},
{
"id": "111",
"labels": [
"Exaggeration/Minimisation",
"Smears"
],
"text": "IF YOU PUT HILLARY'S ARREST ON PAY-PER-VIEW...\n\n...YOU COULD SETTLE THE NATIONAL DEBT!\n\n",
"image": "111_image.png"
},
{
"id": "190",
"labels": [
"Appeal to fear/prejudice",
"Loaded Language",
"Name calling/Labeling",
"Smears"
],
"text": "HI, I'M GEORGE SOROS\nA BILLIONAIRE SOCIOPATHIC GLOBALIST\nI DESTROY ECONOMIES, CULTURES & COUNTRIES\nI PROFIT OFF OF THE DESTRUCTION OF ENTIRE SOCIETIES\nI FINANCE BLACK LIVES MATTER RIOTS\nI AM FUNDING ANTIFA",
"image": "190_image.png"
},
{
"id": "148",
"labels": [
"Loaded Language",
"Repetition",
"Slogans",
"Smears"
],
"text": "VOTE IT OUT\nVOTE IT OUT\n\nHE SAID IT WASN'T REAL.\nHE SAID IT'S CONTAINED.\nHE SAID IT WOULD DISAPPEAR.\nHE BLAMED DEMOCRATS.\nHE SHARED HIS HUNCHES.\nHE OVERRULED HIS SCIENTISTS.\nHE HAS FAILED.\nHE HAS ENDANGERED\nEVERY ONE OF US.\n\nVOTE IT OUT\nVOTE IT OUT\n",
"image": "148_image.png"
},
{
"id": "10",
"labels": [
"Appeal to (Strong) Emotions",
"Appeal to fear/prejudice",
"Name calling/Labeling",
"Smears",
"Transfer"
],
"text": "DEMOCRATS THEN\n\nDEMOCRATS NOW\n",
"image": "10_image.png"
},
{
"id": "7",
"labels": [
"Appeal to authority",
"Causal Oversimplification",
"Loaded Language",
"Name calling/Labeling",
"Smears",
"Thought-terminating cliché"
],
"text": "HARRY S. TRUMAN\n\"YOU CAN'T GET RICH IN POLITICS UNLESS YOU'RE A CROOK.\"\n\nWE KNOW\n",
"image": "7_image.png"
},
{
"id": "102",
"labels": [
"Doubt",
"Exaggeration/Minimisation",
"Name calling/Labeling",
"Smears"
],
"text": "I HAVE A CHANCE TO BE THE FIRST GAY UNITED STATES PRESIDENT...\n\n...AHH, EXCUSE ME?\n\n",
"image": "102_image.png"
},
{
"id": "116",
"labels": [
"Loaded Language",
"Slogans"
],
"text": "TRUTH is HATE to those who HATE the TRUTH\n\nTRUTH is LOVE!\n",
"image": "116_image.png"
},
{
"id": "110",
"labels": [
"Appeal to fear/prejudice",
"Flag-waving",
"Name calling/Labeling",
"Smears"
],
"text": "THE REAL VIRUS THREATENING AMERICA\n",
"image": "110_image.png"
},
{