File size: 261,268 Bytes
e2793b4 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 | domain,category,credibility_score,sources,iffy_factual,iffy_bias,iffy_score,tranco_rank,domain_age_years,domain_registered,factcheck_claims,safe_browsing_flagged,score_cat,score_iffy,score_tranco,score_age,score_factcheck,score_safebrowsing
100percentfedup.com,mixed,0.173,2,L,FN,0.1,200698,14.0,2012-03-13T15:59:26Z,,,0.2,0.1,0.35,0.2,0.2,0.2
10news.one,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
12minutos.com,unreliable,0.09,1,L,FN,0.1,,18.2,2008-01-13T13:49:04Z,,,0.1,0.1,0.1,0.1,0.1,0.1
163.com,unreliable,0.105,1,M,FN,0.2,418,28.5,1997-09-15T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
16wmpo.com,fake,0.045,1,,,,,8.0,2018-03-03T19:22:21Z,,,0.05,0.05,0.05,0.05,0.05,0.05
1tv.ru,unreliable,0.105,1,M,FN,0.2,5675,,,,,0.1,0.2,0.1,0.1,0.1,0.1
2020conservative.com,unreliable,0.075,1,VL,FN,0.0,,6.5,2019-10-03T19:08:20Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
2020electioncenter.com,unreliable,0.08,1,VL,CP,0.0,,1.3,2024-11-12T19:45:24Z,,,0.1,0.0,0.1,0.2,0.1,0.1
21stcenturywire.com,conspiracy,0.118,2,M,CP,0.2,160048,16.4,2009-11-03T10:46:36Z,,,0.1,0.2,0.35,0.1,0.1,0.1
24jours.com,unreliable,0.09,1,L,FN,0.1,,8.5,2017-09-25T14:00:15Z,,,0.1,0.1,0.1,0.1,0.1,0.1
24newsflash.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
24wpn.com,fake,0.045,1,,,,,2.8,2023-05-15T04:57:03Z,,,0.05,0.05,0.05,0.05,0.05,0.05
365usanews.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
369news.net,unreliable,0.105,1,M,CP,0.2,,10.4,2015-10-22T13:25:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
4chan.org,unreliable,0.075,1,VL,FN,0.0,5659,22.1,2004-02-14T15:46:26.388Z,,,0.1,0.0,0.1,0.1,0.1,0.1
4threvolutionarywar.wordpress.com,mixed,0.18,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.2,0.2,0.2,0.2,0.2,0.2
70news.wordpress.com,fake,0.045,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.05,0.05,0.05,0.05,0.05,0.05
79days.news,unreliable,0.075,1,VL,CP,0.0,,5.4,2020-11-04T16:38:23.137Z,,,0.1,0.0,0.1,0.1,0.1,0.1
82.221.129.208,conspiracy,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
911truth.org,unreliable,0.103,1,L,CP,0.1,386282,23.2,2003-01-14T03:26:01.739Z,,,0.1,0.1,0.35,0.1,0.1,0.1
9gag.com,unreliable,0.105,1,M,FN,0.2,5519,17.9,2008-04-12T06:20:03Z,,,0.1,0.2,0.1,0.1,0.1,0.1
aanirfan.blogspot.co.uk,unreliable,0.09,1,,,,,16.6,2009-08-02T18:43:53Z,,,0.1,0.1,0.1,0.1,0.1,0.1
aapsonline.org,unreliable,0.103,1,L,FN,0.1,188495,27.4,1998-10-27T05:00:00.281Z,,,0.1,0.1,0.35,0.1,0.1,0.1
aattp.org,unreliable,0.09,1,L,FN,0.1,,5.1,2021-02-19T14:30:10.325Z,,,0.1,0.1,0.1,0.1,0.1,0.1
abcbusinessnews.com,unreliable,0.075,1,VL,FN,0.0,,18.5,2007-09-19T00:13:26Z,,,0.1,0.0,0.1,0.1,0.1,0.1
abcnews.com.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
abcnewsgo.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
abeldanger.net,conspiracy,0.095,1,,,,,1.6,2024-07-30T18:17:23Z,,,0.1,0.1,0.1,0.2,0.1,0.1
abovetopsecret.com,conspiracy,0.095,2,L,CP,0.1,56554,28.8,1997-05-18T04:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
abqtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
abriluno.com,satire,0.27,1,,,,,12.2,2014-01-14T18:07:09Z,,,0.3,0.3,0.3,0.3,0.3,0.3
acallforanuprising.com,unreliable,0.09,1,L,CP,0.1,,11.1,2015-02-09,0,,0.1,0.1,0.1,0.1,0.1,0.1
aceflashman.wordpress.com,satire,0.27,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.3,0.3,0.3,0.3,0.3,0.3
acpeds.org,unreliable,0.103,1,L,FN,0.1,250903,23.5,2002-09-10T13:47:41.913Z,,,0.1,0.1,0.35,0.1,0.1,0.1
actforamerica.org/news,unreliable,0.135,1,,,,,,,,,0.15,0.15,0.15,0.15,0.15,0.15
acting-man.com,unreliable,0.105,2,M,FN,0.2,,21.2,2005-01-06T12:12:24Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
actionnews3.com,unreliable,0.075,1,VL,FN,0.0,,10.5,2015-09-25T19:41:03Z,,,0.1,0.0,0.1,0.1,0.1,0.1
activistpost.com,conspiracy,0.095,2,L,CP,0.1,76616,15.9,2010-04-23T22:20:54Z,,,0.1,0.1,0.2,0.1,0.1,0.1
actualidadpanamericana.com,satire,0.27,1,,,,,12.2,2014-01-05T22:48:14Z,,,0.3,0.3,0.3,0.3,0.3,0.3
adamscountytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
adareporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:35Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
addictinginfo.org,unreliable,0.188,1,,,,304049,15.5,2010-09-05T20:33:25.592Z,,,0.2,0.2,0.35,0.2,0.2,0.2
adflegal.org,unreliable,0.095,1,L,FN,0.1,89616,15.2,2011-01-11T16:27:08.232Z,,,0.1,0.1,0.2,0.1,0.1,0.1
adflegal.org/media,unreliable,0.135,1,,,,,,,,,0.15,0.15,0.15,0.15,0.15,0.15
adobochronicles.com,satire,0.273,1,,,,930520,12.7,2013-06-25T20:40:31Z,,,0.3,0.3,0.35,0.3,0.3,0.3
advocate.com,mixed,0.18,1,,,,19622,31.7,1994-07-14T04:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
ae911truth.org,unreliable,0.118,1,M,CP,0.2,149480,19.5,2006-09-21T21:39:26.298Z,,,0.1,0.2,0.35,0.1,0.1,0.1
afa.net,unreliable,0.103,1,L,FN,0.1,132938,29.4,1996-10-06T04:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
aflegal.org,unreliable,0.103,1,L,FN,0.1,299974,5.1,2021-02-04T12:41:29.989Z,,,0.1,0.1,0.35,0.1,0.1,0.1
afn.net,unreliable,0.103,1,L,FN,0.1,423129,29.2,1997-01-18T05:00:00Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
africanexponent.com,unreliable,0.118,1,M,FN,0.2,347400,10.8,2015-06-13T15:16:45Z,,,0.1,0.2,0.35,0.1,0.1,0.1
aguascalientesdailypost.com,unreliable,0.105,1,M,FN,0.2,,5.4,2020-10-08T21:27:38Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
aheadoftheherd.com,mixed,0.18,1,,,,,19.6,2006-08-21T15:17:51Z,,,0.2,0.2,0.2,0.2,0.2,0.2
ahtribune.com,unreliable,0.103,1,,,,922871,10.6,2015-08-23T08:08:39Z,,,0.1,0.1,0.35,0.1,0.1,0.1
aim4truth.org,unreliable,0.075,1,VL,CP,0.0,,9.1,2017-02-01T20:32:52.172Z,,,0.1,0.0,0.1,0.1,0.1,0.1
akronreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
albanystandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
albawaba.com,unreliable,0.11,1,M,FN,0.2,31817,26.8,1999-05-25T13:31:10Z,,,0.1,0.2,0.2,0.1,0.1,0.1
alexanderhiggins.com,unreliable,0.118,1,M,CP,0.2,985879,20.0,2006-03-11T04:20:32Z,,,0.1,0.2,0.35,0.1,0.1,0.1
allianceforadvancedhealth.com,unreliable,0.105,1,M,CP,0.2,,9.4,2016-11-03T21:30:55Z,,,0.1,0.2,0.1,0.1,0.1,0.1
allnewspipeline.com,unreliable,0.103,2,L,FN,0.1,586897,11.7,2014-07-07T22:12:15Z,,,0.1,0.1,0.35,0.1,0.1,0.1
alohastatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
alphanews.org,unreliable,0.103,1,L,FN,0.1,156801,7.3,2018-12-10T16:47:51.968Z,,,0.1,0.1,0.35,0.1,0.1,0.1
alphanewsmn.com,unreliable,0.09,1,L,FN,0.1,,11.1,2015-02-23T17:56:10Z,,,0.1,0.1,0.1,0.1,0.1,0.1
alt-market.com,conspiracy,0.103,1,,,,707148,15.2,2010-12-19T22:40:11Z,,,0.1,0.1,0.35,0.1,0.1,0.1
altermedzentrum.com,unreliable,0.075,1,VL,CP,0.0,,2.1,2024-01-22T03:25:37Z,,,0.1,0.0,0.1,0.1,0.1,0.1
alternativemediasyndicate.com,fake,0.045,1,,,,,12.1,2014-01-23T02:33:27Z,,,0.05,0.05,0.05,0.05,0.05,0.05
alternativenews.com,unreliable,0.103,1,L,CP,0.1,654556,29.2,1996-12-19T05:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
alternet.org,mixed,0.18,1,,,,12192,31.3,1994-12-07T05:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
althealthworks.com,unreliable,0.09,1,L,CP,0.1,,13.6,2012-08-14T04:08:12Z,,,0.1,0.1,0.1,0.1,0.1,0.1
altleft.news,unreliable,0.075,1,VL,CP,0.0,,8.6,2017-08-18T18:42:39.55Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
altrighttv.com,unreliable,0.09,1,L,FN,0.1,,9.6,2016-08-27T23:08:56Z,,,0.1,0.1,0.1,0.1,0.1,0.1
america.cgtn.com,unreliable,0.105,1,M,FN,0.2,,23.3,2002-11-15T06:47:52Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
americablog.com,mixed,0.188,1,,,,246590,23.6,2002-08-01T07:55:57Z,,,0.2,0.2,0.35,0.2,0.2,0.2
americanactionnews.com,unreliable,0.105,1,M,FN,0.2,,12.6,2013-08-07T15:47:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
americanborderpatrol.com,unreliable,0.135,1,,,,,23.8,2002-06-03T22:59:09Z,,,0.15,0.15,0.15,0.15,0.15,0.15
americancatholictribune.com,unreliable,0.105,1,M,FN,0.2,,6.2,2019-12-23T15:57:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
americanconservativemovement.com,unreliable,0.09,1,L,FN,0.1,,9.8,2016-06-03T05:37:19Z,,,0.1,0.1,0.1,0.1,0.1,0.1
americandigitalnews.com,unreliable,0.105,1,M,CP,0.2,,8.8,2017-06-01T21:32:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
americanfreepress.net,conspiracy,0.103,2,L,CP,0.1,198426,24.6,2001-08-02T14:44:55Z,,,0.1,0.1,0.35,0.1,0.1,0.1
americangulag.org,unreliable,0.075,1,VL,FN,0.0,,4.6,2021-08-27T16:26:13.096Z,,,0.1,0.0,0.1,0.1,0.1,0.1
americanjournalreview.com,unreliable,0.09,1,L,FN,0.1,,10.5,2015-09-23T16:16:43Z,,,0.1,0.1,0.1,0.1,0.1,0.1
americankabuki.blogspot.com,unreliable,0.18,1,,,,,25.6,2000-07-31T21:38:58Z,,,0.2,0.2,0.2,0.2,0.2,0.2
americanlibertyemail.com,unreliable,0.09,1,L,FN,0.1,,8.1,2018-02-17T19:01:07Z,,,0.1,0.1,0.1,0.1,0.1,0.1
americanlookout.com,mixed,0.165,2,L,FN,0.1,,9.9,2016-05-10T18:05:45Z,,,0.2,0.1,0.2,0.2,0.2,0.2
americannews.com,fake,0.045,1,,,,,24.0,2002-03-22T04:59:24Z,,,0.05,0.05,0.05,0.05,0.05,0.05
americannewsx.com,mixed,0.18,1,,,,,11.5,2014-09-10T00:00:17Z,,,0.2,0.2,0.2,0.2,0.2,0.2
americanoverlook.com,fake,0.045,1,,,,,12.9,2013-05-03T14:04:38Z,,,0.05,0.05,0.05,0.05,0.05,0.05
americanpartisan.org,unreliable,0.09,1,L,FN,0.1,,7.9,2018-04-09T12:42:12.983Z,,,0.1,0.1,0.1,0.1,0.1,0.1
americanpatriotdaily.com,mixed,0.165,2,L,FN,0.1,,10.8,2015-06-01T18:39:28Z,,,0.2,0.1,0.2,0.2,0.2,0.2
americanpeopledaily.com,unreliable,0.09,1,L,FN,0.1,,8.2,2017-12-23T17:21:37Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
americanpharmacynews.com,unreliable,0.105,1,M,FN,0.2,,12.9,2013-04-25T01:54:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
americanpolicy.org,unreliable,0.09,1,L,CP,0.1,,28.8,1997-05-28T04:00:00.663Z,,,0.1,0.1,0.1,0.1,0.1,0.1
americanpoliticnews.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
americanpresident.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
americanprinciplesproject.org,unreliable,0.09,1,L,FN,0.1,,17.0,2009-03-30T15:27:59.573Z,,,0.1,0.1,0.1,0.1,0.1,0.1
americanprogress.org,mixed,0.18,1,,,,11116,23.1,2003-02-01T16:44:23.302Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
americanreviewer.com,conspiracy,0.095,1,,,,,0.9,2025-04-19T12:19:34Z,,,0.1,0.1,0.1,0.2,0.1,0.1
americansecuritynews.com,unreliable,0.105,1,M,FN,0.2,,10.8,2015-06-05T19:25:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
americansfortruth.com,unreliable,0.075,1,VL,FN,0.0,,28.1,1998-02-17T05:00:00Z,,,0.1,0.0,0.1,0.1,0.1,0.1
americanthinker.com,mixed,0.263,2,L,FN,0.1,24472,22.9,2003-04-24T01:59:25Z,1,,0.2,0.1,0.2,0.2,0.85,0.2
americantoday.news,rumor,0.225,1,,,,,,,,,0.25,0.25,0.25,0.25,0.25,0.25
americantruthtoday.com,unreliable,0.09,1,L,FN,0.1,,7.1,2019-02-05T20:00:40Z,,,0.1,0.1,0.1,0.1,0.1,0.1
americaoutloud.com,unreliable,0.103,1,L,FN,0.1,682325,10.6,2015-08-03T23:26:07Z,,,0.1,0.1,0.35,0.1,0.1,0.1
americasfreedomfighters.com,mixed,0.165,2,L,FN,0.1,,12.2,2013-12-17T10:41:40Z,,,0.2,0.1,0.2,0.2,0.2,0.2
americasfrontlinedoctors.org,unreliable,0.103,1,L,CP,0.1,311940,5.6,2020-07-28T00:47:36.756Z,,,0.1,0.1,0.35,0.1,0.1,0.1
americasnewssource.com,unreliable,0.08,1,VL,FN,0.0,,0.7,2025-06-27T03:53:43Z,,,0.1,0.0,0.1,0.2,0.1,0.1
amestoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
amg-news.com,unreliable,0.088,1,VL,CP,0.0,247977,7.3,2018-11-10T11:15:40Z,,,0.1,0.0,0.35,0.1,0.1,0.1
amic.ru,unreliable,0.11,1,M,FN,0.2,32718,,,,,0.1,0.2,0.2,0.1,0.1,0.1
ammoland.com,mixed,0.18,1,,,,89052,20.0,2006-03-24T23:16:55Z,,,0.2,0.2,0.2,0.2,0.2,0.2
amoskeagtimes.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-15T19:23:08Z,,,0.1,0.2,0.1,0.1,0.1,0.1
amplifyingglass.com,unreliable,0.18,1,,,,,12.0,2014-04-03T06:46:12Z,,,0.2,0.2,0.2,0.2,0.2,0.2
amposts.com,fake,0.053,1,,,,,1.1,2025-02-11T19:05:39Z,,,0.05,0.05,0.05,0.2,0.05,0.05
amren.com,unreliable,0.137,2,L,FN,0.1,134800,30.6,1995-08-11T04:00:00Z,,,0.15,0.1,0.35,0.15,0.15,0.15
amtvmedia.com,rumor,0.203,2,L,CP,0.1,,14.1,2012-01-31T01:23:02Z,,,0.25,0.1,0.25,0.25,0.25,0.25
amusmentic.com,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
analyzingamerica.org,unreliable,0.105,1,M,FN,0.2,,7.4,2018-10-10T15:30:54.057Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ancient-code.com,unreliable,0.188,2,M,CP,0.2,366691,13.3,2012-12-15T23:31:34Z,,,0.2,0.2,0.35,0.2,0.2,0.2
ancient-origins.net,unreliable,0.11,1,M,CP,0.2,22731,13.3,2012-11-16T19:39:21Z,,,0.1,0.2,0.2,0.1,0.1,0.1
andersoninstitute.com,unreliable,0.105,1,M,CP,0.2,,6.7,2019-07-03T18:47:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
andersonreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
andmagazine.com,unreliable,0.105,1,M,CP,0.2,,16.5,2009-09-25T06:54:54Z,,,0.1,0.2,0.1,0.1,0.1,0.1
anews-24.com,unreliable,0.075,1,VL,FN,0.0,,4.5,2021-09-30T11:54:31Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
anews24.org/,fake,0.045,1,,,,,,,0,,0.05,0.05,0.05,0.05,0.05,0.05
anewspost.com,unreliable,0.105,1,M,CP,0.2,,6.7,2019-06-24T15:00:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
angrypatriotmovement.com,conspiracy,0.09,1,,,,,10.2,2015-12-30T18:22:39Z,,,0.1,0.1,0.1,0.1,0.1,0.1
anh-usa.org,unreliable,0.118,1,M,CP,0.2,319936,16.4,2009-10-15T17:53:02Z,,,0.1,0.2,0.35,0.1,0.1,0.1
anhinternational.org,unreliable,0.118,1,M,CP,0.2,866506,16.9,2009-04-30T17:35:37Z,,,0.1,0.2,0.35,0.1,0.1,0.1
annarbortimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
annearundeltoday.com,unreliable,0.105,1,M,FN,0.2,,8.0,2018-04-04T21:46:08Z,,,0.1,0.2,0.1,0.1,0.1,0.1
anokatimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:30Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
anonews.co,unreliable,0.105,2,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
anonhq.com,unreliable,0.088,2,VL,CP,0.0,495348,11.9,2014-04-11T03:58:14Z,,,0.1,0.0,0.35,0.1,0.1,0.1
anonjekloy.tk,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
anonnews.co,unreliable,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
anonymouswire.com,unreliable,0.09,1,L,FN,0.1,,4.2,2022-01-12T12:50:46Z,,,0.1,0.1,0.1,0.1,0.1,0.1
anotherdayintheempire.com,mixed,0.18,1,,,,,9.6,2016-08-02T03:20:26Z,,,0.2,0.2,0.2,0.2,0.2,0.2
antelopevalleytoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
antiwar.com,mixed,0.278,1,,,,32841,30.3,1995-12-09T05:00:00Z,1,,0.2,0.2,0.2,0.2,0.85,0.2
antoniusaquinas.wp.com,mixed,0.18,1,,,,,29.0,1997-03-28T05:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
anyavien.com,unreliable,0.075,1,VL,CP,0.0,,9.8,2016-06-13T17:49:35Z,,,0.1,0.0,0.1,0.1,0.1,0.1
arabnews.com,unreliable,0.105,1,M,FN,0.2,9651,30.1,1996-02-26T05:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
archaeology-world.com,unreliable,0.105,1,M,FN,0.2,,7.2,2018-12-30T09:27:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
arizonaindependent.com,unreliable,0.105,1,M,FN,0.2,,5.8,2020-05-14T18:21:55Z,,,0.1,0.2,0.1,0.1,0.1,0.1
arizonasuntimes.com,unreliable,0.105,1,M,FN,0.2,,4.9,2021-04-09T15:30:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
aryannationswordwide1488.org,unreliable,0.135,1,,,,,,,,,0.15,0.15,0.15,0.15,0.15,0.15
ashevillereporter.com,unreliable,0.12,1,M,,0.3,,6.7,2019-06-30T20:46:03Z,,,0.1,0.3,0.1,0.1,0.1,0.1
asia-pacificresearch.com,unreliable,0.105,2,M,CP,0.2,,10.9,2015-04-29T15:19:57Z,,,0.1,0.2,0.1,0.1,0.1,0.1
askingangels.com,unreliable,0.075,1,VL,CP,0.0,,13.6,2012-08-17T07:33:40Z,,,0.1,0.0,0.1,0.1,0.1,0.1
assassinationscience.com,conspiracy,0.09,2,L,CP,0.1,,28.2,1998-01-21T05:00:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
associatedmediacoverage.com,satire,0.27,1,,,,,10.1,2016-02-19T02:06:25Z,,,0.3,0.3,0.3,0.3,0.3,0.3
athensreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
atlanticcotimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
atlstandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
attn.com,mixed,0.188,1,,,,217814,24.3,2001-11-14T19:06:12Z,,,0.2,0.2,0.35,0.2,0.2,0.2
auburntimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
augustarichmondherald.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
aurora-news.us,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
australiannationalreview.com,unreliable,0.103,1,L,CP,0.1,687235,11.5,2014-10-01T23:52:01Z,,,0.1,0.1,0.35,0.1,0.1,0.1
australiaoneparty.com,unreliable,0.09,1,L,FN,0.1,,6.5,2019-09-10T02:48:53Z,,,0.1,0.1,0.1,0.1,0.1,0.1
autismspeaks.org,unreliable,0.125,1,MF,CP,0.3,17685,21.3,2004-12-14T22:16:13.547Z,,,0.1,0.3,0.2,0.1,0.1,0.1
automaticearth.com,unreliable,0.09,1,,,,,15.2,2010-12-31T19:23:59Z,,,0.1,0.1,0.1,0.1,0.1,0.1
automotostar.com,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
avoiceformen.com,unreliable,0.103,1,L,FN,0.1,617711,16.7,2009-07-22T00:53:16Z,,,0.1,0.1,0.35,0.1,0.1,0.1
awarenessact.com,conspiracy,0.103,2,L,CP,0.1,689842,13.6,2012-08-15T14:20:09Z,,,0.1,0.1,0.35,0.1,0.1,0.1
awazetribune.com,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
awdnews.com,conspiracy,0.09,1,,,,,14.2,2012-01-16T03:10:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
awm.com,unreliable,0.105,2,M,FN,0.2,,30.5,1995-08-31T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
azcatholictribune.com,unreliable,0.105,1,M,FN,0.2,,6.0,2020-03-30T17:39:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
baldwintimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
baltimorecitywire.com,unreliable,0.105,1,M,FN,0.2,,8.0,2018-04-04T21:46:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
banned.video,unreliable,0.088,1,VL,CP,0.0,113717,6.7,2019-07-04T02:21:05.093Z,,,0.1,0.0,0.35,0.1,0.1,0.1
bannedbook.org,unreliable,0.118,1,M,FN,0.2,147765,14.8,2011-06-12T04:09:19.551Z,,,0.1,0.2,0.35,0.1,0.1,0.1
baptistnews.com,mixed,0.18,1,,,,87371,22.7,2003-07-19T18:06:29Z,,,0.2,0.2,0.2,0.2,0.2,0.2
barenakedislam.com,unreliable,0.137,2,L,FN,0.1,434004,17.7,2008-07-09T06:05:05Z,,,0.15,0.1,0.35,0.15,0.15,0.15
barnesreview.org,unreliable,0.135,1,,,,,28.9,1997-04-25T04:00:00Z,,,0.15,0.15,0.15,0.15,0.15,0.15
basnews.com,unreliable,0.118,1,M,FN,0.2,154999,14.9,2011-04-26T18:24:21Z,,,0.1,0.2,0.35,0.1,0.1,0.1
batonrougereporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
battlecreektimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
baystatenews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bb4sp.com,conspiracy,0.09,2,L,FN,0.1,,11.0,2015-03-15T14:25:14Z,,,0.1,0.1,0.1,0.1,0.1,0.1
bdnews24.com,unreliable,0.223,1,M,FN,0.2,15927,21.5,2004-08-28T04:23:26Z,1,,0.1,0.2,0.2,0.1,0.85,0.1
beachbroadcastnews.com,unreliable,0.075,1,VL,FN,0.0,,5.0,2021-02-28T06:34:21Z,,,0.1,0.0,0.1,0.1,0.1,0.1
beantowntimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
beaverstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
beckernews.com,unreliable,0.103,1,L,FN,0.1,863494,5.3,2020-12-05T21:10:50Z,,,0.1,0.1,0.35,0.1,0.1,0.1
beehivebugle.com,satire,0.27,1,,,,,12.7,2013-06-25T03:01:21Z,,,0.3,0.3,0.3,0.3,0.3,0.3
beforeitsnews.com,fake,0.06,2,L,FN,0.1,19075,18.5,2007-09-15T06:00:25Z,,,0.05,0.1,0.2,0.05,0.05,0.05
beholdisrael.org,unreliable,0.118,1,M,CP,0.2,848290,12.4,2013-10-30T20:43:00.327Z,,,0.1,0.2,0.35,0.1,0.1,0.1
bentontimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bestnewshere.com,unreliable,0.075,1,VL,CP,0.0,,8.1,2018-02-07T10:11:42Z,,,0.1,0.0,0.1,0.1,0.1,0.1
betootaadvocate.com,satire,0.273,1,,,,306881,11.5,2014-10-02T07:17:29Z,,,0.3,0.3,0.35,0.3,0.3,0.3
bients.com,unreliable,0.18,1,,,,,9.9,2016-04-23T09:16:43Z,,,0.2,0.2,0.2,0.2,0.2,0.2
bigamericannews.com,satire,0.27,1,,,,,11.6,2014-08-27T16:18:37Z,,,0.3,0.3,0.3,0.3,0.3,0.3
bigbluedimension.com,rumor,0.225,1,,,,,,,,,0.25,0.25,0.25,0.25,0.25,0.25
bigbluevision.com,unreliable,0.138,1,,,,,0.6,2025-08-06T13:25:40Z,,,0.15,0.15,0.15,0.2,0.15,0.15
bigbluevision.org,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
biggovernment.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:14.027Z,,,0.1,0.0,0.1,0.1,0.1,0.1
bighairynews.com,fake,0.045,1,,,,,21.7,2004-07-14T00:00:30Z,,,0.05,0.05,0.05,0.05,0.05,0.05
bigislandtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bigleaguepolitics.com,unreliable,0.215,1,L,FN,0.1,274466,9.9,2016-04-30T13:28:15Z,1,,0.1,0.1,0.35,0.1,0.85,0.1
bignuggetnews.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
bigskytimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
billionbibles.org,unreliable,0.075,1,VL,FN,0.0,,18.6,2007-07-25T07:58:34Z,,,0.1,0.0,0.1,0.1,0.1,0.1
biodefense.com,unreliable,0.075,1,VL,CP,0.0,,27.1,1999-02-01T05:00:00Z,,,0.1,0.0,0.1,0.1,0.1,0.1
biologos.org,unreliable,0.118,1,M,CP,0.2,225993,19.1,2007-02-04T14:32:34.574Z,,,0.1,0.2,0.35,0.1,0.1,0.1
bioscienceresource.org,unreliable,0.105,1,M,CP,0.2,,20.1,2006-01-28T00:16:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bipartisanreport.com,unreliable,0.165,2,L,FN,0.1,,14.1,2012-02-09T02:23:25Z,,,0.2,0.1,0.2,0.2,0.2,0.2
bitchute.com,unreliable,0.188,1,VL,FN,0.0,6334,11.8,2014-05-29T01:47:54Z,1,,0.1,0.0,0.1,0.1,0.85,0.1
blackagendareport.com,unreliable,0.103,1,,,,150069,19.8,2006-06-09T18:41:57Z,,,0.1,0.1,0.35,0.1,0.1,0.1
blackeyepolitics.com,unreliable,0.09,1,L,FN,0.1,,8.0,2018-03-13T15:29:10Z,,,0.1,0.1,0.1,0.1,0.1,0.1
blackgenocide.org,conspiracy,0.09,2,L,FN,0.1,,24.5,2001-09-19T00:19:49Z,,,0.1,0.1,0.1,0.1,0.1,0.1
blackinusrancenews.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
blacklistednews.com,unreliable,0.188,2,M,CP,0.2,264204,20.0,2006-03-01T07:01:32Z,,,0.2,0.2,0.35,0.2,0.2,0.2
blacknews.com,unreliable,0.118,1,M,FN,0.2,313000,27.5,1998-08-30T04:00:00Z,,,0.1,0.2,0.35,0.1,0.1,0.1
blckbx.tv,unreliable,0.075,1,VL,CP,0.0,,5.4,2020-10-13T18:29:22Z,,,0.1,0.0,0.1,0.1,0.1,0.1
blingnews.com,unreliable,0.09,1,L,FN,0.1,,4.4,2021-10-31T18:11:37Z,,,0.1,0.1,0.1,0.1,0.1,0.1
bloomingtonleader.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bluegrasstimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bluenationreview.com,unreliable,0.18,1,,,,,11.9,2014-04-25T00:59:13Z,,,0.2,0.2,0.2,0.2,0.2,0.2
bluestatebluesnews.com,unreliable,0.105,1,M,FN,0.2,,5.2,2020-12-16T20:58:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bluntforcetruth.com,unreliable,0.09,1,L,FN,0.1,,11.6,2014-08-08T13:01:27Z,,,0.1,0.1,0.1,0.1,0.1,0.1
boilingfrogspost.com,unreliable,0.103,1,,,,920886,3.3,2022-11-27T19:24:55Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
boisecitywire.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bongino.com,unreliable,0.118,1,M,FN,0.2,252099,18.1,2008-02-04T00:04:19Z,,,0.1,0.2,0.35,0.1,0.1,0.1
bonsens.info,unreliable,0.09,1,L,CP,0.1,,5.5,2020-10-02T16:45:19.861Z,,,0.1,0.1,0.1,0.1,0.1,0.1
borderlandalternativemedia.com,unreliable,0.09,1,L,FN,0.1,,3.6,2022-08-16T18:06:43Z,,,0.1,0.1,0.1,0.1,0.1,0.1
borowitzreport.com,satire,0.273,1,,,,327172,25.1,2001-01-23T13:25:09Z,,,0.3,0.3,0.35,0.3,0.3,0.3
bossip.com,unreliable,0.11,1,M,FN,0.2,75167,20.0,2006-03-30T06:05:51Z,0,,0.1,0.2,0.2,0.1,0.1,0.1
bostonbroadside.com,unreliable,0.105,1,M,FN,0.2,,11.9,2014-04-20T01:31:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bostonleader.com,fake,0.045,1,,,,,9.5,2016-09-09T22:09:26Z,0,,0.05,0.05,0.05,0.05,0.05,0.05
bostontribune.com,satire,0.27,1,,,,,16.1,2010-02-19T19:49:46Z,,,0.3,0.3,0.3,0.3,0.3,0.3
boulderleader.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bowlinggreentoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
brandnewtube.com,unreliable,0.088,1,VL,CP,0.0,327046,5.9,2020-05-06T14:40:26Z,0,,0.1,0.0,0.35,0.1,0.1,0.1
bransontimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
breaking911.com,unreliable,0.158,2,VL,FN,0.0,448372,14.6,2011-08-19T19:34:12Z,,,0.2,0.0,0.35,0.2,0.2,0.2
breakingchristiannews.com,unreliable,0.09,1,L,FN,0.1,,21.3,2004-12-10T05:11:49Z,,,0.1,0.1,0.1,0.1,0.1,0.1
breakingfirst.com,unreliable,0.09,1,L,FN,0.1,,8.2,2018-01-05T23:37:46Z,,,0.1,0.1,0.1,0.1,0.1,0.1
breakingnews247.net,unreliable,0.09,1,L,FN,0.1,,9.4,2016-10-22T09:37:10Z,,,0.1,0.1,0.1,0.1,0.1,0.1
breakingwide.com,unreliable,0.105,1,M,FN,0.2,,6.3,2019-11-12T10:30:56Z,,,0.1,0.2,0.1,0.1,0.1,0.1
breakpoint.org,unreliable,0.103,1,,,,252228,29.3,1996-12-05T05:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
breitbart.com,mixed,0.153,2,M,FN,0.2,3916,27.0,1999-03-14T05:00:00Z,7,,0.2,0.2,0.1,0.2,0.05,0.2
brevardsun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bridgeporttimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
brighteon.com,unreliable,0.08,1,VL,CP,0.0,35820,7.7,2018-07-06T22:24:06Z,,,0.1,0.0,0.2,0.1,0.1,0.1
brightside.me,unreliable,0.105,1,M,CP,0.2,6541,,,,,0.1,0.2,0.1,0.1,0.1,0.1
bristolreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
britainfirst.org,unreliable,0.09,1,L,FN,0.1,,15.2,2011-01-04T12:20:06.154Z,,,0.1,0.1,0.1,0.1,0.1,0.1
brotherjohnf.com,mixed,0.18,1,,,,,8.1,2018-02-18T19:56:27Z,,,0.2,0.2,0.2,0.2,0.2,0.2
buckeyereporter.com,unreliable,0.12,1,M,,0.3,,6.7,2019-06-30T20:46:37Z,0,,0.1,0.3,0.1,0.1,0.1,0.1
buckscountystandard.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
buffalochronicle.com,unreliable,0.105,1,M,FN,0.2,,11.7,2014-06-17T00:32:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
buffaloledger.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:11Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bugout.news,unreliable,0.075,1,VL,CP,0.0,,10.6,2015-08-05T05:45:58.883Z,,,0.1,0.0,0.1,0.1,0.1,0.1
bullionbullscanada.com,conspiracy,0.09,1,,,,,17.2,2009-01-06T21:37:11Z,,,0.1,0.1,0.1,0.1,0.1,0.1
burlingtonreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
burlingtonreview.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
burrardstreetjournal.com,satire,0.27,1,,,,,9.9,2016-04-07T21:26:44Z,,,0.3,0.3,0.3,0.3,0.3,0.3
businessdailynetwork.com/states/ak,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/al,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ar,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/az,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ca,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/co,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ct,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/dc,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/de,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/fl,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ga,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/hi,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ia,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/id,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/il,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/in,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ky,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/la,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ma,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/md,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/mi,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/mn,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/mo,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ms,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/mt,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/nc,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/nd,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ne,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/nj,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/nm,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/nv,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ny,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/oh,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/ok,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessdailynetwork.com/states/or,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
businessday.ng,unreliable,0.11,1,M,FN,0.2,31859,,,,,0.1,0.2,0.2,0.1,0.1,0.1
butlercountytoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
buzzfeedusa.com,fake,0.045,1,,,,,9.6,2016-07-31T15:11:59Z,,,0.05,0.05,0.05,0.05,0.05,0.05
buzzloving.com,unreliable,0.105,1,M,FN,0.2,,3.1,2023-01-27T15:02:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
bvanews.com,unreliable,0.09,1,,,,,10.1,2016-02-19T15:07:59Z,,,0.1,0.1,0.1,0.1,0.1,0.1
c19budesonide.com,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
c19colchicine.com,unreliable,0.11,1,M,FN,0.2,,1.7,2024-06-19T18:21:35Z,,,0.1,0.2,0.1,0.2,0.1,0.1
c19curcumin.com,unreliable,0.11,1,M,FN,0.2,,0.3,2025-11-10T19:18:02Z,,,0.1,0.2,0.1,0.2,0.1,0.1
c19early.com,unreliable,0.105,1,M,FN,0.2,,5.0,2021-03-07T01:08:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
c19favipiravir.com,unreliable,0.11,1,M,FN,0.2,,0.9,2025-05-02T12:13:25Z,0,,0.1,0.2,0.1,0.2,0.1,0.1
c19fluvoxamine.com,unreliable,0.105,1,M,FN,0.2,,5.1,2021-02-11T07:55:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
c19hcq.com,unreliable,0.105,1,M,FN,0.2,,5.7,2020-07-03T11:01:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
c19melatonin.com,unreliable,0.11,1,M,FN,0.2,,0.2,2025-12-29T03:38:25Z,,,0.1,0.2,0.1,0.2,0.1,0.1
c19nitazoxanide.com,unreliable,0.11,1,M,FN,0.2,,1.7,2024-07-04T21:22:15Z,,,0.1,0.2,0.1,0.2,0.1,0.1
c19ns.com,unreliable,0.11,1,M,FN,0.2,,0.2,2026-01-12T00:40:05Z,,,0.1,0.2,0.1,0.2,0.1,0.1
c19proxalutamide.com,unreliable,0.105,1,M,FN,0.2,,5.0,2021-03-11T02:03:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
c19pvpi.com,unreliable,0.11,1,M,FN,0.2,,1.0,2025-04-01T18:16:33Z,,,0.1,0.2,0.1,0.2,0.1,0.1
c19quercetin.com,unreliable,0.11,1,M,FN,0.2,,0.2,2026-01-15T11:57:08Z,0,,0.1,0.2,0.1,0.2,0.1,0.1
c19vitamind.com,unreliable,0.105,1,M,FN,0.2,,5.4,2020-10-28T21:50:12Z,,,0.1,0.2,0.1,0.1,0.1,0.1
c19zinc.com,unreliable,0.105,1,M,FN,0.2,,5.4,2020-10-28T21:50:11Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cabarrustoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:51Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
cair.com,unreliable,0.11,1,M,FN,0.2,78890,30.1,1996-01-24T05:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
caitlinjohnston.com,unreliable,0.105,1,M,CP,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
caixinglobal.com,unreliable,0.11,1,M,FN,0.2,46810,9.4,2016-10-09T03:27:30Z,0,,0.1,0.2,0.2,0.1,0.1,0.1
caldronpool.com,unreliable,0.118,1,M,FN,0.2,986934,8.4,2017-10-13T00:10:33Z,0,,0.1,0.2,0.35,0.1,0.1,0.1
californiacollapse.news,unreliable,0.075,1,VL,CP,0.0,,7.9,2018-04-07T17:03:34.507Z,,,0.1,0.0,0.1,0.1,0.1,0.1
callthecops.net,satire,0.27,1,,,,,12.8,2013-05-26T17:46:47Z,,,0.3,0.3,0.3,0.3,0.3,0.3
campechepost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:50:57Z,,,0.1,0.2,0.1,0.1,0.1,0.1
campusinsanity.com,unreliable,0.075,1,VL,CP,0.0,,10.3,2015-11-13T02:36:12Z,,,0.1,0.0,0.1,0.1,0.1,0.1
canadafreepress.com,conspiracy,0.095,2,L,FN,0.1,83738,23.6,2002-08-20T18:13:33Z,,,0.1,0.1,0.2,0.1,0.1,0.1
canarymission.org,unreliable,0.118,1,M,FN,0.2,560218,11.1,2015-02-10T13:46:08.974Z,,,0.1,0.2,0.35,0.1,0.1,0.1
cancer.news,unreliable,0.12,1,VL,CP,0.0,,8.4,2017-10-24T18:33:46.743Z,4,,0.1,0.0,0.1,0.1,0.4,0.1
cannasos.com,fake,0.045,1,,,,,11.9,2014-04-28T22:46:20Z,,,0.05,0.05,0.05,0.05,0.05,0.05
cantonreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cap-news.com,fake,0.045,2,VL,FN,0.0,,0.8,2025-06-15T18:06:38Z,,,0.05,0.0,0.05,0.2,0.05,0.05
capecodledger.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
capenews.com,unreliable,0.105,1,M,FN,0.2,,27.1,1999-02-05T05:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
capitaldistricttimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
carbondalereporter.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-01-22T15:19:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cardinalpine.com,unreliable,0.105,1,M,FN,0.2,,6.2,2020-01-15T23:12:55Z,,,0.1,0.2,0.1,0.1,0.1,0.1
carm.org,unreliable,0.095,1,L,CP,0.1,74006,28.9,1997-04-10T04:00:00.931Z,,,0.1,0.1,0.2,0.1,0.1,0.1
catholic.org,unreliable,0.11,1,M,CP,0.2,26441,31.3,1994-11-16T05:00:00.128Z,,,0.1,0.2,0.2,0.1,0.1,0.1
cato.org/blog,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
causeur.fr,unreliable,0.118,1,M,FN,0.2,169958,18.4,2007-10-15T10:41:59Z,,,0.1,0.2,0.35,0.1,0.1,0.1
cbn.com,unreliable,0.11,1,M,CP,0.2,14350,30.6,1995-08-18T04:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
cbsnews.com.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
cdareporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cdc.news,unreliable,0.188,1,VL,CP,0.0,,10.7,2015-07-12T23:45:48.057Z,1,,0.1,0.0,0.1,0.1,0.85,0.1
cedarrapidstoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cei.org,unreliable,0.103,1,L,FN,0.1,128075,30.5,1995-08-29T04:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
celebtricity.com,satire,0.27,1,,,,,14.4,2011-11-02T00:08:32Z,,,0.3,0.3,0.3,0.3,0.3,0.3
censored.news,unreliable,0.09,1,L,FN,0.1,,10.7,2015-07-12T17:00:00.283Z,,,0.1,0.1,0.1,0.1,0.1,0.1
censorship.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:06.387Z,,,0.1,0.0,0.1,0.1,0.1,0.1
centennialstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centerforsecuritypolicy.org,mixed,0.188,2,M,FN,0.2,339129,24.6,2001-08-06T22:26:44.511Z,,,0.2,0.2,0.35,0.2,0.2,0.2
centerforsecuritypolicy.org/#articles,unreliable,0.135,1,,,,,,,,,0.15,0.15,0.15,0.15,0.15,0.15
centralbrowardnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralcoloradonews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralfloridapost.com,unreliable,0.09,1,L,FN,0.1,,10.1,2016-01-25T04:47:50Z,,,0.1,0.1,0.1,0.1,0.1,0.1
centralgeorgianews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:34Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralidahotimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centraliowatimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralmissourinews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralmontanatimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralndnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centraloctimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralohiotoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centraloregontimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:34Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralpatimes.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-07-24T15:01:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
centralstlnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cernovich.com,unreliable,0.105,1,M,FN,0.2,,20.3,2005-11-21T04:29:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cf.org,unreliable,0.105,1,M,FN,0.2,,25.4,2000-11-06T11:34:13.917Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cfact.org,unreliable,0.103,1,L,CP,0.1,530597,29.1,1997-02-03T05:00:00.532Z,,,0.1,0.1,0.35,0.1,0.1,0.1
cgtn.com,unreliable,0.105,1,M,FN,0.2,5255,23.3,2002-11-15T06:47:52Z,,,0.1,0.2,0.1,0.1,0.1,0.1
chambanasun.com,unreliable,0.105,1,M,FN,0.2,,10.6,2015-08-21T16:18:29Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
channel-7-news.com,fake,0.045,1,,,,,9.5,2016-08-30T17:15:28Z,,,0.05,0.05,0.05,0.05,0.05,0.05
channel18news.com,fake,0.045,1,,,,,9.7,2016-06-26T21:44:25Z,,,0.05,0.05,0.05,0.05,0.05,0.05
chapelhillreview.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
charismanews.com,mixed,0.188,2,M,CP,0.2,113605,27.9,1998-05-05T04:00:00Z,,,0.2,0.2,0.35,0.2,0.2,0.2
chaser.com.au,satire,0.273,1,,,,874279,,,,,0.3,0.3,0.35,0.3,0.3,0.3
checkoutthehealthyworld.com,unreliable,0.18,1,,,,,1.0,2025-04-02T18:10:02Z,,,0.2,0.2,0.2,0.2,0.2,0.2
chicagocitywire.com,unreliable,0.118,1,M,FN,0.2,864482,9.8,2016-05-18T15:07:25Z,,,0.1,0.2,0.35,0.1,0.1,0.1
chicksontheright.com,unreliable,0.18,1,,,,,17.1,2009-02-18T17:55:21Z,,,0.2,0.2,0.2,0.2,0.2,0.2
chicotimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
chihuahuapost.com,unreliable,0.105,1,M,FN,0.2,,22.2,2004-01-09T01:41:24Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
childrenshealthdefense.org,unreliable,0.095,1,L,CP,0.1,37780,7.8,2018-05-24T23:50:53.873Z,,,0.1,0.1,0.2,0.1,0.1,0.1
childrenshealthdefense.org/defender,unreliable,0.09,1,L,CP,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
chinadaily.com.cn,unreliable,0.105,1,M,FN,0.2,2623,,,,,0.1,0.2,0.1,0.1,0.1,0.1
chlorellafactor.com,unreliable,0.075,1,VL,CP,0.0,,22.1,2004-02-24T15:29:20Z,,,0.1,0.0,0.1,0.1,0.1,0.1
christianaction.org,unreliable,0.09,1,L,FN,0.1,,27.0,1999-04-01T05:00:00.022Z,,,0.1,0.1,0.1,0.1,0.1,0.1
christianfightback.com,unreliable,0.135,1,,,,,6.4,2019-10-28T18:36:51Z,,,0.15,0.15,0.15,0.15,0.15,0.15
christianpost.com,reliable,0.775,1,,,,15414,24.7,2001-07-18T10:44:56Z,,,0.9,0.9,0.2,0.9,0.9,0.9
christianscience.com,unreliable,0.103,1,L,CP,0.1,122392,27.8,1998-05-30T04:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
christiansfortruth.com,unreliable,0.075,1,VL,FN,0.0,,12.4,2013-11-08T19:08:05Z,,,0.1,0.0,0.1,0.1,0.1,0.1
christiantimesnewspaper.com,rumor,0.225,1,,,,,10.3,2015-12-14T13:58:19Z,,,0.25,0.25,0.25,0.25,0.25,0.25
christwire.org,satire,0.27,1,,,,,17.2,2008-12-22T08:14:28.381Z,,,0.3,0.3,0.3,0.3,0.3,0.3
chronicle.su,satire,0.353,1,,,,,,,1,,0.3,0.3,0.3,0.3,0.85,0.3
chroniclesmagazine.org,mixed,0.188,1,,,,238866,27.1,1999-02-06T05:00:00.057Z,,,0.2,0.2,0.35,0.2,0.2,0.2
churchmilitant.com,unreliable,0.118,1,M,FN,0.2,265784,23.5,2002-09-19T20:51:31Z,,,0.1,0.2,0.35,0.1,0.1,0.1
cincyreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
citizensjournal.us,unreliable,0.118,1,M,FN,0.2,847584,,,,,0.1,0.2,0.35,0.1,0.1,0.1
citizensunited.org,mixed,0.18,1,,,,,24.4,2001-10-18T12:58:39.603Z,,,0.2,0.2,0.2,0.2,0.2,0.2
city-journal.org,mixed,0.18,1,,,,26368,29.7,1996-06-22T04:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
cityworldnews.com,fake,0.038,2,VL,FN,0.0,,11.3,2014-11-25T11:09:45Z,,,0.05,0.0,0.05,0.05,0.05,0.05
civictribune.com,fake,0.045,1,,,,,12.4,2013-10-25T04:27:48Z,,,0.05,0.05,0.05,0.05,0.05,0.05
clarionproject.org,unreliable,0.103,1,L,FN,0.1,282524,13.3,2012-11-25T14:24:54.205Z,,,0.1,0.1,0.35,0.1,0.1,0.1
clashdaily.com,fake,0.068,2,L,FN,0.1,555926,13.9,2012-05-10T23:58:03Z,,,0.05,0.1,0.35,0.05,0.05,0.05
clayandbuck.com,unreliable,0.118,1,M,FN,0.2,458109,4.8,2021-05-24T19:19:23Z,0,,0.1,0.2,0.35,0.1,0.1,0.1
claycotimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
clayreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-21T21:05:51Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
clermonttimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
clevelandreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
clickhole.com,satire,0.273,1,,,,174215,16.8,2009-06-12T18:39:41Z,,,0.3,0.3,0.35,0.3,0.3,0.3
climate.news,unreliable,0.068,1,VL,FN,0.0,,8.4,2017-10-24T18:35:17.413Z,19,,0.1,0.0,0.1,0.1,0.05,0.1
climatechangedispatch.com,unreliable,0.103,1,L,CP,0.1,705745,15.5,2010-09-02T22:10:37Z,,,0.1,0.1,0.35,0.1,0.1,0.1
climatedepot.com,unreliable,0.118,1,M,CP,0.2,130866,17.1,2009-02-11T01:05:40Z,,,0.1,0.2,0.35,0.1,0.1,0.1
climatesciencenews.com,unreliable,0.075,1,VL,CP,0.0,,10.8,2015-06-05T05:40:25Z,,,0.1,0.0,0.1,0.1,0.1,0.1
climatism.blog,unreliable,0.095,1,L,CP,0.1,,0.3,2025-12-07T18:40:31Z,,,0.1,0.1,0.1,0.2,0.1,0.1
cloverchronicle.com,unreliable,0.09,1,L,FN,0.1,,2.1,2024-02-12T19:31:47Z,,,0.1,0.1,0.1,0.1,0.1,0.1
cnnews3.com,fake,0.165,1,,,,,,,1,,0.05,0.05,0.05,0.05,0.85,0.05
cnnnext.com,unreliable,0.09,1,,,,,13.5,2012-09-08T04:19:41Z,,,0.1,0.1,0.1,0.1,0.1,0.1
cnnsofake.news,unreliable,0.075,1,VL,CP,0.0,,7.9,2018-04-07T16:40:11.717Z,,,0.1,0.0,0.1,0.1,0.1,0.1
cnsnews.com,unreliable,0.095,2,L,FN,0.1,29440,27.8,1998-06-11T04:00:00Z,0,,0.1,0.1,0.2,0.1,0.1,0.1
coachellatoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
coastalganews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
coasttocoastam.com,unreliable,0.095,2,L,CP,0.1,82199,26.9,1999-04-21T04:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
cobbnewsga.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-08-15T20:17:06Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cobbreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
coconinonews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
coed.com,fake,0.06,1,,,,473473,30.3,1995-12-07T05:00:00Z,,,0.05,0.05,0.35,0.05,0.05,0.05
collapse.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-12T17:00:00.313Z,,,0.1,0.0,0.1,0.1,0.1,0.1
collective-evolution.com,unreliable,0.165,2,L,CP,0.1,71761,16.7,2009-06-17T02:21:16Z,,,0.2,0.1,0.2,0.2,0.2,0.2
collectivelyconscious.net,unreliable,0.18,1,,,,,13.6,2012-07-28T06:11:42Z,,,0.2,0.2,0.2,0.2,0.2,0.2
columbianews.com,unreliable,0.105,1,M,FN,0.2,,24.1,2002-02-22T07:45:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
columbusstandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
commentarymagazine.com,mixed,0.18,1,,,,83033,29.2,1996-12-27T05:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
commondreams.org,mixed,0.18,1,,,,11449,28.8,1997-05-13T04:00:00.612Z,,,0.2,0.2,0.2,0.2,0.2,0.2
concernedwomen.org,unreliable,0.103,1,L,FN,0.1,734545,15.9,2010-04-22T13:05:19Z,,,0.1,0.1,0.35,0.1,0.1,0.1
concisepolitics.com,conspiracy,0.09,1,,,,,11.9,2014-05-10T01:40:10Z,,,0.1,0.1,0.1,0.1,0.1,0.1
concordledger.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
congressionalagenda.com,unreliable,0.105,1,M,FN,0.2,,21.8,2004-05-11T18:20:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
consciouslifenews.com,unreliable,0.188,2,M,CP,0.2,520642,15.8,2010-05-15T00:37:09Z,,,0.2,0.2,0.35,0.2,0.2,0.2
conservapedia.com,mixed,0.18,2,M,FN,0.2,64854,19.5,2006-08-29T03:37:53Z,,,0.2,0.2,0.2,0.2,0.2,0.2
conservative-headlines.org,unreliable,0.09,1,L,FN,0.1,,9.3,2016-12-12T01:49:19.816Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativeammo.com,unreliable,0.09,1,L,FN,0.1,,10.1,2016-02-10T04:51:45Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativebeaver.com,unreliable,0.075,1,VL,FN,0.0,,2.1,2024-02-23T19:14:48Z,,,0.1,0.0,0.1,0.1,0.1,0.1
conservativebyte.com,fake,0.045,1,,,,,17.0,2009-03-04T21:47:29Z,,,0.05,0.05,0.05,0.05,0.05,0.05
conservativedailynews.com,unreliable,0.118,1,M,FN,0.2,358028,16.5,2009-09-14T16:52:27Z,,,0.1,0.2,0.35,0.1,0.1,0.1
conservativedailypost.com,fake,0.053,2,L,FN,0.1,,9.8,2016-05-31T16:21:45Z,,,0.05,0.1,0.05,0.05,0.05,0.05
conservativefighters.com,fake,0.045,1,,,,,9.3,2016-11-16T15:57:29Z,,,0.05,0.05,0.05,0.05,0.05,0.05
conservativefiringline.com,mixed,0.158,2,VL,FN,0.0,688620,13.9,2012-05-06T04:02:45Z,,,0.2,0.0,0.35,0.2,0.2,0.2
conservativeflashnews.com,fake,0.053,1,,,,,1.0,2025-03-02T19:08:28Z,,,0.05,0.05,0.05,0.2,0.05,0.05
conservativefreepress.com,unreliable,0.09,1,L,FN,0.1,,10.5,2015-09-29T19:05:16Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativeglobe.com,unreliable,0.09,1,L,FN,0.1,,6.5,2019-09-10T21:25:39Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativehq.com,mixed,0.188,1,,,,659312,27.0,1999-03-10T05:00:00Z,,,0.2,0.2,0.35,0.2,0.2,0.2
conservativeinfidel.com,fake,0.045,1,,,,,12.6,2013-08-13T04:41:09Z,,,0.05,0.05,0.05,0.05,0.05,0.05
conservativematrix.com,unreliable,0.105,1,M,FN,0.2,,10.0,2016-03-01T05:45:33Z,,,0.1,0.2,0.1,0.1,0.1,0.1
conservativeoutfitters.com,unreliable,0.09,1,,,,,12.9,2013-04-08T09:26:04Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativepapers.com,mixed,0.18,2,M,FN,0.2,,16.5,2009-09-10T05:36:02Z,,,0.2,0.2,0.2,0.2,0.2,0.2
conservativeplaylist.com,unreliable,0.09,1,L,FN,0.1,,5.5,2020-09-23T09:49:04Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativepost.com,unreliable,0.09,1,L,FN,0.1,,12.9,2013-05-08T18:01:49Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativerefocus.com,conspiracy,0.09,1,,,,,16.6,2009-08-21T16:55:09Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativereview.com,mixed,0.188,1,,,,217782,23.9,2002-04-24T23:24:10Z,0,,0.2,0.2,0.35,0.2,0.2,0.2
conservativerevival.com,unreliable,0.09,1,L,FN,0.1,,16.1,2010-01-25T21:07:03Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conservativespirit.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
conservativestate.com,mixed,0.18,1,,,,,9.5,2016-09-03T17:44:12Z,,,0.2,0.2,0.2,0.2,0.2,0.2
conservativetribune.com,mixed,0.188,1,,,,690017,12.4,2013-10-21T18:53:58Z,,,0.2,0.2,0.35,0.2,0.2,0.2
conservativeundergroundnews.com,unreliable,0.118,1,M,FN,0.2,664084,5.2,2020-12-16T20:58:42Z,,,0.1,0.2,0.35,0.1,0.1,0.1
consortiumnews.com,reliable,0.775,1,,,,39725,27.8,1998-05-18T04:00:00Z,,,0.9,0.9,0.2,0.9,0.9,0.9
conspiracydailyupdate.com,unreliable,0.088,1,VL,CP,0.0,878737,9.8,2016-06-14T04:21:17Z,,,0.1,0.0,0.35,0.1,0.1,0.1
conspiracyplanet.com,conspiracy,0.09,2,L,CP,0.1,,26.1,2000-02-05T22:42:01Z,,,0.1,0.1,0.1,0.1,0.1,0.1
conspiracywire.com,conspiracy,0.095,1,,,,,1.0,2025-03-30T18:25:29Z,,,0.1,0.1,0.1,0.2,0.1,0.1
constative.com,unreliable,0.105,1,M,FN,0.2,,14.7,2011-07-14T20:25:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
constitutionstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
consumerwellness.org,unreliable,0.075,1,VL,CP,0.0,,22.1,2004-02-24T15:32:13.181Z,,,0.1,0.0,0.1,0.1,0.1,0.1
coppercourier.com,unreliable,0.118,1,M,FN,0.2,475819,6.6,2019-08-02T21:28:11Z,,,0.1,0.2,0.35,0.1,0.1,0.1
corbettreport.com,conspiracy,0.103,2,L,CP,0.1,115864,18.9,2007-04-26T16:10:20Z,,,0.1,0.1,0.35,0.1,0.1,0.1
cornhuskerstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
corona-transition.org,unreliable,0.09,1,L,FN,0.1,,5.9,2020-05-09T10:45:32.098Z,,,0.1,0.1,0.1,0.1,0.1,0.1
cosmicintelligenceagency.com,unreliable,0.09,1,L,CP,0.1,,20.6,2005-08-23T04:49:51Z,,,0.1,0.1,0.1,0.1,0.1,0.1
councilforthenationalinterest.org,unreliable,0.105,1,M,FN,0.2,,14.8,2011-05-19T14:38:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
countdowntozerotime.com,conspiracy,0.09,1,,,,,12.8,2013-06-13T16:16:00Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
countercurrentnews.com,mixed,0.188,1,,,,915921,7.0,2019-02-28T19:40:40Z,,,0.2,0.2,0.35,0.2,0.2,0.2
countercurrents.org,mixed,0.18,1,,,,60467,24.4,2001-11-09T09:09:42.522Z,,,0.2,0.2,0.2,0.2,0.2,0.2
counterinformation.wordpress.com,mixed,0.18,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.2,0.2,0.2,0.2,0.2,0.2
counterjihad.com,mixed,0.18,1,,,,,15.4,2010-10-20T18:16:33Z,,,0.2,0.2,0.2,0.2,0.2,0.2
counterpsyops.com,conspiracy,0.11,2,M,CP,0.2,,0.3,2025-12-10T19:03:40Z,,,0.1,0.2,0.1,0.2,0.1,0.1
counterpunch.com,mixed,0.188,1,,,,720139,27.3,1998-11-23T05:00:00Z,,,0.2,0.2,0.35,0.2,0.2,0.2
counterpunch.org,mixed,0.18,1,,,,15948,27.3,1998-11-23T05:00:00.37Z,,,0.2,0.2,0.2,0.2,0.2,0.2
counterthink.com,unreliable,0.075,1,VL,CP,0.0,,28.3,1997-11-13T05:00:00Z,,,0.1,0.0,0.1,0.1,0.1,0.1
covertactionmagazine.com,unreliable,0.118,1,M,FN,0.2,347391,8.6,2017-07-24T04:52:10Z,,,0.1,0.2,0.35,0.1,0.1,0.1
covid19criticalcare.com,unreliable,0.103,1,L,CP,0.1,140340,5.9,2020-04-13T18:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
cowards.ca,unreliable,0.105,1,M,FN,0.2,,4.8,2021-05-18T20:45:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cowgernation.com,mixed,0.18,1,,,,,13.6,2012-08-27T05:15:41Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
creambmp.com,satire,0.27,1,,,,,15.5,2010-09-19T03:05:36Z,0,,0.3,0.3,0.3,0.3,0.3,0.3
creation.com,unreliable,0.095,1,L,CP,0.1,74402,30.8,1995-05-22T04:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
creationwiki.org,unreliable,0.103,1,L,CP,0.1,229673,20.4,2005-10-07T17:34:34.443Z,,,0.1,0.1,0.35,0.1,0.1,0.1
creativitymovement.net/category/news/,unreliable,0.135,1,,,,,,,0,,0.15,0.15,0.15,0.15,0.15,0.15
crev.info,unreliable,0.09,1,L,CP,0.1,,21.9,2004-05-03T07:50:05.484Z,,,0.1,0.1,0.1,0.1,0.1,0.1
cryptogon.com,conspiracy,0.103,1,,,,895111,26.0,2000-03-29T14:06:30Z,,,0.1,0.1,0.35,0.1,0.1,0.1
crystalair.com,satire,0.27,1,,,,,28.5,1997-09-23T04:00:00Z,,,0.3,0.3,0.3,0.3,0.3,0.3
csglobe.com,unreliable,0.09,1,L,CP,0.1,,13.2,2013-01-17T17:21:48Z,,,0.1,0.1,0.1,0.1,0.1,0.1
culturewars.com,unreliable,0.09,1,L,CP,0.1,,29.2,1997-01-17T05:00:00Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
culturewatchnews.com,unreliable,0.105,1,M,FN,0.2,,7.7,2018-07-18T12:59:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cureus.com,unreliable,0.11,1,M,CP,0.2,16789,22.4,2003-10-16T22:19:10Z,,,0.1,0.2,0.2,0.1,0.1,0.1
curiousmindmagazine.com,unreliable,0.103,1,L,CP,0.1,565497,10.9,2015-05-05T07:50:44Z,,,0.1,0.1,0.35,0.1,0.1,0.1
currentsciencedaily.com,unreliable,0.105,1,M,FN,0.2,,6.2,2019-12-30T20:22:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
cyberwar.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-13T23:27:30.787Z,,,0.1,0.0,0.1,0.1,0.1,0.1
dagospia.com,unreliable,0.09,1,L,FN,0.1,7824,26.0,2000-03-23T22:37:53Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dailyboulder.com,unreliable,0.118,1,M,FN,0.2,854238,12.1,2014-02-18T16:03:24Z,0,,0.1,0.2,0.35,0.1,0.1,0.1
dailybuzzlive.com,fake,0.038,2,VL,FN,0.0,,12.5,2013-09-21T00:56:23Z,,,0.05,0.0,0.05,0.05,0.05,0.05
dailycaller.com,mixed,0.158,1,,,,11288,16.9,2009-05-06T16:28:10Z,7,,0.2,0.2,0.2,0.2,0.05,0.2
dailycitizen.focusonthefamily.com,unreliable,0.09,1,L,FN,0.1,,26.9,1999-04-16T04:00:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dailycurrant.com,satire,0.273,1,,,,909200,14.0,2012-03-28T03:59:33Z,,,0.3,0.3,0.35,0.3,0.3,0.3
dailydiscord.com,satire,0.27,1,,,,,18.9,2007-05-01T12:26:48Z,,,0.3,0.3,0.3,0.3,0.3,0.3
dailyexpose.co.uk,unreliable,0.088,1,VL,CP,0.0,926136,5.3,2020-11-18T16:05:56Z,,,0.1,0.0,0.35,0.1,0.1,0.1
dailygrail.com,unreliable,0.118,1,M,CP,0.2,472766,26.9,1999-05-10T19:09:27Z,0,,0.1,0.2,0.35,0.1,0.1,0.1
dailyheadlines.com,fake,0.045,1,,,,,22.0,2004-03-12T19:11:21Z,,,0.05,0.05,0.05,0.05,0.05,0.05
dailyheadlines.net,fake,0.053,2,L,FN,0.1,,11.5,2014-09-06T19:19:12Z,,,0.05,0.1,0.05,0.05,0.05,0.05
dailyhealthpost.com,unreliable,0.103,1,L,CP,0.1,617259,13.4,2012-10-19T13:54:12Z,,,0.1,0.1,0.35,0.1,0.1,0.1
dailyhonker.com,unreliable,0.105,1,M,FN,0.2,,4.4,2021-11-05T05:49:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
dailyinfobox.com,fake,0.053,1,,,,,0.3,2025-11-10T07:17:09Z,,,0.05,0.05,0.05,0.2,0.05,0.05
dailyinsidernews.com,unreliable,0.09,1,L,FN,0.1,,10.4,2015-11-06T16:24:28Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dailyken.com,unreliable,0.135,1,,,,,16.9,2009-04-09T14:01:36Z,,,0.15,0.15,0.15,0.15,0.15,0.15
dailykos.com,mixed,0.18,1,,,,10508,23.7,2002-06-26T19:46:19Z,,,0.2,0.2,0.2,0.2,0.2,0.2
dailyleak.org,satire,0.27,1,,,,,7.1,2019-01-30T14:32:19.781Z,,,0.3,0.3,0.3,0.3,0.3,0.3
dailymail.co.uk,unreliable,0.09,1,L,FN,0.1,361,30.8,1995-06-16T23:44:06Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dailynews10.com,fake,0.053,1,,,,,1.3,2024-11-12T06:59:24Z,,,0.05,0.05,0.05,0.2,0.05,0.05
dailynews5.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
dailynewsbin.com,mixed,0.18,1,,,,,11.1,2015-02-16T01:01:07Z,,,0.2,0.2,0.2,0.2,0.2,0.2
dailynewsposts.info,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
dailyoccupation.com,conspiracy,0.09,2,L,CP,0.1,,9.8,2016-06-02T18:34:05Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dailypoliticalnewswire.com,unreliable,0.09,1,L,FN,0.1,,9.5,2016-09-24T03:39:15Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dailypoliticsusa.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
dailysceptic.org,unreliable,0.088,1,VL,CP,0.0,125460,4.8,2021-05-23T17:19:09.791Z,,,0.1,0.0,0.35,0.1,0.1,0.1
dailysignal.com,mixed,0.278,1,,,,26025,19.2,2006-12-28T14:06:33Z,1,,0.2,0.2,0.2,0.2,0.85,0.2
dailysnark.com,satire,0.273,1,,,,589200,20.2,2006-01-10T17:25:48Z,,,0.3,0.3,0.35,0.3,0.3,0.3
dailysquib.co.uk,satire,0.273,1,,,,919349,19.1,2007-02-19T22:45:10Z,,,0.3,0.3,0.35,0.3,0.3,0.3
dailystormer.com,unreliable,0.147,1,,,,741750,1.8,2024-06-05T18:36:35Z,,,0.15,0.15,0.35,0.2,0.15,0.15
dailystormer.in,unreliable,0.188,1,VL,FN,0.0,,3.4,2022-10-25T18:10:05.184Z,1,,0.1,0.0,0.1,0.1,0.85,0.1
dailystormer.su,unreliable,0.075,1,VL,FN,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
dailysurge.com,fake,0.053,2,L,FN,0.1,,19.3,2006-11-12T21:26:21Z,,,0.05,0.1,0.05,0.05,0.05,0.05
dailytelegraph.com.au,mixed,0.18,1,,,,13119,,,,,0.2,0.2,0.2,0.2,0.2,0.2
dailyusaupdate.com,fake,0.045,1,,,,,7.1,2019-02-14T19:18:46Z,0,,0.05,0.05,0.05,0.05,0.05,0.05
dailywire.com,mixed,0.18,1,,,,14569,27.8,1998-05-14T04:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
dakotatimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
damnleaks.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
dandygoat.com,satire,0.265,1,,,,,1.5,2024-08-28T18:40:12Z,,,0.3,0.3,0.3,0.2,0.3,0.3
darkjournalist.com,unreliable,0.09,1,L,CP,0.1,,15.1,2011-02-20T23:20:30Z,,,0.1,0.1,0.1,0.1,0.1,0.1
darkmoon.me,unreliable,0.135,1,,,,,,,,,0.15,0.15,0.15,0.15,0.15,0.15
darkpolitricks.com,mixed,0.18,1,,,,,16.6,2009-08-03T16:16:04Z,,,0.2,0.2,0.2,0.2,0.2,0.2
darntons.com,unreliable,0.105,1,M,FN,0.2,,4.4,2021-10-26T19:41:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
dartmouthtimes.com,unreliable,0.12,1,M,LC,0.3,,6.4,2019-10-15T14:55:24Z,,,0.1,0.3,0.1,0.1,0.1,0.1
dataasylum.com,conspiracy,0.09,2,L,CP,0.1,,25.9,2000-04-09T18:48:12Z,,,0.1,0.1,0.1,0.1,0.1,0.1
davejanda.com,unreliable,0.09,1,,,,,15.5,2010-09-27T22:18:31Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
davidduke.com,unreliable,0.145,1,,,,613948,27.3,1998-12-06T05:00:00Z,,,0.15,0.15,0.35,0.15,0.15,0.15
davidharrisjr.com,unreliable,0.09,1,L,FN,0.1,,9.3,2016-11-22T23:38:46Z,,,0.1,0.1,0.1,0.1,0.1,0.1
davidicke.com,unreliable,0.08,1,VL,CP,0.0,71766,29.0,1997-03-11T05:00:00Z,0,,0.1,0.0,0.2,0.1,0.1,0.1
davidstockmanscontracorner.com,mixed,0.188,1,,,,674139,12.2,2014-01-13T16:57:11Z,,,0.2,0.2,0.35,0.2,0.2,0.2
davidwolfe.com,conspiracy,0.118,2,M,CP,0.2,241003,26.7,1999-07-19T22:23:38Z,,,0.1,0.2,0.35,0.1,0.1,0.1
daytonreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
dcclothesline.com,conspiracy,0.108,2,L,FN,0.1,549993,0.9,2025-05-09T18:19:18Z,,,0.1,0.1,0.35,0.2,0.1,0.1
dcdirtylaundry.com,unreliable,0.075,1,VL,FN,0.0,,7.7,2018-06-20T07:25:20Z,,,0.1,0.0,0.1,0.1,0.1,0.1
dcgazette.com,fake,0.053,2,L,FN,0.1,,11.8,2014-05-27T11:20:18Z,,,0.05,0.1,0.05,0.05,0.05,0.05
dcleaks.com,unreliable,0.09,1,,,,,9.9,2016-04-19T13:44:24Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dcweekly.org,unreliable,0.09,1,L,FN,0.1,,4.9,2021-04-23T05:23:57.413Z,,,0.1,0.1,0.1,0.1,0.1,0.1
ddemocraticunderground.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
de.rt.com,unreliable,0.075,1,VL,FN,0.0,,34.5,1991-09-23T04:00:00Z,,,0.1,0.0,0.1,0.1,0.1,0.1
deadlinelive.info,mixed,0.18,1,,,,,17.6,2008-08-01T01:10:17.257Z,,,0.2,0.2,0.2,0.2,0.2,0.2
deadlyclear.wordpress.com,mixed,0.18,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.2,0.2,0.2,0.2,0.2,0.2
debka.com,unreliable,0.118,1,M,FN,0.2,130845,25.8,2000-05-28T21:04:06Z,,,0.1,0.2,0.35,0.1,0.1,0.1
debunkingskeptics.com,mixed,0.165,2,L,CP,0.1,,16.9,2009-04-22T13:05:13Z,,,0.2,0.1,0.2,0.2,0.2,0.2
decaturtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
deepleftfield.info,unreliable,0.105,1,M,FN,0.2,,11.6,2014-08-22T18:36:54.516Z,,,0.1,0.2,0.1,0.1,0.1,0.1
deepstatejournal.com,unreliable,0.09,1,L,FN,0.1,,7.5,2018-09-05T18:23:30Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
defconnews.com,unreliable,0.103,1,L,FN,0.1,980312,7.5,2018-09-22T23:00:09Z,,,0.1,0.1,0.35,0.1,0.1,0.1
defenddemocracy.press,mixed,0.188,1,,,,849321,10.4,2015-10-13T13:05:08.0Z,,,0.2,0.2,0.35,0.2,0.2,0.2
defendingtherepublic.org,unreliable,0.075,1,VL,FN,0.0,,5.4,2020-11-06T16:16:26.544Z,,,0.1,0.0,0.1,0.1,0.1,0.1
defiantamerica.com,unreliable,0.09,1,L,FN,0.1,,9.4,2016-11-01T03:16:30Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dekalbganews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
dekalbtimes.com,unreliable,0.105,1,M,FN,0.2,,9.2,2017-01-20T20:52:03Z,,,0.1,0.2,0.1,0.1,0.1,0.1
delawarevalleysun.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:37Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
delcoreview.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
democrats.org,unreliable,0.11,1,M,FN,0.2,32678,30.7,1995-06-27T04:00:00.146Z,,,0.1,0.2,0.2,0.1,0.1,0.1
dennismichaellynch.com,mixed,0.18,1,,,,,14.6,2011-08-25T01:18:12Z,,,0.2,0.2,0.2,0.2,0.2,0.2
denvercitywire.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
denverguardian.com,fake,0.053,1,,,,,1.4,2024-10-04T18:06:52Z,,,0.05,0.05,0.05,0.2,0.05,0.05
departed.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
departedmedia.com,fake,0.053,1,,,,,0.1,2026-02-09T19:00:16Z,,,0.05,0.05,0.05,0.2,0.05,0.05
deplorablekel.com,unreliable,0.09,1,L,FN,0.1,,8.8,2017-06-06T02:18:25Z,,,0.1,0.1,0.1,0.1,0.1,0.1
der-postillon.com,satire,0.348,1,,,,39850,17.3,2008-12-08T12:55:11Z,1,,0.3,0.3,0.2,0.3,0.85,0.3
derfmagazine.com,satire,0.27,1,,,,,24.1,2002-02-08T18:55:21Z,,,0.3,0.3,0.3,0.3,0.3,0.3
desantisdaily.com,unreliable,0.118,1,M,FN,0.2,537053,4.6,2021-08-11T18:19:10Z,,,0.1,0.2,0.35,0.1,0.1,0.1
desmoinessun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:18Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
diamondandsilkinc.com,unreliable,0.09,1,L,FN,0.1,,10.5,2015-09-01T00:48:43Z,,,0.1,0.1,0.1,0.1,0.1,0.1
digifection.com,unreliable,0.09,1,L,FN,0.1,,9.6,2016-07-26T07:26:56Z,,,0.1,0.1,0.1,0.1,0.1,0.1
dineal.com,unreliable,0.18,1,,,,,9.6,2016-08-05T18:27:55Z,,,0.2,0.2,0.2,0.2,0.2,0.2
disclose.tv,satire,0.257,2,M,FN,0.2,121063,19.2,2007-01-06T18:12:14Z,,,0.3,0.2,0.35,0.3,0.3,0.3
disclosuremedia.net,conspiracy,0.095,1,,,,,0.8,2025-05-29T13:10:28Z,,,0.1,0.1,0.1,0.2,0.1,0.1
discoveries.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:05.553Z,,,0.1,0.0,0.1,0.1,0.1,0.1
discoverthenetworks.org,unreliable,0.103,1,L,FN,0.1,269242,20.9,2005-04-14T20:06:43.155Z,,,0.1,0.1,0.35,0.1,0.1,0.1
discovery.org,unreliable,0.103,1,L,CP,0.1,112149,31.0,1995-03-13T05:00:00.771Z,,,0.1,0.1,0.35,0.1,0.1,0.1
disntr.com,unreliable,0.105,1,M,FN,0.2,,5.1,2021-02-20T00:14:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
dissentmagazine.org,mixed,0.18,1,,,,50140,26.5,1999-09-14T16:59:34.228Z,,,0.2,0.2,0.2,0.2,0.2,0.2
dissident-mag.com,unreliable,0.075,1,VL,FN,0.0,,6.1,2020-02-10T16:12:46Z,,,0.1,0.0,0.1,0.1,0.1,0.1
dissidentvoice.org,unreliable,0.11,1,M,CP,0.2,99993,25.1,2001-01-25T18:52:24.944Z,,,0.1,0.2,0.2,0.1,0.1,0.1
distributednews.com,unreliable,0.088,1,VL,CP,0.0,316264,22.7,2003-06-27T14:34:24Z,,,0.1,0.0,0.35,0.1,0.1,0.1
diversitychronicle.wordpress.com,satire,0.27,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.3,0.3,0.3,0.3,0.3,0.3
diyhours.net,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
djhjmedia.com,unreliable,0.09,1,L,FN,0.1,,7.0,2019-03-03T16:36:50Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
dnyuz.com,unreliable,0.11,1,M,FN,0.2,75076,7.4,2018-10-27T16:13:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
doctoroz.com,unreliable,0.11,1,M,CP,0.2,67674,22.6,2003-08-01T15:57:22Z,,,0.1,0.2,0.2,0.1,0.1,0.1
doctors4covidethics.org,unreliable,0.088,1,VL,CP,0.0,637260,4.8,2021-05-21T13:53:13.382Z,,,0.1,0.0,0.35,0.1,0.1,0.1
dollarvigilante.com,mixed,0.188,1,,,,685127,15.8,2010-05-21T04:24:55Z,,,0.2,0.2,0.35,0.2,0.2,0.2
donaldjtrump.com,unreliable,0.095,1,L,FN,0.1,26033,29.2,1997-01-20T05:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
donaldtrumpnews.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
donaldtrumppotus45.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
dont-tread-on.me,conspiracy,0.135,1,,,,,,,4,,0.1,0.1,0.1,0.1,0.4,0.1
downeasttimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
downrivertoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
downtrend.com,fake,0.045,1,,,,,26.3,1999-12-11T22:03:14Z,,,0.05,0.05,0.05,0.05,0.05,0.05
draxe.com,unreliable,0.095,1,L,CP,0.1,21015,22.7,2003-07-17T18:13:22Z,,,0.1,0.1,0.2,0.1,0.1,0.1
drnorthrup.com,unreliable,0.103,1,L,CP,0.1,586106,27.9,1998-04-28T04:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
drrichswier.com,unreliable,0.145,1,,,,687043,12.4,2013-11-02T14:13:39Z,,,0.15,0.15,0.35,0.15,0.15,0.15
drudgereport.com,mixed,0.18,1,,,,11491,29.1,1997-02-14T05:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
drudgereport.com.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
drugcartels.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15,0,,0.1,0.0,0.1,0.1,0.1,0.1
dubuquetimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
duffleblog.com,satire,0.27,1,,,,,13.9,2012-04-12T05:35:36Z,,,0.3,0.3,0.3,0.3,0.3,0.3
duhprogressive.com,satire,0.27,1,,,,,18.3,2007-11-19T07:37:23Z,,,0.3,0.3,0.3,0.3,0.3,0.3
dupagepolicyjournal.com,unreliable,0.105,1,M,FN,0.2,,11.2,2014-12-19T18:00:05Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
durhamreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
dutchsinse.com,conspiracy,0.09,1,,,,,15.1,2011-02-24T02:28:54Z,,,0.1,0.1,0.1,0.1,0.1,0.1
duvaltimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
dzen.ru,unreliable,0.105,1,M,FN,0.2,14,,,,,0.1,0.2,0.1,0.1,0.1,0.1
eaglerising.com,mixed,0.18,1,,,,,20.9,2005-04-09T18:19:17Z,,,0.2,0.2,0.2,0.2,0.2,0.2
eaglevalleytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
earthpulse.com,unreliable,0.09,1,L,CP,0.1,,29.5,1996-09-11T04:00:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
eastalamedanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastarapahoenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastarizonanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastcentralreporter.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-01-27T18:55:58Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastclevelandnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastcontracostanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
easternwaynetoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
easthillsboroughnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
easthudvalleynews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastidahotimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastindynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastkentuckytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastlakenormannews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastlittlerocktimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastlouisvillenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastmichigannews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastnewmexiconews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastoregonnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
eastpanhandlenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastpdxtoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastpennyroyalnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastsandiegonews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastsbvtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastsfvtoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastsierranews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eaststarknews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:03Z,,,0.1,0.2,0.1,0.1,0.1,0.1
easttwincities.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastventuranews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastvolusianews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eastwaketimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
ebaumsworld.com,unreliable,0.11,1,M,FN,0.2,21199,24.3,2001-11-15T17:43:41Z,,,0.1,0.2,0.2,0.1,0.1,0.1
ebolahoax.com,conspiracy,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
ecalabamanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ecgeorgianews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
echocheck.org,unreliable,0.075,1,VL,FN,0.0,,5.6,2020-08-12T07:20:32.506Z,,,0.1,0.0,0.1,0.1,0.1,0.1
ecindiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eciowanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eckansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ecmissnews.com,unreliable,0.135,1,H,FN,0.4,,6.4,2019-10-15T14:55:14Z,,,0.1,0.4,0.1,0.1,0.1,0.1
ecnebraskanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ecnorthcarolinanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ecohionews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ecoklahomanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ecology.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:06.833Z,,,0.1,0.0,0.1,0.1,0.1,0.1
economicnoise.com,mixed,0.18,1,,,,,16.5,2009-09-10T00:06:55Z,,,0.2,0.2,0.2,0.2,0.2,0.2
economictimes.indiatimes.com,unreliable,0.105,1,M,FN,0.2,,29.3,1996-11-22T05:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ecowatch.com,mixed,0.18,1,,,,19926,27.3,1998-12-08T05:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
educate-yourself.org,conspiracy,0.088,2,VL,CP,0.0,180686,27.1,1999-02-17T05:00:00.272Z,,,0.1,0.0,0.35,0.1,0.1,0.1
educateinspirechange.org,unreliable,0.105,1,M,CP,0.2,,12.8,2013-06-03T03:49:56.961Z,,,0.1,0.2,0.1,0.1,0.1,0.1
educateinspirechange.org/health,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
educationdailywire.com,unreliable,0.105,1,M,FN,0.2,,6.0,2020-03-12T18:06:35Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
electionnightgatekeepers.com,conspiracy,0.09,1,,,,,9.6,2016-08-12T05:24:10Z,,,0.1,0.1,0.1,0.1,0.1,0.1
electroverse.net,unreliable,0.09,1,L,CP,0.1,,7.7,2018-07-05T08:55:57Z,,,0.1,0.1,0.1,0.1,0.1,0.1
elelephantintheroom.blogspot.com,mixed,0.18,1,,,,,25.6,2000-07-31T21:38:58Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
elitereaders.com,unreliable,0.188,1,,,,503649,11.5,2014-09-30T02:07:32Z,,,0.2,0.2,0.35,0.2,0.2,0.2
elizabethtowntimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
elkharttimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
elkoshary.com,satire,0.27,1,,,,,17.5,2008-09-21T21:36:23Z,0,,0.3,0.3,0.3,0.3,0.3,0.3
elmundotoday.com,satire,0.273,1,,,,306638,17.4,2008-11-01T11:00:16Z,,,0.3,0.3,0.35,0.3,0.3,0.3
eluxemagazine.com,unreliable,0.118,1,M,CP,0.2,515303,13.5,2012-09-19T20:32:20Z,,,0.1,0.2,0.35,0.1,0.1,0.1
embols.com,fake,0.045,1,,,,,4.1,2022-01-27T19:14:57Z,,,0.05,0.05,0.05,0.05,0.05,0.05
emeraldcoasttimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
emirates247.com,unreliable,0.11,1,M,FN,0.2,64002,16.0,2010-03-31T12:49:24Z,,,0.1,0.2,0.2,0.1,0.1,0.1
empirehearland.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
empireherald.com,fake,0.053,2,L,FN,0.1,,10.1,2016-01-24T00:28:39Z,,,0.05,0.1,0.05,0.05,0.05,0.05
empirenews.net,fake,0.045,1,,,,,11.9,2014-05-02T18:14:30Z,,,0.05,0.05,0.05,0.05,0.05,0.05
empiresports.co,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
empirestatetoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
emptywheel.net,mixed,0.188,1,,,,170038,18.2,2007-12-31T21:25:34Z,,,0.2,0.2,0.35,0.2,0.2,0.2
en-volve.com,unreliable,0.088,1,VL,FN,0.0,855624,9.9,2016-04-11T03:55:10Z,,,0.1,0.0,0.35,0.1,0.1,0.1
en-vovle.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
en.bbarta24.net,unreliable,0.105,1,M,FN,0.2,,10.6,2015-08-28T13:43:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
en.granma.cu,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
en.majalla.com,unreliable,0.105,1,M,FN,0.2,,23.9,2002-04-27T14:50:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
en.mehrnews.com,unreliable,0.105,1,M,FN,0.2,,23.4,2002-11-05T18:29:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
en.mercopress.com,unreliable,0.105,1,M,FN,0.2,,29.6,1996-08-21T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
en.metapedia.org,unreliable,0.09,1,L,FN,0.1,,22.8,2003-05-19T22:54:18.891Z,,,0.1,0.1,0.1,0.1,0.1,0.1
en.newsner.com,unreliable,0.075,1,VL,FN,0.0,,11.9,2014-04-09T21:50:49Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
enabon.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
enchantmentstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
endingthefed.com,mixed,0.18,1,,,,,7.8,2018-05-20T18:45:10Z,,,0.2,0.2,0.2,0.2,0.2,0.2
endoftheamericandream.com,conspiracy,0.103,1,,,,186961,16.1,2010-01-29T21:32:02Z,,,0.1,0.1,0.35,0.1,0.1,0.1
endthefed.org,unreliable,0.09,1,L,FN,0.1,,11.2,2015-01-18T19:48:04.061Z,,,0.1,0.1,0.1,0.1,0.1,0.1
endtime.com,mixed,0.188,1,,,,862559,30.6,1995-08-13T04:00:00Z,,,0.2,0.2,0.35,0.2,0.2,0.2
enduringvision.com,fake,0.045,1,,,,,24.0,2002-03-16T15:10:04Z,,,0.05,0.05,0.05,0.05,0.05,0.05
english.alarabiya.net,unreliable,0.105,1,M,FN,0.2,,26.5,1999-09-15T16:29:58Z,,,0.1,0.2,0.1,0.1,0.1,0.1
english.almanar.com.lb,unreliable,0.105,1,M,FN,0.2,,5.1,2021-01-31T00:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
english.almayadeen.net,unreliable,0.105,1,M,FN,0.2,,14.7,2011-07-13T15:45:02Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
english.cctv.com,unreliable,0.105,1,M,FN,0.2,,28.8,1997-05-21T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
enhlive.com,fake,0.053,1,,,,,0.9,2025-04-28T18:03:39Z,,,0.05,0.05,0.05,0.2,0.05,0.05
escapeallthesethings.com,unreliable,0.09,1,L,CP,0.1,,22.2,2004-01-02T23:25:14Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
eugenics.news,unreliable,0.075,1,VL,CP,0.0,,8.5,2017-09-07T17:52:47.56Z,,,0.1,0.0,0.1,0.1,0.1,0.1
europe-israel.org,unreliable,0.105,1,M,FN,0.2,,15.5,2010-08-31T14:08:18.318Z,,,0.1,0.2,0.1,0.1,0.1,0.1
europereloaded.com,unreliable,0.103,1,L,CP,0.1,586588,9.8,2016-06-01T19:30:30Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
eutimes.net,unreliable,0.242,2,L,CP,0.1,248287,16.4,2009-10-26T21:08:05Z,1,,0.15,0.1,0.35,0.15,0.85,0.15
eutopia.buzz,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
everetttimes.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-15T19:23:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
everylegalvote.com,unreliable,0.203,1,L,FN,0.1,,5.4,2020-11-05T19:31:41Z,1,,0.1,0.1,0.1,0.1,0.85,0.1
everytown.org,unreliable,0.118,1,M,FN,0.2,102306,16.7,2009-07-08T14:30:29.714Z,,,0.1,0.2,0.35,0.1,0.1,0.1
evil.news,unreliable,0.09,1,L,FN,0.1,,10.7,2015-07-15T17:00:03.073Z,,,0.1,0.1,0.1,0.1,0.1,0.1
evolutionnews.org,unreliable,0.103,1,L,CP,0.1,187178,21.2,2004-12-29T02:30:33.036Z,,,0.1,0.1,0.35,0.1,0.1,0.1
ewao.com,unreliable,0.18,1,,,,,23.8,2002-05-23T16:13:22Z,,,0.2,0.2,0.2,0.2,0.2,0.2
ex.24smi.info,unreliable,0.09,1,L,FN,0.1,,10.8,2015-05-28T06:06:32.193Z,,,0.1,0.1,0.1,0.1,0.1,0.1
exopolitics.org,unreliable,0.103,1,L,CP,0.1,529198,23.2,2003-01-17T22:28:41.033Z,,,0.1,0.1,0.35,0.1,0.1,0.1
experimentalvaccines.org,unreliable,0.18,1,,,,,14.6,2011-08-12T21:46:21.611Z,,,0.2,0.2,0.2,0.2,0.2,0.2
explainlife.com,unreliable,0.075,1,VL,FN,0.0,,21.9,2004-04-09T04:40:25Z,,,0.1,0.0,0.1,0.1,0.1,0.1
expose-news.com,unreliable,0.088,1,VL,CP,0.0,136635,3.9,2022-05-10T14:33:12Z,,,0.1,0.0,0.35,0.1,0.1,0.1
expose1933.com,conspiracy,0.09,1,,,,,13.7,2012-07-03T20:24:35Z,,,0.1,0.1,0.1,0.1,0.1,0.1
express.co.uk,rumor,0.218,1,,,,2309,30.3,1995-11-17T03:42:01Z,,,0.25,0.25,0.1,0.25,0.25,0.25
extinction.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:07.583Z,,,0.1,0.0,0.1,0.1,0.1,0.1
extraclubmagazine.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
extraordinaryinfo.com,unreliable,0.105,1,M,CP,0.2,,6.7,2019-07-19T03:42:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
eyeopening.info,conspiracy,0.09,1,,,,,12.2,2013-12-19T02:40:02.661Z,,,0.1,0.1,0.1,0.1,0.1,0.1
fabiosa.com,unreliable,0.105,1,M,CP,0.2,,10.8,2015-06-15T03:40:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
factcheck.news,unreliable,0.068,1,VL,CP,0.0,,10.7,2015-07-15T17:00:11.87Z,8,,0.1,0.0,0.1,0.1,0.05,0.1
factcheckingturkey.com,unreliable,0.105,1,M,FN,0.2,,10.3,2015-11-26T13:54:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
facts.net,unreliable,0.11,1,M,FN,0.2,34050,28.8,1997-05-31T04:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
factswanted.com,unreliable,0.05,1,M,FN,0.2,,0.9,2025-04-23T18:36:24Z,,True,0.1,0.2,0.1,0.2,0.1,0.0
fairfieldreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fairporteducationalalliance.org,unreliable,0.105,1,M,FN,0.2,,4.2,2022-01-03T17:41:11.903Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fairus.org,unreliable,0.103,1,L,FN,0.1,136732,31.0,1995-03-15T05:00:00.167Z,,,0.1,0.1,0.35,0.1,0.1,0.1
faithpanda.com,unreliable,0.105,1,M,CP,0.2,,9.5,2016-09-25T06:12:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fakingnews.com,fake,0.045,1,,,,,17.5,2008-09-15T12:02:37Z,0,,0.05,0.05,0.05,0.05,0.05,0.05
familysecuritymatters.org,conspiracy,0.103,1,,,,646625,22.7,2003-07-06T12:16:46.172Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
familysurvivalheadlines.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-02-19T17:17:08Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
fargostandard.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
farminsurancenews.com,unreliable,0.105,1,M,FN,0.2,,9.2,2017-01-19T23:10:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
farmwars.info,unreliable,0.18,1,,,,,17.1,2009-02-24T17:21:13.409Z,,,0.2,0.2,0.2,0.2,0.2,0.2
farsnews.ir,unreliable,0.11,1,M,FN,0.2,11243,,,,,0.1,0.2,0.2,0.1,0.1,0.1
fayettevillestandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fayettevilletoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fda.news,unreliable,0.075,1,VL,CP,0.0,,10.6,2015-08-10T15:58:00.89Z,,,0.1,0.0,0.1,0.1,0.1,0.1
fdahealthnews.com,unreliable,0.105,1,M,FN,0.2,,7.1,2019-02-20T15:43:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fdareporter.com,unreliable,0.105,1,M,FN,0.2,,7.1,2019-02-20T15:42:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
federalistpress.com,mixed,0.18,2,M,FN,0.2,,13.8,2012-05-12T18:39:51Z,,,0.2,0.2,0.2,0.2,0.2,0.2
fedsalert.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
fellowshipoftheminds.com,conspiracy,0.103,2,L,CP,0.1,993914,12.5,2013-09-12T17:51:43Z,,,0.1,0.1,0.35,0.1,0.1,0.1
filmingcops.com,unreliable,0.105,1,M,FN,0.2,,12.4,2013-10-18T21:00:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
filmsforaction.org,mixed,0.188,1,,,,108170,19.0,2007-03-07T09:42:16.009Z,,,0.2,0.2,0.35,0.2,0.2,0.2
financialsurvivalnetwork.com,unreliable,0.09,1,,,,,14.8,2011-05-25T20:59:55Z,,,0.1,0.1,0.1,0.1,0.1,0.1
findlaytimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:06Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fingerlakestoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:12Z,,,0.1,0.2,0.1,0.1,0.1,0.1
firearmscoalition.org,mixed,0.18,1,,,,,24.0,2002-03-25T23:25:50.759Z,,,0.2,0.2,0.2,0.2,0.2,0.2
fireboebert.com,unreliable,0.105,1,M,FN,0.2,,3.8,2022-05-18T16:36:36Z,,,0.1,0.2,0.1,0.1,0.1,0.1
firstinfreedomdaily.com,unreliable,0.105,1,M,FN,0.2,,9.3,2016-11-09T21:05:58Z,,,0.1,0.2,0.1,0.1,0.1,0.1
firststatetimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-08T18:24:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fl24.net,unreliable,0.11,1,M,FN,0.2,,0.6,2025-07-28T18:34:18Z,,,0.1,0.2,0.1,0.2,0.1,0.1
flagandcross.com,unreliable,0.105,1,M,FN,0.2,,7.9,2018-04-11T01:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
flashnewscorner.com,fake,0.045,1,,,,,7.9,2018-05-06T19:02:41Z,,,0.05,0.05,0.05,0.05,0.05,0.05
flcatholictribune.com,unreliable,0.105,1,M,FN,0.2,,6.0,2020-03-30T17:39:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
floricuanews.com,unreliable,0.105,1,M,FN,0.2,,2.3,2023-11-21T21:12:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
floridacapitalstar.com,unreliable,0.105,1,M,FN,0.2,,5.0,2021-03-25T18:29:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
floridaparishnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
floridasunpost.com,fake,0.045,1,,,,,9.5,2016-09-29T20:11:53Z,,,0.05,0.05,0.05,0.05,0.05,0.05
fmobserver.com,satire,0.27,1,,,,,14.1,2012-02-22T22:05:35Z,,,0.3,0.3,0.3,0.3,0.3,0.3
focusonthefamily.com,unreliable,0.095,1,L,FN,0.1,27617,26.9,1999-04-16T04:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
fognews.ru,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
food.news,unreliable,0.075,1,VL,CP,0.0,,8.4,2017-10-24T18:34:31.44Z,,,0.1,0.0,0.1,0.1,0.1,0.1
foodbabe.com,unreliable,0.188,2,M,CP,0.2,237129,18.9,2007-04-14T19:22:26Z,,,0.2,0.2,0.35,0.2,0.2,0.2
foodmatters.com,unreliable,0.118,1,M,CP,0.2,188451,24.9,2001-05-06T10:31:09Z,,,0.1,0.2,0.35,0.1,0.1,0.1
foothillsreview.com,unreliable,0.135,1,H,FN,0.4,,6.7,2019-06-30T20:46:17Z,,,0.1,0.4,0.1,0.1,0.1,0.1
foreignpolicyi.org,unreliable,0.118,1,M,FN,0.2,596278,17.1,2009-02-23T16:44:41.674Z,,,0.1,0.2,0.35,0.1,0.1,0.1
foreignpolicyjournal.com,mixed,0.188,1,,,,226541,17.5,2008-09-20T22:46:38Z,,,0.2,0.2,0.35,0.2,0.2,0.2
foreverconscious.com,unreliable,0.103,1,L,CP,0.1,493787,12.5,2013-09-25T20:24:05Z,,,0.1,0.1,0.35,0.1,0.1,0.1
fortherightnews.com,unreliable,0.09,1,L,FN,0.1,,8.3,2017-12-13T17:52:31Z,,,0.1,0.1,0.1,0.1,0.1,0.1
fortsmithtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fourwinds10.net,conspiracy,0.095,1,,,,,0.2,2025-12-31T19:03:13Z,,,0.1,0.1,0.1,0.2,0.1,0.1
foxnews.com,unreliable,0.105,1,M,FN,0.2,466,30.7,1995-06-21T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fprnradio.com,conspiracy,0.09,1,,,,,13.1,2013-02-22T19:20:08Z,,,0.1,0.1,0.1,0.1,0.1,0.1
fr.sputniknews.com,unreliable,0.075,1,VL,FN,0.0,,14.4,2011-10-24T00:15:14Z,,,0.1,0.0,0.1,0.1,0.1,0.1
fr24news.com,unreliable,0.118,1,M,FN,0.2,571019,6.3,2019-11-16T11:22:55Z,,,0.1,0.2,0.35,0.1,0.1,0.1
frankspeech.com,unreliable,0.088,1,VL,FN,0.0,294028,5.0,2021-03-12T18:37:48Z,,,0.1,0.0,0.35,0.1,0.1,0.1
frc.org,unreliable,0.095,1,L,FN,0.1,83414,31.0,1995-03-08T05:00:00.174Z,,,0.1,0.1,0.2,0.1,0.1,0.1
freakoutnation.com,mixed,0.18,1,,,,,16.2,2009-12-18T00:37:33Z,,,0.2,0.2,0.2,0.2,0.2,0.2
free-speechfront.info,unreliable,0.095,1,L,FN,0.1,,0.4,2025-10-07T15:15:59.063Z,,,0.1,0.1,0.1,0.2,0.1,0.1
freebeacon.com,mixed,0.278,1,,,,25438,18.6,2007-08-26T23:02:10Z,1,,0.2,0.2,0.2,0.2,0.85,0.2
freedom.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:01.017Z,,,0.1,0.0,0.1,0.1,0.1,0.1
freedomadvocates.org,unreliable,0.09,1,L,CP,0.1,,19.5,2006-10-03T21:56:16.097Z,,,0.1,0.1,0.1,0.1,0.1,0.1
freedomainradio.com,unreliable,0.09,1,L,CP,0.1,,20.1,2006-02-16T19:26:48Z,,,0.1,0.1,0.1,0.1,0.1,0.1
freedomdaily.com,fake,0.053,2,L,FN,0.1,,13.1,2013-02-13T19:31:33Z,0,,0.05,0.1,0.05,0.05,0.05,0.05
freedomfirstnetwork.com,unreliable,0.09,1,L,FN,0.1,,5.9,2020-04-27T17:16:47Z,,,0.1,0.1,0.1,0.1,0.1,0.1
freedomforceinternational.com,conspiracy,0.09,1,,,,,23.0,2003-03-23T06:31:37Z,,,0.1,0.1,0.1,0.1,0.1,0.1
freedomnewsreport.com,unreliable,0.105,1,M,FN,0.2,,8.3,2017-12-13T17:52:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
freedomoutpost.com,conspiracy,0.103,1,,,,427340,17.5,2008-08-29T18:15:15Z,,,0.1,0.1,0.35,0.1,0.1,0.1
freedomproject.com,unreliable,0.203,1,L,FN,0.1,,23.4,2002-10-17T19:58:18Z,1,,0.1,0.1,0.1,0.1,0.85,0.1
freedomsphoenix.com,mixed,0.188,1,,,,165441,20.7,2005-06-20T21:33:01Z,,,0.2,0.2,0.35,0.2,0.2,0.2
freedomworks.org,mixed,0.188,1,,,,262869,25.1,2001-02-22T17:35:59.686Z,,,0.2,0.2,0.35,0.2,0.2,0.2
freedomworldnews.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
freepatriot.org,satire,0.27,1,,,,,4.9,2021-04-25T14:30:49.336Z,,,0.3,0.3,0.3,0.3,0.3,0.3
freetelegraph.com,unreliable,0.105,1,M,FN,0.2,,8.7,2017-07-07T15:35:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
freewestmedia.com,unreliable,0.118,1,M,FN,0.2,433638,10.0,2016-03-22T20:32:52Z,,,0.1,0.2,0.35,0.1,0.1,0.1
freewoodpost.com,satire,0.27,1,,,,,14.5,2011-09-01T00:15:11Z,0,,0.3,0.3,0.3,0.3,0.3,0.3
freeworldnews.tv,unreliable,0.075,1,VL,CP,0.0,,4.8,2021-05-19T20:27:53Z,,,0.1,0.0,0.1,0.1,0.1,0.1
freshdailyreport.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
freshoffthepress.org,unreliable,0.105,1,M,FN,0.2,,5.7,2020-06-17T16:17:49.273Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fresnoleader.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
friatider.se,unreliable,0.095,1,L,FN,0.1,69683,,,,,0.1,0.1,0.2,0.1,0.1,0.1
fridaymash.com,satire,0.27,1,,,,,5.8,2020-06-05T18:57:18Z,,,0.3,0.3,0.3,0.3,0.3,0.3
friendsofscience.org,unreliable,0.118,1,M,CP,0.2,907118,23.9,2002-05-09T22:05:10.914Z,,,0.1,0.2,0.35,0.1,0.1,0.1
fromthetrenchesworldreport.com,conspiracy,0.103,2,L,CP,0.1,456566,15.4,2010-11-07T18:03:31Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
front.moveon.org,unreliable,0.105,1,M,FN,0.2,,27.5,1998-09-18T04:00:00.981Z,,,0.1,0.2,0.1,0.1,0.1,0.1
frontpagemag.com,mixed,0.165,2,L,FN,0.1,40019,27.9,1998-04-27T04:00:00Z,,,0.2,0.1,0.2,0.2,0.2,0.2
frontpagenewspaper.com,unreliable,0.118,1,M,FN,0.2,218715,12.1,2014-02-21T10:13:26Z,,,0.1,0.2,0.35,0.1,0.1,0.1
ftwaynetimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
fury.news,unreliable,0.075,1,VL,FN,0.0,,10.1,2016-02-20T09:26:48.133Z,,,0.1,0.0,0.1,0.1,0.1,0.1
fusion.net,mixed,0.18,1,,,,48725,30.8,1995-05-19T04:00:00Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
gadsdentoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:41Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
gaia.com,conspiracy,0.095,2,L,CP,0.1,24328,33.7,1992-07-01T04:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
galacticconnection.com,unreliable,0.18,1,,,,,14.1,2012-02-08T02:20:29Z,,,0.2,0.2,0.2,0.2,0.2,0.2
galesburgreporter.com,unreliable,0.105,1,M,FN,0.2,,8.3,2017-11-28T19:23:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gandernewsroom.com,unreliable,0.105,1,M,FN,0.2,,6.2,2020-01-15T23:12:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gangstergovernment.com,conspiracy,0.095,1,,,,,0.8,2025-05-19T18:19:29Z,,,0.1,0.1,0.1,0.2,0.1,0.1
gardenstatetimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gastoniatimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gatesofvienna.net,unreliable,0.145,1,,,,587664,13.2,2013-01-17T03:26:45Z,,,0.15,0.15,0.35,0.15,0.15,0.15
gatestoneinstitute.org,unreliable,0.11,1,M,FN,0.2,56999,14.0,2012-03-05T15:05:23.673Z,,,0.1,0.2,0.2,0.1,0.1,0.1
gazeta.ru,unreliable,0.105,1,M,FN,0.2,5104,,,,,0.1,0.2,0.1,0.1,0.1,0.1
gbnews.com,unreliable,0.105,1,M,FN,0.2,6463,23.1,2003-01-26T00:46:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gbnews.uk,unreliable,0.118,1,M,FN,0.2,361643,6.1,2020-02-27T00:41:16Z,,,0.1,0.2,0.35,0.1,0.1,0.1
gear.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-12T22:17:47.587Z,,,0.1,0.0,0.1,0.1,0.1,0.1
gellerreport.com,unreliable,0.103,1,L,FN,0.1,252850,9.5,2016-09-20T13:49:01Z,,,0.1,0.1,0.35,0.1,0.1,0.1
gemstatewire.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gender.news,unreliable,0.075,1,VL,CP,0.0,,9.1,2017-02-01T16:45:46.893Z,,,0.1,0.0,0.1,0.1,0.1,0.1
geneseenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
genzconservative.com,unreliable,0.105,1,M,FN,0.2,,7.4,2018-11-04T01:55:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
geoengineering.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:13.737Z,,,0.1,0.0,0.1,0.1,0.1,0.1
geoengineeringwatch.org,unreliable,0.173,2,L,CP,0.1,207679,16.3,2009-11-30T07:05:15.292Z,,,0.2,0.1,0.35,0.2,0.2,0.2
geopol.institute,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
geopoliticaleconomy.com,unreliable,0.118,1,M,CP,0.2,251981,11.1,2015-01-23T19:15:31Z,,,0.1,0.2,0.35,0.1,0.1,0.1
geopolitics.co,unreliable,0.118,1,M,CP,0.2,697026,,,,,0.1,0.2,0.35,0.1,0.1,0.1
geopolmonitor.com,mixed,0.18,1,,,,,5.3,2020-11-15T19:06:18Z,,,0.2,0.2,0.2,0.2,0.2,0.2
georgiamountainnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
georgiastarnews.com,unreliable,0.105,1,M,FN,0.2,,5.3,2020-11-11T22:30:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
getholistichealth.com,unreliable,0.09,1,L,CP,0.1,,22.8,2003-05-27T17:32:00Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
gettr.com,unreliable,0.095,1,L,FN,0.1,18319,18.0,2008-03-11T23:07:33Z,,,0.1,0.1,0.2,0.1,0.1,0.1
ghost.report,unreliable,0.105,1,M,FN,0.2,,9.6,2016-08-26T14:23:18.227Z,,,0.1,0.2,0.1,0.1,0.1,0.1
girlsjustwannahaveguns.com,unreliable,0.09,1,L,FN,0.1,,16.0,2010-03-12T01:55:32Z,,,0.1,0.1,0.1,0.1,0.1,0.1
givemeliberity01.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
givesendgo.com,unreliable,0.11,1,M,FN,0.2,52320,12.0,2014-03-28T02:05:39Z,,,0.1,0.2,0.2,0.1,0.1,0.1
glaciercountrynews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-09T19:43:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
glaringhypocrisy.com,unreliable,0.138,1,,,,,1.1,2025-02-04T19:15:21Z,,,0.15,0.15,0.15,0.2,0.15,0.15
glitch.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:04.633Z,,,0.1,0.0,0.1,0.1,0.1,0.1
globalhealingcenter.com,unreliable,0.118,1,M,CP,0.2,152394,26.6,1999-07-26T13:17:19Z,,,0.1,0.2,0.35,0.1,0.1,0.1
globalinfotoday.com,unreliable,0.09,1,L,FN,0.1,,4.3,2021-12-08T20:17:18Z,,,0.1,0.1,0.1,0.1,0.1,0.1
globalpoliticsnow.com,fake,0.053,2,L,FN,0.1,,4.4,2021-10-14T08:22:19Z,,,0.05,0.1,0.05,0.05,0.05,0.05
globalresearch.ca,conspiracy,0.095,2,L,CP,0.1,15856,24.8,2001-05-28T17:57:41Z,,,0.1,0.1,0.2,0.1,0.1,0.1
globalskywatch.com,unreliable,0.09,1,L,CP,0.1,,16.3,2009-12-01T21:02:17Z,,,0.1,0.1,0.1,0.1,0.1,0.1
globaltimes.cn,unreliable,0.105,1,M,FN,0.2,7026,,,,,0.1,0.2,0.1,0.1,0.1,0.1
globemagazine.com,unreliable,0.088,1,VL,FN,0.0,420555,26.4,1999-11-05T15:54:34Z,,,0.1,0.0,0.35,0.1,0.1,0.1
glossynews.com,satire,0.27,1,,,,,23.9,2002-05-10T04:09:24Z,,,0.3,0.3,0.3,0.3,0.3,0.3
gloucestertoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gmo.news,unreliable,0.188,1,VL,CP,0.0,,10.7,2015-07-12T23:34:34.707Z,1,,0.1,0.0,0.1,0.1,0.85,0.1
gmowatch.com,unreliable,0.105,1,M,CP,0.2,,21.7,2004-07-19T18:37:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gmwatch.org,unreliable,0.118,1,M,CP,0.2,231152,23.8,2002-05-17T15:50:03.626Z,,,0.1,0.2,0.35,0.1,0.1,0.1
gnews.org,unreliable,0.103,1,L,FN,0.1,891658,14.2,2012-01-19T03:20:35.475Z,,,0.1,0.1,0.35,0.1,0.1,0.1
godandscience.org,unreliable,0.103,1,L,CP,0.1,291129,26.6,1999-08-09T23:18:57Z,,,0.1,0.1,0.35,0.1,0.1,0.1
godfatherpolitics.com,unreliable,0.105,1,M,FN,0.2,,14.9,2011-05-04T14:07:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
godlikeproductions.com,conspiracy,0.095,2,L,CP,0.1,39609,25.6,2000-07-26T03:58:30Z,,,0.1,0.1,0.2,0.1,0.1,0.1
goldcountrytoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
goldenstatetoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gomerblog.com,satire,0.27,1,,,,,12.7,2013-06-18T01:56:05Z,,,0.3,0.3,0.3,0.3,0.3,0.3
goneleft.com,fake,0.045,1,,,,,7.2,2019-01-01T19:29:15Z,,,0.05,0.05,0.05,0.05,0.05,0.05
goodgopher.com,unreliable,0.075,1,VL,FN,0.0,,11.4,2014-11-05T20:35:03Z,,,0.1,0.0,0.1,0.1,0.1,0.1
goodsciencing.com,unreliable,0.2,1,VL,FN,0.0,978963,4.4,2021-11-04T11:55:47Z,1,,0.1,0.0,0.35,0.1,0.85,0.1
goop.com,unreliable,0.095,1,L,CP,0.1,26078,30.1,1996-02-02T05:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
gop.com,unreliable,0.11,1,M,FN,0.2,51264,27.0,1999-03-03T05:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
gop.gov,unreliable,0.23,1,M,FN,0.2,311918,26.5,1999-09-02T20:31:01.000Z,1,,0.1,0.2,0.35,0.1,0.85,0.1
gopdailybrief.com,unreliable,0.105,1,M,FN,0.2,,14.7,2011-07-23T06:29:59Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gopthedailydose.com,fake,0.045,1,,,,,13.6,2012-08-12T01:09:38Z,,,0.05,0.05,0.05,0.05,0.05,0.05
gotquestions.org,unreliable,0.095,1,L,CP,0.1,11559,24.1,2002-02-12T02:16:31.122Z,,,0.1,0.1,0.2,0.1,0.1,0.1
govtslaves.com,unreliable,0.09,1,L,CP,0.1,,17.6,2008-08-15T02:55:25Z,,,0.1,0.1,0.1,0.1,0.1,0.1
govtslaves.info,conspiracy,0.09,1,,,,,16.1,2010-02-02T20:23:08.889Z,,,0.1,0.1,0.1,0.1,0.1,0.1
grainoftruth.ca,unreliable,0.075,1,VL,FN,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
grandcanyontimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:27Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
grandjunctiontimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
grandrapidsminews.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
grandrapidsreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
granitepostnews.com,unreliable,0.105,1,M,FN,0.2,,2.5,2023-09-20T21:42:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
granitestatetimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
greanvillepost.com,conspiracy,0.118,2,M,CP,0.2,467709,16.4,2009-10-09T13:13:54Z,,,0.1,0.2,0.35,0.1,0.1,0.1
greatamericandaily.com,unreliable,0.09,1,L,FN,0.1,,9.3,2016-12-02T13:51:34Z,,,0.1,0.1,0.1,0.1,0.1,0.1
greatamericanrepublic.com,unreliable,0.09,1,L,FN,0.1,,9.3,2016-12-13T06:12:07Z,,,0.1,0.1,0.1,0.1,0.1,0.1
greatlakeswire.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
greatreject.org,unreliable,0.075,1,VL,CP,0.0,,5.3,2020-11-22T13:10:08.939Z,,,0.1,0.0,0.1,0.1,0.1,0.1
greenecotimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
greenmedinfo.com,unreliable,0.165,2,L,CP,0.1,67258,17.0,2009-03-18T00:05:14Z,,,0.2,0.1,0.2,0.2,0.2,0.2
greenpeace.org,unreliable,0.098,1,M,CP,0.2,3219,33.8,1992-06-15T04:00:00.319Z,21,,0.1,0.2,0.1,0.1,0.05,0.1
greensbororeporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
greenvillereporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
grundyreporter.com,unreliable,0.105,1,M,FN,0.2,,8.7,2017-06-19T21:09:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
grunge.com,unreliable,0.11,1,M,FN,0.2,32035,30.5,1995-08-29T04:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
gtrtimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
guardian.ng,unreliable,0.223,1,M,FN,0.2,16642,,,1,,0.1,0.2,0.2,0.1,0.85,0.1
guardianlv.com,mixed,0.188,1,,,,100207,14.1,2012-02-03T01:34:58Z,,,0.2,0.2,0.35,0.2,0.2,0.2
guccifer2.wordpress.com,unreliable,0.09,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.1,0.1,0.1,0.1,0.1,0.1
gulagbound.com,mixed,0.165,2,L,CP,0.1,,15.8,2010-05-21T00:09:25Z,,,0.2,0.1,0.2,0.2,0.2,0.2
gulfnews.com,unreliable,0.105,1,M,FN,0.2,4990,27.8,1998-05-11T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
gummypost.com,fake,0.045,1,,,,,10.9,2015-05-05T19:29:53Z,,,0.05,0.05,0.05,0.05,0.05,0.05
gundrymd.com,unreliable,0.118,1,M,CP,0.2,113093,10.6,2015-08-07T20:58:46Z,,,0.1,0.2,0.35,0.1,0.1,0.1
gunsternews.com,unreliable,0.11,1,M,FN,0.2,,0.2,2026-01-09T15:59:35Z,,,0.1,0.2,0.1,0.2,0.1,0.1
haarp.net,unreliable,0.09,1,L,CP,0.1,,27.0,1999-03-04T05:00:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
hagmannreport.com,unreliable,0.09,1,L,FN,0.1,,10.6,2015-08-18T21:10:44Z,,,0.1,0.1,0.1,0.1,0.1,0.1
halturnerradioshow.com,unreliable,0.088,1,VL,FN,0.0,102963,8.7,2017-06-27T14:27:13Z,,,0.1,0.0,0.35,0.1,0.1,0.1
hangthebankers.com,conspiracy,0.09,2,L,FN,0.1,,14.0,2012-03-06T09:04:42Z,,,0.1,0.1,0.1,0.1,0.1,0.1
hannity.com,unreliable,0.103,1,L,FN,0.1,139392,28.0,1998-03-26T05:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
hardnews.network,unreliable,0.11,1,M,FN,0.2,,0.5,2025-09-19T12:10:28.887Z,,,0.1,0.2,0.1,0.2,0.1,0.1
hartfordreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hawkeyereporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
headlineusa.com,unreliable,0.118,1,M,FN,0.2,151542,22.6,2003-08-04T18:14:33Z,,,0.1,0.2,0.35,0.1,0.1,0.1
headtopics.com,unreliable,0.11,1,M,FN,0.2,17609,8.2,2017-12-17T11:45:13Z,,,0.1,0.2,0.2,0.1,0.1,0.1
healingfoodreference.com,unreliable,0.075,1,VL,CP,0.0,,19.8,2006-05-16T19:07:54Z,,,0.1,0.0,0.1,0.1,0.1,0.1
healingoracle.ch,unreliable,0.075,1,VL,CP,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
health-helpline.co.nz,unreliable,0.09,1,L,CP,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
health.news,unreliable,0.068,1,VL,CP,0.0,,8.4,2017-10-24T18:33:06.37Z,7,,0.1,0.0,0.1,0.1,0.05,0.1
healthimpactnews.com,unreliable,0.15,2,VL,CP,0.0,97409,15.2,2011-01-11T07:37:35Z,,,0.2,0.0,0.2,0.2,0.2,0.2
healthnutnews.com,unreliable,0.158,2,VL,CP,0.0,864205,12.4,2013-11-02T05:24:42Z,,,0.2,0.0,0.35,0.2,0.2,0.2
healthranger.com,unreliable,0.075,1,VL,CP,0.0,,20.7,2005-07-10T18:10:15Z,,,0.1,0.0,0.1,0.1,0.1,0.1
healthrangerinventions.com,unreliable,0.075,1,VL,CP,0.0,,10.8,2015-06-05T05:40:25Z,,,0.1,0.0,0.1,0.1,0.1,0.1
healthrangerreport.com,unreliable,0.075,1,VL,CP,0.0,,10.3,2015-11-20T18:47:16Z,,,0.1,0.0,0.1,0.1,0.1,0.1
healthy-holistic-living.com,unreliable,0.173,2,L,CP,0.1,495097,19.7,2006-07-05T14:54:01Z,,,0.2,0.1,0.35,0.2,0.2,0.2
healthyandnaturalworld.com,unreliable,0.118,1,M,CP,0.2,302770,13.0,2013-03-24T05:03:37Z,,,0.1,0.2,0.35,0.1,0.1,0.1
healthycareandbeauty.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
healthyfoodhouse.com,unreliable,0.103,1,L,CP,0.1,524128,13.5,2012-09-07T17:50:56Z,,,0.1,0.1,0.35,0.1,0.1,0.1
healthyworldhouse.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
heartland.org,mixed,0.165,2,L,FN,0.1,60518,31.4,1994-11-09T05:00:00Z,,,0.2,0.1,0.2,0.2,0.2,0.2
heatst.com,unreliable,0.188,1,,,,258973,10.1,2016-01-25T17:46:05Z,,,0.2,0.2,0.35,0.2,0.2,0.2
hellochristian.com,unreliable,0.105,1,M,CP,0.2,,13.9,2012-04-23T18:45:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hendersontimes.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:35.364Z,,,0.1,0.2,0.1,0.1,0.1,0.1
henrymakow.com,conspiracy,0.103,1,,,,147417,21.5,2004-08-31T15:11:22Z,,,0.1,0.1,0.35,0.1,0.1,0.1
herb.co,unreliable,0.118,1,M,CP,0.2,126521,,,,,0.1,0.2,0.35,0.1,0.1,0.1
herbreference.com,unreliable,0.075,1,VL,CP,0.0,,26.2,2000-01-21T20:05:49Z,,,0.1,0.0,0.1,0.1,0.1,0.1
herbs.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-12T22:32:10.363Z,,,0.1,0.0,0.1,0.1,0.1,0.1
hereistheevidence.com,unreliable,0.09,1,L,FN,0.1,,5.3,2020-11-10T20:54:05Z,,,0.1,0.1,0.1,0.1,0.1,0.1
heresyblog.net,mixed,0.18,1,,,,,4.8,2021-05-17T19:36:29Z,,,0.2,0.2,0.2,0.2,0.2,0.2
heritage.org,mixed,0.188,1,,,,10034,32.3,1993-11-15T05:00:00Z,5,,0.2,0.2,0.2,0.2,0.25,0.2
hernandoreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hickorysun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
highcountrytimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:52Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
highereducationtribune.com,unreliable,0.105,1,M,FN,0.2,,10.8,2015-06-11T13:48:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
higherperspectives.com,unreliable,0.118,1,M,CP,0.2,649487,24.0,2002-03-30T20:28:03Z,,,0.1,0.2,0.35,0.1,0.1,0.1
hillsboroughsun.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hindstoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hli.org,unreliable,0.103,1,L,FN,0.1,324664,30.6,1995-07-25T04:00:00.384Z,,,0.1,0.1,0.35,0.1,0.1,0.1
hoggwatch.com,unreliable,0.09,1,L,FN,0.1,,8.0,2018-03-24T18:35:35Z,,,0.1,0.1,0.1,0.1,0.1,0.1
hollandreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:34Z,,,0.1,0.2,0.1,0.1,0.1,0.1
holyobserver.com,satire,0.27,1,,,,,22.9,2003-04-16T04:54:12Z,,,0.3,0.3,0.3,0.3,0.3,0.3
home.nra.org,unreliable,0.105,1,M,FN,0.2,,32.3,1993-12-05T05:00:00.154Z,,,0.1,0.2,0.1,0.1,0.1,0.1
homevaccineeducationnetwork.com,unreliable,0.075,1,VL,CP,0.0,,6.6,2019-08-16T17:10:37Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
honolulureporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hoosierstatetoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hopkinsvilletimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
horowitzfreedomcenter.org,mixed,0.18,1,,,,,19.7,2006-06-26T20:02:00.928Z,,,0.2,0.2,0.2,0.2,0.2,0.2
hotspringstimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
houmathibodauxnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
housatonicvalleynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
howardconews.com,unreliable,0.105,1,M,FN,0.2,,8.0,2018-04-04T22:23:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hrdailywire.com,unreliable,0.105,1,M,FN,0.2,,9.4,2016-10-26T16:01:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hsionline.com,unreliable,0.09,1,L,CP,0.1,,16.7,2009-06-23T19:10:30Z,,,0.1,0.1,0.1,0.1,0.1,0.1
hudsontoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
humansarefree.com,conspiracy,0.103,2,L,CP,0.1,234827,15.2,2010-12-22T09:41:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
humortimes.com,satire,0.308,1,,,,,24.5,2001-09-27T23:01:42Z,3,,0.3,0.3,0.3,0.3,0.55,0.3
huntsvilleleader.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
hutchtoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
huzlers.com,satire,0.27,1,,,,,12.2,2013-12-26T17:39:51Z,,,0.3,0.3,0.3,0.3,0.3,0.3
ibxnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:36Z,,,0.1,0.2,0.1,0.1,0.1,0.1
icandecide.org,unreliable,0.103,1,L,CP,0.1,358077,9.3,2016-11-28T15:26:39.471Z,,,0.1,0.1,0.35,0.1,0.1,0.1
iceagenow.info,unreliable,0.09,1,L,CP,0.1,,14.6,2011-07-24T16:33:48Z,,,0.1,0.1,0.1,0.1,0.1,0.1
icic.law,unreliable,0.075,1,VL,CP,0.0,,3.4,2022-11-04T15:49:10Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
icr.org,unreliable,0.15,2,VL,CP,0.0,67507,30.5,1995-09-11T04:00:00.935Z,,,0.2,0.0,0.2,0.2,0.2,0.2
idahofreedom.org,unreliable,0.09,1,L,FN,0.1,,16.7,2009-07-14T15:24:59.226Z,,,0.1,0.1,0.1,0.1,0.1,0.1
idahotribune.org,unreliable,0.09,1,L,FN,0.1,,5.0,2021-03-01T15:57:35.631Z,,,0.1,0.1,0.1,0.1,0.1,0.1
identityevropa.com,unreliable,0.075,1,VL,FN,0.0,,5.9,2020-04-11T18:44:08Z,,,0.1,0.0,0.1,0.1,0.1,0.1
ifapray.org,unreliable,0.103,1,L,FN,0.1,293093,23.9,2002-04-10T18:51:32.611Z,,,0.1,0.1,0.35,0.1,0.1,0.1
ifyouonlynews.com,unreliable,0.09,1,,,,,11.5,2014-09-19T04:23:06Z,,,0.1,0.1,0.1,0.1,0.1,0.1
iharare.com,unreliable,0.118,1,M,FN,0.2,263936,12.7,2013-06-21T20:27:29Z,,,0.1,0.2,0.35,0.1,0.1,0.1
ihatethemedia.com,unreliable,0.09,1,L,FN,0.1,,20.1,2006-02-23T00:29:08Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
ihavethetruth.com,mixed,0.18,1,,,,,16.6,2009-07-23T14:58:51Z,,,0.2,0.2,0.2,0.2,0.2,0.2
ihealthtube.com,unreliable,0.09,1,L,CP,0.1,,18.9,2007-05-07T13:45:55Z,,,0.1,0.1,0.1,0.1,0.1,0.1
iheartintelligence.com,unreliable,0.118,1,M,CP,0.2,595541,11.7,2014-06-29T10:47:18Z,,,0.1,0.2,0.35,0.1,0.1,0.1
ihr.org,unreliable,0.122,2,VL,FN,0.0,275958,28.0,1998-03-13T05:00:00.694Z,,,0.15,0.0,0.35,0.15,0.15,0.15
ihypocrite.net,unreliable,0.105,1,M,FN,0.2,,10.0,2016-03-16T02:05:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ijr.com,mixed,0.18,1,,,,57496,29.6,1996-08-15T04:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
illegalaliencrimereport.com,unreliable,0.105,1,M,FN,0.2,,11.3,2014-11-15T04:14:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
illicitinfo.com,unreliable,0.09,1,L,FN,0.1,,7.5,2018-09-09T14:49:07Z,,,0.1,0.1,0.1,0.1,0.1,0.1
illinoisvalleytimes.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-01-22T15:19:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
illuminati-news.com,conspiracy,0.103,2,L,CP,0.1,393956,25.4,2000-10-21T01:11:25Z,,,0.1,0.1,0.35,0.1,0.1,0.1
illuminatiwatcher.com,unreliable,0.09,1,L,CP,0.1,,14.1,2012-02-16T02:18:04Z,,,0.1,0.1,0.1,0.1,0.1,0.1
ilovemyfreedom.org,mixed,0.15,2,VL,FN,0.0,,10.6,2015-08-04T02:13:38.933Z,,,0.2,0.0,0.2,0.2,0.2,0.2
ilprimatonazionale.it,unreliable,0.118,1,M,FN,0.2,418837,,,,,0.1,0.2,0.35,0.1,0.1,0.1
immediatesafety.org,fake,0.045,1,,,,,10.4,2015-10-05T17:18:07.355Z,,,0.05,0.05,0.05,0.05,0.05,0.05
imperialcanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
in5d.com,unreliable,0.188,1,,,,348946,16.9,2009-04-18,0,,0.2,0.2,0.35,0.2,0.2,0.2
independentminute.com,unreliable,0.09,1,L,FN,0.1,,8.7,2017-07-03T23:27:29Z,,,0.1,0.1,0.1,0.1,0.1,0.1
independentsciencenews.org,unreliable,0.118,1,M,CP,0.2,505387,15.0,2011-03-21T18:05:29.569Z,,,0.1,0.2,0.35,0.1,0.1,0.1
independentsentinel.com,unreliable,0.118,1,M,FN,0.2,218813,15.0,2011-03-17T18:06:26Z,,,0.1,0.2,0.35,0.1,0.1,0.1
indiaarising.com,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
indystandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
infiniteunknown.net,conspiracy,0.088,2,VL,CP,0.0,427265,18.0,2008-03-02T22:52:14Z,,,0.1,0.0,0.35,0.1,0.1,0.1
infogalactic.com,unreliable,0.095,1,L,FN,0.1,68496,10.1,2016-01-27T13:05:31Z,,,0.1,0.1,0.2,0.1,0.1,0.1
informationclearinghouse.info,conspiracy,0.11,2,M,CP,0.2,61647,23.1,2003-02-05T21:18:49Z,,,0.1,0.2,0.2,0.1,0.1,0.1
informationliberation.com,unreliable,0.103,1,L,FN,0.1,175436,21.4,2004-11-08T21:05:47Z,,,0.1,0.1,0.35,0.1,0.1,0.1
informer.rs,unreliable,0.105,1,M,FN,0.2,8632,,,,,0.1,0.2,0.1,0.1,0.1,0.1
informetoday.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
inforos.ru,unreliable,0.095,1,L,FN,0.1,69952,,,,,0.1,0.1,0.2,0.1,0.1,0.1
infoscum.com,unreliable,0.105,1,M,FN,0.2,,8.7,2017-07-01T17:52:01Z,,,0.1,0.2,0.1,0.1,0.1,0.1
infostormer.com,fake,0.045,1,,,,,11.6,2014-08-24T00:15:55Z,,,0.05,0.05,0.05,0.05,0.05,0.05
infowars.com,conspiracy,0.073,2,VL,CP,0.0,15265,27.0,1999-03-07T05:00:00Z,8,,0.1,0.0,0.2,0.1,0.05,0.1
ingredients.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-12T23:44:09.98Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
insidethemagic.net,unreliable,0.11,1,M,FN,0.2,32454,16.2,2010-01-01T17:26:59Z,,,0.1,0.2,0.2,0.1,0.1,0.1
instapundit.com,unreliable,0.11,1,M,FN,0.2,42769,24.8,2001-05-23T18:55:34Z,,,0.1,0.2,0.2,0.1,0.1,0.1
instaworldnews.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
insuranceratereporter.com,unreliable,0.105,1,M,FN,0.2,,6.0,2020-03-20T16:45:02Z,,,0.1,0.2,0.1,0.1,0.1,0.1
intellihub.com,conspiracy,0.103,2,L,CP,0.1,457760,24.4,2001-11-04T19:10:28Z,,,0.1,0.1,0.35,0.1,0.1,0.1
interestingdailynews.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
interioralaskanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
internationalman.com,unreliable,0.118,1,M,FN,0.2,289483,25.1,2001-02-22T12:44:56Z,,,0.1,0.2,0.35,0.1,0.1,0.1
intrendtoday.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
intrepidreport.com,mixed,0.18,1,,,,,15.1,2011-01-25T00:47:32Z,,,0.2,0.2,0.2,0.2,0.2,0.2
investmentresearchdynamics.com,conspiracy,0.09,1,,,,,12.4,2013-10-25T16:27:34Z,,,0.1,0.1,0.1,0.1,0.1,0.1
investmentwatchblog.com,mixed,0.188,2,M,CP,0.2,152331,16.1,2010-02-07T05:17:30Z,,,0.2,0.2,0.35,0.2,0.2,0.2
iowacitytoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
iowaclimate.org,unreliable,0.09,1,L,CP,0.1,,9.3,2016-12-02T13:24:39.458Z,,,0.1,0.1,0.1,0.1,0.1,0.1
ipatriot.com,unreliable,0.105,1,M,FN,0.2,,22.0,2004-03-06T19:31:57Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ironictimes.com,satire,0.27,1,,,,,25.8,2000-05-25T22:14:07Z,,,0.3,0.3,0.3,0.3,0.3,0.3
isgp-studies.com,unreliable,0.09,1,L,FN,0.1,,9.6,2016-08-03T22:57:23Z,,,0.1,0.1,0.1,0.1,0.1,0.1
islamicanews.com,satire,0.27,1,,,,,16.8,2009-06-11T08:23:25Z,,,0.3,0.3,0.3,0.3,0.3,0.3
israel365news.com,unreliable,0.118,1,M,CP,0.2,243809,5.8,2020-06-10T22:55:40Z,,,0.1,0.2,0.35,0.1,0.1,0.1
israelislamandendtimes.com,unreliable,0.09,1,L,CP,0.1,,12.4,2013-11-03T04:02:25Z,,,0.1,0.1,0.1,0.1,0.1,0.1
israelwarroom.com,unreliable,0.105,1,M,FN,0.2,,5.7,2020-07-22T01:21:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
it.sputniknews.com,unreliable,0.075,1,VL,FN,0.0,,14.4,2011-10-24T00:15:14Z,,,0.1,0.0,0.1,0.1,0.1,0.1
itaglive.com,fake,0.045,1,,,,,18.3,2007-12-09T23:57:37Z,,,0.05,0.05,0.05,0.05,0.05,0.05
itccs.org,conspiracy,0.095,1,,,,,0.9,2025-04-13T15:15:11.605Z,0,,0.1,0.1,0.1,0.2,0.1,0.1
itemfix.com,unreliable,0.11,1,M,FN,0.2,17229,5.3,2020-11-16T19:38:20Z,,,0.1,0.2,0.2,0.1,0.1,0.1
itmakessenseblog.com,fake,0.045,1,,,,,15.8,2010-06-10T16:54:10Z,,,0.05,0.05,0.05,0.05,0.05,0.05
ivmmeta.com,unreliable,0.118,1,M,FN,0.2,869298,5.3,2020-11-24T03:24:55Z,,,0.1,0.2,0.35,0.1,0.1,0.1
iwanttoexplore.com,fake,0.053,1,,,,,0.3,2025-12-15T11:22:10Z,,,0.05,0.05,0.05,0.2,0.05,0.05
iz.ru,unreliable,0.105,1,M,FN,0.2,2896,,,,,0.1,0.2,0.1,0.1,0.1,0.1
jackpineradicals.com,mixed,0.18,1,,,,,10.6,2015-08-26T02:23:45Z,,,0.2,0.2,0.2,0.2,0.2,0.2
jacksonpurchasenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:34Z,,,0.1,0.2,0.1,0.1,0.1,0.1
jacobinmag.com,mixed,0.18,1,,,,28393,15.7,2010-07-18T08:03:13Z,,,0.2,0.2,0.2,0.2,0.2,0.2
jamesrgrangerjr.com,mixed,0.18,1,,,,,17.4,2008-10-13T00:42:36Z,,,0.2,0.2,0.2,0.2,0.2,0.2
jbs.org,unreliable,0.103,1,L,FN,0.1,294764,29.8,1996-06-12T04:00:00.446Z,,,0.1,0.1,0.35,0.1,0.1,0.1
jedanews.com,unreliable,0.09,1,L,CP,0.1,,6.4,2019-10-16T08:14:52Z,,,0.1,0.1,0.1,0.1,0.1,0.1
jeffcitynews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
jeffcotimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
jeffersonreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:34Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
jesus-is-savior.com,conspiracy,0.088,2,VL,CP,0.0,161631,23.9,2002-05-10T06:16:07Z,,,0.1,0.0,0.35,0.1,0.1,0.1
jesusdaily.com,unreliable,0.09,1,L,CP,0.1,,25.1,2001-01-25T15:08:24Z,,,0.1,0.1,0.1,0.1,0.1,0.1
jewsnews.co.il,unreliable,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
jihadwatch.org,conspiracy,0.095,1,,,,71126,22.5,2003-09-23T13:15:31Z,,,0.1,0.1,0.2,0.1,0.1,0.1
jocotoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
joebiden.news,unreliable,0.165,1,VL,CP,0.0,,8.3,2017-11-25T17:57:23.003Z,2,,0.1,0.0,0.1,0.1,0.7,0.1
joeforamerica.com,unreliable,0.09,1,L,FN,0.1,,13.3,2012-11-14T20:48:48Z,,,0.1,0.1,0.1,0.1,0.1,0.1
joerogan.com,unreliable,0.118,1,M,FN,0.2,705484,27.5,1998-09-01T04:00:00Z,,,0.1,0.2,0.35,0.1,0.1,0.1
johnnyrobish.com,satire,0.27,1,,,,,20.5,2005-09-04T07:56:06Z,,,0.3,0.3,0.3,0.3,0.3,0.3
johnstonreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
jonesborotimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
jonesreport.com,conspiracy,0.09,1,,,,,25.2,2001-01-15T22:32:04Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
journal-neo.org,mixed,0.173,2,L,FN,0.1,198536,,,,,0.2,0.1,0.35,0.2,0.2,0.2
judicialwatch.org,mixed,0.165,2,L,FN,0.1,42115,28.7,1997-07-16T04:00:00.124Z,,,0.2,0.1,0.2,0.2,0.2,0.2
judithcurry.com,unreliable,0.118,1,M,CP,0.2,299839,15.6,2010-08-13T16:59:01Z,,,0.1,0.2,0.35,0.1,0.1,0.1
junkscience.com,unreliable,0.103,1,L,CP,0.1,246622,30.1,1996-02-16T05:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
justonefocus.org,unreliable,0.075,1,VL,CP,0.0,,3.7,2022-07-04T06:45:09.629Z,,,0.1,0.0,0.1,0.1,0.1,0.1
justthefacts.org,unreliable,0.105,1,M,FN,0.2,,27.8,1998-05-11T04:00:00.802Z,,,0.1,0.2,0.1,0.1,0.1,0.1
justthenews.com,unreliable,0.11,1,M,FN,0.2,37262,20.6,2005-07-23T18:38:47Z,,,0.1,0.2,0.2,0.1,0.1,0.1
jw.org,unreliable,0.203,1,L,CP,0.1,1166,27.0,1999-03-06T05:00:00.335Z,1,,0.1,0.1,0.1,0.1,0.85,0.1
kalamazootimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:52Z,,,0.1,0.2,0.1,0.1,0.1,0.1
kanecountyreporter.com,unreliable,0.105,1,M,FN,0.2,,10.0,2016-03-23T08:26:11Z,,,0.1,0.2,0.1,0.1,0.1,0.1
kankakeetimes.com,unreliable,0.105,1,M,FN,0.2,,10.6,2015-08-21T16:18:29Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
katehon.com,mixed,0.173,2,L,FN,0.1,341234,11.2,2014-12-20T10:10:33Z,,,0.2,0.1,0.35,0.2,0.2,0.2
kauaisun.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
kcreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
kendallcountytimes.com,unreliable,0.105,1,M,FN,0.2,,8.7,2017-06-19T21:09:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
kentcountytoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
kentuckianatimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
kerncountytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
keystonenewsroom.com,unreliable,0.105,1,M,FN,0.2,,6.2,2020-01-15T23:12:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
keywestreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
kingscountytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:39Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
kiwifarms.net,unreliable,0.103,1,L,FN,0.1,236681,10.1,2016-02-01T21:58:46Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
kla.tv,unreliable,0.177,1,VL,CP,0.0,144760,12.0,2014-03-12T09:08:01Z,2,,0.1,0.0,0.35,0.1,0.7,0.1
kmt11.com,fake,0.045,1,,,,,9.8,2016-06-13T17:24:54Z,,,0.05,0.05,0.05,0.05,0.05,0.05
knowledgeoftoday.org,conspiracy,0.09,2,L,CP,0.1,,14.3,2011-11-17T22:54:55.451Z,,,0.1,0.1,0.1,0.1,0.1,0.1
kokomostandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
konkonsagh.biz,fake,0.053,1,,,,,0.5,2025-09-21T04:43:36Z,,,0.05,0.05,0.05,0.2,0.05,0.05
kp.ru,unreliable,0.105,1,M,FN,0.2,3553,,,,,0.1,0.2,0.1,0.1,0.1,0.1
krbcnews.com,fake,0.045,1,,,,,9.9,2016-04-09T05:10:04Z,,,0.05,0.05,0.05,0.05,0.05,0.05
kremlin.ru,unreliable,0.105,1,M,FN,0.2,5449,,,,,0.1,0.2,0.1,0.1,0.1,0.1
kunstler.com,unreliable,0.118,1,L,,0.2,187126,28.8,1997-05-21T04:00:00Z,,,0.1,0.2,0.35,0.1,0.1,0.1
ky12news.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
lacrosseleader.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-15T19:23:30.621Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ladylibertynews.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
lafayettereporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lafayettetimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
laharbornews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lakecountygazette.com,unreliable,0.105,1,M,FN,0.2,,10.6,2015-08-21T16:18:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lakecountytimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lakeregionnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
laketahoesun.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:36Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lancastercourier.com,unreliable,0.11,1,M,FN,0.2,,1.2,2024-12-16T19:30:35Z,,,0.1,0.2,0.1,0.2,0.1,0.1
landoverbaptist.org,satire,0.273,1,,,,379016,27.1,1999-02-07T05:00:00Z,,,0.3,0.3,0.35,0.3,0.3,0.3
laneconews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:34Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lansingsun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
larimernews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
larouchepac.com,unreliable,0.103,1,L,CP,0.1,406669,21.7,2004-06-24T01:37:45Z,,,0.1,0.1,0.35,0.1,0.1,0.1
lastdeplorables.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
lastfrontiernews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lasvegascitywire.com,unreliable,0.105,1,M,FN,0.2,,5.3,2020-12-07T03:17:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
latitudes.org,unreliable,0.118,1,M,CP,0.2,468541,28.9,1997-04-17T04:00:00.948Z,,,0.1,0.2,0.35,0.1,0.1,0.1
laverita.info,unreliable,0.11,1,M,FN,0.2,76632,9.7,2016-07-21T19:20:50.857Z,,,0.1,0.2,0.2,0.1,0.1,0.1
lawrencereporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
laxleader.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lc.org,unreliable,0.103,1,L,FN,0.1,243537,29.9,1996-05-03T04:00:00.928Z,,,0.1,0.1,0.35,0.1,0.1,0.1
learnprogress.org,fake,0.045,1,,,,,9.3,2016-11-11T22:33:45.25Z,,,0.05,0.05,0.05,0.05,0.05,0.05
learntherisk.org,unreliable,0.075,1,VL,CP,0.0,,10.4,2015-10-20T21:59:23.069Z,,,0.1,0.0,0.1,0.1,0.1,0.1
leftaction.com,unreliable,0.09,1,L,FN,0.1,,15.7,2010-07-06T18:44:12Z,,,0.1,0.1,0.1,0.1,0.1,0.1
leftcult.com,unreliable,0.075,1,VL,CP,0.0,,8.3,2017-11-25T17:55:34Z,,,0.1,0.0,0.1,0.1,0.1,0.1
leftexposed.org,unreliable,0.09,1,L,FN,0.1,,11.3,2014-12-05T17:57:54.067Z,,,0.1,0.1,0.1,0.1,0.1,0.1
legalnewsline.com,unreliable,0.118,1,M,FN,0.2,180282,19.5,2006-09-18T21:00:39Z,,,0.1,0.2,0.35,0.1,0.1,0.1
legitgov.org,unreliable,0.118,1,M,CP,0.2,890237,25.2,2000-12-31T02:16:39.832Z,,,0.1,0.2,0.35,0.1,0.1,0.1
lehighnews.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:18.452Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lenta.ru,unreliable,0.105,1,M,FN,0.2,2993,,,,,0.1,0.2,0.1,0.1,0.1,0.1
lesmoutonsrebelles.com,unreliable,0.075,1,VL,CP,0.0,,10.0,2016-03-02T11:36:08Z,,,0.1,0.0,0.1,0.1,0.1,0.1
lewistontimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lewrockwell.com,mixed,0.165,2,L,FN,0.1,30627,27.1,1999-01-28T05:00:00Z,,,0.2,0.1,0.2,0.2,0.2,0.2
liberalamerica.org,unreliable,0.18,1,,,,,13.0,2013-03-24T07:35:08.705Z,,,0.2,0.2,0.2,0.2,0.2,0.2
liberalbias.com,satire,0.27,1,,,,,22.8,2003-06-11T18:41:10Z,,,0.3,0.3,0.3,0.3,0.3,0.3
liberaldarkness.com,satire,0.27,1,,,,,10.9,2015-05-09T23:25:05Z,,,0.3,0.3,0.3,0.3,0.3,0.3
liberalplug.com,fake,0.053,1,,,,,1.7,2024-07-10T03:23:16Z,,,0.05,0.05,0.05,0.2,0.05,0.05
liberty.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-12T17:00:00.107Z,,,0.1,0.0,0.1,0.1,0.1,0.1
libertyalliance.com,fake,0.045,1,,,,,27.3,1998-11-27T05:00:00Z,,,0.05,0.05,0.05,0.05,0.05,0.05
libertybell.com,unreliable,0.09,1,L,FN,0.1,,22.8,2003-06-07T18:10:31Z,,,0.1,0.1,0.1,0.1,0.1,0.1
libertyblitzkrieg.com,fake,0.06,1,,,,679953,14.0,2012-03-03T21:43:01Z,,,0.05,0.05,0.35,0.05,0.05,0.05
libertyfederation.com,unreliable,0.135,1,,,,,14.1,2012-02-16T22:47:51Z,0,,0.15,0.15,0.15,0.15,0.15,0.15
libertyhangout.org,unreliable,0.09,1,L,FN,0.1,,10.8,2015-05-18T20:48:12.313Z,,,0.1,0.1,0.1,0.1,0.1,0.1
libertymovementradio.com,conspiracy,0.09,1,,,,,13.4,2012-10-20T12:04:32Z,,,0.1,0.1,0.1,0.1,0.1,0.1
libertynews.com,unreliable,0.09,2,L,FN,0.1,,23.4,2002-10-27T06:29:02Z,,,0.1,0.1,0.1,0.1,0.1,0.1
libertyplanets.com,unreliable,0.075,1,VL,CP,0.0,,6.1,2020-02-18T17:45:18Z,,,0.1,0.0,0.1,0.1,0.1,0.1
libertytalk.fm,conspiracy,0.105,2,M,FN,0.2,,11.5,2014-09-09T23:59:59.0Z,,,0.1,0.2,0.1,0.1,0.1,0.1
libertyunyielding.com,mixed,0.188,1,,,,922312,13.3,2012-11-11T20:28:10Z,,,0.2,0.2,0.35,0.2,0.2,0.2
libertyvideos.org,conspiracy,0.09,2,L,CP,0.1,,19.7,2006-06-30T22:17:01Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
libertywire.net,unreliable,0.08,1,VL,FN,0.0,,1.7,2024-07-03T18:03:28Z,,,0.1,0.0,0.1,0.2,0.1,0.1
libertywritersnews.com,unreliable,0.18,1,,,,,9.8,2016-06-01T03:29:06Z,,,0.2,0.2,0.2,0.2,0.2,0.2
libtards.news,unreliable,0.075,1,VL,CP,0.0,,10.3,2015-12-14T00:07:39.053Z,,,0.1,0.0,0.1,0.1,0.1,0.1
lickingtoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lifeadvancer.com,unreliable,0.118,1,M,CP,0.2,903893,11.8,2014-06-11T16:37:50Z,,,0.1,0.2,0.35,0.1,0.1,0.1
lifeandabout.com,mixed,0.18,1,,,,,10.6,2015-07-28T17:04:31Z,,,0.2,0.2,0.2,0.2,0.2,0.2
lifenews.com,mixed,0.165,2,L,FN,0.1,58328,24.4,2001-10-21T20:17:21Z,,,0.2,0.1,0.2,0.2,0.2,0.2
lifeprevention.com,unreliable,0.18,1,,,,,7.8,2018-05-31T18:59:43Z,,,0.2,0.2,0.2,0.2,0.2,0.2
lifesitenews.com,unreliable,0.165,2,L,FN,0.1,24239,23.5,2002-09-21T19:34:22Z,,,0.2,0.1,0.2,0.2,0.2,0.2
lifespa.com,unreliable,0.103,1,L,CP,0.1,548911,28.7,1997-07-14T04:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
lifezette.com,unreliable,0.188,1,,,,151554,11.4,2014-10-15T20:33:25Z,,,0.2,0.2,0.35,0.2,0.2,0.2
limareporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lindelltv.com,unreliable,0.088,1,VL,FN,0.0,329009,7.2,2019-01-14T22:05:23Z,0,,0.1,0.0,0.35,0.1,0.1,0.1
litchfieldhillstoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
littleappletimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
littlethings.com,unreliable,0.11,1,M,CP,0.2,65221,24.4,2001-10-29T18:57:27Z,,,0.1,0.2,0.2,0.1,0.1,0.1
liveaction.org,unreliable,0.118,1,M,CP,0.2,112255,24.8,2001-06-11T11:05:50.589Z,,,0.1,0.2,0.35,0.1,0.1,0.1
liveactionnews.org,mixed,0.18,1,,,,,14.1,2012-01-30T21:00:52.07Z,,,0.2,0.2,0.2,0.2,0.2,0.2
liveleak.com,unreliable,0.11,1,M,FN,0.2,12049,19.4,2006-10-10T11:02:10Z,,,0.1,0.2,0.2,0.1,0.1,0.1
livestrong.com,unreliable,0.105,1,M,CP,0.2,8755,23.7,2002-07-12T17:00:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
livevote.com,unreliable,0.18,1,,,,,21.7,2004-06-20T18:41:58Z,,,0.2,0.2,0.2,0.2,0.2,0.2
livingstonetoday.com,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
livingstontoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
livingwhole.org,unreliable,0.105,1,M,CP,0.2,,4.0,2022-03-12T14:30:41.462Z,,,0.1,0.2,0.1,0.1,0.1,0.1
loanpride.com,rumor,0.225,1,,,,,9.7,2016-06-27T15:13:03Z,,,0.25,0.25,0.25,0.25,0.25,0.25
local31news.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
londonreal.tv,unreliable,0.103,1,L,CP,0.1,633890,14.4,2011-10-16T15:42:23Z,,,0.1,0.1,0.35,0.1,0.1,0.1
londonwebnews.com,unreliable,0.09,1,L,FN,0.1,,9.0,2017-03-20T22:42:37Z,,,0.1,0.1,0.1,0.1,0.1,0.1
loonwatch.com,unreliable,0.09,1,L,FN,0.1,,17.0,2009-04-02T03:40:43Z,,,0.1,0.1,0.1,0.1,0.1,0.1
loraintimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
louderwithcrowder.com,unreliable,0.118,1,M,FN,0.2,203913,13.3,2012-12-03T20:15:04Z,,,0.1,0.2,0.35,0.1,0.1,0.1
louisvillecitywire.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lovethispic.com,unreliable,0.188,1,,,,120137,14.4,2011-10-12T18:44:13Z,,,0.2,0.2,0.35,0.2,0.2,0.2
lowedeltanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
lucianne.com,unreliable,0.118,1,M,FN,0.2,200601,27.0,1999-03-17T05:00:00Z,,,0.1,0.2,0.35,0.1,0.1,0.1
lushforlife.com,satire,0.27,1,,,,,20.8,2005-06-03T18:09:56Z,,,0.3,0.3,0.3,0.3,0.3,0.3
mabusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:44:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
macombdigest.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
macombtoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
maconreport.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
maconreporter.com,unreliable,0.105,1,M,FN,0.2,,9.8,2016-06-07T18:39:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
macontimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
macroevolution.net,unreliable,0.09,1,L,CP,0.1,,17.6,2008-08-14T17:33:11Z,,,0.1,0.1,0.1,0.1,0.1,0.1
mad-yet.blogspot.com,unreliable,0.09,1,,,,,25.6,2000-07-31T21:38:58Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
madpatriots.com,unreliable,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
madworldnews.com,unreliable,0.09,2,L,FN,0.1,,12.2,2013-12-25T21:29:24Z,,,0.1,0.1,0.1,0.1,0.1,0.1
magafeed.com,rumor,0.225,1,,,,,9.6,2016-07-31T07:28:13Z,,,0.25,0.25,0.25,0.25,0.25,0.25
maganews.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
magapac.com,unreliable,0.09,1,L,FN,0.1,,7.0,2019-03-11T18:37:26Z,,,0.1,0.1,0.1,0.1,0.1,0.1
magapill.com,unreliable,0.11,1,M,FN,0.2,,0.1,2026-02-23T19:06:58Z,,,0.1,0.2,0.1,0.2,0.1,0.1
magicvalleytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
magnoliastatenews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mainehighlandsnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mainelakesnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mainstreamfakemedia.com,unreliable,0.09,1,L,FN,0.1,,9.1,2017-02-13T19:39:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
majorthoughts.com,fake,0.053,1,,,,,0.1,2026-02-03T19:36:49Z,,,0.05,0.05,0.05,0.2,0.05,0.05
makeamericagreattoday.com,mixed,0.18,1,,,,,7.3,2018-11-15T19:58:12Z,,,0.2,0.2,0.2,0.2,0.2,0.2
manateereview.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
manilabusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.3,2017-11-24T18:13:19Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
mansfieldtimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
marinleader.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
marionmorrowtimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
matsutimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T22:00:07Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
mauireporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mchenrytimes.com,unreliable,0.105,1,M,FN,0.2,,10.6,2015-08-21T16:18:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mcleancountytimes.com,unreliable,0.105,1,M,FN,0.2,,9.8,2016-06-07T18:43:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mdbusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:44:05Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mdstatewire.com,unreliable,0.105,1,M,FN,0.2,,8.0,2018-04-04T21:46:08Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
meanlefthook.com,mixed,0.18,1,,,,,1.0,2025-02-27T19:14:27Z,,,0.2,0.2,0.2,0.2,0.2,0.2
mecklenburgherald.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mediafactwatch.com,unreliable,0.075,1,VL,CP,0.0,,10.8,2015-06-02T23:06:37Z,,,0.1,0.0,0.1,0.1,0.1,0.1
mediamass.net,fake,0.18,1,,,,162816,13.6,2012-08-05T23:48:08Z,1,,0.05,0.05,0.35,0.05,0.85,0.05
mediaroots.org,unreliable,0.105,1,M,CP,0.2,,16.4,2009-10-05T04:41:05.736Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mediazone.news,rumor,0.223,1,,,,,0.4,2025-10-21T15:28:34.709Z,,,0.25,0.25,0.25,0.2,0.25,0.25
medicalcensorship.com,unreliable,0.075,1,VL,CP,0.0,,5.6,2020-08-02T16:24:34Z,,,0.1,0.0,0.1,0.1,0.1,0.1
medicaldaily.com,unreliable,0.11,1,M,CP,0.2,22076,21.3,2004-11-18T19:20:03Z,,,0.1,0.2,0.2,0.1,0.1,0.1
medicalkidnap.com,unreliable,0.088,1,VL,CP,0.0,853810,11.5,2014-10-03T00:15:37Z,,,0.1,0.0,0.35,0.1,0.1,0.1
medicalmedium.com,unreliable,0.103,1,L,CP,0.1,245038,13.6,2012-07-27T18:23:49Z,,,0.1,0.1,0.35,0.1,0.1,0.1
medicine.news,unreliable,0.09,1,L,CP,0.1,,10.7,2015-07-10T17:00:00.003Z,,,0.1,0.1,0.1,0.1,0.1,0.1
medinatoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
medusamagazine.com,unreliable,0.105,1,M,CP,0.2,,8.8,2017-06-08T19:58:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
meforum.org,unreliable,0.095,1,L,FN,0.1,54930,25.8,2000-06-09T20:14:55.332Z,,,0.1,0.1,0.2,0.1,0.1,0.1
megafreshnews.com,rumor,0.225,1,,,,,,,,,0.25,0.25,0.25,0.25,0.25,0.25
megynkelly.us,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
memri.org,unreliable,0.11,1,M,FN,0.2,40825,28.3,1997-11-26T05:00:00.396Z,,,0.1,0.2,0.2,0.1,0.1,0.1
mena.org.eg/en,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
mentor2day.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
mercedtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mercertimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mercola.com,unreliable,0.095,1,L,CP,0.1,14211,28.2,1997-12-30T05:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
merica1st.com,unreliable,0.09,1,L,FN,0.1,,5.2,2020-12-16T23:23:40Z,,,0.1,0.1,0.1,0.1,0.1,0.1
merrimackvalleynews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mesatimes.com,unreliable,0.105,1,M,FN,0.2,,12.9,2013-04-16T22:01:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
metricmedianews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-30T20:01:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
metroeastsun.com,unreliable,0.105,1,M,FN,0.2,,10.6,2015-08-21T16:18:29Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
metrolexnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
metropolitanworlds.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
metrowesttimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mexicobusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,7.8,2018-05-14T21:07:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mexicodailypost.com,unreliable,0.118,1,M,FN,0.2,450636,5.5,2020-09-01T22:23:44Z,,,0.1,0.2,0.35,0.1,0.1,0.1
mgtow.tv,unreliable,0.103,1,L,FN,0.1,471432,6.8,2019-06-15T07:28:25Z,,,0.1,0.1,0.35,0.1,0.1,0.1
miamicourant.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
miamistandard.news,unreliable,0.105,1,M,FN,0.2,,2.6,2023-08-09T15:15:44.743Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mibusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:44:05Z,,,0.1,0.2,0.1,0.1,0.1,0.1
micapitolnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
micatholictribune.com,unreliable,0.105,1,M,FN,0.2,,6.0,2020-03-30T17:39:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
micdroppolitics.com,unreliable,0.09,1,L,FN,0.1,,6.1,2020-02-18T17:45:21Z,,,0.1,0.1,0.1,0.1,0.1,0.1
michaelsalla.com,unreliable,0.09,1,L,CP,0.1,,9.0,2017-03-03T16:23:27Z,,,0.1,0.1,0.1,0.1,0.1,0.1
michiganindependent.com,unreliable,0.105,1,M,FN,0.2,,12.6,2013-08-26T18:25:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
michoacanpost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:51:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
midcoasttimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
midcoasttoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
midmassnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
midmichiganstd.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
midvalleyreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
milehighsentinel.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-08-12T12:20:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
militarywatchmagazine.com,unreliable,0.11,1,M,FN,0.2,50524,8.1,2018-02-08T12:25:07Z,,,0.1,0.2,0.2,0.1,0.1,0.1
militianews.com,conspiracy,0.095,1,,,,,0.6,2025-07-24T18:03:25Z,,,0.1,0.1,0.1,0.2,0.1,0.1
milwaukeemetrotimes.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-15T19:23:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mindbodygreen.com,unreliable,0.11,1,M,CP,0.2,10702,18.7,2007-06-28T16:09:45Z,,,0.1,0.2,0.2,0.1,0.1,0.1
mindmatters.ai,unreliable,0.103,1,L,CP,0.1,229361,7.4,2018-10-15T18:56:19Z,,,0.1,0.1,0.35,0.1,0.1,0.1
minneapolisreview.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
minnesotastatewire.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mintpressnews.com,mixed,0.165,2,L,FN,0.1,46518,14.1,2012-02-06T16:48:32Z,,,0.2,0.1,0.2,0.2,0.2,0.2
mixi.media,unreliable,0.095,1,L,FN,0.1,38508,7.9,2018-04-12T15:15:46.23Z,,,0.1,0.1,0.2,0.1,0.1,0.1
mnbusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:44:11Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mncatholictribune.com,unreliable,0.105,1,M,FN,0.2,,6.0,2020-03-30T17:39:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mobilecourant.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mobusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
modernalternativemama.com,unreliable,0.105,1,M,CP,0.2,,16.1,2010-02-05T22:39:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mohavetoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:24Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
mohawkvalleytimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:33Z,,,0.1,0.2,0.1,0.1,0.1,0.1
molonlabemedia.com,mixed,0.18,1,,,,,10.3,2015-11-21T20:36:51Z,,,0.2,0.2,0.2,0.2,0.2,0.2
momsforliberty.org,unreliable,0.118,1,M,FN,0.2,546936,5.3,2020-11-11T14:31:09.486Z,,,0.1,0.2,0.35,0.1,0.1,0.1
mondoweiss.net,unreliable,0.11,1,M,FN,0.2,40812,17.1,2009-02-10T19:57:26Z,,,0.1,0.2,0.2,0.1,0.1,0.1
monmouthtimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:12Z,,,0.1,0.2,0.1,0.1,0.1,0.1
monroenynews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
monroereview.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
montereytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
monterreydailypost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:45:55Z,,,0.1,0.2,0.1,0.1,0.1,0.1
montgomerymdnews.com,unreliable,0.105,1,M,FN,0.2,,8.0,2018-04-04T21:46:08Z,,,0.1,0.2,0.1,0.1,0.1,0.1
moonbattery.com,unreliable,0.103,1,L,FN,0.1,516594,21.2,2004-12-24T06:03:12Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
moonofalabama.org,mixed,0.173,2,L,FN,0.1,127219,21.7,2004-07-01T09:20:48Z,,,0.2,0.1,0.35,0.2,0.2,0.2
morelosdailypost.com,unreliable,0.105,1,M,FN,0.2,,5.3,2020-12-08T21:52:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
morningledger.com,unreliable,0.09,1,,,,,13.0,2013-03-02T19:55:40Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
morningnewsusa.com,unreliable,0.09,1,,,,,12.6,2013-08-22T02:59:53Z,,,0.1,0.1,0.1,0.1,0.1,0.1
morningpoll.com,unreliable,0.09,1,L,FN,0.1,,6.3,2019-11-26T09:39:05Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
morrisleader.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mpidailymagazine.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
mrc.org,mixed,0.188,1,,,,146442,28.7,1997-06-21T04:00:00.422Z,,,0.2,0.2,0.35,0.2,0.2,0.2
mrconservative.com,fake,0.045,1,,,,,22.2,2004-01-20T19:07:11Z,,,0.05,0.05,0.05,0.05,0.05,0.05
mrctv.org/cnsnews,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
msbusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:44:11Z,,,0.1,0.2,0.1,0.1,0.1,0.1
msgulfnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
msmlies.com,unreliable,0.105,1,M,FN,0.2,,9.1,2017-02-24T17:09:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
msnbc.website,fake,0.053,1,,,,,1.0,2025-03-13T06:25:56.0Z,,,0.05,0.05,0.05,0.2,0.05,0.05
mtbusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
mtonews.com,unreliable,0.103,1,L,FN,0.1,640306,11.7,2014-06-27T20:16:53Z,,,0.1,0.1,0.35,0.1,0.1,0.1
munciereporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
muricatoday.com,unreliable,0.105,1,M,CP,0.2,,4.5,2021-08-30T18:12:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
muskegonsun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
muslimskeptic.com,unreliable,0.09,1,L,FN,0.1,,9.7,2016-07-02T21:43:28Z,,,0.1,0.1,0.1,0.1,0.1,0.1
mutembeitv.com,unreliable,0.105,1,M,FN,0.2,,4.3,2021-12-05T13:34:06Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
myfreshnews.com,fake,0.045,1,,,,,6.0,2020-03-16T18:24:19Z,,,0.05,0.05,0.05,0.05,0.05,0.05
mynewsguru.com,unreliable,0.09,1,L,FN,0.1,,2.3,2023-11-25T10:01:37Z,,,0.1,0.1,0.1,0.1,0.1,0.1
myrightamerica.com,unreliable,0.09,1,L,FN,0.1,,9.4,2016-11-03T17:44:28Z,,,0.1,0.1,0.1,0.1,0.1,0.1
myzonetoday.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
nahadaily.com,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
nakedcapitalism.com,mixed,0.18,1,,,,43674,21.2,2005-01-01T04:00:45Z,,,0.2,0.2,0.2,0.2,0.2,0.2
nantahalanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
naplesstandard.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nasamoonhoax.com,conspiracy,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
nassaustandard.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
natall.com,unreliable,0.075,1,VL,FN,0.0,,30.3,1995-12-14T05:00:00Z,,,0.1,0.0,0.1,0.1,0.1,0.1
nationaleconomicseditorial.com,unreliable,0.09,1,L,FN,0.1,,9.3,2016-11-27T00:05:09Z,,,0.1,0.1,0.1,0.1,0.1,0.1
nationalenquirer.com,unreliable,0.095,1,L,FN,0.1,80527,29.9,1996-04-14T04:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
nationalfile.com,unreliable,0.147,1,L,CP,0.1,152852,6.7,2019-07-16T22:37:27Z,4,,0.1,0.1,0.35,0.1,0.4,0.1
nationalinsiders.com,unreliable,0.09,1,L,FN,0.1,,13.4,2012-10-18T06:59:07Z,,,0.1,0.1,0.1,0.1,0.1,0.1
nationalreport.net,satire,0.273,1,,,,713966,13.1,2013-02-23T04:42:09Z,,,0.3,0.3,0.35,0.3,0.3,0.3
nationalreview.com,mixed,0.175,1,,,,7486,30.7,1995-07-18T04:00:00Z,,,0.2,0.2,0.1,0.2,0.2,0.2
nationalrighttolifenews.org,unreliable,0.09,1,L,FN,0.1,,16.0,2010-03-04T19:15:39.754Z,,,0.1,0.1,0.1,0.1,0.1,0.1
nationalsecurity.news,unreliable,0.075,1,VL,CP,0.0,,10.6,2015-08-10T15:01:19.34Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
nationalufocenter.com,conspiracy,0.09,1,,,,,23.6,2002-08-06T21:09:28Z,,,0.1,0.1,0.1,0.1,0.1,0.1
nationalvanguard.org,unreliable,0.122,2,VL,FN,0.0,344778,22.6,2003-07-28T03:26:32.554Z,,,0.15,0.0,0.35,0.15,0.15,0.15
nationalzero.com,unreliable,0.118,1,M,FN,0.2,556826,5.7,2020-06-24T16:01:53Z,,,0.1,0.2,0.35,0.1,0.1,0.1
nationandstate.com,unreliable,0.095,1,L,FN,0.1,,0.5,2025-09-07T18:37:39Z,,,0.1,0.1,0.1,0.2,0.1,0.1
nationindistress.weebly.com,conspiracy,0.09,1,,,,,20.0,2006-03-29T00:25:07Z,,,0.1,0.1,0.1,0.1,0.1,0.1
nationonenews.com,fake,0.045,1,,,,,5.0,2021-03-06T19:16:47Z,,,0.05,0.05,0.05,0.05,0.05,0.05
naturalblaze.com,unreliable,0.188,2,M,CP,0.2,557545,13.0,2013-03-19T03:27:47Z,,,0.2,0.2,0.35,0.2,0.2,0.2
naturalcures.com,unreliable,0.105,1,M,CP,0.2,,23.2,2003-01-08T06:56:11Z,,,0.1,0.2,0.1,0.1,0.1,0.1
naturalhealth365.com,unreliable,0.103,1,L,CP,0.1,349099,15.4,2010-11-01T21:03:44Z,,,0.1,0.1,0.35,0.1,0.1,0.1
naturalhealthresponse.com,unreliable,0.105,1,M,CP,0.2,,9.4,2016-11-03T21:30:54Z,,,0.1,0.2,0.1,0.1,0.1,0.1
naturallysavvy.com,unreliable,0.118,1,M,CP,0.2,859146,18.9,2007-05-11T11:46:34Z,,,0.1,0.2,0.35,0.1,0.1,0.1
naturalmedicine.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:13.12Z,,,0.1,0.0,0.1,0.1,0.1,0.1
naturalnews.com,unreliable,0.248,2,VL,CP,0.0,14309,21.1,2005-02-19T19:06:39Z,1,,0.2,0.0,0.2,0.2,0.85,0.2
naturalnewsblogs.com,unreliable,0.15,2,VL,CP,0.0,,9.0,2017-03-10T17:20:03Z,,,0.2,0.0,0.2,0.2,0.2,0.2
naturalnewsradio.com,unreliable,0.075,1,VL,CP,0.0,,18.1,2008-02-12T17:29:42Z,,,0.1,0.0,0.1,0.1,0.1,0.1
naturalpedia.com,unreliable,0.075,1,VL,CP,0.0,,19.4,2006-10-22T22:45:24Z,,,0.1,0.0,0.1,0.1,0.1,0.1
naturalsociety.com,unreliable,0.118,1,M,CP,0.2,144611,15.6,2010-08-22T18:18:13Z,,,0.1,0.2,0.35,0.1,0.1,0.1
naturalstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
naturecoasttimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
naugatucktimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
navarroreport.com,unreliable,0.09,1,L,FN,0.1,,5.2,2020-12-18T14:49:24Z,,,0.1,0.1,0.1,0.1,0.1,0.1
nbc.com.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
ncarkansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ncfloridanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ncgeorgianews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ncindiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nckansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
nckentuckynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ncmassnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ncminnesotanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ncmissnews.com,unreliable,0.135,1,H,FN,0.4,,6.4,2019-10-15T14:55:10Z,,,0.1,0.4,0.1,0.1,0.1,0.1
ncncnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ncoklahomanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ncscooper.com,satire,0.27,1,,,,,8.1,2018-02-26T19:49:20Z,,,0.3,0.3,0.3,0.3,0.3,0.3
ncunionnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ndnorthnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nealabamanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
neatlantanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nebergennews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nebraskabusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
necalinews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
necoloradonews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
neconnnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
needtoknow.news,unreliable,0.103,1,L,CP,0.1,375071,10.7,2015-07-12T17:00:00.443Z,,,0.1,0.1,0.35,0.1,0.1,0.1
nefloridanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:33Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nefranklinnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:22Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
neindiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
neiowanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nekansascitynews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nekansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nekentuckynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nelouisiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nemissnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nemissourinews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nemontananews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:56Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nenebraskanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nenewmexiconews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nenewyorktoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nenorthdakotanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
neohiotimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
neoklahomanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
neonnettle.com,conspiracy,0.103,2,L,CP,0.1,425556,12.6,2013-08-16T09:28:28Z,,,0.1,0.1,0.35,0.1,0.1,0.1
nepanhandlenews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nephef.com,fake,0.045,1,,,,,7.3,2018-11-11T19:26:42Z,,,0.05,0.05,0.05,0.05,0.05,0.05
nepiedmontnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:44Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
nesacramentonews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
neuronation.com,unreliable,0.118,1,M,CP,0.2,138226,17.4,2008-10-19T19:21:01Z,,,0.1,0.2,0.35,0.1,0.1,0.1
nevalleytimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
nevo.news,unreliable,0.095,1,,,,,0.3,2025-11-21T13:08:23.577Z,,,0.1,0.1,0.1,0.2,0.1,0.1
new.finalcall.com,unreliable,0.105,1,M,CP,0.2,,28.9,1997-05-07T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newamericannews.com,unreliable,0.09,1,L,CP,0.1,,9.4,2016-10-13T16:36:14Z,,,0.1,0.1,0.1,0.1,0.1,0.1
newarkreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newcenturytimes.com,unreliable,0.09,1,,,,,10.1,2016-02-21T00:15:13Z,,,0.1,0.1,0.1,0.1,0.1,0.1
newcoldwar.org,mixed,0.18,1,,,,,11.6,2014-08-19T17:44:40.078Z,,,0.2,0.2,0.2,0.2,0.2,0.2
newdiscourses.com,unreliable,0.103,1,L,FN,0.1,432246,6.7,2019-07-03T17:44:34Z,,,0.1,0.1,0.35,0.1,0.1,0.1
newmexicosun.com,unreliable,0.105,1,M,FN,0.2,,20.2,2005-12-21T11:48:56Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newnation.org,unreliable,0.075,1,VL,FN,0.0,,27.4,1998-10-12T04:00:00.744Z,,,0.1,0.0,0.1,0.1,0.1,0.1
newnationalist.net,unreliable,0.075,1,VL,CP,0.0,,9.8,2016-05-25T19:12:52Z,,,0.1,0.0,0.1,0.1,0.1,0.1
newpoliticstoday.com,fake,0.053,1,,,,,1.4,2024-10-06T18:31:28Z,,,0.05,0.05,0.05,0.2,0.05,0.05
news.cn,unreliable,0.105,1,M,FN,0.2,2946,,,,,0.1,0.2,0.1,0.1,0.1,0.1
news18.com,unreliable,0.105,1,M,FN,0.2,3833,26.9,1999-04-07T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
news4ktla.com,fake,0.045,1,,,,,10.1,2016-02-24T16:17:50Z,,,0.05,0.05,0.05,0.05,0.05,0.05
newsaddicts.com,unreliable,0.09,1,L,FN,0.1,,2.8,2023-05-21T09:33:49Z,,,0.1,0.1,0.1,0.1,0.1,0.1
newsammo.com,unreliable,0.105,1,M,FN,0.2,,7.9,2018-05-07T05:10:12Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newsbbc.net,fake,0.053,1,,,,,0.4,2025-10-09T11:42:00Z,,,0.05,0.05,0.05,0.2,0.05,0.05
newsbiscuit.com,satire,0.273,1,,,,943241,19.7,2006-07-11T14:29:27Z,,,0.3,0.3,0.35,0.3,0.3,0.3
newsblaze.com,unreliable,0.118,1,M,FN,0.2,143246,22.6,2003-08-12T14:59:32Z,,,0.1,0.2,0.35,0.1,0.1,0.1
newsbreak.com,unreliable,0.105,1,M,FN,0.2,2174,28.5,1997-09-03T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newsbreakers.org,satire,0.27,1,,,,,21.3,2004-11-09T16:27:45.23Z,,,0.3,0.3,0.3,0.3,0.3,0.3
newsbreakshere.com,fake,0.045,1,,,,,7.5,2018-10-03T18:25:01Z,,,0.05,0.05,0.05,0.05,0.05,0.05
newsbud.com,unreliable,0.105,1,M,CP,0.2,,22.0,2004-03-18T17:32:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newsbysquad.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
newscorpse.com,mixed,0.18,1,,,,,21.7,2004-07-07T00:03:10Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
newsdaily12.com,fake,0.045,1,,,,,5.6,2020-08-21T17:56:42Z,,,0.05,0.05,0.05,0.05,0.05,0.05
newsexaminer.net,fake,0.053,2,L,FN,0.1,,11.3,2014-12-11T17:33:47Z,,,0.05,0.1,0.05,0.05,0.05,0.05
newsfeedhunter.com,unreliable,0.095,1,L,FN,0.1,,1.1,2025-02-02T19:15:13Z,,,0.1,0.1,0.1,0.2,0.1,0.1
newsfrompolitics.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
newsglobal.com,unreliable,0.09,1,L,FN,0.1,,16.9,2009-04-10T18:06:26Z,,,0.1,0.1,0.1,0.1,0.1,0.1
newsheist.com,unreliable,0.09,1,L,FN,0.1,,11.3,2014-11-10T20:50:56Z,,,0.1,0.1,0.1,0.1,0.1,0.1
newshourfirst.com,unreliable,0.09,1,L,FN,0.1,,6.1,2020-01-24T22:35:30Z,,,0.1,0.1,0.1,0.1,0.1,0.1
newsinsideout.com,unreliable,0.09,1,L,CP,0.1,,11.3,2014-11-23T18:34:55Z,,,0.1,0.1,0.1,0.1,0.1,0.1
newsleak.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
newslo.com,fake,0.045,1,,,,,12.8,2013-05-21T15:02:17Z,,,0.05,0.05,0.05,0.05,0.05,0.05
newslogue.com,mixed,0.18,1,,,,,12.0,2014-03-19T01:15:49Z,,,0.2,0.2,0.2,0.2,0.2,0.2
newsmagazine.com,fake,0.045,1,,,,,28.2,1998-01-01T05:00:00Z,,,0.05,0.05,0.05,0.05,0.05,0.05
newsmax.com,unreliable,0.083,2,L,FN,0.1,6271,27.7,1998-07-18T04:00:00Z,7,,0.1,0.1,0.1,0.1,0.05,0.1
newsmutiny.com,satire,0.27,1,,,,,22.4,2003-10-17T17:23:27Z,,,0.3,0.3,0.3,0.3,0.3,0.3
newsninja2012.com,mixed,0.18,1,,,,,4.2,2021-12-28T19:19:38Z,,,0.2,0.2,0.2,0.2,0.2,0.2
newspunch.com,unreliable,0.08,1,VL,FN,0.0,198509,21.4,2004-10-22T23:47:29Z,16,,0.1,0.0,0.35,0.1,0.05,0.1
newspushed.com,unreliable,0.09,1,L,FN,0.1,,6.1,2020-02-14T09:32:09Z,,,0.1,0.1,0.1,0.1,0.1,0.1
newsrael.com,unreliable,0.105,1,M,FN,0.2,,6.6,2019-07-26T19:38:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newsready.com,unreliable,0.105,1,M,FN,0.2,,21.8,2004-05-18T16:31:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newsrescue.com,unreliable,0.118,1,M,FN,0.2,922056,18.9,2007-05-02T14:07:53Z,,,0.1,0.2,0.35,0.1,0.1,0.1
newsrnd.com,unreliable,0.118,1,M,FN,0.2,280100,8.0,2018-03-24T01:42:53Z,,,0.1,0.2,0.35,0.1,0.1,0.1
newssloth.com,unreliable,0.105,1,M,FN,0.2,,5.9,2020-05-07T12:16:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
newstarget.com,conspiracy,0.103,2,L,CP,0.1,114186,29.4,1996-11-02T05:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
newsthump.com,satire,0.273,1,,,,346517,15.5,2010-10-03T10:22:02Z,,,0.3,0.3,0.35,0.3,0.3,0.3
newstoad.net,satire,0.27,1,,,,,13.0,2013-03-14T19:19:35Z,,,0.3,0.3,0.3,0.3,0.3,0.3
newsview.gr,unreliable,0.075,1,VL,FN,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
newswars.com,unreliable,0.103,1,L,FN,0.1,395759,16.5,2009-08-30T03:06:39Z,,,0.1,0.1,0.35,0.1,0.1,0.1
newswatch28.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
newswatch33.com,fake,0.045,1,,,,,5.5,2020-09-04T18:25:56Z,,,0.05,0.05,0.05,0.05,0.05,0.05
newswire-24.com,rumor,0.225,1,,,,,6.9,2019-04-30T18:46:32Z,,,0.25,0.25,0.25,0.25,0.25,0.25
newswithviews.com,fake,0.068,2,L,FN,0.1,140983,24.8,2001-06-04T16:03:56Z,,,0.05,0.1,0.35,0.05,0.05,0.05
newyorker.com/humor,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
newzoh.com,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
nextnewsnetwork.com,unreliable,0.09,1,L,FN,0.1,,13.8,2012-06-07T01:00:35Z,,,0.1,0.1,0.1,0.1,0.1,0.1
nhbusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
niagaraleader.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ninefornews.nl,unreliable,0.103,1,L,FN,0.1,288109,11.8,2014-05-16T12:44:58Z,,,0.1,0.1,0.35,0.1,0.1,0.1
njbusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nmbusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nmws.us,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
nodisinfo.com,conspiracy,0.09,1,,,,,17.1,2009-02-10T18:17:06Z,,,0.1,0.1,0.1,0.1,0.1,0.1
noi.org,unreliable,0.118,1,M,CP,0.2,298702,30.0,1996-03-09T05:00:00Z,,,0.1,0.2,0.35,0.1,0.1,0.1
nolareporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
noleftturn.us,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
nomorefakenews.com,conspiracy,0.088,2,VL,CP,0.0,307488,25.4,2000-10-06T00:30:53Z,,,0.1,0.0,0.35,0.1,0.1,0.1
noqreport.com,unreliable,0.103,1,L,FN,0.1,335133,8.5,2017-09-12T18:12:59Z,,,0.1,0.1,0.35,0.1,0.1,0.1
nordicmonitor.com,unreliable,0.118,1,M,FN,0.2,335920,7.4,2018-11-02T13:08:07Z,,,0.1,0.2,0.35,0.1,0.1,0.1
northalaskanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northbaltimorejournal.com,unreliable,0.105,1,M,FN,0.2,,8.0,2018-04-04T21:46:08Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northbirminghamtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northbluegrassnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northbostonnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northbrowardnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcharlottetoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-18T21:49:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcincynews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcoastcanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcoasttoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcolumbusnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcooknews.com,unreliable,0.105,1,M,FN,0.2,,10.6,2015-08-21T16:18:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcountryleader.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcountryreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northcrane.com,unreliable,0.09,1,,,,,14.3,2011-12-03T06:59:50Z,,,0.1,0.1,0.1,0.1,0.1,0.1
northdaytonnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northdsmnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:56Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northeastherald.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:20.441Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northegyptnews.com,unreliable,0.105,1,M,FN,0.2,,8.3,2017-11-29T16:54:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northernclarkcountyherald.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-08-15T17:08:06Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
northernwitimes.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-07-25T15:35:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northessexnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northfultontoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northguilfordnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northgwinnettnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northhennepinnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northidahotimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:34Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northindynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northinlandnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northiowareporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northiredellnews.com,unreliable,0.12,1,MF,FN,0.3,,6.7,2019-06-30T20:46:35Z,,,0.1,0.3,0.1,0.1,0.1,0.1
northjeffconews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northkentnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northkentuckynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northlaketimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northlittlerocktimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northmecklenburgnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-18T21:40:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northmianews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northmichigannews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northmiddlesextimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northnevadanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northnewcastlenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northoctimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northokcnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northomahatimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northorlandonews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northpalmbeachtoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northpanhandlenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northpimanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northpinellasnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northraleightoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:03Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northramseynews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northsactoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30,0,,0.1,0.2,0.1,0.1,0.1,0.1
northsfvtoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northsgvnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:18Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
northshorelanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northstlnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:33Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northsummitnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northtrianglenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northtulsatoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northvegastimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northwakenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
northwichitanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
notallowedto.com,unreliable,0.165,2,L,FN,0.1,,11.4,2014-10-14T11:01:08Z,,,0.2,0.1,0.2,0.2,0.2,0.2
notrickszone.com,unreliable,0.103,1,L,CP,0.1,321479,15.6,2010-08-06T14:52:10Z,,,0.1,0.1,0.35,0.1,0.1,0.1
novitimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
now8news.com,fake,0.038,2,VL,FN,0.0,,10.7,2015-07-09T04:48:23Z,,,0.05,0.0,0.05,0.05,0.05,0.05
nowmedianetwork.co,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
nowtheendbegins.com,conspiracy,0.103,2,L,CP,0.1,313411,17.4,2008-10-18T17:06:09Z,,,0.1,0.1,0.35,0.1,0.1,0.1
npiamerica.org,unreliable,0.135,1,,,,,14.7,2011-07-22T18:34:06.543Z,,,0.15,0.15,0.15,0.15,0.15,0.15
npr.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:09.877Z,,,0.1,0.0,0.1,0.1,0.1,0.1
nrlc.org,unreliable,0.103,1,L,FN,0.1,198795,30.6,1995-08-13T04:00:00.872Z,,,0.1,0.1,0.35,0.1,0.1,0.1
ntd.com,unreliable,0.11,1,M,FN,0.2,62669,30.1,1996-02-12T05:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
ntd.tv,unreliable,0.23,1,M,FN,0.2,973558,15.5,2010-09-30T05:36:31Z,1,,0.1,0.2,0.35,0.1,0.85,0.1
nutrientreference.com,unreliable,0.075,1,VL,CP,0.0,,19.8,2006-05-25T13:58:23Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
nutritionalanarchy.com,unreliable,0.09,1,,,,,12.6,2013-07-26T01:40:54Z,,,0.1,0.1,0.1,0.1,0.1,0.1
nutritionfacts.org,reliable,0.67,2,M,CP,0.2,38202,26.0,2000-03-05T01:33:16.294Z,,,0.9,0.2,0.2,0.9,0.9,0.9
nvbusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nvic.org,unreliable,0.103,1,L,CP,0.1,198733,22.8,2003-05-20T19:29:11.567Z,,,0.1,0.1,0.35,0.1,0.1,0.1
nwalabamanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
nwarkansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwatlantanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwbergennews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:15Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
nwclarknews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwconnnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwfranklinnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwgeorgianews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwillinoisnews.com,unreliable,0.105,1,M,FN,0.2,,9.8,2016-06-07T18:40:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwiowanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:03Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwjerseynews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwkansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwlaketimes.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-07-25T15:35:06Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwlatimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwlouisiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwminnesotanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwmissnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwmissouritimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwmontananews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwnewmexiconews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwohiotimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwoklahomanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:18Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
nwriversidenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwtwincities.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwvalleytimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nwwaynenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nybusinessdaily.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-16T20:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nycgazette.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
nymeta.co,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
nzdsos.com,unreliable,0.09,1,L,CP,0.1,,4.8,2021-05-30T05:26:10Z,,,0.1,0.1,0.1,0.1,0.1,0.1
oaklandcitywire.com,unreliable,0.105,1,M,FN,0.2,,5.3,2020-12-07T03:17:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
oaklandtimes.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:38.515Z,,,0.1,0.2,0.1,0.1,0.1,0.1
oann.com,mixed,0.165,2,L,FN,0.1,47032,21.6,2004-08-12T18:41:11Z,,,0.2,0.1,0.2,0.2,0.2,0.2
oathkeepers.org,mixed,0.173,2,L,FN,0.1,589321,17.0,2009-03-01T21:07:55.424Z,,,0.2,0.1,0.35,0.2,0.2,0.2
objectiveministries.org,satire,0.27,1,,,,,20.5,2005-08-29T04:39:02.899Z,,,0.3,0.3,0.3,0.3,0.3,0.3
objectivist.co,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
observer.com,mixed,0.175,1,,,,6348,31.9,1994-04-23T04:00:00Z,,,0.2,0.2,0.1,0.2,0.2,0.2
ocalastandard.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
occupy.com,mixed,0.188,1,,,,257247,27.5,1998-09-10T04:00:00Z,,,0.2,0.2,0.35,0.2,0.2,0.2
occupydemocrats.com,unreliable,0.225,2,L,FN,0.1,456043,13.2,2012-12-25T19:25:18Z,3,,0.2,0.1,0.35,0.2,0.55,0.2
occupyliberals.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
occupyyourself.org,unreliable,0.105,1,M,CP,0.2,,14.5,2011-09-29T09:31:48.714Z,,,0.1,0.2,0.1,0.1,0.1,0.1
oceancountyleader.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
off-guardian.org,mixed,0.188,2,M,CP,0.2,102151,10.9,2015-04-15T12:15:08.811Z,,,0.2,0.2,0.35,0.2,0.2,0.2
offgridsurvival.com,conspiracy,0.103,1,,,,657528,18.2,2007-12-17T18:59:59Z,,,0.1,0.1,0.35,0.1,0.1,0.1
offthegridnews.com,unreliable,0.118,1,M,CP,0.2,188081,16.2,2010-01-07T21:09:26Z,,,0.1,0.2,0.35,0.1,0.1,0.1
oftwominds.com,mixed,0.188,1,,,,421954,26.2,1999-12-31T20:37:17Z,,,0.2,0.2,0.35,0.2,0.2,0.2
ohioindependent.com,unreliable,0.105,1,M,FN,0.2,,3.9,2022-05-01T18:10:27Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
oilgeopolitics.net,conspiracy,0.09,1,,,,,21.0,2005-03-16T23:53:18Z,,,0.1,0.1,0.1,0.1,0.1,0.1
okcstandard.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
okeechobeetimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
okeefemediagroup.com,unreliable,0.118,1,M,FN,0.2,920185,3.0,2023-03-07T20:55:00Z,,,0.1,0.2,0.35,0.1,0.1,0.1
oldnorthnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
omahacitywire.com,unreliable,0.105,1,M,FN,0.2,,5.3,2020-12-07T03:17:21Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
oneidatimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
onepoliticalplaza.com,fake,0.06,1,,,,687619,13.3,2012-12-09T14:31:34Z,,,0.05,0.05,0.35,0.05,0.05,0.05
online-updates.net,unreliable,0.105,1,M,CP,0.2,,5.4,2020-10-21T17:43:06Z,,,0.1,0.2,0.1,0.1,0.1,0.1
onlineconservativepress.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
onslownews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
openmagazines.com,fake,0.045,1,,,,,6.0,2020-03-15T18:22:54Z,,,0.05,0.05,0.05,0.05,0.05,0.05
openmindmagazine.com,mixed,0.18,1,,,,,4.3,2021-11-11T19:05:14Z,,,0.2,0.2,0.2,0.2,0.2,0.2
organicconsumers.org,unreliable,0.095,1,L,CP,0.1,53892,27.3,1998-12-14T05:00:00.995Z,,,0.1,0.1,0.2,0.1,0.1,0.1
organicfacts.net,unreliable,0.11,1,M,CP,0.2,50454,19.7,2006-07-17T14:22:35Z,,,0.1,0.2,0.2,0.1,0.1,0.1
orientalreview.org,mixed,0.188,1,,,,583385,,,,,0.2,0.2,0.35,0.2,0.2,0.2
origo.hu,unreliable,0.105,1,M,FN,0.2,6755,,,,,0.1,0.2,0.1,0.1,0.1,0.1
orinocotribune.com,unreliable,0.103,1,L,FN,0.1,365642,7.3,2018-11-22T17:56:34Z,,,0.1,0.1,0.35,0.1,0.1,0.1
orlandostandard.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
orthochristian.com,unreliable,0.118,1,M,FN,0.2,227045,15.7,2010-07-06T10:58:22Z,0,,0.1,0.2,0.35,0.1,0.1,0.1
other98.com,unreliable,0.165,2,L,FN,0.1,,15.9,2010-04-23T00:12:26Z,,,0.2,0.1,0.2,0.2,0.2,0.2
otptribune.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-08-15T20:17:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ourhealthguides.com,unreliable,0.09,1,L,CP,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
outerbankstimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
outragedpatriot.com,unreliable,0.09,1,L,FN,0.1,,6.5,2019-10-01T20:30:42Z,,,0.1,0.1,0.1,0.1,0.1,0.1
overpassesforamerica.com,unreliable,0.105,1,M,FN,0.2,,12.6,2013-08-15T07:05:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
oxfordreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
oye.news,unreliable,0.095,1,L,CP,0.1,,0.5,2025-09-26T15:16:08.465Z,,,0.1,0.1,0.1,0.2,0.1,0.1
pacatholictribune.com,unreliable,0.105,1,M,FN,0.2,,5.6,2020-08-07T18:17:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pacificpundit.com,unreliable,0.09,1,L,FN,0.1,,14.0,2012-03-01T03:48:11Z,,,0.1,0.1,0.1,0.1,0.1,0.1
pakalertpress.com,fake,0.068,2,L,CP,0.1,919464,16.9,2009-05-04T06:36:25Z,,,0.05,0.1,0.35,0.05,0.05,0.05
palmcoasttimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
palmerreport.com,mixed,0.188,1,,,,338638,12.2,2013-12-28T07:20:58Z,,,0.2,0.2,0.35,0.2,0.2,0.2
pamelageller.com,conspiracy,0.103,1,,,,587519,20.5,2005-09-12T06:03:08Z,,,0.1,0.1,0.35,0.1,0.1,0.1
panamacityreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pandemic.news,unreliable,0.143,1,VL,CP,0.0,,7.3,2018-11-18T18:34:52.66Z,3,,0.1,0.0,0.1,0.1,0.55,0.1
pantsonfirenews.com,unreliable,0.09,1,L,FN,0.1,,7.1,2019-01-23T22:27:18Z,,,0.1,0.1,0.1,0.1,0.1,0.1
parler.com,unreliable,0.095,1,L,FN,0.1,35866,27.8,1998-05-28T04:00:00Z,,,0.1,0.1,0.2,0.1,0.1,0.1
pascoreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
passaictoday.com,unreliable,0.135,1,H,FN,0.4,,5.4,2020-11-06T15:31:56Z,0,,0.1,0.4,0.1,0.1,0.1,0.1
patdollar.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
patientdaily.com,unreliable,0.105,1,M,FN,0.2,,10.6,2015-08-28T00:16:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
patribotics.blog,unreliable,0.095,1,L,FN,0.1,,0.8,2025-06-03T20:17:51Z,,,0.1,0.1,0.1,0.2,0.1,0.1
patriotchronicle.com,mixed,0.18,1,,,,,10.0,2016-03-01T05:45:32Z,,,0.2,0.2,0.2,0.2,0.2,0.2
patriotfetch.com,unreliable,0.09,1,L,FN,0.1,,5.1,2021-01-27T03:20:51Z,,,0.1,0.1,0.1,0.1,0.1,0.1
patriotfires.com,unreliable,0.09,1,L,FN,0.1,,9.9,2016-04-17T08:53:13Z,,,0.1,0.1,0.1,0.1,0.1,0.1
patriotfront.us,unreliable,0.075,1,VL,FN,0.0,,,,0,,0.1,0.0,0.1,0.1,0.1,0.1
patrioticpost.com,unreliable,0.09,1,L,FN,0.1,,6.1,2020-02-18T07:33:52Z,,,0.1,0.1,0.1,0.1,0.1,0.1
patrioticviralnews.com,unreliable,0.09,1,L,FN,0.1,,9.7,2016-06-28T17:54:10Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
patriotjournal.org,unreliable,0.105,1,M,FN,0.2,,10.0,2016-03-30T21:18:49.717Z,,,0.1,0.2,0.1,0.1,0.1,0.1
patriotnewsdaily.com,satire,0.27,1,,,,,11.5,2014-09-05T20:20:46Z,,,0.3,0.3,0.3,0.3,0.3,0.3
patriotnewsfeed.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-02-22T01:58:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
patriotpost.us,mixed,0.188,1,,,,127839,,,,,0.2,0.2,0.35,0.2,0.2,0.2
patriotpulse.net,unreliable,0.118,1,M,FN,0.2,370757,8.6,2017-08-14T16:47:56Z,,,0.1,0.2,0.35,0.1,0.1,0.1
patriotrising.com,mixed,0.18,1,,,,,14.6,2011-08-08T00:22:14Z,,,0.2,0.2,0.2,0.2,0.2,0.2
patriots.win,unreliable,0.095,1,L,FN,0.1,45970,5.2,2021-01-20T11:22:43Z,,,0.1,0.1,0.2,0.1,0.1,0.1
patriots4truth.org,unreliable,0.075,1,VL,CP,0.0,,8.2,2017-12-25T18:38:20.285Z,,,0.1,0.0,0.1,0.1,0.1,0.1
patriotupdate.com,mixed,0.18,1,,,,,16.8,2009-06-01T15:12:22Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
patriotuproar.com,unreliable,0.105,1,M,FN,0.2,,5.7,2020-06-30T05:29:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
paulcraigroberts.org,mixed,0.158,2,VL,CP,0.0,108499,14.6,2011-08-18T18:01:27.708Z,,,0.2,0.0,0.35,0.2,0.2,0.2
pcmustdie.com,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
pdmj.org,unreliable,0.075,1,VL,CP,0.0,,5.4,2020-10-11T18:20:59.034Z,,,0.1,0.0,0.1,0.1,0.1,0.1
peacegardennews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
peachtreegazette.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-08-15T20:17:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
peachtreetimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pelicanstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pennsylvaniadailystar.com,unreliable,0.135,1,H,FN,0.4,,5.2,2021-01-10T16:23:18Z,,,0.1,0.4,0.1,0.1,0.1,0.1
pennsylvaniaindependent.com,unreliable,0.105,1,M,FN,0.2,,8.6,2017-08-12T18:23:05Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pensacolatimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
peoriastandard.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-01-22T15:19:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
perezhilton.com,unreliable,0.11,1,M,FN,0.2,32870,21.1,2005-02-07T04:35:25Z,,,0.1,0.2,0.2,0.1,0.1,0.1
personalinterpretation.com,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
personalliberty.com,unreliable,0.103,1,L,FN,0.1,656854,22.9,2003-05-02T18:10:37Z,,,0.1,0.1,0.35,0.1,0.1,0.1
peta.org,unreliable,0.11,1,M,CP,0.2,10944,30.5,1995-09-26T04:00:00.668Z,,,0.1,0.2,0.2,0.1,0.1,0.1
phxreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
physiciansforinformedconsent.org,unreliable,0.075,1,VL,CP,0.0,,9.9,2016-05-08T01:42:19.094Z,,,0.1,0.0,0.1,0.1,0.1,0.1
piedmonttribune.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pimatimes.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:35Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
pinaltoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pinebelttimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pinehursttoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pinellastimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pinestatenews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
pjmedia.com,mixed,0.18,2,M,FN,0.2,24370,26.6,1999-08-26T05:11:55Z,,,0.2,0.2,0.2,0.2,0.2,0.2
planetaprisao.com.br,unreliable,0.075,1,VL,CP,0.0,,3.5,2022-08-30T16:24:47Z,,,0.1,0.0,0.1,0.1,0.1,0.1
platosguns.com,mixed,0.18,1,,,,,10.5,2015-08-31T08:14:58Z,,,0.2,0.2,0.2,0.2,0.2,0.2
plattenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pocatellotimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pointreport.org,unreliable,0.095,1,L,FN,0.1,,1.9,2024-05-07T20:20:12.931Z,,,0.1,0.1,0.1,0.2,0.1,0.1
political-discussion.com,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
politicalanimalnews.com,unreliable,0.105,1,M,FN,0.2,,6.3,2019-12-05T22:23:59Z,,,0.1,0.2,0.1,0.1,0.1,0.1
politicalblindspot.com,conspiracy,0.09,1,,,,,12.8,2013-05-14T15:31:01Z,,,0.1,0.1,0.1,0.1,0.1,0.1
politicalcult.com,mixed,0.18,1,,,,,10.6,2015-07-24T23:31:09Z,,,0.2,0.2,0.2,0.2,0.2,0.2
politicalears.com,unreliable,0.09,1,,,,,8.3,2017-12-15T19:56:11Z,,,0.1,0.1,0.1,0.1,0.1,0.1
politicalmayhem.news,unreliable,0.09,1,L,FN,0.1,,6.0,2020-04-02T18:08:43.927Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
politicalo.com,fake,0.045,1,,,,,10.6,2015-08-10T18:38:56Z,,,0.05,0.05,0.05,0.05,0.05,0.05
politicalsitenews.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
politicalupdator.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
politichicks.com,unreliable,0.09,1,L,FN,0.1,,16.8,2009-05-27T03:35:34Z,,,0.1,0.1,0.1,0.1,0.1,0.1
politicono.com,fake,0.053,1,,,,,0.9,2025-04-23T13:17:20Z,,,0.05,0.05,0.05,0.2,0.05,0.05
politicops.com,satire,0.27,1,,,,,10.0,2016-03-11T10:50:23Z,,,0.3,0.3,0.3,0.3,0.3,0.3
politicot.com,satire,0.27,1,,,,,9.9,2016-04-09T22:37:37Z,,,0.3,0.3,0.3,0.3,0.3,0.3
politicsintheusa.com,unreliable,0.09,1,,,,,8.7,2017-07-07T19:05:21Z,,,0.1,0.1,0.1,0.1,0.1,0.1
politicslive.net,unreliable,0.075,1,VL,FN,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
politicsonline.net,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
politicsusanews.com,fake,0.045,1,,,,,4.7,2021-07-17T18:05:15Z,,,0.05,0.05,0.05,0.05,0.05,0.05
politicususa.com,unreliable,0.188,1,,,,114850,18.1,2008-01-31T18:58:55Z,,,0.2,0.2,0.35,0.2,0.2,0.2
politifact.news,unreliable,0.083,1,L,FN,0.1,,10.6,2015-08-05T20:01:38.337Z,16,,0.1,0.1,0.1,0.1,0.05,0.1
politnavigator.net,unreliable,0.11,1,M,FN,0.2,83760,12.1,2014-02-11T19:45:45Z,,,0.1,0.2,0.2,0.1,0.1,0.1
politros.com,unreliable,0.122,1,M,FN,0.2,526799,0.1,2026-01-29T19:35:30Z,,,0.1,0.2,0.35,0.2,0.1,0.1
polktimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pollhype.com,unreliable,0.18,1,,,,,0.1,2026-02-01T19:20:04Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
pollution.news,unreliable,0.165,1,VL,CP,0.0,,8.4,2017-10-24T18:07:33.1Z,2,,0.1,0.0,0.1,0.1,0.7,0.1
pomonavalleynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pontiactimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pop.org,unreliable,0.103,1,L,FN,0.1,499167,30.1,1996-02-23T05:00:00.773Z,,,0.1,0.1,0.35,0.1,0.1,0.1
populartechnology.net,unreliable,0.105,1,M,CP,0.2,,20.9,2005-04-11T13:35:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
populist.press,unreliable,0.095,1,L,FN,0.1,,0.2,2026-01-13T07:33:12.0Z,0,,0.1,0.1,0.1,0.2,0.1,0.1
populistpress.com,unreliable,0.09,1,L,FN,0.1,,11.1,2015-02-08T03:16:35Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
portagetimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-11T13:02:34Z,,,0.1,0.2,0.1,0.1,0.1,0.1
portlandcourant.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
portlandmainenews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
positivehealthwellness.com,unreliable,0.118,1,M,CP,0.2,621821,10.1,2016-02-19T00:54:51Z,,,0.1,0.2,0.35,0.1,0.1,0.1
powderedwigsociety.com,unreliable,0.09,1,L,FN,0.1,,12.7,2013-07-18T00:30:28Z,,,0.1,0.1,0.1,0.1,0.1,0.1
powerpoliticians.com,unreliable,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
prageru.com,unreliable,0.095,1,L,FN,0.1,50989,17.6,2008-08-17T00:55:25Z,,,0.1,0.1,0.2,0.1,0.1,0.1
prairiestatewire.com,unreliable,0.105,1,M,FN,0.2,,8.7,2017-06-28T20:41:33Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pravda.ru,mixed,0.175,1,,,,5300,,,,,0.2,0.2,0.1,0.2,0.2,0.2
pravdareport.com,mixed,0.158,2,VL,FN,0.0,360213,10.4,2015-11-03T19:32:45Z,,,0.2,0.0,0.35,0.2,0.2,0.2
prayingmedic.com,unreliable,0.075,1,VL,CP,0.0,,12.9,2013-04-25T18:29:39Z,,,0.1,0.0,0.1,0.1,0.1,0.1
prepareforchange.net,unreliable,0.103,1,L,CP,0.1,294755,12.8,2013-05-26T16:39:35Z,,,0.1,0.1,0.35,0.1,0.1,0.1
preppersdailynews.com,unreliable,0.09,1,L,FN,0.1,,8.5,2017-09-07T18:31:46Z,,,0.1,0.1,0.1,0.1,0.1,0.1
prepperwebsite.com,conspiracy,0.09,1,,,,,14.5,2011-09-18T22:11:57Z,,,0.1,0.1,0.1,0.1,0.1,0.1
president45donaldtrump.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
presidentialhill.com,unreliable,0.09,1,L,FN,0.1,,5.2,2020-12-16T06:41:21Z,,,0.1,0.1,0.1,0.1,0.1,0.1
presidentialvoting2016.com,mixed,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
presscalifornia.com,unreliable,0.075,1,VL,FN,0.0,,9.1,2017-02-14T23:26:11Z,,,0.1,0.0,0.1,0.1,0.1,0.1
presscorp.org,unreliable,0.105,1,M,FN,0.2,,11.0,2015-03-24T22:55:03.325Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pressfortruth.ca,unreliable,0.105,1,M,CP,0.2,,18.4,2007-11-01T20:00:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
presstv.com,mixed,0.218,2,L,FN,0.1,84364,23.9,2002-04-05T03:55:48Z,3,,0.2,0.1,0.2,0.2,0.55,0.2
presstv.ir,mixed,0.18,1,,,,20938,,,,,0.2,0.2,0.2,0.2,0.2,0.2
preventgenocide2030.org,unreliable,0.075,1,VL,CP,0.0,,3.6,2022-08-28T03:30:42.63Z,,,0.1,0.0,0.1,0.1,0.1,0.1
principia-scientific.com,unreliable,0.103,1,L,CP,0.1,295872,6.7,2019-06-20T14:18:54Z,,,0.1,0.1,0.35,0.1,0.1,0.1
principia-scientific.org,unreliable,0.103,1,L,CP,0.1,707529,15.3,2010-12-08T11:50:09.702Z,,,0.1,0.1,0.35,0.1,0.1,0.1
prisonplanet.com,conspiracy,0.08,2,VL,CP,0.0,62060,24.8,2001-06-14T10:32:34Z,,,0.1,0.0,0.2,0.1,0.1,0.1
prisonplanet.tv,conspiracy,0.103,1,,,,924936,22.0,2004-03-04T21:53:22Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
prntly.com,fake,0.053,2,L,FN,0.1,,11.5,2014-09-16T18:44:45Z,,,0.05,0.1,0.05,0.05,0.05,0.05
proamericanews.com,fake,0.053,1,,,,,0.1,2026-01-25T17:33:55Z,,,0.05,0.05,0.05,0.2,0.05,0.05
profam.org,unreliable,0.09,1,L,FN,0.1,,28.9,1997-04-11T04:00:00.624Z,,,0.1,0.1,0.1,0.1,0.1,0.1
profile.ru,unreliable,0.11,1,M,FN,0.2,66478,,,,,0.1,0.2,0.2,0.1,0.1,0.1
progressivestoday.com,mixed,0.165,2,L,FN,0.1,,1.0,2025-03-30T18:03:00Z,,,0.2,0.1,0.2,0.2,0.2,0.2
progresstribune.com,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
projectveritas.com,mixed,0.188,2,M,FN,0.2,127922,17.3,2008-11-11T15:35:34Z,,,0.2,0.2,0.35,0.2,0.2,0.2
prophecynewswatch.com,unreliable,0.103,1,L,CP,0.1,276949,23.5,2002-09-30T16:22:23Z,,,0.1,0.1,0.35,0.1,0.1,0.1
prophecytoday.com,unreliable,0.09,1,L,CP,0.1,,27.2,1998-12-21T05:00:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
propornot.com,unreliable,0.105,1,M,CP,0.2,,9.6,2016-08-21T20:15:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
protothema.gr,unreliable,0.218,1,M,FN,0.2,1423,,,1,,0.1,0.2,0.1,0.1,0.85,0.1
protrumpnews.com,unreliable,0.103,1,L,FN,0.1,304972,7.1,2019-02-20T14:54:06Z,,,0.1,0.1,0.35,0.1,0.1,0.1
proudcons.com,fake,0.053,1,,,,,1.5,2024-09-28T18:32:25Z,,,0.05,0.05,0.05,0.2,0.05,0.05
proudemocrat.com,mixed,0.18,1,,,,,10.1,2016-02-15T15:03:00Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
pueblapost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:51:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
pulaskitimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
qanon.pub,unreliable,0.075,1,VL,CP,0.0,,8.0,2018-03-08T04:13:52.653Z,,,0.1,0.0,0.1,0.1,0.1,0.1
qpolitical.com,mixed,0.18,2,M,FN,0.2,,2.4,2023-10-13T18:29:31Z,,,0.2,0.2,0.2,0.2,0.2,0.2
quillette.com,unreliable,0.11,1,M,FN,0.2,48567,10.5,2015-09-30T20:35:51Z,,,0.1,0.2,0.2,0.1,0.1,0.1
quincyreporter.com,unreliable,0.105,1,M,FN,0.2,,8.3,2017-11-28T19:23:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rairfoundation.com,unreliable,0.103,1,L,FN,0.1,263865,9.9,2016-05-02T20:10:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
randolphcountynews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
randpaul.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:02.107Z,,,0.1,0.0,0.1,0.1,0.1,0.1
rapturenewsnetwork.com,unreliable,0.09,1,L,CP,0.1,,9.3,2016-12-13T03:46:44Z,,,0.1,0.1,0.1,0.1,0.1,0.1
rationalground.com,unreliable,0.105,1,M,FN,0.2,,5.7,2020-07-14T15:31:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rawconservativeopinions.com,unreliable,0.105,1,M,FN,0.2,,9.2,2016-12-23T04:40:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rawforbeauty.com,unreliable,0.18,1,,,,,13.9,2012-04-25T21:14:50Z,,,0.2,0.2,0.2,0.2,0.2,0.2
rawstory.com,mixed,0.175,1,,,,8837,22.1,2004-01-29T00:18:26Z,,,0.2,0.2,0.1,0.2,0.2,0.2
react365.com,fake,0.038,2,VL,FN,0.0,,19.2,2007-01-10T21:15:30Z,,,0.05,0.0,0.05,0.05,0.05,0.05
readconservatives.news,mixed,0.18,1,,,,,1.1,2025-02-12T15:15:53.182Z,,,0.2,0.2,0.2,0.2,0.2,0.2
reagancoalition.com,mixed,0.18,1,,,,,18.2,2008-01-20T11:28:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
realclimatescience.com,unreliable,0.103,1,L,CP,0.1,463355,11.2,2015-01-03T18:34:59Z,,,0.1,0.1,0.35,0.1,0.1,0.1
realconservativesunite.com,unreliable,0.095,1,L,FN,0.1,,1.0,2025-03-11T18:34:45Z,,,0.1,0.1,0.1,0.2,0.1,0.1
realfarmacy.com,unreliable,0.173,2,L,CP,0.1,444418,12.9,2013-04-21T19:40:29Z,,,0.2,0.1,0.35,0.2,0.2,0.2
realjewnews.com,unreliable,0.075,1,VL,CP,0.0,,18.5,2007-09-05T05:48:57Z,,,0.1,0.0,0.1,0.1,0.1,0.1
realnews24.com,unreliable,0.09,1,L,CP,0.1,,14.6,2011-08-07T03:13:14Z,,,0.1,0.1,0.1,0.1,0.1,0.1
realnewsrightnow.com,fake,0.045,1,,,,,11.1,2015-02-11T18:54:06Z,,,0.05,0.05,0.05,0.05,0.05,0.05
realplanetnews.com,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
realtimepolitics.com,mixed,0.18,1,,,,,20.3,2005-12-07T11:16:12Z,,,0.2,0.2,0.2,0.2,0.2,0.2
rebelnews.com,unreliable,0.118,1,M,FN,0.2,124822,22.3,2003-11-16T17:33:05Z,,,0.1,0.2,0.35,0.1,0.1,0.1
redacted.inc,unreliable,0.105,1,M,FN,0.2,,4.0,2022-03-10T10:22:00.0Z,,,0.1,0.2,0.1,0.1,0.1,0.1
redcountry.us,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
reddingtoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
redflagnews.com,mixed,0.18,1,,,,,13.7,2012-06-17T02:30:13Z,,,0.2,0.2,0.2,0.2,0.2,0.2
redice.tv,unreliable,0.103,1,L,FN,0.1,526399,12.0,2014-03-11T00:57:35Z,,,0.1,0.1,0.35,0.1,0.1,0.1
redorbit.com,unreliable,0.11,1,M,FN,0.2,49419,26.7,1999-07-16T17:29:36Z,,,0.1,0.2,0.2,0.1,0.1,0.1
redoubtnews.com,unreliable,0.105,1,M,CP,0.2,,10.2,2016-01-01,0,,0.1,0.2,0.1,0.1,0.1,0.1
redpillpodcasts.com,unreliable,0.075,1,VL,CP,0.0,,4.7,2021-06-27T23:42:27Z,,,0.1,0.0,0.1,0.1,0.1,0.1
redrightdaily.com,unreliable,0.105,1,M,FN,0.2,,7.0,2019-03-15T02:55:58Z,,,0.1,0.2,0.1,0.1,0.1,0.1
redrightpatriot.com,unreliable,0.105,1,M,FN,0.2,,6.2,2020-01-14T06:41:03Z,,,0.1,0.2,0.1,0.1,0.1,0.1
redrocktribune.com,fake,0.053,1,,,,,1.3,2024-12-10T21:06:37Z,,,0.05,0.05,0.05,0.2,0.05,0.05
redstate.com,mixed,0.18,1,,,,25254,23.1,2003-02-11T20:54:06Z,,,0.2,0.2,0.2,0.2,0.2,0.2
redstatenation.com,unreliable,0.09,1,L,FN,0.1,,8.6,2017-08-02T18:01:43Z,,,0.1,0.1,0.1,0.1,0.1,0.1
redstatewatcher.com,mixed,0.165,2,L,FN,0.1,,10.6,2015-08-15T19:20:20Z,,,0.2,0.1,0.2,0.2,0.2,0.2
reductress.com,satire,0.273,1,,,,410209,13.2,2013-01-14T15:32:31Z,,,0.3,0.3,0.35,0.3,0.3,0.3
redvoicemedia.com,unreliable,0.103,1,L,FN,0.1,393964,5.2,2020-12-26T21:12:15Z,,,0.1,0.1,0.35,0.1,0.1,0.1
redwhiteandright.com,unreliable,0.095,1,L,FN,0.1,,0.3,2025-12-04T19:41:32Z,,,0.1,0.1,0.1,0.2,0.1,0.1
redwoodempirenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
reformedmedia.net,unreliable,0.09,1,L,FN,0.1,,14.9,2011-05-05T14:14:55Z,,,0.1,0.1,0.1,0.1,0.1,0.1
regated.com,mixed,0.18,1,,,,,9.8,2016-05-14T03:40:24Z,,,0.2,0.2,0.2,0.2,0.2,0.2
religionlo.com,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
religionmind.com,fake,0.045,1,,,,,9.3,2016-12-08T17:49:03Z,,,0.05,0.05,0.05,0.05,0.05,0.05
remedydaily.com,unreliable,0.18,1,,,,,10.1,2016-02-12T20:10:48Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
remnantnewspaper.com,unreliable,0.103,1,L,FN,0.1,393844,25.5,2000-08-28T21:44:45Z,,,0.1,0.1,0.35,0.1,0.1,0.1
renewamerica.com,unreliable,0.103,1,L,FN,0.1,295380,26.9,1999-04-27T12:20:20Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
renoreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rense.com,conspiracy,0.08,2,VL,CP,0.0,29985,27.0,1999-03-10T05:00:00Z,,,0.1,0.0,0.2,0.1,0.1,0.1
republicandaily.com,unreliable,0.105,1,M,FN,0.2,,19.8,2006-05-27T10:57:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
republicworld.com,unreliable,0.223,1,M,FN,0.2,18708,16.5,2009-09-24T19:11:36Z,1,,0.1,0.2,0.2,0.1,0.85,0.1
researchantisemitism.ca,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
resistancereport.com,mixed,0.18,1,,,,,17.4,2008-10-05T17:33:06Z,,,0.2,0.2,0.2,0.2,0.2,0.2
resistthemainstream.org,unreliable,0.105,1,M,FN,0.2,,5.1,2021-02-01T21:13:37.233Z,,,0.1,0.2,0.1,0.1,0.1,0.1
responsibletechnology.org,unreliable,0.188,2,M,CP,0.2,332818,22.7,2003-06-28T14:18:01.217Z,,,0.2,0.2,0.35,0.2,0.2,0.2
returnofkings.com,unreliable,0.137,2,L,FN,0.1,420927,13.9,2012-05-05T19:52:32Z,,,0.15,0.1,0.35,0.15,0.15,0.15
returntonow.net,unreliable,0.103,1,L,CP,0.1,650121,10.1,2016-02-01T19:43:15Z,,,0.1,0.1,0.35,0.1,0.1,0.1
revolutionradio.org,unreliable,0.09,1,L,CP,0.1,,23.2,2003-01-05T01:13:00.517Z,,,0.1,0.1,0.1,0.1,0.1,0.1
revolutions2040.com,unreliable,0.18,1,,,,,2.2,2023-12-18T19:10:51Z,,,0.2,0.2,0.2,0.2,0.2,0.2
revolver.news,unreliable,0.118,1,M,FN,0.2,113916,5.8,2020-05-26T23:23:40.153Z,,,0.1,0.2,0.35,0.1,0.1,0.1
rfangle.com,unreliable,0.105,1,M,FN,0.2,,5.6,2020-07-24T21:09:55Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rhotv.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
ria.ru,unreliable,0.203,1,L,FN,0.1,2232,,,1,,0.1,0.1,0.1,0.1,0.85,0.1
rickwells.us,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
rightalert.com,mixed,0.18,1,,,,,12.6,2013-08-08T20:33:53Z,,,0.2,0.2,0.2,0.2,0.2,0.2
righterway.com,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
rightnewswire.com,unreliable,0.118,1,M,FN,0.2,450146,5.6,2020-08-17T20:57:12Z,,,0.1,0.2,0.35,0.1,0.1,0.1
rightsidenews.com,unreliable,0.103,1,L,FN,0.1,753739,18.8,2007-05-12T00:47:13Z,,,0.1,0.1,0.35,0.1,0.1,0.1
rightsmarts.com,unreliable,0.105,1,M,FN,0.2,,9.7,2016-07-13T02:35:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rightwing.news,unreliable,0.203,1,L,FN,0.1,,,,1,,0.1,0.1,0.1,0.1,0.85,0.1
rightwingnews.com,mixed,0.173,2,L,FN,0.1,262243,25.2,2000-12-27T02:16:45Z,0,,0.2,0.1,0.35,0.2,0.2,0.2
rightwingtribune.com,unreliable,0.09,1,L,FN,0.1,,10.7,2015-06-24T00:39:05Z,,,0.1,0.1,0.1,0.1,0.1,0.1
rilenews.com,fake,0.045,1,,,,,8.4,2017-10-13T18:06:15Z,,,0.05,0.05,0.05,0.05,0.05,0.05
rinf.com,mixed,0.173,2,L,FN,0.1,352396,23.0,2003-02-27T00:50:02Z,,,0.2,0.1,0.35,0.2,0.2,0.2
ripostelaique.com,unreliable,0.088,1,VL,FN,0.0,290262,18.6,2007-08-22T18:22:24Z,,,0.1,0.0,0.35,0.1,0.1,0.1
riverbendtimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
riverparishnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
riverregiontimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rivervalleytoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rochesterreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:12Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rockcitytimes.com,satire,0.27,1,,,,,15.5,2010-08-31T14:16:55Z,,,0.3,0.3,0.3,0.3,0.3,0.3
rockfordsun.com,unreliable,0.105,1,M,FN,0.2,,9.8,2016-06-07T18:37:57Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rockinghamjournal.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-15T19:23:08Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rockinghamtimes.com,unreliable,0.135,1,H,FN,0.4,,6.4,2019-10-15T14:55:13Z,,,0.1,0.4,0.1,0.1,0.1,0.1
rockislandtoday.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-01-22T15:20:11Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rocklandreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rockvalleytimes.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-15T19:24:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rockymounttoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rodong.rep.kp,unreliable,0.088,1,VL,FN,0.0,473832,,,,,0.1,0.0,0.35,0.1,0.1,0.1
rogue-nation3.com,fake,0.045,1,,,,,9.8,2016-05-11T21:50:53Z,,,0.05,0.05,0.05,0.05,0.05,0.05
roguereview.net,unreliable,0.09,1,L,FN,0.1,,7.1,2019-01-22T21:44:04Z,,,0.1,0.1,0.1,0.1,0.1,0.1
romereporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
ronpaulinstitute.org,mixed,0.173,2,L,FN,0.1,126842,14.0,2012-03-12T18:46:15.06Z,,,0.2,0.1,0.35,0.2,0.2,0.2
rossiyasegodnya.com,unreliable,0.09,1,L,FN,0.1,,5.5,2020-09-25T12:23:29Z,,,0.1,0.1,0.1,0.1,0.1,0.1
rowannews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
rsbnetwork.com,unreliable,0.103,1,L,FN,0.1,400771,9.9,2016-04-05T19:20:14Z,,,0.1,0.1,0.35,0.1,0.1,0.1
rt.com,unreliable,0.075,1,VL,FN,0.0,2212,34.5,1991-09-23T04:00:00Z,,,0.1,0.0,0.1,0.1,0.1,0.1
rudaw.net,unreliable,0.11,1,M,FN,0.2,19003,18.0,2008-03-03T09:55:06Z,,,0.1,0.2,0.2,0.1,0.1,0.1
rumble.com,unreliable,0.158,1,L,FN,0.1,2789,27.3,1998-12-07T05:00:00Z,3,,0.1,0.1,0.1,0.1,0.55,0.1
rumorjournal.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
rumormillnews.com,conspiracy,0.088,2,VL,CP,0.0,146163,27.8,1998-06-09T04:00:00Z,,,0.1,0.0,0.35,0.1,0.1,0.1
ruptly.tv,mixed,0.188,2,M,FN,0.2,282918,13.7,2012-06-25T09:19:47Z,,,0.2,0.2,0.35,0.2,0.2,0.2
rushlimbaugh.com,unreliable,0.08,1,VL,FN,0.0,86995,30.7,1995-07-06T04:00:00Z,,,0.1,0.0,0.2,0.1,0.1,0.1
russia-insider.com,mixed,0.165,2,L,FN,0.1,78333,11.6,2014-08-12T08:17:31Z,,,0.2,0.1,0.2,0.2,0.2,0.2
ruthinstitute.org,unreliable,0.09,1,L,FN,0.1,,18.1,2008-02-15T21:03:07.773Z,,,0.1,0.1,0.1,0.1,0.1,0.1
sacramentostandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
salemnewswire.com,unreliable,0.105,1,M,FN,0.2,,6.1,2020-02-11T14:31:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sancristobalpost.com,unreliable,0.105,1,M,FN,0.2,,5.7,2020-06-17T23:31:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sandhillstoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sandiegocitywire.com,unreliable,0.105,1,M,FN,0.2,,5.3,2020-12-07T03:17:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sandovalnews.com,unreliable,0.09,1,,FN,0.1,,6.5,2019-09-04T20:54:35Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
sanevax.org,unreliable,0.09,1,L,CP,0.1,,15.7,2010-07-15T22:36:55.303Z,,,0.1,0.1,0.1,0.1,0.1,0.1
sanfransun.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sangamonsun.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-01-22T15:19:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sanjoaquintimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sanjosestandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sanluispotosipost.com,unreliable,0.105,1,M,FN,0.2,,5.4,2020-10-08T21:27:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sanmateosun.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sanmiguelpost.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-01-30T16:16:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
santaclaratoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
santacruzstandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
santafestandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
santeplusmag.com,unreliable,0.103,1,L,CP,0.1,325747,11.6,2014-08-12T15:28:20Z,,,0.1,0.1,0.35,0.1,0.1,0.1
sarasotareview.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
saratogastandard.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
satiratribune.com,satire,0.265,1,,,,,1.3,2024-12-02T19:53:07Z,,,0.3,0.3,0.3,0.2,0.3,0.3
satirewire.com,satire,0.273,1,,,,608707,26.3,1999-12-02T17:22:57Z,,,0.3,0.3,0.35,0.3,0.3,0.3
savannahsuntimes.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
savethemales.ca,unreliable,0.09,1,L,CP,0.1,,25.2,2001-01-10T14:35:17Z,,,0.1,0.1,0.1,0.1,0.1,0.1
scalaskanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
scconnnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
science.news,unreliable,0.075,1,VL,CP,0.0,,8.4,2017-10-24T18:32:12.877Z,,,0.1,0.0,0.1,0.1,0.1,0.1
scienceclowns.com,unreliable,0.075,1,VL,CP,0.0,,10.9,2015-04-26T16:06:03Z,,,0.1,0.0,0.1,0.1,0.1,0.1
sciencetimes.com,unreliable,0.11,1,M,FN,0.2,62102,25.5,2000-09-26T10:42:52Z,,,0.1,0.2,0.2,0.1,0.1,0.1
sciencevibe.com,unreliable,0.05,1,M,CP,0.2,,2.2,2024-01-18T19:24:20Z,,True,0.1,0.2,0.1,0.1,0.1,0.0
sckansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
scminnesotanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
scmissnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
scmissourinews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
scnebraskanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
scnewyorknews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:22Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
scoklahomanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
scrappleface.com,satire,0.27,1,,,,,23.5,2002-09-17T16:36:12Z,,,0.3,0.3,0.3,0.3,0.3,0.3
seacoaststandard.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-15T19:23:25.324Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sealaskanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
searizonanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
seatlantanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sebluegrassnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
secoloradonews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
secondamendmentdaily.com,unreliable,0.09,1,L,FN,0.1,,8.3,2017-11-13T21:30:34Z,,,0.1,0.1,0.1,0.1,0.1,0.1
seconnnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
secretsofthefed.com,conspiracy,0.09,1,,,,,13.6,2012-08-10T19:47:41Z,,,0.1,0.1,0.1,0.1,0.1,0.1
secureamericanow.org,unreliable,0.105,1,M,FN,0.2,,15.4,2010-10-12T15:21:08.798Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sedenvernews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
seekr.com,unreliable,0.118,1,M,FN,0.2,736051,22.7,2003-07-21T18:21:38Z,,,0.1,0.2,0.35,0.1,0.1,0.1
segrandrapids.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:03Z,,,0.1,0.2,0.1,0.1,0.1,0.1
seillinoisnews.com,unreliable,0.105,1,M,FN,0.2,,10.0,2016-03-23T08:33:54Z,,,0.1,0.2,0.1,0.1,0.1,0.1
seindiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
seiowanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sekansascitynews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
sekansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sekentuckynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
selatimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
seminnesotanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
semissourinews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
semontananews.com,unreliable,0.135,1,H,FN,0.4,,6.7,2019-06-30T20:46:41Z,,,0.1,0.4,0.1,0.1,0.1,0.1
senebraskanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
senorthcarolinanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sensationalisttimes.com,satire,0.27,1,,,,,15.3,2010-11-15T19:23:58Z,,,0.3,0.3,0.3,0.3,0.3,0.3
sentinelblog.com,conspiracy,0.09,1,,,,,6.8,2019-06-11T18:43:28Z,,,0.1,0.1,0.1,0.1,0.1,0.1
seoaklandnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
seohiotimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
seoklahomanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
setwincities.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sevegasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:34Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
sfvtoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sgtreport.com,unreliable,0.103,1,L,CP,0.1,205848,15.3,2010-12-08T01:34:34Z,,,0.1,0.1,0.35,0.1,0.1,0.1
sgvstandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
shafaq.com,unreliable,0.11,1,M,FN,0.2,87219,23.6,2002-08-17T12:47:29Z,,,0.1,0.2,0.2,0.1,0.1,0.1
shareblue.com,unreliable,0.09,1,,,,,14.9,2011-05-03T18:13:25Z,,,0.1,0.1,0.1,0.1,0.1,0.1
sheepkillers.com,conspiracy,0.09,2,L,CP,0.1,,18.1,2008-02-06T19:02:30Z,,,0.1,0.1,0.1,0.1,0.1,0.1
shelbyreview.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:54Z,,,0.1,0.2,0.1,0.1,0.1,0.1
shiawasseetimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
shoalstoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
shoebat.com,conspiracy,0.103,2,L,CP,0.1,267378,21.8,2004-05-27T19:18:47Z,,,0.1,0.1,0.35,0.1,0.1,0.1
showmestatetimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
shreveportreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:26Z,,,0.1,0.2,0.1,0.1,0.1,0.1
shtfplan.com,unreliable,0.103,1,L,FN,0.1,178708,17.2,2009-01-03T04:21:44Z,,,0.1,0.1,0.35,0.1,0.1,0.1
sickchirpse.com,unreliable,0.088,1,VL,FN,0.0,450420,15.4,2010-10-14T17:32:38Z,,,0.1,0.0,0.35,0.1,0.1,0.1
silnews.com,unreliable,0.105,1,M,FN,0.2,,8.3,2017-11-29T16:54:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
silver-coin-investor. com,conspiracy,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
silverbearcafe.com,conspiracy,0.09,1,,,,,23.3,2002-11-19T18:29:17Z,,,0.1,0.1,0.1,0.1,0.1,0.1
silverdoctors.com,conspiracy,0.103,1,,,,593571,14.9,2011-04-10T03:47:49Z,,,0.1,0.1,0.35,0.1,0.1,0.1
silverstealers.net,conspiracy,0.09,1,,,,,15.2,2010-12-31T17:23:14Z,,,0.1,0.1,0.1,0.1,0.1,0.1
siouxcitytimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sjlendman.blogspot.com,mixed,0.18,1,,,,,25.6,2000-07-31T21:38:58Z,,,0.2,0.2,0.2,0.2,0.2,0.2
skepticink.com,unreliable,0.105,1,M,FN,0.2,,13.5,2012-08-30T21:53:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
skeptiko.com,conspiracy,0.075,2,VL,CP,0.0,,19.3,2006-12-07T15:58:30Z,,,0.1,0.0,0.1,0.1,0.1,0.1
sloreporter.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
smag31.com,fake,0.045,1,,,,,12.8,2013-05-15T22:19:55Z,,,0.05,0.05,0.05,0.05,0.05,0.05
smobserved.com,unreliable,0.103,1,L,FN,0.1,682159,15.1,2011-02-25T20:20:20Z,,,0.1,0.1,0.35,0.1,0.1,0.1
snanews.de,unreliable,0.075,1,VL,FN,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
snopes.news,unreliable,0.068,1,VL,CP,0.0,,10.6,2015-08-05T20:07:22.8Z,18,,0.1,0.0,0.1,0.1,0.05,0.1
socialeverythings.com,fake,0.053,1,,,,,0.1,2026-01-27T12:04:22Z,,,0.05,0.05,0.05,0.2,0.05,0.05
sohu.com,unreliable,0.105,1,M,FN,0.2,515,27.7,1998-07-05T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
solanosun.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
somersettimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sonsoflibertymedia.com,unreliable,0.103,1,L,FN,0.1,523789,15.0,2011-03-18T22:02:33Z,,,0.1,0.1,0.35,0.1,0.1,0.1
sonsoflibertyradio.com,conspiracy,0.09,1,,,,,16.1,2010-01-27T17:59:29Z,,,0.1,0.1,0.1,0.1,0.1,0.1
soonerstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sott.net,unreliable,0.095,1,L,CP,0.1,37609,22.1,2004-02-04T19:48:24Z,,,0.1,0.1,0.2,0.1,0.1,0.1
southabqnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southafricatoday.net,unreliable,0.118,1,M,FN,0.2,452830,12.1,2014-02-12T04:50:53Z,,,0.1,0.2,0.35,0.1,0.1,0.1
southalabamatimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southalamedanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southashevillenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southatlantanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southbayleader.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:41Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
southbaysdnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southbendtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southbergennews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southbirminghamtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
southbrowardnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southcentralreporter.com,unreliable,0.105,1,M,FN,0.2,,8.3,2017-11-28T19:23:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southcharlottetoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-18T21:49:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southcoasttimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southcolumbusnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:42Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southcooknews.com,unreliable,0.105,1,M,FN,0.2,,9.8,2016-06-07T16:40:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southcuyahoganews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southdaytonnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southdsmnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southeasterntimes.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-15T19:23:39.816Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southerncoloradotimes.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-08-12T12:20:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southernindianatoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southfranklinnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southfront.org,unreliable,0.103,1,L,CP,0.1,213481,10.9,2015-04-30T11:38:20.562Z,,,0.1,0.1,0.35,0.1,0.1,0.1
southfultontoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southgeorgiatimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:26Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
southguilfordnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southgwinnettnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southhennepinnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southindynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southiowanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:01Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southjeffconews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southjerseysun.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southkcnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southkentnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southlaketoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southlouisiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southmainenews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southmecklenburgnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:48Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
southmianews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southmichigannews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southmiddlesextimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southncnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southnewcastlenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southoctimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southohionews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southokcnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:15Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southomahatimes.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southoregonnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southorlandonews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southpalmbeachtoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southpimanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southpinellastimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southraleighnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southsactoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southsfbaynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southsfvtoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southsgvnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:40Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
southstlnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southsummitnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:54Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southtrianglenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
southtulsatoday.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southwichitanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
southwinstonsalemnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sovereignman.com,unreliable,0.103,1,,,,363685,21.1,2005-02-24T19:19:33Z,,,0.1,0.1,0.35,0.1,0.1,0.1
sovren.media,unreliable,0.192,1,L,FN,0.1,117134,4.9,2021-04-26T15:32:26.881Z,2,,0.1,0.1,0.35,0.1,0.7,0.1
space.news,unreliable,0.188,1,VL,CP,0.0,,10.7,2015-07-12T17:00:00.587Z,1,,0.1,0.0,0.1,0.1,0.85,0.1
speech-point.com,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
speisa.com,unreliable,0.09,1,L,FN,0.1,,12.3,2013-11-17T08:51:06Z,,,0.1,0.1,0.1,0.1,0.1,0.1
speld.nl,satire,0.273,1,,,,192425,23.1,2003-02-11T23:36:37Z,,,0.3,0.3,0.35,0.3,0.3,0.3
sportspickle.com,satire,0.265,1,,,,,0.2,2025-12-25T19:21:08Z,,,0.3,0.3,0.3,0.2,0.3,0.3
springfieldcitywire.com,unreliable,0.105,1,M,FN,0.2,,5.3,2020-12-07T03:17:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
springfieldstandard.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
springstimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sputniknews.com,mixed,0.145,2,VL,FN,0.0,5299,14.4,2011-10-24T00:15:14Z,,,0.2,0.0,0.1,0.2,0.2,0.2
squawker.org,unreliable,0.09,1,L,FN,0.1,,9.2,2017-01-14T23:30:54.84Z,,,0.1,0.1,0.1,0.1,0.1,0.1
stanislausnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:14Z,,,0.1,0.2,0.1,0.1,0.1,0.1
staresattheworld.com,unreliable,0.09,1,L,FN,0.1,,16.3,2009-11-16T19:37:16Z,,,0.1,0.1,0.1,0.1,0.1,0.1
stateofthenation.co,unreliable,0.103,1,L,FN,0.1,368495,,,,,0.1,0.1,0.35,0.1,0.1,0.1
stateofthenation2012.com,unreliable,0.103,1,L,FN,0.1,902409,13.8,2012-05-11T15:50:12Z,,,0.1,0.1,0.35,0.1,0.1,0.1
stcharlestimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:17Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
stclairtoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
stcloudsun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
steadfastandloyal.com,unreliable,0.105,1,M,FN,0.2,,8.9,2017-04-10T03:23:58Z,,,0.1,0.2,0.1,0.1,0.1,0.1
steadfastclash.com,unreliable,0.105,1,M,FN,0.2,,6.3,2019-12-16T22:18:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
steadfastdaily.com,unreliable,0.105,1,M,FN,0.2,,8.2,2018-01-09T21:04:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
stillnessinthestorm.com,unreliable,0.103,1,L,CP,0.1,398060,10.7,2015-07-22T16:37:07Z,,,0.1,0.1,0.35,0.1,0.1,0.1
stjoebentonharbor.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
stlouisreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
stlrecord.com,unreliable,0.105,1,M,FN,0.2,,9.3,2016-12-07T15:30:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
stlwestnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T22:25:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
stneotscitizen.com,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
stonecoldtruth.com,unreliable,0.09,1,L,FN,0.1,,10.7,2015-07-13T18:22:10Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
stoppingsocialism.com,unreliable,0.105,1,M,FN,0.2,,7.6,2018-07-23T23:30:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
stormcloudsgathering.com,fake,0.053,2,L,CP,0.1,,14.2,2012-01-19T13:25:14Z,,,0.05,0.1,0.05,0.05,0.05,0.05
stormer-daily.rw,unreliable,0.075,1,VL,FN,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
stormfront.org,unreliable,0.088,1,VL,CP,0.0,104292,31.2,1995-01-11T05:00:00.218Z,,,0.1,0.0,0.35,0.1,0.1,0.1
stpaulreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
stpetestandard.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
straffordnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:25Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
strategic-culture.org,unreliable,0.088,1,VL,FN,0.0,137224,15.8,2010-06-08T15:29:02.317Z,,,0.1,0.0,0.35,0.1,0.1,0.1
stream.org,unreliable,0.118,1,M,CP,0.2,205366,24.8,2001-06-01T10:53:00.489Z,,,0.1,0.2,0.35,0.1,0.1,0.1
studionewsnetwork.com,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
stuppid.com,satire,0.27,1,,,,,13.7,2012-06-19T10:07:27Z,0,,0.3,0.3,0.3,0.3,0.3,0.3
sturgiscoldwaternews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
subjectpolitics.com,fake,0.053,2,L,FN,0.1,,13.8,2012-06-15T23:53:53Z,,,0.05,0.1,0.05,0.05,0.05,0.05
success-street.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
suffolkreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
summerlinreporter.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
summit.news,unreliable,0.108,1,L,FN,0.1,101592,1.1,2025-02-07T15:15:38.611Z,,,0.1,0.1,0.35,0.2,0.1,0.1
sumtertimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sunflowerstatenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sunshinesentinel.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
supplementreference.com,unreliable,0.075,1,VL,CP,0.0,,19.8,2006-05-16T19:07:54Z,,,0.1,0.0,0.1,0.1,0.1,0.1
supportisraelnow.com,unreliable,0.09,1,L,FN,0.1,,2.0,2024-03-20T07:48:28Z,,,0.1,0.1,0.1,0.1,0.1,0.1
supremepatriot.com,fake,0.045,1,,,,,8.3,2017-11-13T19:31:33Z,,,0.05,0.05,0.05,0.05,0.05,0.05
surrealscoop.com,satire,0.27,1,,,,,18.7,2007-06-24T06:51:01Z,0,,0.3,0.3,0.3,0.3,0.3,0.3
survival.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-12T23:47:29.813Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
survivalblog.com,unreliable,0.103,1,L,FN,0.1,256942,20.7,2005-07-05T18:21:28Z,,,0.1,0.1,0.35,0.1,0.1,0.1
survivethenews.com,unreliable,0.103,1,L,FN,0.1,627122,5.3,2020-11-15T23:36:07Z,,,0.1,0.1,0.35,0.1,0.1,0.1
sussexreview.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
sustainablepulse.com,unreliable,0.103,1,L,CP,0.1,629085,14.1,2012-01-31T16:15:06Z,,,0.1,0.1,0.35,0.1,0.1,0.1
swalaskanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swampdrain.com,unreliable,0.09,1,L,FN,0.1,,9.4,2016-10-30T00:26:19Z,,,0.1,0.1,0.1,0.1,0.1,0.1
swarajyamag.com,unreliable,0.095,1,L,FN,0.1,86831,11.9,2014-04-18T14:12:03Z,,,0.1,0.1,0.2,0.1,0.1,0.1
swarizonanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swarkansastimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swbluegrassnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swcoloradonews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:43Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swconnnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swgeorgianews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swillinoisnews.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-01-27T18:55:57Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swindiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swiowatimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swkansasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swlouisiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swminnesotatoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swmissnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swmissourinews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swmontanatimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:52Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swnewhampshirenews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swnewmexiconews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swoklahomanews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swprs.org,unreliable,0.14,1,M,CP,0.2,128556,8.6,2017-07-27T19:48:15.985Z,5,,0.1,0.2,0.35,0.1,0.25,0.1
swriversidenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:39Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swvalleytimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
swvegasnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
syracusesun.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
syriana-analysis.com,unreliable,0.105,1,M,FN,0.2,,9.1,2017-02-02T23:28:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
syrianews.cc,unreliable,0.103,1,L,FN,0.1,938763,14.3,2011-11-17T08:36:50Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
tabascopost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:51:01Z,,,0.1,0.2,0.1,0.1,0.1,0.1
takimag.com,unreliable,0.103,1,L,FN,0.1,226089,19.1,2007-01-22T20:12:57Z,,,0.1,0.1,0.35,0.1,0.1,0.1
talknetwork.com,unreliable,0.075,1,VL,CP,0.0,,23.7,2002-06-22T18:06:12Z,,,0.1,0.0,0.1,0.1,0.1,0.1
tallahasseesun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tamaulipaspost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:51:01Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tamparepublic.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tashnews.com,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
tasnimnews.com,unreliable,0.11,1,M,FN,0.2,28292,13.7,2012-07-10T12:44:36Z,,,0.1,0.2,0.2,0.1,0.1,0.1
tass.com,unreliable,0.11,1,M,FN,0.2,13911,32.5,1993-09-17T04:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
tass.ru,unreliable,0.105,1,M,FN,0.2,3689,,,6,,0.1,0.2,0.1,0.1,0.1,0.1
tbdailynews.com,unreliable,0.118,1,M,FN,0.2,736340,7.3,2018-11-16T15:25:13Z,,,0.1,0.2,0.35,0.1,0.1,0.1
tdnewswire.com,unreliable,0.08,1,VL,FN,0.0,,0.4,2025-10-28T21:51:59Z,,,0.1,0.0,0.1,0.2,0.1,0.1
tdtalliance.com,fake,0.053,2,L,FN,0.1,,10.5,2015-09-08T21:07:35Z,,,0.05,0.1,0.05,0.05,0.05,0.05
teaparty.org,fake,0.068,2,L,FN,0.1,704500,21.5,2004-09-02T18:54:10.753Z,,,0.05,0.1,0.35,0.05,0.05,0.05
teapartypatriots.org,unreliable,0.118,1,M,FN,0.2,624716,17.0,2009-03-10T22:59:23.005Z,,,0.1,0.2,0.35,0.1,0.1,0.1
technocracy.news,unreliable,0.088,1,VL,CP,0.0,153399,10.5,2015-09-14T13:37:25.583Z,,,0.1,0.0,0.35,0.1,0.1,0.1
technocrats.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:08.767Z,,,0.1,0.0,0.1,0.1,0.1,0.1
techstartups.com,unreliable,0.118,1,M,FN,0.2,136084,22.7,2003-07-17T18:18:34Z,,,0.1,0.2,0.35,0.1,0.1,0.1
tehrantimes.com,unreliable,0.11,1,M,FN,0.2,30418,27.5,1998-09-11T04:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
telesurenglish.net,unreliable,0.11,1,M,FN,0.2,86388,11.9,2014-04-29T20:06:36Z,,,0.1,0.2,0.2,0.1,0.1,0.1
tellerreport.com,unreliable,0.118,1,M,FN,0.2,119912,7.7,2018-07-09T15:55:02Z,,,0.1,0.2,0.35,0.1,0.1,0.1
tennesseestar.com,unreliable,0.118,1,M,FN,0.2,185833,9.2,2017-01-10T23:15:48Z,,,0.1,0.2,0.35,0.1,0.1,0.1
tfp.org,unreliable,0.103,1,L,FN,0.1,479840,29.1,1997-02-20T05:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thatviralfeed.net,fake,0.045,1,,,,,9.7,2016-06-29T10:20:46Z,,,0.05,0.05,0.05,0.05,0.05,0.05
the-insider.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
thealternativedaily.com,unreliable,0.103,1,L,CP,0.1,206282,14.3,2011-12-07T15:51:50Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
theamericanindependent.wordpress.com,fake,0.045,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.05,0.05,0.05,0.05,0.05,0.05
theamericanmirror.com,unreliable,0.103,1,L,FN,0.1,715664,11.3,2014-12-14T14:38:04Z,,,0.1,0.1,0.35,0.1,0.1,0.1
theantimedia.org,unreliable,0.103,1,,,,396699,13.8,2012-05-30T23:51:15.68Z,,,0.1,0.1,0.35,0.1,0.1,0.1
theautomaticearth.com,unreliable,0.103,1,L,CP,0.1,542770,18.1,2008-02-18T17:38:08Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thebeardedpatriot.com,unreliable,0.09,1,L,FN,0.1,,12.3,2013-12-05T13:49:46Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thebeaverton.com,satire,0.273,1,,,,301879,16.1,2010-02-18T03:58:22Z,,,0.3,0.3,0.35,0.3,0.3,0.3
thebeltwayreport.com,unreliable,0.105,1,M,FN,0.2,,7.3,2018-11-13T16:56:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thebigriddle.com,fake,0.045,1,,,,,12.1,2014-02-21T14:21:30Z,,,0.05,0.05,0.05,0.05,0.05,0.05
thebl.com,unreliable,0.105,1,M,FN,0.2,,7.7,2018-07-03T18:20:06Z,,,0.1,0.2,0.1,0.1,0.1,0.1
theblacksphere.net,unreliable,0.105,1,M,FN,0.2,,17.0,2009-03-07T07:32:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
theblaze.com,mixed,0.18,2,M,FN,0.2,14538,25.5,2000-09-26T11:10:10Z,,,0.2,0.2,0.2,0.2,0.2,0.2
thebluestateconservative.com,unreliable,0.09,1,L,FN,0.1,,5.6,2020-07-28T18:30:54Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thebostontribune.com,fake,0.045,1,,,,,9.5,2016-09-17T21:10:34Z,,,0.05,0.05,0.05,0.05,0.05,0.05
thebreakingnews.com,unreliable,0.09,1,L,FN,0.1,,26.6,1999-08-09T15:44:03Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thecancunpost.com,unreliable,0.105,1,M,FN,0.2,,5.7,2020-07-22T04:01:55Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thecoloradoherald.com,unreliable,0.09,1,L,FN,0.1,,5.8,2020-06-05T17:15:23Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thecommonsenseshow.com,fake,0.053,2,VL,CP,0.0,450182,13.5,2012-08-31T21:16:27Z,,,0.05,0.0,0.35,0.05,0.05,0.05
theconnecticutstar.com,unreliable,0.105,1,M,FN,0.2,,4.2,2021-12-20T21:21:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
theconservativebrief.com,unreliable,0.105,1,M,FN,0.2,,7.8,2018-05-15T21:15:08Z,,,0.1,0.2,0.1,0.1,0.1,0.1
theconservativecentral.com,unreliable,0.09,1,L,FN,0.1,,5.5,2020-09-18T19:32:27Z,,,0.1,0.1,0.1,0.1,0.1,0.1
theconservativetreehouse.com,unreliable,0.095,1,L,FN,0.1,69860,14.4,2011-10-08T00:58:07Z,,,0.1,0.1,0.2,0.1,0.1,0.1
thecontroversialfiles.net,fake,0.045,1,,,,,8.3,2017-12-09T19:41:32Z,,,0.05,0.05,0.05,0.05,0.05,0.05
thecountersignal.com,unreliable,0.118,1,M,FN,0.2,732430,4.9,2021-04-08T19:28:35Z,,,0.1,0.2,0.35,0.1,0.1,0.1
thecovidworld.com,unreliable,0.08,1,VL,FN,0.0,,0.2,2026-01-08T19:07:14Z,,,0.1,0.0,0.1,0.2,0.1,0.1
thedailybeast.com,mixed,0.175,1,,,,2972,20.5,2005-09-08T19:37:11Z,,,0.2,0.2,0.1,0.2,0.2,0.2
thedailybell.com,unreliable,0.103,1,L,FN,0.1,314132,17.7,2008-06-19T13:28:18Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thedailycheck.net,unreliable,0.105,1,M,CP,0.2,,9.0,2017-03-25T02:30:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thedailyconspiracy.com,unreliable,0.09,1,L,CP,0.1,,9.0,2017-03-24T16:53:16Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
thedailymash.co.uk,satire,0.273,1,,,,163777,19.0,2007-03-27T15:46:32Z,,,0.3,0.3,0.35,0.3,0.3,0.3
thedailysheeple.com,conspiracy,0.103,2,L,CP,0.1,465262,16.1,2010-02-12T21:27:43Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thedailywtf.com,satire,0.265,1,,,,67134,21.8,2004-05-21T17:23:22Z,,,0.3,0.3,0.2,0.3,0.3,0.3
thedcpatriot.com,unreliable,0.09,1,L,FN,0.1,,7.1,2019-01-23T22:23:29Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thedesertreview.com,unreliable,0.118,1,M,FN,0.2,328071,13.8,2012-06-11T23:01:29Z,,,0.1,0.2,0.35,0.1,0.1,0.1
theduran.com,unreliable,0.103,2,L,FN,0.1,158016,9.9,2016-04-26T09:02:45Z,,,0.1,0.1,0.35,0.1,0.1,0.1
theeconomiccollapseblog.com,conspiracy,0.095,1,,,,97880,16.2,2009-12-24T22:41:49Z,,,0.1,0.1,0.2,0.1,0.1,0.1
theepochtimes.com,unreliable,0.218,1,M,FN,0.2,5405,22.2,2003-12-17T04:02:03Z,1,,0.1,0.2,0.1,0.1,0.85,0.1
theeventchronicle.com,conspiracy,0.103,2,L,CP,0.1,548502,11.9,2014-04-18T03:19:50Z,,,0.1,0.1,0.35,0.1,0.1,0.1
theexpose.uk,unreliable,0.088,1,VL,CP,0.0,865989,5.1,2021-02-14T19:28:52Z,,,0.1,0.0,0.35,0.1,0.1,0.1
theextinctionprotocol.com,conspiracy,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
thefederalist.com,unreliable,0.11,1,M,FN,0.2,21297,14.0,2012-03-16T18:02:49Z,,,0.1,0.2,0.2,0.1,0.1,0.1
thefederalistpapers.org,mixed,0.173,2,L,FN,0.1,273654,15.1,2011-02-26T00:35:37.936Z,,,0.2,0.1,0.35,0.2,0.2,0.2
thefifthcolumnnews.com,mixed,0.18,1,,,,,11.1,2015-01-29T01:55:53Z,0,,0.2,0.2,0.2,0.2,0.2,0.2
theforbiddenknowledge.com,conspiracy,0.103,2,L,CP,0.1,559441,26.6,1999-08-24T19:23:43Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thefreedomtimes.com,unreliable,0.09,1,L,FN,0.1,,7.5,2018-09-02T21:09:38Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thefreepatriot.org,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
thefreethoughtproject.com,unreliable,0.103,2,L,CP,0.1,117939,12.4,2013-10-08T00:50:23Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thefrisky.com,unreliable,0.11,1,M,FN,0.2,84432,18.4,2007-10-31T16:52:43Z,,,0.1,0.2,0.2,0.1,0.1,0.1
thefullertoninformer.com,unreliable,0.075,1,VL,CP,0.0,,13.0,2013-03-05T03:57:46Z,,,0.1,0.0,0.1,0.1,0.1,0.1
thegatewaypundit.com,mixed,0.15,2,VL,FN,0.0,12198,15.1,2011-01-27T04:30:57Z,,,0.2,0.0,0.2,0.2,0.2,0.2
thegoldandoilguy.com/articles,unreliable,0.09,1,,,,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
thegoldwater.com,unreliable,0.103,1,L,FN,0.1,118852,9.5,2016-09-07T09:30:21Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thegoptimes.com,unreliable,0.105,1,M,FN,0.2,,5.8,2020-06-12T13:27:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thegrayzone.com,unreliable,0.11,1,M,FN,0.2,68064,14.8,2011-05-31T19:14:09Z,,,0.1,0.2,0.2,0.1,0.1,0.1
theguadalajarapost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:51:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
theguerreropost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:50:57Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thehardtimes.net,satire,0.273,1,,,,209036,11.3,2014-11-10T05:02:39Z,,,0.3,0.3,0.35,0.3,0.3,0.3
thehayride.com,unreliable,0.103,1,L,FN,0.1,732020,16.9,2009-04-17T00:21:01Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thehealthyamerican.org,unreliable,0.075,1,VL,CP,0.0,,5.8,2020-05-18T02:47:51.417Z,,,0.1,0.0,0.1,0.1,0.1,0.1
thehighwire.com,unreliable,0.103,1,L,CP,0.1,169531,21.6,2004-08-07T18:12:02Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thehornnews.com,unreliable,0.103,1,L,FN,0.1,285800,10.8,2015-06-10T19:49:07Z,,,0.1,0.1,0.35,0.1,0.1,0.1
theineptowl.com,satire,0.27,1,,,,,19.1,2007-02-22T17:02:20Z,,,0.3,0.3,0.3,0.3,0.3,0.3
theinformedamerican.net,unreliable,0.09,1,,,,,10.0,2016-03-03T21:10:47Z,,,0.1,0.1,0.1,0.1,0.1,0.1
theintercept.com,mixed,0.205,1,,,,6315,16.5,2009-10-01T04:47:08Z,4,,0.2,0.2,0.1,0.2,0.4,0.2
theinternetpost.net,fake,0.053,1,,,,,1.7,2024-07-06T18:04:52Z,,,0.05,0.05,0.05,0.2,0.05,0.05
theiowastar.com,unreliable,0.105,1,M,FN,0.2,,7.7,2018-06-23T18:20:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
theirishsentinel.com,unreliable,0.075,1,VL,CP,0.0,,6.2,2019-12-17T11:30:26Z,,,0.1,0.0,0.1,0.1,0.1,0.1
thejeffreylord.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-25T18:14:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thejewishvoice.com,unreliable,0.118,1,M,FN,0.2,756116,9.4,2016-10-08T18:04:31Z,,,0.1,0.2,0.35,0.1,0.1,0.1
thelastamericanvagabond.com,unreliable,0.103,1,L,FN,0.1,241880,12.8,2013-06-10T00:18:20Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thelastgreatstand.com,fake,0.045,1,,,,,7.2,2019-01-03T19:12:13Z,,,0.05,0.05,0.05,0.05,0.05,0.05
thelastlineofdefense.org,satire,0.285,1,,,,,10.2,2016-01-19T01:31:59.603Z,4,,0.3,0.3,0.3,0.3,0.4,0.3
thelaughclub.net,unreliable,0.09,1,L,FN,0.1,,6.6,2019-07-24T13:31:06Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thelibertybeacon.com,conspiracy,0.103,2,L,CP,0.1,310463,13.4,2012-10-15T14:42:11Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thelibertydaily.com,unreliable,0.11,1,M,FN,0.2,88220,11.4,2014-10-14T02:39:10Z,,,0.1,0.2,0.2,0.1,0.1,0.1
thelibertyloft.com,unreliable,0.105,1,M,FN,0.2,,6.1,2020-02-13T02:01:58Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thelibertymill.com,unreliable,0.09,1,,,,,13.9,2012-05-02T16:20:36Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thelibertyrevolution.com,unreliable,0.09,1,L,FN,0.1,,6.7,2019-06-22T05:01:50Z,,,0.1,0.1,0.1,0.1,0.1,0.1
themadisonmisnomer.com,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
themazatlanpost.com,unreliable,0.118,1,M,FN,0.2,577387,7.9,2018-04-14T20:44:15Z,,,0.1,0.2,0.35,0.1,0.1,0.1
themexicocitypost.com,unreliable,0.105,1,M,FN,0.2,,7.2,2019-01-07T06:48:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
themichiganstar.com,unreliable,0.105,1,M,FN,0.2,,9.2,2017-01-15T20:10:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
themideastbeast.com,satire,0.27,1,,,,,11.0,2015-03-01T08:50:52Z,,,0.3,0.3,0.3,0.3,0.3,0.3
themillenniumreport.com,unreliable,0.103,1,L,FN,0.1,422722,11.7,2014-07-08T17:58:39Z,,,0.1,0.1,0.35,0.1,0.1,0.1
themindunleashed.com,conspiracy,0.103,2,L,CP,0.1,400595,13.2,2013-01-18T00:38:35Z,,,0.1,0.1,0.35,0.1,0.1,0.1
themindunleashed.org,conspiracy,0.103,1,,,,464070,12.9,2013-04-12T21:40:52.696Z,,,0.1,0.1,0.35,0.1,0.1,0.1
theminnesotasun.com,unreliable,0.105,1,M,FN,0.2,,7.7,2018-06-23T03:30:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
themoralofthestory.us,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
themostimportantnews.com,unreliable,0.103,1,L,FN,0.1,538469,16.8,2009-05-19T02:38:23Z,,,0.1,0.1,0.35,0.1,0.1,0.1
themuslimissue.wordpress.com,unreliable,0.135,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.15,0.15,0.15,0.15,0.15,0.15
thenationalnews.com,unreliable,0.105,1,M,FN,0.2,7747,21.2,2005-01-12T19:23:55Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thenationalpatriot.com,unreliable,0.09,1,L,FN,0.1,,14.7,2011-07-17T16:47:55Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thenationalpulse.com,unreliable,0.118,1,M,FN,0.2,124837,9.3,2016-11-15T19:31:20Z,0,,0.1,0.2,0.35,0.1,0.1,0.1
thenayaritpost.com,unreliable,0.105,1,M,FN,0.2,,5.7,2020-07-17T15:59:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thenet24h.com,fake,0.053,1,,,,,0.9,2025-04-11T18:20:15Z,,,0.05,0.05,0.05,0.2,0.05,0.05
thenevadannews.com,unreliable,0.105,1,M,FN,0.2,,3.0,2023-03-28T16:28:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thenewamerican.com,mixed,0.18,1,,,,41099,26.9,1999-04-15T04:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
thenewsdoctors.com,mixed,0.18,1,,,,,4.8,2021-06-15T18:24:30Z,,,0.2,0.2,0.2,0.2,0.2,0.2
thenewsnerd.com,satire,0.27,1,,,,,6.1,2020-02-19T19:24:49Z,,,0.3,0.3,0.3,0.3,0.3,0.3
thenewyorkevening.com,fake,0.045,1,,,,,9.9,2016-04-23T18:30:32Z,,,0.05,0.05,0.05,0.05,0.05,0.05
theoaxacapost.com,unreliable,0.105,1,M,FN,0.2,,5.7,2020-06-17T23:31:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
theohiostar.com,unreliable,0.105,1,M,FN,0.2,,9.2,2017-01-15T20:10:53Z,,,0.1,0.2,0.1,0.1,0.1,0.1
theonion.com,satire,0.26,1,,,,7380,31.0,1995-03-21T05:00:00Z,,,0.3,0.3,0.1,0.3,0.3,0.3
theorganicprepper.com,unreliable,0.118,1,M,CP,0.2,436397,12.1,2014-01-30T19:12:55Z,0,,0.1,0.2,0.35,0.1,0.1,0.1
thepatriotictimes.com,unreliable,0.105,1,M,FN,0.2,,6.8,2019-05-14T13:40:58Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thepatriotjournal.com,unreliable,0.118,1,M,FN,0.2,618751,9.8,2016-05-31T20:47:17Z,,,0.1,0.2,0.35,0.1,0.1,0.1
thepatriotlight.com,unreliable,0.09,1,L,FN,0.1,,6.8,2019-05-21T04:55:25Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thepatriotnation.net,unreliable,0.09,1,L,FN,0.1,,12.8,2013-05-13T15:04:06Z,0,,0.1,0.1,0.1,0.1,0.1,0.1
thepatriotnurse.com,unreliable,0.105,1,M,FN,0.2,,15.2,2011-01-12T21:02:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thephaser.com,conspiracy,0.075,2,VL,CP,0.0,,12.2,2013-12-17T00:43:13Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
thepoke.co.uk,satire,0.273,1,,,,286479,24.0,2002-03-22T16:16:31Z,,,0.3,0.3,0.35,0.3,0.3,0.3
thepoliticalinsider.com,conspiracy,0.103,2,L,FN,0.1,225683,19.8,2006-05-31T22:53:37Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thepolitics.online,unreliable,0.095,1,L,FN,0.1,,0.5,2025-09-19T04:33:21.0Z,,,0.1,0.1,0.1,0.2,0.1,0.1
thepoliticsbrief.com,unreliable,0.105,1,M,FN,0.2,,2.9,2023-04-29T07:19:50Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thepostemail.com,unreliable,0.118,1,M,FN,0.2,752088,16.4,2009-11-06T20:03:38Z,,,0.1,0.2,0.35,0.1,0.1,0.1
theproudliberal.org,unreliable,0.105,1,M,FN,0.2,,9.6,2016-07-29T18:39:42.689Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thepublicdiscourse.com,unreliable,0.103,1,L,FN,0.1,120491,17.5,2008-09-15T15:44:12Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thepulse.one,unreliable,0.09,1,L,CP,0.1,,4.9,2021-04-28T21:09:30Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thepuristonline.com,unreliable,0.09,1,L,CP,0.1,,9.2,2017-01-20T18:25:37Z,,,0.1,0.1,0.1,0.1,0.1,0.1
theqanons.com,unreliable,0.075,1,VL,CP,0.0,,6.9,2019-04-05T16:21:24Z,,,0.1,0.0,0.1,0.1,0.1,0.1
theracketreport.com,fake,0.045,1,,,,,11.1,2015-02-06T01:09:51Z,0,,0.05,0.05,0.05,0.05,0.05,0.05
theragingpatriot.org,unreliable,0.09,1,L,FN,0.1,,4.8,2021-05-16T13:20:00.614Z,,,0.1,0.1,0.1,0.1,0.1,0.1
therealstrategy.com,mixed,0.18,1,,,,,5.3,2020-12-14T19:15:10Z,,,0.2,0.2,0.2,0.2,0.2,0.2
theredelephants.com,unreliable,0.075,1,VL,FN,0.0,,9.3,2016-11-10T21:43:26Z,,,0.1,0.0,0.1,0.1,0.1,0.1
theregionnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thereligionofpeace.com,unreliable,0.103,1,L,FN,0.1,189445,23.3,2002-11-21T14:22:44Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thereporterz.com,fake,0.045,1,,,,,5.6,2020-08-24T18:12:23Z,,,0.05,0.05,0.05,0.05,0.05,0.05
therightists.com,satire,0.24,2,L,FN,0.1,,9.9,2016-04-10T13:33:16Z,0,,0.3,0.1,0.3,0.3,0.3,0.3
therightscoop.com,fake,0.083,2,M,FN,0.2,159653,17.1,2009-01-25T21:12:54Z,,,0.05,0.2,0.35,0.05,0.05,0.05
therightstuff.biz,unreliable,0.113,2,VL,FN,0.0,,13.4,2012-10-04T03:18:13Z,,,0.15,0.0,0.15,0.15,0.15,0.15
therundownlive.com,unreliable,0.09,1,L,CP,0.1,,12.8,2013-06-12T20:03:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thescoop.us,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
theseattletribune.com,satire,0.27,1,,,,,9.2,2017-01-02T00:19:00Z,,,0.3,0.3,0.3,0.3,0.3,0.3
theshovel.com.au,satire,0.273,1,,,,498496,,,,,0.3,0.3,0.35,0.3,0.3,0.3
theskunk.org,satire,0.27,1,,,,,17.6,2008-07-31T02:32:29.872Z,,,0.3,0.3,0.3,0.3,0.3,0.3
thesonorapost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:50:57Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thespectator.info,unreliable,0.075,1,VL,FN,0.0,,6.3,2019-12-02T18:57:27.167Z,,,0.1,0.0,0.1,0.1,0.1,0.1
thespoof.com,satire,0.273,1,,,,391937,23.0,2003-03-25T17:36:31Z,,,0.3,0.3,0.35,0.3,0.3,0.3
thestarnewsnetwork.com,unreliable,0.118,1,M,FN,0.2,567900,6.2,2020-01-01T17:55:36Z,,,0.1,0.2,0.35,0.1,0.1,0.1
thestatelyharold.com,satire,0.27,1,,,,,6.9,2019-04-18T18:04:12Z,0,,0.3,0.3,0.3,0.3,0.3,0.3
thetimesoftheworld.com,satire,0.27,1,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3
thetruedefender.com,unreliable,0.09,1,L,FN,0.1,,5.2,2021-01-05T22:38:59Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thetruereporter.com,unreliable,0.09,1,L,FN,0.1,,5.2,2021-01-20T22:28:31Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thetrumpet.com,unreliable,0.118,1,M,CP,0.2,150519,27.8,1998-05-19T04:00:00Z,,,0.1,0.2,0.35,0.1,0.1,0.1
thetrumpmedia.com,fake,0.045,1,,,,,3.0,2023-03-09T04:17:06Z,,,0.05,0.05,0.05,0.05,0.05,0.05
thetruthaboutcancer.com,unreliable,0.173,2,L,CP,0.1,242977,15.2,2011-01-13T19:29:42Z,,,0.2,0.1,0.35,0.2,0.2,0.2
thetruthdivision.com,fake,0.045,1,,,,,10.1,2016-02-21T20:33:40Z,,,0.05,0.05,0.05,0.05,0.05,0.05
thetruthseeker.co.uk,fake,0.068,2,L,CP,0.1,251055,23.5,2002-08-30T08:59:04Z,,,0.05,0.1,0.35,0.05,0.05,0.05
thetruthvoice.net,unreliable,0.09,1,L,FN,0.1,,,,,,0.1,0.1,0.1,0.1,0.1,0.1
thetruthwins.com,unreliable,0.188,1,,,,992429,16.9,2009-04-12T00:49:13Z,,,0.2,0.2,0.35,0.2,0.2,0.2
theunionjournal.com,unreliable,0.103,1,L,FN,0.1,593430,6.9,2019-04-23T14:11:24Z,,,0.1,0.1,0.35,0.1,0.1,0.1
theunrealtimes.com,satire,0.27,1,,,,,14.9,2011-05-04T05:47:44Z,0,,0.3,0.3,0.3,0.3,0.3,0.3
theusa-news.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
theuspatriot.com,satire,0.265,1,,,,,1.2,2024-12-22T19:21:52Z,,,0.3,0.3,0.3,0.2,0.3,0.3
thevaccinereaction.org,unreliable,0.103,1,L,CP,0.1,491491,13.2,2013-01-09T15:15:28.009Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thevalleyreport.com,satire,0.27,1,,,,,10.6,2015-08-28T22:41:53Z,,,0.3,0.3,0.3,0.3,0.3,0.3
thevirginiastar.com,unreliable,0.105,1,M,FN,0.2,,9.2,2017-01-15T20:14:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thewashingtonpress.com,fake,0.045,1,,,,,7.0,2019-03-11T18:08:00Z,,,0.05,0.05,0.05,0.05,0.05,0.05
thewashingtonstandard.com,unreliable,0.103,1,L,FN,0.1,385673,12.6,2013-08-20T13:54:24Z,,,0.1,0.1,0.35,0.1,0.1,0.1
thewatchtowers.com,mixed,0.18,1,,,,,15.1,2011-02-22T17:16:17Z,,,0.2,0.2,0.2,0.2,0.2,0.2
theyucatanpost.com,unreliable,0.105,1,M,FN,0.2,,8.1,2018-02-02T17:22:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thieme.de,unreliable,0.11,1,M,CP,0.2,34385,,,,,0.1,0.2,0.2,0.1,0.1,0.1
thinkamericana.com,unreliable,0.09,1,L,FN,0.1,,9.1,2017-02-09T20:34:34Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thinkinghumanity.com,unreliable,0.09,1,L,CP,0.1,,12.1,2014-02-21T02:03:07Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thinkingmomsrevolution.com,unreliable,0.09,1,L,CP,0.1,,14.4,2011-10-09T02:06:09Z,,,0.1,0.1,0.1,0.1,0.1,0.1
thinkprogress.org,mixed,0.18,1,,,,15671,21.2,2004-12-23T22:11:24.104Z,,,0.2,0.2,0.2,0.2,0.2,0.2
thoughtcrimeradio.net,unreliable,0.075,1,VL,CP,0.0,,16.6,2009-08-22T00:56:21Z,,,0.1,0.0,0.1,0.1,0.1,0.1
threepercenternation.com,fake,0.045,1,,,,,11.8,2014-05-20T20:31:47Z,0,,0.05,0.05,0.05,0.05,0.05,0.05
threeriversgazette.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:13Z,,,0.1,0.2,0.1,0.1,0.1,0.1
thriveglobal.com,unreliable,0.11,1,M,CP,0.2,19568,16.8,2009-05-31T16:23:04Z,,,0.1,0.2,0.2,0.1,0.1,0.1
thrivemovement.com,unreliable,0.103,1,L,CP,0.1,754495,17.1,2009-02-11T19:48:35Z,0,,0.1,0.1,0.35,0.1,0.1,0.1
thumbreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:51Z,,,0.1,0.2,0.1,0.1,0.1,0.1
times.com.mx,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
tmzworldnews.com,fake,0.045,1,,,,,6.5,2019-09-15T18:28:31Z,,,0.05,0.05,0.05,0.05,0.05,0.05
tobacconewswire.com,unreliable,0.105,1,M,FN,0.2,,7.1,2019-02-20T15:44:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
toddstarnes.com,unreliable,0.118,1,M,FN,0.2,479849,23.2,2003-01-16T02:22:20Z,0,,0.1,0.2,0.35,0.1,0.1,0.1
toledoreporter.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:10Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tomwoods.com,mixed,0.188,1,,,,720937,24.2,2001-12-27T19:57:25Z,,,0.2,0.2,0.35,0.2,0.2,0.2
toofab.com,unreliable,0.11,1,M,FN,0.2,45458,22.5,2003-09-20T14:01:04Z,,,0.1,0.2,0.2,0.1,0.1,0.1
topekasnews.com,satire,0.27,1,,,,,3.0,2023-03-13T18:08:23Z,,,0.3,0.3,0.3,0.3,0.3,0.3
topekasun.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:48Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
topinfopost.com,unreliable,0.18,1,,,,,13.0,2013-03-29T06:22:55Z,,,0.2,0.2,0.2,0.2,0.2,0.2
topwar.ru,unreliable,0.11,1,M,FN,0.2,13263,,,,,0.1,0.2,0.2,0.1,0.1,0.1
torontotoday.net,unreliable,0.09,1,L,FN,0.1,,3.5,2022-09-26T18:20:00Z,,,0.1,0.1,0.1,0.1,0.1,0.1
totalityofevidence.com,unreliable,0.075,1,VL,CP,0.0,,4.2,2022-01-12T22:26:45Z,,,0.1,0.0,0.1,0.1,0.1,0.1
toutiao.com,unreliable,0.218,1,M,FN,0.2,3094,22.1,2004-02-16T06:00:15Z,1,,0.1,0.2,0.1,0.1,0.85,0.1
tplnews.com,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
tpusa.com,unreliable,0.103,1,L,FN,0.1,125876,23.6,2002-08-25T18:03:39Z,,,0.1,0.1,0.35,0.1,0.1,0.1
treason.news,unreliable,0.075,1,VL,CP,0.0,,10.4,2015-11-05T18:30:52.59Z,,,0.1,0.0,0.1,0.1,0.1,0.1
treasurecoastsun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
treasurevalleytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
trendingpolitics.com,unreliable,0.103,1,L,FN,0.1,895560,9.2,2016-12-20T18:38:32Z,,,0.1,0.1,0.35,0.1,0.1,0.1
trendingpoliticsnews.com,unreliable,0.118,1,M,FN,0.2,170216,4.0,2022-03-03T18:15:33Z,,,0.1,0.2,0.35,0.1,0.1,0.1
tri-cityrecord.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:43.226Z,,,0.1,0.2,0.1,0.1,0.1,0.1
trialsitenews.com,unreliable,0.118,1,M,CP,0.2,206927,7.8,2018-05-22T06:35:59Z,,,0.1,0.2,0.35,0.1,0.1,0.1
trianglenews.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:38.243Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tricitysun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
triconews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
triggerreset.net,unreliable,0.095,1,L,FN,0.1,,0.1,2026-02-12T01:36:23Z,,,0.1,0.1,0.1,0.2,0.1,0.1
trueactivist.com,unreliable,0.173,2,L,FN,0.1,207389,14.5,2011-09-07T09:36:16Z,,,0.2,0.1,0.35,0.2,0.2,0.2
trueamericans.me,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
truepundit.com,mixed,0.173,2,L,CP,0.1,480896,10.0,2016-03-13T21:56:46Z,,,0.2,0.1,0.35,0.2,0.2,0.2
truetrumpers.com,fake,0.053,1,,,,,0.7,2025-07-17T07:14:12Z,,,0.05,0.05,0.05,0.2,0.05,0.05
trueviralnews.com,unreliable,0.075,1,VL,FN,0.0,,10.1,2016-01-25T13:28:25Z,,,0.1,0.0,0.1,0.1,0.1,0.1
trumballnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
trump.news,unreliable,0.083,1,L,FN,0.1,,10.7,2015-07-14T04:48:51.343Z,52,,0.1,0.1,0.1,0.1,0.05,0.1
trumpstudents.org,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-26T12:11:15.363Z,,,0.1,0.2,0.1,0.1,0.1,0.1
trumptrainnews.com,unreliable,0.105,1,M,FN,0.2,,9.9,2016-04-13T22:06:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
trumpvision365.com,fake,0.053,1,,,,,1.0,2025-03-17T21:46:02Z,,,0.05,0.05,0.05,0.2,0.05,0.05
trunews.com,unreliable,0.103,1,L,CP,0.1,542904,22.6,2003-08-02T22:04:50Z,,,0.1,0.1,0.35,0.1,0.1,0.1
truth11.com,unreliable,0.088,1,VL,CP,0.0,874837,16.2,2010-01-16T04:47:36Z,,,0.1,0.0,0.35,0.1,0.1,0.1
truthandaction.org,mixed,0.165,2,L,FN,0.1,,12.7,2013-07-11T22:26:45.129Z,,,0.2,0.1,0.2,0.2,0.2,0.2
truthbroadcastnetwork.com,conspiracy,0.09,1,,,,,6.8,2019-05-22T18:04:11Z,,,0.1,0.1,0.1,0.1,0.1,0.1
truthfeed.com,unreliable,0.135,1,,,,,11.2,2015-01-01T19:21:17Z,,,0.15,0.15,0.15,0.15,0.15,0.15
truthfrequencyradio.com,conspiracy,0.09,1,,,,,16.1,2010-01-22T04:55:49Z,,,0.1,0.1,0.1,0.1,0.1,0.1
truthinmedia.com,unreliable,0.103,1,L,FN,0.1,914537,26.5,1999-09-03T17:18:36Z,,,0.1,0.1,0.35,0.1,0.1,0.1
truthkings.com,mixed,0.18,1,,,,,18.8,2007-06-06T15:53:58Z,,,0.2,0.2,0.2,0.2,0.2,0.2
truthmonitor.com,unreliable,0.09,1,L,FN,0.1,,9.4,2016-10-20T21:00:56Z,,,0.1,0.1,0.1,0.1,0.1,0.1
truthrevolt.org,mixed,0.188,1,,,,291771,12.7,2013-07-03T15:32:21.075Z,,,0.2,0.2,0.35,0.2,0.2,0.2
truthuncensored.net,unreliable,0.09,1,L,FN,0.1,,12.2,2013-12-31T16:34:43Z,,,0.1,0.1,0.1,0.1,0.1,0.1
tsargrad.tv,unreliable,0.11,1,M,FN,0.2,21772,11.6,2014-07-31T12:12:27Z,,,0.1,0.2,0.2,0.1,0.1,0.1
tucsonstandard.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tularetimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tulsastandard.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:24Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tuscaloosaleader.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tuscarawasnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
twisted.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-13T23:27:30.567Z,,,0.1,0.0,0.1,0.1,0.1,0.1
twitchy.com,unreliable,0.18,1,,,,36634,23.3,2002-11-27T07:18:29Z,,,0.2,0.2,0.2,0.2,0.2,0.2
tworiversnews.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:15.283Z,,,0.1,0.2,0.1,0.1,0.1,0.1
tyranny.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:07.63Z,,,0.1,0.0,0.1,0.1,0.1,0.1
ufoholic.com,conspiracy,0.095,1,,,,,0.5,2025-10-03T18:28:32Z,,,0.1,0.1,0.1,0.2,0.1,0.1
ukcolumn.org,unreliable,0.103,1,L,CP,0.1,288439,18.2,2007-12-21T16:46:33.518Z,,,0.1,0.1,0.35,0.1,0.1,0.1
ukraina.ru,unreliable,0.11,1,M,FN,0.2,53986,,,,,0.1,0.2,0.2,0.1,0.1,0.1
unclesamsmisguidedchildren.com,mixed,0.165,2,L,FN,0.1,,14.7,2011-07-20T06:02:38Z,,,0.2,0.1,0.2,0.2,0.2,0.2
unconfirmedsources.com,satire,0.27,1,,,,,22.1,2004-02-01T19:36:14Z,,,0.3,0.3,0.3,0.3,0.3,0.3
uncoverdc.com,unreliable,0.103,1,L,FN,0.1,328843,6.8,2019-05-31T17:45:05Z,,,0.1,0.1,0.35,0.1,0.1,0.1
undergroundnewsreport.com,fake,0.165,1,,,,,9.1,2017-02-20T20:03:33Z,1,,0.05,0.05,0.05,0.05,0.85,0.05
undergroundworldnews.com,fake,0.045,1,,,,,13.0,2013-03-26T16:19:28Z,,,0.05,0.05,0.05,0.05,0.05,0.05
understandingthethreat.com,unreliable,0.09,1,L,FN,0.1,,13.7,2012-06-21T05:37:05Z,,,0.1,0.1,0.1,0.1,0.1,0.1
unioncountyreview.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
uniteamericafirst.com,unreliable,0.09,1,L,FN,0.1,,9.1,2017-02-03T02:55:02Z,,,0.1,0.1,0.1,0.1,0.1,0.1
unitedmediapublishing.com,fake,0.045,1,,,,,11.0,2015-03-17T18:03:18Z,,,0.05,0.05,0.05,0.05,0.05,0.05
unitedvoice.com,unreliable,0.118,1,M,FN,0.2,728586,25.9,2000-04-26T12:37:21Z,,,0.1,0.2,0.35,0.1,0.1,0.1
universepolitics.com,fake,0.053,1,,,,,1.8,2024-06-06T18:13:26Z,0,,0.05,0.05,0.05,0.2,0.05,0.05
unlimitedhangout.com,unreliable,0.118,1,M,CP,0.2,198168,6.0,2020-03-07T23:55:10Z,,,0.1,0.2,0.35,0.1,0.1,0.1
unmuzzlednews.com,unreliable,0.105,1,M,FN,0.2,,5.2,2021-01-12T19:02:45Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
unz.com,mixed,0.165,2,L,FN,0.1,33688,28.4,1997-11-06T05:00:00Z,0,,0.2,0.1,0.2,0.2,0.2,0.2
upgazette.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
upnorthnewswi.com,unreliable,0.118,1,M,FN,0.2,993113,6.3,2019-11-20T16:42:53Z,,,0.1,0.2,0.35,0.1,0.1,0.1
upperdeltanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:39Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
upperpeninsulatimes.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
urdupoint.com,unreliable,0.11,1,M,FN,0.2,13370,25.9,2000-05-02T20:13:49Z,,,0.1,0.2,0.2,0.1,0.1,0.1
us.blastingnews.com,satire,0.27,1,,,,,13.8,2012-05-25T18:38:25Z,,,0.3,0.3,0.3,0.3,0.3,0.3
us24news.com,unreliable,0.09,1,L,FN,0.1,,8.1,2018-02-05T05:11:11Z,,,0.1,0.1,0.1,0.1,0.1,0.1
usa-radio.com,fake,0.045,1,,,,,9.4,2016-10-21T13:13:11Z,0,,0.05,0.05,0.05,0.05,0.05,0.05
usa-television.com,fake,0.045,1,,,,,7.7,2018-07-03T18:35:16Z,0,,0.05,0.05,0.05,0.05,0.05,0.05
usa2016elections.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usacrime.com/hoodsite,unreliable,0.105,1,M,FN,0.2,,,,,,0.1,0.2,0.1,0.1,0.1,0.1
usadailyinfo.com,fake,0.045,1,,,,,8.5,2017-09-15T19:09:50Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usadailypolitics.com,fake,0.045,1,,,,,7.1,2019-02-10T19:21:53Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usadailyreview.com,unreliable,0.075,1,VL,FN,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
usadailytime.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usadosenews.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usafirstinformation.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usahitman.com,fake,0.053,2,L,CP,0.1,,16.2,2010-01-18T21:46:18Z,,,0.05,0.1,0.05,0.05,0.05,0.05
usainfobox.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usaisonline.com,unreliable,0.075,1,VL,FN,0.0,,5.4,2020-11-01T16:08:56Z,,,0.1,0.0,0.1,0.1,0.1,0.1
usamagazinestudio.com,fake,0.045,1,,,,,5.0,2021-03-09T20:49:03Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usanewsflash.com,fake,0.045,1,,,,,8.0,2018-03-22T18:30:34Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usanewsinsider.com,fake,0.045,1,,,,,4.4,2021-10-16T01:00:23Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usanewspolitics.com,fake,0.045,1,,,,,3.1,2023-02-23T14:04:53Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usanewstoday.com,fake,0.045,1,,,,,26.2,1999-12-27T21:01:45Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usaonlinepolitics.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usaphase.com,fake,0.053,1,,,,,1.2,2025-01-14T09:45:41Z,,,0.05,0.05,0.05,0.2,0.05,0.05
usapolitics24hrs.com,fake,0.053,1,,,,,1.2,2025-01-08T14:59:12Z,,,0.05,0.05,0.05,0.2,0.05,0.05
usapoliticsnow.com,fake,0.045,1,,,,,10.0,2016-03-23T14:55:36Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usapoliticstoday.com,mixed,0.18,1,,,,,7.3,2018-12-12T19:29:25Z,,,0.2,0.2,0.2,0.2,0.2,0.2
usapoliticszone.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usareally.com,unreliable,0.08,1,VL,FN,0.0,,1.7,2024-06-19T18:34:40Z,,,0.1,0.0,0.1,0.2,0.1,0.1
usasnich.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usasupreme.com,fake,0.038,2,VL,FN,0.0,,9.8,2016-05-13T21:16:44Z,,,0.05,0.0,0.05,0.05,0.05,0.05
usatoday.com.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usatodaynews.me,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
usatwentyfour.com,fake,0.045,1,,,,,7.1,2019-02-16T19:01:07Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usawatchdog.com,mixed,0.173,2,L,CP,0.1,175630,21.1,2005-02-05T21:33:49Z,,,0.2,0.1,0.35,0.2,0.2,0.2
usbacklash.org,unreliable,0.075,1,VL,FN,0.0,,21.6,2004-07-27T14:51:24Z,,,0.1,0.0,0.1,0.1,0.1,0.1
uschronicle.com,mixed,0.165,2,L,FN,0.1,,22.9,2003-04-15T18:07:42Z,,,0.2,0.1,0.2,0.2,0.2,0.2
usconservativetoday.com,fake,0.045,1,,,,,7.2,2019-01-08T19:08:24Z,,,0.05,0.05,0.05,0.05,0.05,0.05
usdefensewatch.com,unreliable,0.09,1,,,,,11.0,2015-03-04T01:22:07Z,,,0.1,0.1,0.1,0.1,0.1,0.1
usfanzone.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
ushealthyadvisor.com,fake,0.045,1,,,,,7.5,2018-09-05T18:25:16Z,,,0.05,0.05,0.05,0.05,0.05,0.05
ushealthylife.com,fake,0.053,1,,,,,1.6,2024-08-23T18:29:13Z,,,0.05,0.05,0.05,0.2,0.05,0.05
usherald.com,mixed,0.18,1,,,,,25.0,2001-04-04T05:02:18Z,,,0.2,0.2,0.2,0.2,0.2,0.2
usinfonews.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
uslibertywire.com,unreliable,0.09,1,L,FN,0.1,,2.2,2024-01-13T19:10:24Z,,,0.1,0.1,0.1,0.1,0.1,0.1
uslifetoday.com,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
uspoliticslive.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
uspoln.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
uspostman.com,fake,0.045,1,,,,,9.3,2016-11-20T13:03:39Z,,,0.05,0.05,0.05,0.05,0.05,0.05
ussanews.com,unreliable,0.103,1,L,FN,0.1,201175,16.0,2010-03-04T18:19:02Z,,,0.1,0.1,0.35,0.1,0.1,0.1
usuncut.com,unreliable,0.188,1,,,,535903,19.7,2006-07-10T11:56:28Z,,,0.2,0.2,0.35,0.2,0.2,0.2
usviewer.com,unreliable,0.09,1,,,,,3.2,2023-01-05T19:20:13Z,,,0.1,0.1,0.1,0.1,0.1,0.1
vacationlandtimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
vaccinedamage.news,unreliable,0.075,1,VL,CP,0.0,,10.7,2015-07-15T17:00:15.27Z,,,0.1,0.0,0.1,0.1,0.1,0.1
vaccineimpact.com,unreliable,0.088,1,VL,CP,0.0,334827,11.5,2014-09-26T18:28:07Z,,,0.1,0.0,0.35,0.1,0.1,0.1
vaccineinjurynews.com,unreliable,0.075,1,VL,CP,0.0,,10.8,2015-06-10T20:40:05Z,,,0.1,0.0,0.1,0.1,0.1,0.1
vaccinepapers.org,unreliable,0.09,1,L,CP,0.1,,11.1,2015-02-12T03:49:52.998Z,,,0.1,0.1,0.1,0.1,0.1,0.1
vaccines.news,unreliable,0.08,1,VL,CP,0.0,915791,10.7,2015-07-10T17:00:00.113Z,26,,0.1,0.0,0.35,0.1,0.05,0.1
vaccinesafety.info,unreliable,0.075,1,VL,CP,0.0,,5.2,2021-01-16T04:05:14.005Z,,,0.1,0.0,0.1,0.1,0.1,0.1
vaccinesandchristianity.org,unreliable,0.075,1,VL,CP,0.0,,7.2,2019-01-20T04:10:47.671Z,0,,0.1,0.0,0.1,0.1,0.1,0.1
vaccinesrevealed.com,unreliable,0.075,1,VL,CP,0.0,,9.3,2016-11-11T14:34:04Z,,,0.1,0.0,0.1,0.1,0.1,0.1
vactruth.com,unreliable,0.103,1,L,CP,0.1,664155,16.8,2009-05-11T11:48:39Z,,,0.1,0.1,0.35,0.1,0.1,0.1
vadogwood.com,unreliable,0.105,1,M,FN,0.2,,7.0,2019-03-14T17:59:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
valeursactuelles.com,unreliable,0.11,1,M,FN,0.2,40912,27.6,1998-07-24T04:00:00Z,,,0.1,0.2,0.2,0.1,0.1,0.1
valleygazette.org,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:39:19.663Z,,,0.1,0.2,0.1,0.1,0.1,0.1
vancouvertimes.org,unreliable,0.105,1,M,FN,0.2,,2.0,2024-02-28T15:15:26.527Z,,,0.1,0.2,0.1,0.1,0.1,0.1
vaxxter.com,unreliable,0.09,1,L,CP,0.1,,10.5,2015-10-02T00:17:45Z,,,0.1,0.1,0.1,0.1,0.1,0.1
vdare.com,mixed,0.173,2,L,FN,0.1,160511,26.4,1999-10-25T23:36:00Z,,,0.2,0.1,0.35,0.2,0.2,0.2
veracruzdailypost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:51:01Z,,,0.1,0.2,0.1,0.1,0.1,0.1
verdugosnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
vernoncoleman.org,unreliable,0.075,1,VL,CP,0.0,,10.1,2016-02-06T02:40:18.085Z,,,0.1,0.0,0.1,0.1,0.1,0.1
veteransnewsnow.com,unreliable,0.09,1,,,,,14.7,2011-06-21T18:40:07Z,,,0.1,0.1,0.1,0.1,0.1,0.1
veteranstoday.com,mixed,0.15,2,VL,CP,0.0,77409,21.7,2004-07-14T19:42:31Z,,,0.2,0.0,0.2,0.2,0.2,0.2
victorvalleytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
vidmax.com,unreliable,0.103,1,L,FN,0.1,235443,22.4,2003-10-11T18:17:21Z,,,0.1,0.1,0.35,0.1,0.1,0.1
vigilantcitizen.com,fake,0.068,2,L,CP,0.1,121259,17.3,2008-11-20T15:23:11Z,,,0.05,0.1,0.35,0.05,0.05,0.05
viralactions.com,fake,0.053,1,,,,,0.4,2025-10-11T18:25:53Z,,,0.05,0.05,0.05,0.2,0.05,0.05
viralhatch.com,unreliable,0.09,1,L,FN,0.1,,11.6,2014-08-05T13:23:59Z,,,0.1,0.1,0.1,0.1,0.1,0.1
viralliberty.com,fake,0.045,1,,,,,3.9,2022-04-07T18:15:22Z,,,0.05,0.05,0.05,0.05,0.05,0.05
viralnewsnetwork.net,unreliable,0.09,1,L,CP,0.1,,8.8,2017-06-13T12:35:03Z,,,0.1,0.1,0.1,0.1,0.1,0.1
viraltube.nl,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
visiontimes.com,unreliable,0.118,1,M,FN,0.2,200691,22.2,2003-12-31T19:20:10Z,,,0.1,0.2,0.35,0.1,0.1,0.1
votefraud.news,unreliable,0.075,1,VL,CP,0.0,,9.1,2017-01-27T17:19:52.977Z,,,0.1,0.0,0.1,0.1,0.1,0.1
voxtribune.com,fake,0.045,1,,,,,8.2,2018-01-15T19:49:23Z,,,0.05,0.05,0.05,0.05,0.05,0.05
vz.ru,unreliable,0.223,1,M,FN,0.2,13279,,,1,,0.1,0.2,0.2,0.1,0.85,0.1
wakeup-world.com,unreliable,0.103,1,L,CP,0.1,209934,14.9,2011-05-06T14:08:10Z,,,0.1,0.1,0.35,0.1,0.1,0.1
wakeupthesheep.com,conspiracy,0.09,1,,,,,11.8,2014-05-26T03:15:03Z,,,0.1,0.1,0.1,0.1,0.1,0.1
wakingtimes.com,unreliable,0.173,2,L,CP,0.1,229651,14.4,2011-10-28T23:20:24Z,,,0.2,0.1,0.35,0.2,0.2,0.2
wakingupwisconsin.com,conspiracy,0.095,1,,,,,0.3,2025-12-11T19:20:54Z,,,0.1,0.1,0.1,0.2,0.1,0.1
wallbuilders.com,unreliable,0.103,1,L,FN,0.1,326400,26.2,1999-12-28T21:59:53Z,,,0.1,0.1,0.35,0.1,0.1,0.1
wallstreetonparade.com,unreliable,0.103,1,,,,284049,15.2,2010-12-31T23:03:49Z,,,0.1,0.1,0.35,0.1,0.1,0.1
warnerrobinstoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
waronfakes.com,unreliable,0.075,1,VL,FN,0.0,,4.0,2022-03-01T08:09:35Z,,,0.1,0.0,0.1,0.1,0.1,0.1
warrenclintonnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
warrensun.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
washingtonexaminer.com,mixed,0.183,1,,,,7637,20.0,2006-04-02T18:07:10Z,5,,0.2,0.2,0.1,0.2,0.25,0.2
washingtonfed.com,fake,0.053,1,,,,,0.1,2026-01-25T20:09:01Z,0,,0.05,0.05,0.05,0.2,0.05,0.05
washingtonpost.com.co,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
washingtonsblog.com,mixed,0.188,1,,,,125722,17.0,2009-03-19T07:02:58Z,,,0.2,0.2,0.35,0.2,0.2,0.2
washingtonsources.org,unreliable,0.105,1,M,FN,0.2,,5.8,2020-06-10T14:12:14.839Z,,,0.1,0.2,0.1,0.1,0.1,0.1
washingtontimes.com,unreliable,0.105,1,M,FN,0.2,4773,27.5,1998-09-14T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
washoegazette.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T17:08:12Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
washoenews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
waterfordtoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
waterfordwhispersnews.com,satire,0.273,1,,,,500274,16.1,2010-02-24T11:44:02Z,,,0.3,0.3,0.35,0.3,0.3,0.3
waterlootimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wattsupwiththat.com,unreliable,0.208,1,L,CP,0.1,43530,18.6,2007-08-11T22:35:14Z,1,,0.1,0.1,0.2,0.1,0.85,0.1
waynecountytoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
waynedupree.com,unreliable,0.09,1,L,FN,0.1,,13.5,2012-09-10T14:27:33Z,,,0.1,0.1,0.1,0.1,0.1,0.1
wayneherald.org,unreliable,0.105,1,M,FN,0.2,,3.6,2022-07-24T15:01:25.418Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
wcalabamanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wcgeorgianews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wcindiananews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wciowanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:33Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wcmichigannews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:41Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wcminnesotanews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
wcmissnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:23Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wcmissourinews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wcnewmexiconews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wealthmanagementwire.com,unreliable,0.105,1,M,FN,0.2,,8.2,2017-12-20T15:44:38Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
wearechange.org,mixed,0.188,2,M,CP,0.2,312609,19.3,2006-11-13T16:36:12.447Z,,,0.2,0.2,0.35,0.2,0.2,0.2
weaselzippers.us,unreliable,0.103,1,,,,609753,,,,,0.1,0.1,0.35,0.1,0.1,0.1
webdaily.com,fake,0.045,1,,,,,26.0,2000-03-07T11:54:38Z,,,0.05,0.05,0.05,0.05,0.05,0.05
weeklystandard.com,mixed,0.18,1,,,,35524,29.1,1997-02-11T05:00:00Z,,,0.2,0.2,0.2,0.2,0.2,0.2
weeklyworldnews.com,fake,0.06,1,,,,171509,29.9,1996-04-14T04:00:00Z,,,0.05,0.05,0.35,0.05,0.05,0.05
weibo.com,unreliable,0.105,1,M,FN,0.2,306,27.0,1999-03-20T05:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wellnessachiever.net,unreliable,0.105,1,M,CP,0.2,,3.9,2022-04-07T02:32:36Z,,,0.1,0.2,0.1,0.1,0.1,0.1
welovetrump.com,unreliable,0.088,1,VL,FN,0.0,390812,9.5,2016-09-17T19:51:41Z,0,,0.1,0.0,0.35,0.1,0.1,0.1
weshapelife.org,conspiracy,0.09,1,,,,,2.3,2023-11-11T15:15:42.757Z,,,0.1,0.1,0.1,0.1,0.1,0.1
westatlantanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westbanklanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westcentralreporter.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-02-11T18:59:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westchesterreporter.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westclevelandnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westcontracostanews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westcooknews.com,unreliable,0.105,1,M,FN,0.2,,10.1,2016-01-27T18:55:59Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westdsmnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westeldoradonews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:46Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westernjournal.com/commentary,unreliable,0.075,1,VL,FN,0.0,,,,,,0.1,0.0,0.1,0.1,0.1,0.1
westernjournalism.com,mixed,0.188,1,,,,174086,26.1,2000-02-22T21:09:59Z,,,0.2,0.2,0.35,0.2,0.2,0.2
westernndnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:11Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
westernwaynetoday.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westessexnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:16Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westflnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:21Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westhamiltonnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westhillsboroughnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:17Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westhudvalleynews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:20Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westindynews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westlakenormannews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:40Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
westlatimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westlucasnews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:30Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westmassnews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:09Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westnynews.com,unreliable,0.105,1,M,FN,0.2,,6.4,2019-10-15T14:55:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westoctimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:28Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westonaprice.org,unreliable,0.095,1,L,CP,0.1,50506,26.6,1999-07-26T23:53:56.5Z,,,0.1,0.1,0.2,0.1,0.1,0.1
westpennyroyalnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-04T20:54:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westsbvtimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:18Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westsfvtoday.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:25Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westsgvnews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:45Z,,,0.1,0.2,0.1,0.1,0.1,0.1
weststarknews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:45:49Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westtwincities.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:22Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westventuranews.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westvolusianews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:19Z,,,0.1,0.2,0.1,0.1,0.1,0.1
westwakenews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wethepeopledaily.com,unreliable,0.09,1,L,FN,0.1,,7.1,2019-02-15T22:42:05Z,,,0.1,0.1,0.1,0.1,0.1,0.1
whale.to,unreliable,0.095,1,L,CP,0.1,72551,20.7,2005-07-18T19:02:31.000Z,,,0.1,0.1,0.2,0.1,0.1,0.1
whatdoesitmean.com,conspiracy,0.103,1,,,,267240,22.3,2003-11-12T13:23:13Z,,,0.1,0.1,0.35,0.1,0.1,0.1
whatreallyhappened.com,conspiracy,0.08,2,VL,CP,0.0,79880,26.4,1999-10-11T20:43:48Z,,,0.1,0.0,0.2,0.1,0.1,0.1
whatstheharm.net,unreliable,0.105,1,M,FN,0.2,,18.2,2008-01-21T17:23:07Z,,,0.1,0.2,0.1,0.1,0.1,0.1
whitehouse.news,unreliable,0.188,1,VL,CP,0.0,,10.7,2015-07-14T18:26:52.167Z,1,,0.1,0.0,0.1,0.1,0.85,0.1
whitepower.com,unreliable,0.135,1,,,,,27.0,1999-04-03T05:00:00Z,,,0.15,0.15,0.15,0.15,0.15,0.15
whowhatwhy.com,unreliable,0.09,1,,,,,24.4,2001-10-19T19:38:15Z,,,0.1,0.1,0.1,0.1,0.1,0.1
whowhatwhy.org,conspiracy,0.103,1,,,,200603,16.8,2009-05-12T18:47:24.809Z,,,0.1,0.1,0.35,0.1,0.1,0.1
whydontyoutrythis.com,unreliable,0.165,2,L,CP,0.1,,13.1,2013-02-08T20:58:27Z,,,0.2,0.1,0.2,0.2,0.2,0.2
wicatholictribune.com,unreliable,0.105,1,M,FN,0.2,,6.1,2020-02-06T18:40:37Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wichitastandard.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:44Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wikileaks.com,unreliable,0.103,1,,,,378741,19.2,2007-01-04T00:31:48Z,,,0.1,0.1,0.35,0.1,0.1,0.1
wikileaks.org,unreliable,0.095,1,,,,10958,19.4,2006-10-04T05:54:19.057Z,,,0.1,0.1,0.2,0.1,0.1,0.1
wikispooks.com,conspiracy,0.118,2,M,CP,0.2,121516,16.0,2010-04-01T15:18:34Z,,,0.1,0.2,0.35,0.1,0.1,0.1
willcountygazette.com,unreliable,0.105,1,M,FN,0.2,,10.0,2016-03-23T08:28:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
williambanzai7.blogspot.com,satire,0.27,1,,,,,25.6,2000-07-31T21:38:58Z,,,0.3,0.3,0.3,0.3,0.3,0.3
willyloman.wordpress.com,conspiracy,0.09,1,,,,,26.0,2000-03-03T12:13:23Z,,,0.1,0.1,0.1,0.1,0.1,0.1
winecountrytimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
winepressnews.com,unreliable,0.09,1,L,CP,0.1,,5.4,2020-11-08T23:36:12Z,,,0.1,0.1,0.1,0.1,0.1,0.1
winkprogress.com,satire,0.265,1,,,,,0.4,2025-10-13T18:05:41Z,,,0.3,0.3,0.3,0.2,0.3,0.3
winningdemocrats.com,mixed,0.18,1,,,,,10.5,2015-09-02T18:11:44Z,,,0.2,0.2,0.2,0.2,0.2,0.2
winstonsalemtimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:06Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
winterwatch.net,unreliable,0.088,1,VL,CP,0.0,979807,7.5,2018-09-10T15:11:47Z,,,0.1,0.0,0.35,0.1,0.1,0.1
wiregrasstimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:48Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wisconsindailystar.com,unreliable,0.105,1,M,FN,0.2,,5.2,2021-01-09T13:40:55Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wisconsinindependent.com,unreliable,0.105,1,M,FN,0.2,,10.0,2016-03-16T18:11:29Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wisconsinlaketimes.com,unreliable,0.105,1,M,FN,0.2,,3.6,2022-07-25T15:35:06Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wisevoter.com,unreliable,0.118,1,M,FN,0.2,300276,20.9,2005-04-28T21:26:06Z,,,0.1,0.2,0.35,0.1,0.1,0.1
witscience.org,satire,0.27,1,,,,,11.8,2014-05-16T21:05:25.934Z,,,0.3,0.3,0.3,0.3,0.3,0.3
wnd.com,mixed,0.165,2,L,FN,0.1,20062,27.5,1998-09-23T04:00:00Z,,,0.2,0.1,0.2,0.2,0.2,0.2
wndnewscenter.org,unreliable,0.09,1,L,FN,0.1,,7.1,2019-01-31T05:48:25.295Z,,,0.1,0.1,0.1,0.1,0.1,0.1
wolfstreet.com,unreliable,0.095,1,,,,91067,14.6,2011-08-23T18:29:25Z,,,0.1,0.1,0.2,0.1,0.1,0.1
womenarehuman.com,unreliable,0.105,1,M,FN,0.2,,7.8,2018-06-02T02:34:40Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wonkie.com,satire,0.27,1,,,,,25.7,2000-07-21T14:47:32Z,,,0.3,0.3,0.3,0.3,0.3,0.3
worldaffairs.blog,unreliable,0.105,1,M,CP,0.2,,9.2,2017-01-08T20:55:33Z,,,0.1,0.2,0.1,0.1,0.1,0.1
worldaffairsbrief.com,unreliable,0.075,1,VL,CP,0.0,,21.9,2004-04-06T04:08:48Z,,,0.1,0.0,0.1,0.1,0.1,0.1
worldcouncilforhealth.org,unreliable,0.088,1,VL,CP,0.0,503740,4.5,2021-09-01T17:41:46.945Z,,,0.1,0.0,0.35,0.1,0.1,0.1
worlddoctorsalliance.com,unreliable,0.08,1,VL,CP,0.0,,0.3,2025-12-02T19:05:28Z,,,0.1,0.0,0.1,0.2,0.1,0.1
worldgreynews.com,unreliable,0.075,1,VL,FN,0.0,,8.5,2017-09-14T08:31:38Z,,,0.1,0.0,0.1,0.1,0.1,0.1
worldhealth.net,unreliable,0.103,1,L,CP,0.1,203614,31.0,1995-03-09T05:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
worldnewsdailyreport.com,satire,0.273,1,,,,263162,12.4,2013-11-02T21:39:00Z,,,0.3,0.3,0.35,0.3,0.3,0.3
worldnewsera.com,unreliable,0.118,1,M,FN,0.2,514791,5.9,2020-04-11T06:37:25Z,,,0.1,0.2,0.35,0.1,0.1,0.1
worldnewspolitics.com,mixed,0.165,2,L,FN,0.1,,7.1,2019-02-19T19:26:00Z,,,0.2,0.1,0.2,0.2,0.2,0.2
worldofbuzz.com,unreliable,0.118,1,M,FN,0.2,104259,12.7,2013-07-21T11:03:15Z,,,0.1,0.2,0.35,0.1,0.1,0.1
worldpoliticsnow.com,unreliable,0.18,1,,,,,3.2,2023-01-12T05:52:20Z,,,0.2,0.2,0.2,0.2,0.2,0.2
worldpoliticsus.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
worldpoliticus.com,unreliable,0.09,1,L,FN,0.1,,5.8,2020-05-21T18:40:13Z,,,0.1,0.1,0.1,0.1,0.1,0.1
worldrumor.com,fake,0.045,1,,,,,7.3,2018-12-06T19:29:46Z,,,0.05,0.05,0.05,0.05,0.05,0.05
worldstarhiphop.com,unreliable,0.11,1,M,FN,0.2,25829,20.6,2005-08-09T19:44:10Z,,,0.1,0.2,0.2,0.1,0.1,0.1
worldstoriestoday.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
worldtimetodays.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-21T12:39:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
worldtribune.com,unreliable,0.103,1,L,FN,0.1,112382,28.0,1998-03-18T05:00:00Z,,,0.1,0.1,0.35,0.1,0.1,0.1
worldtruth.tv,conspiracy,0.088,2,VL,CP,0.0,608841,14.3,2011-12-10T18:14:21Z,,,0.1,0.0,0.35,0.1,0.1,0.1
worldviewweekend.com,unreliable,0.088,1,VL,CP,0.0,620105,25.7,2000-07-19T22:49:41Z,,,0.1,0.0,0.35,0.1,0.1,0.1
worldwidehealthy.com,unreliable,0.18,1,,,,,,,,,0.2,0.2,0.2,0.2,0.2,0.2
wtoe5news.com,fake,0.045,1,,,,,2.5,2023-09-13T18:17:29Z,,,0.05,0.05,0.05,0.05,0.05,0.05
wundergroundmusic.com,satire,0.27,1,,,,,12.7,2013-06-25T20:32:50Z,,,0.3,0.3,0.3,0.3,0.3,0.3
www.rt.com,mixed,0.18,1,,,,,,,0,,0.2,0.2,0.2,0.2,0.2,0.2
www1.cbn.com,unreliable,0.105,1,M,CP,0.2,,30.6,1995-08-18T04:00:00Z,,,0.1,0.2,0.1,0.1,0.1,0.1
wyandottetimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:35Z,,,0.1,0.2,0.1,0.1,0.1,0.1
x22report.com,conspiracy,0.103,2,L,CP,0.1,143681,13.1,2013-02-25T13:38:51Z,,,0.1,0.1,0.35,0.1,0.1,0.1
xinhuanet.com,unreliable,0.105,1,M,FN,0.2,1843,25.9,2000-04-28T08:10:03Z,,,0.1,0.2,0.1,0.1,0.1,0.1
yadkinvalleynews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:31Z,,,0.1,0.2,0.1,0.1,0.1,0.1
yaliberty.org,unreliable,0.09,1,L,FN,0.1,,17.3,2008-11-26T21:58:46.579Z,,,0.1,0.1,0.1,0.1,0.1,0.1
yavapainews.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-07-03T17:53:27Z,,,0.1,0.2,0.1,0.1,0.1,0.1
yellowhammernews.com,mixed,0.188,1,,,,165261,12.8,2013-05-20T23:15:10Z,0,,0.2,0.2,0.35,0.2,0.2,0.2
yellowhammertimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-09-05T20:13:32Z,,,0.1,0.2,0.1,0.1,0.1,0.1
yellowstonetimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:04Z,0,,0.1,0.2,0.1,0.1,0.1,0.1
yesimright.com,fake,0.053,2,L,FN,0.1,,11.6,2014-08-27T03:47:26Z,,,0.05,0.1,0.05,0.05,0.05,0.05
youm7.com,unreliable,0.105,1,M,FN,0.2,1422,18.3,2007-12-03T18:47:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
youngcons.com,mixed,0.18,1,,,,,14.2,2011-12-30T14:21:20Z,,,0.2,0.2,0.2,0.2,0.2,0.2
youngstowntimes.com,unreliable,0.105,1,M,FN,0.2,,6.7,2019-06-30T20:46:38Z,,,0.1,0.2,0.1,0.1,0.1,0.1
yourfunpage.com,fake,0.045,1,,,,,,,,,0.05,0.05,0.05,0.05,0.05,0.05
yournationnews.com,unreliable,0.18,1,,,,,10.8,2015-05-15T14:58:12Z,,,0.2,0.2,0.2,0.2,0.2,0.2
yournews.com,unreliable,0.118,1,M,FN,0.2,179540,29.7,1996-06-25T04:00:00Z,,,0.1,0.2,0.35,0.1,0.1,0.1
yournewswire.com,unreliable,0.15,2,L,CP,0.1,204691,11.6,2014-08-04T22:30:28Z,16,,0.2,0.1,0.35,0.2,0.05,0.2
yourtango.com,unreliable,0.11,1,M,CP,0.2,11947,18.4,2007-10-10T05:26:33Z,,,0.1,0.2,0.2,0.1,0.1,0.1
yubasuttertimes.com,unreliable,0.105,1,M,FN,0.2,,6.5,2019-08-30T15:05:47Z,,,0.1,0.2,0.1,0.1,0.1,0.1
yumastandard.com,unreliable,0.105,1,M,FN,0.2,,4.1,2022-02-07T16:55:33Z,,,0.1,0.2,0.1,0.1,0.1,0.1
z3news.com,unreliable,0.075,1,VL,FN,0.0,,14.6,2011-07-31T21:49:24Z,,,0.1,0.0,0.1,0.1,0.1,0.1
zacatecaspost.com,unreliable,0.105,1,M,FN,0.2,,5.5,2020-09-01T21:51:04Z,,,0.1,0.2,0.1,0.1,0.1,0.1
zenith.news,unreliable,0.09,1,L,FN,0.1,,8.7,2017-06-26T18:06:23.487Z,,,0.1,0.1,0.1,0.1,0.1,0.1
zerohedge.com,conspiracy,0.09,2,L,CP,0.1,5627,17.2,2009-01-11T17:14:37Z,,,0.1,0.1,0.1,0.1,0.1,0.1
zootfeed.com,conspiracy,0.09,1,,,,,9.8,2016-05-24T20:01:55Z,,,0.1,0.1,0.1,0.1,0.1,0.1
|