-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.JSON
More file actions
2104 lines (2104 loc) · 62.4 KB
/
data.JSON
File metadata and controls
2104 lines (2104 loc) · 62.4 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
[
{
who: "Jon Rosenthal",
what: "Says that “the way to reach ‘herd immunity’ is for >70% of the population to get vaccinated.”",
when: "January 5, 2021",
where: "a tweet:",
fact-check: "mostly-true"
},
{
who: "Amanda Chase",
what: "“Antifa is the culprit” in the Capitol riot.",
when: "January 7, 2021",
where: "Facebook post:",
fact-check: "pants-fire"
},
{
who: "Devin LeMahieu",
what: ""It takes quite a while on Election Day to load those ballots, which is why we have the 1 a.m. or 3 a.m. ballot dumping in Milwaukee."",
when: "January 10, 2021",
where: "a TV interview:",
fact-check: "true"
},
{
who: "Facebook posts",
what: "“Coronavirus vaccinations seem to be causing 50 times the adverse events of flu vaccinations after just the first of two shots.”",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Viral image",
what: "A photo shows Democratic lawmakers wearing clothing and masks with the Nazi swastika.",
when: "January 10, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Sarah Godlewski",
what: "“It wasn’t all women that lost jobs (in the December jobs report), it was mostly Black and Latina women. In fact, white women gained employment.”",
when: "January 9, 2021",
where: "Twitter:",
fact-check: "true"
},
{
who: "Facebook posts",
what: "Photo shows Rep. Lauren Boebert with Capitol rioters before she gave them a tour of the building "one day before the insurrection."",
when: "January 13, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Bloggers",
what: "Antifa provoked the shooting of Ashli Babbitt at the Capitol.",
when: "January 12, 2021",
where: "blogs:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Says Rep. Pramila Jayapal was not wearing a mask in Congress during the U.S. Capitol mob.",
when: "January 12, 2021",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Chris Jacobs",
what: "“There were several states where outside actors dramatically changed the rules of the road, so to speak, two weeks out, one week out, on how elections would be run.”",
when: "January 7, 2021",
where: "a television interview:",
fact-check: "barely-true"
},
{
who: "Rusty Hicks",
what: "The effort to recall California Gov. Gavin Newsom is "a coup."",
when: "January 12, 2021",
where: "a press conference:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Says President Trump has ordered the military to take over “major corrupt cities” to stay in office and that U.S. citizens will receive emergency alerts on their devices.",
when: "January 13, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Jake Tapper",
what: "The second presidential impeachment of Donald Trump was “the most bipartisan impeachment in American history.”",
when: "January 13, 2021",
where: "remarks in a CNN broadcast:",
fact-check: "true"
},
{
who: "Viral image",
what: "Says Alexandria Ocasio-Cortez tweeted, “Let’s begin ‘The Purge’ to roundup all Conservative traitors.”",
when: "January 12, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Devin Nunes",
what: "“Republicans have no way to communicate” after tech companies cut off Parler.",
when: "January 10, 2021",
where: "an interview on Fox:",
fact-check: "false"
},
{
who: "Greg Kelly",
what: "Says Joe Biden is on video "admitting to" election fraud in a "confession."",
when: "January 11, 2021",
where: "a TV segment:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "“The U.S. Department of State … released a statement on their website stating that Donald J. Trump's term ended” on Jan. 11, 2021.",
when: "January 11, 2021",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Facebook posts",
what: "Nancy Pelosi is no longer the Speaker of the House",
when: "January 11, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Viral image",
what: "NPR posted a story about the Capitol breach before it happened.",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "A second impeachment means Donald Trump loses his lifetime pension, travel allowance, Secret Service detail, and his ability to run for public office.",
when: "January 9, 2021",
where: "a screenshot:",
fact-check: "barely-true"
},
{
who: "Viral image",
what: "Says Mike Pence changed “his Twitter banner photo to Biden and Harris.”",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Sherrod Brown",
what: "Summer “protesters outside the White House were met with tear gas, rubber bullets, a full militarized response. While ... rioters were able to breach the Capitol.”",
when: "January 8, 2021",
where: "an interview with Ohio reporters:",
fact-check: "true"
},
{
who: "Facebook posts",
what: "Video shows man upset because he was added to the no-fly list for storming the Capitol.",
when: "January 10, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Kim Reynolds",
what: "Before COVID-19, “more Iowans (were) working than at any other time in our state history."",
when: "January 7, 2021",
where: "a news conference:",
fact-check: "true"
},
{
who: "Bloggers",
what: ""Trump signs Insurrection Act - General Flynn to be appointed vice president."",
when: "January 10, 2021",
where: "a story:",
fact-check: "false"
},
{
who: "Conservative Beaver",
what: "Says Pope Francis “was arrested Saturday in connection with an 80-count indictment of charges including possession of child pornography, human trafficking, incest, possession of drug paraphernalia and felony fraud.”",
when: "January 10, 2021",
where: "an article:",
fact-check: "pants-fire"
},
{
who: "Viral image",
what: "Says Nancy Pelosi sent a letter to Portland’s mayor after demonstrations there “urging him to stick to the proven Democratic Play book.”",
when: "January 10, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "Says left-wing activist John Sullivan “incited (the) insurgence of (the) US Capitol.”",
when: "January 7, 2021",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Jonathan Wichmann",
what: "“The DC looting was staged” by antifa",
when: "January 8, 2021",
where: "a YouTube post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "An image shows National Guard at the Capitol during the Black Lives Matter protests in D.C.",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Mitch McConnell",
what: ""This election actually was not unusually close."",
when: "January 6, 2021",
where: "a Senate floor speech:",
fact-check: "true"
},
{
who: "Facebook posts",
what: "32,000 votes for David Perdue “disappeared” during the Georgia Senate runoff election.",
when: "January 5, 2021",
where: "a video:",
fact-check: "barely-true"
},
{
who: "Josh Hawley",
what: "“Last year, Pennsylvania elected officials passed a whole new law that allows universal mail-in balloting, and did it irregardless of what the Pennsylvania Constitution said.”",
when: "January 6, 2021",
where: "a U.S. Senate speech:",
fact-check: "barely-true"
},
{
who: "Josh Hawley",
what: "Says activists threatened his family and “screamed threats, vandalized, and tried to pound open our door.”",
when: "January 4, 2021",
where: "a tweet:",
fact-check: "barely-true"
},
{
who: "Joe Biden",
what: "In more than 60 cases, judges “looked at the allegations that Trump was making and determined they were without any merit.”",
when: "January 7, 2021",
where: "a speech:",
fact-check: "true"
},
{
who: "Viral image",
what: "A CNN chyron said, “Antifa has just taken responsibility for storming Capital Hill.”",
when: "January 7, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "Says Mike Pence was arrested.",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Viral image",
what: "“The FBI just confirmed that it was ANTIFA, not Trump supporters, who breached the Capitol.”",
when: "January 7, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "The Simpsons predicted the Capitol riots",
when: "January 7, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Kamala Harris is planning to use the 25th Amendment against Joe Biden and appoint Mike Pence as her vice president.",
when: "January 7, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Ken Paxton",
what: "Says that “those who stormed the capitol yesterday were not Trump supporters. They have been confirmed to be Antifa.”",
when: "January 7, 2021",
where: "a tweet:",
fact-check: "pants-fire"
},
{
who: "Jonathan Brostoff",
what: "The woman killed during the Jan. 6 U.S. Capitol assault was shot by a Secret Service agent, not Capitol Police.",
when: "January 7, 2021",
where: "a tweet:",
fact-check: "false"
},
{
who: "Instagram posts",
what: "The storming of the Capitol was staged.",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "Quotes show Democrats supported riots “when BLM was BURNING down cities and killing people in the streets!”",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Mo Brooks",
what: "“Evidence growing that fascist ANTIFA orchestrated Capitol attack with clever mob control tactics.”",
when: "January 7, 2021",
where: "a tweet:",
fact-check: "pants-fire"
},
{
who: "Viral image",
what: "Video shows police removing disabled protesters from the Capitol on Jan. 6, 2021.",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "Voting machines didn’t work in heavily GOP areas for the Georgia runoff elections, leaving some voters unable to cast ballots.",
when: "January 5, 2021",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Facebook posts",
what: "A facial recognition firm “confirmed antifa infiltrated the Trump rally in D.C.”",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "A man who stormed the U.S. Capitol in a horned fur cap is an “Antifa thug.”",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "“Georgia and Kansas Capitol buildings have been stormed by protesters.”",
when: "January 6, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Donald Trump",
what: ""We won. We won in a landslide. This was a landslide.”",
when: "January 6, 2021",
where: "a speech on the Ellipse outside the White House:",
fact-check: "pants-fire"
},
{
who: "Shannon Grove",
what: ""Antifa" is to blame for storming the U.S. Capitol.",
when: "January 6, 2021",
where: "a tweet:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Google and Apple maps won’t give directions to Washington, D.C. because “they don’t want you going to a certain big rally.”",
when: "January 5, 2021",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Ted Cruz",
what: "“39% of Americans … 31% of independents ... 17% of Democrats believe the election was rigged."",
when: "January 6, 2021",
where: "a speech on the Senate floor:",
fact-check: "barely-true"
},
{
who: "Facebook posts",
what: "“Judge Rules Over 200,000 Biden Votes Are Illegitimate In Wisconsin.”",
when: "December 25, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Viral image",
what: "Photo shows “2 sitting senators counting ballots” in Georgia.",
when: "January 2, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "Says shredded ballots were found in Dell boxes in Georgia",
when: "January 5, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Donald Trump",
what: ""They just happened to find 50,000 ballots (in the Georgia U.S. Senate runoff elections) late last night."",
when: "January 6, 2021",
where: "a tweet:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Says Georgia Secretary of State Brad Raffensperger “faces espionage charges.”",
when: "January 4, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "Says City Blue Imaging Services in Rochester, N.Y. “printed ballots there. If you search them you’ll see they’re the ones who had ballots misprint errors for the ballots sent to NYC.”",
when: "December 27, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Viral image",
what: "Photo shows people protesting the 2020 election in Washington D.C. on Jan. 5, 2021.",
when: "January 5, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Viral image",
what: "“Dems Pass Bill to Vaccinate Children Without Parental Knowledge, Consent.”",
when: "January 3, 2021",
where: "a Facebook post:",
fact-check: "half-true"
},
{
who: "Facebook posts",
what: "There are “absolutely no patients” at Los Angeles hospital considered the center of region's COVID-19 surge.",
when: "January 1, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Donald Trump",
what: "“The Vice President has the power to reject fraudulently chosen electors.”",
when: "January 5, 2021",
where: "a tweet:",
fact-check: "false"
},
{
who: "Viral image",
what: "“President-elect Biden steps down as president-elect.”",
when: "January 1, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Bloggers",
what: "“1776 flag flying over White House!” in January 2021. “Revolution Signal.”",
when: "January 4, 2021",
where: "a blog post:",
fact-check: "false"
},
{
who: "Ron Johnson",
what: "On whether he’ll object to the Electoral College results",
when: "January 4, 2021",
where: "media interviews:",
fact-check: "full-flop"
},
{
who: "Facebook posts",
what: "New York “is trying to pass a bill that would allow them to round up non mask wearers and people who don’t want to take the vaccine into concentration camps. Then with a court order they can force vaccinate you.”",
when: "January 4, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Viral image",
what: "Says Mayor Muriel Bowser “ordered all hotels, restaurants, grocery stores, gas stations, and convenience stores to close Jan. 4, 5 and 6 to discourage Trump supporters from gathering in D.C.”",
when: "January 1, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "Wisconsin Legislature “Will Likely Decertify State and Award to President Trump.”",
when: "January 4, 2021",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Donald Trump",
what: "“You had (4,925) out-of-state voters… in Georgia.”",
when: "January 2, 2021",
where: "a phone call with Georgia's Secretary of State:",
fact-check: "false"
},
{
who: "Donald Trump",
what: "After a “major water main break,” Georgia election workers counted “18,000 ballots, all for Biden” that they pulled from suitcases and with no election observers present.",
when: "January 2, 2021",
where: "a phone call with the George secretary of state:",
fact-check: "pants-fire"
},
{
who: "Mike Gallagher",
what: "“Congress has one job here: to count electoral votes that have in fact been cast by any state.”",
when: "January 3, 2021",
where: "a statement:",
fact-check: "true"
},
{
who: "Viral image",
what: "Photo shows “people coming from California to Washington DC” to protest election results.",
when: "January 3, 2021",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Viral image",
what: "Says COVID-19 vaccines have “experimental technology never before used on humans” and that some “contain nanochips which can electronically track recipients."",
when: "December 29, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Donald Trump",
what: "“We won Georgia easily. We won it by hundreds of thousands of votes.”",
when: "January 2, 2021",
where: "a phone call with Georgia's Secretary of State:",
fact-check: "pants-fire"
},
{
who: "YouTube videos",
what: "A registered nurse in Nashville, Tenn., developed Bell’s Palsy after receiving the COVID-19 vaccine.",
when: "December 26, 2020",
where: "a viral video:",
fact-check: "false"
},
{
who: "Pat Toomey",
what: "“In my state, as in many other states, we have governors who are closing down businesses again.”",
when: "December 27, 2020",
where: "an interview:",
fact-check: "true"
},
{
who: "North Carolina Republican Party",
what: "North Carolina Gov. Roy Cooper "has not left the Governor's Mansion since the start of the #COVID19 crisis."",
when: "December 27, 2020",
where: "a tweet:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "The Christmas Day explosion in Nashville, Tenn., was the result of a “missile strike.”",
when: "December 28, 2020",
where: "a video:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "News outlets reported that the Nashville bomber died of COVID-19.",
when: "December 29, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "The Nashville bombing was an attempt to stop an AT&T audit into Dominion software and cover up election corruption.",
when: "December 27, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Cornell University professor Robert Oswald said “COVID-19 was imaginary and fictitious.”",
when: "December 28, 2020",
where: "a photo caption:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Says a recent study found no asymptomatic or presymptomatic spread of COVID.",
when: "December 27, 2020",
where: "social media posts:",
fact-check: "barely-true"
},
{
who: "Marco Rubio",
what: "Says “Dr. Fauci lied about masks in March.”",
when: "December 27, 2020",
where: "a tweet:",
fact-check: "false"
},
{
who: "Facebook posts",
what: ""‘Simple math’ shows Biden claims 13 million more votes than there were eligible voters who voted in 2020 election.”",
when: "December 20, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Says COVID-19 relief bill “provides more funding to foreign governments and to American arts centers, than to the American people.”",
when: "December 21, 2020",
where: "in a Facebook post:",
fact-check: "barely-true"
},
{
who: "Tweets",
what: "“CDC COVID-19 survival rates” are 99.997% for people ages 0 to 19, 99.98% for people ages 20 to 49, 99.5% for people ages 50 to 69, and 94.6% for people over 70.",
when: "December 16, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Christi Craddick",
what: "Says that the oil and gas industry comprises 35% of the Texas economy.",
when: "December 12, 2020",
where: "a tweet:",
fact-check: "mostly-true"
},
{
who: "Claudia Tenney",
what: "“Dead people also voted.”",
when: "December 8, 2020",
where: "a Tweet:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "“Nurse passes out on live TV after taking vaccine.”",
when: "December 18, 2020",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Facebook posts",
what: "Chief Justice John Roberts visited Jeffrey Epstein's private island.",
when: "December 17, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Bob Good",
what: "“This is a phony pandemic.”",
when: "December 12, 2020",
where: "a speech.:",
fact-check: "pants-fire"
},
{
who: "Chris Larson",
what: "“Jurisdictions representing about 80% of WI residents have passed referendums or resolutions in favor of fair maps.”",
when: "November 9, 2020",
where: "Twitter:",
fact-check: "true"
},
{
who: "Mike Gallagher",
what: ""New data shows in-person learning isn't driving spikes in cases."",
when: "December 7, 2020",
where: "a tweet:",
fact-check: "true"
},
{
who: "Facebook posts",
what: "Says the new coronavirus vaccines contain toxic ingredients and are more dangerous than getting COVID-19.",
when: "December 15, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Bloggers",
what: "“21% of people are having serious adverse events from (the Moderna) vaccine.”",
when: "December 6, 2020",
where: "a video shared on Facebook:",
fact-check: "false"
},
{
who: "Ted Cruz",
what: "Says that guidance urging vaccinated people to avoid travel and continue wearing masks is "profoundly anti-science."",
when: "December 15, 2020",
where: "a tweet:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "A 2018 executive order gives Trump the ability to impose martial law",
when: "December 15, 2020",
where: "Facebook posts:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "President Donald Trump will hold his inauguration for a second term at Mar-a-Lago",
when: "December 16, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Say North Carolina Gov. Roy Cooper was arrested for driving while intoxicated in Stanly County.",
when: "December 4, 2020",
where: "Facebook posts:",
fact-check: "false"
},
{
who: "Kelly Loeffler",
what: "Says Raphael Warnock has "said we need to open up the prisons" and "eliminate cash bail."",
when: "December 9, 2020",
where: "an interview:",
fact-check: "barely-true"
},
{
who: "Facebook posts",
what: "A Georgia Bureau of Investigation agent was killed for investigating the election.",
when: "December 16, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Mike Parson",
what: "“Schools that are consistently implementing COVID-19 mitigation strategies remain among the safest places for our students.”",
when: "November 12, 2020",
where: "a press conference:",
fact-check: "mostly-true"
},
{
who: "Iowa Republican Party",
what: "“Millions of Hubbell and Bloomberg dollars wasn’t enough to overcome the Iowa House Republican avalanche of success."",
when: "November 27, 2020",
where: "a tweet:",
fact-check: "half-true"
},
{
who: "Facebook posts",
what: "“This whole COVID thing? It’s a SIMULATION.”",
when: "December 11, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Joe Biden",
what: "“Tens and tens of thousands of bridges are in disrepair, some on the verge of collapse.”",
when: "December 16, 2020",
where: "a transportation secretary announcement:",
fact-check: "half-true"
},
{
who: "Facebook posts",
what: "“One of the first nurses to receive the vaccine in AL is now dead.”",
when: "December 15, 2020",
where: "text posts and screenshots:",
fact-check: "false"
},
{
who: "Instagram posts",
what: "An Austrian politician “exposed the defectiveness of the government’s Covid-19 tests by demonstrating how even a glass of Coca Cola will test positive for Covid-19.”",
when: "December 15, 2020",
where: "an Instagram post:",
fact-check: "false"
},
{
who: "Instagram posts",
what: "“6 states will cast their (electoral) votes for Trump AND for Biden,” which will lead to a second Trump term.",
when: "December 15, 2020",
where: "an Instagram post:",
fact-check: "false"
},
{
who: "Rush Limbaugh",
what: "The American Medical Association rescinded a previous statement and now says "hydroxychloroquine is okay" for COVID-19.",
when: "December 15, 2020",
where: "a radio show segment:",
fact-check: "false"
},
{
who: "James Gallagher",
what: "“Government imposed lockdowns do NOT reduce [COVID-19] cases or stop spikes.”",
when: "December 3, 2020",
where: "a tweet:",
fact-check: "false"
},
{
who: "Bloggers",
what: "“NASA confirms earth will go dark for 6 days in December 2020.”",
when: "December 15, 2020",
where: "a blog post:",
fact-check: "pants-fire"
},
{
who: "Raphael Warnock",
what: "Says Kelly Loeffler supports "raising taxes on Georgia's middle class."",
when: "December 15, 2020",
where: "an ad:",
fact-check: "false"
},
{
who: "Donald Trump",
what: "“68% error rate in Michigan Voting Machines. Should be, by law, a tiny percentage of one percent.”",
when: "December 15, 2020",
where: "a tweet:",
fact-check: "false"
},
{
who: "Donald Trump",
what: "The percentage of Americans with natural immunity from getting COVID-19 is “a very powerful vaccine in itself.”",
when: "December 8, 2020",
where: "comments made during a White House Operation Warp Speed vaccine summit:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "An optional microchip for COVID-19 vaccines “would give officials information on who has and has not been vaccinated” and “tracks the location of the patient.”",
when: "December 9, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "“Pope Francis says covid vaccine will now be required to enter heaven.”",
when: "December 9, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Tim Carpenter",
what: "“Wisconsin is one of the few states that doesn’t allow absentee ballots to be processed before Election Day.”",
when: "December 11, 2020",
where: "a news release:",
fact-check: "true"
},
{
who: "Instagram posts",
what: "The CDC delivers groceries and cleaning products “twice while you’re in quarantine.”",
when: "December 4, 2020",
where: "an Instagram post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "“Biden did not win legally.”",
when: "December 11, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "David Perdue",
what: "Says Jon Ossoff "wants total, blanket amnesty and he wants a total lockdown."",
when: "December 7, 2020",
where: "an interview:",
fact-check: "barely-true"
},
{
who: "Facebook posts",
what: "The COVID-19 pandemic has caused four of the eight “deadliest days in American history.”",
when: "December 7, 2020",
where: "a Facebook post:",
fact-check: "half-true"
},
{
who: "Bloggers",
what: "“FDA announces 2 deaths of Pfizer vaccine trial participants from ‘serious adverse events.’”",
when: "December 8, 2020",
where: "a blog post:",
fact-check: "barely-true"
},
{
who: "Facebook posts",
what: "The number of people who have died in the U.S. in 2020 is on par with years prior to COVID-19.",
when: "November 22, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Royce West",
what: "Says that this year is the first time during his 27 years as senator “that two African Americans have ever served on the same (Senate) committee.”",
when: "November 23, 2020",
where: "a committee meeting:",
fact-check: "false"
},
{
who: "Facebook posts",
what: ""If all goes 'well' it'll become federal law to get the (COVID-19) vaccine."",
when: "December 8, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Instagram posts",
what: "“Biden confirms agenda to microchip the masses”",
when: "December 9, 2020",
where: "a video:",
fact-check: "pants-fire"
},
{
who: "Jon Ossoff",
what: "Says David Perdue “hasn't held a single public town hall meeting in six years” and “sells four meetings a year and a retreat on a private island for a $7,500 corporate PAC check.”",
when: "December 6, 2020",
where: "a debate:",
fact-check: "mostly-true"
},
{
who: "Viral image",
what: "Photo shows “MAYHEM in Oregon!”",
when: "December 6, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Donald Trump",
what: "“No candidate has ever won both Florida and Ohio and lost.”",
when: "December 9, 2020",
where: "a tweet:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "“Voting machines found in bus in Arizona.”",
when: "December 4, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Laura Ingraham",
what: ""You know what the biggest lie is, is that restaurants are spreaders of COVID. There's no science for that."",
when: "December 8, 2020",
where: "a TV handoff:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "Says Texas Rep. Terry Meza said changing the castle doctrine is meant to create a “peaceful” transfer of property from victims to thieves",
when: "December 8, 2020",
where: "A post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "“40 years of research, and no vaccine for HIV. At least 100 years of research and no vaccine for cancer. Ongoing research and no vaccine for the common cold. Now in less than a year, there's a vaccine for COVID-19?”",
when: "December 6, 2020",
where: "a Facebook post:",
fact-check: "barely-true"
},
{
who: "Donald Trump",
what: "“In Wisconsin, there are approximately 70,000 absentee ballots that do not have matching ballot applications as required by law.”",
when: "December 2, 2020",
where: "a speech:",
fact-check: "pants-fire"
},
{
who: "Bloggers",
what: "“Head of Pfizer research: Covid vaccine is female sterilization.”",
when: "December 2, 2020",
where: "a blog post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "The probability of Biden winning in Wisconsin, Georgia, Michigan and Pennsylvania “given President Trump’s early lead ... is less than one in a quadrillion” in each state.",
when: "December 8, 2020",
where: "a Facebook post:",
fact-check: "pants-fire"
},
{
who: "Facebook posts",
what: "Images that show a 90-year-old UK woman receiving the Pfizer COVID-19 vaccine appeared online in a CNN news story in October.",
when: "December 8, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Facebook posts",
what: "The Supreme Court “has decided to take up the Texas case.”",
when: "December 8, 2020",
where: "a Facebook post:",
fact-check: "false"
},
{
who: "Jody Hice",
what: "A forensics examination of a Ware County, Ga., Dominion Voting Systems machine found votes were switched from Donald Trump to Joe Biden.",
when: "December 4, 2020",
where: "a tweet:",
fact-check: "false"
},
{
who: "Bloggers",
what: ""The FDA knows that rushed-to-market COVID-19 vaccines may cause a wide range of life-threatening side effects, including death."",
when: "December 6, 2020",
where: "an article on GreenMedInfo.com:",
fact-check: "barely-true"
},
{
who: "Raphael Warnock",
what: "Says Kelly Loeffler “welcomed the support of a QAnon conspiracy theorist, and she sat down with a white supremacist for an interview.”",
when: "December 6, 2020",
where: "a debate:",