forked from vegetable68/news_domain_labeled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia_bias_fact_check_newsdomains.json
2873 lines (2873 loc) · 153 KB
/
media_bias_fact_check_newsdomains.json
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
{"domain": "act.tv", "mfcLabel": "left"}
{"domain": "addictinginfo.com", "mfcLabel": "left"}
{"domain": "aftonbladet.se", "mfcLabel": "left"}
{"domain": "akkadiantimes.com", "mfcLabel": "left"}
{"domain": "aldianews.com", "mfcLabel": "left"}
{"domain": "allthatsfab.com", "mfcLabel": "left"}
{"domain": "afj.org", "mfcLabel": "left"}
{"domain": "altnews.in", "mfcLabel": "left"}
{"domain": "alternet.org", "mfcLabel": "left"}
{"domain": "aidc.org.za", "mfcLabel": "left"}
{"domain": "americablog.com", "mfcLabel": "left"}
{"domain": "americanbridgepac.org", "mfcLabel": "left"}
{"domain": "anx.media", "mfcLabel": "left"}
{"domain": "americanoversight.org", "mfcLabel": "left"}
{"domain": "au.org", "mfcLabel": "left"}
{"domain": "angrywhitemen.org", "mfcLabel": "left"}
{"domain": "antifascistnews.net", "mfcLabel": "left"}
{"domain": "autostraddle.com", "mfcLabel": "left"}
{"domain": "backedbyfact.com", "mfcLabel": "left"}
{"domain": "citypaper.com", "mfcLabel": "left"}
{"domain": "ebar.com", "mfcLabel": "left"}
{"domain": "themaven.net", "mfcLabel": "left"}
{"domain": "bitchmedia.org", "mfcLabel": "left"}
{"domain": "blackagendareport.com", "mfcLabel": "left"}
{"domain": "blacklivesmatter.com", "mfcLabel": "left"}
{"domain": "bluenationreview.com", "mfcLabel": "left"}
{"domain": "bluestatedaily.com", "mfcLabel": "left"}
{"domain": "boingboing.net", "mfcLabel": "left"}
{"domain": "bostonreview.net", "mfcLabel": "left"}
{"domain": "breitbartunmasked.com", "mfcLabel": "left"}
{"domain": "bust.com", "mfcLabel": "left"}
{"domain": "canadafactcheck.ca", "mfcLabel": "left"}
{"domain": "canadiandimension.com", "mfcLabel": "left"}
{"domain": "capitalandmain.com", "mfcLabel": "left"}
{"domain": "carbonated.tv", "mfcLabel": "left"}
{"domain": "care2.com", "mfcLabel": "left"}
{"domain": "americanprogress.org", "mfcLabel": "left"}
{"domain": "prwatch.org", "mfcLabel": "left"}
{"domain": "c4ss.org", "mfcLabel": "left"}
{"domain": "certifiedpolitics.com", "mfcLabel": "left"}
{"domain": "change.org", "mfcLabel": "left"}
{"domain": "chicagoreader.com", "mfcLabel": "left"}
{"domain": "chroniclesofdemocracy.com", "mfcLabel": "left"}
{"domain": "citizencritics.org", "mfcLabel": "left"}
{"domain": "cnn.com", "mfcLabel": "left"}
{"domain": "codepink.org", "mfcLabel": "left"}
{"domain": "columbusfreepress.com", "mfcLabel": "left"}
{"domain": "comicsands.com", "mfcLabel": "left"}
{"domain": "commondreams.org", "mfcLabel": "left"}
{"domain": "content.news", "mfcLabel": "left"}
{"domain": "cosmopolitan.com", "mfcLabel": "left"}
{"domain": "countercurrents.org", "mfcLabel": "left"}
{"domain": "counterpunch.org", "mfcLabel": "left"}
{"domain": "crimethinc.com", "mfcLabel": "left"}
{"domain": "crooked.com", "mfcLabel": "left"}
{"domain": "crooksandliars.com", "mfcLabel": "left"}
{"domain": "currentaffairs.org", "mfcLabel": "left"}
{"domain": "curvemag.com", "mfcLabel": "left"}
{"domain": "thedailybeast.com", "mfcLabel": "left"}
{"domain": "dailydems.com", "mfcLabel": "left"}
{"domain": "dailydot.com", "mfcLabel": "left"}
{"domain": "dailykos.com", "mfcLabel": "left"}
{"domain": "dailynewsbin.com", "mfcLabel": "left"}
{"domain": "dailyrecord.co.uk", "mfcLabel": "left"}
{"domain": "dailysoundandfury.com", "mfcLabel": "left"}
{"domain": "dallasvoice.com", "mfcLabel": "left"}
{"domain": "dctribune.org", "mfcLabel": "left"}
{"domain": "deadstate.org", "mfcLabel": "left"}
{"domain": "deadspin.com", "mfcLabel": "left"}
{"domain": "deepleftfield.info", "mfcLabel": "left"}
{"domain": "deepstatenation.com", "mfcLabel": "left"}
{"domain": "democracyguardian.com", "mfcLabel": "left"}
{"domain": "democracynow.org", "mfcLabel": "left"}
{"domain": "democraticunderground.com", "mfcLabel": "left"}
{"domain": "deshabhimani.com", "mfcLabel": "left"}
{"domain": "desmogblog.com", "mfcLabel": "left"}
{"domain": "metrotimes.com", "mfcLabel": "left"}
{"domain": "dieharddemocrat.com", "mfcLabel": "left"}
{"domain": "dissentmagazine.org", "mfcLabel": "left"}
{"domain": "drudge.com", "mfcLabel": "left"}
{"domain": "earthfirstjournal.org", "mfcLabel": "left"}
{"domain": "economyincrisis.org", "mfcLabel": "left"}
{"domain": "egbertowillies.com", "mfcLabel": "left"}
{"domain": "electoral-vote.com", "mfcLabel": "left"}
{"domain": "electronicintifada.net", "mfcLabel": "left"}
{"domain": "elisabethparker.com", "mfcLabel": "left"}
{"domain": "elitedaily.com", "mfcLabel": "left"}
{"domain": "esquire.com", "mfcLabel": "left"}
{"domain": "everydayfeminism.com", "mfcLabel": "left"}
{"domain": "evonomics.com", "mfcLabel": "left"}
{"domain": "extranewsfeed.com", "mfcLabel": "left"}
{"domain": "feministcurrent.com", "mfcLabel": "left"}
{"domain": "feministing.com", "mfcLabel": "left"}
{"domain": "fifthestate.org", "mfcLabel": "left"}
{"domain": "filmingcops.com", "mfcLabel": "left"}
{"domain": "firstpost.com", "mfcLabel": "left"}
{"domain": "foodandwaterwatch.org", "mfcLabel": "left"}
{"domain": "foreignpolicyjournal.com", "mfcLabel": "left"}
{"domain": "foreignpolicynews.org", "mfcLabel": "left"}
{"domain": "forwardprogressives.com", "mfcLabel": "left"}
{"domain": "freepress.org", "mfcLabel": "left"}
{"domain": "frnewsreport.com", "mfcLabel": "left"}
{"domain": "ffrf.org", "mfcLabel": "left"}
{"domain": "freedomnews.org.uk", "mfcLabel": "left"}
{"domain": "frontpagelive.com", "mfcLabel": "left"}
{"domain": "freespeech.org", "mfcLabel": "left"}
{"domain": "gizmodo.com", "mfcLabel": "left"}
{"domain": "globalvoices.org", "mfcLabel": "left"}
{"domain": "globetoday.com", "mfcLabel": "left"}
{"domain": "good.is", "mfcLabel": "left"}
{"domain": "gopocalypse.org", "mfcLabel": "left"}
{"domain": "gq.com", "mfcLabel": "left"}
{"domain": "bradford-delong.com", "mfcLabel": "left"}
{"domain": "greenleft.org.au", "mfcLabel": "left"}
{"domain": "greenvillegazette.com", "mfcLabel": "left"}
{"domain": "gritpost.com", "mfcLabel": "left"}
{"domain": "groopspeak.com", "mfcLabel": "left"}
{"domain": "guardianlv.com", "mfcLabel": "left"}
{"domain": "theguardiansofdemocracy.com", "mfcLabel": "left"}
{"domain": "haaretz.com", "mfcLabel": "left"}
{"domain": "happy-foxie.com", "mfcLabel": "left"}
{"domain": "hillreporter.com", "mfcLabel": "left"}
{"domain": "huffpost.com", "mfcLabel": "left"}
{"domain": "hrc.org", "mfcLabel": "left"}
{"domain": "impeachdjtnow.com", "mfcLabel": "left"}
{"domain": "marxist.com", "mfcLabel": "left"}
{"domain": "inthesetimes.com", "mfcLabel": "left"}
{"domain": "ir.net", "mfcLabel": "left"}
{"domain": "inequalitymedia.org", "mfcLabel": "left"}
{"domain": "juancole.com", "mfcLabel": "left"}
{"domain": "ips-dc.org", "mfcLabel": "left"}
{"domain": "internationalviewpoint.org", "mfcLabel": "left"}
{"domain": "intrepidreport.com", "mfcLabel": "left"}
{"domain": "iowastartingline.com", "mfcLabel": "left"}
{"domain": "itsgoingdown.org", "mfcLabel": "left"}
{"domain": "jacobinmag.com", "mfcLabel": "left"}
{"domain": "jezebel.com", "mfcLabel": "left"}
{"domain": "latest.com", "mfcLabel": "left"}
{"domain": "lavendermagazine.com", "mfcLabel": "left"}
{"domain": "leftaction.com", "mfcLabel": "left"}
{"domain": "leftfootforward.org", "mfcLabel": "left"}
{"domain": "leftoverrights.com", "mfcLabel": "left"}
{"domain": "leftsideofhistory.com", "mfcLabel": "left"}
{"domain": "leftvoice.org", "mfcLabel": "left"}
{"domain": "leftwingnation.org", "mfcLabel": "left"}
{"domain": "leftscoop.com", "mfcLabel": "left"}
{"domain": "lgbtqnation.com", "mfcLabel": "left"}
{"domain": "libcom.org", "mfcLabel": "left"}
{"domain": "liberalamerica.life", "mfcLabel": "left"}
{"domain": "liberalexaminer.com", "mfcLabel": "left"}
{"domain": "samuel-warde.com", "mfcLabel": "left"}
{"domain": "liberationnews.org", "mfcLabel": "left"}
{"domain": "littlegreenfootballs.com", "mfcLabel": "left"}
{"domain": "loveknowledge.org", "mfcLabel": "left"}
{"domain": "mashable.com", "mfcLabel": "left"}
{"domain": "meanlefthook.com", "mfcLabel": "left"}
{"domain": "mediamatters.org", "mfcLabel": "left"}
{"domain": "mediaite.com", "mfcLabel": "left"}
{"domain": "meduza.io", "mfcLabel": "left"}
{"domain": "merryjane.com", "mfcLabel": "left"}
{"domain": "miaminewtimes.com", "mfcLabel": "left"}
{"domain": "middleeastmonitor.com", "mfcLabel": "left"}
{"domain": "modernliberals.com", "mfcLabel": "left"}
{"domain": "molad.org", "mfcLabel": "left"}
{"domain": "mondoweiss.net", "mfcLabel": "left"}
{"domain": "moonofalabama.org", "mfcLabel": "left"}
{"domain": "msmagazine.com", "mfcLabel": "left"}
{"domain": "nap-sack.org", "mfcLabel": "left"}
{"domain": "nationofchange.org", "mfcLabel": "left"}
{"domain": "newint.org", "mfcLabel": "left"}
{"domain": "newpol.org", "mfcLabel": "left"}
{"domain": "newrepublic.com", "mfcLabel": "left"}
{"domain": "newstatesman.com", "mfcLabel": "left"}
{"domain": "amsterdamnews.com", "mfcLabel": "left"}
{"domain": "nymag.com", "mfcLabel": "left"}
{"domain": "newyorker.com", "mfcLabel": "left"}
{"domain": "newscorpse.com", "mfcLabel": "left"}
{"domain": "newshounds.us", "mfcLabel": "left"}
{"domain": "newslogue.com", "mfcLabel": "left"}
{"domain": "newsone.com", "mfcLabel": "left"}
{"domain": "newsweek.com", "mfcLabel": "left"}
{"domain": "north99.org", "mfcLabel": "left"}
{"domain": "nova-magazine.net", "mfcLabel": "left"}
{"domain": "nowtoronto.com", "mfcLabel": "left"}
{"domain": "occupy.com", "mfcLabel": "left"}
{"domain": "onegreenplanet.org", "mfcLabel": "left"}
{"domain": "opednews.com", "mfcLabel": "left"}
{"domain": "ourvoiceny.com", "mfcLabel": "left"}
{"domain": "out.com", "mfcLabel": "left"}
{"domain": "palmerreport.com", "mfcLabel": "left"}
{"domain": "pastemagazine.com", "mfcLabel": "left"}
{"domain": "peacock-panache.com", "mfcLabel": "left"}
{"domain": "pfaw.org", "mfcLabel": "left"}
{"domain": "people.com", "mfcLabel": "left"}
{"domain": "photographyisnotacrime.com", "mfcLabel": "left"}
{"domain": "pinknews.co.uk", "mfcLabel": "left"}
{"domain": "politicaldig.com", "mfcLabel": "left"}
{"domain": "politicalupdater.com", "mfcLabel": "left"}
{"domain": "politicususa.com", "mfcLabel": "left"}
{"domain": "politizoom.com", "mfcLabel": "left"}
{"domain": "popular.info", "mfcLabel": "left"}
{"domain": "popularresistance.org", "mfcLabel": "left"}
{"domain": "pravdareport.com", "mfcLabel": "left"}
{"domain": "pressprogress.ca", "mfcLabel": "left"}
{"domain": "progressivearmy.com", "mfcLabel": "left"}
{"domain": "progressiveliberal.net", "mfcLabel": "left"}
{"domain": "projectcensored.org", "mfcLabel": "left"}
{"domain": "proudemocrat.com", "mfcLabel": "left"}
{"domain": "putintrump.org", "mfcLabel": "left"}
{"domain": "queerty.com", "mfcLabel": "left"}
{"domain": "rabble.ca", "mfcLabel": "left"}
{"domain": "rantt.com", "mfcLabel": "left"}
{"domain": "rappler.com", "mfcLabel": "left"}
{"domain": "rawprogressive.com", "mfcLabel": "left"}
{"domain": "rawstory.com", "mfcLabel": "left"}
{"domain": "readersupportednews.org", "mfcLabel": "left"}
{"domain": "readingthepictures.org", "mfcLabel": "left"}
{"domain": "therealnews.com", "mfcLabel": "left"}
{"domain": "redpepper.org.uk", "mfcLabel": "left"}
{"domain": "redstatedisaster.com", "mfcLabel": "left"}
{"domain": "redyouth.org", "mfcLabel": "left"}
{"domain": "republicanssucks.org", "mfcLabel": "left"}
{"domain": "republicreport.org", "mfcLabel": "left"}
{"domain": "resilience.org", "mfcLabel": "left"}
{"domain": "revcom.us", "mfcLabel": "left"}
{"domain": "reverepress.com", "mfcLabel": "left"}
{"domain": "revolution-news.com", "mfcLabel": "left"}
{"domain": "rewire.news", "mfcLabel": "left"}
{"domain": "rightwingwatch.org", "mfcLabel": "left"}
{"domain": "trofire.com", "mfcLabel": "left"}
{"domain": "rollingstone.com", "mfcLabel": "left"}
{"domain": "salon.com", "mfcLabel": "left"}
{"domain": "scarymommy.com", "mfcLabel": "left"}
{"domain": "shadowproof.com", "mfcLabel": "left"}
{"domain": "shareblue.com", "mfcLabel": "left"}
{"domain": "slate.com", "mfcLabel": "left"}
{"domain": "smirkingchimp.com", "mfcLabel": "left"}
{"domain": "worldsocialism.org", "mfcLabel": "left"}
{"domain": "socialistworker.org", "mfcLabel": "left"}
{"domain": "sourcepolitics.com", "mfcLabel": "left"}
{"domain": "sourcewatch.org", "mfcLabel": "left"}
{"domain": "splcenter.org", "mfcLabel": "left"}
{"domain": "cnntimes.online", "mfcLabel": "left"}
{"domain": "splinternews.com", "mfcLabel": "left"}
{"domain": "stpete4peace.org", "mfcLabel": "left"}
{"domain": "syriana-analysis.com", "mfcLabel": "left"}
{"domain": "takepart.com", "mfcLabel": "left"}
{"domain": "talkingpointsmemo.com", "mfcLabel": "left"}
{"domain": "teenvogue.com", "mfcLabel": "left"}
{"domain": "telesurtv.net", "mfcLabel": "left"}
{"domain": "advocate.com", "mfcLabel": "left"}
{"domain": "americanindependent.com", "mfcLabel": "left"}
{"domain": "prospect.org", "mfcLabel": "left"}
{"domain": "austinchronicle.com", "mfcLabel": "left"}
{"domain": "theblueroute.org", "mfcLabel": "left"}
{"domain": "theburningspear.com", "mfcLabel": "left"}
{"domain": "thecanary.co", "mfcLabel": "left"}
{"domain": "climaterealityproject.org", "mfcLabel": "left"}
{"domain": "daily49er.com", "mfcLabel": "left"}
{"domain": "thedailybanter.com", "mfcLabel": "left"}
{"domain": "the-daily.buzz", "mfcLabel": "left"}
{"domain": "thedailyvox.co.za", "mfcLabel": "left"}
{"domain": "democratichub.com", "mfcLabel": "left"}
{"domain": "thedodo.com", "mfcLabel": "left"}
{"domain": "dworkinreport.com", "mfcLabel": "left"}
{"domain": "theestablishment.co", "mfcLabel": "left"}
{"domain": "thefloridasqueeze.com", "mfcLabel": "left"}
{"domain": "thefrisky.com", "mfcLabel": "left"}
{"domain": "theimproper.com", "mfcLabel": "left"}
{"domain": "indypendent.org", "mfcLabel": "left"}
{"domain": "mavenroundtable.io", "mfcLabel": "center"}
{"domain": "thelily.com", "mfcLabel": "left"}
{"domain": "thelondoneconomic.com", "mfcLabel": "left"}
{"domain": "themarysue.com", "mfcLabel": "left"}
{"domain": "themilitant.com", "mfcLabel": "left"}
{"domain": "morningstaronline.co.uk", "mfcLabel": "left"}
{"domain": "thenation.com", "mfcLabel": "left"}
{"domain": "nationalmemo.com", "mfcLabel": "left"}
{"domain": "thenewcivilrightsmovement.com", "mfcLabel": "left"}
{"domain": "theoutline.com", "mfcLabel": "left"}
{"domain": "palestinechronicle.com", "mfcLabel": "left"}
{"domain": "progressive.org", "mfcLabel": "left"}
{"domain": "progressivefrontier.com", "mfcLabel": "left"}
{"domain": "samefacts.com", "mfcLabel": "left"}
{"domain": "theroot.com", "mfcLabel": "left"}
{"domain": "thelasource.com", "mfcLabel": "left"}
{"domain": "thesternfacts.com", "mfcLabel": "left"}
{"domain": "texasobserver.org", "mfcLabel": "left"}
{"domain": "villagevoice.com", "mfcLabel": "left"}
{"domain": "thewalrus.ca", "mfcLabel": "left"}
{"domain": "theweek.com", "mfcLabel": "left"}
{"domain": "worldcantwait.net", "mfcLabel": "left"}
{"domain": "thegrio.com", "mfcLabel": "left"}
{"domain": "theoswatch.com", "mfcLabel": "left"}
{"domain": "thinkprogress.org", "mfcLabel": "left"}
{"domain": "this.org", "mfcLabel": "left"}
{"domain": "towleroad.com", "mfcLabel": "left"}
{"domain": "tribunemagazine.org", "mfcLabel": "left"}
{"domain": "truthagainstthemachine.com", "mfcLabel": "left"}
{"domain": "truthdig.com", "mfcLabel": "left"}
{"domain": "truthout.org", "mfcLabel": "left"}
{"domain": "uproxx.com", "mfcLabel": "left"}
{"domain": "upworthy.com", "mfcLabel": "left"}
{"domain": "theuspoliticalpost.com", "mfcLabel": "left"}
{"domain": "usuncut.com", "mfcLabel": "left"}
{"domain": "vanityfair.com", "mfcLabel": "left"}
{"domain": "verifiedpolitics.com", "mfcLabel": "left"}
{"domain": "vermontindependent.org", "mfcLabel": "left"}
{"domain": "verrit.com", "mfcLabel": "left"}
{"domain": "viraltitle.com", "mfcLabel": "left"}
{"domain": "vox.com", "mfcLabel": "left"}
{"domain": "wallstreetonparade.com", "mfcLabel": "left"}
{"domain": "washingtondailywire.com", "mfcLabel": "left"}
{"domain": "washingtonmonthly.com", "mfcLabel": "leftcenter"}
{"domain": "washingtonpress.com", "mfcLabel": "left"}
{"domain": "washingtonsources.org", "mfcLabel": "left"}
{"domain": "washingtonian.com", "mfcLabel": "left"}
{"domain": "wearyourvoicemag.com", "mfcLabel": "left"}
{"domain": "whatmattersnews.com", "mfcLabel": "left"}
{"domain": "whitehousewatch.com", "mfcLabel": "left"}
{"domain": "whowhatwhy.org", "mfcLabel": "left"}
{"domain": "wonkette.com", "mfcLabel": "left"}
{"domain": "workers.org", "mfcLabel": "left"}
{"domain": "yesmagazine.org", "mfcLabel": "left"}
{"domain": "tytnetwork.com", "mfcLabel": "left"}
{"domain": "yourblackworld.net", "mfcLabel": "left"}
{"domain": "zcomm.org", "mfcLabel": "left"}
{"domain": "deathandtaxesmag.com", "mfcLabel": "left"}
{"domain": "democracychronicles.org", "mfcLabel": "left"}
{"domain": "msnbc.com", "mfcLabel": "left"}
{"domain": "reverbpress.news", "mfcLabel": "left"}
{"domain": "seventeen.com", "mfcLabel": "left"}
{"domain": "thefingnews.com", "mfcLabel": "left"}
{"domain": "wsws.org", "mfcLabel": "left"}
{"domain": "972mag.com", "mfcLabel": "leftcenter"}
{"domain": "abc.net.au", "mfcLabel": "leftcenter"}
{"domain": "abc11.com", "mfcLabel": "leftcenter"}
{"domain": "abovethelaw.com", "mfcLabel": "leftcenter"}
{"domain": "aclu.org", "mfcLabel": "leftcenter"}
{"domain": "aeon.co", "mfcLabel": "leftcenter"}
{"domain": "affinitymagazine.us", "mfcLabel": "leftcenter"}
{"domain": "africanarguments.org", "mfcLabel": "leftcenter"}
{"domain": "aljazeera.com", "mfcLabel": "leftcenter"}
{"domain": "al-monitor.com", "mfcLabel": "leftcenter"}
{"domain": "alhayat.com", "mfcLabel": "leftcenter"}
{"domain": "almasdarnews.com", "mfcLabel": "leftcenter"}
{"domain": "al-sura.com", "mfcLabel": "leftcenter"}
{"domain": "guttmacher.org", "mfcLabel": "leftcenter"}
{"domain": "adn.com", "mfcLabel": "leftcenter"}
{"domain": "timesunion.com", "mfcLabel": "leftcenter"}
{"domain": "albertaviews.ca", "mfcLabel": "leftcenter"}
{"domain": "allgov.com", "mfcLabel": "leftcenter"}
{"domain": "alliedprogress.org", "mfcLabel": "leftcenter"}
{"domain": "amny.com", "mfcLabel": "leftcenter"}
{"domain": "americamagazine.org", "mfcLabel": "leftcenter"}
{"domain": "americanimmigrationcouncil.org", "mfcLabel": "leftcenter"}
{"domain": "amnesty.org", "mfcLabel": "leftcenter"}
{"domain": "annistonstar.com", "mfcLabel": "leftcenter"}
{"domain": "adl.org", "mfcLabel": "leftcenter"}
{"domain": "aol.com", "mfcLabel": "leftcenter"}
{"domain": "apmreports.org", "mfcLabel": "leftcenter"}
{"domain": "aranews.net", "mfcLabel": "leftcenter"}
{"domain": "areomagazine.com", "mfcLabel": "leftcenter"}
{"domain": "tucson.com", "mfcLabel": "leftcenter"}
{"domain": "azdailysun.com", "mfcLabel": "leftcenter"}
{"domain": "azcentral.com", "mfcLabel": "leftcenter"}
{"domain": "arktimes.com", "mfcLabel": "leftcenter"}
{"domain": "armscontrol.org", "mfcLabel": "leftcenter"}
{"domain": "citizen-times.com", "mfcLabel": "leftcenter"}
{"domain": "asiasentinel.com", "mfcLabel": "leftcenter"}
{"domain": "asiancorrespondent.com", "mfcLabel": "leftcenter"}
{"domain": "atavist.com", "mfcLabel": "leftcenter"}
{"domain": "atlantablackstar.com", "mfcLabel": "leftcenter"}
{"domain": "ajc.com", "mfcLabel": "leftcenter"}
{"domain": "theatlantic.com", "mfcLabel": "leftcenter"}
{"domain": "atlanticmedia.com", "mfcLabel": "leftcenter"}
{"domain": "attn.com", "mfcLabel": "leftcenter"}
{"domain": "statesman.com", "mfcLabel": "leftcenter"}
{"domain": "axios.com", "mfcLabel": "leftcenter"}
{"domain": "backchannel.com", "mfcLabel": "leftcenter"}
{"domain": "balkaninsight.com", "mfcLabel": "leftcenter"}
{"domain": "baltimoresun.com", "mfcLabel": "leftcenter"}
{"domain": "bangordailynews.com", "mfcLabel": "leftcenter"}
{"domain": "baptistnews.com", "mfcLabel": "leftcenter"}
{"domain": "battlecreekenquirer.com", "mfcLabel": "leftcenter"}
{"domain": "bbc.com", "mfcLabel": "leftcenter"}
{"domain": "bjreview.com", "mfcLabel": "leftcenter"}
{"domain": "berkeleyside.com", "mfcLabel": "leftcenter"}
{"domain": "berkshireeagle.com", "mfcLabel": "leftcenter"}
{"domain": "billmoyers.com", "mfcLabel": "leftcenter"}
{"domain": "birminghammail.co.uk", "mfcLabel": "leftcenter"}
{"domain": "blastingnews.com", "mfcLabel": "leftcenter"}
{"domain": "bloomberg.com", "mfcLabel": "leftcenter"}
{"domain": "bluestemprairie.com", "mfcLabel": "leftcenter"}
{"domain": "bostonglobe.com", "mfcLabel": "leftcenter"}
{"domain": "bgr.com", "mfcLabel": "leftcenter"}
{"domain": "bramptonguardian.com", "mfcLabel": "leftcenter"}
{"domain": "brennancenter.org", "mfcLabel": "leftcenter"}
{"domain": "brookings.edu", "mfcLabel": "leftcenter"}
{"domain": "buffalonews.com", "mfcLabel": "leftcenter"}
{"domain": "businessinsider.com", "mfcLabel": "leftcenter"}
{"domain": "bustle.com", "mfcLabel": "leftcenter"}
{"domain": "buzzfeed.com", "mfcLabel": "leftcenter"}
{"domain": "calgaryherald.com", "mfcLabel": "leftcenter"}
{"domain": "calwatchdog.com", "mfcLabel": "leftcenter"}
{"domain": "canadalandshow.com", "mfcLabel": "leftcenter"}
{"domain": "capitalgazette.com", "mfcLabel": "leftcenter"}
{"domain": "caribbeanlifenews.com", "mfcLabel": "leftcenter"}
{"domain": "carolinapublicpress.org", "mfcLabel": "leftcenter"}
{"domain": "catchnews.com", "mfcLabel": "leftcenter"}
{"domain": "cbc.ca", "mfcLabel": "leftcenter"}
{"domain": "cbsnews.com", "mfcLabel": "leftcenter"}
{"domain": "cctv-america.com", "mfcLabel": "leftcenter"}
{"domain": "centerforinquiry.org", "mfcLabel": "leftcenter"}
{"domain": "ciponline.org", "mfcLabel": "leftcenter"}
{"domain": "populardemocracy.org", "mfcLabel": "leftcenter"}
{"domain": "cbpp.org", "mfcLabel": "leftcenter"}
{"domain": "wvgazettemail.com", "mfcLabel": "leftcenter"}
{"domain": "charlotteobserver.com", "mfcLabel": "leftcenter"}
{"domain": "timesfreepress.com", "mfcLabel": "leftcenter"}
{"domain": "cheddar.com", "mfcLabel": "leftcenter"}
{"domain": "chicagoreporter.com", "mfcLabel": "leftcenter"}
{"domain": "suntimes.com", "mfcLabel": "leftcenter"}
{"domain": "cgtn.com", "mfcLabel": "leftcenter"}
{"domain": "citizentruth.org", "mfcLabel": "leftcenter"}
{"domain": "legitgov.org", "mfcLabel": "leftcenter"}
{"domain": "citizensforethics.org", "mfcLabel": "leftcenter"}
{"domain": "ctj.org", "mfcLabel": "leftcenter"}
{"domain": "cleantechnica.com", "mfcLabel": "leftcenter"}
{"domain": "cnbc.com", "mfcLabel": "leftcenter"}
{"domain": "cjr.org", "mfcLabel": "leftcenter"}
{"domain": "colombiareports.com", "mfcLabel": "leftcenter"}
{"domain": "investigaterussia.org", "mfcLabel": "leftcenter"}
{"domain": "commoncause.org", "mfcLabel": "leftcenter"}
{"domain": "commonwealmagazine.org", "mfcLabel": "leftcenter"}
{"domain": "commonwealthfund.org", "mfcLabel": "leftcenter"}
{"domain": "ctpost.com", "mfcLabel": "leftcenter"}
{"domain": "consortiumnews.com", "mfcLabel": "leftcenter"}
{"domain": "corporatepresidency.org", "mfcLabel": "leftcenter"}
{"domain": "caller.com", "mfcLabel": "leftcenter"}
{"domain": "councilforthenationalinterest.org", "mfcLabel": "leftcenter"}
{"domain": "credoaction.com", "mfcLabel": "leftcenter"}
{"domain": "crosscut.com", "mfcLabel": "leftcenter"}
{"domain": "ctmirror.org", "mfcLabel": "leftcenter"}
{"domain": "gazettenet.com", "mfcLabel": "leftcenter"}
{"domain": "mirror.co.uk", "mfcLabel": "leftcenter"}
{"domain": "dawn.com", "mfcLabel": "leftcenter"}
{"domain": "dcreport.org", "mfcLabel": "leftcenter"}
{"domain": "deadline.com", "mfcLabel": "leftcenter"}
{"domain": "deccanherald.com", "mfcLabel": "leftcenter"}
{"domain": "delawareonline.com", "mfcLabel": "leftcenter"}
{"domain": "democracy21.org", "mfcLabel": "leftcenter"}
{"domain": "democratandchronicle.com", "mfcLabel": "leftcenter"}
{"domain": "demos.org", "mfcLabel": "leftcenter"}
{"domain": "denverpost.com", "mfcLabel": "leftcenter"}
{"domain": "freep.com", "mfcLabel": "leftcenter"}
{"domain": "zeit.de", "mfcLabel": "leftcenter"}
{"domain": "digg.com", "mfcLabel": "leftcenter"}
{"domain": "diply.com", "mfcLabel": "leftcenter"}
{"domain": "diversityinc.com", "mfcLabel": "leftcenter"}
{"domain": "dutchdailynews.com", "mfcLabel": "leftcenter"}
{"domain": "dutchreview.com", "mfcLabel": "leftcenter"}
{"domain": "dw.com", "mfcLabel": "leftcenter"}
{"domain": "earthjustice.org", "mfcLabel": "leftcenter"}
{"domain": "eastbaytimes.com", "mfcLabel": "leftcenter"}
{"domain": "econofact.org", "mfcLabel": "leftcenter"}
{"domain": "epi.org", "mfcLabel": "leftcenter"}
{"domain": "economicshelp.org", "mfcLabel": "leftcenter"}
{"domain": "egyptianstreets.com", "mfcLabel": "leftcenter"}
{"domain": "elpais.com", "mfcLabel": "leftcenter"}
{"domain": "elpasotimes.com", "mfcLabel": "leftcenter"}
{"domain": "eff.org", "mfcLabel": "leftcenter"}
{"domain": "emirates247.com", "mfcLabel": "leftcenter"}
{"domain": "emptywheel.net", "mfcLabel": "leftcenter"}
{"domain": "engadget.com", "mfcLabel": "leftcenter"}
{"domain": "ew.com", "mfcLabel": "leftcenter"}
{"domain": "euobserver.com", "mfcLabel": "leftcenter"}
{"domain": "euractiv.com", "mfcLabel": "leftcenter"}
{"domain": "exposingtruth.com", "mfcLabel": "leftcenter"}
{"domain": "factmyth.com", "mfcLabel": "leftcenter"}
{"domain": "factbox.tv", "mfcLabel": "leftcenter"}
{"domain": "fair.org", "mfcLabel": "leftcenter"}
{"domain": "fairvote.org", "mfcLabel": "leftcenter"}
{"domain": "fastcompany.com", "mfcLabel": "leftcenter"}
{"domain": "feministfrequency.com", "mfcLabel": "leftcenter"}
{"domain": "thefifthcolumnnews.com", "mfcLabel": "leftcenter"}
{"domain": "fightforthefuture.org", "mfcLabel": "leftcenter"}
{"domain": "fivethirtyeight.com", "mfcLabel": "leftcenter"}
{"domain": "fpif.org", "mfcLabel": "leftcenter"}
{"domain": "fwweekly.com", "mfcLabel": "leftcenter"}
{"domain": "france24.com", "mfcLabel": "leftcenter"}
{"domain": "freakonomics.com", "mfcLabel": "leftcenter"}
{"domain": "fresnobee.com", "mfcLabel": "leftcenter"}
{"domain": "fusion.net", "mfcLabel": "leftcenter"}
{"domain": "gaystarnews.com", "mfcLabel": "leftcenter"}
{"domain": "geopoliticsalert.com", "mfcLabel": "leftcenter"}
{"domain": "glamour.com", "mfcLabel": "leftcenter"}
{"domain": "globalcitizen.org", "mfcLabel": "leftcenter"}
{"domain": "globalnews.ca", "mfcLabel": "leftcenter"}
{"domain": "pri.org", "mfcLabel": "leftcenter"}
{"domain": "globalrealnews.com", "mfcLabel": "leftcenter"}
{"domain": "globalriskinsights.com", "mfcLabel": "leftcenter"}
{"domain": "globaltimes.cn", "mfcLabel": "leftcenter"}
{"domain": "governing.com", "mfcLabel": "leftcenter"}
{"domain": "greensboro.com", "mfcLabel": "leftcenter"}
{"domain": "greentechmedia.com", "mfcLabel": "leftcenter"}
{"domain": "grist.org", "mfcLabel": "leftcenter"}
{"domain": "gunviolencearchive.org", "mfcLabel": "leftcenter"}
{"domain": "harpers.org", "mfcLabel": "leftcenter"}
{"domain": "courant.com", "mfcLabel": "leftcenter"}
{"domain": "healthyway.com", "mfcLabel": "leftcenter"}
{"domain": "heavy.com", "mfcLabel": "leftcenter"}
{"domain": "helsinkitimes.fi", "mfcLabel": "leftcenter"}
{"domain": "hcn.org", "mfcLabel": "leftcenter"}
{"domain": "huffingtonpost.com", "mfcLabel": "leftcenter"}
{"domain": "hindustantimes.com", "mfcLabel": "leftcenter"}
{"domain": "historynewsnetwork.org", "mfcLabel": "leftcenter"}
{"domain": "hollywoodreporter.com", "mfcLabel": "leftcenter"}
{"domain": "staradvertiser.com", "mfcLabel": "leftcenter"}
{"domain": "hrw.org", "mfcLabel": "leftcenter"}
{"domain": "humanium.org", "mfcLabel": "leftcenter"}
{"domain": "hurriyetdailynews.com", "mfcLabel": "leftcenter"}
{"domain": "icenews.is", "mfcLabel": "leftcenter"}
{"domain": "ifamericaknew.org", "mfcLabel": "leftcenter"}
{"domain": "independentaustralia.net", "mfcLabel": "leftcenter"}
{"domain": "indymedia.org", "mfcLabel": "leftcenter"}
{"domain": "indystar.com", "mfcLabel": "leftcenter"}
{"domain": "inews.co.uk", "mfcLabel": "leftcenter"}
{"domain": "inquisitr.com", "mfcLabel": "leftcenter"}
{"domain": "insideedition.com", "mfcLabel": "leftcenter"}
{"domain": "insidehighered.com", "mfcLabel": "leftcenter"}
{"domain": "insidephilanthropy.com", "mfcLabel": "leftcenter"}
{"domain": "insideclimatenews.org", "mfcLabel": "leftcenter"}
{"domain": "imeu.org", "mfcLabel": "leftcenter"}
{"domain": "itep.org", "mfcLabel": "leftcenter"}
{"domain": "ibtimes.com", "mfcLabel": "leftcenter"}
{"domain": "icrw.org", "mfcLabel": "leftcenter"}
{"domain": "crisisgroup.org", "mfcLabel": "leftcenter"}
{"domain": "interpretermag.com", "mfcLabel": "leftcenter"}
{"domain": "inverse.com", "mfcLabel": "leftcenter"}
{"domain": "ipolitics.ca", "mfcLabel": "leftcenter"}
{"domain": "irinnews.org", "mfcLabel": "leftcenter"}
{"domain": "jacksonfreepress.com", "mfcLabel": "leftcenter"}
{"domain": "jihadica.com", "mfcLabel": "leftcenter"}
{"domain": "jointcenter.org", "mfcLabel": "leftcenter"}
{"domain": "helvidius.org", "mfcLabel": "leftcenter"}
{"domain": "kansascity.com", "mfcLabel": "leftcenter"}
{"domain": "kmov.com", "mfcLabel": "leftcenter"}
{"domain": "knightfoundation.org", "mfcLabel": "leftcenter"}
{"domain": "koco.com", "mfcLabel": "leftcenter"}
{"domain": "kotaku.com", "mfcLabel": "leftcenter"}
{"domain": "kuow.org", "mfcLabel": "leftcenter"}
{"domain": "kurdistan24.net", "mfcLabel": "leftcenter"}
{"domain": "lapresse.ca", "mfcLabel": "leftcenter"}
{"domain": "latimes.com", "mfcLabel": "leftcenter"}
{"domain": "lasvegassun.com", "mfcLabel": "leftcenter"}
{"domain": "latintimes.com", "mfcLabel": "leftcenter"}
{"domain": "leftjustified.com", "mfcLabel": "leftcenter"}
{"domain": "lethbridgeherald.com", "mfcLabel": "leftcenter"}
{"domain": "kentucky.com", "mfcLabel": "leftcenter"}
{"domain": "liberalmountain.com", "mfcLabel": "leftcenter"}
{"domain": "lifehacker.com", "mfcLabel": "leftcenter"}
{"domain": "liveleak.com", "mfcLabel": "leftcenter"}
{"domain": "mainebeacon.com", "mfcLabel": "leftcenter"}
{"domain": "mainichi.jp", "mfcLabel": "leftcenter"}
{"domain": "malaysiakini.com", "mfcLabel": "leftcenter"}
{"domain": "mcclatchydc.com", "mfcLabel": "leftcenter"}
{"domain": "mediafiledc.com", "mfcLabel": "leftcenter"}
{"domain": "medium.com", "mfcLabel": "leftcenter"}
{"domain": "metro.us", "mfcLabel": "leftcenter"}
{"domain": "metro.co.uk", "mfcLabel": "leftcenter"}
{"domain": "mexiconewsdaily.com", "mfcLabel": "leftcenter"}
{"domain": "miamiherald.com", "mfcLabel": "leftcenter"}
{"domain": "mic.com", "mfcLabel": "leftcenter"}
{"domain": "migrationpolicy.org", "mfcLabel": "leftcenter"}
{"domain": "jsonline.com", "mfcLabel": "leftcenter"}
{"domain": "startribune.com", "mfcLabel": "leftcenter"}
{"domain": "mprnews.org", "mfcLabel": "leftcenter"}
{"domain": "minnpost.com", "mfcLabel": "leftcenter"}
{"domain": "mintpressnews.com", "mfcLabel": "leftcenter"}
{"domain": "mongabay.com", "mfcLabel": "leftcenter"}
{"domain": "monthlyreview.org", "mfcLabel": "leftcenter"}
{"domain": "montrealgazette.com", "mfcLabel": "leftcenter"}
{"domain": "themoscowtimes.com", "mfcLabel": "leftcenter"}
{"domain": "motherjones.com", "mfcLabel": "leftcenter"}
{"domain": "mnn.com", "mfcLabel": "leftcenter"}
{"domain": "mothership.sg", "mfcLabel": "leftcenter"}
{"domain": "mtdemocrat.com", "mfcLabel": "leftcenter"}
{"domain": "msn.com", "mfcLabel": "leftcenter"}
{"domain": "muncievoice.com", "mfcLabel": "leftcenter"}
{"domain": "mwcnews.net", "mfcLabel": "leftcenter"}
{"domain": "nakedcapitalism.com", "mfcLabel": "leftcenter"}
{"domain": "naplesnews.com", "mfcLabel": "leftcenter"}
{"domain": "naacp.org", "mfcLabel": "leftcenter"}
{"domain": "transequality.org", "mfcLabel": "leftcenter"}
{"domain": "natmonitor.com", "mfcLabel": "leftcenter"}
{"domain": "nationalnewswatch.com", "mfcLabel": "leftcenter"}
{"domain": "nationalobserver.com", "mfcLabel": "leftcenter"}
{"domain": "youthrights.org", "mfcLabel": "leftcenter"}
{"domain": "resourcegovernance.org", "mfcLabel": "leftcenter"}
{"domain": "nrdc.org", "mfcLabel": "leftcenter"}
{"domain": "nature.org", "mfcLabel": "leftcenter"}
{"domain": "nbcnews.com", "mfcLabel": "leftcenter"}
{"domain": "ncpolicywatch.com", "mfcLabel": "leftcenter"}
{"domain": "ndtv.com", "mfcLabel": "leftcenter"}
{"domain": "necn.com", "mfcLabel": "leftcenter"}
{"domain": "neweurope.eu", "mfcLabel": "leftcenter"}
{"domain": "newleftreview.org", "mfcLabel": "leftcenter"}
{"domain": "newmatilda.com", "mfcLabel": "leftcenter"}
{"domain": "newmoderate.com", "mfcLabel": "leftcenter"}
{"domain": "nydailynews.com", "mfcLabel": "leftcenter"}
{"domain": "nytimes.com", "mfcLabel": "leftcenter"}
{"domain": "newsandguts.com", "mfcLabel": "leftcenter"}
{"domain": "kfor.com", "mfcLabel": "leftcenter"}
{"domain": "newsdeeply.com", "mfcLabel": "leftcenter"}
{"domain": "news.com.au", "mfcLabel": "leftcenter"}
{"domain": "newsday.com", "mfcLabel": "leftcenter"}
{"domain": "newser.com", "mfcLabel": "leftcenter"}
{"domain": "newsgru.com", "mfcLabel": "leftcenter"}
{"domain": "newsy.com", "mfcLabel": "leftcenter"}
{"domain": "npr.org", "mfcLabel": "leftcenter"}
{"domain": "ocweekly.com", "mfcLabel": "leftcenter"}
{"domain": "oilandwaterdontmix.org", "mfcLabel": "leftcenter"}
{"domain": "oneindia.com", "mfcLabel": "leftcenter"}
{"domain": "opendemocracy.net", "mfcLabel": "leftcenter"}
{"domain": "opposingviews.com", "mfcLabel": "leftcenter"}
{"domain": "orlandosentinel.com", "mfcLabel": "leftcenter"}
{"domain": "ourworldindata.org", "mfcLabel": "leftcenter"}
{"domain": "outsidethebeltway.com", "mfcLabel": "leftcenter"}
{"domain": "ozy.com", "mfcLabel": "leftcenter"}
{"domain": "psmag.com", "mfcLabel": "leftcenter"}
{"domain": "panampost.com", "mfcLabel": "leftcenter"}
{"domain": "patrioticmillionaires.org", "mfcLabel": "leftcenter"}
{"domain": "pbs.org", "mfcLabel": "leftcenter"}
{"domain": "philly.com", "mfcLabel": "leftcenter"}
{"domain": "inquirer.net", "mfcLabel": "leftcenter"}
{"domain": "phoenixnewtimes.com", "mfcLabel": "leftcenter"}
{"domain": "politicalcritique.org", "mfcLabel": "leftcenter"}
{"domain": "politicsthatwork.com", "mfcLabel": "leftcenter"}
{"domain": "populationconnection.org", "mfcLabel": "leftcenter"}
{"domain": "pressherald.com", "mfcLabel": "leftcenter"}
{"domain": "pamplinmedia.com", "mfcLabel": "leftcenter"}
{"domain": "positive.news", "mfcLabel": "leftcenter"}
{"domain": "presstv.com", "mfcLabel": "leftcenter"}
{"domain": "propublica.org", "mfcLabel": "leftcenter"}
{"domain": "prospectmagazine.co.uk", "mfcLabel": "leftcenter"}
{"domain": "providencejournal.com", "mfcLabel": "leftcenter"}
{"domain": "citizen.org", "mfcLabel": "leftcenter"}
{"domain": "qz.com", "mfcLabel": "leftcenter"}
{"domain": "rfa.org", "mfcLabel": "leftcenter"}
{"domain": "newsobserver.com", "mfcLabel": "leftcenter"}
{"domain": "rationalwiki.org", "mfcLabel": "leftcenter"}
{"domain": "religionnews.com", "mfcLabel": "leftcenter"}
{"domain": "rgj.com", "mfcLabel": "leftcenter"}
{"domain": "revealnews.org", "mfcLabel": "leftcenter"}
{"domain": "irc-online.org", "mfcLabel": "leftcenter"}
{"domain": "roanoke.com", "mfcLabel": "leftcenter"}
{"domain": "rooseveltinstitute.org", "mfcLabel": "leftcenter"}
{"domain": "rudaw.net", "mfcLabel": "leftcenter"}
{"domain": "sacbee.com", "mfcLabel": "leftcenter"}
{"domain": "sltrib.com", "mfcLabel": "leftcenter"}
{"domain": "mysanantonio.com", "mfcLabel": "leftcenter"}
{"domain": "sandiegofreepress.org", "mfcLabel": "leftcenter"}
{"domain": "sandiegoreader.com", "mfcLabel": "leftcenter"}
{"domain": "sfchronicle.com", "mfcLabel": "leftcenter"}
{"domain": "sfexaminer.com", "mfcLabel": "leftcenter"}
{"domain": "sfglobe.com", "mfcLabel": "leftcenter"}
{"domain": "mercurynews.com", "mfcLabel": "leftcenter"}
{"domain": "independent.com", "mfcLabel": "leftcenter"}
{"domain": "sapiens.org", "mfcLabel": "leftcenter"}
{"domain": "saudigazette.com.sa", "mfcLabel": "leftcenter"}
{"domain": "scoopwhoop.com", "mfcLabel": "leftcenter"}
{"domain": "scroll.in", "mfcLabel": "leftcenter"}
{"domain": "seattlepi.com", "mfcLabel": "leftcenter"}
{"domain": "seattletimes.com", "mfcLabel": "leftcenter"}
{"domain": "secondnexus.com", "mfcLabel": "leftcenter"}
{"domain": "sentencingproject.org", "mfcLabel": "leftcenter"}
{"domain": "sfgate.com", "mfcLabel": "leftcenter"}
{"domain": "shameproject.com", "mfcLabel": "leftcenter"}
{"domain": "sojo.net", "mfcLabel": "leftcenter"}
{"domain": "sootoday.com", "mfcLabel": "leftcenter"}
{"domain": "scmp.com", "mfcLabel": "leftcenter"}
{"domain": "sbs.com.au", "mfcLabel": "leftcenter"}
{"domain": "spiegel.de", "mfcLabel": "leftcenter"}
{"domain": "stltoday.com", "mfcLabel": "leftcenter"}
{"domain": "twincities.com", "mfcLabel": "leftcenter"}
{"domain": "nj.com", "mfcLabel": "leftcenter"}
{"domain": "silive.com", "mfcLabel": "leftcenter"}
{"domain": "stepfeed.com", "mfcLabel": "leftcenter"}
{"domain": "stocksnewsdaily.com", "mfcLabel": "leftcenter"}
{"domain": "stopfake.org", "mfcLabel": "leftcenter"}
{"domain": "stuff.co.nz", "mfcLabel": "leftcenter"}
{"domain": "swissinfo.ch", "mfcLabel": "leftcenter"}
{"domain": "syriahr.com", "mfcLabel": "leftcenter"}
{"domain": "tabletmag.com", "mfcLabel": "leftcenter"}
{"domain": "tampabay.com", "mfcLabel": "leftcenter"}
{"domain": "tarbell.org", "mfcLabel": "leftcenter"}
{"domain": "taxjustice.net", "mfcLabel": "leftcenter"}
{"domain": "taxpolicycenter.org", "mfcLabel": "leftcenter"}
{"domain": "techcrunch.com", "mfcLabel": "leftcenter"}
{"domain": "techdirt.com", "mfcLabel": "leftcenter"}
{"domain": "texasmonthly.com", "mfcLabel": "leftcenter"}
{"domain": "texastribune.org", "mfcLabel": "leftcenter"}
{"domain": "theage.com.au", "mfcLabel": "leftcenter"}
{"domain": "asahi.com", "mfcLabel": "leftcenter"}
{"domain": "app.com", "mfcLabel": "leftcenter"}
{"domain": "theautomaticearth.com", "mfcLabel": "leftcenter"}
{"domain": "thebaffler.com", "mfcLabel": "leftcenter"}
{"domain": "thebipartisanpress.com", "mfcLabel": "leftcenter"}
{"domain": "brownsvilleherald.com", "mfcLabel": "leftcenter"}
{"domain": "budapestbeacon.com", "mfcLabel": "leftcenter"}
{"domain": "cepr.net", "mfcLabel": "leftcenter"}
{"domain": "tcf.org", "mfcLabel": "leftcenter"}
{"domain": "thechristianleft.org", "mfcLabel": "leftcenter"}
{"domain": "thecitizen.org.au", "mfcLabel": "leftcenter"}
{"domain": "canadians.org", "mfcLabel": "leftcenter"}
{"domain": "courier-journal.com", "mfcLabel": "leftcenter"}
{"domain": "dailyclimate.org", "mfcLabel": "leftcenter"}
{"domain": "dailyhive.com", "mfcLabel": "leftcenter"}
{"domain": "dailytarheel.com", "mfcLabel": "leftcenter"}
{"domain": "indiatimes.com", "mfcLabel": "right-center"}
{"domain": "ecfr.eu", "mfcLabel": "leftcenter"}
{"domain": "lehighvalleylive.com", "mfcLabel": "leftcenter"}
{"domain": "forward.com", "mfcLabel": "leftcenter"}
{"domain": "readfrontier.org", "mfcLabel": "leftcenter"}
{"domain": "theguardian.com", "mfcLabel": "leftcenter"}
{"domain": "heraldnet.com", "mfcLabel": "leftcenter"}
{"domain": "thehilltalk.com", "mfcLabel": "leftcenter"}
{"domain": "thehindu.com", "mfcLabel": "leftcenter"}
{"domain": "independent.co.uk", "mfcLabel": "leftcenter"}
{"domain": "theintercept.com", "mfcLabel": "leftcenter"}
{"domain": "irishtimes.com", "mfcLabel": "leftcenter"}
{"domain": "irrawaddy.com", "mfcLabel": "leftcenter"}
{"domain": "jpost.com", "mfcLabel": "right-center"}
{"domain": "lohud.com", "mfcLabel": "leftcenter"}
{"domain": "koreatimes.co.kr", "mfcLabel": "leftcenter"}
{"domain": "thelocal.no", "mfcLabel": "leftcenter"}
{"domain": "themoderatevoice.com", "mfcLabel": "leftcenter"}
{"domain": "themonthly.com.au", "mfcLabel": "leftcenter"}
{"domain": "nationinstitute.org", "mfcLabel": "leftcenter"}
{"domain": "alaraby.co.uk", "mfcLabel": "leftcenter"}
{"domain": "thenewtropic.com", "mfcLabel": "leftcenter"}
{"domain": "thenewstribune.com", "mfcLabel": "leftcenter"}
{"domain": "newstimes.com", "mfcLabel": "leftcenter"}
{"domain": "thenextweb.com", "mfcLabel": "leftcenter"}
{"domain": "theodysseyonline.com", "mfcLabel": "leftcenter"}
{"domain": "theolympian.com", "mfcLabel": "leftcenter"}
{"domain": "theoslotimes.com", "mfcLabel": "leftcenter"}
{"domain": "palmbeachpost.com", "mfcLabel": "leftcenter"}
{"domain": "pennlive.com", "mfcLabel": "leftcenter"}
{"domain": "cleveland.com", "mfcLabel": "leftcenter"}
{"domain": "pressdemocrat.com", "mfcLabel": "leftcenter"}
{"domain": "pulsegulfcoast.com", "mfcLabel": "leftcenter"}
{"domain": "northjersey.com", "mfcLabel": "leftcenter"}
{"domain": "theringer.com", "mfcLabel": "leftcenter"}
{"domain": "santafenewmexican.com", "mfcLabel": "leftcenter"}
{"domain": "thesaturdaypaper.com.au", "mfcLabel": "leftcenter"}
{"domain": "theskimm.com", "mfcLabel": "leftcenter"}
{"domain": "thestate.com", "mfcLabel": "leftcenter"}
{"domain": "statepress.com", "mfcLabel": "leftcenter"}
{"domain": "thestranger.com", "mfcLabel": "leftcenter"}
{"domain": "thesunmagazine.org", "mfcLabel": "leftcenter"}
{"domain": "smh.com.au", "mfcLabel": "leftcenter"}
{"domain": "thetab.com", "mfcLabel": "leftcenter"}
{"domain": "thetrace.org", "mfcLabel": "leftcenter"}
{"domain": "thetyee.ca", "mfcLabel": "leftcenter"}
{"domain": "thevarsity.ca", "mfcLabel": "leftcenter"}
{"domain": "theverge.com", "mfcLabel": "leftcenter"}
{"domain": "pilotonline.com", "mfcLabel": "leftcenter"}
{"domain": "theweek.co.uk", "mfcLabel": "leftcenter"}
{"domain": "wilderness.org", "mfcLabel": "leftcenter"}
{"domain": "thewire.in", "mfcLabel": "leftcenter"}
{"domain": "thisisthezerohour.com", "mfcLabel": "leftcenter"}
{"domain": "thewrap.com", "mfcLabel": "leftcenter"}
{"domain": "trust.org", "mfcLabel": "leftcenter"}
{"domain": "thrillist.com", "mfcLabel": "leftcenter"}
{"domain": "time.com", "mfcLabel": "leftcenter"}
{"domain": "timeline.com", "mfcLabel": "leftcenter"}
{"domain": "timescolonist.com", "mfcLabel": "leftcenter"}
{"domain": "timesheadline.com", "mfcLabel": "leftcenter"}
{"domain": "timesofisrael.com", "mfcLabel": "leftcenter"}
{"domain": "nola.com", "mfcLabel": "leftcenter"}
{"domain": "tmz.com", "mfcLabel": "leftcenter"}
{"domain": "toinformistoinfluence.com", "mfcLabel": "leftcenter"}
{"domain": "tomdispatch.com", "mfcLabel": "leftcenter"}
{"domain": "thestar.com", "mfcLabel": "leftcenter"}
{"domain": "uawire.org", "mfcLabel": "leftcenter"}
{"domain": "unicornriot.ninja", "mfcLabel": "leftcenter"}
{"domain": "uft.org", "mfcLabel": "leftcenter"}
{"domain": "universitybusiness.com", "mfcLabel": "leftcenter"}
{"domain": "urban.org", "mfcLabel": "leftcenter"}
{"domain": "usatoday.com", "mfcLabel": "leftcenter"}
{"domain": "usnews.com", "mfcLabel": "leftcenter"}
{"domain": "upr.org", "mfcLabel": "leftcenter"}
{"domain": "uticaod.com", "mfcLabel": "leftcenter"}
{"domain": "vice.com", "mfcLabel": "leftcenter"}
{"domain": "virginiamercury.com", "mfcLabel": "leftcenter"}
{"domain": "votevets.org", "mfcLabel": "leftcenter"}
{"domain": "vulture.com", "mfcLabel": "leftcenter"}
{"domain": "washingtonblade.com", "mfcLabel": "leftcenter"}
{"domain": "washingtonpost.com", "mfcLabel": "leftcenter"}
{"domain": "wgntv.com", "mfcLabel": "leftcenter"}
{"domain": "wikileaks.org", "mfcLabel": "leftcenter"}
{"domain": "wingsoverscotland.com", "mfcLabel": "leftcenter"}
{"domain": "wired.com", "mfcLabel": "leftcenter"}
{"domain": "wnyc.org", "mfcLabel": "leftcenter"}
{"domain": "worldaffairsjournal.org", "mfcLabel": "leftcenter"}
{"domain": "worldpolicy.org", "mfcLabel": "leftcenter"}
{"domain": "worldcrunch.com", "mfcLabel": "leftcenter"}
{"domain": "wsvn.com", "mfcLabel": "leftcenter"}
{"domain": "news.cn", "mfcLabel": "leftcenter"}
{"domain": "yahoo.com", "mfcLabel": "leftcenter"}
{"domain": "yale.edu", "mfcLabel": "leftcenter"}
{"domain": "ynetnews.com", "mfcLabel": "leftcenter"}
{"domain": "ydr.com", "mfcLabel": "leftcenter"}
{"domain": "yorkdispatch.com", "mfcLabel": "leftcenter"}
{"domain": "youthradio.org", "mfcLabel": "leftcenter"}
{"domain": "americanpublicmedia.org", "mfcLabel": "leftcenter"}
{"domain": "westword.com", "mfcLabel": "leftcenter"}
{"domain": "health.com", "mfcLabel": "leftcenter"}
{"domain": "houstonchronicle.com", "mfcLabel": "leftcenter"}
{"domain": "chron.com", "mfcLabel": "leftcenter"}
{"domain": "lawandcrime.com", "mfcLabel": "leftcenter"}
{"domain": "kyivpost.com", "mfcLabel": "leftcenter"}
{"domain": "phillytrib.com", "mfcLabel": "leftcenter"}
{"domain": "38north.org", "mfcLabel": "center"}
{"domain": "680news.com", "mfcLabel": "center"}
{"domain": "abs-cbn.com", "mfcLabel": "center"}
{"domain": "adfontesmedia.com", "mfcLabel": "center"}
{"domain": "adweek.com", "mfcLabel": "center"}
{"domain": "africacheck.org", "mfcLabel": "center"}
{"domain": "africanews.com", "mfcLabel": "center"}
{"domain": "afp.com", "mfcLabel": "center"}
{"domain": "ansa.it", "mfcLabel": "center"}
{"domain": "agerpres.ro", "mfcLabel": "center"}
{"domain": "ahram.org.eg", "mfcLabel": "center"}
{"domain": "airforcetimes.com", "mfcLabel": "center"}
{"domain": "airwars.org", "mfcLabel": "center"}
{"domain": "alarabiya.net", "mfcLabel": "center"}
{"domain": "albawaba.com", "mfcLabel": "center"}
{"domain": "majalla.com", "mfcLabel": "center"}
{"domain": "alreporter.com", "mfcLabel": "center"}
{"domain": "altoday.com", "mfcLabel": "center"}
{"domain": "democratherald.com", "mfcLabel": "center"}
{"domain": "allafrica.com", "mfcLabel": "center"}
{"domain": "gmfus.org", "mfcLabel": "center"}
{"domain": "amarillo.com", "mfcLabel": "center"}
{"domain": "americanheritage.com", "mfcLabel": "center"}
{"domain": "americanmilitarynews.com", "mfcLabel": "center"}
{"domain": "americanpressinstitute.org", "mfcLabel": "center"}
{"domain": "amomama.com", "mfcLabel": "center"}
{"domain": "anthropocenemagazine.org", "mfcLabel": "center"}
{"domain": "azcapitoltimes.com", "mfcLabel": "center"}
{"domain": "armytimes.com", "mfcLabel": "center"}
{"domain": "arstechnica.com", "mfcLabel": "center"}
{"domain": "atimes.com", "mfcLabel": "center"}
{"domain": "aninews.in", "mfcLabel": "center"}
{"domain": "apnews.com", "mfcLabel": "center"}
{"domain": "atlanticcouncil.org", "mfcLabel": "center"}
{"domain": "ballotpedia.org", "mfcLabel": "center"}
{"domain": "bangkokpost.com", "mfcLabel": "center"}
{"domain": "baxterbulletin.com", "mfcLabel": "center"}
{"domain": "bbarta24.net", "mfcLabel": "center"}
{"domain": "belfercenter.org", "mfcLabel": "center"}
{"domain": "bnd.com", "mfcLabel": "center"}
{"domain": "bellingcat.com", "mfcLabel": "center"}
{"domain": "bettergov.org", "mfcLabel": "center"}
{"domain": "bignewsnetwork.com", "mfcLabel": "center"}
{"domain": "bigthink.com", "mfcLabel": "center"}
{"domain": "bismarcktribune.com", "mfcLabel": "center"}
{"domain": "bleepingcomputer.com", "mfcLabel": "center"}
{"domain": "bnonews.com", "mfcLabel": "center"}
{"domain": "bridgemi.com", "mfcLabel": "center"}
{"domain": "brief.news", "mfcLabel": "center"}
{"domain": "thebulletin.org", "mfcLabel": "center"}
{"domain": "bullshido.net", "mfcLabel": "center"}
{"domain": "burnettcountysentinel.com", "mfcLabel": "center"}
{"domain": "business2community.com", "mfcLabel": "center"}
{"domain": "c-span.org", "mfcLabel": "center"}
{"domain": "cpac.ca", "mfcLabel": "center"}
{"domain": "capecodtimes.com", "mfcLabel": "center"}
{"domain": "capitolfax.com", "mfcLabel": "center"}
{"domain": "carnegieendowment.org", "mfcLabel": "center"}
{"domain": "trib.com", "mfcLabel": "center"}
{"domain": "castanet.net", "mfcLabel": "center"}
{"domain": "cnas.org", "mfcLabel": "center"}
{"domain": "c4ads.org", "mfcLabel": "center"}
{"domain": "cdt.org", "mfcLabel": "center"}
{"domain": "cgdev.org", "mfcLabel": "center"}
{"domain": "publicintegrity.org", "mfcLabel": "center"}
{"domain": "opensecrets.org", "mfcLabel": "center"}
{"domain": "csis.org", "mfcLabel": "center"}
{"domain": "chinookobserver.com", "mfcLabel": "center"}
{"domain": "csmonitor.com", "mfcLabel": "center"}
{"domain": "cityandstateny.com", "mfcLabel": "center"}
{"domain": "cnet.com", "mfcLabel": "center"}
{"domain": "crfb.org", "mfcLabel": "center"}
{"domain": "ced.org", "mfcLabel": "center"}
{"domain": "cpj.org", "mfcLabel": "center"}
{"domain": "concordmonitor.com", "mfcLabel": "center"}
{"domain": "conflict-news.com", "mfcLabel": "center"}
{"domain": "congress.gov", "mfcLabel": "center"}
{"domain": "cbo.gov", "mfcLabel": "center"}
{"domain": "constitutioncenter.org", "mfcLabel": "center"}
{"domain": "constitutionproject.org", "mfcLabel": "center"}
{"domain": "consumerreports.org", "mfcLabel": "center"}
{"domain": "consumerist.com", "mfcLabel": "center"}
{"domain": "cookpolitical.com", "mfcLabel": "center"}
{"domain": "cfr.org", "mfcLabel": "center"}
{"domain": "countable.us", "mfcLabel": "center"}
{"domain": "courthousenews.com", "mfcLabel": "center"}
{"domain": "cp24.com", "mfcLabel": "center"}
{"domain": "crimeola.com", "mfcLabel": "center"}
{"domain": "ctvnews.ca", "mfcLabel": "center"}
{"domain": "curiosity.com", "mfcLabel": "center"}
{"domain": "dccircuitbreaker.org", "mfcLabel": "center"}
{"domain": "dailybusinessreview.com", "mfcLabel": "center"}
{"domain": "eyeofthetiber.com", "mfcLabel": "center"}
{"domain": "daily-journal.com", "mfcLabel": "center"}
{"domain": "dailyjournalonline.com", "mfcLabel": "center"}
{"domain": "dailyrecord.com", "mfcLabel": "center"}
{"domain": "darientimes.com", "mfcLabel": "center"}
{"domain": "daytondailynews.com", "mfcLabel": "center"}
{"domain": "defensenews.com", "mfcLabel": "center"}
{"domain": "defenseone.com", "mfcLabel": "center"}
{"domain": "delrionewsherald.com", "mfcLabel": "center"}
{"domain": "dentonrc.com", "mfcLabel": "center"}
{"domain": "desmoinesregister.com", "mfcLabel": "center"}
{"domain": "differencebetween.net", "mfcLabel": "center"}
{"domain": "digitaljournal.com", "mfcLabel": "center"}
{"domain": "doctorswithoutborders.org", "mfcLabel": "center"}
{"domain": "dpa-international.com", "mfcLabel": "center"}
{"domain": "eagletribune.com", "mfcLabel": "center"}
{"domain": "columbia.edu", "mfcLabel": "center"}
{"domain": "ejinsight.com", "mfcLabel": "center"}
{"domain": "elnuevodia.com", "mfcLabel": "center"}
{"domain": "goerie.com", "mfcLabel": "center"}
{"domain": "err.ee", "mfcLabel": "center"}
{"domain": "eurasiagroup.net", "mfcLabel": "center"}
{"domain": "eurasiareview.com", "mfcLabel": "center"}
{"domain": "euronews.com", "mfcLabel": "center"}
{"domain": "everycrsreport.com", "mfcLabel": "center"}
{"domain": "factcheck.org", "mfcLabel": "center"}
{"domain": "factscan.ca", "mfcLabel": "center"}
{"domain": "factwire.org", "mfcLabel": "center"}
{"domain": "fairobserver.com", "mfcLabel": "center"}
{"domain": "federalnewsradio.com", "mfcLabel": "center"}
{"domain": "federaltimes.com", "mfcLabel": "center"}
{"domain": "financialexpress.com", "mfcLabel": "center"}
{"domain": "ft.com", "mfcLabel": "center"}
{"domain": "firstdraftnews.org", "mfcLabel": "center"}
{"domain": "foreignaffairs.com", "mfcLabel": "center"}
{"domain": "foreignpolicy.com", "mfcLabel": "center"}
{"domain": "freewheelus.com", "mfcLabel": "center"}
{"domain": "fullfact.org", "mfcLabel": "center"}
{"domain": "gallup.com", "mfcLabel": "center"}
{"domain": "gbtimes.com", "mfcLabel": "center"}
{"domain": "gearsofbiz.com", "mfcLabel": "center"}
{"domain": "geek.com", "mfcLabel": "center"}
{"domain": "globalintegrity.org", "mfcLabel": "center"}
{"domain": "globalslaveryindex.org", "mfcLabel": "center"}
{"domain": "globegazette.com", "mfcLabel": "center"}
{"domain": "goodnewsnetwork.org", "mfcLabel": "center"}
{"domain": "gao.gov", "mfcLabel": "center"}
{"domain": "govexec.com", "mfcLabel": "center"}
{"domain": "govtrack.us", "mfcLabel": "center"}
{"domain": "greatfallstribune.com", "mfcLabel": "center"}
{"domain": "greenbaypressgazette.com", "mfcLabel": "center"}
{"domain": "greenvilleonline.com", "mfcLabel": "center"}
{"domain": "hanfordsentinel.com", "mfcLabel": "center"}
{"domain": "hbr.org", "mfcLabel": "center"}
{"domain": "harvard.edu", "mfcLabel": "center"}
{"domain": "harvardpolitics.com", "mfcLabel": "center"}
{"domain": "hastingstribune.com", "mfcLabel": "center"}
{"domain": "healthcarefinancenews.com", "mfcLabel": "center"}
{"domain": "herald-review.com", "mfcLabel": "center"}
{"domain": "hoax-slayer.com", "mfcLabel": "center"}
{"domain": "homelandsecuritynewswire.com", "mfcLabel": "center"}
{"domain": "howtogeek.com", "mfcLabel": "center"}
{"domain": "i24news.tv", "mfcLabel": "center"}
{"domain": "icitizen.com", "mfcLabel": "center"}
{"domain": "idahostatesman.com", "mfcLabel": "center"}
{"domain": "imediaethics.org", "mfcLabel": "center"}
{"domain": "helenair.com", "mfcLabel": "center"}
{"domain": "ivn.us", "mfcLabel": "center"}
{"domain": "intoday.in", "mfcLabel": "center"}
{"domain": "dailybulletin.com", "mfcLabel": "center"}
{"domain": "iwpr.org", "mfcLabel": "center"}
{"domain": "icij.org", "mfcLabel": "center"}
{"domain": "iea.org", "mfcLabel": "center"}
{"domain": "cambridge.org", "mfcLabel": "center"}
{"domain": "freemedia.at", "mfcLabel": "center"}
{"domain": "rescue.org", "mfcLabel": "center"}
{"domain": "ire.org", "mfcLabel": "center"}
{"domain": "investopedia.com", "mfcLabel": "center"}
{"domain": "jacksonsun.com", "mfcLabel": "center"}
{"domain": "janes.com", "mfcLabel": "center"}
{"domain": "japantimes.co.jp", "mfcLabel": "center"}
{"domain": "jta.org", "mfcLabel": "center"}
{"domain": "journalgazette.net", "mfcLabel": "center"}