File size: 143,868 Bytes
98c29e0 | 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 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 | [
{
"question": "what powers does the governor general have in australia",
"answers": "appointing",
"title": "Secretary to the Governor General of Canada;Governor General of New France;Deputy of the Governor General of Canada"
},
{
"question": "where is lackland air force base located in texas",
"answers": "Bexar County",
"title": "Lackland Air Force Base"
},
{
"question": "who was the mermaid in pirates of the caribbean 4",
"answers": "Àstrid Bergès-Frisbey",
"title": "Mermaid;The Idle Mermaid;Mermaid of Naples"
},
{
"question": "who does jason sudeikis play on the cleveland show",
"answers": "Jason Sudeikis",
"title": "Jason Sudeikis"
},
{
"question": "who played ryan in the first season of last man standing",
"answers": "Nick Jonas",
"title": "Ryan;Ryan Westmoreland;Ryan Devlin"
},
{
"question": "who sees the ghost of hamlet's father first",
"answers": "Marcellus",
"title": "Hamlet RK;Coggeshall Hamlet;Norm Hamlet"
},
{
"question": "name the two forms of polymorphism in cnidarian",
"answers": "polyp",
"title": "Polymorphism (computer science);Restriction fragment mass polymorphism;Single-strand conformation polymorphism"
},
{
"question": "who was the school of athens painted for",
"answers": "Apostolic Palace in the Vatican",
"title": "Athens;1994–95 AEK Athens F.C. season;Athens micropolitan area"
},
{
"question": "when did newcastle last win the premier league",
"answers": "1926–27",
"title": "Newcastle;Newcastle Roller Derby League;2017–18 Newcastle United F.C. season"
},
{
"question": "who has played the most games for carlton",
"answers": "Craig Bradley",
"title": "Carlton;Carlton Griffin;Carlton Brandaga Curtis"
},
{
"question": "who was the queen of britain during ww1",
"answers": "George V",
"title": "Boadicea, Queen of Britain"
},
{
"question": "when did the philadelphia eagles last win the super bowl",
"answers": "Super Bowl LII",
"title": "1960 Philadelphia Eagles season;2013 Philadelphia Eagles season;2011 Philadelphia Eagles season"
},
{
"question": "who is the head of the government in russia",
"answers": "Vladimir Putin",
"title": "Head of Government of Tokelau;Gallery of head of government standards;2012 Federal District of Mexico head of government election"
},
{
"question": "what is the bat's name in the great mouse detective",
"answers": "Candy Candido",
"title": "Bat;Canary long-eared bat;Angolan long-eared bat"
},
{
"question": "who played ray's mother in the movie ray",
"answers": "Warren",
"title": "Ray Weinberg;Institute for Cosmic Ray Research;Adil Ray"
},
{
"question": "how long was law and order on the air",
"answers": "20 seasons",
"title": "Law and Order;Operation Law and Order;Law and Order (1942 film)"
},
{
"question": "who was the actual mole in red sparrow",
"answers": "Korchnoi",
"title": "Red Sparrow;Red Sparrow (novel)"
},
{
"question": "what kind of bass does john cooper play",
"answers": "bass guitar",
"title": "John Cooper;John Cooper (musician);John Cooper (Islamic studies scholar)"
},
{
"question": "who banned the book where the wild things are",
"answers": "teachers",
"title": "Book;The Book of Mirdad;Book of Lightning"
},
{
"question": "who wrote the music for somewhere over the rainbow",
"answers": "Yip Harburg",
"title": "Somewhere Over the Rainbow (Harold Mabern album);Somewhere Over the Rainbow (Willie Nelson album)"
},
{
"question": "how long after the stamp act congress of october 1765 did parliament repeal the stamp act",
"answers": "March 18, 1766",
"title": "Nottinghamshire (UK Parliament constituency);List of United Kingdom Parliament constituencies (1997 to present) by region;2000 Speaker of the Lebanese Parliament election"
},
{
"question": "who created the declaration of the rights of man",
"answers": "Thomas Jefferson",
"title": "Van Richten's Guide to the Created;Cardinals created by Julius III;Cardinals created by Urban IV"
},
{
"question": "who sung the song i can only imagine",
"answers": "Bart Millard",
"title": "I Can Only Imagine;I Can Only Imagine (film);I Can Only Imagine (David Guetta song)"
},
{
"question": "what was the name of the iraq war",
"answers": "The Iraq War",
"title": "Iraq War;Lancet surveys of Iraq War casualties;Iraq War troop surge of 2007"
},
{
"question": "who signed the treaty of versailles from germany",
"answers": "France",
"title": "Soest, Germany;Order of Merit of the Federal Republic of Germany;Mathematics in Nazi Germany"
},
{
"question": "who does nick cannon play in roll bounce",
"answers": "Bernard",
"title": "Nick Cannon;Nick Cannon (album);Caught on Camera with Nick Cannon"
},
{
"question": "who plays the chairman of the bank in mary poppins",
"answers": "Dick Van Dyke",
"title": "Mary Poppins;Mary Poppins (film);Duke Ellington Plays Mary Poppins"
},
{
"question": "who owns the hollywood casino in columbus ohio",
"answers": "Gaming and Leisure Properties",
"title": "Hollywood Casino;Hollywood Casino Amphitheatre;2016 Hollywood Casino 400"
},
{
"question": "where were cane toads first introduced in australia",
"answers": "June 1935",
"title": "Adaptations of Australian animals to cane toads;Cane toads in Australia;Cane toads (disambiguation)"
},
{
"question": "who fought to add the bill of rights to the constitution",
"answers": "George Mason",
"title": "Who;Who Is Rich?;List of Doctor Who home video releases"
},
{
"question": "who is morgan freeman in the lego movie",
"answers": "Vitruvius",
"title": "The Story of God with Morgan Freeman;Morgan Freeman on screen and stage;The Story of Us with Morgan Freeman"
},
{
"question": "who is control in tinker tailor soldier spy",
"answers": "John Hurt",
"title": "Tinker Tailor Soldier Spy (film);Tinker Tailor Soldier Spy (TV series);Tinker Tailor Soldier Spy (soundtrack)"
},
{
"question": "where did england come in world cup 2014",
"answers": "26th",
"title": "Transport in England;New England String Ensemble;England national football team results (2000–2019)"
},
{
"question": "who played the kid in charlie and the chocolate factory",
"answers": "Peter Ostrum,",
"title": "Charlie and the Chocolate Factory;Charlie and the Chocolate Factory (2005 video game);List of Charlie and the Chocolate Factory characters"
},
{
"question": "who was the first person to be buried at arlington national cemetery",
"answers": "William Henry Christman",
"title": "First person;First Person Plural;The First Person and Other Stories"
},
{
"question": "when were the monuments in new orleans built",
"answers": "1884,",
"title": "New Orleans;2007 New Orleans Saints season;St. Charles Hotel, New Orleans"
},
{
"question": "when did the us dollar become reserve currency",
"answers": "After World War II",
"title": "Trade-weighted US dollar index"
},
{
"question": "name the apparatus used for electrolysis of water",
"answers": "Hofmann voltameter",
"title": "Apparatus;Critical apparatus;Victor Meyer apparatus"
},
{
"question": "who did the french fight in the french and indian war",
"answers": "Catawba",
"title": "Trevor French;1972–73 French Division 2;French ship Alexandre"
},
{
"question": "who is peter from guardians of the galaxy father",
"answers": "Ego the Living Planet",
"title": "Peter;Hans Peter Ströer;Peter Naur"
},
{
"question": "when did the first country adopted time zones",
"answers": "Great Britain",
"title": "Country;In My Country;List of country performers by era"
},
{
"question": "where did the battle of bunker hill take place",
"answers": "Breed's Hill",
"title": "Battle of Bunker Hill;Battle of Bunker Hill (1861);Battle of Bunker Hill (1952)"
},
{
"question": "what episode of the office does dwight saves jim from roy",
"answers": "\"The Negotiation\"",
"title": "DeWitt;DeWitt Peck;DeWitt C. Smith Jr."
},
{
"question": "what year does the handmaid's tale show take place",
"answers": "near future",
"title": "The Handmaid's Tale (disambiguation);The Handmaid's Tale (opera);List of The Handmaid's Tale characters"
},
{
"question": "where did the battle of poitiers take place",
"answers": "Nouaillé",
"title": "Battle of Poitiers"
},
{
"question": "when were assault rifles banned in the us",
"answers": "September 13, 1994",
"title": "List of assault rifles"
},
{
"question": "when does the big e start in springfield mass",
"answers": "mid-September",
"title": "Big E;1981 Big Eight Conference men's basketball tournament;1988 Big East Conference baseball tournament"
},
{
"question": "how did tiffany get her body back in chucky",
"answers": "Jennifer Tilly",
"title": "Tiffany;Katrina Ely Tiffany;Tiffany Valentine"
},
{
"question": "which satellite is used for tv in india",
"answers": "Doordarshan",
"title": "Transformational Satellite Communications System;List of satellite cities by population;Satellite phone"
},
{
"question": "who does fez marry in that 70's show",
"answers": "Laurie Forman",
"title": "Fez;Fez IV: Wizard's Revenge;List of monuments in Fez"
},
{
"question": "who is playing quarterback for the new york giants",
"answers": "Giants",
"title": "1958 New York Giants season;1972 New York Giants season;1957 New York Giants (MLB) season"
},
{
"question": "when did the draft end in the united states",
"answers": "early 1973",
"title": "Draft;List of HC CSKA Moscow draft picks;NHL Intra-League Draft"
},
{
"question": "who is the mom in last man standing",
"answers": "Nancy Travis",
"title": "Last Man Standing;List of Last Man Standing episodes;Making the Cut: Last Man Standing"
},
{
"question": "who makes the rules for house and senate",
"answers": "Each chamber",
"title": "Allerton Golf Club House;Fredericks House (Prescott, Arizona);Spooky House"
},
{
"question": "who is the guy who does thug notes",
"answers": "Greg Edwards",
"title": "List of Family Guy cast members;Guy David;Guy Goodwin-Gill"
},
{
"question": "where is the story of david found in the bible",
"answers": "The Book of Ruth",
"title": "The Story of David;A Story of David;Love in Bright Landscapes: The Story of David McComb of the Triffids"
},
{
"question": "what does the mf in mf doom stand for",
"answers": "Metal Fingers",
"title": "MF"
},
{
"question": "who was the person who sang climb every mountain in the sound of music",
"answers": "the Mother Abbess",
"title": "Person;Person of Interest (soundtrack);Curtis S. Person Jr."
},
{
"question": "who wrote the song the old bog road",
"answers": "Teresa Brayton",
"title": "Denmark in the Eurovision Song Contest 2019;Malta in the Eurovision Song Contest 2003;Grammy Award for Song of the Year"
},
{
"question": "who is the female singer in i'm an albatraoz",
"answers": "Nora Ekberg",
"title": "I'm an Albatraoz"
},
{
"question": "who has the highest hattrick in champions league",
"answers": "Lionel Messi",
"title": "2022 CAF Women's Champions League UNAF Qualifiers;2019 OFC Champions League;COSAFA Women's Champions League"
},
{
"question": "who was put in charge of enforcing the meat inspection act",
"answers": "the Secretary of Agriculture",
"title": "Federal Meat Inspection Act"
},
{
"question": "when was slavery abolished in the british caribbean",
"answers": "1833",
"title": "Repeal of exceptions to slavery and involuntary servitude;History of slavery in New Jersey;Poems on Slavery"
},
{
"question": "who plays the twins in aliens in the attic",
"answers": "Regan Young",
"title": "Aliens in the Attic"
},
{
"question": "who was the original singer of the song drift away",
"answers": "John Henry Kurtz",
"title": "Drift Away;Drift Away (film);Drift Away (Sons of Zion song)"
},
{
"question": "where is the film me before you filmed",
"answers": "Chenies",
"title": "Film;International Film Festival Rotterdam;Root Film"
},
{
"question": "who is the head of the government in france",
"answers": "Prime Minister",
"title": "France;Anatole France;2013–14 Championnat de France Amateur"
},
{
"question": "when was the first jet plane used in war",
"answers": "World War II",
"title": "Jet Plane;Big Jet Plane;Leaving on a Jet Plane"
},
{
"question": "where did the grand ole opry get its name",
"answers": "Barn Dance",
"title": "Grand Ole Opry;Grand Ole Opry Favorites;Stars of the Grand Ole Opry"
},
{
"question": "which plateau lies to the west of sulaiman range",
"answers": "the Iranian Plateau",
"title": "Sulaiman Range gecko;Sulaiman Range alpine meadows"
},
{
"question": "what is the most practiced religion in america",
"answers": "Protestant",
"title": "Freedom of religion in Northern Cyprus;Freedom of religion in Paraguay;Anglo-Saxon religion"
},
{
"question": "what banks are part of the lloyds group",
"answers": "Lloyds Bank plc",
"title": "The Banks of Green Willow;Ralph Banks;List of banks that have merged to form the State Bank of India"
},
{
"question": "where does jessie take place in new york",
"answers": "the Upper West Side",
"title": "Jessie;List of Jessie episodes;Jessie Li"
},
{
"question": "who killed adam susan in v for vendetta",
"answers": "Rosemary Almond",
"title": "Adam Susan"
},
{
"question": "when was the last time the new england patriots had a losing record",
"answers": "2000",
"title": "List of New England Patriots seasons;2005 New England Patriots season;1999 New England Patriots season"
},
{
"question": "who is the nun in conjuring 2 movie",
"answers": "Bonnie Aarons",
"title": "The Nun;The Nun and the Bandit;The Nun of Monza"
},
{
"question": "who is mr jones in counting crows song",
"answers": "Marty Jones",
"title": "Mr Jones (2019 film)"
},
{
"question": "what episode in glee does will propose to emma",
"answers": "Yes/No",
"title": "WiLL;You Will Never Know Why;Will Thorp"
},
{
"question": "where is king solomon mentioned in the bible",
"answers": "1 Chronicles 28–29",
"title": "King Solomon Hill;Temple Baptist Church – King Solomon Baptist Church;King Solomon High School"
},
{
"question": "who made the swords for lord of the rings",
"answers": "Peter Lyon",
"title": "The Lord of the Rings (1955 radio series);The Lord of the Rings Online: Rise of Isengard;The Lord of the Rings Online: Before the Shadow"
},
{
"question": "who plays rob schneider wife in grown ups",
"answers": "Joyce Van Patten",
"title": "Rob Schneider"
},
{
"question": "where does the bible talk about jesus brothers",
"answers": "1 Corinthians 9:5",
"title": "Bible;Dorf's Golf Bible;Bible translations into Khmer"
},
{
"question": "when did dragon ball z come out in america",
"answers": "September 13, 1996",
"title": "Dragon Ball Z;Dragon Ball Z: Bio-Broly;Dragon Ball Z: Budokai 3"
},
{
"question": "who was the first government of the united states",
"answers": "Articles of Confederation",
"title": "Government College, Chittur;First government of Ximo Puig;Provisional Government of the Republic of Poland"
},
{
"question": "who sings bridge over troubled water simon or garfunkel",
"answers": "Art Garfunkel",
"title": "Simon;Simon Martin (Mayanist);Simon Clark (novelist);Garfunkel;Henny Garfunkel;Breakaway (Art Garfunkel album)"
},
{
"question": "who plays kristen and susan on days of our lives",
"answers": "Susan Banks",
"title": "Kristen;Kristen Michal;Kristen Nygaard;Susan;Susan Elliott (academic);Susan Westrom"
},
{
"question": "when did clare last win munster hurling final",
"answers": "1998",
"title": "Clare;2023 Clare Senior Football Championship;Audrey Clare Farley"
},
{
"question": "when did brooklyn and bailey start their youtube channel",
"answers": "2013",
"title": "Brooklyn;Anna of Brooklyn;Johnny Maestro and The Brooklyn Bridge (album);Bailey;Shaun Bailey (West Bromwich MP);D. Bailey Merrill"
},
{
"question": "who sang blue moon in american werewolf in london",
"answers": "Sam Cooke",
"title": "An American Werewolf in London"
},
{
"question": "when did yamaha start fuel injection on yz250f",
"answers": "2014",
"title": "Yamaha DragStar 250;Yamaha YZF-R7;Yamaha Niken"
},
{
"question": "who is the girl in guns n roses",
"answers": "Melissa Reese",
"title": "Girl;Crying Girl;Boy Meets Girl (2014 film)"
},
{
"question": "when did canada qualify for the world cup",
"answers": "1986",
"title": "Canada;1938 in Canada;Letters to the inhabitants of Canada"
},
{
"question": "how long did the tv series bonanza run",
"answers": "14 seasons",
"title": "Bonanza;The Big Bonanza;Big Drum Bonanza"
},
{
"question": "who plays judith from the bank in sing",
"answers": "Rhea Perlman",
"title": "Judith Green (historian);Judith Adong;Judith Mossman"
},
{
"question": "did mary kate or ashley play more on full house",
"answers": "Mary-Kate",
"title": "Mary Kate McGeehan;Mary Kate Ryan;Mary Kate Schellhardt;Ashley;Ashley Rickards;Ashley Obrest"
},
{
"question": "who played the role of nargis in sanju",
"answers": "Manisha Koirala",
"title": "Sanju;Sanju Sivram;Sanju Pass"
},
{
"question": "what channel is hallmark movies and mystery on directv",
"answers": "565",
"title": "Hallmark Movies & Mysteries;Hallmark Movies Now"
},
{
"question": "who plays heather lee in jason bourne movie",
"answers": "Alicia Vikander",
"title": "Jason Bourne (film)"
},
{
"question": "who does the voice of pear in annoying orange",
"answers": "Dane Boedigheimer",
"title": "Medford Pear Blossom Festival;Williams pear;Prickly Pear Island"
},
{
"question": "when was the last time england got into the quarterfinals of the world cup",
"answers": "2006",
"title": "Transport in England;New England String Ensemble;England national football team results (2000–2019)"
},
{
"question": "who won the second season of skin wars",
"answers": "Lana",
"title": "Skin Wars"
},
{
"question": "when did bletchley park open to the public",
"answers": "1993",
"title": "Bletchley Park;Women in Bletchley Park;List of women in Bletchley Park"
},
{
"question": "when did nebraska became a right to work state",
"answers": "1946",
"title": "Lincoln County, Nebraska;Martin, Nebraska;North Cedar Township, Saunders County, Nebraska"
},
{
"question": "where do guests stay at the white house",
"answers": "The President's Guest House",
"title": "List of wedding guests of Princess Eugenie and Jack Brooksbank;The Killers Are Our Guests;Guests of the Nation"
},
{
"question": "who wrote i believe in a thing called love",
"answers": "Dan Hawkins",
"title": "I Believe in a Thing Called Love;I Believe in a Thing Called Love (EP)"
},
{
"question": "who are the candidates running for colorado governor",
"answers": "Jared Polis",
"title": "List of United Democratic Front candidates in the 2014 Indian general election;Independent Renewal candidates in the 2003 Ontario provincial election;Union Nationale candidates in the 1970 Quebec provincial election"
},
{
"question": "who sings the original version of feeling good",
"answers": "Cy Grant",
"title": "Feeling Good;Feeling Good (Roy Ayers album);Feeling Good (Art Blakey album)"
},
{
"question": "who plays grant on secret life of the american teenager",
"answers": "Grant Harvey",
"title": "Grant;Jackie Grant (footballer);William Grant Milne"
},
{
"question": "who played brad on sabrina the teenage witch",
"answers": "Huertas",
"title": "Sabrina the Teenage Witch;List of Sabrina the Teenage Witch characters;Sabrina the Teenage Witch (1996 TV series)"
},
{
"question": "when did panama canal zone became a us territory",
"answers": "May 4, 1904",
"title": "Panama Canal Zone;Naval Base Panama Canal Zone;List of governors of the Panama Canal Zone"
},
{
"question": "where does tiffany and co make their jewelry",
"answers": "Cumberland, Rhode Island",
"title": "Tiffany;Katrina Ely Tiffany;Tiffany Valentine"
},
{
"question": "who owns the imperial palace in las vegas",
"answers": "Caesars Entertainment Corporation",
"title": "Imperial palace;Ritual ceremonies of the Imperial Palace;Museum of the Imperial Palace of Manchukuo"
},
{
"question": "who has the rights to thursday night football",
"answers": "Fox",
"title": "Thursday Night Football;List of Thursday Night Football results (2006–present)"
},
{
"question": "where is god called jehovah in the bible",
"answers": "the King James Version",
"title": "Jehovah;Jehovah Wanyonyi;Assemblies Jehovah Shammah"
},
{
"question": "when does katherine first show up in vampire diaries",
"answers": "\"Founder's Day\"",
"title": "Katherine;Katherine A. Klausmeier;Katherine O'Brien"
},
{
"question": "when did consuela first appear on family guy",
"answers": "November 29, 2009",
"title": "Stiria consuela;Consuela Lee Moorehead;Siratus consuela"
},
{
"question": "where is the lincoln memorial located in dc",
"answers": "across from the Washington Monument",
"title": "Lincoln Memorial;Richard Nixon's visit to the Lincoln Memorial;Lincoln Memorial High School"
},
{
"question": "what is the train called in the night garden",
"answers": "The Ninky Nonk",
"title": "List of driverless train systems;On the Train;How to Train Your Dragon (video game)"
},
{
"question": "who played the role of swami in malgudi days",
"answers": "Manjunath Nayaker",
"title": "Malgudi Days;Malgudi Days (2020 film);Malgudi Days (TV series)"
},
{
"question": "when does the movie dog days come out",
"answers": "August 8, 2018",
"title": "Wishbone's Dog Days of the West;Dog Days (2001 film);Dog Days (opera)"
},
{
"question": "what movie has the song separate ways worlds apart",
"answers": "Tron: Legacy",
"title": "Pokémon 3: The Movie;Paramount Movie Park Korea;The Bob's Burgers Movie"
},
{
"question": "who does the voice of justine in why him",
"answers": "Kaley Cuoco",
"title": "Justine Héroux;Justine Ghekiere;Justine Priestley"
},
{
"question": "who plays marina in last of the summer wine",
"answers": "Jean Fergusson",
"title": "Last of the Summer Wine;Last of the Summer Wine (series 13);Last of the Summer Wine (series 9)"
},
{
"question": "who was the taxi driver who won mastermind",
"answers": "Fred Housego",
"title": "Adventures of a Taxi Driver;Confessions of a Taxi Driver;The Millionaire Taxi Driver"
},
{
"question": "which song was adele s first uk number one single",
"answers": "\"Someone like You\"",
"title": "Adel;Adel Mahmoud;Adel Messali"
},
{
"question": "where is the original bubba gump restaurant located",
"answers": "Monterey, California",
"title": "Bubba Gump Shrimp Company"
},
{
"question": "who plays melissa horton on days of our lives",
"answers": "Matthew Bowman",
"title": "Melissa Horton"
},
{
"question": "who plays erwin in the edge of seventeen",
"answers": "Hayden Szeto",
"title": "Edge of Seventeen;Edge of Seventeen (film);Edge of Seventeen (disambiguation)"
},
{
"question": "who sang the original version of last kiss",
"answers": "Wayne Cochran",
"title": "Last Kiss;Last Kiss (Bonnie Pink song);One Last Kiss (EP)"
},
{
"question": "who does rob lowe play in the outsiders",
"answers": "Sodapop Curtis",
"title": "Rob Lowe"
},
{
"question": "how many medals does south africa have in 2018 commonwealth",
"answers": "37",
"title": "South Africa;English cricket team in South Africa in 1888–89;Australian cricket team in South Africa in 1966–67"
},
{
"question": "who is roxie's first song devoted to",
"answers": "her husband",
"title": "Roxie Hart;Roxie (TV series);Roxie Theater"
},
{
"question": "who is connor parents on young and the restless",
"answers": "Adam Newman",
"title": "Connor;Jon Connor;Francis Connor"
},
{
"question": "who played kit keller in a league of their own",
"answers": "Lori Petty",
"title": "A League of Their Own;A League of Their Own (disambiguation);A League of Their Own (Australian game show)"
},
{
"question": "who plays dean on the tv show claws",
"answers": "Harold Perrineau",
"title": "Dean;Dean Burrows;Dean Hurley"
},
{
"question": "who won sports personality of the year 2017 ireland",
"answers": "James McClean",
"title": "Belgian Sports Personality of the Year;2013 BBC Sports Personality of the Year Award;Polish Sports Personality of the Year"
},
{
"question": "who plays io in clash of the titans",
"answers": "Gemma Arterton",
"title": "Io"
},
{
"question": "what movie has the song drive by the cars",
"answers": "Transformers",
"title": "Pokémon 3: The Movie;Paramount Movie Park Korea;The Bob's Burgers Movie"
},
{
"question": "where was john carpenter's the thing filmed",
"answers": "the Universal lot",
"title": "John Carpenter;John Carpenter (athlete);John Carpenter (British Army officer)"
},
{
"question": "how many passengers on titanic when it sank",
"answers": "approximately 1,317 people",
"title": "Titanic;Titanic Days;The Chambermaid on the Titanic"
},
{
"question": "when was the john hancock building in chicago built",
"answers": "1969",
"title": "John Hancock Building"
},
{
"question": "who does purdue play in the bowl game",
"answers": "Arizona",
"title": "1990 Purdue Boilermakers football team;2015 Purdue Boilermakers football team;Gabis Arboretum at Purdue Northwest"
},
{
"question": "who played mr swainey in one foot in the grave",
"answers": "Owen Brenman",
"title": "List of One Foot in the Grave episodes;One Foot in the Grave (Beck album);One Foot in the Grave (Tankard album)"
},
{
"question": "where did they film the tv show bonanza",
"answers": "Ponderosa Ranch",
"title": "They;They Were Her Property;They Knew What They Wanted (play)"
},
{
"question": "who was the tin man in the wiz",
"answers": "Nipsey Russell",
"title": "Tin Man;Tin Man (Miranda Lambert song);The Tin Man (novel)"
},
{
"question": "who started the public works department in india 1848",
"answers": "Lord Dalhousie",
"title": "Himachal Pradesh Public Works Department;Public Works Department FC;Public Works Department (Nigeria)"
},
{
"question": "where will the 2018 a league grand final be played",
"answers": "McDonald Jones Stadium",
"title": "2018;2018 College Baseball All-America Team;2018 Tianjin Open – Doubles"
},
{
"question": "when did chris paul join the houston rockets",
"answers": "In 2017",
"title": "Chris Paul;Chris Paul (American football);Chris Paul Camps"
},
{
"question": "where did the us first attack in ww1",
"answers": "The Battle of Cantigny",
"title": "Us"
},
{
"question": "who played larry's mother on leave it to beaver",
"answers": "Madge Blake",
"title": "Larry;Larry Mavety;Larry Owen"
},
{
"question": "how many regional rural bank in india 2018",
"answers": "56",
"title": "Regional Rural Bank"
},
{
"question": "what song is played for england at commonwealth games",
"answers": "Jerusalem",
"title": "Denmark in the Eurovision Song Contest 2019;Malta in the Eurovision Song Contest 2003;Grammy Award for Song of the Year"
},
{
"question": "where is the longest bridge located in africa",
"answers": "Cairo",
"title": "Longest bridge"
},
{
"question": "who plays otis in because of winn dixie",
"answers": "Dave Matthews",
"title": "Otis;Lawrence Otis Graham;First Harrison Gray Otis House"
},
{
"question": "who does the voice of frank on puppy dog pals",
"answers": "Leslie David Baker",
"title": "Puppy Dog Pals;List of Puppy Dog Pals episodes"
},
{
"question": "where is the tv show the goldbergs filmed",
"answers": "Sony Pictures Studios",
"title": "The Goldbergs;Never Mind the Goldbergs;The Goldbergs (season 4)"
},
{
"question": "who produced tupac movie all eyez on me",
"answers": "David Robinson",
"title": "Tupac (disambiguation);Biggie & Tupac;Operation Tupac"
},
{
"question": "when does ash discover emma is a mermaid",
"answers": "Unfathomable",
"title": "Ash;Ash Amin;Ash Meadows pebblesnail"
},
{
"question": "who owns holiday world in santa claus indiana",
"answers": "Koch Development Corporation",
"title": "Holiday World & Splashin' Safari"
},
{
"question": "who is the villain at the beginning of captain america civil war",
"answers": "Brock Rumlow",
"title": "Captain America (1990 film);Captain America (1979 film);Captain America and The Avengers"
},
{
"question": "who plays karen in what happened to monday",
"answers": "Noomi Rapace",
"title": "Karen;Karen Knutsen;Karen Finney"
},
{
"question": "who plays elena in the mask of zorro",
"answers": "Catherine Zeta-Jones",
"title": "Behind the Mask of Zorro;The Mask of Zorro (video game)"
},
{
"question": "who did the ghost of christmas present take scrooge to see second",
"answers": "Tiny Tim",
"title": "Ghost of Christmas Yet to Come;Ghost of Christmas Present;Ghost of Christmas Past"
},
{
"question": "when does the antarctic circle have 24 hours of daylight",
"answers": "summer solstice",
"title": "Antarctic Circle"
},
{
"question": "where did the nickname red devils come from",
"answers": "red jerseys",
"title": "2022 Salford Red Devils season;1931 Eureka Red Devils football team;Montpellier Red Devils"
},
{
"question": "who plays ashley in secret life of the american teenager",
"answers": "India Eisley",
"title": "Ashley;Ashley Rickards;Ashley Obrest"
},
{
"question": "when was smoking banned in restaurants in michigan",
"answers": "May 1, 2010",
"title": "Smoking;III Smoking Barrels;Smoking in Sri Lanka"
},
{
"question": "where was the pillars of the earth filmed",
"answers": "Austria",
"title": "Ken Follett's The Pillars of the Earth;The Pillars of the Earth;The Pillars of the Earth (miniseries)"
},
{
"question": "who has tv rights to the world cup",
"answers": "Fox Sports",
"title": "2011 FIFA Beach Soccer World Cup disciplinary record;2022 FIFA World Cup qualification (CONCACAF–OFC play-off);1958 FIFA World Cup qualification – UEFA Group 4"
},
{
"question": "when was the first carl's jr opened",
"answers": "1956",
"title": "Carl's Jr."
},
{
"question": "who wrote the patriotic song qadam qadam bhadaye ja",
"answers": "Ram Singh Thakuri",
"title": "Who;Who Is Rich?;List of Doctor Who home video releases"
},
{
"question": "who stole sam's baby on general hospital",
"answers": "Heather",
"title": "Sam;Sam Woodyard;Sam Blakely"
},
{
"question": "when did michael jackson released his first album",
"answers": "Got to Be There",
"title": "Michael Jackson;Never Can Say Goodbye: The Music of Michael Jackson;Michael Jackson (writer)"
},
{
"question": "when did the anaheim angels change their name",
"answers": "1997",
"title": "1997 Anaheim Angels season;2003 Anaheim Angels season;2000 Anaheim Angels season"
},
{
"question": "who played barry frost on rizzoli and isles",
"answers": "Lee Thompson Young",
"title": "Barry Frost"
},
{
"question": "who plays claire brady on days of our lives",
"answers": "Olivia Rose Keegan",
"title": "Claire Brady;Claire Brady (athlete)"
},
{
"question": "who did aberdeen beat in the super cup",
"answers": "Hamburger SV",
"title": "Aberdeen;Ferryhill, Aberdeen;2013–14 Aberdeen F.C. season"
},
{
"question": "who played the bow tie killer in problem child",
"answers": "Michael Richards",
"title": "Problem Child (TV series);God's Problem Child;Problem Child (The Beach Boys song)"
},
{
"question": "when did the jets last win their division",
"answers": "2002",
"title": "Jet;Jumbo jet (disambiguation);Skane Jet"
},
{
"question": "who plays the rich kid in little rascals",
"answers": "Blake McIver Ewing",
"title": "The Little Rascals Christmas Special;The Little Rascals (disambiguation);The Little Rascals (animated TV series)"
},
{
"question": "who played the ice queen in once upon a time",
"answers": "Elizabeth Mitchell",
"title": "Once Upon a Time;Once Upon a Time in the Midlands;Once Upon a Time in China and America"
},
{
"question": "which one is the richest country in africa",
"answers": "Nigeria",
"title": "COVID-19 timeline by country in Africa"
},
{
"question": "where was the movie once upon a time in mexico filmed",
"answers": "Guanajuato, Mexico",
"title": "Pokémon 3: The Movie;Paramount Movie Park Korea;The Bob's Burgers Movie"
},
{
"question": "who won between manchester united and man city",
"answers": "Manchester United",
"title": "1990–91 Manchester United F.C. season;1951–52 Manchester United F.C. season;1974–75 Manchester United F.C. season;Man City (Ted Lasso)"
},
{
"question": "who has made the most shots in the nba",
"answers": "Kareem Abdul-Jabbar",
"title": "Who;Who Is Rich?;List of Doctor Who home video releases"
},
{
"question": "who played the diva in the movie fifth element",
"answers": "Maïwenn",
"title": "Fifth Element;The Fifth Element (video game);Fifth Element (Pathfinder album)"
},
{
"question": "which stadium is the champions league final 2015",
"answers": "Olympiastadion in Berlin, Germany",
"title": "1993 UEFA Champions League final;2010 CONCACAF Champions League final;1998 UEFA Champions League final"
},
{
"question": "who is the owner of the washington post",
"answers": "Nash Holdings",
"title": "Washington Post Radio;List of Pulitzer Prizes awarded to The Washington Post;The Washington Post Writers Group"
},
{
"question": "who played jason grimshaw's dad in corrie",
"answers": "Terence Maynard",
"title": "Jason Grimshaw"
},
{
"question": "who was the first person voted off big brother",
"answers": "William",
"title": "First person;First Person Plural;The First Person and Other Stories"
},
{
"question": "who did peter hermann play on guiding light",
"answers": "Michael Burke",
"title": "Peter Hermann;Peter Hermann (footballer);Peter Hermann (actor)"
},
{
"question": "who did patrick jane kill in the mall",
"answers": "Timothy Carter",
"title": "Patrick Jane"
},
{
"question": "who won the liberal leadership in british columbia",
"answers": "Andrew Wilkinson",
"title": "2006 Liberal leadership bid by Stéphane Dion"
},
{
"question": "who played ellen sue in a league of their own",
"answers": "Freddie Simpson",
"title": "Ellen Sue Miller"
},
{
"question": "what nfl team does desmond king play for",
"answers": "the Los Angeles Chargers",
"title": "Desmond King (professor)"
},
{
"question": "who plays dina mergeron on young and the restless",
"answers": "Marla Adams",
"title": "List of The Young and the Restless characters (2012);List of The Young and the Restless characters (2014);List of The Young and the Restless cast members"
},
{
"question": "who played julie on gimme a break",
"answers": "Lauri Hendler",
"title": "Julie Carr;Julie Stokkendal Poulsen;Julie Crysler"
},
{
"question": "what channel is fox sports 1 in directv",
"answers": "Channel 219",
"title": "Fox Sports 1;List of programs broadcast by Fox Sports 1;Fox Sports"
},
{
"question": "which episode of supergirl is crisis on earth x",
"answers": "Season 3, Episode 8",
"title": "Supergirl;Supergirl – Das Mädchen von den Sternen;Supergirl (TV series)"
},
{
"question": "when did the son of bigfoot come out",
"answers": "11 August 2017",
"title": "Bigfoot;The Son of Bigfoot;Bigfoot splayfoot salamander"
},
{
"question": "when did england last win 6 nations grand slam",
"answers": "2016",
"title": "Transport in England;New England String Ensemble;England national football team results (2000–2019)"
},
{
"question": "where did they film the creature from the black lagoon",
"answers": "Wakulla Springs, Florida",
"title": "They;They Were Her Property;They Knew What They Wanted (play)"
},
{
"question": "who pushed barry off the cliff in eastenders",
"answers": "Janine",
"title": "Barry;Barry Urbanski;Barry Stokes (American football)"
},
{
"question": "where was harry potter and the goblet of fire filmed",
"answers": "Leavesden Film Studios",
"title": "Harry Potter and the Goblet of Fire;Harry Potter and the Goblet of Fire (video game);Harry Potter and the Goblet of Fire (disambiguation)"
},
{
"question": "what episode of heartland does amy find out she is pregnant",
"answers": "18",
"title": "Amy;Amy Wilentz;Amy Parmenter"
},
{
"question": "what was the german name of the british royal family",
"answers": "Saxe-Coburg and Gotha",
"title": "German name"
},
{
"question": "when was education made mandatory in the us",
"answers": "1918",
"title": "List of mathematics education journals;West Bengal Board of Primary Education;Ministry of Education and Human Resources Development"
},
{
"question": "who plays the dad on life of the party",
"answers": "Matt Walsh",
"title": "Life of the Party;Life of the Party (2017 film);Life of the Party (album)"
},
{
"question": "when did britain declare war on germany in 1914",
"answers": "August 4",
"title": "Britain;Radio Society of Great Britain;Spinach Fer Britain"
},
{
"question": "where is deep creek lake located in maryland",
"answers": "Garrett County, Maryland",
"title": "Deep Creek Lake;Deep Creek Lake State Park"
},
{
"question": "what does the uk government spend the most money on",
"answers": "Social protection",
"title": "UK Government G-Cloud;UK Government Decontamination Service;Honcharuk Government"
},
{
"question": "who gets paid the most in professional sports",
"answers": "Cristiano Ronaldo",
"title": "Professional sports;List of professional sports teams in Minnesota;List of professional sports teams in California"
},
{
"question": "who plays young ruth in never let me go",
"answers": "Ella Purnell",
"title": "Never Let Me Go;Never Let Me Go (Luther Vandross album);Never Let Me Go (Placebo album)"
},
{
"question": "what is the most common drug to incapacitate someone",
"answers": "alcohol",
"title": "Drug;Drug fraud;Drug policy of Maryland"
},
{
"question": "who played the phantom of the opera in 1986",
"answers": "Michael Crawford",
"title": "The Phantom of the Opera (1989 film);The Phantom of the Opera (audio drama);The Phantom of the Opera (1962 film)"
},
{
"question": "who played the clown in the movie it by stephen king",
"answers": "Tim Curry",
"title": "It"
},
{
"question": "when is the lost city of z released",
"answers": "April 14, 2017",
"title": "Lost City of Z;The Lost City of Z (film);Congo The Movie: The Lost City of Zinj"
},
{
"question": "who does kristen stewart play in into the wild",
"answers": "Tracy Tatro",
"title": "Kristen Stewart;List of awards and nominations received by Kristen Stewart"
},
{
"question": "when did big air become an olympic sport",
"answers": "2018",
"title": "Big air;FIS Freestyle Ski and Snowboarding World Championships 2017 – Women's big air;FIS Freestyle Ski and Snowboarding World Championships 2019 – Women's snowboard big air"
},
{
"question": "who played david in homeland last sunday channel 4",
"answers": "Linus Roache",
"title": "DAVID;David Shillinglaw;David Belasco"
},
{
"question": "who came first captain marvel or captain america",
"answers": "Captain Marvel",
"title": "Captain Marvel;Adventures of Captain Marvel;Captain Marvel (M. F. Enterprises)"
},
{
"question": "who plays melissa mccarthy's mother in life of the party",
"answers": "Jacki Weaver",
"title": "Melissa McCarthy"
},
{
"question": "where did the oil industry began in the south in 1901",
"answers": "Spindletop near Beaumont",
"title": "Standardization in oil industry;Oil industry in Cushing, Oklahoma;Ministry of Oil Industry"
},
{
"question": "who does don draper marry in season 5",
"answers": "Megan Calvet",
"title": "Don Draper"
},
{
"question": "who did tracy barlow kill in coronation street",
"answers": "Charlie",
"title": "Tracy Barlow;Tracy Barlow (runner)"
},
{
"question": "who plays paul on days of our lives",
"answers": "Christopher Sean",
"title": "2015 Saint Paul City Council election;Paul Hiebert (missiologist);Assassination of Paul R. Shaffer and John H. Turner"
},
{
"question": "what year did the song blue come out",
"answers": "1999",
"title": "Denmark in the Eurovision Song Contest 2019;Malta in the Eurovision Song Contest 2003;Grammy Award for Song of the Year"
},
{
"question": "who plays christopher marlowe in shakespeare in love",
"answers": "Rupert Everett",
"title": "Christopher Marlowe;Christopher Marlowe in fiction"
},
{
"question": "who wrote the first book relating to texas called relacion",
"answers": "Cabeza de Vaca",
"title": "A Poor Relation;Preference relation;Transitive relation"
},
{
"question": "where did they film the coliseum in the gladiator movie",
"answers": "Malta",
"title": "They;They Were Her Property;They Knew What They Wanted (play)"
},
{
"question": "who is the voice of the tiger in madagascar 3",
"answers": "Bryan Cranston",
"title": "Rufus Tiger Taylor;Bonthain tiger;Tiger economy"
},
{
"question": "what character does mark ballas play in kinky boots",
"answers": "Charlie Price",
"title": "Mark Ballas"
},
{
"question": "how many medals did canada win in the 2018 commonwealth games",
"answers": "82",
"title": "Canada;1938 in Canada;Letters to the inhabitants of Canada"
},
{
"question": "who was involved in the battle of chateauguay",
"answers": "American force",
"title": "Tropic cues involved in growth cone guidance;Organisms involved in water purification;Get Involved"
},
{
"question": "who does the voice of diane on family guy",
"answers": "Lori Alan",
"title": "Diane;Diane Crespo;Diane Downs"
},
{
"question": "who owns the gold spike in las vegas",
"answers": "Tony Hsieh",
"title": "Camera Owner;Owner of a Lonely Heart;Unlisted Owner"
},
{
"question": "who played jim lovell's daughter in apollo 13",
"answers": "Mary Kate Schellhardt",
"title": "Apollo 13;Apollo 1;Apollo 13 (pinball)"
},
{
"question": "when did nando's come to the uk",
"answers": "1992",
"title": "Nando's;Nando's Coffee House"
},
{
"question": "who played the nun on grounded for life",
"answers": "Miriam Flynn",
"title": "Grounded for Life;List of Grounded for Life episodes;List of Grounded for Life characters"
},
{
"question": "when did the united kingdom and northern ireland sign the kyoto protocol",
"answers": "29 April 1998",
"title": "List of 2004 box office number-one films in the United Kingdom;List of high commissioners of the United Kingdom to India;Assisted suicide in the United Kingdom;Advocate General for Northern Ireland;Northern Ireland Young Communist League;List of Acts of the Northern Ireland Assembly from 2014"
},
{
"question": "who wrote the score for 2001 a space odyssey",
"answers": "Alex North",
"title": "SCORE;Mallampati score;Academy Award for Best Original Score"
},
{
"question": "when was the last time ohio state beat usc in college football",
"answers": "December 29, 2017",
"title": "1969 Ohio State vs. Michigan football game;Ohio State Route 22;Ohio State University Marching Band"
},
{
"question": "who sings make it last forever with keith sweat",
"answers": "Jacci McGhee",
"title": "Make It Last Forever;Make It Last Forever (album);Make It Last Forever (song)"
},
{
"question": "who played john in night of the hunter",
"answers": "Billy Chapin",
"title": "John;John Tudor (footballer);Assassination of Paul R. Shaffer and John H. Turner"
},
{
"question": "who does the intro for monday night football",
"answers": "Hank Williams Jr.",
"title": "Monday Night Football;Monday Night Football (disambiguation);List of Monday Night Football results"
},
{
"question": "how many times has alec baldwin hosted saturday night live",
"answers": "seventeen",
"title": "Alec Baldwin;Up Late with Alec Baldwin;The Alec Baldwin Show"
},
{
"question": "who is the education minister of bihar in 2017",
"answers": "Ashok Chaudhary",
"title": "Bihar;Badi Dargah, Bihar Sharif;Emblem of Bihar"
},
{
"question": "who won the battle of new orleans during the civil war",
"answers": "the Union",
"title": "Battle of New Orleans;Battle of New Orleans (disambiguation);The Battle of New Orleans"
},
{
"question": "who is the sasquatch in the jack links commercials",
"answers": "Brian Steele",
"title": "Sasquatch (comics);Sasquatch Provincial Park;Sasquatch (disambiguation)"
},
{
"question": "what type of cells are white blood cells",
"answers": "cells of the immune system",
"title": "White Blood Cells;Artificial white blood cells"
},
{
"question": "who is the actor that plays damon on vampire diaries",
"answers": "Ian Joseph Somerhalder",
"title": "Actor;Actor (2016 film);Primetime Emmy Award for Outstanding Supporting Actor in a Limited or Anthology Series or Movie"
},
{
"question": "who plays ricky bobby's mom in talladega nights",
"answers": "Jane Lynch",
"title": "Talladega Nights: The Ballad of Ricky Bobby;Do the Ricky Bobby"
},
{
"question": "who is silver's baby daddy on 90210",
"answers": "Teddy",
"title": "Silver Comet;Silver Canyon (film);U.S. Silver & Gold"
},
{
"question": "who plays lenny bruce in the marvelous mrs maisel",
"answers": "Luke Kirby",
"title": "Lenny Bruce;Lenny Bruce Is Dead;Freedom of Speech: Lessons from Lenny Bruce"
},
{
"question": "who is the actor who plays lavon hayes",
"answers": "Cress Williams",
"title": "Actor;Actor (2016 film);Primetime Emmy Award for Outstanding Supporting Actor in a Limited or Anthology Series or Movie"
},
{
"question": "who has the most wins between real madrid and barcelona",
"answers": "Barcelona",
"title": "List of Real Madrid CF players;2015–16 Real Madrid CF season;1973–74 Real Madrid CF season"
},
{
"question": "where was the new series of lost in space filmed",
"answers": "in Vancouver, British Columbia",
"title": "Lost in Space;Lost in Space (Jonzun Crew album);Lost in Space discography"
},
{
"question": "who won the tour de france in 1999",
"answers": "It has no overall winner",
"title": "Combativity award in the Tour de France;Doping at the 2007 Tour de France;List of cyclists in the 1924 Tour de France"
},
{
"question": "who played melissa on two and a half men",
"answers": "Kelly Stables",
"title": "MELiSSA;Melissa Wells (politician);Melissa Reynard"
},
{
"question": "when was the truth in lending act signed into law",
"answers": "May 29, 1968",
"title": "Truth in Lending Act"
},
{
"question": "who voiced count dooku in the clone wars",
"answers": "Corey Burton",
"title": "Count Dooku"
},
{
"question": "who played goober pyle on the andy griffith show",
"answers": "George Smith Lindsey",
"title": "Goober Pyle"
},
{
"question": "who are the new characters in coronation street",
"answers": "Jim McDonald",
"title": "List of Coronation Street characters (1981);List of Coronation Street characters (1978);List of Coronation Street characters (1962)"
},
{
"question": "what organ contains bacteria that help produce vitamin k",
"answers": "gut",
"title": "Bacteria;List of bacteria of South Africa;Bacteria Cult"
},
{
"question": "who plays haley in wish upon a star",
"answers": "Danielle Harris",
"title": "Haley;Shay Haley;Haley Jones"
},
{
"question": "when did the bp oil spill stop leaking",
"answers": "September 19,",
"title": "Oil spill"
},
{
"question": "who played the judge in to kill a mockingbird",
"answers": "Paul Fix",
"title": "To Kill a Mockingbird;To Kill a Mockingbird (disambiguation);To Kill a Mockingbird (2018 play)"
},
{
"question": "when did mulk raj anand get sahitya academy award",
"answers": "1971",
"title": "Mulk Raj Anand"
},
{
"question": "when will the international space station be completed",
"answers": "2019",
"title": "European contribution to the International Space Station;Amateur Radio on the International Space Station;List of visitors to the International Space Station"
},
{
"question": "who played sidney poitier's daughter in a warm december",
"answers": "Yvette Curtis",
"title": "Sidney Poitier;List of awards and nominations received by Sidney Poitier;I Am Not Sidney Poitier"
},
{
"question": "who has the most balks in baseball history",
"answers": "Steve Carlton",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "how many rural banks do we have in ghana",
"answers": "115",
"title": "Rural banks in Ghana;List of regional rural banks in Uttar Pradesh"
},
{
"question": "when did the supreme court first decide that the internet is protected by the first amendment",
"answers": "2017",
"title": "Supreme court;List of United States Supreme Court cases, volume 219;List of United States Supreme Court cases, volume 118"
},
{
"question": "what is the dwarf city in the hobbit called",
"answers": "the Kingdom under the Mountain",
"title": "Hobbit;The Hobbit (1967 film);The Hobbit (1985 film)"
},
{
"question": "who plays jackson avery in grey's anatomy",
"answers": "Jesse Wesley Williams",
"title": "Jackson Avery"
},
{
"question": "when does nba 2k 19 come out for xbox",
"answers": "September 11, 2018",
"title": "NBA 2K"
},
{
"question": "who is the singer of main tera boyfriend",
"answers": "Meet Bros",
"title": "Main Tera Boyfriend"
},
{
"question": "who plays the dad in liv and maddie",
"answers": "Benjamin King",
"title": "LIV;Liv Dawson;Liv Grannes"
},
{
"question": "how many lake counties are there in the united states",
"answers": "12",
"title": "United States;List of people executed in the United States in 2002;1958 United States Senate election in New Jersey"
},
{
"question": "when did velveeta shells and cheese come out",
"answers": "1984",
"title": "Velveeta Shells & Cheese"
},
{
"question": "who is the commissioner of police in jamaica 2018",
"answers": "Major General Antony Anderson",
"title": "Commissioner of Police (New Zealand);Adhila Nasarin v. State Commissioner of Police;Assistant Commissioner of Police of the Metropolis"
},
{
"question": "who played kelly on the drew carey show",
"answers": "Cynthia Watros",
"title": "Kelly;John Kelly (author);Kelly Meigs"
},
{
"question": "who played keisha on why did i get married",
"answers": "Kaira Whitehead",
"title": "Keisha;Keisha the Sket;Keisha Spencer"
},
{
"question": "when did the washington post publish the pentagon papers",
"answers": "June 18, 1971",
"title": "Washington Post Radio;List of Pulitzer Prizes awarded to The Washington Post;The Washington Post Writers Group"
},
{
"question": "who is the longest serving manager in the premiership",
"answers": "Arsène Wenger",
"title": "ManaGeR;Chuck Tanner Baseball Manager of the Year Award;Business manager"
},
{
"question": "who played mikey in the life cereal commercial",
"answers": "John Gilchrist",
"title": "MIKEY;Mikey Welsh;Mikey Musumeci"
},
{
"question": "where does the bible talk about the armor of god",
"answers": "Ephesians 6:11",
"title": "Bible;Dorf's Golf Bible;Bible translations into Khmer"
},
{
"question": "when does the green knight appear in camelot",
"answers": "New Year's Day",
"title": "Green Knight;The Green Knight (fairy tale);The Green Knight (film)"
},
{
"question": "what airline was the first to offer in-flight movies to their 1st class passengers",
"answers": "Aeromarine Airways",
"title": "Airline;US Airline Pilots Association;List of airline codes (G)"
},
{
"question": "who plays loveday in the secret of moonacre",
"answers": "Natascha McElhone",
"title": "Who;Who Is Rich?;List of Doctor Who home video releases"
},
{
"question": "what is the episode of phineas and ferb with squirrels in my pants",
"answers": "\"Comet Kermillian\"",
"title": "Phineas and Ferb;Phineas and Ferb (season 3);Phineas and Ferb the Movie: Candace Against the Universe"
},
{
"question": "who makes the most money nfl or nba",
"answers": "National Football League",
"title": "1943 NFL season;2014 NFL Draft;List of Harvard Crimson in the NFL Draft"
},
{
"question": "who played the mother on what's happening",
"answers": "Mabel Elizabeth King",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "what is the fourth amendment in the bill of rights",
"answers": "prohibits unreasonable searches and seizures",
"title": "Fourth Amendment;Fourth Amendment Restoration Act;Fourth Amendment of the Constitution of South Africa"
},
{
"question": "where is the tv show gotham filmed at",
"answers": "in New York City",
"title": "Gotham;Gotham Independent Film Awards 2018;Gotham Underground"
},
{
"question": "who has the most tackles of all time",
"answers": "Jessie Tuggle",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "what is the first stupa in sri lanka",
"answers": "Mahiyangana, Uva Province",
"title": "Sri Lanka Technological Campus;Sri Lanka at the Olympics;Sri Lanka Rathna"
},
{
"question": "who has the power to set voting requirements",
"answers": "the states",
"title": "Power;Thermal power station;List of power stations in Romania"
},
{
"question": "who plays brian in the office season 9",
"answers": "Chris Diamantopoulos",
"title": "Brian;Brian Poole;Brian Jolly"
},
{
"question": "who wrote the commentary of bhagavad gita called gnaneswari",
"answers": "Dnyaneshwar",
"title": "Bhagavad Gita;Bhagavad Gita As It Is trial in Russia;Bhagavad Gita (film)"
},
{
"question": "who did the phillies trade to get von hayes",
"answers": "Manny Trillo",
"title": "1909 Philadelphia Phillies season;1910 Philadelphia Phillies season;Philadelphia Phillies all-time roster"
},
{
"question": "who plays the main guy in pitch perfect",
"answers": "Skylar Astin",
"title": "Pitch Perfect;Pitch Perfect (disambiguation);Pitch Perfect (franchise)"
},
{
"question": "what season of are you the one was cameron on",
"answers": "4",
"title": "Cameron;James W. Cameron;Cameron Mizell"
},
{
"question": "who played the title character in mohan joshi hazir ho",
"answers": "Bhisham Sahni",
"title": "Mohan Joshi Hazir Ho!"
},
{
"question": "who plays lauren in make it or break it",
"answers": "Cassie Scerbo",
"title": "Lauren;Lauren Sánchez;Lauren O'Farrell"
},
{
"question": "when is the new season of the simpsons coming out",
"answers": "October 1, 2017",
"title": "Treehouse of Horror (The Simpsons episode);The Simpsons (season 22);List of awards and nominations received by The Simpsons"
},
{
"question": "where was the movie first kill filmed at",
"answers": "Granville, Ohio",
"title": "Pokémon 3: The Movie;Paramount Movie Park Korea;The Bob's Burgers Movie"
},
{
"question": "who does the voice for lois on family guy",
"answers": "Alexandrea Borstein",
"title": "Family Guy;List of Family Guy cast members;Family Guy (season 2)"
},
{
"question": "when did bobby joe win the grand national",
"answers": "1999",
"title": "Bobby Joe Edmonds;Bobby Joe Hill;Bobby Joe Green"
},
{
"question": "who killed the girl in the movie horns",
"answers": "Lee",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "when was the last time dolphins made playoffs",
"answers": "2016",
"title": "2008 Miami Dolphins season;2005 Miami Dolphins season;2012 Jacksonville Dolphins football team"
},
{
"question": "where is taylor swift's delicate video filmed",
"answers": "Los Angeles",
"title": "Taylor Swift;List of songs by Taylor Swift;Taylor Swift albums discography"
},
{
"question": "where was hallmark's a royal christmas filmed",
"answers": "Bucharest, Romania",
"title": "Hallmark;BIS hallmark;Hallmark Movies Now"
},
{
"question": "what was paper made of in ancient china",
"answers": "rags and other plant fibers",
"title": "Paper;Blotting paper;The Berlin Paper"
},
{
"question": "what episode of law and order svu is mike tyson in",
"answers": "Monster's Legacy",
"title": "Mike Tyson vs. Donovan Ruddock;Mike Tyson vs. Michael Spinks;Mike Tyson vs. Donovan Ruddock II"
},
{
"question": "who sang blue moon in the 1950's",
"answers": "Elvis Presley",
"title": "Who;Who Is Rich?;List of Doctor Who home video releases"
},
{
"question": "who plays misty mountains in the nice guys",
"answers": "Murielle Telio",
"title": "Trolls of the Misty Mountains"
},
{
"question": "who plays charlotte in pride and prejudice 2005",
"answers": "Claudie Blakley",
"title": "List of Charlotte Area Transit System bus routes;Charlotte Frank;2020 Charlotte Independence season"
},
{
"question": "when was the resolution passed by the constituent assembly",
"answers": "22 January 1947",
"title": "Constituent assembly;Members of the 2017 National Constituent Assembly of Venezuela;Constituent Assembly of Jammu and Kashmir"
},
{
"question": "who plays nikki in season 1 of blue bloods",
"answers": "Sami Gayle",
"title": "The Blue Bloods;Blue Bloods (season 7);Blue Bloods (season 12)"
},
{
"question": "when was the last time eminem went on tour",
"answers": "2014",
"title": "Eminem;List of Eminem records and achievements;Eminem videography"
},
{
"question": "who holds the record for consecutive wins in baseball",
"answers": "The 1916 New York Giants",
"title": "List of CPBL holds champions;What the Future Holds;No Holds Barred: The Match/The Movie"
},
{
"question": "when did the beatles perform on the rooftop",
"answers": "30 January 1969",
"title": "Mixed Beats;KB Killa Beats;MTV Beats (TV channel)"
},
{
"question": "where does most of the world's lithium come from",
"answers": "South America",
"title": "Lithium tetrakis(pentafluorophenyl)borate;Lithium iron phosphate battery;Snow Lake lithium mine"
},
{
"question": "when was the war measures act been used in canada",
"answers": "the First World War",
"title": "War Measures Act"
},
{
"question": "who is the hero of film main aur charles",
"answers": "Amod Kanth",
"title": "Main;Building at 426 South Main Street;United States Post Office and Courthouse–Glasgow Main"
},
{
"question": "who has scored the most goals in one season for liverpool",
"answers": "Ian Rush",
"title": "Royal Liverpool University Hospital;Leeds and Liverpool Canal Society;Liverpool Central High Level railway station"
},
{
"question": "who played george hazards wife in north and south",
"answers": "Wendy Kilbourne",
"title": "North and South;North and South Western Junction Railway;North and South (miniseries)"
},
{
"question": "what is the name of the first colony established by spain in the new world",
"answers": "La Navidad",
"title": "Spain Park High School;List of heads of state of Spain;Spokesperson of the Government of Spain"
},
{
"question": "when was last time ireland won grand slam",
"answers": "2018",
"title": "Ireland;2012 in Ireland;1988–89 League of Ireland Premier Division"
},
{
"question": "who plays grey worm on game of thrones",
"answers": "Jacob Basil Anderson",
"title": "Game of Thrones;Game of Thrones title sequence;Game of Thrones (season 1)"
},
{
"question": "who sings on the phantom of the opera soundtrack",
"answers": "Emmy Rossum",
"title": "The Phantom of the Opera (1989 film);The Phantom of the Opera (audio drama);The Phantom of the Opera (1962 film)"
},
{
"question": "who was the dragon in once upon a time",
"answers": "Maleficent",
"title": "Once Upon a Time;Once Upon a Time in the Midlands;Once Upon a Time in China and America"
},
{
"question": "when did joseph smith get the gold plates",
"answers": "September 22, 1823",
"title": "Joseph Smith;List of prophecies of Joseph Smith;Albert Joseph Smith"
},
{
"question": "what is the size of new york state",
"answers": "54,555 square miles",
"title": "New York State Route 110;1872 New York state election;New York State Route 378"
},
{
"question": "who played lance in suite life of zack and cody",
"answers": "Aaron Musicant",
"title": "Lance;Lance Milton;Lance Clow"
},
{
"question": "which horse came second to rogan josh in the 1999 melbourne cup",
"answers": "Central Park",
"title": "Rogan josh;Rogan josh (disambiguation);Rogan Josh (horse)"
},
{
"question": "how many species of plants are found in india",
"answers": "more than 50,000",
"title": "Additional secretary to the Government of India;1581 in India;Public sector banks in India"
},
{
"question": "when did bp change its name to beyond petroleum",
"answers": "2001",
"title": "BP"
},
{
"question": "who sings the song i'm in love with a monster",
"answers": "American girl group Fifth Harmony",
"title": "I'm in Love with a Monster"
},
{
"question": "when was the last time gonzaga made it to the final four",
"answers": "2017",
"title": "Gonzaga;Gonzaga Bulldogs men's ice hockey;Lucrezia Gonzaga"
},
{
"question": "who played nick on days of our lives",
"answers": "Blake Berris",
"title": "Nick;Nick Olle;Nick Mallett"
},
{
"question": "who plays angier's double in the prestige",
"answers": "Hugh Jackman",
"title": "Angier;Angier Goodwin;Oakes Angier Ames"
},
{
"question": "what episode does grey's anatomy have a shooting",
"answers": "Death and All His Friends",
"title": "Grey's Anatomy;Grey's Anatomy (season 19);Grey's Anatomy (season 6)"
},
{
"question": "who makes the most money per year in the nba",
"answers": "Stephen Curry",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "who earns the most money in the nba",
"answers": "Stephen Curry",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "who played edward ferrars in sense and sensibility",
"answers": "Hugh Grant",
"title": "Edward Ferrars"
},
{
"question": "where is the satish dhawan space centre located",
"answers": "Sriharikota in Andhra Pradesh",
"title": "Satish Dhawan Space Centre;List of Satish Dhawan Space Centre launches"
},
{
"question": "who is the character at the end of the avengers",
"answers": "Thanos",
"title": "Secret Avengers;The New Adventures of the Elusive Avengers;Avengers Grimm: Time Wars"
},
{
"question": "who voiced kaa in the original jungle book",
"answers": "Sterling Price Holloway Jr.",
"title": "Kaa;Aap Kaa Surroor (album);Kaa Williams"
},
{
"question": "how many seasons of rock of love are there",
"answers": "Three",
"title": "Rock of Love with Bret Michaels;Rock of Love with Bret Michaels (season 1);Rock of Love Bus with Bret Michaels"
},
{
"question": "who played the role of thad on gunsmoke",
"answers": "Ewing",
"title": "Gunsmoke;Gunsmoke Mesa;Gunsmoke (season 7)"
},
{
"question": "when does wally west becomes a speedster in the flash",
"answers": "1959",
"title": "Wally West;Wally West (disambiguation)"
},
{
"question": "who does miley cyrus play in high school musical 2",
"answers": "Girl At Pool",
"title": "Miley Cyrus;Miley Cyrus & Her Dead Petz;Miley Cyrus discography"
},
{
"question": "does the audi a4 have all wheel drive",
"answers": "on some models",
"title": "Audi;Audi A4 DTM"
},
{
"question": "when did the first settlers come to new zealand",
"answers": "around 1280 CE",
"title": "Candamir: The First Settlers"
},
{
"question": "when does the next episode of haters back off come out",
"answers": "October 20, 2017",
"title": "Haters Roast;Sorry, Haters;Woman Haters"
},
{
"question": "where was the john wayne movie mclintock filmed",
"answers": "Nogales",
"title": "John Wayne Niles;John Wayne Delehant;John Wayne (song)"
},
{
"question": "who has the record for most 3 pointers in a career",
"answers": "Ray Allen",
"title": "Player;NFCA National Player of the Year;Player to be named later"
},
{
"question": "which prime minister of india born in gujarat",
"answers": "Morarji Desai",
"title": "Principal Secretary to the Prime Minister of India;Deputy Prime Minister of India;Spouse of the Prime Minister of India"
},
{
"question": "what was the last episode of transformers g1",
"answers": "\"B.O.T.\"",
"title": "Transformers G1: Awakening"
},
{
"question": "when does assassin's creed origins take place",
"answers": "Ptolemaic period",
"title": "Assassin's Creed Origins"
},
{
"question": "who owns the rights to miracle on 34th street",
"answers": "20th Century Fox",
"title": "Miracle on 34th Street;Miracle on 34th Street (disambiguation);Miracle on 34th Street (NBC Friday Night Special Presentation)"
},
{
"question": "what part of the kidney does aldosterone work on",
"answers": "nephron",
"title": "Aldosterone;Aldosterone escape;Aldosterone synthase"
},
{
"question": "what episode of house does wilson get cancer",
"answers": "Body and Soul",
"title": "Wilson;Kym Wilson;Wilson disease protein"
},
{
"question": "who is the princess in kingsman secret service",
"answers": "Hanna Alström",
"title": "Princess;Princess Anita of Orange-Nassau;Theodora Komnene, Princess of Antioch"
},
{
"question": "how many employees does starbucks have in the us",
"answers": "238,000",
"title": "Starbucks;Tata Starbucks;Live at Starbucks"
},
{
"question": "who sang the theme song for the beverly hillbillies",
"answers": "Lester Flatt",
"title": "List of The Beverly Hillbillies episodes;The Beverly Hillbillies (video game);The Beverly Hillbillies (film)"
},
{
"question": "when was burt's bees bought out by clorox",
"answers": "In late 2007",
"title": "Burt's Bees"
},
{
"question": "what type of book is the catcher in the rye",
"answers": "Realistic fiction",
"title": "The Catcher in the Rye in popular culture;The Catcher in the Rye (disambiguation);Catcher in the Rye (band)"
},
{
"question": "when was the last time oakland raiders won the superbowl",
"answers": "1983",
"title": "Oakland Raiders;1969 Oakland Raiders season;1966 Oakland Raiders season"
},
{
"question": "who signed an alliance between germany and italy",
"answers": "Galeazzo Ciano",
"title": "Soest, Germany;Order of Merit of the Federal Republic of Germany;Mathematics in Nazi Germany"
},
{
"question": "when is puerto rico competing in the winter olympics",
"answers": "2018",
"title": "Ovejas, Añasco, Puerto Rico;Puerto Rico Baseball Academy and High School;Machete, Guayama, Puerto Rico"
},
{
"question": "who did the voice of friar tuck in disney's robin hood",
"answers": "Andy Devine",
"title": "Friar Tuck"
},
{
"question": "who did rob lowe play in the stand",
"answers": "Nick Andros",
"title": "Rob Lowe"
},
{
"question": "who plays the grandson in our souls at night",
"answers": "Iain Armitage",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "who wrote look what you've done to me",
"answers": "David Foster",
"title": "Look What You've Done to Me;Look What You've Done"
},
{
"question": "who does seth macfarlane play in cleveland show",
"answers": "Tim the Bear",
"title": "Seth MacFarlane;List of awards and nominations received by Seth MacFarlane;Seth MacFarlane filmography"
},
{
"question": "who played cw moss in bonnie and clyde",
"answers": "Michael John Pollard",
"title": "Bonnie and Clyde;Modern Day Bonnie and Clyde;The Other Side of Bonnie and Clyde"
},
{
"question": "who wins asia's next top model season 5",
"answers": "Maureen Wroblewitz",
"title": "Asia;List of Asia Cup five-wicket hauls;List of state leaders in 17th-century South Asia"
},
{
"question": "where did the first outbreak of the plague occur in europe",
"answers": "Crimea",
"title": "Plague;Plague of Athens;San Francisco plague of 1900–1904"
},
{
"question": "who won the best actor award at 2017 asia pacific screen awards",
"answers": "Rajkummar Rao",
"title": "Actor;Actor (2016 film);Primetime Emmy Award for Outstanding Supporting Actor in a Limited or Anthology Series or Movie"
},
{
"question": "when did simon and garfunkel release sound of silence",
"answers": "October 1964",
"title": "The Definitive Simon and Garfunkel;Old Friends (1997 Simon and Garfunkel album);The Hit Sounds of Simon and Garfunkel"
},
{
"question": "what year did the record player come out",
"answers": "1889",
"title": "Record Player (song)"
},
{
"question": "how many seasons of fireman sam are there",
"answers": "11",
"title": "Fireman Sam;List of Fireman Sam episodes;List of Fireman Sam characters"
},
{
"question": "who played timothy on little house on the prairie",
"answers": "Johnny Doran",
"title": "Timothy;SS Timothy Pickering;Timothy Cullen"
},
{
"question": "who was the last person executed in oregon",
"answers": "Harry Charles Moore",
"title": "Oregon;Quincy, Oregon;Marquam, Oregon"
},
{
"question": "who does the voice of the old man on family guy",
"answers": "Mike Henry",
"title": "Family Guy;List of Family Guy cast members;Family Guy (season 2)"
},
{
"question": "who does the voice of beefy in little nicky",
"answers": "Robert Smigel",
"title": "Little Nicky;Little Nicky (video game);Little Nicky (cat)"
},
{
"question": "where is maple syrup produced in the world",
"answers": "northeastern North America",
"title": "Maple syrup event;Elmira Maple Syrup Festival;Federation of Quebec Maple Syrup Producers"
},
{
"question": "who is sonny to mitch in paid in full",
"answers": "kid brother",
"title": "Sonny;Sonny Parker (basketball);Sonny Carey"
},
{
"question": "when was the last total eclipse seen in nz",
"answers": "November 13, 2012",
"title": "Total Eclipse;Total Eclipse (1988 video game);Total Eclipse (comics)"
},
{
"question": "who was the teenage girl in mad max beyond thunderdome",
"answers": "Savannah Nix",
"title": "Diary of a Teenage Girl (disambiguation);List of My Teenage Girl contestants;My Teenage Girl"
},
{
"question": "who played jack snyder on as the world turns",
"answers": "Michael Frank Park",
"title": "Jack Snyder;Jack Snyder (baseball);Jack Snyder and Carly Tenney"
},
{
"question": "who played the young maid in american horror story",
"answers": "Alexandra Hetherington Breckenridge",
"title": "American Horror Story;List of American Horror Story episodes;Captive Audience: A Real American Horror Story"
},
{
"question": "who came up with the blood type diet",
"answers": "Peter J. D'Adamo",
"title": "Blood type diet"
},
{
"question": "who plays robbie in last tango in halifax",
"answers": "Dean Andrews",
"title": "Last Tango in Halifax;List of Last Tango in Halifax episodes"
},
{
"question": "who is the deputy speaker of lagos state house of assembly",
"answers": "Hon. Eshinloku Sanni",
"title": "Lagos State House of Assembly;5th Lagos State House of Assembly;2019 Lagos State House of Assembly election"
},
{
"question": "when did the manhattan project began and end",
"answers": "From 1942 to 1946",
"title": "Timeline of the Manhattan Project;African-American scientists and technicians on the Manhattan Project;Manhattan Project (disambiguation)"
},
{
"question": "who played alice garvey on little house on the prairie",
"answers": "Hersha Parady",
"title": "Little House on the Prairie;Little House on the Prairie (musical);Little House on the Prairie (film)"
},
{
"question": "who played adam on touched by an angel",
"answers": "Charles Rocket",
"title": "Adam;Adam Hamari;Adam de Kingston"
},
{
"question": "who ascended the throne of delhi sultante after the death of qutub ud din aibak",
"answers": "Aram Shah",
"title": "Sultan;Sultan Ibrahim Jamek Mosque;Naile Sultan (daughter of Abdulmejid I)"
},
{
"question": "where did the red sox get phillips from",
"answers": "Los Angeles Angels",
"title": "1909 Boston Red Sox season;Cleveland Red Sox;2008 Boston Red Sox season"
},
{
"question": "which beatle leads the way on the abbey road album",
"answers": "Lennon",
"title": "Beatle Country;Beatle Barkers;Beatle Bob"
},
{
"question": "who does the voice for lucy in disenchantment",
"answers": "Eric Andre",
"title": "Lucy;Lucy Sale-Barker;Lucy Wright"
},
{
"question": "where does the lopez last name come from",
"answers": "Spain",
"title": "Helga Lopez;Marian Lopez Fernandez-Cao;Doña Montserrat Lopez Memorial High School"
},
{
"question": "when was the last time mt. hood erupted",
"answers": "1866",
"title": "Mt. Hood Jazz Festival;Mt. Hood Community College"
},
{
"question": "who has the longest wingspan in nba history",
"answers": "Manute Bol",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "who played bernie in the movie weekend at bernie's",
"answers": "Terry Kiser",
"title": "Bernie;Bernie Ruoff;Veterans for Bernie Sanders"
},
{
"question": "who plays cinderella in once upon a time 2017",
"answers": "Dania Ramirez",
"title": "Cinderella;Cinderella (1977 film);Agriophara cinderella"
},
{
"question": "who owns the copyright to the smiley face",
"answers": "the Smiley Company",
"title": "Smiley Face;Smiley face curve;LOL Smiley Face"
},
{
"question": "when did the battle of new orleans start",
"answers": "December 14, 1814",
"title": "Battle of New Orleans;Battle of New Orleans (disambiguation);The Battle of New Orleans"
},
{
"question": "who plays adam sandler's caddy in happy gilmore",
"answers": "Allen Covert",
"title": "Adam Sandler;Adam Sandler (costume wearer);List of awards and nominations received by Adam Sandler"
},
{
"question": "who starred in the ghost and mr. chicken",
"answers": "Sandra Gould",
"title": "Tom Clancy's Ghost Recon: Island Thunder;Ghost Hunting (film);Sarah Jane Smith: Ghost Town;The Ghost and Mr. Chicken"
},
{
"question": "who is the actress that plays baker on blue bloods",
"answers": "Abigail Hawk",
"title": "The Blue Bloods;Blue Bloods (season 7);Blue Bloods (season 12)"
},
{
"question": "when did west coast customs moved to burbank",
"answers": "January 2015",
"title": "West Coast Customs;Inside West Coast Customs"
},
{
"question": "what is the conceal and carry age in missouri",
"answers": "19",
"title": "University of Missouri Police Department;Weatherby, Missouri;Wood Heights, Missouri"
},
{
"question": "who plays tim mcgee's girlfriend on ncis",
"answers": "Harshman",
"title": "Tim McGee"
},
{
"question": "who plays king edward in the white queen",
"answers": "Max Irons",
"title": "The White Queen (TV series);The White Queen (novel);White Queen (Through the Looking-Glass)"
},
{
"question": "who plays chakal in the book of life",
"answers": "Dan Navarro",
"title": "Book of Life;The Book of Life (soundtrack);The Book of Life"
},
{
"question": "who is the minister of education in ghana",
"answers": "Hon. Matthew Opoku Prempeh",
"title": "Ministry of Tourism, Arts & Culture Ghana;Absa Bank Ghana;Presbyterian Church of Ghana"
},
{
"question": "what impact did the korean war have on u.s. military spending",
"answers": "increased it",
"title": "Arkansas Army National Guard and the Korean War;Korean War Memorial, London;Korean War Veterans Memorial (Jersey City)"
},
{
"question": "who is the actor who plays jamie fraser in outlander",
"answers": "Sam Roland Heughan",
"title": "Actor;Actor (2016 film);Primetime Emmy Award for Outstanding Supporting Actor in a Limited or Anthology Series or Movie"
},
{
"question": "what is the major occupation of indian citizens",
"answers": "Agricultural",
"title": "Visa requirements for Indian citizens"
},
{
"question": "who is the second most decorated olympian of all time",
"answers": "Larisa Latynina",
"title": "Olympian;Olympian Nights;Olympian spirits"
},
{
"question": "who plays bonnie's grandma on vampire diaries",
"answers": "Guy",
"title": "The Vampire Diaries (season 3);The Vampire Diaries Universe;List of The Vampire Diaries episodes"
},
{
"question": "when did the san diego padres change their colors",
"answers": "1985",
"title": "1972 San Diego Padres season;1987 San Diego Padres season;2015 San Diego Padres season"
},
{
"question": "who plays the voice of marlin in finding nemo",
"answers": "Albert Lawrence Brooks",
"title": "Marlin;USS Marlin;John Marlin"
},
{
"question": "what is the demand of naxalites in india",
"answers": "release of prisoners",
"title": "The Naxalites"
},
{
"question": "who did taylor swift wrote the song mine about",
"answers": "unnamed crushes",
"title": "Taylor Swift;List of songs by Taylor Swift;Taylor Swift albums discography"
},
{
"question": "who voices kronk in the emperor's new groove",
"answers": "Patrick John Warburton",
"title": "The Emperor's New Groove (soundtrack);The Emperor's New Groove (disambiguation);List of The Emperor's New Groove characters"
},
{
"question": "who did holly matthews play in waterloo toad",
"answers": "Leigh-Ann Galloway",
"title": "Holly Matthews"
},
{
"question": "what happened to will smith's family in i am legend",
"answers": "died in a helicopter accident",
"title": "Will Smith;Will Smith (ice hockey);Will Smith (pitcher)"
},
{
"question": "who plays the queen of france in the tudors",
"answers": "Gabrielle Anwar",
"title": "Ingeborg of Denmark, Queen of France;Marie of Luxembourg, Queen of France;Mary Tudor, Queen of France"
},
{
"question": "how many townships are in the state of ohio",
"answers": "1,309",
"title": "1969 Ohio State vs. Michigan football game;Miss Ohio USA;Pyro, Ohio"
},
{
"question": "who played roxy in the story of tracy beaker",
"answers": "Sophie Borja",
"title": "Tracy Beaker;Tracy Beaker Returns;List of The Story of Tracy Beaker episodes"
},
{
"question": "who ordered the charge of the light brigade",
"answers": "Lord Cardigan",
"title": "Order;Coalition Provisional Authority Order 2;Order of Merit of the Federal Republic of Germany"
},
{
"question": "who plays gavin's mum in gavin and stacey",
"answers": "Alison Steadman",
"title": "Gavin;Gavin Walls;Gavin Mullin"
},
{
"question": "when did the kushan empire begin and end",
"answers": "30–375",
"title": "Kushan Empire"
},
{
"question": "who played max in wizards of waverly place",
"answers": "Jake Austin Szymanski",
"title": "Max;Max Stenbeck;Max Eastley"
},
{
"question": "when is american ninja warrior filmed in las vegas",
"answers": "the national finals",
"title": "American Ninja Warrior;American Ninja Warrior (season 9);American Ninja Warrior (season 11)"
},
{
"question": "who played templeton peck in the a team",
"answers": "Tim Dunigan",
"title": "Templeton Peck"
},
{
"question": "when did the first hunger games come out",
"answers": "March 21, 2012",
"title": "The Hunger Games 4;List of The Hunger Games characters;The Hunger Games (film series)"
},
{
"question": "who won the wwe universal championship at greatest royal rumble",
"answers": "Braun Strowman",
"title": "WWE Universal Championship"
},
{
"question": "who played josh's brother on young and hungry",
"answers": "Jayson Blair",
"title": "Young and Hungry Arts Trust"
},
{
"question": "when did the first fleet land on australia",
"answers": "18 to 20 January 1788",
"title": "First Fleet;Journals of the First Fleet;First Fleet (disambiguation)"
},
{
"question": "when did public schools start in the united states",
"answers": "1635",
"title": "Old Bridge Township Public Schools;Gilbert Public Schools;Española Public Schools"
},
{
"question": "who sang the song jean from the prime of miss jean brodie",
"answers": "McKuen",
"title": "Denmark in the Eurovision Song Contest 2019;Malta in the Eurovision Song Contest 2003;Grammy Award for Song of the Year"
},
{
"question": "when did paramount announce the remastered release of star trek for tv",
"answers": "July 26, 2007",
"title": "Paradigm;Campbell paradigm;Deese–Roediger–McDermott paradigm"
},
{
"question": "what was france's role in the american revolution",
"answers": "shipments of money and matériel",
"title": "France;Anatole France;2013–14 Championnat de France Amateur"
},
{
"question": "when does nick amaro leave law and order",
"answers": "season 16",
"title": "Nick Amaro"
},
{
"question": "who plays anna in gi joe rise of cobra",
"answers": "Sienna Miller",
"title": "Anna;Anna Gruetzner Robins;Anna M. Peterson"
},
{
"question": "who transferred his capital from delhi to daulatabad",
"answers": "Muhammad Bin Tughlaq",
"title": "Who;Who Is Rich?;List of Doctor Who home video releases"
},
{
"question": "where does the last name curtis come from",
"answers": "Anglo-Norman",
"title": "Curtis;Carlton Brandaga Curtis;Jack Curtis (actor)"
},
{
"question": "who owns eddie v's in la jolla",
"answers": "Darden Restaurants, Inc.",
"title": "Eddie V's Prime Seafood"
},
{
"question": "who wrote the song i got friends in low places",
"answers": "Dewayne Blackwell",
"title": "Denmark in the Eurovision Song Contest 2019;Malta in the Eurovision Song Contest 2003;Grammy Award for Song of the Year"
},
{
"question": "who plays cinderella in the new disney movie",
"answers": "Lily James",
"title": "Cinderella;Cinderella (1977 film);Agriophara cinderella"
},
{
"question": "when were the oldest surviving new testament manuscripts written",
"answers": "the 4th century",
"title": "Categories of New Testament manuscripts;Center for the Study of New Testament Manuscripts;List of Coptic New Testament manuscripts"
},
{
"question": "how long did it take the cubs to win a world series",
"answers": "108-year",
"title": "Cubs;Watertown Cubs;1970 Chicago Cubs season"
},
{
"question": "who plays dr. hahn in grey's anatomy",
"answers": "Brooke Smith",
"title": "Grey's Anatomy;Grey's Anatomy (season 19);Grey's Anatomy (season 6)"
},
{
"question": "when does the movie peter rabbit come out",
"answers": "February 9, 2018",
"title": "Pokémon 3: The Movie;Paramount Movie Park Korea;The Bob's Burgers Movie"
},
{
"question": "how many manga books are there for attack on titan",
"answers": "26",
"title": "Attack on Titan;Epica vs Attack on Titan Songs;List of Attack on Titan characters"
},
{
"question": "who was charged in the my lai massacre",
"answers": "William Laws Calley Jr.",
"title": "My Lai massacre"
},
{
"question": "who played little jack in meet the fockers",
"answers": "Spencer and Bradley Pickren",
"title": "Meet the Fockers"
},
{
"question": "where is the setting of a streetcar named desire",
"answers": "New Orleans French Quarter",
"title": "A Streetcar Named Desire (disambiguation);A Streetcar Named Desire;A Streetcar Named Desire (opera)"
},
{
"question": "how many seasons of being maryjane are there",
"answers": "4",
"title": "MaryJane Butters;Maryjane (film);MaryJane Mwangi"
},
{
"question": "what is the salt capital of the philippines",
"answers": "Pangasinan",
"title": "Equestrian Association of the Philippines;Violence against women in the Philippines;University of the Philippines School of Labor and Industrial Relations"
},
{
"question": "what is the student population of appalachian state university",
"answers": "18,811",
"title": "Appalachian State University;Appalachian State University Marching Mountaineers"
},
{
"question": "who played robert's mother on grace and frankie",
"answers": "Lois Smith",
"title": "Robert Tindall;Robert Campbell;Robert Kramer"
},
{
"question": "who was the ruler of india when the east india company was set up",
"answers": "Queen Elizabeth I",
"title": "East India Company;East India Company College;Dutch East India Company"
},
{
"question": "when is the heart developed in a fetus",
"answers": "by week 4 of development",
"title": "By Heart;Tempting Heart;Animal Heart"
},
{
"question": "what type of school is miami dade college",
"answers": "a state college",
"title": "Miami Dade College;List of Miami Dade College alumni"
},
{
"question": "who plays rachel berry's mom in glee",
"answers": "Idina Menzel",
"title": "Rachel Berry;Rachel Berry (legislator)"
},
{
"question": "when did separation of church and state became law",
"answers": "1878",
"title": "Separation of church and state;Baptists in the history of separation of church and state;Separation of church and state in Australia"
},
{
"question": "who is jack in the box married to",
"answers": "Cricket",
"title": "Jack in the Box;Jack in the Box (Satie);Jack in the Box (song)"
},
{
"question": "who won the nascar race on march 26 2018",
"answers": "Clint Bowyer",
"title": "List of NASCAR race wins by Kevin Harvick;List of NASCAR race wins by Jimmie Johnson;NASCAR Race Day"
},
{
"question": "who plays todd in the last man on earth",
"answers": "Mel Rodriguez",
"title": "The Last Man on Earth;Last Man on Earth (album);The Last Man on Earth (song)"
},
{
"question": "how long have chip and joanna been on tv",
"answers": "May 2013",
"title": "Chip (association football);Chip Smith;Chip Sarafin"
},
{
"question": "what is the relation between india and pakistan",
"answers": "complex and largely hostile",
"title": "Additional secretary to the Government of India;1581 in India;Public sector banks in India"
},
{
"question": "who played jiminy cricket in once upon a time",
"answers": "Raphael Sbarge",
"title": "Once Upon a Time;Once Upon a Time in the Midlands;Once Upon a Time in China and America"
},
{
"question": "where does the emperor sit in the colosseum",
"answers": "at the north",
"title": "The Emperor of All Maladies;Consorts of the Daoguang Emperor;Emperor Rokujō"
},
{
"question": "who played the dead guy in the movie the big chill",
"answers": "Kevin Costner",
"title": "The Big Chill at the Big House;The Big Chill (film);The Big Chill (music festival)"
},
{
"question": "who was the chairman of the opening and closing ceremonies at the 1960 winter olympics",
"answers": "Walt Disney",
"title": "1960 Winter Olympics;Venues of the 1960 Winter Olympics;Hungary at the 1960 Winter Olympics"
},
{
"question": "who played nathan on young and the restless",
"answers": "Randy Brooks",
"title": "List of The Young and the Restless characters (2012);List of The Young and the Restless characters (2014);List of The Young and the Restless cast members"
},
{
"question": "where is little italy located in new york city",
"answers": "in Lower Manhattan",
"title": "Little Italy;Little Italy Festival;Maggiano's Little Italy"
},
{
"question": "who initiated the introduction of education in english in india",
"answers": "Lord William Bentinck",
"title": "The Initiated;Client Initiated Remote Access;South Dakota Initiated Measure 27"
},
{
"question": "when did the states ratify the 13th amendment",
"answers": "December 18, 1865",
"title": "List of people executed in the United States in 2002;1958 United States Senate election in New Jersey;List of United States Supreme Court cases, volume 219"
},
{
"question": "who has more hat tricks between messi and ronaldo",
"answers": "Cristiano Ronaldo",
"title": "Messi (cougar);Stéphane Messi;List of career achievements by Lionel Messi"
},
{
"question": "when did the beatles announce their break up",
"answers": "10 April 1970",
"title": "List of Beatles;Beatles '65;The Beatles in Mono"
},
{
"question": "who played carlton on fresh prince of belair",
"answers": "Alfonso Lincoln Ribeiro Sr.",
"title": "Carlton;Carlton Griffin;Carlton Brandaga Curtis"
},
{
"question": "who plays nurse gilbert in call the midwife",
"answers": "Charlotte Ritchie",
"title": "Call the Midwife;Call the Midwife (book);List of Call the Midwife characters"
},
{
"question": "what came first where wally or where waldo",
"answers": "Where's Wally?",
"title": "WALLY;Wally Parks;Wally Henschel"
},
{
"question": "where is the tower of babel in the bible",
"answers": "the land of Shinar",
"title": "JLA: Tower of Babel;The Tower of Babel (novel);The Tower of Babel (Bruegel)"
},
{
"question": "when did gta 5 come out for ps4",
"answers": "November 2014",
"title": "GTA"
},
{
"question": "when did aberdeen last win the scottish cup",
"answers": "2013–14",
"title": "Aberdeen;Ferryhill, Aberdeen;2013–14 Aberdeen F.C. season"
},
{
"question": "who owns justify the winner of the triple crown",
"answers": "China Horse Club",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "when was the first star wars comic released",
"answers": "April 12, 1977",
"title": "List of Star Wars comic books"
},
{
"question": "who plays perseus in the clash of the titans",
"answers": "Harry Hamlin",
"title": "Perseus;Perseus Freeing Andromeda (disambiguation);USS Perseus"
},
{
"question": "who won the year daughtry was on idol",
"answers": "Taylor Hicks",
"title": "NFCA National Player of the Year;Colchester United F.C. Player of the Year;The Year the Sun Died"
},
{
"question": "how many episodes of little witch academia will there be",
"answers": "25",
"title": "Little Witch Academia;List of Little Witch Academia episodes"
},
{
"question": "where did artemis get her bow and arrow",
"answers": "from The Kyklopes",
"title": "Artemis;Temple of Artemis (disambiguation);Artemis Fowl (film)"
},
{
"question": "who plays greg pikitis on parks and recreation",
"answers": "Cody Klop",
"title": "Greg Pikitis"
},
{
"question": "what was the cause of the nigerian civil war",
"answers": "a military coup",
"title": "Nigerian Civil War"
},
{
"question": "when does late show with stephen colbert start",
"answers": "10:35 Central",
"title": "List of The Late Show with Stephen Colbert episodes (2020);List of The Late Show with Stephen Colbert episodes;List of The Late Show with Stephen Colbert episodes (2019)"
},
{
"question": "when did veteran's day become a holiday",
"answers": "1954",
"title": "Veteran's Day Poppy"
},
{
"question": "what season of american horror story has cuba gooding jr",
"answers": "the sixth",
"title": "American Horror Story;List of American Horror Story episodes;Captive Audience: A Real American Horror Story"
},
{
"question": "who won the bobbie rosenfeld award in 2017",
"answers": "Henderson, Brooke",
"title": "Bobbie Rosenfeld Award"
},
{
"question": "when was the last time radford was in march madness",
"answers": "2018",
"title": "Radford;Arthur W. Radford;Toby Radford"
},
{
"question": "who owns the water in big bear lake",
"answers": "Big Bear Municipal Water District",
"title": "Big Bear Lake;Big Bear Lake International Film Festival"
},
{
"question": "where did the first balkan war take place",
"answers": "Bulgaria",
"title": "First Balkan War;Order of battle of the Serbian Army in the First Balkan War;Second Balkan War"
},
{
"question": "when is the next super bowl in tampa",
"answers": "February 7, 2021",
"title": "Super Bowl XLVIII halftime show;Super Bowl LIII;Super Bowl LII halftime show"
},
{
"question": "who sang the theme song for silver spoons",
"answers": "Ron Dante",
"title": "Silver Spoons & Broken Bones;List of Silver Spoons episodes"
},
{
"question": "who is the boy that plays kevin in home alone",
"answers": "Macaulay Carson Culkin",
"title": "Home Alone;Home Alone 2: Lost in New York (video game);Home Alone 2: Lost in New York"
},
{
"question": "who plays the cornwall coach in she's the man",
"answers": "Vinnie Jones",
"title": "She's the Man"
},
{
"question": "what network is t mobile on in the usa",
"answers": "T-Mobile and MetroPCS",
"title": "2001 Boost Mobile V8 International;Mint Mobile;Patriot Mobile"
},
{
"question": "when was the bells by edgar allan poe written",
"answers": "May 1848",
"title": "Death of Edgar Allan Poe;Poems by Edgar Allan Poe;Edgar Allan Poe Award for Best Short Story"
},
{
"question": "when do rachel and ross have a baby",
"answers": "May 16, 2002",
"title": "Rachel;Rachel Manley;Rachel Noble"
},
{
"question": "who played rachel lynde in anne of green gables",
"answers": "Patricia Hamilton",
"title": "Anne of Green Gables;Looking for Anne of Green Gables;Anne of Green Gables (disambiguation)"
},
{
"question": "who scored the first goal in 2010 world cup",
"answers": "South African winger Siphiwe Tshabalala",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "when did michael jackson make the song hold my hand",
"answers": "2008",
"title": "Michael Jackson;Never Can Say Goodbye: The Music of Michael Jackson;Michael Jackson (writer)"
},
{
"question": "when did congress first began to regulate immigration",
"answers": "1882",
"title": "The Congress (1988 film);Southern Hemisphere Ornithological Congress;Secretariat of the 12th Congress of the Russian Communist Party (Bolsheviks)"
},
{
"question": "who plays prince eric in once upon a time",
"answers": "Gil McKinney",
"title": "Once Upon a Time;Once Upon a Time in the Midlands;Once Upon a Time in China and America"
},
{
"question": "where is regional maritime university located in ghana",
"answers": "Accra",
"title": "Regional Maritime University"
},
{
"question": "where is west shamokin high school in pa",
"answers": "in Rural Valley",
"title": "West Shamokin High School"
},
{
"question": "who owns the golden nugget in atlantic city",
"answers": "Landry's, Inc.",
"title": "Atlantic City algorithm;Atlantic City Convention Center;Atlantic City CardSharks"
},
{
"question": "who is the president of bihar in 2017",
"answers": "Satya Pal Malik",
"title": "Bihar;Badi Dargah, Bihar Sharif;Emblem of Bihar"
},
{
"question": "who was the burned guy in winter soldier",
"answers": "Frank Grillo as Brock Rumlow",
"title": "Winter Soldier;The Falcon and the Winter Soldier;Winter Soldier (film)"
},
{
"question": "when did stained glass windows start in churches",
"answers": "675 AD",
"title": "Stained glass windows by Harry Clarke;Smith Museum of Stained Glass Windows;List of stained glass windows in the Janskerk, Gouda"
},
{
"question": "how old is ian from shameless season 1",
"answers": "15",
"title": "Ian;Ian Noble;Ian Stanes"
},
{
"question": "what's the oldest city in new jersey",
"answers": "Jersey City",
"title": "Mayor of Woodbridge Township, New Jersey;Deans, New Jersey;1958 United States Senate election in New Jersey"
},
{
"question": "where does the chesterfield canal begin and end",
"answers": "Chesterfield, Derbyshire",
"title": "Chesterfield Canal;Chesterfield Canal Trust"
},
{
"question": "who played hotel manager in home alone 2",
"answers": "Tim Curry",
"title": "Home Alone 2: Lost in New York (video game);Home Alone;Home Alone 2: Lost in New York"
},
{
"question": "who does greg like in diary of a wimpy kid",
"answers": "Holly Elizabeth Hills",
"title": "Greg;Greg Minnaar;Greg Mark"
},
{
"question": "who played the maid in guess whos coming to dinner",
"answers": "Isabel Sanford",
"title": "Unknown;Group Portrait of an Unknown Family or Company;Cruise for the Unknown One"
},
{
"question": "how many employees does walmart have in the us",
"answers": "1.4 million",
"title": "Live: Walmart Soundcheck;Walmart de México y Centroamérica;Walmart Labs"
},
{
"question": "who came up with the gradual release of responsibility model",
"answers": "Pearson & Gallagher",
"title": "Unknown;Group Portrait of an Unknown Family or Company;Cruise for the Unknown One"
},
{
"question": "when was the last time alabama had a democrat as a senator",
"answers": "2018",
"title": "Alabama;1907 Alabama Crimson Tide football team;White Plains, Chambers County, Alabama"
},
{
"question": "what type of glacier forms a u shaped valley",
"answers": "mountain glaciation",
"title": "Schmidt Glacier (Antarctica);Drygalski Glacier (Antarctica);Bowers Glacier"
},
{
"question": "who wrote the song party in the usa",
"answers": "Lukasz Gottwald",
"title": "Denmark in the Eurovision Song Contest 2019;Malta in the Eurovision Song Contest 2003;Grammy Award for Song of the Year"
},
{
"question": "when did jaime lannister kill the mad king",
"answers": "A Game of Thrones",
"title": "Jaime Lannister"
},
{
"question": "when do we vote for governor in oklahoma",
"answers": "2022",
"title": "Voter Confidence and Increased Accessibility Act of 2003;Voter ID (India);California Voter Bill of Rights"
},
{
"question": "what versions of photoshop work on windows 10",
"answers": "CC 2018",
"title": "Photoshop contest;Photoshop (disambiguation);Photoshop Handsome"
},
{
"question": "when was the last time detroit lions went to the playoffs",
"answers": "2016",
"title": "List of Detroit Lions starting quarterbacks;2023 Detroit Lions season;1935 Detroit Lions season"
},
{
"question": "who is macbeth fighting in the beginning of the play",
"answers": "King Duncan",
"title": "Macbeth (1981 film);Macbeth (1979 film);Voodoo Macbeth"
},
{
"question": "what are the dads names in mama mia",
"answers": "Harry Bright",
"title": "Mama Mia Trattoria;CS Nuova Mama Mia Becicherecu Mic;Mama mia (In-Grid song)"
},
{
"question": "where does rome's drinking water come from",
"answers": "aqueducts",
"title": "Emor: Rome Upside Down;Rome Township, Michigan;Imperator: Rome"
},
{
"question": "who is the president of federal republic of nigeria",
"answers": "Muhammadu Buhari",
"title": "Taipei Trade Office in the Federal Republic of Nigeria;Federal Republic of Nigeria Official Gazette"
},
{
"question": "who was involved in the battle of york",
"answers": "Upper Canada",
"title": "Battle of York;Battle of York (867)"
},
{
"question": "what type of desert is the gobi desert",
"answers": "rain shadow desert",
"title": "Gobi Desert;The Gobi Desert (novel);Eastern Gobi desert steppe"
},
{
"question": "where does the story charlotte web take place",
"answers": "county fair",
"title": "Charlotte's Web;Live at Charlotte's Web;Charlotte's Web (song)"
},
{
"question": "when did castle on the hill come out",
"answers": "January 2017 (",
"title": "Castle on the Hill;Castle on the Hill (disambiguation)"
},
{
"question": "when did we find out samus was a girl",
"answers": "the end of the game",
"title": "Samus anonymus;Samus culture;Metroid: Samus Returns"
},
{
"question": "where is the navy base in san diego",
"answers": "32nd Street",
"title": "Nakhon Phanom Royal Thai Navy Base"
},
{
"question": "who is the chairman of the lok sabha",
"answers": "the Vice President of India",
"title": "Lok Sabha;14th Lok Sabha;Hoshangabad Lok Sabha constituency"
},
{
"question": "who does evan rachel wood play in practical magic",
"answers": "Kylie Owens",
"title": "Evan Rachel Wood;List of awards and nominations received by Evan Rachel Wood"
},
{
"question": "when was the last james bond film released",
"answers": "2015",
"title": "James Bond 007 (1984 video game);The James Bond Bedside Companion;Inspirations for James Bond"
},
{
"question": "what does the nz national party stand for",
"answers": "The New Zealand National Party",
"title": "National Party"
},
{
"question": "when was the last time tunisia qualified for the world cup",
"answers": "2018",
"title": "Tunisia at the 2008 Summer Olympics;Tunisia at the Africa Cup of Nations;Tunisia at the 2009 World Championships in Athletics"
},
{
"question": "when did texas a&m stop being a military school",
"answers": "the 1960s",
"title": "1977 Texas A&M Aggies football team;2018–19 Texas A&M Aggies men's basketball team;2015–16 Texas A&M Aggies men's basketball team"
},
{
"question": "when did german bombers drop bombs on london",
"answers": "1940 and 1941",
"title": "Ten German Bombers"
},
{
"question": "who played jennifer love hewitt's husband in ghost whisperer",
"answers": "Jim Clancy",
"title": "Jennifer Love Hewitt;Jennifer Love Hewitt (album);Jennifer Love Hewitt discography"
},
{
"question": "where did they film secret life of walter mitty",
"answers": "Time-Life Building",
"title": "They;They Were Her Property;They Knew What They Wanted (play)"
},
{
"question": "who did siobhan finneran play in coronation street",
"answers": "factory employee Josie Phillips",
"title": "Siobhan Finneran;Siobhan Finneran filmography"
},
{
"question": "who controlled blue cross when it was formed",
"answers": "1929",
"title": "Blue Cross;Blue Cross Blue Shield of Michigan Building;Blue Cross Blue Shield Tower"
},
{
"question": "who was the killer in the perfect getaway",
"answers": "Cydney",
"title": "A Perfect Getaway"
},
{
"question": "who has been awarded padma vibhushan in 2018",
"answers": "Ghulam Mustafa Khan",
"title": "Padma Vibhushan"
},
{
"question": "who played violet in saved by the bell",
"answers": "Tori Spelling",
"title": "Saved by the Bell;List of Saved by the Bell episodes;Saved by the Bell (song)"
},
{
"question": "who played the crack fox in the mighty boosh",
"answers": "Julian Barratt",
"title": "Player;NFCA National Player of the Year;Player to be named later"
},
{
"question": "where did the english first settle in australia",
"answers": "Botany Bay",
"title": "Brunei English;1929 English cricket season;English cricket team in South Africa in 1888–89"
},
{
"question": "what type of soil is found in deccan plateau",
"answers": "volcanic",
"title": "Last battle on British soil;Growth of the Soil;World Congress of Soil Science"
},
{
"question": "who started game 7 of the 1986 world series",
"answers": "Bruce Hurst",
"title": "Game"
},
{
"question": "where is the brown tree snake found in the us",
"answers": "Hawaii",
"title": "Brown tree snake"
},
{
"question": "which group of fungi do the mushrooms belong to",
"answers": "subkingdom Dikarya",
"title": "Primus & the Chocolate Factory with the Fungi Ensemble;Cyphelloid fungi;Blue stain fungi"
},
{
"question": "how many games did the lions win in 2016",
"answers": "–7",
"title": "1923 Columbia Lions football team;Cultural depictions of lions;1956 BC Lions season"
},
{
"question": "when did shane die in the walking dead",
"answers": "second season",
"title": "Shane;Shane Greene;Shane Hill (footballer)"
},
{
"question": "what type of organism is baker's yeast",
"answers": "single-cell microorganism",
"title": "Baker's yeast"
},
{
"question": "where does the arkansas river flow into the mississippi",
"answers": "Napoleon, Arkansas",
"title": "Arkansas River;South Arkansas River;Arkansas River Valley"
},
{
"question": "where does us highway 40 begin and end",
"answers": "Silver Summit, UT",
"title": "Highway"
},
{
"question": "who does tobey maguire play in the 5th wave",
"answers": "producers",
"title": "Tobey Maguire;Tobey Maguire filmography"
},
{
"question": "who does nathan fillion voice in rick and morty",
"answers": "Cornvelious Daniel",
"title": "Nathan Fillion"
},
{
"question": "who captain the indian field hockey team at 2016 rio olympics",
"answers": "P. R. Sreejesh",
"title": "Indian field hockey team in Malaya and Singapore"
},
{
"question": "who wrote the lyrics to echoes by pink floyd",
"answers": "Pink Floyd",
"title": "Pink Floyd;List of awards and nominations received by Pink Floyd;Echoes: The Best of Pink Floyd"
},
{
"question": "when was the last time the redskins made it to the playoffs",
"answers": "2015",
"title": "1963 Utah Redskins football team;1920 Miami Redskins football team;1975 Washington Redskins season"
},
{
"question": "where did the assyrians get wood for building",
"answers": "Trade",
"title": "German Assyrians;Assyrians in Jordan;Assyrians in Iran"
},
{
"question": "where did the spanish armada land in ireland",
"answers": "1588",
"title": "Spanish Armada;2nd Spanish Armada;List of ships of the Spanish Armada"
},
{
"question": "where did uruguay finish in 2014 world cup",
"answers": "12th",
"title": "Uruguay Billie Jean King Cup team;Uruguay national football team results (2020–present);Movimiento Scout del Uruguay"
},
{
"question": "what is the genus edition of trivial pursuit",
"answers": "The original version",
"title": "Trivial Pursuit;List of Trivial Pursuit editions;Trivial Pursuit (American game show)"
},
{
"question": "who sang the theme song for here come the brides",
"answers": "Perry Como",
"title": "Here Come the Brides;Here Come the Brides (album)"
},
{
"question": "who is the presiding officer in the georgia senate",
"answers": "President Pro Tempore",
"title": "2020 Georgia Senate election"
},
{
"question": "where is the pericardium attached to the heart",
"answers": "epicardium",
"title": "Pericardium;Pericardium (Chinese medicine)"
},
{
"question": "who has the power to make laws in canada",
"answers": "Royal Assent",
"title": "Canada;1938 in Canada;Letters to the inhabitants of Canada"
},
{
"question": "what does the name brand mcm stand for",
"answers": "Michael Cromer München",
"title": "MCM;MCM Pop;MCM – The Gospel: The Missing Gems of MCM Caveman (1994-2011)"
},
{
"question": "when do new episodes of wynonna earp come out",
"answers": "2018",
"title": "List of Tokyo Mew Mew New episodes"
},
{
"question": "who does ken jeong play in despicable me",
"answers": "Talk Show Host",
"title": "Ken Jeong;Ken Jeong filmography"
},
{
"question": "how many seasons are there of the crown on netflix",
"answers": "first season",
"title": "Crown;Crown Estate Paving Commission;Pearl in the Crown"
},
{
"question": "how many seasons of jack ryan are there on amazon prime",
"answers": "8",
"title": "Jack Ryan;Jack Ryan (franchise);Jack Ryan (TV series)"
},
{
"question": "who does ashton kutcher play in open season",
"answers": "Walden Schmidt",
"title": "Ashton Kutcher;List of awards and nominations received by Ashton Kutcher"
},
{
"question": "what did the killer do to susie in the lovely bones",
"answers": "rapes",
"title": "Killer Joe;Killer Elite (film);Killer Loop"
},
{
"question": "where did the term rock and roll originate",
"answers": "United States",
"title": "List of rock and roll artists;Ultimate Hits: Rock and Roll Never Forgets;King of Rock and Roll (disambiguation)"
},
{
"question": "who is ben in gossip girl season 4",
"answers": "David Call",
"title": "Ben;Ben Myron;Ben Willis"
},
{
"question": "who does don draper marry the second time",
"answers": "Betty Hofstadt",
"title": "Don Draper"
},
{
"question": "who negotiated to have the french help the colonists",
"answers": "United States",
"title": "Trevor French;1972–73 French Division 2;French ship Alexandre"
},
{
"question": "what kind of peppers are used for pepperoncini",
"answers": "Peperoncino",
"title": "Red Hot Chili Peppers videography;List of songs recorded by Red Hot Chili Peppers;Peppers Pride"
},
{
"question": "who did cher play in tea with mussolini",
"answers": "Cher",
"title": "Cher;Cher Special Gigs;Flavigny, Cher"
},
{
"question": "what kind of pistol does the army use",
"answers": "SIG Sauer P226 MK25",
"title": "Army;Second Army (Romania);Forty-First Army (Japan)"
},
{
"question": "when did celtic win 9 in a row",
"answers": "1966 to 1974",
"title": "Celtic Women International;History of Celtic F.C.;Celtic Dragons"
},
{
"question": "what is the most practiced religion in south korea",
"answers": "Protestantism",
"title": "South Korea Songs;Delivery culture in South Korea;Five-Year Plans of South Korea"
},
{
"question": "where did the original habitants of japan come from",
"answers": "Ainu",
"title": "Japan National Route 173;List of Historic Sites of Japan (Akita);Japan and the World Bank"
},
{
"question": "what kind of car is in national lampoon's vacation",
"answers": "a Wagon Queen Family Truckster",
"title": "National Lampoon's Vacation;National Lampoon's Vacation (film series)"
},
{
"question": "when did robb stark die in game of thrones",
"answers": "the Red Wedding",
"title": "Robb Stark"
},
{
"question": "how many languages are there in benue state",
"answers": "the Tiv language",
"title": "Benue State;List of governors of Benue State;2017 Benue State flooding"
},
{
"question": "who did the original crazy little thing called love",
"answers": "Freddie Mercury",
"title": "If You Ever Fall in Love Again;Origin of Love;We're Not Makin' Love Anymore"
},
{
"question": "who is the governor of jammu and kashmir present",
"answers": "Satya Pal Malik",
"title": "Jammu and Kashmir;COVID-19 pandemic in Jammu and Kashmir;List of lieutenant governors of Jammu and Kashmir"
},
{
"question": "who are the two senators from the state of florida",
"answers": "Bill Nelson (D)",
"title": "Florida;The Florida Mall;List of major springs in Florida"
},
{
"question": "name a city that has a huge st patrick's day parade",
"answers": "Atlanta, Georgia",
"title": "City;2015 Saint Paul City Council election;Atomic City (U2 song)"
},
{
"question": "where does the source of political power in missouri lie",
"answers": "Constitution of Missouri",
"title": "University of Missouri Police Department;Weatherby, Missouri;Wood Heights, Missouri"
},
{
"question": "who was the mom in malcolm in the middle",
"answers": "Jane Frances Kaczmarek",
"title": "Malcolm in the Middle;List of awards and nominations received by Malcolm in the Middle;List of Malcolm in the Middle episodes"
},
{
"question": "who sang the original i can only imagine",
"answers": "Bart Millard",
"title": "I Can Only Imagine;I Can Only Imagine (film);I Can Only Imagine (David Guetta song)"
},
{
"question": "when does dr lewis come back to er",
"answers": "Season 8",
"title": "Lewis"
},
{
"question": "who sides with captain america in civil war",
"answers": "Clint Barton",
"title": "Captain America (1990 film);Captain America (1979 film);Captain America and The Avengers"
},
{
"question": "who was the character quint in jaws based on",
"answers": "Frank Mundus",
"title": "Jaws;In the Jaws of Life;Balsac the Jaws of Death"
},
{
"question": "why did star trek change from pike to kirk",
"answers": "The Menagerie",
"title": "Star Trek;List of Star Trek games;Star Trek Pinball"
},
{
"question": "who is the beluga whale in finding dory",
"answers": "Ty Burrell",
"title": "Beluga whale;Benny the Beluga Whale;Beluga whale coronavirus SW1"
},
{
"question": "who supported the republican party that was formed in 1854",
"answers": "Northern Whigs",
"title": "Republican Party;Illinois Republican Party;Ukrainian Conservative Republican Party"
},
{
"question": "what country is the cayman islands part of",
"answers": "British Overseas Territory",
"title": "Cayman Islands;List of Cayman Islands first-class cricketers;Cayman Islands freediving records"
},
{
"question": "who plays cleveland jr on the cleveland show",
"answers": "Mike Henry",
"title": "Cleveland Jr. Barons;Cleveland Jr. Lumberjacks"
},
{
"question": "who plays the god of wisdom in gods of egypt",
"answers": "Chadwick Boseman",
"title": "Gods of Egypt (film)"
},
{
"question": "what episode of glee does quinn tell finn she's pregnant",
"answers": "the fourth episode",
"title": "Quinn;Bertha Quinn;Quinn Early"
},
{
"question": "where does the umbilical vein enter the circulation of the fetus",
"answers": "the portal vein",
"title": "Umbilical vein;Human umbilical vein endothelial cell"
},
{
"question": "what are the infinity stones in marvel comics",
"answers": "six immensely powerful fictional gems",
"title": "List of Marvel Comics publications (A);Origins of Marvel Comics;Lists of Marvel Comics characters"
},
{
"question": "how many seats in the orpheum theatre san francisco",
"answers": "2,203",
"title": "Orpheum Theatre (Memphis);Orpheum Theatre (New Bedford, Massachusetts);Orpheum Theatre (Boston)"
},
{
"question": "what are the 7 parables in matthew 13",
"answers": "Parable of the Sower",
"title": "Matthew 13;Matthew 13:3;Matthew 1"
},
{
"question": "who has won the most vmas in one night",
"answers": "Peter Gabriel",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "who is the last king of gupta dynasty",
"answers": "Skandagupta",
"title": "Later Gupta dynasty;Origin of the Gupta dynasty"
},
{
"question": "where was the movie dark tower filmed at",
"answers": "South Africa",
"title": "The Dark Tower (comics);The Dark Tower (radio play);Dark Tower (1987 film)"
},
{
"question": "what ocean zone does the frilled shark live in",
"answers": "upper continental slope",
"title": "Frilled shark;Southern African frilled shark"
},
{
"question": "what are the two types of law in australia",
"answers": "state",
"title": "Law;The Law in Her Hands;Zero-Force Evolutionary Law"
},
{
"question": "who holds the world record for men's 400m hurdles",
"answers": "Kevin Young",
"title": "List of CPBL holds champions;What the Future Holds;No Holds Barred: The Match/The Movie"
},
{
"question": "when does deeks first appear in ncis la",
"answers": "April 27, 2010",
"title": "Deeks;Florence Deeks;Deeks v Wells"
},
{
"question": "who took control of sable island in 2011",
"answers": "the federal government",
"title": "Sable Island;Sable Island horse;Sable Island (film)"
},
{
"question": "where did the mayflower land in the new world",
"answers": "Cape Cod",
"title": "Mayflower;Mayflower Airlines;Mayflower School (Juneau, Alaska)"
},
{
"question": "when did tampa bay go to the superbowl",
"answers": "January 26, 2003",
"title": "1998 Tampa Bay Buccaneers season;Climate of the Tampa Bay area;Upper Tampa Bay Trail"
},
{
"question": "when do jim and pam start dating in the office",
"answers": "in the fourth season",
"title": "Jim;Jim Bretz;Jim Parrack"
},
{
"question": "who plays boyd's dad in last man standing",
"answers": "Nick Jonas",
"title": "Last Man Standing;List of Last Man Standing episodes;Making the Cut: Last Man Standing"
},
{
"question": "who does the theme song for mr pickles",
"answers": "Mark Rivers",
"title": "Pickles"
},
{
"question": "what year was the first temple of jerusalem destroyed",
"answers": "587 BCE",
"title": "St. Maria in Jerusalem;Pat, Jerusalem;Jerusalem (2013 film)"
},
{
"question": "when was woodstock festival held in the catskills of new york",
"answers": "August 18",
"title": "At the Woodstock Festival;List of performances and events at Woodstock Festival"
},
{
"question": "who is the leader of the decepticons in transformers 4",
"answers": "Galvatron",
"title": "Decepticons (gang);Transformers Decepticons;Transformers Revenge of the Fallen: Decepticons"
},
{
"question": "who played galen in planet of the apes",
"answers": "(Wright King",
"title": "Planet of the Apes;Crisis on the Planet of the Apes VR;Planet of the Apes (novel)"
},
{
"question": "who is the supreme court made up of",
"answers": "Sonia Sotomayor",
"title": "Supreme court;List of United States Supreme Court cases, volume 219;List of United States Supreme Court cases, volume 118"
},
{
"question": "who was the scientist that expanded the use of relative bone lengths to a more reliable method",
"answers": "Mildred Trotter",
"title": "First Church of Christ, Scientist (St. Louis, Missouri);Nurse scientist;Fourth Church of Christ, Scientist"
},
{
"question": "how many languages are there in the philipines",
"answers": "120 to 187",
"title": "Equestrian Association of the Philippines;Violence against women in the Philippines;University of the Philippines School of Labor and Industrial Relations"
},
{
"question": "when did soccer come to the united states",
"answers": "1862",
"title": "OFC Beach Soccer Nations Cup;2011 FIFA Beach Soccer World Cup disciplinary record;2022 American Athletic Conference men's soccer tournament"
},
{
"question": "where was wizards of waverly place tv show filmed",
"answers": "Puerto Rico",
"title": "Wizards of Waverly Place;Wizards of Waverly Place (season 1);List of Wizards of Waverly Place episodes"
},
{
"question": "who won the first major battle of the civil war",
"answers": "First Battle of Bull Run",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "what is the source of the yangtze river",
"answers": "Qinghai",
"title": "Xiling Yangtze River Bridge;Wufengshan Yangtze River Bridge;Lidu Yangtze River Bridge"
},
{
"question": "where was the movie the ice storm filmed",
"answers": "1997",
"title": "The Ice Storm;The Ice Storm (soundtrack);The Ice Storm (film)"
},
{
"question": "when did the space race start and finish",
"answers": "July 20, 1969",
"title": "Space Race;Space Race (Archer);Space Race (Mi-Sex song)"
},
{
"question": "when did gone with the wind won 10 academy awards",
"answers": "At the 12th Academy Awards",
"title": "Gone with the Wind;Gone with the Wind in the Vatican;The Making of a Legend: Gone with the Wind"
},
{
"question": "how long has the show blue bloods been on tv",
"answers": "September 24, 2010",
"title": "The Blue Bloods;Blue Bloods (season 7);Blue Bloods (season 12)"
},
{
"question": "who made a pact with spain in 1761",
"answers": "Louis XV",
"title": "Spain Park High School;List of heads of state of Spain;Spokesperson of the Government of Spain"
},
{
"question": "who sings gary indiana in the music man",
"answers": "Winthrop",
"title": "Gary Indiana"
},
{
"question": "who writes the songs for five finger death punch",
"answers": "Five Finger Death Punch",
"title": "Five Finger Death Punch;Five Finger Death Punch discography"
},
{
"question": "where is the villi located in the small intestine",
"answers": "the lumen",
"title": "Christian Villi;Le Villi;Turbonilla villi"
},
{
"question": "who is responsible for issuing accounting standard in india",
"answers": "Accounting Standards Board",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "who bought the plaza hotel in new york",
"answers": "Katara Hospitality",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "when did grover first appear on sesame street",
"answers": "the first season",
"title": "GROVER;Inauguration of Grover Cleveland;Geoff Grover"
},
{
"question": "where did the anglo saxons originally come from",
"answers": "Germanic tribes",
"title": "King Alfred and the Anglo Saxons"
},
{
"question": "who was the original singer of wild horses",
"answers": "Rolling Stones",
"title": "Wild Horses (American country band);Black Cowboy, Wild Horses;Wild Horses (play)"
},
{
"question": "where is the great commandment found in the bible",
"answers": "New Testament",
"title": "Great Commandment;The Great Commandment (song);The Great Commandment"
},
{
"question": "what three types of elections exist in the united states",
"answers": "state",
"title": "1960 Illinois elections;1964 Malaysian state elections;Elections and parties in Norfolk Island"
},
{
"question": "what is the official sidearm of the us army",
"answers": "The Beretta M9",
"title": "1st Caucasus Army Corps;Epirus Army Section;Caucasus Army Group (Ottoman Empire)"
},
{
"question": "whats the legal age to smoke in usa",
"answers": "18",
"title": "2014 Conference USA men's basketball tournament;Miss Ohio USA;Membership levels of the Girl Scouts of the USA"
},
{
"question": "who negotiated the release of the hostages from iran",
"answers": "Abdulkarim Ghuraib",
"title": "Hostages (American TV series);List of political hostages held by FARC;Foreign hostages in Iraq"
},
{
"question": "when was the canadian shield formed what era",
"answers": "Proterozoic Eon",
"title": "Eastern Canadian Shield taiga;Midwestern Canadian Shield forests;Northern Canadian Shield taiga"
},
{
"question": "who does dave franco play in the disaster artist",
"answers": "Dave Franco",
"title": "Dave Franco"
},
{
"question": "who sang in the court of the crimson king",
"answers": "King Crimson",
"title": "Sang;Jeu du Saint Sang;The Sirens Sang of Murder"
},
{
"question": "where does google maps get its satellite images from",
"answers": "aircraft",
"title": "Google Maps;Google Maps Navigation;Google Maps pin"
},
{
"question": "when did the slave trade end in britain",
"answers": "1833",
"title": "Nantes slave trade;Slave Trade Act 1788;Atlantic slave trade"
},
{
"question": "how long did gunsmoke stay on the air",
"answers": "for 20 seasons",
"title": "Gunsmoke;Gunsmoke Mesa;Gunsmoke (season 7)"
},
{
"question": "when was the poem beowulf first written down",
"answers": "between 975 and 1025",
"title": "Poem (song);Poem Field;End Poem"
},
{
"question": "what song was number one on april 6 1983",
"answers": "\"Billie Jean\"",
"title": "Denmark in the Eurovision Song Contest 2019;Malta in the Eurovision Song Contest 2003;Grammy Award for Song of the Year"
},
{
"question": "who plays julie williams on days of our lives",
"answers": "Susan Seaforth Hayes",
"title": "Julie Williams (scientist)"
},
{
"question": "where did they film season 4 of homeland",
"answers": "Cape Town, South Africa",
"title": "They;They Were Her Property;They Knew What They Wanted (play)"
},
{
"question": "when was the first episode of pretty little liars filmed",
"answers": "Vancouver",
"title": "Pretty Little Liars;Pretty Little Liars (disambiguation);Pretty Little Liars (season 2)"
},
{
"question": "where was the last spike driven in canada",
"answers": "November 7, 1885",
"title": "Last spike;Last Spike (Grand Trunk Pacific Railway);Towards the Last Spike"
},
{
"question": "who was the original singer of ruby tuesday",
"answers": "the Rolling Stones",
"title": "Ruby Tuesday;Ruby Tuesday (song)"
},
{
"question": "when did the us take texas from mexico",
"answers": "1836",
"title": "Us"
},
{
"question": "who has won the most 6th man awards",
"answers": "Jamal Crawford",
"title": "Entity;Entity Registry;New chemical entity"
},
{
"question": "who did the bucs beat in the superbowl",
"answers": "Oakland Raiders",
"title": "Bucs;Anchorage Bucs;BUCS Basketball League"
},
{
"question": "how many times has new zealand won the rugby world cup",
"answers": "New Zealand",
"title": "New Zealand;1917 New Zealand rugby league season;Indian cricket team in New Zealand in 1989–90"
},
{
"question": "who proposes a new law in the bahamas for the government",
"answers": "any parliamentarian",
"title": "Government College, Chittur;First government of Ximo Puig;Provisional Government of the Republic of Poland"
},
{
"question": "where are the seven gifts of the holy spirit found in the bible",
"answers": "counsel",
"title": "Seven gifts of the Holy Spirit"
},
{
"question": "how many ships did the union have in the civil war",
"answers": "671",
"title": "Union;The Union of Crowns;Hotel and Restaurant Workers' Union (South Africa)"
},
{
"question": "how many national parks are there in alberta",
"answers": "Banff",
"title": "Alberta;Bluesky, Alberta;Hillside Estates, Alberta"
},
{
"question": "is mauna loa the tallest mountain in the world",
"answers": "Mauna Kea",
"title": "Mauna Loa;Mauna Loa Observatory;Mauna Loa (disambiguation)"
},
{
"question": "who reveals penelope's ruse to the suitors",
"answers": "Melantho",
"title": "Penelope;Penelope Schott;Penelope Fillon"
},
{
"question": "where did the name rouse hill come from",
"answers": "New South Wales, Australia",
"title": "Christ Church, Rouse Hill;Rouse Hill House;Royal Oak Inn, Rouse Hill"
},
{
"question": "which type of writing did the phoenician alphabet develop from",
"answers": "Egyptian hieroglyphs",
"title": "Phoenician alphabet"
},
{
"question": "who founded missions on the west coast of america",
"answers": "Spanish",
"title": "List of websites founded before 1995;List of companies founded by Harvard University alumni;List of universities in Europe founded after 1945"
},
{
"question": "when did the us split into north and south",
"answers": "the Civil War",
"title": "Us"
},
{
"question": "what did nbcuniversal become the owner of in 2004",
"answers": "Vivendi Universal Entertainment",
"title": "Acquisition of NBC Universal by Comcast"
},
{
"question": "where is mesh placed in inguinal hernia repair",
"answers": "abdominal wall",
"title": "Mesh;List of MeSH codes (C11);List of MeSH codes (I03)"
},
{
"question": "who sold part of mexico to the usa",
"answers": "Antonio López de Santa Anna",
"title": "Mexico;Orders, decorations, and medals of Mexico;Acomita Lake, New Mexico"
},
{
"question": "who is jackie's mom on that 70s show",
"answers": "Pam Burkhart",
"title": "Jackie;Jackie Shane;Jackie Smith-Wood"
},
{
"question": "what is the role of the active site in enzyme catalysed reactions",
"answers": "chemical reaction",
"title": "Active site"
},
{
"question": "who makes the ammo for the us military",
"answers": "Lake City Army Ammunition Plant",
"title": "Ammo Baba Stadium;Poetic Ammo;Ammo Nangal"
},
{
"question": "where did the polar bear dip originate in canada",
"answers": "1920",
"title": "Polar BEAR;List of Polar Bear Café episodes;Royal and Ancient Polar Bear Society"
},
{
"question": "what is the temperature of dry ice in kelvin",
"answers": "194.65 K",
"title": "Dry ice;Dry ice bomb;Dry ice color show"
},
{
"question": "who was responsible for the oil spill in the gulf of mexico",
"answers": "Deepwater Horizon",
"title": "Oil spill;Sliedrecht oil spill;Prestige oil spill"
},
{
"question": "what type of government system does iran have",
"answers": "theocracy",
"title": "Virtual currency law in Iran;Marashi, Iran;Science and technology in Iran"
},
{
"question": "who sings the song at the end of fellowship of the ring",
"answers": "Emilíana Torrini",
"title": "The Fellowship of the Ring (disambiguation);The Lord of the Rings: The Fellowship of the Ring;The Return of the Fellowship of the Ring to the Two Towers"
},
{
"question": "what is the cleft between the labia minora",
"answers": "the pudendal cleft",
"title": "Cleft;North Thames Regional Cleft Lip and Palate Service;Cleft Island (Antarctica)"
},
{
"question": "where does the riverwalk start in san antonio",
"answers": "Downtown",
"title": "Riverwalk;Bradenton Riverwalk;Historic Arkansas Riverwalk"
},
{
"question": "what bar is the song i love this bar about",
"answers": "Scotty Emerick",
"title": "I Love This Bar;Toby Keith's I Love This Bar & Grill"
},
{
"question": "how many miles of coastline does australia have",
"answers": "37,118",
"title": "Australia;1820 in Australia;Hopetoun, Western Australia"
},
{
"question": "what percentage of babies are circumcised in the us",
"answers": "58%",
"title": "Dino Babies;Grave Babies;Muppet Babies (2018 TV series)"
},
{
"question": "who sings earth angel in back to the future",
"answers": "Harry Waters Jr.",
"title": "Earth Angel (disambiguation)"
},
{
"question": "when was the last time the coast guard was part of the navy",
"answers": "World War II",
"title": "Coast guard;Icelandic Coast Guard;Japan Coast Guard Museum"
},
{
"question": "what goods were sent to africa during the triangle trade",
"answers": "copper",
"title": "Goods;List of baked goods;Danish Sale of Goods Act"
},
{
"question": "which type of theory is the neuman systems model",
"answers": "nursing theory",
"title": "Neuman systems model"
},
{
"question": "when was slavery abolished in the british colonies",
"answers": "1833",
"title": "Repeal of exceptions to slavery and involuntary servitude;History of slavery in New Jersey;Poems on Slavery"
},
{
"question": "what was woodrow wilson's major accomplishments?",
"answers": "United States Secretary of Agriculture",
"title": "List of memorials to Woodrow Wilson;Woodrow Wilson High School (Beckley, West Virginia);Woodrow Wilson High School (Dallas)"
},
{
"question": "what cases does the supreme court have original jurisdiction over?",
"answers": "The Supreme Court",
"title": "Supreme court;List of United States Supreme Court cases, volume 219;List of United States Supreme Court cases, volume 118"
},
{
"question": "who voiced darth vader in revenge of the sith?",
"answers": "Hayden Christensen",
"title": "Darth Vader;Darth Vader grotesque;Young Darth Vader"
},
{
"question": "what has anna kendrick been in?",
"answers": "Rapturepalooza",
"title": "Anna Kendrick"
},
{
"question": "what system of government is used in south korea?",
"answers": "Constitutional republic",
"title": "South Korea Songs;Delivery culture in South Korea;Five-Year Plans of South Korea"
},
{
"question": "what has mario lopez been in?",
"answers": "Holiday in Handcuffs",
"title": "Mario Lopez;Mario Lopez (jurist)"
},
{
"question": "what are all the songs nicki minaj is in?",
"answers": "Roman Reloaded",
"title": "Nicki Minaj;Nicki Minaj videography;Check It Out (will.i.am and Nicki Minaj song)"
},
{
"question": "what music did beethoven composed?",
"answers": "Opera",
"title": "Dancing Beethoven;Beethoven Was One-Sixteenth Black;Beethoven Frieze"
},
{
"question": "what religions are practiced in afghanistan?",
"answers": "Shia Islam",
"title": "Traditional Sabahan religions;Japanese new religions;Religions of the ancient Near East"
},
{
"question": "where did gareth southgate play?",
"answers": "England",
"title": "Gareth Southgate"
},
{
"question": "who raised queen victoria?",
"answers": "Prince Edward, Duke of Kent and Strathearn",
"title": "Queen Victoria;Queen Victoria Street, Fremantle;Cultural depictions of Queen Victoria"
},
{
"question": "what were marco polo's goals?",
"answers": "Explorer",
"title": "Marco Polo Cycling–Donckers Koffie;Marco Polo (2007 film);Fronte Marco Polo"
},
{
"question": "what countries are located in the netherlands?",
"answers": "Kingdom of the Netherlands",
"title": "Corporate tax in the Netherlands;Bakel, Netherlands;Netherlands at the 1948 Summer Olympics"
},
{
"question": "where was the battle of shiloh?",
"answers": "Hardin County",
"title": "Battle of Shiloh;The Battle of Shiloh (video game)"
},
{
"question": "when was ancient egypt created?",
"answers": "eg",
"title": "Ancient Egypt;Chariotry in ancient Egypt;Ancient Egypt in the Western imagination"
},
{
"question": "what was robert hooke's contributions to science?",
"answers": "Diaphragm",
"title": "Robert Hooke;List of new memorials to Robert Hooke 2005–2009"
},
{
"question": "where is compaq laptops made?",
"answers": "Houston",
"title": "1998 Compaq Grand Slam Cup;Compaq Presario R3000;Compaq ProLinea"
},
{
"question": "what years have the ravens won the super bowl?",
"answers": "Super Bowl XXXV",
"title": "Ravens;Munich Ravens;Baltimore Ravens Ring of Honor"
},
{
"question": "what college did florence griffith joyner attend?",
"answers": "David Starr Jordan High School",
"title": "Florence Griffith Joyner"
},
{
"question": "what utc time zone is arizona?",
"answers": "Mountain Time Zone",
"title": "Arizona;Mountainaire, Arizona;Arizona Library Association"
},
{
"question": "who does david carr play for?",
"answers": "San Francisco 49ers",
"title": "David Carr;David Carr (athlete);David Carr (wrestler)"
},
{
"question": "where kurdish people come from?",
"answers": "Asia",
"title": "Human rights of Kurdish people in Turkey"
},
{
"question": "what does united church of christ believe?",
"answers": "Christianity",
"title": "United Church of Christ;Hedrick's Grove Reformed United Church of Christ;Blooming Grove United Church of Christ"
},
{
"question": "what city is mt st helens in?",
"answers": "Skamania County",
"title": "St Helens"
},
{
"question": "what kind of political system does iran have?",
"answers": "President",
"title": "Virtual currency law in Iran;Marashi, Iran;Science and technology in Iran"
},
{
"question": "where is washington dc located what state?",
"answers": "Maryland",
"title": "Salamander Washington DC Hotel;Fireboats of Washington DC;Harvard Club of Washington DC"
},
{
"question": "where is roger federer from sui?",
"answers": "Basel",
"title": "Roger Federer;2018 Roger Federer tennis season;2012 Roger Federer tennis season"
},
{
"question": "what does chad michael murray play in?",
"answers": "Renee",
"title": "Chad Michael Murray"
},
{
"question": "what time does independence center open on sundays?",
"answers": "Independence",
"title": "Independence Center;One Independence Center;Independence Center (St. Louis)"
},
{
"question": "where does delaware river start?",
"answers": "West Branch Delaware River",
"title": "Delaware River;Town Brook (West Branch Delaware River tributary);Delaware River Greenway Partnership"
},
{
"question": "what disease does robin roberts have?",
"answers": "Breast cancer",
"title": "Robin Roberts;Rockin' Robin Roberts;Robin Roberts Stadium"
},
{
"question": "what countries do the united nations help?",
"answers": "Afghanistan",
"title": "United Nations Security Council Resolution 1305;List of United Nations Security Council Resolutions 1501 to 1600;United Nations Security Council Resolution 1658"
},
{
"question": "what language group does germany belong to?",
"answers": "Bavarian Language",
"title": "Soest, Germany;Order of Merit of the Federal Republic of Germany;Mathematics in Nazi Germany"
},
{
"question": "when is the rainy season in bangkok thailand?",
"answers": "September",
"title": "Bangkok;Fortifications of Bangkok;Bangkok Fashion City"
},
{
"question": "what are some famous people from el salvador?",
"answers": "William Torres Alegria",
"title": "List of organisms named after famous people (born 1950–present);List of organisms named after famous people (born 1800–1899);List of organisms named after famous people (born before 1800)"
},
{
"question": "who originally voiced meg on family guy?",
"answers": "Mila Kunis",
"title": "Meg;Meg Pearce;Elsk meg i morgen"
},
{
"question": "what did coretta scott king died from?",
"answers": "Respiratory failure",
"title": "Coretta Scott King;Coretta Scott King Young Women's Leadership Academy;Coretta Scott King Center for Cultural and Intellectual Freedom"
},
{
"question": "what was george washington's legacy?",
"answers": "Founding father",
"title": "George Washington Pilipō;George Washington Carver Bridge;George Washington Classic"
},
{
"question": "what percent of people are overweight in the uk?",
"answers": "uk",
"title": "People;List of people executed in the United States in 2002;Glass People"
},
{
"question": "what stones albums did mick taylor play on?",
"answers": "A Stone's Throw",
"title": "Mick Taylor;Mick Taylor (album)"
},
{
"question": "who is in paul ryan's family?",
"answers": "Elizabeth Ryan",
"title": "Paul Ryan;Paul Ryan (As the World Turns);Paul Ryan (musician and agent)"
},
{
"question": "who does portugal trade with?",
"answers": "Angola",
"title": "List of rivers of Portugal;Homelessness in Portugal;Santarém, Portugal"
},
{
"question": "what was the cause of death for laci peterson?",
"answers": "Murder",
"title": "Murder of Laci Peterson;The Perfect Husband: The Laci Peterson Story"
},
{
"question": "what team does mike fisher play for?",
"answers": "Nashville Predators",
"title": "Mike Fisher (American football);Mike Fisher (soccer);Mike Fisher (Only Fools and Horses)"
}
] |