File size: 64,207 Bytes
b237880 |
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 |
[
{
"qid": "564959490dd0b8316a88",
"question": "can you use Microsoft Office without internet?"
},
{
"qid": "274badccc0a85d6e98fb",
"question": "Does the British royal family have an American in it?"
},
{
"qid": "e05f8b4928fad08e72b0",
"question": "Was the Scottish Parliament founded by William Wallace?"
},
{
"qid": "92ef790656f39f9871cf",
"question": "Was General Motors first acquisition named after David Buick?"
},
{
"qid": "f6fcbb12ad3705ffce40",
"question": "Would it be appropriate for a cosmetologist to apply for a job at a funeral home? "
},
{
"qid": "70eb67c99d3052f868a4",
"question": "Is Uranium necessary to stay healthy?"
},
{
"qid": "2508831374887c203e06",
"question": "Could a squid use water wings instead of it's swim bladder?"
},
{
"qid": "8462cc1935b3ac2a1acd",
"question": "Would Bridge Over the River Kwai have been a good project for United States Army Corps of Engineers?"
},
{
"qid": "2dd5f2f7b67535e6b373",
"question": "Was one of Wiki's founders born where a main transportation hub was overtaken during the Civil War?"
},
{
"qid": "af152bd4384e0b02cbf9",
"question": "Is Common cold more dangerous than COVID19? "
},
{
"qid": "e4d320c53c3585073090",
"question": "Would it be harder for me to find a job in the USA in 2009 vs. 1932?"
},
{
"qid": "a688862876b18f8929b1",
"question": "Does making Printed circuit board require heat?"
},
{
"qid": "6c23c705acfc9ff5a5fb",
"question": "Does an astronaut worry about osteomalacia?"
},
{
"qid": "ab103df8bdff6fcea74c",
"question": "Did John von Neumann mass murder Japanese people?"
},
{
"qid": "e52bbc97a3ba825e0af2",
"question": "Can Christmas eve bring peace from war?"
},
{
"qid": "940e83ca5015186425d0",
"question": "Did a member of the band, first featured in 1999, get the job from the Twin Cities Reader?"
},
{
"qid": "ea87d04deb9332029594",
"question": "Can DC Comics be used for a fire?"
},
{
"qid": "13b5967158991d13b67c",
"question": "Is Monday the enemy of a cat?"
},
{
"qid": "f552ace2aadc5df61985",
"question": "Would the first woman in space on a solo mission fit in with the American Christian Right?"
},
{
"qid": "fc3448df6a952046fc11",
"question": "Is Australian rules football played with forty-eight people?"
},
{
"qid": "150b177c524b67c9a560",
"question": "Does the publishing company of The New Yorker have ties to Georgetown University?"
},
{
"qid": "e9fbc133f2cd0d30c262",
"question": "Does the branch of government with lifelong terms have veto power?"
},
{
"qid": "792d3b8abf5a4255d0b8",
"question": "Could a person in the Middle Ages use an ipad?"
},
{
"qid": "e8cf4a0f8e67fcc7fa3b",
"question": "Can a journalist sway opinion of the general public?"
},
{
"qid": "23e3aeebf6fbf82554df",
"question": "Is a librarian trained to fly a plane?"
},
{
"qid": "7ed416e96ad2a83f56ab",
"question": "Could the shapes on Archimedes tomb be represented by a coffee cup and a donut?"
},
{
"qid": "f331f1787c200e59b5ed",
"question": "Can Arnold Schwarzenegger challenge Kotal Kahn?"
},
{
"qid": "eb524124d1a5a15a3bfa",
"question": "Can the United States Secretary of State go to war?"
},
{
"qid": "977cf1187d09463e051d",
"question": "Can a penny conduct electricity?"
},
{
"qid": "f727e57cb9de0a393e41",
"question": "Are Baby Shark fans likely to know what the Yellow Pages are?"
},
{
"qid": "18a9af440ae4373dcfc7",
"question": "Would Carl Gauss' most famous student work with the area under a curve?"
},
{
"qid": "d1387b885aed82f5668a",
"question": "Did Rush Limbaugh contract with the Morning Joe?"
},
{
"qid": "16d34b3ba65dbea6aea2",
"question": "Do areas with deciduous trees have the lowest use of air conditioning?"
},
{
"qid": "6edc462d89716ac70044",
"question": "Did Funerals burn the dead bodies into ashes?"
},
{
"qid": "78901b481462fbfd3d92",
"question": "Can human nails carve a statue out of quartz?"
},
{
"qid": "e5f51a3b3fde683df79a",
"question": "Can i drink the water present in cucumber?"
},
{
"qid": "fd324bbe4ea5c155e3b0",
"question": "Would the Yin-Yang ideal be advocated in a social justice class?"
},
{
"qid": "77d8ec2a5399536223f0",
"question": "Did the film Joker decrease the likelihood of more R-rated superhero movies?"
},
{
"qid": "f79b6a75ab1bf62ce749",
"question": "Are horseflies rare in the Sahara Desert?"
},
{
"qid": "6c9ad129e2d4ee61d2d9",
"question": "Was the KGB responsible for Lincoln's assassination?"
},
{
"qid": "241d3ec5f7dd09836747",
"question": "Does the arrival of Autumn signal the release of the Nuckelavee?"
},
{
"qid": "bb3ec9758b49efb73c9e",
"question": "Does the iOS interface involve direct human to human contact?"
},
{
"qid": "e99a3c062547f9f381c1",
"question": "Will the Swiss Guard pistols be made in the US?"
},
{
"qid": "151b371abf7cee0340aa",
"question": "Would Garfield enjoy a trip to Italy?"
},
{
"qid": "bda13be35f84d538eb86",
"question": "Would Spartacus have approved of the French Revolution?"
},
{
"qid": "e7a874238fc4db912be4",
"question": "can 45 years old black male join United States Marine Corps for the first time?"
},
{
"qid": "6835d07730907bf104b5",
"question": "Does the Rhine flow into the Gaza Strip?"
},
{
"qid": "34e0714bf0184235562b",
"question": "Can you make a sausage longer than a school bus from a single human intestine?"
},
{
"qid": "0873a876a64c4ce6c42f",
"question": "Is subway known for unappreciated attitude towards its employees?"
},
{
"qid": "ea27691c7114e2553f87",
"question": "Would a single exclamation mark show a good move on a board game?"
},
{
"qid": "ad27b5f1a1c45bc78ade",
"question": "Did a dog save soldiers from Artillery fire?"
},
{
"qid": "0dddab7426547cd5baae",
"question": "Would the animal on the United States Secretary of Defense's flag use an aerie?"
},
{
"qid": "1f4edc8d800fe0ccbedd",
"question": "Did Rush Limbaugh have lunch with Vlad the Impaler?"
},
{
"qid": "e3f08f2908230fb74824",
"question": "Is Shiva one of the main deities of the religion that worships Jesus?"
},
{
"qid": "cab2b0624e92c153d633",
"question": "Would a monocle be appropriate for a cyclops?"
},
{
"qid": "05bc9c1398c361905e8f",
"question": "Do cars use drinking water to power their engine?"
},
{
"qid": "3111296685c243995e57",
"question": "Does Eminem not learn from his mistakes?"
},
{
"qid": "7d263f5dcdca4ed00ec4",
"question": "Could you write the song \"Dark Side of the Moon\" about Europa?"
},
{
"qid": "9dbe77184977fd5ec516",
"question": "Could the first saints' saga have been about John of Avila?"
},
{
"qid": "aa076d867ac25822533f",
"question": "Do Maasai people wear fur coat?"
},
{
"qid": "28edefe057a51f8694c9",
"question": "Is the letter on the current Rugby World Cup holder's flag the last in the alphabet?"
},
{
"qid": "fe16f0c678fcb93a11e9",
"question": "Would Siduri enjoy an unlimited buffet?"
},
{
"qid": "e31a2f711e5631305aaf",
"question": "Do alpine skiers use a technique named for a vehicle?"
},
{
"qid": "0354638492ce8cfb2c26",
"question": "Is Tim Berners-Lee a technophobe?"
},
{
"qid": "694a3a6564c485314448",
"question": "Did Isaac Newton attend the sister college to Christ Church?"
},
{
"qid": "a0c3db9fa010dc425a5b",
"question": "Can a lobster grow a new leg in one US senator's term?"
},
{
"qid": "f9cc9eefe84795af79a5",
"question": "Is a mustache related to a dictator?"
},
{
"qid": "66e19975526f904bfaa5",
"question": "Does cannabis get amoeba high?"
},
{
"qid": "185e4293c0e63c0b7875",
"question": "Would the Ku Klux Klan work with the Tutsi?"
},
{
"qid": "20f42ea83f6736f0dd18",
"question": "Was The Boat Race held during the French revolution?"
},
{
"qid": "30533cdb4f3ed05912b6",
"question": "Did Jesus and his apostles eat cool whip in the Last supper? "
},
{
"qid": "1cd3e9edbc75aaa77e8d",
"question": "Is Miami good place to master Spanish?"
},
{
"qid": "4aa6c9bf37f5ee9df3aa",
"question": "Is France's sole overseas collectivity shunned by honeymooners?"
},
{
"qid": "012a32941c0a76e9c6fe",
"question": "Has the CNES published reports made to the armed citizenry?"
},
{
"qid": "056717b79b2b16bd80e4",
"question": "Would Jeremy Bentham think Fabulous 30 is fabulous?"
},
{
"qid": "d743babf07b98274582b",
"question": "Is Moon Jae-in likely to have a genetic susceptibility to malaria?"
},
{
"qid": "6f4d38631ea518d30895",
"question": "Would John the baptist get along with Adolf Hitler?"
},
{
"qid": "be15f670012e1c1b24be",
"question": "Did Anne Frank read spider-man comic?"
},
{
"qid": "9e929fbb69e06a0cbcda",
"question": "Can a small startup make Alfred Nobel's honorary element?"
},
{
"qid": "38ec39097f759a653e11",
"question": "Is the current US Speaker of the House likely to read Breitbart?"
},
{
"qid": "e45805b7a514f15a897c",
"question": "Is the Great Pyramid of Giza different from Khufu pyramid?"
},
{
"qid": "30835cf3c05c1e0d64c7",
"question": "Did the founder of Microsoft get away with a crime of the same name as a board game?"
},
{
"qid": "8e238f7abb568238ace0",
"question": "Did Salmonella infection contribute to found Standard University?"
},
{
"qid": "5c75133ec310bbfafa7f",
"question": "Is hair a good source of protein for body building?"
},
{
"qid": "3e5d646bfb99d3828593",
"question": "Is the Daily Stormer likely to cite Solomon as an example of good leadership?"
},
{
"qid": "05666b3ae4cc352c0eaa",
"question": "Did Benjamin Franklin invent the telegraph?"
},
{
"qid": "c14284a451260282ffdc",
"question": "Is a diamond the most likely mineral to appear on the cover of a Danielle Steel novel?"
},
{
"qid": "0477537c6babefd854a4",
"question": "Would Shaq still be able to do his side gig in Ancient Greece?"
},
{
"qid": "f6de253c8c2615843028",
"question": "Did Jules Verne develop the Aliens series?"
},
{
"qid": "0b4a3c4a9976931cba86",
"question": "Would VapoRub bring out woodsy notes in perfume?"
},
{
"qid": "7ff07d75d6e50cd97154",
"question": "Is Lionel Richie a Kiwi national?"
},
{
"qid": "6c97c320f50308f5a921",
"question": "Can a 6 year old boy show his grandmother his art work via fax?"
},
{
"qid": "ce66f2aca406e034b994",
"question": "Are modern cities similar to the social groups humans evolved in?"
},
{
"qid": "d844a59c1cef3b74cd5d",
"question": "Are dutch people fluent in Hindi?"
},
{
"qid": "b0506b9177ee37449d44",
"question": "Is Post Malone a sinner according to rabbis?"
},
{
"qid": "61bfadc44652ec8ea74d",
"question": "Have sharks been seen around Massie's Station?"
},
{
"qid": "ebf9330d6e29e2545b83",
"question": "Are koi a good gift for a Bengal cat owner?"
},
{
"qid": "f795dd6441a29b44fdb6",
"question": "Is one of the giant squid's predators named after a type of diploid cell?"
},
{
"qid": "ec4d1c6eba09d1ffe9b6",
"question": "Were people in Isle of Man ruled by someone from Scandinavian in the past?"
},
{
"qid": "cffe6acbee8c14ce59be",
"question": "Is the Mount Emei located at the western rim of Blue Basin?"
},
{
"qid": "6d3be99fa160d265481e",
"question": "Is Harvard University located outside of New Brunswick?"
},
{
"qid": "df8ef214a4680d1ee171",
"question": "Is the French Open is held on the north bank of the river Thames?"
},
{
"qid": "80a613156a9fa370be0a",
"question": "Can higher humidity save people from flu?"
},
{
"qid": "ecd3762901ef525f6fe9",
"question": "Would the powers of the staff of Hermes be useful for an anesthesiologist?"
},
{
"qid": "7af5b12e77feb59c60e6",
"question": "Is it wise to chop onions after chopping chiles?"
},
{
"qid": "104b63e0489741351d56",
"question": "Is Maroon 5 divorced?"
},
{
"qid": "d54bc0bb539689f17598",
"question": "Does Chlorophyll work best with the light color of clear cloudless day-time sky?"
},
{
"qid": "437daecacf1d8664548a",
"question": "Did Robotics help build Ziggurats?"
},
{
"qid": "54dd7e3e8d9258acb5c2",
"question": "Does Copper belong to the same period as Carbon?"
},
{
"qid": "6cc62a1003a1a349d6a0",
"question": "Can you hear music in space?"
},
{
"qid": "e67198573f30a44cf811",
"question": "Did Ada Lovelace take her last breath in United States of America?"
},
{
"qid": "fea985cc89b40cef2dae",
"question": "Do you need a SUV for camping?"
},
{
"qid": "eec04e4b998c62ba2972",
"question": "Do young catfish share a name with a menu item at McDonalds?"
},
{
"qid": "e86b546f4237b5772147",
"question": "Could the amount of water in the Persian Gulf fill a thimble?"
},
{
"qid": "1bd9e30be3f2fe061634",
"question": "Does the autopilot car deviate if there is a deer in front of the car?"
},
{
"qid": "52c9d87a27e0ffbc142a",
"question": "Do many high quality sweaters have their origins in the Gobi Desert?"
},
{
"qid": "8cc54baa59fd1638ad70",
"question": "Can both main characters from Tom and Jerry go on a vegan diet?"
},
{
"qid": "01a4082ebbbe5fd7a931",
"question": "Does Conor mcgregor fight in the WWE Raw?"
},
{
"qid": "73cb7b564933396ac5b3",
"question": "Is asexual reproduction a quick way to add diversity?"
},
{
"qid": "8f4cf5daa657baa609ad",
"question": "Is Wall street visible from the top of Eiffel tower?"
},
{
"qid": "17ec85df5c8c1df6a0db",
"question": "Does citrus grow well in places with 24-hour days in the summer?"
},
{
"qid": "a155f10055d0132a0e4c",
"question": "Would traditional watchmakers have done lots of menial labor?"
},
{
"qid": "f65cf9945e4843e1e5dd",
"question": "Is the Moscow Kremlin near the Eiffel Tower?"
},
{
"qid": "4c53eb6890d045512065",
"question": "Did Handedness result in castigation?"
},
{
"qid": "9ab25068b11aa97e11a2",
"question": "Is Bitcoin's smallest denomination named after a millenial?"
},
{
"qid": "e3ef2536ae5a0e669a57",
"question": "Would Moliere have appreciated Chapter 11 protection?"
},
{
"qid": "8dc036e13d0c9d0f1411",
"question": "Is it easier for an average crane to reproduce compared to an average human? "
},
{
"qid": "6bcc14fe2905ac173e14",
"question": "Do health fanatics prefer Elk meat over chicken?"
},
{
"qid": "b08e6e6702d483a759ae",
"question": "Is excretion a way to breath air?"
},
{
"qid": "030a17f45d59d7d75dd9",
"question": "Do sea turtles get oxygen above water?"
},
{
"qid": "31f9470faeac66a300da",
"question": "Was the Royal Society once a part of St James's Palace?"
},
{
"qid": "233af6f7efb830be8d93",
"question": "Did Sugar Ray Robinson defeat Pete Herman in the ring?"
},
{
"qid": "581f31aa3041ff62f27a",
"question": "Did Freedom of speech prevent Lil' Kim from going to prison for perjury?"
},
{
"qid": "b8032db66138514bc3e1",
"question": "Did Bigfoot have a sexual relationship with a human?"
},
{
"qid": "4beb942d33f61257b77d",
"question": "Does Swallow chase wasp?"
},
{
"qid": "7a9732b5c7c174d48c44",
"question": "Do the Japanese people in Russia speak russian?"
},
{
"qid": "d19e758d63e2781166c1",
"question": "Was a kangaroo punched in the face to save a dog?"
},
{
"qid": "c48e1f067850bc81358e",
"question": "Would the dead from the Battle of Agincourt fill the Allen Arena?"
},
{
"qid": "7ece37bc97289acc713c",
"question": "Can a Thoroughbred outrun a cheetah?"
},
{
"qid": "65cb4d7d6094935645e0",
"question": "Will Klingons appear in a history textbook? "
},
{
"qid": "dec0daa816ed0afba7a4",
"question": "Was J. Edgar Hoover eligible for public school at the turn of the century?"
},
{
"qid": "3e7cad5b1af8e44c2708",
"question": "Would hussars fit in with the Canadian Friends Service Committee?"
},
{
"qid": "a82c6444ec98f85026bc",
"question": "Was Formula One’s inauguration broadcasted live on youtube? "
},
{
"qid": "c964beef84ed3167e6b2",
"question": "Are hamburgers the staple food for iyers?"
},
{
"qid": "846f3b04f03169f1fa3c",
"question": "Did Charles Darwin create the first clone?"
},
{
"qid": "5f86b5c2842acabddc5c",
"question": "Is copper a bad material for hospital beds?"
},
{
"qid": "0232aef74e8ddd00bd8c",
"question": "Would it be wrong to call the Bronze Age an early Renaissance?"
},
{
"qid": "a64930786b1126d6b988",
"question": "Does the Boeing 777 need an aircraft pilot to operate?"
},
{
"qid": "058c707b02d57c0a934e",
"question": "Is it more risky to use Tesla's autopilot than to drive drunk?"
},
{
"qid": "bb85c5bb91a8e641c222",
"question": "Could the ISS hide in the English Channel?"
},
{
"qid": "f8b2fbfe38b3dba52bdc",
"question": "Is the hottest temperature in the Sahara too cold to boil water?"
},
{
"qid": "fbe7803ca813ad6bd5e4",
"question": "Did Metroid have a link with the studio of the DOA series?"
},
{
"qid": "6e9b5e828a5dad78ec0a",
"question": "Does pancake contain lutein? "
},
{
"qid": "ba3768f0452b3860e443",
"question": "Is date palm used to set assign dates in Calendar?"
},
{
"qid": "2b23a4dfdc947780bddf",
"question": "Is Cowardly Lion on the Flander's coat of arms?"
},
{
"qid": "6b7b3b5e586c02c59661",
"question": "Did Ferdinand Porsche hold a triple citizenship?"
},
{
"qid": "b73d8f8629e64107cc11",
"question": "Would a polymath fail on Jeopardy?"
},
{
"qid": "b342e70ff97cb8454041",
"question": "Did the State of Mexico build the Statue of Unity?"
},
{
"qid": "8174b523d4cbd49edf9c",
"question": "Were pictures of Elizabeth the queen mum commonly found south of the Zambezi?"
},
{
"qid": "29ab52a4bfbdfc1f02c7",
"question": "Could the longest petroleum pipeline reach to the moon and back?"
},
{
"qid": "52f30b71b84b807a7051",
"question": "Do Romani people worship Adolf Hitler?"
},
{
"qid": "d50a4271cdc2d3f71698",
"question": "Can incompetent hanging do the same thing as the guillotine?"
},
{
"qid": "656869d4667a2b49fc7d",
"question": "Does Port of Spain have its own version of Wall Street?"
},
{
"qid": "a108fda6a5e360590f97",
"question": "Are black pepper seeds similar in form to mangoes?"
},
{
"qid": "d7a19763ac58ad7751ff",
"question": "Would Blas de Lezo need to be cautious of beavers?"
},
{
"qid": "9ca756c903e2b7617480",
"question": "Would it be difficult to tell the Finnish and Portuguese admiral's insignia apart?"
},
{
"qid": "9e5fd4615b47c831f468",
"question": "Is Bob Marley an atheist?"
},
{
"qid": "f39fed3f48856ba3c8f7",
"question": "Have most humans seen non-Euclidean geometry?"
},
{
"qid": "d740c9863de69334f978",
"question": "Would the Muscovy Company's trade route to Russia be impassable in December?"
},
{
"qid": "590febc7f2fa0b3a6373",
"question": "Is suicide also called as accident?"
},
{
"qid": "a12b68c205beda6716b4",
"question": "Was Rurouni Kenshin the favorite manga of Nobunaga Oda?"
},
{
"qid": "765e5b822522f94c0fef",
"question": "Would the birds on Saint Kitts and Nevis' coat of arms survive in Nome, Alaska?"
},
{
"qid": "58f07ec2eb312b6a109a",
"question": "Are nurses represented on the seal of the department responsible for occupational safety?"
},
{
"qid": "78c80a295f0315e1abd2",
"question": "Did the invention of the gear speed up the end of slavery in the American South?"
},
{
"qid": "109abb18d4cc606d42dd",
"question": "Is exterminator a bad job for someone with a low white blood cell count?"
},
{
"qid": "4eb17067aec783fe66c9",
"question": "Would Diogenes have been a hippie?"
},
{
"qid": "4c038faf16f77f69b326",
"question": "Does Pink's hit from Moulin Rouge! reference a pastry?"
},
{
"qid": "e86ae368337da38723e2",
"question": "Did The Young and the Restless launch Finn Wolfhard's career?"
},
{
"qid": "4359ef355f9c49467ebe",
"question": "Does Toys \"R\" Us sell adult toys?"
},
{
"qid": "237ad6a89cb4ecab5b51",
"question": "Can liquid form of hydrogen harm human beings?"
},
{
"qid": "d06799d221f4e05e9471",
"question": "Do Halloween traditions originate from a group of people that communicated through Lepontic inscriptions?"
},
{
"qid": "ba6daf48b991058bc9de",
"question": "Is durian's name inspired by something commonly found on roses?"
},
{
"qid": "fdd40bd64a3ce7564229",
"question": "Did the Dutch help with the extinction of the Atlantic grey-whale?"
},
{
"qid": "9c7d82599a378218ccc0",
"question": "Is the Christmas eve celebrated because the god was born that day?"
},
{
"qid": "878460e1f16ce2fa83a7",
"question": "Does Christopher Walken take after hairstyle of \"King of Rock and Roll\"?"
},
{
"qid": "8236752438f10756d9b5",
"question": "Can the Australian Football League be traced back to Australia's smallest mainland state?"
},
{
"qid": "fb518ca7915bf3ccccae",
"question": "Does Tom and Jerry star a member of the order carnivora?"
},
{
"qid": "107328351fab1607f195",
"question": "Does the Central processing unit help play Killer Instinct (2013)?"
},
{
"qid": "f2655fb4c7a2d0e234ab",
"question": "Would Uppsala's original settlers have worshiped the Christian deity?"
},
{
"qid": "dbe16ce5a7c47c8631cf",
"question": "Did Ludwig van Beethoven start rock and roll?"
},
{
"qid": "b836473dae21274cb28d",
"question": "Can Anthrax be used as a treatment for Lymphoma?"
},
{
"qid": "706b24ddcb840a63838a",
"question": "Did the person who gave birth to 50 Cent remain ignorant about his drug dealing?"
},
{
"qid": "e1bf7ddabc988270b297",
"question": "Was the term Chinese Taipei first used to bring about a neutral compromise for Taiwan's participation in the Olympic Games?"
},
{
"qid": "69fd22bb0730badf8521",
"question": "Are snakes a concern in areas with lots of wild Emperor penguins?"
},
{
"qid": "aed8400e4be783d85266",
"question": "Is flour used to make roads?"
},
{
"qid": "8ee44fdf760df37c952a",
"question": "Does hypertension help tap into the speed force?"
},
{
"qid": "a6c5391f3e2095905c3f",
"question": "Did Television broadcast a live suicide?"
},
{
"qid": "dfbd25aafda828e808bb",
"question": "Are the activities of the Mud Bay Logging Company conducive to sun bear well being?"
},
{
"qid": "87d7623026bddb81654b",
"question": "Would people pinch the Hulk on St. Patrick's Day?"
},
{
"qid": "ac7ca2673c1bd4ef2748",
"question": "Did Partition of India happen in summer?"
},
{
"qid": "63bf561dfbf2ba6775a0",
"question": "Did the Thirty Year's' War help create the \"The Great Miseries of War\" series?"
},
{
"qid": "c27ae61acea716051891",
"question": "Can the skull stop a bullet?"
},
{
"qid": "c6daea3da53a551ae5a9",
"question": "Does Black Pepper grow in Antarctica? "
},
{
"qid": "32864d23048cc6bf9292",
"question": "Could tourists in Bangladesh stay at an upscale American hotel?"
},
{
"qid": "6d2785a74f1771bdce78",
"question": "Is Benjamin Franklin Richard Saunders?"
},
{
"qid": "a9a8ddc780ea159f1972",
"question": "Could a white-tailed deer jump over a tank?"
},
{
"qid": "05ddaa875eb76e7fbe31",
"question": "Did a solo get developed by the devil?"
},
{
"qid": "009b2d5711934af6e983",
"question": "Would Olin Levi Warner have studied hip-hop linguistics?"
},
{
"qid": "51199b91f4bfc3828402",
"question": "Does Alpine skiing create friction?"
},
{
"qid": "db41fe51e0801e6be863",
"question": "Is noon a good time to go to Pasar Malam?"
},
{
"qid": "2e5342cd54e2cc11f881",
"question": "Would ancient handball players have an advantage at a modern concert?"
},
{
"qid": "de43af75092ba0b3a2a3",
"question": "Would rulers of ancient Egypt have supported the Divine Right of Kings?"
},
{
"qid": "891d355d427ee64e8ff5",
"question": "Can an adult elephant lift the biggest cheeseburger ever made?"
},
{
"qid": "2e0bdedff3b23cc7e675",
"question": "Did Eric Clapton sing on the first computer?"
},
{
"qid": "1d1973110e21810c631a",
"question": "Is cyber-bullying a classmate Organized crime?"
},
{
"qid": "353231a1ade9d631fe80",
"question": "Can the Gospel grill food?"
},
{
"qid": "4f124c484e9260cffdd3",
"question": "Is it a good idea to wear 1936 Olympics memorabilia to a synagogue?"
},
{
"qid": "1062d58387244af9385f",
"question": "Could Bayesian statistics have helped Stanley Milgram?"
},
{
"qid": "c80002ba9384b8b046b5",
"question": "Did Larry King go into business with the world's richest man?"
},
{
"qid": "5e1a3eddab001db947a5",
"question": "Are there enough castles on the Kingdom of Hungary's coat of arms to play chess?"
},
{
"qid": "19e49e4936d6562935a9",
"question": "Is communication not possible without the five classic senses?"
},
{
"qid": "603637fca5c5264d5d72",
"question": "Is the Klingon insignia based on the triskelion?"
},
{
"qid": "053a58fbc39bb95b0c94",
"question": "Did Donald Duck beat Felix the Cat to the comics?"
},
{
"qid": "8e049e46ea123495d851",
"question": "Was Moses the son of Levi?"
},
{
"qid": "4238e3265e7a68ba3031",
"question": "Could watching East Enders be a full time job for a full year?"
},
{
"qid": "abc059bd13e1d02b89fe",
"question": "Was Ancient Greece unable to incorporate broad sheet glass into its architecture?"
},
{
"qid": "f178e82dd61d7891fe9a",
"question": "Would Jack London's mother have her baby taken away today?"
},
{
"qid": "2125544ba5429886d3e5",
"question": "Is it safe to take a Pikachu in the bathtub?"
},
{
"qid": "ddf192e4292981a5b921",
"question": "Is Family Guy more experienced than Stranger Things?"
},
{
"qid": "4f25e530dd1b2e5e9e34",
"question": "Would Reporters without Borders have fought against Jay M. Near?"
},
{
"qid": "7b87c623b35137e713c6",
"question": "Is force required to close my car door?"
},
{
"qid": "692f1f8fc4ca339137dd",
"question": "Do they ski in Guam?"
},
{
"qid": "e0673758de32b2e44ba1",
"question": "Would the trees in the forest of Endor be angiosperms?"
},
{
"qid": "26b1b62d784b86ed256f",
"question": "Have Douglas firs been used for transport thousands of miles from their origin?"
},
{
"qid": "fcf302dac146143b0102",
"question": "Did Yuri Gagarin study near Ural River?"
},
{
"qid": "6bc84e522e0ec8322f5c",
"question": "Are smaller gorillas more likely to leave their birth troop?"
},
{
"qid": "c1192c07a890b44af971",
"question": "Does the East India Company's coat of arms have the symbol of St. George?"
},
{
"qid": "7e8a674fdb284f271b40",
"question": "Would Artemis have been an appropriate deity for Davy Crockett?"
},
{
"qid": "5143d7fe021bf00314c5",
"question": "Did the name Michael peak in popularity during Reagan's presidency?"
},
{
"qid": "ee63d06dadfb00c0846f",
"question": "Would the Sear's Tower likely to be seen in the background of Law and Order?"
},
{
"qid": "8afdbad4efef538b2efb",
"question": "Could a soccer team share one lobster's legs evenly?"
},
{
"qid": "feb8525fda87e1a1d656",
"question": "Would someone who hates rice enjoy paella?"
},
{
"qid": "06571a7a4c402a593a57",
"question": "Was Louis XV born in Berkshire County?"
},
{
"qid": "c8b9e244c9872c8ae446",
"question": "Did the first modern comic books not come out in video format?"
},
{
"qid": "3bda915795455368321e",
"question": "Are frequent Sesame Street viewers at low risk for pelvic inflammatory disease?"
},
{
"qid": "b292d0f5ef393192d444",
"question": "Was Jackie Chan's 1973 movie named for an animal associated with rebirth?"
},
{
"qid": "5ae3d376a476d693a2a5",
"question": "Did Noah bring two capybara on his ark?"
},
{
"qid": "e970b18823529883eb78",
"question": "Do Macaque carry pathogen? "
},
{
"qid": "25d8d57f9fe94250de6b",
"question": "Does February have no sunday?"
},
{
"qid": "f58fc0fdb874dceba49b",
"question": "Can an infant fly with his wings?"
},
{
"qid": "78e985931273aa69f66b",
"question": "is Bandy played in Kenya?"
},
{
"qid": "055a64b5e2ca8f61b757",
"question": "Might a fletcher have affinity for Apollo?"
},
{
"qid": "6758a7fdef8470a60b31",
"question": "Could fireworks at SANAE IV be spectacular at noon on June 22nd?"
},
{
"qid": "abe87355f86e9bf7f046",
"question": "Did apartheid cause Attack on Pearl Harbor?"
},
{
"qid": "26b291c5e85f8af00cee",
"question": "Would someone between Masbate and Panay be subject to extradition to China?"
},
{
"qid": "f6710e67e59bdf723873",
"question": "Does bodybuilding reduce BMI?"
},
{
"qid": "24e6687b5ff6d5d2261b",
"question": "Did the father of medicine battle fevers from the same diseases we do today?"
},
{
"qid": "4839579b087c100144cb",
"question": "Is Little Women about the life of Midget? "
},
{
"qid": "76a7e0fb9150af032f62",
"question": "was the ancient murdered man preserved in Alps?"
},
{
"qid": "33f7d1f8a96a9ab6c137",
"question": "Did Robert Downey Jr. refuse to appear on the show with the dancing baby?"
},
{
"qid": "62e1190219bc407adf58",
"question": "Is horseradish a good baby food additive?"
},
{
"qid": "4597efa9c2bb374b2788",
"question": "Can the Curiosity (rover) beat a cheetah in a hypothetical race?"
},
{
"qid": "1cea395b4d508ab2a6d1",
"question": "Did Paul Allen take an eternal rest in the same city where he was born?"
},
{
"qid": "5c49d81c6268924375b4",
"question": "Does hot water have higher solubility of sugar than cold water?"
},
{
"qid": "0da7a34b3f72924259f5",
"question": "Do students in School District of Philadelphia speak English?"
},
{
"qid": "54f0ce5b9f3beef0be9f",
"question": "Would someone with Pancake Syndrome have use for an Epi-pen?"
},
{
"qid": "6daec12a5706435bbcb1",
"question": "Can a Brazilian jiu-jitsu fighter be defeated by George Dillman?"
},
{
"qid": "404d8da0152a931b8d3a",
"question": "Are wolverine hunters unlikely to develop sunburns?"
},
{
"qid": "16a92e50f28f1ff2d1dc",
"question": "Did Zika virus infect big cats?"
},
{
"qid": "34924d263b5a2cef71b3",
"question": "Is the current President of the CW the chief content officer of Spotify?"
},
{
"qid": "2b6d7055f4a055b7063a",
"question": "Did Mike Tyson physically punch out General Raam?"
},
{
"qid": "436f1cf8e0f43ec2ba24",
"question": "Was the Dominican Order was founded by the patron saint of Astronomers?"
},
{
"qid": "a72e0ac2136bbd61f373",
"question": "Is Vladimir Putin likely to be popular at a vegan co-op?"
},
{
"qid": "aceafe5b5045f7bb9813",
"question": "Did Theodore Roosevelt initiate the Mexican–American War?"
},
{
"qid": "254a13aa8d6222ed5206",
"question": "Would Torquemada have a use for covert listening devices?"
},
{
"qid": "5ba2c0e36dc66553a5cf",
"question": "Would Michael Crichton make a good basketball player?"
},
{
"qid": "895b1809b90568fdfe96",
"question": "Is all the Colitis caused by bacteria?"
},
{
"qid": "619b1b6e455ea3196b13",
"question": "Could the mayor of Billings be arrested for underage drinking?"
},
{
"qid": "8a038b25536e7888b4f8",
"question": "Can the National Hockey League be won by the Spurs?"
},
{
"qid": "4e61eacc03d24d84fc7e",
"question": "Does Atlantic Salmon eat sharks?"
},
{
"qid": "b15e709b0e20ee64153a",
"question": "Did Snoopy break king Ramses curse?"
},
{
"qid": "f936fa78930a83d42390",
"question": "Are sheep killed for a god?"
},
{
"qid": "3921429a299bb0fd5051",
"question": "Was it possible for King John of England to know about curling?"
},
{
"qid": "31ef4d2d88c46097b4a4",
"question": "Could the builder of the Saqqara pyramid have used sine in it's construction?"
},
{
"qid": "1846f0d374504cfff483",
"question": "Can the Seahawks smoke pot after their victories?"
},
{
"qid": "75fe58d6105db11efd9c",
"question": "Would a yeti dislike wearing lots of chain necklaces?"
},
{
"qid": "03b99a749db23510e311",
"question": "Did the Godfather of Soul successfully battle a cancer that only affects men?"
},
{
"qid": "a6fcf37bf94d2b16366d",
"question": "Did the founder of Hamas take his first breath in Canada?"
},
{
"qid": "12eba9ba5ad0a69f21e7",
"question": "Did Futurama insert a cameo of Fulgore?"
},
{
"qid": "416aaa6fd0c31bf19917",
"question": "Would Pepsi's major 1990 acquisition be useful in Albuquerque?"
},
{
"qid": "ad0a144d7f9ec42a4ee8",
"question": "Did Finding Dory win the Eisner award?"
},
{
"qid": "82e8a6fec64dbd1fa36a",
"question": "Is \"Swan\" a likely name for a hockey team?"
},
{
"qid": "75bc93b97ff2b7ba25b8",
"question": "Is Duke University found by a Buddhist? "
},
{
"qid": "32380618fabbe019f28e",
"question": "Could helium have prevented the Hindenburg disaster?"
},
{
"qid": "c2d83e4364acffa8ffa6",
"question": "Does the ingredient in flour that makes it stretchy contain DNA?"
},
{
"qid": "78845d431db6317d918c",
"question": "Is numerology a topic taught to kids as a syllabus of mathematics?"
},
{
"qid": "2f32c58c7f29590a11a0",
"question": "Did Saint Peter liberate Saint Petersburg?"
},
{
"qid": "492b5d54e895ba8c6795",
"question": "Does a coronavirus vaccine make it easier for pandas to mate?"
},
{
"qid": "80b1be0fff217b96872a",
"question": "Would the Biblical Isaac not enjoy a sitcom?"
},
{
"qid": "de8c1b3a23f1027f40b1",
"question": "Would the Greeks attribute the events at Fukushima to Poseidon's approval?"
},
{
"qid": "e3905f74756c879cae31",
"question": "Does platypus have a stomach?"
},
{
"qid": "7a4802347e6dd236cb50",
"question": "Can Tulsi Gabbard eat the fries at McDonald's?"
},
{
"qid": "297f99b3cc5c9e765b75",
"question": "Was French Toast invented in France?"
},
{
"qid": "f11bda5dbcc0ecdedcec",
"question": "Is John Lewis playing as a pitcher for Detroit Wolverines this year?"
},
{
"qid": "2a64b5a17a6198dbc377",
"question": "Does Karaoke let you allude to the mastery by the king of pop?"
},
{
"qid": "bc45281c674b4050ed33",
"question": "Is there a jukebox musical whose name translates to \"Red Windmill\"?"
},
{
"qid": "b2e0b7a17bde987d3164",
"question": "Can an ape hang like a capuchin?"
},
{
"qid": "ed31226d66d541a7f1d8",
"question": "Does OpenOffice.org distribute free office software on CD?"
},
{
"qid": "8a573b8d45dc60d22597",
"question": "Does the hero of the Odyssey come from a town that is also found in New York?"
},
{
"qid": "a4c0c3a38b1f59ac5033",
"question": "Were courts an unusual setting for Heian literature?"
},
{
"qid": "357b075c6643fced0862",
"question": "Are leaves seen more commonly in the Sahara desert than in Iguazú National Park?"
},
{
"qid": "163cd3a045b71dc22be0",
"question": "Do abandoned tires increase the risk of Zika virus?"
},
{
"qid": "3b2ab44ec099344daf6c",
"question": "Would Pan have been a supporter of the New Zealand Wool Boom?"
},
{
"qid": "dd3cf75bc698a1c1c0ad",
"question": "Is the Alice in Wonderland character based on Lewis Carroll part of an extant species?"
},
{
"qid": "fcb1846eae599b9b9007",
"question": "Does United Nations Framework Convention on Climate Change sell ice?"
},
{
"qid": "15e42d42689aa8a2cde6",
"question": "Is bestiality more universally illegal than cousin marriage in the United States?"
},
{
"qid": "47c1467cf2565849b7b5",
"question": "Do handball male goalkeepers wear an undergarment for protecting the testes and penis?"
},
{
"qid": "1416c632526ec11badb6",
"question": "Are bankers unlikely to pierce their tongues?"
},
{
"qid": "12148c75fc00d4e0da65",
"question": "Would a Dutch barn in the UK have good air movement?"
},
{
"qid": "04033c87b7c40a55efb9",
"question": "Would Ashley Olson have a hard time finding a kidney donor?"
},
{
"qid": "6363785794016be68772",
"question": "Could Antarctica become part of NATO?"
},
{
"qid": "9778028bf5a880f6adb8",
"question": "Would a Roomba be the target of a red carpet correspondent?"
},
{
"qid": "ce8d1bc6cf8597d707b3",
"question": "Did Jeremy Irons land on the same island as Gilligan?"
},
{
"qid": "7f66a151ff28cc795a44",
"question": "Does hair get used to attack people?"
},
{
"qid": "0c57946eebf88d59d690",
"question": "Is Intel a small business?"
},
{
"qid": "a7ede4efca04b8c5422e",
"question": "Did Alan Rickman kill Dumbledore?"
},
{
"qid": "ce6ba5a537e26891fda6",
"question": "Does Orange County, California have runestones?"
},
{
"qid": "6aefb34b768630034e2b",
"question": "Are brokers experienced in cleaning rooms?"
},
{
"qid": "63ceacc41cd2685fd2c1",
"question": "Can Tulsi Gabbard eat the fries at McDonald's?"
},
{
"qid": "cf14c63120ef3e661455",
"question": "Would an admiral take orders from a captain?"
},
{
"qid": "da681195388c38ca6900",
"question": "Did Poseidon show what it is like to be murdered?"
},
{
"qid": "46f4d386721da929af6f",
"question": "Is Palace of Westminster owned by publicly traded company?"
},
{
"qid": "29ea75201dde815d15e2",
"question": "Did Law & Order have the first chief justice act in an episode?"
},
{
"qid": "b9696d25ddc1939ce057",
"question": "Could Elijah cure a dog's depression?"
},
{
"qid": "f1f455f48234ecc1902f",
"question": "Was the 68th US Secretary of State a Girl Scout?"
},
{
"qid": "90550332378e2251da11",
"question": "does the Petroleum industry benefit from dead plankton?"
},
{
"qid": "2d1c8eec2321d0226130",
"question": "Would Nietzsche support the monarch of Spain's favorite charity?"
},
{
"qid": "769fb46fd7f6bf47d9ee",
"question": "Do Emperor penguins dwell near the Equator?"
},
{
"qid": "f9c4b1d479813500348e",
"question": "Could the leader of the Russia during the Russo-Japanese War have supersonic travel?"
},
{
"qid": "d3fdd05c0a7d68b7afc3",
"question": "Does Microsoft office have a Zoom competitor?"
},
{
"qid": "e66167f2238ad12ec81e",
"question": "Does real estate development promote population growth of Green sea turtles?"
},
{
"qid": "da7967c3746b552d579f",
"question": "Was Hurricane Harvey affected by the Chicxulub asteroid?"
},
{
"qid": "2e48dcd7a6603f2ef328",
"question": "Was the United States Military Academy not established in Spain?"
},
{
"qid": "5b2022b8923d5a255104",
"question": "Can you finish an SAT practice essay on a bus ride from Seattle to Vancouver?"
},
{
"qid": "213816bb3ff5ee587ad4",
"question": "Could the Beatles have played at Juneau's unification?"
},
{
"qid": "c0ea4a54dd450d033cff",
"question": "Would a warthog's reptilian predator have strong stomach acid?"
},
{
"qid": "d16a11806590458dffff",
"question": "Are treatments for herpes unlikely to work against COVID-19?"
},
{
"qid": "ab19e2f0288108236801",
"question": "Did Seven Years' War kill Stonewall Jackson?"
},
{
"qid": "c659b0b790d0263254ea",
"question": "Did a RoboCop co-star work with Stephen King?"
},
{
"qid": "b2487dbeca77fdb62cf7",
"question": "Is corn unable to grow in the Chernobyl Exclusion Zone?"
},
{
"qid": "6e76e984668c030bf487",
"question": "Can I commute to Paramaribo in car from India?"
},
{
"qid": "2d33958ceb13fc7eb979",
"question": "Can an amoeba design software?"
},
{
"qid": "80316601d3346642e34f",
"question": "Could the president during the Great Depression compete in the Paralympic Games?"
},
{
"qid": "584bb7013b01fb1ee504",
"question": "Would Angry Birds have been of interest to John James Audubon?"
},
{
"qid": "552de631c4711cea035a",
"question": "Does a Santa Claus kill the naughty?"
},
{
"qid": "f2ae757e7d957194ce8c",
"question": "Could someone make rosewater during the Silurian?"
},
{
"qid": "923e35e7c3c184bb78ad",
"question": "Did the toyota prius ever make a driverless car?"
},
{
"qid": "920bdeae417f38eb9845",
"question": "Would the animal on Leipzig's coat of arms eat kudu?"
},
{
"qid": "46a71adeefb53efec4c3",
"question": "Was the worlds oldest existing suspension bridge built by Imhotep?"
},
{
"qid": "83f03871df627b5a745e",
"question": "Is it possible to celebrate midnight in New York City and Seattle in the same year?"
},
{
"qid": "5adc7bd1abc9fdba381b",
"question": "Was Organized crime proliferated by the prohibition?"
},
{
"qid": "e77e3f1530c1bee79b61",
"question": "Did August start as the eightieth month of the year?"
},
{
"qid": "1eb92fa657f32a5517c3",
"question": "Is it easy to confuse a Canadian dollar coin with a Sacajawea dollar in the dark?"
},
{
"qid": "bbc3166d6cace8d56d5b",
"question": "Would Coca-Cola have been pleased by PepsiCo's Soviet deal?"
},
{
"qid": "d7e653d112b9cd1f6dc3",
"question": "Were the pyramids built for the british?"
},
{
"qid": "55847f37bd8a198e7603",
"question": "Would a smart mirror be likely to be covered by Slashdot? "
},
{
"qid": "480e49d867a8e01a2956",
"question": "Was Alexander VI too young to collect Social Security on becoming pope?"
},
{
"qid": "bf4b1d4ef62b6f2194ac",
"question": "Is it worse to spill paprika-flavored soup on a wedding dress versus a glass of milk?"
},
{
"qid": "1aeb15622a54454ba597",
"question": "Did the Northern Mariana Islands have a president?"
},
{
"qid": "ded77b3d03bf5a9ba07e",
"question": "Does a characteristic of the Turkish language share a name with a blood typing test?"
},
{
"qid": "9b464d947836c8f475dc",
"question": "Is breakdancing a popular activity at the Elks?"
},
{
"qid": "00abd896c5723e3a881e",
"question": " Did Saddam Hussein lose his parent due to abnormal cell growth condition?"
},
{
"qid": "d5b05958c97b36c9f3e5",
"question": "Do wild grizzly bears live long enough to be eligible to vote?"
},
{
"qid": "bb000379104947b47849",
"question": "Is bill gates a founder of the finding dory movie production unit?"
},
{
"qid": "14ae9a462d5ed2a868ea",
"question": "Are college organizations with Greek letters for names known for sobriety?"
},
{
"qid": "9f23e6f027bf4ee9f2f3",
"question": "Do fossil fuels increase the chances of Earth becoming like Venus?"
},
{
"qid": "f2abc01e5496bb085cab",
"question": "Were the Psalms in Handel's Messiah modified by Elizabeth I?"
},
{
"qid": "27a3af124543876cd2fd",
"question": "Did Ludwig van Beethoven write a theme song for Family Guy?"
},
{
"qid": "04d65d4be15c11d32a1e",
"question": "Was Alaska won as a result of the Mexican-American War?"
},
{
"qid": "78748ad1a92e9ac293a3",
"question": "Does the emblem of the Spanish Navy feature jewels from the sea?"
},
{
"qid": "58b1fe44514191b9fe47",
"question": "Did Mr. Peanut compose the music for Saturday Night Live?"
},
{
"qid": "688c2f0cc34b1ecdc473",
"question": "Did the Panthéon house the statue of Zeus?"
},
{
"qid": "4e802ec2f267ff323959",
"question": "Is the state where Desperate Housewives takes place named after a dinosaur descendant?"
},
{
"qid": "9b64d54a96ad5a93874c",
"question": "Does inflammation cause Spontaneous human combustion?"
},
{
"qid": "956e140a385ba944fb8f",
"question": "Can the Eiffel Tower be fully submerged in the Caspian Sea?"
},
{
"qid": "41cc4d28810868ed1c0d",
"question": "Does my samsung phone use iOS as operating system?"
},
{
"qid": "dd6d9b0e8bd146eff887",
"question": "Is the current United States Secretary of State nominated by Barack Obama?"
},
{
"qid": "8cda96f5fa43d6a26b5c",
"question": "If Antarctica were rotated sixtyfive degrees clockwise would the Antarctic Peninsula point towards Africa?"
},
{
"qid": "b8be687a41221cc0726f",
"question": "Would audiobooks have been helpful to Isaac?"
},
{
"qid": "0a1d28debdce989bda19",
"question": "Do Markhors eat penguins?"
},
{
"qid": "54f955d76c08662e3f04",
"question": "Is the Holy Grail the right shape to serve gazpacho?"
},
{
"qid": "9a340143fb50c0ed167b",
"question": "Can a rose plant grow as high as Eiffel tower?"
},
{
"qid": "6ce22581810baad4e963",
"question": "Would Mark be Scott Kelly's slave in Yoruba society?"
},
{
"qid": "772124f1e1990388e670",
"question": "Was Mark Twain likely to be a fan of William Jennings Bryan?"
},
{
"qid": "bc68470864f33b4a3edf",
"question": "Did the first female ambassador in European history marry with the father of Elizabeth I of England?"
},
{
"qid": "1a19eb602f2a6379e3f1",
"question": "Did they fight Napoleonic Wars under the command of Barack Obama?"
},
{
"qid": "02a6e27ac3cec5b77d33",
"question": "Would the tamarind tree make a good invasive species?"
},
{
"qid": "53c6f77dc3cdd0b2ea8b",
"question": "Could a grizzly bear walk the length of Death Valley in a day?"
},
{
"qid": "ebbfb19b7f1d234184a8",
"question": "Is moose stew likely to be seasoned with chiles?"
},
{
"qid": "389dda24f7fb01b2632a",
"question": "Does freedom of speech allow Nazi's to spread their message?"
},
{
"qid": "20cff5c09508d3113bc0",
"question": "Did General Motors create the first global car?"
},
{
"qid": "e6251e400258064c00b8",
"question": "Is a cholera outbreak likely in Scottsdale, Arizona?"
},
{
"qid": "59901794c23fe78ee687",
"question": "If wood ducklings were human, would they be afraid to bungee jump?"
},
{
"qid": "7e31d9c3e590fa9c2bf9",
"question": "Would Richard Feynman deny the divinity of the lady on the Minsk coat of arms?"
},
{
"qid": "052aa518dc2254a96654",
"question": "Is Molecular biology a subject in my economics class?"
},
{
"qid": "30bb26329e61a77b5b50",
"question": "Is the county once known as County Palatine of Chester in the Somerset?"
},
{
"qid": "43986f971193258ea750",
"question": "Did a Month get renamed for a Roman Dictator?"
},
{
"qid": "d1f42c6228079d8f0598",
"question": "Did the 1912 United presidential election result in a president that embraced Ku Klux Klan ideology?"
},
{
"qid": "99b8bfe6ec4ffcab600a",
"question": "Is captain Jean Luc picard the captain of a Klingon ?"
},
{
"qid": "578548ff80f1f4855f4c",
"question": "Is 3G the successive technology to 5G technology? "
},
{
"qid": "5c1c4abb72b2c5b9a238",
"question": "Did the leading figure in the Iran-Contra affair avoid television appearances?"
},
{
"qid": "f75c06be024227290243",
"question": "Did Cicero develop modern medicine?"
},
{
"qid": "a3762ba683d44c9c71d4",
"question": "Can water skiing be done in Pearl Harbor?"
},
{
"qid": "32eb2544379d9b7f07a5",
"question": "Does the New York Public Library's cornerstone contain DVDs of new events? "
},
{
"qid": "2cb4bfb350b1cfc02f86",
"question": "Was Saint Kitts and Nevis's head of state the daughter of the second son of King George V?"
},
{
"qid": "234e57240968e3ae0b9b",
"question": "Does Donald Trump look like he has been at a festival for Khandoba?"
},
{
"qid": "ed6b93679309240c9d78",
"question": "Would James II approve of the Establishment Clause of the US Constitution?"
},
{
"qid": "e7ec8e3b4ed52f70d8fb",
"question": "Would the antagonist from Billy Goats Gruff fit in as a trouble maker in the present?"
},
{
"qid": "a5387b38c40be9f7e050",
"question": "Can I take a catfish for a walk in the park?"
},
{
"qid": "975e871677b71e5097f9",
"question": "Did Robert Altman call the song his son wrote \"Brilliant\"?"
},
{
"qid": "19f5c6fc08516fb753a4",
"question": "Is transmission control protocol used to control bacterial transmission?"
},
{
"qid": "661a74d4f66a0ee32cfd",
"question": "Does a disc jockey issue a marriage license after playing at a wedding?"
},
{
"qid": "03808a32be207f43af45",
"question": "Would a koala be a good mascot for Ambien?"
},
{
"qid": "6ea08b3e2de9b54996aa",
"question": "Does Political science involve acid-base equilibrium?"
},
{
"qid": "b362a994b7a0106e0062",
"question": "The Common Era notations are not numerically equivalent to the notations used in the calendar promulgated in 1582 by Pope Gregory XIII?"
},
{
"qid": "d5b66b4696a67fbd94f8",
"question": "Did Cosmic rays give Sue storm her abilities?"
},
{
"qid": "6aceaa61596afe65db3e",
"question": "Was Cauliflower used by John Wayne Gacy to lure people to his home?"
},
{
"qid": "780941c879de3bf3ebe6",
"question": "Is lemon juice a good treatment for acid reflux?"
},
{
"qid": "943a598a3e0bd6b937e2",
"question": "Would Vulcan and Pele have gotten along with each other?"
},
{
"qid": "546d35745786440456a3",
"question": "Could the stems of rose plants have been used on Jesus' head?"
},
{
"qid": "e75a09b6f02340b4eda3",
"question": "Did Jerry Seinfeld teach Lenny Bruce about comedy?"
},
{
"qid": "6bacb56cc3a62736c5f3",
"question": "Is the US drinking age a Fibonacci number?"
},
{
"qid": "29680f320e6977459bf8",
"question": "Did Ivan Pavlov love the taste of Cookie Crisp?"
},
{
"qid": "c4fc827725fa38cac521",
"question": "Is Hamilton too long to watch while Thanksgiving dinner cooks?"
},
{
"qid": "a49eea75222f0e505d65",
"question": "Does the country expecting to host the 2020 Summer Olympics have the least number of posts to their internet forums?"
},
{
"qid": "924e419b8eeb0b3b4847",
"question": "Is garlic used in construction of houses?"
},
{
"qid": "5eadc94bfdef5e6b7014",
"question": "Does the Walt Disney Company use D'oh! exclusively?"
},
{
"qid": "358d80328eb41e326fac",
"question": "Are more watermelons grown in Texas than in Antarctica?"
},
{
"qid": "5658a1ded92b4a4dd26f",
"question": "Will barley harvests be affected by the arrival of murder hornets?"
},
{
"qid": "7709893e2c0d82115196",
"question": "Do the best ingredients for shepherd's pie come from Kobe?"
},
{
"qid": "ab597d5a5d0e4220ca33",
"question": "Do spiders hate basil?"
},
{
"qid": "966adf6479a4351bdc64",
"question": "Does Brazil's Army need support from the other military branches to attack France?"
},
{
"qid": "fa008632f37ddbcff76e",
"question": "Can you play Dungeons & Dragons with Marcus Aurelius? "
},
{
"qid": "bbfb378b33e8f76ff52e",
"question": "Has a crayon not studied meterology?"
},
{
"qid": "2a360d5b9bebc88bd41b",
"question": "Are migraine sufferers more likely to wear bras than jockstraps?"
},
{
"qid": "3467b145b0039c8e7ea7",
"question": "Can the tongue taste Carbon Monoxide?"
},
{
"qid": "a321cd5f6a7faaf3afdd",
"question": "Would Japanese Zen practitioners follow a set of tenets of the same name as an emperor?"
},
{
"qid": "b7a7a5a5d95f93668de7",
"question": "Does the Dark Knight's villain sometimes beat a queen in a game of spades?"
},
{
"qid": "231f75e64ba2a5617173",
"question": "Is the Riksdag closer to the equator than Quebec City?"
},
{
"qid": "b29e2965a5a9ee29c96f",
"question": "Are Haiku's spoken in Borderlands? "
},
{
"qid": "081eb8a16ca9b9b63a8e",
"question": "Is Hieronymus Bosch a good choice to illustrate diaper packaging?"
},
{
"qid": "20fe1ad85247ab45cf5c",
"question": "Would the bird on the crest of University of the West Indies feed on whitebait in New Zealand?"
},
{
"qid": "3b7bd86bdec9dbf003e6",
"question": "Can you carry a hamster in the bicycle basket? "
},
{
"qid": "7ceef057260b1b758aa0",
"question": "Does family planning increase world population?"
},
{
"qid": "cca16de56471e7d964b0",
"question": "Do the Simpsons show signs of hepatitis?"
},
{
"qid": "d3d0ba602adc6b56e167",
"question": "Do Bees die to murder hornets?"
},
{
"qid": "69c7d94ffb566c364bc3",
"question": "Does hunger get activated by people on purpose?"
},
{
"qid": "df335f92b25ea4730586",
"question": "Was Claude Shannon influenced by Medhatithi Gautama?"
},
{
"qid": "909802f1332f9b9e9842",
"question": "Did Christians celebrate Hanukkah?"
},
{
"qid": "c497fd67dd191e97ae4e",
"question": "Were mousers unheard of in Neolithic China?"
},
{
"qid": "5d3e2707cef8cd7e6496",
"question": "Does the Black Monday happen every year?"
},
{
"qid": "0c6d6634040903108423",
"question": "Is some Christian music brutal?"
},
{
"qid": "942d5c716daa6a43b611",
"question": "Can a black person be a nerd?"
},
{
"qid": "24972e117cfeaa2790ea",
"question": "Do Mennonites share a familial labeling system with Pakistanis?"
},
{
"qid": "b90eb5cfcd9629cd34f7",
"question": "Is butter made from sharks?"
},
{
"qid": "8cb3f27eacdf5d67851b",
"question": "Did the Reformation lead to England adopting the Lutheran theology?"
},
{
"qid": "d03d2a6d8342d867073f",
"question": "Did John Kerry graduate from an institution that was chartered before the United States of American became a sovereign nation?"
},
{
"qid": "fbe7deb64e687422dd93",
"question": "Did James IV rule over Mesopotamia?"
},
{
"qid": "1f843320946254931b27",
"question": "Did the fissile record of snakes first appear in the period when eustatic sea level is low?"
},
{
"qid": "92357113f344a6980021",
"question": "Is human memory capable to store computer files?"
},
{
"qid": "c2cc8471dcc789702fb4",
"question": "Is Donald Duck's birthday associated with a horror series?"
},
{
"qid": "0e654e360db024417a0a",
"question": "Do cosmic rays land in our homes?"
},
{
"qid": "37fec54180d80b7a88f7",
"question": "Did Homo erectus pekinensis read gospel?"
},
{
"qid": "77fa5186e248559b3fca",
"question": "Would Bill Nye dislike Charles Koch?"
},
{
"qid": "29fa0009874301978231",
"question": "Did a Multiracial person invent the electric battery?"
},
{
"qid": "ad8b9ab520657615b7e2",
"question": "Would tomatoes be helpful to the oracle of Delphi?"
},
{
"qid": "83da1dc99be07ac57f6d",
"question": "Do lions live in Oxfordshire?"
},
{
"qid": "d5793a7a75121847b82a",
"question": "Did Taco Bell make a dog famous?"
},
{
"qid": "36b1093f7685b88d7297",
"question": "Does Xenophobia produce Xenomorphs?"
},
{
"qid": "4551789001c7126d7eae",
"question": "Are Hyena males pack leaders?"
},
{
"qid": "0c4eb10cef6da31c8665",
"question": "Would François Mitterrand eaten heavily on Christmas 1941? "
},
{
"qid": "7d7c4553052ef24828f1",
"question": "Did Barack Obama add Women's rowing to the Olympic programme for the first time as a president?"
},
{
"qid": "48902ca6e5a416f41dc3",
"question": "Did any adult witness the 2017 eclipse and the last eclipse seen all across the USA?"
},
{
"qid": "5435d0e0205f3ba6e927",
"question": "Is molecular gastronomy responsible for a bloated stomach?"
},
{
"qid": "b36ce7f6130db6395413",
"question": "Could the French Open courts been made into pottery instead?"
},
{
"qid": "2922eaa3d1040ec8d081",
"question": "Would someone who likes kheer also like tameloriz?"
},
{
"qid": "a79cbd247fe8f7544cfd",
"question": "Is there a type of chord that shares its name with a crime syndicate?"
},
{
"qid": "e4d603349b03561755c7",
"question": "Did the king from Arturus Rex have his origins in Mesopotamia?"
},
{
"qid": "50818eabb2afc4965595",
"question": "Are Taego order bhikkhu generally less sexually active than Jogye order ones?"
},
{
"qid": "b9ebd98e0c5ebb6733ba",
"question": "Could a detailed lecture about the mating habits of bottlenose dolphins trigger someone's PTSD?"
}
] |