File size: 154,356 Bytes
d2a0598 |
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 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 |
:- dynamic term_expansion/2.
:- multifile term_expansion/2.
great_grandfather(X, Y) :-
great_grandparent(X, Y),
male(Y).
great_grandchild(X, Y) :-
great_grandparent(Y, X).
great_grandparent(X, Y) :-
grandparent(X, Z),
parent(Z, Y).
:- dynamic library_directory/1.
:- multifile library_directory/1.
great_grandmother(X, Y) :-
great_grandparent(X, Y),
female(Y).
:- dynamic goal_expansion/4.
:- multifile goal_expansion/4.
:- dynamic hobby/2.
hobby("Aida Wang", "meditation").
hobby("Alec Sinclair", "meteorology").
hobby("Alfredo Wang", "biology").
hobby("Alison Smock", "meteorology").
hobby("Alvaro Smock", "dolls").
hobby("Alycia Coe", "photography").
hobby("Barabara Beltran", "shogi").
hobby("Brian Beltran", "dominoes").
hobby("Carrol Woodson", "tether car").
hobby("Christina Coe", "architecture").
hobby("Christoper Coe", "geocaching").
hobby("Cortney Parmer", "trainspotting").
hobby("Cythia Smock", "bus spotting").
hobby("Daisy Beltran", "research").
hobby("Dino Beltran", "geography").
hobby("Dominique Smock", "microbiology").
hobby("Dwight Hackworth", "canoeing").
hobby("Earle Coe", "learning").
hobby("Eli Smock", "dairy farming").
hobby("Gayla Woodson", "fossil hunting").
hobby("Gene Smock", "sociology").
hobby("Isiah Lutz", "finance").
hobby("Jamison Baptiste", "meditation").
hobby("Kristen Toombs", "wikipedia editing").
hobby("Lannie Smock", "radio-controlled car racing").
hobby("Leeann Sinclair", "social studies").
hobby("Leisa Lutz", "judo").
hobby("Lesley Lutz", "flying disc").
hobby("Lissa Coe", "cricket").
hobby("Lonny Parmer", "weightlifting").
hobby("Maria Baptiste", "meditation").
hobby("Michelle Hackworth", "ballroom dancing").
hobby("Noelia Lutz", "microscopy").
hobby("Orlando Beltran", "reading").
hobby("Reggie Coe", "laser tag").
hobby("Ricardo Hackworth", "hiking/backpacking").
hobby("Ryan Wang", "audiophile").
hobby("Shannon Beltran", "tennis polo").
hobby("Shelli Beltran", "photography").
hobby("Stacia Toombs", "backgammon").
hobby("Tanner Beltran", "microscopy").
hobby("Tosha Beltran", "herping").
hobby("Tyson Woodson", "philately").
hobby("Ulysses Parmer", "birdwatching").
hobby("Vicki Hackworth", "shogi").
hobby("Vincent Lutz", "magnet fishing").
hobby("Virgil Hackworth", "table tennis").
hobby("Von Sinclair", "scuba diving").
hobby("Wilbert Toombs", "biology").
hobby("Williams Smock", "sea glass collecting").
hobby("Wm Parmer", "research").
hobby("Angela Culver", "gongoozling").
hobby("Anibal Stansberry", "benchmarking").
hobby("Barbara Philpott", "sea glass collecting").
hobby("Bev Gilmore", "bowling").
hobby("Brigette Gilmore", "audiophile").
hobby("Celia Macmillan", "tea bag collecting").
hobby("Conrad Stansberry", "model aircraft").
hobby("Cordelia Wiggs", "herping").
hobby("David Wiggs", "figure skating").
hobby("Debra Stansberry", "fossil hunting").
hobby("Desiree Stansberry", "airsoft").
hobby("Diane Culver", "whale watching").
hobby("Dionne Stansberry", "pinball").
hobby("Eliza Wiggs", "research").
hobby("Emanuel Stansberry", "flying model planes").
hobby("Frankie Hagerty", "ant farming").
hobby("Gail Culver", "volleyball").
hobby("Garry Gilmore", "gongoozling").
hobby("Gillian Wiggs", "vehicle restoration").
hobby("Glenda Culver", "car riding").
hobby("Hayden Stansberry", "mycology").
hobby("Howard Wiggs", "table football").
hobby("Hyun Hagerty", "photography").
hobby("Iva Stansberry", "metal detecting").
hobby("Jordan Culver", "archery").
hobby("Jules Culver", "reading").
hobby("Justine Hagerty", "shortwave listening").
hobby("Kelvin Culver", "snowmobiling").
hobby("Kori Wiggs", "research").
hobby("Laverna Stansberry", "religious studies").
hobby("Lester Stansberry", "cooking").
hobby("Lincoln Velasco", "kart racing").
hobby("Lionel Culver", "darts").
hobby("Loren Culver", "herping").
hobby("Markus Hagerty", "backgammon").
hobby("Maurine Velasco", "herping").
hobby("Mickey Philpott", "ant farming").
hobby("Millard Stansberry", "ephemera collecting").
hobby("Nikki Stansberry", "bus spotting").
hobby("Oren Stansberry", "research").
hobby("Quintin Hagerty", "croquet").
hobby("Renate Stansberry", "leaves").
hobby("Sona Stansberry", "antiquities").
hobby("Tad Macmillan", "field hockey").
hobby("Tamara Macmillan", "leaves").
hobby("Terence Culver", "auto audiophilia").
hobby("Tonya Culver", "magic").
hobby("Victor Stansberry", "people-watching").
hobby("Wilmer Hagerty", "social studies").
hobby("Yolanda Philpott", "mineral collecting").
hobby("Adelaida Ricketts", "fusilately").
hobby("Benny Abrams", "surfing").
hobby("Bobby Ricketts", "magic").
hobby("Bridget Solorio", "story writing").
hobby("Brooks Ricketts", "curling").
hobby("Cicely Abrams", "museum visiting").
hobby("Cordelia Zepeda", "benchmarking").
hobby("Cory Ricketts", "meteorology").
hobby("Dee Ricketts", "entrepreneurship").
hobby("Deidra Ricketts", "deltiology").
hobby("Dennis Ricketts", "badminton").
hobby("Edmund Abrams", "flag football").
hobby("Erin Ricketts", "shooting").
hobby("Flora Ricketts", "rock tumbling").
hobby("Hoa Leija", "beekeeping").
hobby("Jennifer Ricketts", "ephemera collecting").
hobby("Kory Ricketts", "medical science").
hobby("Kristie Abrams", "microscopy").
hobby("Kristopher Ricketts", "leaves").
hobby("Lauren Brumbaugh", "philately").
hobby("Lora Ricketts", "research").
hobby("Lyman Leija", "horseshoes").
hobby("Madelyn Ricketts", "insect collecting").
hobby("Maranda Ricketts", "fencing").
hobby("Marlene Isaacs", "insect collecting").
hobby("Melina Deming", "book collecting").
hobby("Micheal Leija", "business").
hobby("Milton Brumbaugh", "fishkeeping").
hobby("Mona Leija", "dolls").
hobby("Nick Solorio", "fitness").
hobby("Orval Ricketts", "paintball").
hobby("Paula Ricketts", "vintage clothing").
hobby("Randi Leija", "shuffleboard").
hobby("Raymond Leija", "sports memorabilia").
hobby("Reed Abrams", "kart racing").
hobby("Reggie Brumbaugh", "trapshooting").
hobby("Renea Ricketts", "table tennis").
hobby("Rhonda Ricketts", "rock climbing").
hobby("Rocky Ricketts", "gymnastics").
hobby("Rolanda Isaacs", "auto audiophilia").
hobby("Rosalee Brumbaugh", "myrmecology").
hobby("Samuel Ricketts", "flower collecting and pressing").
hobby("Shane Leija", "baton twirling").
hobby("Spencer Ricketts", "metal detecting").
hobby("Terrell Isaacs", "radio-controlled model playing").
hobby("Tiffanie Leija", "fossicking").
hobby("Tommy Zepeda", "shopping").
hobby("Toney Ricketts", "satellite watching").
hobby("Ulysses Deming", "carrier pigeons").
hobby("Winnifred Ricketts", "publishing").
hobby("Adella Schwarz", "learning").
hobby("Alberto Schwarz", "fishing").
hobby("Antony Kinder", "mini golf").
hobby("Aura Schwarz", "beekeeping").
hobby("Bernice Kinder", "sailing").
hobby("Carmelita Schwarz", "cycling").
hobby("Carter Bolen", "hobby horsing").
hobby("Clark Kinder", "dog walking").
hobby("Dawne Grover", "life science").
hobby("Delbert Menchaca", "leaves").
hobby("Dillon Schwarz", "volleyball").
hobby("Dylan Schwarz", "railway studies").
hobby("Elbert Canada", "butterfly watching").
hobby("Elyse Canada", "magnet fishing").
hobby("Emilie Schwarz", "insect collecting").
hobby("Eugene Schwarz", "films").
hobby("Eugenio Schwarz", "race walking").
hobby("Federico Schwarz", "dairy farming").
hobby("Francis Grover", "wikipedia editing").
hobby("Gustavo Grover", "kart racing").
hobby("Hank Schwarz", "people-watching").
hobby("Herbert Bolen", "whale watching").
hobby("Hope Schwarz", "shooting sports").
hobby("Irish Schwarz", "debate").
hobby("Jeanette Byrd", "table tennis").
hobby("Jeremiah Schwarz", "archaeology").
hobby("Joanna Schwarz", "lotology").
hobby("Judith Schwarz", "stone collecting").
hobby("Kent Schwarz", "birdwatching").
hobby("Kimberely Menchaca", "rock balancing").
hobby("Lorina Kinder", "karting").
hobby("Magdalena Schwarz", "disc golf").
hobby("Nada Schwarz", "shortwave listening").
hobby("Odette Schwarz", "audiophile").
hobby("Omar Schwarz", "bus spotting").
hobby("Pamula Schwarz", "shortwave listening").
hobby("Paula Bass", "fishkeeping").
hobby("Phylis Bolen", "tea bag collecting").
hobby("Randi Bass", "phillumeny").
hobby("Randi Schwarz", "stamp collecting").
hobby("Randolph Schwarz", "volleyball").
hobby("Riley Grover", "learning").
hobby("Rodolfo Byrd", "shooting").
hobby("Ross Bolen", "audiophile").
hobby("Shawnta Schwarz", "knife collecting").
hobby("Sona Kinder", "learning").
hobby("Sueann Bolen", "letterboxing").
hobby("Tania Schwarz", "beekeeping").
hobby("Tomas Bass", "bridge").
hobby("Zelda Schwarz", "perfume").
hobby("Adella Gaytan", "films").
hobby("Alejandrina Luu", "lacrosse").
hobby("Betsy Kimbrough", "metal detecting").
hobby("Bev Branson", "speedcubing").
hobby("Bobbie Luu", "scutelliphily").
hobby("Bradford Gaytan", "psychology").
hobby("Casey Kimbrough", "chess").
hobby("Chuck Luu", "radio-controlled model playing").
hobby("Cristal Luu", "birdwatching").
hobby("Dennis Kimbrough", "antiquities").
hobby("Derrick Luu", "vehicle restoration").
hobby("Ellen Nesbit", "judo").
hobby("Emanuel Luu", "sea glass collecting").
hobby("Georgine Zelaya", "neuroscience").
hobby("Glenda Carrell", "whale watching").
hobby("Hal Branson", "antiquities").
hobby("Hugo Kimbrough", "croquet").
hobby("Jake Nesbit", "martial arts").
hobby("Jeremy Kimbrough", "microscopy").
hobby("Jeremy Zelaya", "flower collecting and pressing").
hobby("Johnathon Zelaya", "publishing").
hobby("Jona Carrell", "beekeeping").
hobby("Joslyn Gerdes", "table tennis").
hobby("Joslyn Nesbit", "cornhole").
hobby("Jules Kimbrough", "horseshoes").
hobby("Larry Coons", "flying disc").
hobby("Laurette Kimbrough", "ant farming").
hobby("Leeann Nesbit", "architecture").
hobby("Lorine Luu", "ant farming").
hobby("Lurline Luu", "cycling").
hobby("Melodie Bowens", "tennis polo").
hobby("Micah Gerdes", "fencing").
hobby("Micki Bowens", "vegetable farming").
hobby("Mona Coons", "vr gaming").
hobby("Odette Kimbrough", "sports memorabilia").
hobby("Oscar Gaytan", "martial arts").
hobby("Rigoberto Carrell", "mini golf").
hobby("Romona Kimbrough", "shortwave listening").
hobby("Roseanna Gaytan", "amusement park visiting").
hobby("Shanda Branson", "aerospace").
hobby("Simone Nesbit", "rowing").
hobby("Tamala Gerdes", "book collecting").
hobby("Tessie Branson", "pickleball").
hobby("Timothy Nesbit", "finance").
hobby("Vincenza Kimbrough", "field hockey").
hobby("Wilbur Gaytan", "birdwatching").
hobby("Will Nesbit", "beach volleyball").
hobby("Williams Kimbrough", "geocaching").
hobby("Willis Bowens", "mineral collecting").
hobby("Xavier Zelaya", "psychology").
hobby("Adella Omalley", "audiophile").
hobby("Anita Perkins", "medical science").
hobby("Anton Omalley", "handball").
hobby("Bernardo Dasilva", "coin collecting").
hobby("Bradley Perkins", "debate").
hobby("Bridget Omalley", "action figure").
hobby("Buddy Perkins", "baking").
hobby("Carlton Perkins", "compact discs").
hobby("Chad Perkins", "learning").
hobby("Chrissy Dasilva", "mycology").
hobby("Cicely Perkins", "table tennis playing").
hobby("Delores Dasilva", "dolls").
hobby("Edwin Omalley", "archery").
hobby("Edythe Derosa", "sea glass collecting").
hobby("Emmanuel Holland", "amateur astronomy").
hobby("Haydee Radcliff", "baking").
hobby("Heather Omalley", "stone collecting").
hobby("Jose Radcliff", "geocaching").
hobby("Justine Perkins", "bus spotting").
hobby("Kanesha Omalley", "canoeing").
hobby("Korey Wortham", "films").
hobby("Kraig Omalley", "learning").
hobby("Kristine Forsythe", "research").
hobby("Lashanda Perkins", "learning").
hobby("Leonila Wortham", "baseball").
hobby("Leroy Lupo", "trade fair visiting").
hobby("Lester Perkins", "railway studies").
hobby("Lyndsey Benavides", "bodybuilding").
hobby("Magdalene Perkins", "button collecting").
hobby("Maurine Lupo", "lacrosse").
hobby("Mel Perkins", "birdwatching").
hobby("Micheal Perkins", "volleyball").
hobby("Minerva Lupo", "mineral collecting").
hobby("Monserrate Benavides", "antiquing").
hobby("Myron Lupo", "sea glass collecting").
hobby("Normand Marston", "skiing").
hobby("Numbers Perkins", "shortwave listening").
hobby("Ofelia Perkins", "research").
hobby("Pedro Omalley", "rock balancing").
hobby("Randolph Marston", "beekeeping").
hobby("Rena Forsythe", "aircraft spotting").
hobby("Rodrick Forsythe", "audiophile").
hobby("Rudolph Wortham", "vintage clothing").
hobby("Sherrie Perkins", "microscopy").
hobby("Stan Derosa", "vacation").
hobby("Theron Marston", "linguistics").
hobby("Tomas Benavides", "rowing").
hobby("Tosha Derosa", "audiophile").
hobby("Windy Wortham", "cricket").
hobby("Yen Marston", "flying disc").
hobby("Yoko Holland", "meditation").
hobby("Adalberto Huss", "microscopy").
hobby("Adela Sweat", "satellite watching").
hobby("Angelia Youngblood", "eating").
hobby("Annabell Edge", "trainspotting").
hobby("Armando Huss", "shortwave listening").
hobby("Ashleigh Cervantes", "fencing").
hobby("Audie Millet", "snowshoeing").
hobby("Bret Hobbs", "antiquities").
hobby("Bridget Landeros", "leaves").
hobby("Chad Huss", "noodling").
hobby("Clint Huss", "mineral collecting").
hobby("Consuelo Huss", "fishkeeping").
hobby("Cordell Huss", "leaves").
hobby("Cristopher Cummins", "meteorology").
hobby("Cruz Stillwell", "microscopy").
hobby("Devora Stillwell", "philately").
hobby("Dortha Edge", "ant-keeping").
hobby("Edythe Leahy", "ant-keeping").
hobby("Elsy Edge", "benchmarking").
hobby("Evelia Edge", "canyoning").
hobby("Howard Huss", "radio-controlled model playing").
hobby("Jenny Huss", "archaeology").
hobby("Jewel Huss", "darts").
hobby("Jocelyn Soliz", "audiophile").
hobby("Kenton Edge", "railway studies").
hobby("Ladonna Landeros", "architecture").
hobby("Leticia Landeros", "audiophile").
hobby("Lionel Cervantes", "art collecting").
hobby("Loren Youngblood", "fishkeeping").
hobby("Luther Edge", "trainspotting").
hobby("Lyndon Huss", "role-playing games").
hobby("Lynetta Edge", "die-cast toy").
hobby("Mallory Soliz", "die-cast toy").
hobby("Marcelo Edge", "research").
hobby("Niesha Hobbs", "poker").
hobby("Norris Kingsbury", "beekeeping").
hobby("Otis Stillwell", "longboarding").
hobby("Page Edge", "shogi").
hobby("Patrick Millet", "benchmarking").
hobby("Pauline Huss", "radio-controlled model collecting").
hobby("Rashad Landeros", "ant farming").
hobby("Rickey Sweat", "driving").
hobby("Rogelio Leahy", "lotology").
hobby("Shelton Soliz", "ice hockey").
hobby("Signe Landeros", "go").
hobby("Terence Landeros", "meditation").
hobby("Tosha Youngblood", "darts").
hobby("Tresa Kingsbury", "research").
hobby("Vernell Cummins", "flying disc").
hobby("Zachary Leahy", "topiary").
hobby("Zana Stillwell", "ice hockey").
hobby("Alysia Sage", "fitness").
hobby("Anibal Delapaz", "coin collecting").
hobby("Blaine Sage", "meditation").
hobby("Bonnie Sage", "shooting sports").
hobby("Briana Mcglothlin", "microscopy").
hobby("Bryan Benoit", "swimming").
hobby("Charmain East", "antiquing").
hobby("Dan Poore", "sea glass collecting").
hobby("Deidra East", "antiquities").
hobby("Demetria Sage", "life science").
hobby("Domonique Delapaz", "rughooking").
hobby("Earlean Akin", "video game collecting").
hobby("Elbert Wyche", "rail transport modelling").
hobby("Emanuel Poore", "ant farming").
hobby("Emelda Sage", "esports").
hobby("Emmanuel Akin", "fusilately").
hobby("Ernest Styles", "railway studies").
hobby("Fernando Sage", "high-power rocketry").
hobby("Fidel Sage", "reading").
hobby("Francisco Sage", "dandyism").
hobby("Garth Sage", "element collecting").
hobby("Giovanni Mcglothlin", "museum visiting").
hobby("Guy Sage", "medical science").
hobby("Herlinda Sage", "bus riding").
hobby("Jerry Cawley", "vintage clothing").
hobby("Jona Delapaz", "research").
hobby("Kena Sage", "sea glass collecting").
hobby("Kraig Sage", "gymnastics").
hobby("Kristine Sage", "video gaming").
hobby("Leah Overstreet", "sea glass collecting").
hobby("Leann Sage", "wikipedia editing").
hobby("Lester Sage", "ant farming").
hobby("Levi Mcglothlin", "surfing").
hobby("Lurline Poore", "skateboarding").
hobby("Lynetta Delapaz", "laser tag").
hobby("Malcolm Sage", "farming").
hobby("Natacha Benoit", "breakdancing").
hobby("Ollie Poore", "lapel pins").
hobby("Ramon East", "railway studies").
hobby("Selina Sage", "insect collecting").
hobby("Seymour Sage", "meteorology").
hobby("Sherita Wyche", "hooping").
hobby("Son Overstreet", "fossil hunting").
hobby("Ta Wyche", "story writing").
hobby("Thomasena Overstreet", "meditation").
hobby("Tianna Styles", "fishkeeping").
hobby("Vernice Cawley", "fishing").
hobby("Von Sage", "jurisprudential").
hobby("Zachariah Overstreet", "radio-controlled car racing").
hobby("Zella Sage", "whale watching").
granddaughter(X, Y) :-
grandchild(X, Y),
female(Y).
grandson(X, Y) :-
grandchild(X, Y),
male(Y).
:- dynamic job/2.
job("Aida Wang", "personal assistant").
job("Alec Sinclair", "health promotion specialist").
job("Alfredo Wang", "osteopath").
job("Alison Smock", "broadcast engineer").
job("Alvaro Smock", "oncologist").
job("Alycia Coe", "warehouse manager").
job("Barabara Beltran", "associate professor").
job("Brian Beltran", "sports therapist").
job("Carrol Woodson", "retail manager").
job("Christina Coe", "immunologist").
job("Christoper Coe", "education administrator").
job("Cortney Parmer", "early years teacher").
job("Cythia Smock", "biomedical scientist").
job("Daisy Beltran", "music tutor").
job("Dino Beltran", "clinical cytogeneticist").
job("Dominique Smock", "ecologist").
job("Dwight Hackworth", "barrister's clerk").
job("Earle Coe", "petroleum engineer").
job("Eli Smock", "clinical research associate").
job("Gayla Woodson", "chief of staff").
job("Gene Smock", "occupational therapist").
job("Isiah Lutz", "actuary").
job("Jamison Baptiste", "police officer").
job("Kristen Toombs", "sound technician").
job("Lannie Smock", "theatre manager").
job("Leeann Sinclair", "clinical biochemist").
job("Leisa Lutz", "public relations officer").
job("Lesley Lutz", "music therapist").
job("Lissa Coe", "librarian").
job("Lonny Parmer", "building surveyor").
job("Maria Baptiste", "fitness centre manager").
job("Michelle Hackworth", "oceanographer").
job("Noelia Lutz", "historic buildings inspector").
job("Orlando Beltran", "chief marketing officer").
job("Reggie Coe", "waste management officer").
job("Ricardo Hackworth", "medical sales representative").
job("Ryan Wang", "community pharmacist").
job("Shannon Beltran", "pension scheme manager").
job("Shelli Beltran", "armed forces logistics officer").
job("Stacia Toombs", "environmental education officer").
job("Tanner Beltran", "medical illustrator").
job("Tosha Beltran", "museum conservator").
job("Tyson Woodson", "optometrist").
job("Ulysses Parmer", "further education lecturer").
job("Vicki Hackworth", "dancer").
job("Vincent Lutz", "water engineer").
job("Virgil Hackworth", "intelligence analyst").
job("Von Sinclair", "fashion designer").
job("Wilbert Toombs", "doctor").
job("Williams Smock", "chartered accountant").
job("Wm Parmer", "speech and language therapist").
job("Angela Culver", "clinical embryologist").
job("Anibal Stansberry", "community development worker").
job("Barbara Philpott", "games developer").
job("Bev Gilmore", "accommodation manager").
job("Brigette Gilmore", "conservation officer").
job("Celia Macmillan", "forensic scientist").
job("Conrad Stansberry", "pharmacologist").
job("Cordelia Wiggs", "dance movement psychotherapist").
job("David Wiggs", "paediatric nurse").
job("Debra Stansberry", "research officer").
job("Desiree Stansberry", "production designer").
job("Diane Culver", "community development worker").
job("Dionne Stansberry", "clinical molecular geneticist").
job("Eliza Wiggs", "set designer").
job("Emanuel Stansberry", "town planner").
job("Frankie Hagerty", "print production planner").
job("Gail Culver", "equality and diversity officer").
job("Garry Gilmore", "chartered loss adjuster").
job("Gillian Wiggs", "sales promotion account executive").
job("Glenda Culver", "banker").
job("Hayden Stansberry", "systems developer").
job("Howard Wiggs", "chief financial officer").
job("Hyun Hagerty", "regulatory affairs officer").
job("Iva Stansberry", "architect").
job("Jordan Culver", "health and safety inspector").
job("Jules Culver", "medical secretary").
job("Justine Hagerty", "careers adviser").
job("Kelvin Culver", "civil service administrator").
job("Kori Wiggs", "optometrist").
job("Laverna Stansberry", "print production planner").
job("Lester Stansberry", "arboriculturist").
job("Lincoln Velasco", "adult nurse").
job("Lionel Culver", "commercial horticulturist").
job("Loren Culver", "conference centre manager").
job("Markus Hagerty", "journalist").
job("Maurine Velasco", "wellsite geologist").
job("Mickey Philpott", "community education officer").
job("Millard Stansberry", "investment analyst").
job("Nikki Stansberry", "trading standards officer").
job("Oren Stansberry", "colour technologist").
job("Quintin Hagerty", "immigration officer").
job("Renate Stansberry", "human resources officer").
job("Sona Stansberry", "agricultural consultant").
job("Tad Macmillan", "fashion designer").
job("Tamara Macmillan", "actuary").
job("Terence Culver", "industrial designer").
job("Tonya Culver", "maintenance engineer").
job("Victor Stansberry", "data scientist").
job("Wilmer Hagerty", "health physicist").
job("Yolanda Philpott", "hospital doctor").
job("Adelaida Ricketts", "radiographer").
job("Benny Abrams", "midwife").
job("Bobby Ricketts", "music therapist").
job("Bridget Solorio", "medical secretary").
job("Brooks Ricketts", "hospital pharmacist").
job("Cicely Abrams", "chemist").
job("Cordelia Zepeda", "editor").
job("Cory Ricketts", "technical brewer").
job("Dee Ricketts", "hospital pharmacist").
job("Deidra Ricketts", "learning disability nurse").
job("Dennis Ricketts", "financial manager").
job("Edmund Abrams", "chief executive officer").
job("Erin Ricketts", "programme researcher").
job("Flora Ricketts", "printmaker").
job("Hoa Leija", "sports coach").
job("Jennifer Ricketts", "trading standards officer").
job("Kory Ricketts", "physiological scientist").
job("Kristie Abrams", "immunologist").
job("Kristopher Ricketts", "advice worker").
job("Lauren Brumbaugh", "ambulance person").
job("Lora Ricketts", "tourism officer").
job("Lyman Leija", "solicitor").
job("Madelyn Ricketts", "insurance account manager").
job("Maranda Ricketts", "police officer").
job("Marlene Isaacs", "quantity surveyor").
job("Melina Deming", "building services engineer").
job("Micheal Leija", "futures trader").
job("Milton Brumbaugh", "prison officer").
job("Mona Leija", "web designer").
job("Nick Solorio", "therapeutic radiographer").
job("Orval Ricketts", "planning and development surveyor").
job("Paula Ricketts", "neurosurgeon").
job("Randi Leija", "sports administrator").
job("Raymond Leija", "quarry manager").
job("Reed Abrams", "homeopath").
job("Reggie Brumbaugh", "psychiatrist").
job("Renea Ricketts", "wellsite geologist").
job("Rhonda Ricketts", "historic buildings inspector").
job("Rocky Ricketts", "rural practice surveyor").
job("Rolanda Isaacs", "meteorologist").
job("Rosalee Brumbaugh", "farm manager").
job("Samuel Ricketts", "minerals surveyor").
job("Shane Leija", "textile designer").
job("Spencer Ricketts", "teaching laboratory technician").
job("Terrell Isaacs", "meteorologist").
job("Tiffanie Leija", "insurance broker").
job("Tommy Zepeda", "early years teacher").
job("Toney Ricketts", "curator").
job("Ulysses Deming", "furniture designer").
job("Winnifred Ricketts", "risk analyst").
job("Adella Schwarz", "museum exhibitions officer").
job("Alberto Schwarz", "pilot").
job("Antony Kinder", "human resources officer").
job("Aura Schwarz", "public relations officer").
job("Bernice Kinder", "solicitor").
job("Carmelita Schwarz", "broadcast engineer").
job("Carter Bolen", "chiropractor").
job("Clark Kinder", "statistician").
job("Dawne Grover", "musician").
job("Delbert Menchaca", "economist").
job("Dillon Schwarz", "company secretary").
job("Dylan Schwarz", "editorial assistant").
job("Elbert Canada", "transport planner").
job("Elyse Canada", "customer service manager").
job("Emilie Schwarz", "camera operator").
job("Eugene Schwarz", "psychotherapist").
job("Eugenio Schwarz", "scientific laboratory technician").
job("Federico Schwarz", "travel agency manager").
job("Francis Grover", "geologist").
job("Gustavo Grover", "soil scientist").
job("Hank Schwarz", "optometrist").
job("Herbert Bolen", "banker").
job("Hope Schwarz", "media buyer").
job("Irish Schwarz", "careers adviser").
job("Jeanette Byrd", "garment technologist").
job("Jeremiah Schwarz", "advertising art director").
job("Joanna Schwarz", "market researcher").
job("Judith Schwarz", "IT consultant").
job("Kent Schwarz", "probation officer").
job("Kimberely Menchaca", "marketing executive").
job("Lorina Kinder", "investment banker").
job("Magdalena Schwarz", "product development scientist").
job("Nada Schwarz", "museum curator").
job("Odette Schwarz", "sales professional").
job("Omar Schwarz", "charity officer").
job("Pamula Schwarz", "charity fundraiser").
job("Paula Bass", "insurance account manager").
job("Phylis Bolen", "chartered certified accountant").
job("Randi Bass", "environmental education officer").
job("Randi Schwarz", "chemist").
job("Randolph Schwarz", "research officer").
job("Riley Grover", "dispensing optician").
job("Rodolfo Byrd", "operations geologist").
job("Ross Bolen", "chartered loss adjuster").
job("Shawnta Schwarz", "bookseller").
job("Sona Kinder", "arts administrator").
job("Sueann Bolen", "mining engineer").
job("Tania Schwarz", "museum exhibitions officer").
job("Tomas Bass", "forensic scientist").
job("Zelda Schwarz", "chief technology officer").
job("Adella Gaytan", "fine artist").
job("Alejandrina Luu", "pharmacologist").
job("Betsy Kimbrough", "training and development officer").
job("Bev Branson", "operational investment banker").
job("Bobbie Luu", "advertising copywriter").
job("Bradford Gaytan", "probation officer").
job("Casey Kimbrough", "bookseller").
job("Chuck Luu", "public relations account executive").
job("Cristal Luu", "academic librarian").
job("Dennis Kimbrough", "editorial assistant").
job("Derrick Luu", "product designer").
job("Ellen Nesbit", "accountant").
job("Emanuel Luu", "comptroller").
job("Georgine Zelaya", "naval architect").
job("Glenda Carrell", "corporate investment banker").
job("Hal Branson", "midwife").
job("Hugo Kimbrough", "claims inspector").
job("Jake Nesbit", "telecommunications researcher").
job("Jeremy Kimbrough", "chartered public finance accountant").
job("Jeremy Zelaya", "advertising art director").
job("Johnathon Zelaya", "clinical cytogeneticist").
job("Jona Carrell", "immunologist").
job("Joslyn Gerdes", "economist").
job("Joslyn Nesbit", "adult guidance worker").
job("Jules Kimbrough", "radio producer").
job("Larry Coons", "database administrator").
job("Laurette Kimbrough", "paramedic").
job("Leeann Nesbit", "air traffic controller").
job("Lorine Luu", "call centre manager").
job("Lurline Luu", "network engineer").
job("Melodie Bowens", "astronomer").
job("Micah Gerdes", "astronomer").
job("Micki Bowens", "tax adviser").
job("Mona Coons", "hospital doctor").
job("Odette Kimbrough", "research officer").
job("Oscar Gaytan", "learning disability nurse").
job("Rigoberto Carrell", "electronics engineer").
job("Romona Kimbrough", "financial adviser").
job("Roseanna Gaytan", "print production planner").
job("Shanda Branson", "chief executive officer").
job("Simone Nesbit", "contracting civil engineer").
job("Tamala Gerdes", "oceanographer").
job("Tessie Branson", "trading standards officer").
job("Timothy Nesbit", "call centre manager").
job("Vincenza Kimbrough", "forensic scientist").
job("Wilbur Gaytan", "financial adviser").
job("Will Nesbit", "geographical information systems officer").
job("Williams Kimbrough", "planning and development surveyor").
job("Willis Bowens", "outdoor activities manager").
job("Xavier Zelaya", "financial adviser").
job("Adella Omalley", "civil service administrator").
job("Anita Perkins", "advertising art director").
job("Anton Omalley", "herbalist").
job("Bernardo Dasilva", "interpreter").
job("Bradley Perkins", "pension scheme manager").
job("Bridget Omalley", "child psychotherapist").
job("Buddy Perkins", "applications developer").
job("Carlton Perkins", "theatre director").
job("Chad Perkins", "soil scientist").
job("Chrissy Dasilva", "programmer").
job("Cicely Perkins", "race relations officer").
job("Delores Dasilva", "solicitor").
job("Edwin Omalley", "dealer").
job("Edythe Derosa", "environmental consultant").
job("Emmanuel Holland", "recruitment consultant").
job("Haydee Radcliff", "chartered management accountant").
job("Heather Omalley", "network engineer").
job("Jose Radcliff", "geochemist").
job("Justine Perkins", "quality manager").
job("Kanesha Omalley", "veterinary surgeon").
job("Korey Wortham", "midwife").
job("Kraig Omalley", "stage manager").
job("Kristine Forsythe", "horticulturist").
job("Lashanda Perkins", "product designer").
job("Leonila Wortham", "systems developer").
job("Leroy Lupo", "special effects artist").
job("Lester Perkins", "private music teacher").
job("Lyndsey Benavides", "technical brewer").
job("Magdalene Perkins", "charity fundraiser").
job("Maurine Lupo", "sales professional").
job("Mel Perkins", "telecommunications researcher").
job("Micheal Perkins", "merchant navy officer").
job("Minerva Lupo", "pilot").
job("Monserrate Benavides", "sales professional").
job("Myron Lupo", "scientific laboratory technician").
job("Normand Marston", "interior and spatial designer").
job("Numbers Perkins", "health service manager").
job("Ofelia Perkins", "politician's assistant").
job("Pedro Omalley", "community arts worker").
job("Randolph Marston", "tourism officer").
job("Rena Forsythe", "careers information officer").
job("Rodrick Forsythe", "TEFL teacher").
job("Rudolph Wortham", "corporate treasurer").
job("Sherrie Perkins", "adult guidance worker").
job("Stan Derosa", "camera operator").
job("Theron Marston", "ergonomist").
job("Tomas Benavides", "production engineer").
job("Tosha Derosa", "tour manager").
job("Windy Wortham", "maintenance engineer").
job("Yen Marston", "merchant navy officer").
job("Yoko Holland", "rural practice surveyor").
job("Adalberto Huss", "pilot").
job("Adela Sweat", "IT trainer").
job("Angelia Youngblood", "higher education lecturer").
job("Annabell Edge", "corporate treasurer").
job("Armando Huss", "electrical engineer").
job("Ashleigh Cervantes", "psychologist").
job("Audie Millet", "editor").
job("Bret Hobbs", "fitness centre manager").
job("Bridget Landeros", "paediatric nurse").
job("Chad Huss", "glass blower").
job("Clint Huss", "call centre manager").
job("Consuelo Huss", "location manager").
job("Cordell Huss", "press photographer").
job("Cristopher Cummins", "warden").
job("Cruz Stillwell", "publishing copy").
job("Devora Stillwell", "information systems manager").
job("Dortha Edge", "gaffer").
job("Edythe Leahy", "restaurant manager").
job("Elsy Edge", "herpetologist").
job("Evelia Edge", "nutritional therapist").
job("Howard Huss", "firefighter").
job("Jenny Huss", "social worker").
job("Jewel Huss", "estate manager").
job("Jocelyn Soliz", "video editor").
job("Kenton Edge", "food technologist").
job("Ladonna Landeros", "quarry manager").
job("Leticia Landeros", "optician").
job("Lionel Cervantes", "artist").
job("Loren Youngblood", "haematologist").
job("Luther Edge", "youth worker").
job("Lyndon Huss", "office manager").
job("Lynetta Edge", "charity officer").
job("Mallory Soliz", "animal nutritionist").
job("Marcelo Edge", "publishing copy").
job("Niesha Hobbs", "chartered accountant").
job("Norris Kingsbury", "civil service fast streamer").
job("Otis Stillwell", "tax inspector").
job("Page Edge", "actor").
job("Patrick Millet", "sales executive").
job("Pauline Huss", "midwife").
job("Rashad Landeros", "animal technologist").
job("Rickey Sweat", "acupuncturist").
job("Rogelio Leahy", "occupational therapist").
job("Shelton Soliz", "international aid worker").
job("Signe Landeros", "barrister's clerk").
job("Terence Landeros", "mining engineer").
job("Tosha Youngblood", "investment analyst").
job("Tresa Kingsbury", "mining engineer").
job("Vernell Cummins", "programmer").
job("Zachary Leahy", "armed forces logistics officer").
job("Zana Stillwell", "medical illustrator").
job("Alysia Sage", "patent attorney").
job("Anibal Delapaz", "brewing technologist").
job("Blaine Sage", "lecturer").
job("Bonnie Sage", "amenity horticulturist").
job("Briana Mcglothlin", "recruitment consultant").
job("Bryan Benoit", "barista").
job("Charmain East", "agricultural engineer").
job("Dan Poore", "materials engineer").
job("Deidra East", "doctor").
job("Demetria Sage", "musician").
job("Domonique Delapaz", "horticultural consultant").
job("Earlean Akin", "dramatherapist").
job("Elbert Wyche", "exhibition designer").
job("Emanuel Poore", "careers adviser").
job("Emelda Sage", "community pharmacist").
job("Emmanuel Akin", "waste management officer").
job("Ernest Styles", "patent attorney").
job("Fernando Sage", "records manager").
job("Fidel Sage", "building surveyor").
job("Francisco Sage", "psychiatric nurse").
job("Garth Sage", "therapeutic radiographer").
job("Giovanni Mcglothlin", "radiation protection practitioner").
job("Guy Sage", "environmental education officer").
job("Herlinda Sage", "higher education careers adviser").
job("Jerry Cawley", "educational psychologist").
job("Jona Delapaz", "conference centre manager").
job("Kena Sage", "licensed conveyancer").
job("Kraig Sage", "technical sales engineer").
job("Kristine Sage", "wellsite geologist").
job("Leah Overstreet", "architect").
job("Leann Sage", "government social research officer").
job("Lester Sage", "set designer").
job("Levi Mcglothlin", "chartered loss adjuster").
job("Lurline Poore", "broadcast engineer").
job("Lynetta Delapaz", "diagnostic radiographer").
job("Malcolm Sage", "warden").
job("Natacha Benoit", "fast food restaurant manager").
job("Ollie Poore", "astronomer").
job("Ramon East", "clothing technologist").
job("Selina Sage", "careers adviser").
job("Seymour Sage", "ceramics designer").
job("Sherita Wyche", "land surveyor").
job("Son Overstreet", "clinical scientist").
job("Ta Wyche", "ergonomist").
job("Thomasena Overstreet", "multimedia specialist").
job("Tianna Styles", "market researcher").
job("Vernice Cawley", "site engineer").
job("Von Sage", "office manager").
job("Zachariah Overstreet", "tourist information centre manager").
job("Zella Sage", "teacher").
great_uncle(X, Y) :-
grandparent(X, A),
brother(A, Y).
:- dynamic save_all_clauses_to_file/1.
save_all_clauses_to_file(A) :-
open(A, write, B),
set_output(B),
listing,
close(B).
:- dynamic term_expansion/4.
:- multifile term_expansion/4.
grandchild(X, Y) :-
grandparent(Y, X).
:- dynamic dob/2.
dob("Aida Wang", "0985-05-30").
dob("Alec Sinclair", "1006-07-10").
dob("Alfredo Wang", "1012-02-04").
dob("Alison Smock", "0929-10-28").
dob("Alvaro Smock", "0867-07-12").
dob("Alycia Coe", "0959-01-13").
dob("Barabara Beltran", "0989-06-11").
dob("Brian Beltran", "0927-07-27").
dob("Carrol Woodson", "1033-07-02").
dob("Christina Coe", "0983-02-26").
dob("Christoper Coe", "0957-01-08").
dob("Cortney Parmer", "1014-07-04").
dob("Cythia Smock", "0956-05-12").
dob("Daisy Beltran", "0931-09-21").
dob("Dino Beltran", "0958-08-09").
dob("Dominique Smock", "0897-09-08").
dob("Dwight Hackworth", "1016-12-30").
dob("Earle Coe", "0984-05-03").
dob("Eli Smock", "0901-01-18").
dob("Gayla Woodson", "1035-10-24").
dob("Gene Smock", "0898-08-16").
dob("Isiah Lutz", "1014-10-18").
dob("Jamison Baptiste", "0929-02-07").
dob("Kristen Toombs", "0986-06-27").
dob("Lannie Smock", "0867-08-24").
dob("Leeann Sinclair", "1011-10-25").
dob("Leisa Lutz", "1015-11-21").
dob("Lesley Lutz", "1040-01-31").
dob("Lissa Coe", "1010-08-08").
dob("Lonny Parmer", "1042-08-03").
dob("Maria Baptiste", "0929-10-22").
dob("Michelle Hackworth", "1007-05-01").
dob("Noelia Lutz", "1042-01-27").
dob("Orlando Beltran", "0953-10-23").
dob("Reggie Coe", "1009-07-17").
dob("Ricardo Hackworth", "0983-02-24").
dob("Ryan Wang", "0982-03-17").
dob("Shannon Beltran", "0981-04-26").
dob("Shelli Beltran", "0958-03-08").
dob("Stacia Toombs", "0959-03-22").
dob("Tanner Beltran", "0956-11-17").
dob("Tosha Beltran", "0955-03-27").
dob("Tyson Woodson", "1068-10-22").
dob("Ulysses Parmer", "1015-03-18").
dob("Vicki Hackworth", "0985-05-30").
dob("Vincent Lutz", "1063-07-01").
dob("Virgil Hackworth", "1009-06-23").
dob("Von Sinclair", "1039-02-26").
dob("Wilbert Toombs", "0956-07-26").
dob("Williams Smock", "0926-04-04").
dob("Wm Parmer", "1040-07-04").
dob("Angela Culver", "0898-11-29").
dob("Anibal Stansberry", "0973-09-08").
dob("Barbara Philpott", "0915-10-13").
dob("Bev Gilmore", "0951-06-19").
dob("Brigette Gilmore", "0923-05-12").
dob("Celia Macmillan", "1026-12-07").
dob("Conrad Stansberry", "1003-10-24").
dob("Cordelia Wiggs", "0976-12-23").
dob("David Wiggs", "0979-09-27").
dob("Debra Stansberry", "1008-03-18").
dob("Desiree Stansberry", "1002-10-18").
dob("Diane Culver", "0869-11-24").
dob("Dionne Stansberry", "1037-04-26").
dob("Eliza Wiggs", "1040-01-19").
dob("Emanuel Stansberry", "1034-05-31").
dob("Frankie Hagerty", "0946-05-01").
dob("Gail Culver", "0887-02-26").
dob("Garry Gilmore", "0920-10-17").
dob("Gillian Wiggs", "1010-02-07").
dob("Glenda Culver", "0859-05-23").
dob("Hayden Stansberry", "1005-03-30").
dob("Howard Wiggs", "1010-06-15").
dob("Hyun Hagerty", "0946-07-18").
dob("Iva Stansberry", "0947-12-16").
dob("Jordan Culver", "0863-05-18").
dob("Jules Culver", "0865-04-01").
dob("Justine Hagerty", "0922-04-26").
dob("Kelvin Culver", "0893-08-01").
dob("Kori Wiggs", "1043-07-28").
dob("Laverna Stansberry", "1009-10-20").
dob("Lester Stansberry", "1030-10-24").
dob("Lincoln Velasco", "0861-10-10").
dob("Lionel Culver", "0888-06-17").
dob("Loren Culver", "0837-04-13").
dob("Markus Hagerty", "0922-01-07").
dob("Maurine Velasco", "0861-04-11").
dob("Mickey Philpott", "0916-05-13").
dob("Millard Stansberry", "1002-04-17").
dob("Nikki Stansberry", "1030-04-05").
dob("Oren Stansberry", "0948-09-28").
dob("Quintin Hagerty", "0981-01-08").
dob("Renate Stansberry", "0977-11-30").
dob("Sona Stansberry", "1005-11-15").
dob("Tad Macmillan", "1024-03-25").
dob("Tamara Macmillan", "1055-08-19").
dob("Terence Culver", "0889-08-09").
dob("Tonya Culver", "0837-02-09").
dob("Victor Stansberry", "0980-11-17").
dob("Wilmer Hagerty", "0948-05-29").
dob("Yolanda Philpott", "0940-02-02").
dob("Adelaida Ricketts", "0922-12-18").
dob("Benny Abrams", "0896-12-12").
dob("Bobby Ricketts", "0947-04-09").
dob("Bridget Solorio", "0986-07-21").
dob("Brooks Ricketts", "0898-02-26").
dob("Cicely Abrams", "0870-01-06").
dob("Cordelia Zepeda", "0916-07-26").
dob("Cory Ricketts", "0878-04-27").
dob("Dee Ricketts", "0972-08-01").
dob("Deidra Ricketts", "0946-02-25").
dob("Dennis Ricketts", "0923-07-06").
dob("Edmund Abrams", "0845-10-24").
dob("Erin Ricketts", "0900-05-21").
dob("Flora Ricketts", "0879-05-07").
dob("Hoa Leija", "0902-04-25").
dob("Jennifer Ricketts", "0975-05-24").
dob("Kory Ricketts", "0950-01-14").
dob("Kristie Abrams", "0843-03-20").
dob("Kristopher Ricketts", "0850-09-22").
dob("Lauren Brumbaugh", "1041-06-15").
dob("Lora Ricketts", "0952-09-06").
dob("Lyman Leija", "0901-03-05").
dob("Madelyn Ricketts", "0850-06-15").
dob("Maranda Ricketts", "0988-06-04").
dob("Marlene Isaacs", "0954-08-24").
dob("Melina Deming", "0929-07-13").
dob("Micheal Leija", "0922-10-24").
dob("Milton Brumbaugh", "1045-08-29").
dob("Mona Leija", "0928-05-15").
dob("Nick Solorio", "0984-11-19").
dob("Orval Ricketts", "0906-08-02").
dob("Paula Ricketts", "0925-09-21").
dob("Randi Leija", "0900-05-14").
dob("Raymond Leija", "0926-06-19").
dob("Reed Abrams", "0870-11-15").
dob("Reggie Brumbaugh", "1014-09-14").
dob("Renea Ricketts", "0904-01-13").
dob("Rhonda Ricketts", "0958-11-25").
dob("Rocky Ricketts", "0923-06-06").
dob("Rolanda Isaacs", "0927-12-01").
dob("Rosalee Brumbaugh", "1016-02-10").
dob("Samuel Ricketts", "0952-08-04").
dob("Shane Leija", "0873-05-27").
dob("Spencer Ricketts", "0959-10-28").
dob("Terrell Isaacs", "0926-10-24").
dob("Tiffanie Leija", "0875-11-15").
dob("Tommy Zepeda", "0915-11-25").
dob("Toney Ricketts", "0949-05-16").
dob("Ulysses Deming", "0930-07-19").
dob("Winnifred Ricketts", "0954-04-23").
dob("Adella Schwarz", "1034-01-20").
dob("Alberto Schwarz", "1010-07-13").
dob("Antony Kinder", "1032-03-16").
dob("Aura Schwarz", "0953-08-08").
dob("Bernice Kinder", "1003-04-28").
dob("Carmelita Schwarz", "0984-01-08").
dob("Carter Bolen", "1014-01-31").
dob("Clark Kinder", "1000-02-09").
dob("Dawne Grover", "1031-02-26").
dob("Delbert Menchaca", "0953-05-15").
dob("Dillon Schwarz", "0979-09-16").
dob("Dylan Schwarz", "0899-09-16").
dob("Elbert Canada", "0893-11-15").
dob("Elyse Canada", "0889-07-11").
dob("Emilie Schwarz", "1008-11-19").
dob("Eugene Schwarz", "1004-10-08").
dob("Eugenio Schwarz", "0954-12-07").
dob("Federico Schwarz", "1032-10-11").
dob("Francis Grover", "1056-09-26").
dob("Gustavo Grover", "1026-05-24").
dob("Hank Schwarz", "1035-06-29").
dob("Herbert Bolen", "1007-04-10").
dob("Hope Schwarz", "1036-04-11").
dob("Irish Schwarz", "1007-10-06").
dob("Jeanette Byrd", "0976-08-12").
dob("Jeremiah Schwarz", "1007-09-13").
dob("Joanna Schwarz", "1060-04-19").
dob("Judith Schwarz", "0974-06-18").
dob("Kent Schwarz", "0978-10-20").
dob("Kimberely Menchaca", "0954-09-19").
dob("Lorina Kinder", "1062-06-10").
dob("Magdalena Schwarz", "1002-06-23").
dob("Nada Schwarz", "1009-06-26").
dob("Odette Schwarz", "0954-03-05").
dob("Omar Schwarz", "0926-12-20").
dob("Pamula Schwarz", "0979-02-20").
dob("Paula Bass", "1076-04-16").
dob("Phylis Bolen", "1014-07-25").
dob("Randi Bass", "1044-03-08").
dob("Randi Schwarz", "0999-10-04").
dob("Randolph Schwarz", "1038-10-02").
dob("Riley Grover", "1063-02-01").
dob("Rodolfo Byrd", "0977-05-16").
dob("Ross Bolen", "0983-07-06").
dob("Shawnta Schwarz", "0897-10-28").
dob("Sona Kinder", "1030-01-10").
dob("Sueann Bolen", "0982-10-22").
dob("Tania Schwarz", "0923-08-11").
dob("Tomas Bass", "1046-08-17").
dob("Zelda Schwarz", "0982-10-22").
dob("Adella Gaytan", "1024-08-04").
dob("Alejandrina Luu", "0939-03-14").
dob("Betsy Kimbrough", "1008-05-01").
dob("Bev Branson", "1008-01-25").
dob("Bobbie Luu", "0968-06-27").
dob("Bradford Gaytan", "1029-02-04").
dob("Casey Kimbrough", "0977-11-20").
dob("Chuck Luu", "0937-08-12").
dob("Cristal Luu", "1001-09-15").
dob("Dennis Kimbrough", "0917-12-28").
dob("Derrick Luu", "0910-07-20").
dob("Ellen Nesbit", "1003-05-13").
dob("Emanuel Luu", "0969-09-21").
dob("Georgine Zelaya", "0973-02-23").
dob("Glenda Carrell", "0979-05-06").
dob("Hal Branson", "0980-08-09").
dob("Hugo Kimbrough", "0974-05-25").
dob("Jake Nesbit", "1008-09-22").
dob("Jeremy Kimbrough", "0979-06-05").
dob("Jeremy Zelaya", "0972-10-21").
dob("Johnathon Zelaya", "0999-12-03").
dob("Jona Carrell", "0950-10-11").
dob("Joslyn Gerdes", "1026-07-22").
dob("Joslyn Nesbit", "1004-04-19").
dob("Jules Kimbrough", "1004-08-01").
dob("Larry Coons", "0921-04-09").
dob("Laurette Kimbrough", "0973-02-23").
dob("Leeann Nesbit", "1007-09-05").
dob("Lorine Luu", "0910-01-18").
dob("Lurline Luu", "0972-08-20").
dob("Melodie Bowens", "1037-11-06").
dob("Micah Gerdes", "0995-10-02").
dob("Micki Bowens", "1006-06-04").
dob("Mona Coons", "0918-02-21").
dob("Odette Kimbrough", "0915-01-26").
dob("Oscar Gaytan", "1001-05-22").
dob("Rigoberto Carrell", "0950-02-06").
dob("Romona Kimbrough", "0979-09-10").
dob("Roseanna Gaytan", "0999-01-02").
dob("Shanda Branson", "0979-05-10").
dob("Simone Nesbit", "0978-05-09").
dob("Tamala Gerdes", "0995-12-08").
dob("Tessie Branson", "1005-03-06").
dob("Timothy Nesbit", "0973-08-24").
dob("Vincenza Kimbrough", "0946-04-02").
dob("Wilbur Gaytan", "1056-04-30").
dob("Will Nesbit", "1006-06-13").
dob("Williams Kimbrough", "0945-10-16").
dob("Willis Bowens", "1008-05-28").
dob("Xavier Zelaya", "0995-04-21").
dob("Adella Omalley", "0988-02-11").
dob("Anita Perkins", "0930-05-18").
dob("Anton Omalley", "0992-02-05").
dob("Bernardo Dasilva", "1010-08-22").
dob("Bradley Perkins", "0961-03-20").
dob("Bridget Omalley", "1013-05-29").
dob("Buddy Perkins", "1040-10-05").
dob("Carlton Perkins", "1012-11-11").
dob("Chad Perkins", "0931-04-21").
dob("Chrissy Dasilva", "1013-10-09").
dob("Cicely Perkins", "0989-10-13").
dob("Delores Dasilva", "1042-03-11").
dob("Edwin Omalley", "1013-11-21").
dob("Edythe Derosa", "1073-11-23").
dob("Emmanuel Holland", "0912-07-22").
dob("Haydee Radcliff", "0936-10-16").
dob("Heather Omalley", "1015-06-06").
dob("Jose Radcliff", "0934-04-11").
dob("Justine Perkins", "1016-01-30").
dob("Kanesha Omalley", "0960-07-20").
dob("Korey Wortham", "0987-05-24").
dob("Kraig Omalley", "0987-11-11").
dob("Kristine Forsythe", "1010-08-23").
dob("Lashanda Perkins", "1011-09-09").
dob("Leonila Wortham", "0958-12-15").
dob("Leroy Lupo", "0958-05-08").
dob("Lester Perkins", "0960-03-21").
dob("Lyndsey Benavides", "1043-03-03").
dob("Magdalene Perkins", "0987-02-21").
dob("Maurine Lupo", "0934-12-08").
dob("Mel Perkins", "1012-05-22").
dob("Micheal Perkins", "1039-05-15").
dob("Minerva Lupo", "0958-12-15").
dob("Monserrate Benavides", "1080-02-01").
dob("Myron Lupo", "0936-06-15").
dob("Normand Marston", "0987-09-07").
dob("Numbers Perkins", "0987-10-07").
dob("Ofelia Perkins", "0957-05-13").
dob("Pedro Omalley", "0960-01-25").
dob("Randolph Marston", "0962-02-25").
dob("Rena Forsythe", "1034-11-18").
dob("Rodrick Forsythe", "1011-04-26").
dob("Rudolph Wortham", "0958-10-05").
dob("Sherrie Perkins", "1016-12-12").
dob("Stan Derosa", "1074-08-27").
dob("Theron Marston", "0985-07-26").
dob("Tomas Benavides", "1045-09-12").
dob("Tosha Derosa", "1100-08-19").
dob("Windy Wortham", "0984-06-23").
dob("Yen Marston", "0963-02-02").
dob("Yoko Holland", "0911-09-26").
dob("Adalberto Huss", "0931-04-18").
dob("Adela Sweat", "0821-12-19").
dob("Angelia Youngblood", "0923-10-07").
dob("Annabell Edge", "0871-07-05").
dob("Armando Huss", "0872-08-04").
dob("Ashleigh Cervantes", "0901-03-22").
dob("Audie Millet", "0896-11-29").
dob("Bret Hobbs", "0791-11-14").
dob("Bridget Landeros", "1013-01-02").
dob("Chad Huss", "0953-08-06").
dob("Clint Huss", "0902-04-03").
dob("Consuelo Huss", "0900-09-18").
dob("Cordell Huss", "0846-08-17").
dob("Cristopher Cummins", "0762-01-15").
dob("Cruz Stillwell", "0845-12-13").
dob("Devora Stillwell", "0846-06-24").
dob("Dortha Edge", "0869-12-28").
dob("Edythe Leahy", "0870-02-06").
dob("Elsy Edge", "0874-10-24").
dob("Evelia Edge", "0845-03-09").
dob("Howard Huss", "0904-08-02").
dob("Jenny Huss", "0871-10-21").
dob("Jewel Huss", "0930-03-17").
dob("Jocelyn Soliz", "0953-12-13").
dob("Kenton Edge", "0869-01-17").
dob("Ladonna Landeros", "0982-01-20").
dob("Leticia Landeros", "0956-02-19").
dob("Lionel Cervantes", "0899-10-20").
dob("Loren Youngblood", "0922-06-16").
dob("Luther Edge", "0845-05-12").
dob("Lyndon Huss", "0901-01-05").
dob("Lynetta Edge", "0896-04-08").
dob("Mallory Soliz", "0980-05-26").
dob("Marcelo Edge", "0871-10-24").
dob("Niesha Hobbs", "0786-07-09").
dob("Norris Kingsbury", "0811-09-12").
dob("Otis Stillwell", "0815-01-21").
dob("Page Edge", "0868-12-07").
dob("Patrick Millet", "0896-06-08").
dob("Pauline Huss", "0844-07-18").
dob("Rashad Landeros", "0980-06-14").
dob("Rickey Sweat", "0821-09-05").
dob("Rogelio Leahy", "0873-07-21").
dob("Shelton Soliz", "0952-10-13").
dob("Signe Landeros", "0981-06-06").
dob("Terence Landeros", "0955-09-10").
dob("Tosha Youngblood", "0953-01-04").
dob("Tresa Kingsbury", "0811-04-08").
dob("Vernell Cummins", "0762-01-27").
dob("Zachary Leahy", "0901-06-27").
dob("Zana Stillwell", "0814-03-22").
dob("Alysia Sage", "1003-04-22").
dob("Anibal Delapaz", "0995-12-06").
dob("Blaine Sage", "1026-12-15").
dob("Bonnie Sage", "0982-03-19").
dob("Briana Mcglothlin", "0972-09-02").
dob("Bryan Benoit", "0982-06-01").
dob("Charmain East", "1050-08-12").
dob("Dan Poore", "0895-02-07").
dob("Deidra East", "1025-07-27").
dob("Demetria Sage", "0999-01-20").
dob("Domonique Delapaz", "1022-04-29").
dob("Earlean Akin", "0915-04-07").
dob("Elbert Wyche", "1065-10-16").
dob("Emanuel Poore", "0920-03-09").
dob("Emelda Sage", "0972-06-28").
dob("Emmanuel Akin", "0912-01-17").
dob("Ernest Styles", "0957-09-03").
dob("Fernando Sage", "1034-12-17").
dob("Fidel Sage", "0951-01-14").
dob("Francisco Sage", "0974-12-15").
dob("Garth Sage", "0964-05-05").
dob("Giovanni Mcglothlin", "0972-07-02").
dob("Guy Sage", "0982-08-05").
dob("Herlinda Sage", "0948-02-11").
dob("Jerry Cawley", "0943-10-25").
dob("Jona Delapaz", "1025-07-29").
dob("Kena Sage", "1003-03-02").
dob("Kraig Sage", "1005-11-08").
dob("Kristine Sage", "0974-01-12").
dob("Leah Overstreet", "1006-04-23").
dob("Leann Sage", "1038-01-01").
dob("Lester Sage", "0975-12-29").
dob("Levi Mcglothlin", "1004-04-12").
dob("Lurline Poore", "0919-07-03").
dob("Lynetta Delapaz", "0999-10-27").
dob("Malcolm Sage", "0942-02-27").
dob("Natacha Benoit", "0979-08-01").
dob("Ollie Poore", "0892-10-06").
dob("Ramon East", "1026-04-17").
dob("Selina Sage", "0911-10-26").
dob("Seymour Sage", "0914-02-28").
dob("Sherita Wyche", "1092-08-03").
dob("Son Overstreet", "1008-11-14").
dob("Ta Wyche", "1067-03-31").
dob("Thomasena Overstreet", "0982-12-19").
dob("Tianna Styles", "0957-09-11").
dob("Vernice Cawley", "0942-01-26").
dob("Von Sage", "1015-10-23").
dob("Zachariah Overstreet", "0979-10-22").
dob("Zella Sage", "0939-09-01").
:- dynamic file_search_path/2.
:- multifile file_search_path/2.
file_search_path(library, Dir) :-
library_directory(Dir).
file_search_path(swi, A) :-
system:current_prolog_flag(home, A).
file_search_path(swi, A) :-
system:current_prolog_flag(shared_home, A).
file_search_path(library, app_config(lib)).
file_search_path(library, swi(library)).
file_search_path(library, swi(library/clp)).
file_search_path(library, A) :-
system:'$ext_library_directory'(A).
file_search_path(foreign, swi(A)) :-
system:
( current_prolog_flag(apple_universal_binary, true),
A='lib/fat-darwin'
).
file_search_path(path, A) :-
system:
( getenv('PATH', B),
current_prolog_flag(path_sep, C),
atomic_list_concat(D, C, B),
'$member'(A, D)
).
file_search_path(user_app_data, A) :-
system:'$xdg_prolog_directory'(data, A).
file_search_path(common_app_data, A) :-
system:'$xdg_prolog_directory'(common_data, A).
file_search_path(user_app_config, A) :-
system:'$xdg_prolog_directory'(config, A).
file_search_path(common_app_config, A) :-
system:'$xdg_prolog_directory'(common_config, A).
file_search_path(app_data, user_app_data('.')).
file_search_path(app_data, common_app_data('.')).
file_search_path(app_config, user_app_config('.')).
file_search_path(app_config, common_app_config('.')).
file_search_path(app_preferences, user_app_config('.')).
file_search_path(user_profile, app_preferences('.')).
file_search_path(app, swi(app)).
file_search_path(app, app_data(app)).
file_search_path(autoload, swi(library)).
file_search_path(autoload, pce(prolog/lib)).
file_search_path(autoload, app_config(lib)).
file_search_path(autoload, Dir) :-
'$autoload':'$ext_library_directory'(Dir).
file_search_path(pack, app_data(pack)).
file_search_path(library, PackLib) :-
'$pack':pack_dir(_Name, prolog, PackLib).
file_search_path(foreign, PackLib) :-
'$pack':pack_dir(_Name, foreign, PackLib).
file_search_path(app, AppDir) :-
'$pack':pack_dir(_Name, app, AppDir).
:- multifile prolog_list_goal/1.
:- dynamic type/2.
type("Aida Wang", person).
type("Alec Sinclair", person).
type("Alfredo Wang", person).
type("Alison Smock", person).
type("Alvaro Smock", person).
type("Alycia Coe", person).
type("Barabara Beltran", person).
type("Brian Beltran", person).
type("Carrol Woodson", person).
type("Christina Coe", person).
type("Christoper Coe", person).
type("Cortney Parmer", person).
type("Cythia Smock", person).
type("Daisy Beltran", person).
type("Dino Beltran", person).
type("Dominique Smock", person).
type("Dwight Hackworth", person).
type("Earle Coe", person).
type("Eli Smock", person).
type("Gayla Woodson", person).
type("Gene Smock", person).
type("Isiah Lutz", person).
type("Jamison Baptiste", person).
type("Kristen Toombs", person).
type("Lannie Smock", person).
type("Leeann Sinclair", person).
type("Leisa Lutz", person).
type("Lesley Lutz", person).
type("Lissa Coe", person).
type("Lonny Parmer", person).
type("Maria Baptiste", person).
type("Michelle Hackworth", person).
type("Noelia Lutz", person).
type("Orlando Beltran", person).
type("Reggie Coe", person).
type("Ricardo Hackworth", person).
type("Ryan Wang", person).
type("Shannon Beltran", person).
type("Shelli Beltran", person).
type("Stacia Toombs", person).
type("Tanner Beltran", person).
type("Tosha Beltran", person).
type("Tyson Woodson", person).
type("Ulysses Parmer", person).
type("Vicki Hackworth", person).
type("Vincent Lutz", person).
type("Virgil Hackworth", person).
type("Von Sinclair", person).
type("Wilbert Toombs", person).
type("Williams Smock", person).
type("Wm Parmer", person).
type("Angela Culver", person).
type("Anibal Stansberry", person).
type("Barbara Philpott", person).
type("Bev Gilmore", person).
type("Brigette Gilmore", person).
type("Celia Macmillan", person).
type("Conrad Stansberry", person).
type("Cordelia Wiggs", person).
type("David Wiggs", person).
type("Debra Stansberry", person).
type("Desiree Stansberry", person).
type("Diane Culver", person).
type("Dionne Stansberry", person).
type("Eliza Wiggs", person).
type("Emanuel Stansberry", person).
type("Frankie Hagerty", person).
type("Gail Culver", person).
type("Garry Gilmore", person).
type("Gillian Wiggs", person).
type("Glenda Culver", person).
type("Hayden Stansberry", person).
type("Howard Wiggs", person).
type("Hyun Hagerty", person).
type("Iva Stansberry", person).
type("Jordan Culver", person).
type("Jules Culver", person).
type("Justine Hagerty", person).
type("Kelvin Culver", person).
type("Kori Wiggs", person).
type("Laverna Stansberry", person).
type("Lester Stansberry", person).
type("Lincoln Velasco", person).
type("Lionel Culver", person).
type("Loren Culver", person).
type("Markus Hagerty", person).
type("Maurine Velasco", person).
type("Mickey Philpott", person).
type("Millard Stansberry", person).
type("Nikki Stansberry", person).
type("Oren Stansberry", person).
type("Quintin Hagerty", person).
type("Renate Stansberry", person).
type("Sona Stansberry", person).
type("Tad Macmillan", person).
type("Tamara Macmillan", person).
type("Terence Culver", person).
type("Tonya Culver", person).
type("Victor Stansberry", person).
type("Wilmer Hagerty", person).
type("Yolanda Philpott", person).
type("Adelaida Ricketts", person).
type("Benny Abrams", person).
type("Bobby Ricketts", person).
type("Bridget Solorio", person).
type("Brooks Ricketts", person).
type("Cicely Abrams", person).
type("Cordelia Zepeda", person).
type("Cory Ricketts", person).
type("Dee Ricketts", person).
type("Deidra Ricketts", person).
type("Dennis Ricketts", person).
type("Edmund Abrams", person).
type("Erin Ricketts", person).
type("Flora Ricketts", person).
type("Hoa Leija", person).
type("Jennifer Ricketts", person).
type("Kory Ricketts", person).
type("Kristie Abrams", person).
type("Kristopher Ricketts", person).
type("Lauren Brumbaugh", person).
type("Lora Ricketts", person).
type("Lyman Leija", person).
type("Madelyn Ricketts", person).
type("Maranda Ricketts", person).
type("Marlene Isaacs", person).
type("Melina Deming", person).
type("Micheal Leija", person).
type("Milton Brumbaugh", person).
type("Mona Leija", person).
type("Nick Solorio", person).
type("Orval Ricketts", person).
type("Paula Ricketts", person).
type("Randi Leija", person).
type("Raymond Leija", person).
type("Reed Abrams", person).
type("Reggie Brumbaugh", person).
type("Renea Ricketts", person).
type("Rhonda Ricketts", person).
type("Rocky Ricketts", person).
type("Rolanda Isaacs", person).
type("Rosalee Brumbaugh", person).
type("Samuel Ricketts", person).
type("Shane Leija", person).
type("Spencer Ricketts", person).
type("Terrell Isaacs", person).
type("Tiffanie Leija", person).
type("Tommy Zepeda", person).
type("Toney Ricketts", person).
type("Ulysses Deming", person).
type("Winnifred Ricketts", person).
type("Adella Schwarz", person).
type("Alberto Schwarz", person).
type("Antony Kinder", person).
type("Aura Schwarz", person).
type("Bernice Kinder", person).
type("Carmelita Schwarz", person).
type("Carter Bolen", person).
type("Clark Kinder", person).
type("Dawne Grover", person).
type("Delbert Menchaca", person).
type("Dillon Schwarz", person).
type("Dylan Schwarz", person).
type("Elbert Canada", person).
type("Elyse Canada", person).
type("Emilie Schwarz", person).
type("Eugene Schwarz", person).
type("Eugenio Schwarz", person).
type("Federico Schwarz", person).
type("Francis Grover", person).
type("Gustavo Grover", person).
type("Hank Schwarz", person).
type("Herbert Bolen", person).
type("Hope Schwarz", person).
type("Irish Schwarz", person).
type("Jeanette Byrd", person).
type("Jeremiah Schwarz", person).
type("Joanna Schwarz", person).
type("Judith Schwarz", person).
type("Kent Schwarz", person).
type("Kimberely Menchaca", person).
type("Lorina Kinder", person).
type("Magdalena Schwarz", person).
type("Nada Schwarz", person).
type("Odette Schwarz", person).
type("Omar Schwarz", person).
type("Pamula Schwarz", person).
type("Paula Bass", person).
type("Phylis Bolen", person).
type("Randi Bass", person).
type("Randi Schwarz", person).
type("Randolph Schwarz", person).
type("Riley Grover", person).
type("Rodolfo Byrd", person).
type("Ross Bolen", person).
type("Shawnta Schwarz", person).
type("Sona Kinder", person).
type("Sueann Bolen", person).
type("Tania Schwarz", person).
type("Tomas Bass", person).
type("Zelda Schwarz", person).
type("Adella Gaytan", person).
type("Alejandrina Luu", person).
type("Betsy Kimbrough", person).
type("Bev Branson", person).
type("Bobbie Luu", person).
type("Bradford Gaytan", person).
type("Casey Kimbrough", person).
type("Chuck Luu", person).
type("Cristal Luu", person).
type("Dennis Kimbrough", person).
type("Derrick Luu", person).
type("Ellen Nesbit", person).
type("Emanuel Luu", person).
type("Georgine Zelaya", person).
type("Glenda Carrell", person).
type("Hal Branson", person).
type("Hugo Kimbrough", person).
type("Jake Nesbit", person).
type("Jeremy Kimbrough", person).
type("Jeremy Zelaya", person).
type("Johnathon Zelaya", person).
type("Jona Carrell", person).
type("Joslyn Gerdes", person).
type("Joslyn Nesbit", person).
type("Jules Kimbrough", person).
type("Larry Coons", person).
type("Laurette Kimbrough", person).
type("Leeann Nesbit", person).
type("Lorine Luu", person).
type("Lurline Luu", person).
type("Melodie Bowens", person).
type("Micah Gerdes", person).
type("Micki Bowens", person).
type("Mona Coons", person).
type("Odette Kimbrough", person).
type("Oscar Gaytan", person).
type("Rigoberto Carrell", person).
type("Romona Kimbrough", person).
type("Roseanna Gaytan", person).
type("Shanda Branson", person).
type("Simone Nesbit", person).
type("Tamala Gerdes", person).
type("Tessie Branson", person).
type("Timothy Nesbit", person).
type("Vincenza Kimbrough", person).
type("Wilbur Gaytan", person).
type("Will Nesbit", person).
type("Williams Kimbrough", person).
type("Willis Bowens", person).
type("Xavier Zelaya", person).
type("Adella Omalley", person).
type("Anita Perkins", person).
type("Anton Omalley", person).
type("Bernardo Dasilva", person).
type("Bradley Perkins", person).
type("Bridget Omalley", person).
type("Buddy Perkins", person).
type("Carlton Perkins", person).
type("Chad Perkins", person).
type("Chrissy Dasilva", person).
type("Cicely Perkins", person).
type("Delores Dasilva", person).
type("Edwin Omalley", person).
type("Edythe Derosa", person).
type("Emmanuel Holland", person).
type("Haydee Radcliff", person).
type("Heather Omalley", person).
type("Jose Radcliff", person).
type("Justine Perkins", person).
type("Kanesha Omalley", person).
type("Korey Wortham", person).
type("Kraig Omalley", person).
type("Kristine Forsythe", person).
type("Lashanda Perkins", person).
type("Leonila Wortham", person).
type("Leroy Lupo", person).
type("Lester Perkins", person).
type("Lyndsey Benavides", person).
type("Magdalene Perkins", person).
type("Maurine Lupo", person).
type("Mel Perkins", person).
type("Micheal Perkins", person).
type("Minerva Lupo", person).
type("Monserrate Benavides", person).
type("Myron Lupo", person).
type("Normand Marston", person).
type("Numbers Perkins", person).
type("Ofelia Perkins", person).
type("Pedro Omalley", person).
type("Randolph Marston", person).
type("Rena Forsythe", person).
type("Rodrick Forsythe", person).
type("Rudolph Wortham", person).
type("Sherrie Perkins", person).
type("Stan Derosa", person).
type("Theron Marston", person).
type("Tomas Benavides", person).
type("Tosha Derosa", person).
type("Windy Wortham", person).
type("Yen Marston", person).
type("Yoko Holland", person).
type("Adalberto Huss", person).
type("Adela Sweat", person).
type("Angelia Youngblood", person).
type("Annabell Edge", person).
type("Armando Huss", person).
type("Ashleigh Cervantes", person).
type("Audie Millet", person).
type("Bret Hobbs", person).
type("Bridget Landeros", person).
type("Chad Huss", person).
type("Clint Huss", person).
type("Consuelo Huss", person).
type("Cordell Huss", person).
type("Cristopher Cummins", person).
type("Cruz Stillwell", person).
type("Devora Stillwell", person).
type("Dortha Edge", person).
type("Edythe Leahy", person).
type("Elsy Edge", person).
type("Evelia Edge", person).
type("Howard Huss", person).
type("Jenny Huss", person).
type("Jewel Huss", person).
type("Jocelyn Soliz", person).
type("Kenton Edge", person).
type("Ladonna Landeros", person).
type("Leticia Landeros", person).
type("Lionel Cervantes", person).
type("Loren Youngblood", person).
type("Luther Edge", person).
type("Lyndon Huss", person).
type("Lynetta Edge", person).
type("Mallory Soliz", person).
type("Marcelo Edge", person).
type("Niesha Hobbs", person).
type("Norris Kingsbury", person).
type("Otis Stillwell", person).
type("Page Edge", person).
type("Patrick Millet", person).
type("Pauline Huss", person).
type("Rashad Landeros", person).
type("Rickey Sweat", person).
type("Rogelio Leahy", person).
type("Shelton Soliz", person).
type("Signe Landeros", person).
type("Terence Landeros", person).
type("Tosha Youngblood", person).
type("Tresa Kingsbury", person).
type("Vernell Cummins", person).
type("Zachary Leahy", person).
type("Zana Stillwell", person).
type("Alysia Sage", person).
type("Anibal Delapaz", person).
type("Blaine Sage", person).
type("Bonnie Sage", person).
type("Briana Mcglothlin", person).
type("Bryan Benoit", person).
type("Charmain East", person).
type("Dan Poore", person).
type("Deidra East", person).
type("Demetria Sage", person).
type("Domonique Delapaz", person).
type("Earlean Akin", person).
type("Elbert Wyche", person).
type("Emanuel Poore", person).
type("Emelda Sage", person).
type("Emmanuel Akin", person).
type("Ernest Styles", person).
type("Fernando Sage", person).
type("Fidel Sage", person).
type("Francisco Sage", person).
type("Garth Sage", person).
type("Giovanni Mcglothlin", person).
type("Guy Sage", person).
type("Herlinda Sage", person).
type("Jerry Cawley", person).
type("Jona Delapaz", person).
type("Kena Sage", person).
type("Kraig Sage", person).
type("Kristine Sage", person).
type("Leah Overstreet", person).
type("Leann Sage", person).
type("Lester Sage", person).
type("Levi Mcglothlin", person).
type("Lurline Poore", person).
type("Lynetta Delapaz", person).
type("Malcolm Sage", person).
type("Natacha Benoit", person).
type("Ollie Poore", person).
type("Ramon East", person).
type("Selina Sage", person).
type("Seymour Sage", person).
type("Sherita Wyche", person).
type("Son Overstreet", person).
type("Ta Wyche", person).
type("Thomasena Overstreet", person).
type("Tianna Styles", person).
type("Vernice Cawley", person).
type("Von Sage", person).
type("Zachariah Overstreet", person).
type("Zella Sage", person).
grandfather(X, Y) :-
grandparent(X, Y),
male(Y).
:- dynamic expand_query/4.
:- multifile expand_query/4.
:- dynamic attribute/1.
attribute("personal assistant").
attribute("meditation").
attribute("health promotion specialist").
attribute("meteorology").
attribute("osteopath").
attribute("biology").
attribute("broadcast engineer").
attribute("meteorology").
attribute("oncologist").
attribute("dolls").
attribute("warehouse manager").
attribute("photography").
attribute("associate professor").
attribute("shogi").
attribute("sports therapist").
attribute("dominoes").
attribute("retail manager").
attribute("tether car").
attribute("immunologist").
attribute("architecture").
attribute("education administrator").
attribute("geocaching").
attribute("early years teacher").
attribute("trainspotting").
attribute("biomedical scientist").
attribute("bus spotting").
attribute("music tutor").
attribute("research").
attribute("clinical cytogeneticist").
attribute("geography").
attribute("ecologist").
attribute("microbiology").
attribute("barrister's clerk").
attribute("canoeing").
attribute("petroleum engineer").
attribute("learning").
attribute("clinical research associate").
attribute("dairy farming").
attribute("chief of staff").
attribute("fossil hunting").
attribute("occupational therapist").
attribute("sociology").
attribute("actuary").
attribute("finance").
attribute("police officer").
attribute("meditation").
attribute("sound technician").
attribute("wikipedia editing").
attribute("theatre manager").
attribute("radio-controlled car racing").
attribute("clinical biochemist").
attribute("social studies").
attribute("public relations officer").
attribute("judo").
attribute("music therapist").
attribute("flying disc").
attribute("librarian").
attribute("cricket").
attribute("building surveyor").
attribute("weightlifting").
attribute("fitness centre manager").
attribute("meditation").
attribute("oceanographer").
attribute("ballroom dancing").
attribute("historic buildings inspector").
attribute("microscopy").
attribute("chief marketing officer").
attribute("reading").
attribute("waste management officer").
attribute("laser tag").
attribute("medical sales representative").
attribute("hiking/backpacking").
attribute("community pharmacist").
attribute("audiophile").
attribute("pension scheme manager").
attribute("tennis polo").
attribute("armed forces logistics officer").
attribute("photography").
attribute("environmental education officer").
attribute("backgammon").
attribute("medical illustrator").
attribute("microscopy").
attribute("museum conservator").
attribute("herping").
attribute("optometrist").
attribute("philately").
attribute("further education lecturer").
attribute("birdwatching").
attribute("dancer").
attribute("shogi").
attribute("water engineer").
attribute("magnet fishing").
attribute("intelligence analyst").
attribute("table tennis").
attribute("fashion designer").
attribute("scuba diving").
attribute("doctor").
attribute("biology").
attribute("chartered accountant").
attribute("sea glass collecting").
attribute("speech and language therapist").
attribute("research").
attribute("clinical embryologist").
attribute("gongoozling").
attribute("community development worker").
attribute("benchmarking").
attribute("games developer").
attribute("sea glass collecting").
attribute("accommodation manager").
attribute("bowling").
attribute("conservation officer").
attribute("audiophile").
attribute("forensic scientist").
attribute("tea bag collecting").
attribute("pharmacologist").
attribute("model aircraft").
attribute("dance movement psychotherapist").
attribute("herping").
attribute("paediatric nurse").
attribute("figure skating").
attribute("research officer").
attribute("fossil hunting").
attribute("production designer").
attribute("airsoft").
attribute("community development worker").
attribute("whale watching").
attribute("clinical molecular geneticist").
attribute("pinball").
attribute("set designer").
attribute("research").
attribute("town planner").
attribute("flying model planes").
attribute("print production planner").
attribute("ant farming").
attribute("equality and diversity officer").
attribute("volleyball").
attribute("chartered loss adjuster").
attribute("gongoozling").
attribute("sales promotion account executive").
attribute("vehicle restoration").
attribute("banker").
attribute("car riding").
attribute("systems developer").
attribute("mycology").
attribute("chief financial officer").
attribute("table football").
attribute("regulatory affairs officer").
attribute("photography").
attribute("architect").
attribute("metal detecting").
attribute("health and safety inspector").
attribute("archery").
attribute("medical secretary").
attribute("reading").
attribute("careers adviser").
attribute("shortwave listening").
attribute("civil service administrator").
attribute("snowmobiling").
attribute("optometrist").
attribute("research").
attribute("print production planner").
attribute("religious studies").
attribute("arboriculturist").
attribute("cooking").
attribute("adult nurse").
attribute("kart racing").
attribute("commercial horticulturist").
attribute("darts").
attribute("conference centre manager").
attribute("herping").
attribute("journalist").
attribute("backgammon").
attribute("wellsite geologist").
attribute("herping").
attribute("community education officer").
attribute("ant farming").
attribute("investment analyst").
attribute("ephemera collecting").
attribute("trading standards officer").
attribute("bus spotting").
attribute("colour technologist").
attribute("research").
attribute("immigration officer").
attribute("croquet").
attribute("human resources officer").
attribute("leaves").
attribute("agricultural consultant").
attribute("antiquities").
attribute("fashion designer").
attribute("field hockey").
attribute("actuary").
attribute("leaves").
attribute("industrial designer").
attribute("auto audiophilia").
attribute("maintenance engineer").
attribute("magic").
attribute("data scientist").
attribute("people-watching").
attribute("health physicist").
attribute("social studies").
attribute("hospital doctor").
attribute("mineral collecting").
attribute("radiographer").
attribute("fusilately").
attribute("midwife").
attribute("surfing").
attribute("music therapist").
attribute("magic").
attribute("medical secretary").
attribute("story writing").
attribute("hospital pharmacist").
attribute("curling").
attribute("chemist").
attribute("museum visiting").
attribute("editor").
attribute("benchmarking").
attribute("technical brewer").
attribute("meteorology").
attribute("hospital pharmacist").
attribute("entrepreneurship").
attribute("learning disability nurse").
attribute("deltiology").
attribute("financial manager").
attribute("badminton").
attribute("chief executive officer").
attribute("flag football").
attribute("programme researcher").
attribute("shooting").
attribute("printmaker").
attribute("rock tumbling").
attribute("sports coach").
attribute("beekeeping").
attribute("trading standards officer").
attribute("ephemera collecting").
attribute("physiological scientist").
attribute("medical science").
attribute("immunologist").
attribute("microscopy").
attribute("advice worker").
attribute("leaves").
attribute("ambulance person").
attribute("philately").
attribute("tourism officer").
attribute("research").
attribute("solicitor").
attribute("horseshoes").
attribute("insurance account manager").
attribute("insect collecting").
attribute("police officer").
attribute("fencing").
attribute("quantity surveyor").
attribute("insect collecting").
attribute("building services engineer").
attribute("book collecting").
attribute("futures trader").
attribute("business").
attribute("prison officer").
attribute("fishkeeping").
attribute("web designer").
attribute("dolls").
attribute("therapeutic radiographer").
attribute("fitness").
attribute("planning and development surveyor").
attribute("paintball").
attribute("neurosurgeon").
attribute("vintage clothing").
attribute("sports administrator").
attribute("shuffleboard").
attribute("quarry manager").
attribute("sports memorabilia").
attribute("homeopath").
attribute("kart racing").
attribute("psychiatrist").
attribute("trapshooting").
attribute("wellsite geologist").
attribute("table tennis").
attribute("historic buildings inspector").
attribute("rock climbing").
attribute("rural practice surveyor").
attribute("gymnastics").
attribute("meteorologist").
attribute("auto audiophilia").
attribute("farm manager").
attribute("myrmecology").
attribute("minerals surveyor").
attribute("flower collecting and pressing").
attribute("textile designer").
attribute("baton twirling").
attribute("teaching laboratory technician").
attribute("metal detecting").
attribute("meteorologist").
attribute("radio-controlled model playing").
attribute("insurance broker").
attribute("fossicking").
attribute("early years teacher").
attribute("shopping").
attribute("curator").
attribute("satellite watching").
attribute("furniture designer").
attribute("carrier pigeons").
attribute("risk analyst").
attribute("publishing").
attribute("museum exhibitions officer").
attribute("learning").
attribute("pilot").
attribute("fishing").
attribute("human resources officer").
attribute("mini golf").
attribute("public relations officer").
attribute("beekeeping").
attribute("solicitor").
attribute("sailing").
attribute("broadcast engineer").
attribute("cycling").
attribute("chiropractor").
attribute("hobby horsing").
attribute("statistician").
attribute("dog walking").
attribute("musician").
attribute("life science").
attribute("economist").
attribute("leaves").
attribute("company secretary").
attribute("volleyball").
attribute("editorial assistant").
attribute("railway studies").
attribute("transport planner").
attribute("butterfly watching").
attribute("customer service manager").
attribute("magnet fishing").
attribute("camera operator").
attribute("insect collecting").
attribute("psychotherapist").
attribute("films").
attribute("scientific laboratory technician").
attribute("race walking").
attribute("travel agency manager").
attribute("dairy farming").
attribute("geologist").
attribute("wikipedia editing").
attribute("soil scientist").
attribute("kart racing").
attribute("optometrist").
attribute("people-watching").
attribute("banker").
attribute("whale watching").
attribute("media buyer").
attribute("shooting sports").
attribute("careers adviser").
attribute("debate").
attribute("garment technologist").
attribute("table tennis").
attribute("advertising art director").
attribute("archaeology").
attribute("market researcher").
attribute("lotology").
attribute("IT consultant").
attribute("stone collecting").
attribute("probation officer").
attribute("birdwatching").
attribute("marketing executive").
attribute("rock balancing").
attribute("investment banker").
attribute("karting").
attribute("product development scientist").
attribute("disc golf").
attribute("museum curator").
attribute("shortwave listening").
attribute("sales professional").
attribute("audiophile").
attribute("charity officer").
attribute("bus spotting").
attribute("charity fundraiser").
attribute("shortwave listening").
attribute("insurance account manager").
attribute("fishkeeping").
attribute("chartered certified accountant").
attribute("tea bag collecting").
attribute("environmental education officer").
attribute("phillumeny").
attribute("chemist").
attribute("stamp collecting").
attribute("research officer").
attribute("volleyball").
attribute("dispensing optician").
attribute("learning").
attribute("operations geologist").
attribute("shooting").
attribute("chartered loss adjuster").
attribute("audiophile").
attribute("bookseller").
attribute("knife collecting").
attribute("arts administrator").
attribute("learning").
attribute("mining engineer").
attribute("letterboxing").
attribute("museum exhibitions officer").
attribute("beekeeping").
attribute("forensic scientist").
attribute("bridge").
attribute("chief technology officer").
attribute("perfume").
attribute("fine artist").
attribute("films").
attribute("pharmacologist").
attribute("lacrosse").
attribute("training and development officer").
attribute("metal detecting").
attribute("operational investment banker").
attribute("speedcubing").
attribute("advertising copywriter").
attribute("scutelliphily").
attribute("probation officer").
attribute("psychology").
attribute("bookseller").
attribute("chess").
attribute("public relations account executive").
attribute("radio-controlled model playing").
attribute("academic librarian").
attribute("birdwatching").
attribute("editorial assistant").
attribute("antiquities").
attribute("product designer").
attribute("vehicle restoration").
attribute("accountant").
attribute("judo").
attribute("comptroller").
attribute("sea glass collecting").
attribute("naval architect").
attribute("neuroscience").
attribute("corporate investment banker").
attribute("whale watching").
attribute("midwife").
attribute("antiquities").
attribute("claims inspector").
attribute("croquet").
attribute("telecommunications researcher").
attribute("martial arts").
attribute("chartered public finance accountant").
attribute("microscopy").
attribute("advertising art director").
attribute("flower collecting and pressing").
attribute("clinical cytogeneticist").
attribute("publishing").
attribute("immunologist").
attribute("beekeeping").
attribute("economist").
attribute("table tennis").
attribute("adult guidance worker").
attribute("cornhole").
attribute("radio producer").
attribute("horseshoes").
attribute("database administrator").
attribute("flying disc").
attribute("paramedic").
attribute("ant farming").
attribute("air traffic controller").
attribute("architecture").
attribute("call centre manager").
attribute("ant farming").
attribute("network engineer").
attribute("cycling").
attribute("astronomer").
attribute("tennis polo").
attribute("astronomer").
attribute("fencing").
attribute("tax adviser").
attribute("vegetable farming").
attribute("hospital doctor").
attribute("vr gaming").
attribute("research officer").
attribute("sports memorabilia").
attribute("learning disability nurse").
attribute("martial arts").
attribute("electronics engineer").
attribute("mini golf").
attribute("financial adviser").
attribute("shortwave listening").
attribute("print production planner").
attribute("amusement park visiting").
attribute("chief executive officer").
attribute("aerospace").
attribute("contracting civil engineer").
attribute("rowing").
attribute("oceanographer").
attribute("book collecting").
attribute("trading standards officer").
attribute("pickleball").
attribute("call centre manager").
attribute("finance").
attribute("forensic scientist").
attribute("field hockey").
attribute("financial adviser").
attribute("birdwatching").
attribute("geographical information systems officer").
attribute("beach volleyball").
attribute("planning and development surveyor").
attribute("geocaching").
attribute("outdoor activities manager").
attribute("mineral collecting").
attribute("financial adviser").
attribute("psychology").
attribute("civil service administrator").
attribute("audiophile").
attribute("advertising art director").
attribute("medical science").
attribute("herbalist").
attribute("handball").
attribute("interpreter").
attribute("coin collecting").
attribute("pension scheme manager").
attribute("debate").
attribute("child psychotherapist").
attribute("action figure").
attribute("applications developer").
attribute("baking").
attribute("theatre director").
attribute("compact discs").
attribute("soil scientist").
attribute("learning").
attribute("programmer").
attribute("mycology").
attribute("race relations officer").
attribute("table tennis playing").
attribute("solicitor").
attribute("dolls").
attribute("dealer").
attribute("archery").
attribute("environmental consultant").
attribute("sea glass collecting").
attribute("recruitment consultant").
attribute("amateur astronomy").
attribute("chartered management accountant").
attribute("baking").
attribute("network engineer").
attribute("stone collecting").
attribute("geochemist").
attribute("geocaching").
attribute("quality manager").
attribute("bus spotting").
attribute("veterinary surgeon").
attribute("canoeing").
attribute("midwife").
attribute("films").
attribute("stage manager").
attribute("learning").
attribute("horticulturist").
attribute("research").
attribute("product designer").
attribute("learning").
attribute("systems developer").
attribute("baseball").
attribute("special effects artist").
attribute("trade fair visiting").
attribute("private music teacher").
attribute("railway studies").
attribute("technical brewer").
attribute("bodybuilding").
attribute("charity fundraiser").
attribute("button collecting").
attribute("sales professional").
attribute("lacrosse").
attribute("telecommunications researcher").
attribute("birdwatching").
attribute("merchant navy officer").
attribute("volleyball").
attribute("pilot").
attribute("mineral collecting").
attribute("sales professional").
attribute("antiquing").
attribute("scientific laboratory technician").
attribute("sea glass collecting").
attribute("interior and spatial designer").
attribute("skiing").
attribute("health service manager").
attribute("shortwave listening").
attribute("politician's assistant").
attribute("research").
attribute("community arts worker").
attribute("rock balancing").
attribute("tourism officer").
attribute("beekeeping").
attribute("careers information officer").
attribute("aircraft spotting").
attribute("TEFL teacher").
attribute("audiophile").
attribute("corporate treasurer").
attribute("vintage clothing").
attribute("adult guidance worker").
attribute("microscopy").
attribute("camera operator").
attribute("vacation").
attribute("ergonomist").
attribute("linguistics").
attribute("production engineer").
attribute("rowing").
attribute("tour manager").
attribute("audiophile").
attribute("maintenance engineer").
attribute("cricket").
attribute("merchant navy officer").
attribute("flying disc").
attribute("rural practice surveyor").
attribute("meditation").
attribute("pilot").
attribute("microscopy").
attribute("IT trainer").
attribute("satellite watching").
attribute("higher education lecturer").
attribute("eating").
attribute("corporate treasurer").
attribute("trainspotting").
attribute("electrical engineer").
attribute("shortwave listening").
attribute("psychologist").
attribute("fencing").
attribute("editor").
attribute("snowshoeing").
attribute("fitness centre manager").
attribute("antiquities").
attribute("paediatric nurse").
attribute("leaves").
attribute("glass blower").
attribute("noodling").
attribute("call centre manager").
attribute("mineral collecting").
attribute("location manager").
attribute("fishkeeping").
attribute("press photographer").
attribute("leaves").
attribute("warden").
attribute("meteorology").
attribute("publishing copy").
attribute("microscopy").
attribute("information systems manager").
attribute("philately").
attribute("gaffer").
attribute("ant-keeping").
attribute("restaurant manager").
attribute("ant-keeping").
attribute("herpetologist").
attribute("benchmarking").
attribute("nutritional therapist").
attribute("canyoning").
attribute("firefighter").
attribute("radio-controlled model playing").
attribute("social worker").
attribute("archaeology").
attribute("estate manager").
attribute("darts").
attribute("video editor").
attribute("audiophile").
attribute("food technologist").
attribute("railway studies").
attribute("quarry manager").
attribute("architecture").
attribute("optician").
attribute("audiophile").
attribute("artist").
attribute("art collecting").
attribute("haematologist").
attribute("fishkeeping").
attribute("youth worker").
attribute("trainspotting").
attribute("office manager").
attribute("role-playing games").
attribute("charity officer").
attribute("die-cast toy").
attribute("animal nutritionist").
attribute("die-cast toy").
attribute("publishing copy").
attribute("research").
attribute("chartered accountant").
attribute("poker").
attribute("civil service fast streamer").
attribute("beekeeping").
attribute("tax inspector").
attribute("longboarding").
attribute("actor").
attribute("shogi").
attribute("sales executive").
attribute("benchmarking").
attribute("midwife").
attribute("radio-controlled model collecting").
attribute("animal technologist").
attribute("ant farming").
attribute("acupuncturist").
attribute("driving").
attribute("occupational therapist").
attribute("lotology").
attribute("international aid worker").
attribute("ice hockey").
attribute("barrister's clerk").
attribute("go").
attribute("mining engineer").
attribute("meditation").
attribute("investment analyst").
attribute("darts").
attribute("mining engineer").
attribute("research").
attribute("programmer").
attribute("flying disc").
attribute("armed forces logistics officer").
attribute("topiary").
attribute("medical illustrator").
attribute("ice hockey").
attribute("patent attorney").
attribute("fitness").
attribute("brewing technologist").
attribute("coin collecting").
attribute("lecturer").
attribute("meditation").
attribute("amenity horticulturist").
attribute("shooting sports").
attribute("recruitment consultant").
attribute("microscopy").
attribute("barista").
attribute("swimming").
attribute("agricultural engineer").
attribute("antiquing").
attribute("materials engineer").
attribute("sea glass collecting").
attribute("doctor").
attribute("antiquities").
attribute("musician").
attribute("life science").
attribute("horticultural consultant").
attribute("rughooking").
attribute("dramatherapist").
attribute("video game collecting").
attribute("exhibition designer").
attribute("rail transport modelling").
attribute("careers adviser").
attribute("ant farming").
attribute("community pharmacist").
attribute("esports").
attribute("waste management officer").
attribute("fusilately").
attribute("patent attorney").
attribute("railway studies").
attribute("records manager").
attribute("high-power rocketry").
attribute("building surveyor").
attribute("reading").
attribute("psychiatric nurse").
attribute("dandyism").
attribute("therapeutic radiographer").
attribute("element collecting").
attribute("radiation protection practitioner").
attribute("museum visiting").
attribute("environmental education officer").
attribute("medical science").
attribute("higher education careers adviser").
attribute("bus riding").
attribute("educational psychologist").
attribute("vintage clothing").
attribute("conference centre manager").
attribute("research").
attribute("licensed conveyancer").
attribute("sea glass collecting").
attribute("technical sales engineer").
attribute("gymnastics").
attribute("wellsite geologist").
attribute("video gaming").
attribute("architect").
attribute("sea glass collecting").
attribute("government social research officer").
attribute("wikipedia editing").
attribute("set designer").
attribute("ant farming").
attribute("chartered loss adjuster").
attribute("surfing").
attribute("broadcast engineer").
attribute("skateboarding").
attribute("diagnostic radiographer").
attribute("laser tag").
attribute("warden").
attribute("farming").
attribute("fast food restaurant manager").
attribute("breakdancing").
attribute("astronomer").
attribute("lapel pins").
attribute("clothing technologist").
attribute("railway studies").
attribute("careers adviser").
attribute("insect collecting").
attribute("ceramics designer").
attribute("meteorology").
attribute("land surveyor").
attribute("hooping").
attribute("clinical scientist").
attribute("fossil hunting").
attribute("ergonomist").
attribute("story writing").
attribute("multimedia specialist").
attribute("meditation").
attribute("market researcher").
attribute("fishkeeping").
attribute("site engineer").
attribute("fishing").
attribute("office manager").
attribute("jurisprudential").
attribute("tourist information centre manager").
attribute("radio-controlled car racing").
attribute("teacher").
attribute("whale watching").
great_aunt(X, Y) :-
grandparent(X, A),
sister(A, Y).
grandparent(X, Y) :-
parent(X, Z),
parent(Z, Y).
grandmother(X, Y) :-
grandparent(X, Y),
female(Y).
:- dynamic friend_/2.
friend_("Aida Wang", "Michelle Hackworth").
friend_("Aida Wang", "Lincoln Velasco").
friend_("Aida Wang", "Tomas Bass").
friend_("Alec Sinclair", "Kory Ricketts").
friend_("Alec Sinclair", "Melodie Bowens").
friend_("Alfredo Wang", "Ricardo Hackworth").
friend_("Alfredo Wang", "Melina Deming").
friend_("Alfredo Wang", "Eugenio Schwarz").
friend_("Alfredo Wang", "Devora Stillwell").
friend_("Alison Smock", "Lester Stansberry").
friend_("Alvaro Smock", "Barabara Beltran").
friend_("Alvaro Smock", "Erin Ricketts").
friend_("Alvaro Smock", "Lorina Kinder").
friend_("Alvaro Smock", "Randi Schwarz").
friend_("Alvaro Smock", "Riley Grover").
friend_("Alvaro Smock", "Leroy Lupo").
friend_("Alycia Coe", "Zana Stillwell").
friend_("Barabara Beltran", "Madelyn Ricketts").
friend_("Barabara Beltran", "Rodolfo Byrd").
friend_("Barabara Beltran", "Devora Stillwell").
friend_("Brian Beltran", "Virgil Hackworth").
friend_("Brian Beltran", "Tiffanie Leija").
friend_("Brian Beltran", "Hank Schwarz").
friend_("Brian Beltran", "Kenton Edge").
friend_("Christina Coe", "Noelia Lutz").
friend_("Christina Coe", "Mona Leija").
friend_("Christina Coe", "Haydee Radcliff").
friend_("Christina Coe", "Giovanni Mcglothlin").
friend_("Christoper Coe", "Lionel Culver").
friend_("Christoper Coe", "Antony Kinder").
friend_("Christoper Coe", "Maurine Lupo").
friend_("Cortney Parmer", "Shannon Beltran").
friend_("Cortney Parmer", "Virgil Hackworth").
friend_("Cortney Parmer", "Monserrate Benavides").
friend_("Cythia Smock", "Benny Abrams").
friend_("Cythia Smock", "Cordell Huss").
friend_("Cythia Smock", "Emelda Sage").
friend_("Cythia Smock", "Ollie Poore").
friend_("Daisy Beltran", "Angela Culver").
friend_("Daisy Beltran", "Vernice Cawley").
friend_("Dino Beltran", "Desiree Stansberry").
friend_("Dino Beltran", "Toney Ricketts").
friend_("Dino Beltran", "Dillon Schwarz").
friend_("Dino Beltran", "Paula Bass").
friend_("Dino Beltran", "Emmanuel Holland").
friend_("Dominique Smock", "Derrick Luu").
friend_("Dominique Smock", "Chad Huss").
friend_("Dominique Smock", "Ernest Styles").
friend_("Dwight Hackworth", "Jeremiah Schwarz").
friend_("Dwight Hackworth", "Lorina Kinder").
friend_("Dwight Hackworth", "Cicely Perkins").
friend_("Dwight Hackworth", "Dortha Edge").
friend_("Dwight Hackworth", "Tianna Styles").
friend_("Earle Coe", "Celia Macmillan").
friend_("Earle Coe", "Kori Wiggs").
friend_("Earle Coe", "Kristopher Ricketts").
friend_("Earle Coe", "Derrick Luu").
friend_("Eli Smock", "Kristen Toombs").
friend_("Eli Smock", "Celia Macmillan").
friend_("Eli Smock", "Laurette Kimbrough").
friend_("Gayla Woodson", "Lorina Kinder").
friend_("Gene Smock", "Deidra East").
friend_("Isiah Lutz", "Lorina Kinder").
friend_("Isiah Lutz", "Williams Kimbrough").
friend_("Jamison Baptiste", "Gail Culver").
friend_("Jamison Baptiste", "Rolanda Isaacs").
friend_("Jamison Baptiste", "Numbers Perkins").
friend_("Jamison Baptiste", "Annabell Edge").
friend_("Jamison Baptiste", "Zana Stillwell").
friend_("Kristen Toombs", "Joslyn Nesbit").
friend_("Lannie Smock", "Bradford Gaytan").
friend_("Lannie Smock", "Hal Branson").
friend_("Lannie Smock", "Korey Wortham").
friend_("Leeann Sinclair", "Rudolph Wortham").
friend_("Leeann Sinclair", "Angelia Youngblood").
friend_("Leeann Sinclair", "Dortha Edge").
friend_("Leisa Lutz", "Tessie Branson").
friend_("Lesley Lutz", "Micheal Leija").
friend_("Lesley Lutz", "Cristopher Cummins").
friend_("Lesley Lutz", "Elsy Edge").
friend_("Lissa Coe", "Shelton Soliz").
friend_("Lonny Parmer", "Elyse Canada").
friend_("Lonny Parmer", "Magdalena Schwarz").
friend_("Lonny Parmer", "Cicely Perkins").
friend_("Maria Baptiste", "Hyun Hagerty").
friend_("Maria Baptiste", "Kelvin Culver").
friend_("Maria Baptiste", "Timothy Nesbit").
friend_("Maria Baptiste", "Guy Sage").
friend_("Michelle Hackworth", "Bradley Perkins").
friend_("Michelle Hackworth", "Fernando Sage").
friend_("Michelle Hackworth", "Levi Mcglothlin").
friend_("Noelia Lutz", "Markus Hagerty").
friend_("Noelia Lutz", "Pedro Omalley").
friend_("Noelia Lutz", "Natacha Benoit").
friend_("Orlando Beltran", "Loren Culver").
friend_("Reggie Coe", "Dylan Schwarz").
friend_("Reggie Coe", "Kimberely Menchaca").
friend_("Reggie Coe", "Nada Schwarz").
friend_("Reggie Coe", "Melodie Bowens").
friend_("Ricardo Hackworth", "Lora Ricketts").
friend_("Ryan Wang", "Audie Millet").
friend_("Shannon Beltran", "Alberto Schwarz").
friend_("Shannon Beltran", "Ta Wyche").
friend_("Shelli Beltran", "Vincent Lutz").
friend_("Shelli Beltran", "Anibal Stansberry").
friend_("Stacia Toombs", "Tanner Beltran").
friend_("Stacia Toombs", "Debra Stansberry").
friend_("Stacia Toombs", "Emmanuel Holland").
friend_("Stacia Toombs", "Korey Wortham").
friend_("Stacia Toombs", "Jona Delapaz").
friend_("Tanner Beltran", "Adelaida Ricketts").
friend_("Tanner Beltran", "Jona Delapaz").
friend_("Tosha Beltran", "Conrad Stansberry").
friend_("Tosha Beltran", "Milton Brumbaugh").
friend_("Tosha Beltran", "Shawnta Schwarz").
friend_("Tosha Beltran", "Alejandrina Luu").
friend_("Tosha Beltran", "Shanda Branson").
friend_("Tyson Woodson", "Brooks Ricketts").
friend_("Tyson Woodson", "Rocky Ricketts").
friend_("Tyson Woodson", "Dawne Grover").
friend_("Tyson Woodson", "Johnathon Zelaya").
friend_("Tyson Woodson", "Chad Huss").
friend_("Ulysses Parmer", "Odette Schwarz").
friend_("Ulysses Parmer", "Bradley Perkins").
friend_("Ulysses Parmer", "Annabell Edge").
friend_("Vicki Hackworth", "Pamula Schwarz").
friend_("Vicki Hackworth", "Anibal Delapaz").
friend_("Vicki Hackworth", "Bonnie Sage").
friend_("Vicki Hackworth", "Lester Sage").
friend_("Vincent Lutz", "Laverna Stansberry").
friend_("Virgil Hackworth", "Lionel Culver").
friend_("Virgil Hackworth", "Gustavo Grover").
friend_("Virgil Hackworth", "Herbert Bolen").
friend_("Virgil Hackworth", "Cicely Perkins").
friend_("Von Sinclair", "Quintin Hagerty").
friend_("Von Sinclair", "Bret Hobbs").
friend_("Wilbert Toombs", "Terrell Isaacs").
friend_("Williams Smock", "Laverna Stansberry").
friend_("Williams Smock", "Monserrate Benavides").
friend_("Williams Smock", "Vernice Cawley").
friend_("Wm Parmer", "Kori Wiggs").
friend_("Wm Parmer", "Herbert Bolen").
friend_("Wm Parmer", "Alejandrina Luu").
friend_("Wm Parmer", "Hal Branson").
friend_("Wm Parmer", "Stan Derosa").
friend_("Wm Parmer", "Jerry Cawley").
friend_("Angela Culver", "Orval Ricketts").
friend_("Angela Culver", "Emilie Schwarz").
friend_("Angela Culver", "Niesha Hobbs").
friend_("Barbara Philpott", "Erin Ricketts").
friend_("Barbara Philpott", "Shanda Branson").
friend_("Bev Gilmore", "Francis Grover").
friend_("Bev Gilmore", "Joanna Schwarz").
friend_("Brigette Gilmore", "Otis Stillwell").
friend_("Brigette Gilmore", "Kraig Sage").
friend_("Brigette Gilmore", "Sherita Wyche").
friend_("Celia Macmillan", "Adella Gaytan").
friend_("Conrad Stansberry", "Blaine Sage").
friend_("Cordelia Wiggs", "Adelaida Ricketts").
friend_("Cordelia Wiggs", "Hope Schwarz").
friend_("David Wiggs", "Hayden Stansberry").
friend_("David Wiggs", "Dee Ricketts").
friend_("David Wiggs", "Flora Ricketts").
friend_("David Wiggs", "Emilie Schwarz").
friend_("Debra Stansberry", "Emmanuel Akin").
friend_("Debra Stansberry", "Leah Overstreet").
friend_("Desiree Stansberry", "Jona Carrell").
friend_("Desiree Stansberry", "Monserrate Benavides").
friend_("Desiree Stansberry", "Armando Huss").
friend_("Desiree Stansberry", "Marcelo Edge").
friend_("Dionne Stansberry", "Rudolph Wortham").
friend_("Dionne Stansberry", "Elsy Edge").
friend_("Eliza Wiggs", "Hayden Stansberry").
friend_("Eliza Wiggs", "Lyndon Huss").
friend_("Emanuel Stansberry", "Randi Bass").
friend_("Emanuel Stansberry", "Elsy Edge").
friend_("Emanuel Stansberry", "Jenny Huss").
friend_("Emanuel Stansberry", "Seymour Sage").
friend_("Frankie Hagerty", "Willis Bowens").
friend_("Frankie Hagerty", "Rudolph Wortham").
friend_("Frankie Hagerty", "Armando Huss").
friend_("Frankie Hagerty", "Domonique Delapaz").
friend_("Frankie Hagerty", "Selina Sage").
friend_("Gail Culver", "Millard Stansberry").
friend_("Gail Culver", "Rocky Ricketts").
friend_("Gail Culver", "Heather Omalley").
friend_("Gail Culver", "Justine Perkins").
friend_("Gail Culver", "Lionel Cervantes").
friend_("Gail Culver", "Norris Kingsbury").
friend_("Garry Gilmore", "Hayden Stansberry").
friend_("Garry Gilmore", "Magdalena Schwarz").
friend_("Garry Gilmore", "Odette Schwarz").
friend_("Gillian Wiggs", "Signe Landeros").
friend_("Gillian Wiggs", "Terence Landeros").
friend_("Glenda Culver", "Roseanna Gaytan").
friend_("Howard Wiggs", "Adella Schwarz").
friend_("Howard Wiggs", "Laurette Kimbrough").
friend_("Hyun Hagerty", "Victor Stansberry").
friend_("Hyun Hagerty", "Federico Schwarz").
friend_("Hyun Hagerty", "Zelda Schwarz").
friend_("Hyun Hagerty", "Bradford Gaytan").
friend_("Hyun Hagerty", "Bernardo Dasilva").
friend_("Hyun Hagerty", "Carlton Perkins").
friend_("Hyun Hagerty", "Cruz Stillwell").
friend_("Jordan Culver", "Quintin Hagerty").
friend_("Jordan Culver", "Shawnta Schwarz").
friend_("Jordan Culver", "Delores Dasilva").
friend_("Jules Culver", "Joslyn Nesbit").
friend_("Jules Culver", "Emmanuel Holland").
friend_("Jules Culver", "Francisco Sage").
friend_("Justine Hagerty", "Carmelita Schwarz").
friend_("Kelvin Culver", "Markus Hagerty").
friend_("Kelvin Culver", "Dennis Ricketts").
friend_("Kelvin Culver", "Madelyn Ricketts").
friend_("Kelvin Culver", "Paula Ricketts").
friend_("Kelvin Culver", "Carmelita Schwarz").
friend_("Kelvin Culver", "Shanda Branson").
friend_("Kelvin Culver", "Micheal Perkins").
friend_("Kelvin Culver", "Thomasena Overstreet").
friend_("Kori Wiggs", "Rodrick Forsythe").
friend_("Laverna Stansberry", "Otis Stillwell").
friend_("Lester Stansberry", "Markus Hagerty").
friend_("Lester Stansberry", "Delores Dasilva").
friend_("Lester Stansberry", "Adalberto Huss").
friend_("Lester Stansberry", "Evelia Edge").
friend_("Lincoln Velasco", "Lionel Culver").
friend_("Lincoln Velasco", "Bobby Ricketts").
friend_("Lincoln Velasco", "Nick Solorio").
friend_("Lincoln Velasco", "Pedro Omalley").
friend_("Lincoln Velasco", "Edythe Leahy").
friend_("Lincoln Velasco", "Ramon East").
friend_("Lionel Culver", "Paula Ricketts").
friend_("Lionel Culver", "Bonnie Sage").
friend_("Loren Culver", "Magdalena Schwarz").
friend_("Loren Culver", "Dortha Edge").
friend_("Markus Hagerty", "Herbert Bolen").
friend_("Markus Hagerty", "Bradley Perkins").
friend_("Markus Hagerty", "Lashanda Perkins").
friend_("Markus Hagerty", "Charmain East").
friend_("Maurine Velasco", "Willis Bowens").
friend_("Maurine Velasco", "Normand Marston").
friend_("Mickey Philpott", "Sherrie Perkins").
friend_("Millard Stansberry", "Nikki Stansberry").
friend_("Millard Stansberry", "Maranda Ricketts").
friend_("Millard Stansberry", "Paula Bass").
friend_("Millard Stansberry", "Blaine Sage").
friend_("Nikki Stansberry", "Paula Ricketts").
friend_("Nikki Stansberry", "Ellen Nesbit").
friend_("Nikki Stansberry", "Leann Sage").
friend_("Oren Stansberry", "Micheal Leija").
friend_("Quintin Hagerty", "Nada Schwarz").
friend_("Quintin Hagerty", "Briana Mcglothlin").
friend_("Renate Stansberry", "Timothy Nesbit").
friend_("Renate Stansberry", "Giovanni Mcglothlin").
friend_("Sona Stansberry", "Cory Ricketts").
friend_("Tad Macmillan", "Elbert Canada").
friend_("Tad Macmillan", "Omar Schwarz").
friend_("Tad Macmillan", "Mona Coons").
friend_("Tamara Macmillan", "Ellen Nesbit").
friend_("Tamara Macmillan", "Luther Edge").
friend_("Tamara Macmillan", "Fernando Sage").
friend_("Victor Stansberry", "Tomas Bass").
friend_("Victor Stansberry", "Alejandrina Luu").
friend_("Victor Stansberry", "Minerva Lupo").
friend_("Wilmer Hagerty", "Jerry Cawley").
friend_("Yolanda Philpott", "Johnathon Zelaya").
friend_("Yolanda Philpott", "Jenny Huss").
friend_("Adelaida Ricketts", "Nada Schwarz").
friend_("Adelaida Ricketts", "Wilbur Gaytan").
friend_("Adelaida Ricketts", "Emanuel Poore").
friend_("Adelaida Ricketts", "Ollie Poore").
friend_("Benny Abrams", "Jeremy Zelaya").
friend_("Benny Abrams", "Lurline Poore").
friend_("Bobby Ricketts", "Thomasena Overstreet").
friend_("Bridget Solorio", "Madelyn Ricketts").
friend_("Bridget Solorio", "Judith Schwarz").
friend_("Bridget Solorio", "Rudolph Wortham").
friend_("Bridget Solorio", "Dortha Edge").
friend_("Brooks Ricketts", "Hugo Kimbrough").
friend_("Cicely Abrams", "Joslyn Gerdes").
friend_("Cicely Abrams", "Roseanna Gaytan").
friend_("Cicely Abrams", "Monserrate Benavides").
friend_("Cicely Abrams", "Emelda Sage").
friend_("Cicely Abrams", "Jona Delapaz").
friend_("Cordelia Zepeda", "Leticia Landeros").
friend_("Cory Ricketts", "Adella Gaytan").
friend_("Dee Ricketts", "Emmanuel Akin").
friend_("Dennis Ricketts", "Toney Ricketts").
friend_("Dennis Ricketts", "Francis Grover").
friend_("Dennis Ricketts", "Odette Schwarz").
friend_("Dennis Ricketts", "Magdalene Perkins").
friend_("Edmund Abrams", "Kristopher Ricketts").
friend_("Edmund Abrams", "Lauren Brumbaugh").
friend_("Edmund Abrams", "Herbert Bolen").
friend_("Edmund Abrams", "Theron Marston").
friend_("Erin Ricketts", "Rhonda Ricketts").
friend_("Erin Ricketts", "Dennis Kimbrough").
friend_("Erin Ricketts", "Emanuel Luu").
friend_("Hoa Leija", "Eugenio Schwarz").
friend_("Hoa Leija", "Rudolph Wortham").
friend_("Jennifer Ricketts", "Paula Bass").
friend_("Kory Ricketts", "Lauren Brumbaugh").
friend_("Kory Ricketts", "Antony Kinder").
friend_("Kory Ricketts", "Armando Huss").
friend_("Kory Ricketts", "Patrick Millet").
friend_("Kristie Abrams", "Orval Ricketts").
friend_("Kristie Abrams", "Delores Dasilva").
friend_("Kristie Abrams", "Chad Huss").
friend_("Kristie Abrams", "Lionel Cervantes").
friend_("Lauren Brumbaugh", "Randi Leija").
friend_("Lauren Brumbaugh", "Alberto Schwarz").
friend_("Lauren Brumbaugh", "Kanesha Omalley").
friend_("Lauren Brumbaugh", "Demetria Sage").
friend_("Lora Ricketts", "Emanuel Poore").
friend_("Lyman Leija", "Anton Omalley").
friend_("Lyman Leija", "Dortha Edge").
friend_("Maranda Ricketts", "Ashleigh Cervantes").
friend_("Maranda Ricketts", "Jerry Cawley").
friend_("Marlene Isaacs", "Tommy Zepeda").
friend_("Marlene Isaacs", "Nada Schwarz").
friend_("Marlene Isaacs", "Glenda Carrell").
friend_("Marlene Isaacs", "Oscar Gaytan").
friend_("Marlene Isaacs", "Chrissy Dasilva").
friend_("Marlene Isaacs", "Rogelio Leahy").
friend_("Melina Deming", "Fernando Sage").
friend_("Micheal Leija", "Carter Bolen").
friend_("Micheal Leija", "Jules Kimbrough").
friend_("Micheal Leija", "Bridget Omalley").
friend_("Micheal Leija", "Chrissy Dasilva").
friend_("Micheal Leija", "Magdalene Perkins").
friend_("Micheal Leija", "Fernando Sage").
friend_("Mona Leija", "Renea Ricketts").
friend_("Mona Leija", "Randi Schwarz").
friend_("Mona Leija", "Ross Bolen").
friend_("Mona Leija", "Casey Kimbrough").
friend_("Nick Solorio", "Pamula Schwarz").
friend_("Orval Ricketts", "Johnathon Zelaya").
friend_("Orval Ricketts", "Heather Omalley").
friend_("Orval Ricketts", "Pauline Huss").
friend_("Paula Ricketts", "Paula Bass").
friend_("Paula Ricketts", "Tomas Bass").
friend_("Paula Ricketts", "Cristopher Cummins").
friend_("Paula Ricketts", "Tresa Kingsbury").
friend_("Randi Leija", "Sherrie Perkins").
friend_("Randi Leija", "Adalberto Huss").
friend_("Randi Leija", "Blaine Sage").
friend_("Raymond Leija", "Hank Schwarz").
friend_("Raymond Leija", "Pamula Schwarz").
friend_("Raymond Leija", "Deidra East").
friend_("Reed Abrams", "Theron Marston").
friend_("Reggie Brumbaugh", "Pedro Omalley").
friend_("Renea Ricketts", "Jona Carrell").
friend_("Renea Ricketts", "Bernardo Dasilva").
friend_("Renea Ricketts", "Demetria Sage").
friend_("Renea Ricketts", "Ta Wyche").
friend_("Rhonda Ricketts", "Shane Leija").
friend_("Rhonda Ricketts", "Kena Sage").
friend_("Rhonda Ricketts", "Natacha Benoit").
friend_("Rocky Ricketts", "Cristal Luu").
friend_("Rocky Ricketts", "Minerva Lupo").
friend_("Rocky Ricketts", "Lynetta Delapaz").
friend_("Rolanda Isaacs", "Elyse Canada").
friend_("Rosalee Brumbaugh", "Zelda Schwarz").
friend_("Rosalee Brumbaugh", "Stan Derosa").
friend_("Rosalee Brumbaugh", "Chad Huss").
friend_("Rosalee Brumbaugh", "Son Overstreet").
friend_("Samuel Ricketts", "Malcolm Sage").
friend_("Spencer Ricketts", "Judith Schwarz").
friend_("Terrell Isaacs", "Eugenio Schwarz").
friend_("Terrell Isaacs", "Tamala Gerdes").
friend_("Terrell Isaacs", "Zana Stillwell").
friend_("Tiffanie Leija", "Tomas Benavides").
friend_("Tiffanie Leija", "Clint Huss").
friend_("Tiffanie Leija", "Devora Stillwell").
friend_("Tommy Zepeda", "Kenton Edge").
friend_("Toney Ricketts", "Timothy Nesbit").
friend_("Toney Ricketts", "Chad Perkins").
friend_("Ulysses Deming", "Adalberto Huss").
friend_("Winnifred Ricketts", "Irish Schwarz").
friend_("Winnifred Ricketts", "Randolph Marston").
friend_("Winnifred Ricketts", "Edythe Leahy").
friend_("Adella Schwarz", "Mona Coons").
friend_("Adella Schwarz", "Yoko Holland").
friend_("Alberto Schwarz", "Earlean Akin").
friend_("Antony Kinder", "Joslyn Gerdes").
friend_("Antony Kinder", "Alysia Sage").
friend_("Aura Schwarz", "Bev Branson").
friend_("Aura Schwarz", "Cruz Stillwell").
friend_("Aura Schwarz", "Kenton Edge").
friend_("Aura Schwarz", "Alysia Sage").
friend_("Bernice Kinder", "Carlton Perkins").
friend_("Carmelita Schwarz", "Ramon East").
friend_("Carter Bolen", "Tomas Benavides").
friend_("Clark Kinder", "Jeremy Kimbrough").
friend_("Dawne Grover", "Evelia Edge").
friend_("Dawne Grover", "Rashad Landeros").
friend_("Dawne Grover", "Leann Sage").
friend_("Delbert Menchaca", "Magdalene Perkins").
friend_("Delbert Menchaca", "Rena Forsythe").
friend_("Delbert Menchaca", "Vernice Cawley").
friend_("Dillon Schwarz", "Randi Bass").
friend_("Dillon Schwarz", "Numbers Perkins").
friend_("Dillon Schwarz", "Natacha Benoit").
friend_("Dylan Schwarz", "Federico Schwarz").
friend_("Dylan Schwarz", "Simone Nesbit").
friend_("Elbert Canada", "Dortha Edge").
friend_("Elbert Canada", "Zella Sage").
friend_("Elyse Canada", "Kenton Edge").
friend_("Emilie Schwarz", "Lashanda Perkins").
friend_("Eugene Schwarz", "Jona Carrell").
friend_("Eugene Schwarz", "Normand Marston").
friend_("Eugene Schwarz", "Elsy Edge").
friend_("Eugene Schwarz", "Emelda Sage").
friend_("Eugene Schwarz", "Kristine Sage").
friend_("Eugenio Schwarz", "Randolph Schwarz").
friend_("Eugenio Schwarz", "Kanesha Omalley").
friend_("Federico Schwarz", "Bridget Landeros").
friend_("Francis Grover", "Anibal Delapaz").
friend_("Francis Grover", "Ernest Styles").
friend_("Gustavo Grover", "Randolph Schwarz").
friend_("Gustavo Grover", "Rodolfo Byrd").
friend_("Gustavo Grover", "Howard Huss").
friend_("Hank Schwarz", "Fernando Sage").
friend_("Herbert Bolen", "Jenny Huss").
friend_("Herbert Bolen", "Francisco Sage").
friend_("Hope Schwarz", "Randolph Schwarz").
friend_("Hope Schwarz", "Pauline Huss").
friend_("Hope Schwarz", "Shelton Soliz").
friend_("Irish Schwarz", "Riley Grover").
friend_("Jeanette Byrd", "Lurline Luu").
friend_("Jeanette Byrd", "Marcelo Edge").
friend_("Jeremiah Schwarz", "Omar Schwarz").
friend_("Judith Schwarz", "Emmanuel Akin").
friend_("Kent Schwarz", "Casey Kimbrough").
friend_("Kimberely Menchaca", "Sherita Wyche").
friend_("Lorina Kinder", "Sueann Bolen").
friend_("Lorina Kinder", "Jona Carrell").
friend_("Lorina Kinder", "Korey Wortham").
friend_("Lorina Kinder", "Jona Delapaz").
friend_("Nada Schwarz", "Alysia Sage").
friend_("Nada Schwarz", "Dan Poore").
friend_("Nada Schwarz", "Son Overstreet").
friend_("Omar Schwarz", "Melodie Bowens").
friend_("Omar Schwarz", "Clint Huss").
friend_("Pamula Schwarz", "Dennis Kimbrough").
friend_("Pamula Schwarz", "Ollie Poore").
friend_("Pamula Schwarz", "Vernice Cawley").
friend_("Paula Bass", "Edythe Derosa").
friend_("Paula Bass", "Korey Wortham").
friend_("Paula Bass", "Pedro Omalley").
friend_("Phylis Bolen", "Windy Wortham").
friend_("Randi Bass", "Korey Wortham").
friend_("Randi Bass", "Kristine Forsythe").
friend_("Randi Schwarz", "Anita Perkins").
friend_("Randolph Schwarz", "Charmain East").
friend_("Rodolfo Byrd", "Ollie Poore").
friend_("Ross Bolen", "Willis Bowens").
friend_("Ross Bolen", "Clint Huss").
friend_("Ross Bolen", "Son Overstreet").
friend_("Shawnta Schwarz", "Simone Nesbit").
friend_("Shawnta Schwarz", "Timothy Nesbit").
friend_("Shawnta Schwarz", "Rodrick Forsythe").
friend_("Sueann Bolen", "Lester Perkins").
friend_("Sueann Bolen", "Tosha Youngblood").
friend_("Sueann Bolen", "Leah Overstreet").
friend_("Tania Schwarz", "Jeremy Zelaya").
friend_("Tania Schwarz", "Micah Gerdes").
friend_("Tomas Bass", "Lorine Luu").
friend_("Tomas Bass", "Carlton Perkins").
friend_("Tomas Bass", "Deidra East").
friend_("Tomas Bass", "Ta Wyche").
friend_("Zelda Schwarz", "Loren Youngblood").
friend_("Adella Gaytan", "Marcelo Edge").
friend_("Bev Branson", "Odette Kimbrough").
friend_("Bobbie Luu", "Adella Omalley").
friend_("Casey Kimbrough", "Kanesha Omalley").
friend_("Casey Kimbrough", "Howard Huss").
friend_("Chuck Luu", "Tresa Kingsbury").
friend_("Cristal Luu", "Willis Bowens").
friend_("Cristal Luu", "Rena Forsythe").
friend_("Dennis Kimbrough", "Larry Coons").
friend_("Dennis Kimbrough", "Fidel Sage").
friend_("Ellen Nesbit", "Sherita Wyche").
friend_("Emanuel Luu", "Larry Coons").
friend_("Emanuel Luu", "Guy Sage").
friend_("Georgine Zelaya", "Oscar Gaytan").
friend_("Georgine Zelaya", "Emanuel Poore").
friend_("Glenda Carrell", "Willis Bowens").
friend_("Glenda Carrell", "Ladonna Landeros").
friend_("Glenda Carrell", "Ramon East").
friend_("Hal Branson", "Lashanda Perkins").
friend_("Hal Branson", "Zana Stillwell").
friend_("Jeremy Kimbrough", "Devora Stillwell").
friend_("Jeremy Kimbrough", "Edythe Leahy").
friend_("Jona Carrell", "Vincenza Kimbrough").
friend_("Jona Carrell", "Cruz Stillwell").
friend_("Jona Carrell", "Seymour Sage").
friend_("Joslyn Gerdes", "Rudolph Wortham").
friend_("Jules Kimbrough", "Lashanda Perkins").
friend_("Larry Coons", "Willis Bowens").
friend_("Lorine Luu", "Theron Marston").
friend_("Micki Bowens", "Rudolph Wortham").
friend_("Micki Bowens", "Tresa Kingsbury").
friend_("Micki Bowens", "Zana Stillwell").
friend_("Mona Coons", "Micheal Perkins").
friend_("Mona Coons", "Cordell Huss").
friend_("Oscar Gaytan", "Kristine Forsythe").
friend_("Oscar Gaytan", "Levi Mcglothlin").
friend_("Rigoberto Carrell", "Norris Kingsbury").
friend_("Rigoberto Carrell", "Bonnie Sage").
friend_("Romona Kimbrough", "Blaine Sage").
friend_("Roseanna Gaytan", "Bridget Omalley").
friend_("Roseanna Gaytan", "Ladonna Landeros").
friend_("Shanda Branson", "Marcelo Edge").
friend_("Simone Nesbit", "Niesha Hobbs").
friend_("Tamala Gerdes", "Tianna Styles").
friend_("Timothy Nesbit", "Minerva Lupo").
friend_("Timothy Nesbit", "Rudolph Wortham").
friend_("Timothy Nesbit", "Deidra East").
friend_("Timothy Nesbit", "Sherita Wyche").
friend_("Vincenza Kimbrough", "Thomasena Overstreet").
friend_("Wilbur Gaytan", "Anita Perkins").
friend_("Wilbur Gaytan", "Adalberto Huss").
friend_("Wilbur Gaytan", "Rickey Sweat").
friend_("Will Nesbit", "Xavier Zelaya").
friend_("Willis Bowens", "Niesha Hobbs").
friend_("Adella Omalley", "Bernardo Dasilva").
friend_("Adella Omalley", "Jona Delapaz").
friend_("Anton Omalley", "Ofelia Perkins").
friend_("Bernardo Dasilva", "Mel Perkins").
friend_("Bernardo Dasilva", "Jerry Cawley").
friend_("Bridget Omalley", "Otis Stillwell").
friend_("Bridget Omalley", "Kena Sage").
friend_("Buddy Perkins", "Kristine Sage").
friend_("Chad Perkins", "Emmanuel Holland").
friend_("Chad Perkins", "Tosha Derosa").
friend_("Chrissy Dasilva", "Elsy Edge").
friend_("Chrissy Dasilva", "Kenton Edge").
friend_("Chrissy Dasilva", "Deidra East").
friend_("Chrissy Dasilva", "Ernest Styles").
friend_("Cicely Perkins", "Edythe Derosa").
friend_("Cicely Perkins", "Alysia Sage").
friend_("Delores Dasilva", "Otis Stillwell").
friend_("Delores Dasilva", "Tosha Youngblood").
friend_("Edwin Omalley", "Loren Youngblood").
friend_("Edythe Derosa", "Rena Forsythe").
friend_("Edythe Derosa", "Alysia Sage").
friend_("Edythe Derosa", "Lynetta Delapaz").
friend_("Haydee Radcliff", "Von Sage").
friend_("Heather Omalley", "Rickey Sweat").
friend_("Heather Omalley", "Emelda Sage").
friend_("Jose Radcliff", "Emelda Sage").
friend_("Kristine Forsythe", "Marcelo Edge").
friend_("Lashanda Perkins", "Luther Edge").
friend_("Leroy Lupo", "Lionel Cervantes").
friend_("Lester Perkins", "Jewel Huss").
friend_("Lester Perkins", "Vernell Cummins").
friend_("Lyndsey Benavides", "Cruz Stillwell").
friend_("Maurine Lupo", "Zana Stillwell").
friend_("Mel Perkins", "Adela Sweat").
friend_("Mel Perkins", "Blaine Sage").
friend_("Micheal Perkins", "Jenny Huss").
friend_("Micheal Perkins", "Charmain East").
friend_("Myron Lupo", "Tosha Derosa").
friend_("Myron Lupo", "Tianna Styles").
friend_("Normand Marston", "Tresa Kingsbury").
friend_("Ofelia Perkins", "Jocelyn Soliz").
friend_("Pedro Omalley", "Ollie Poore").
friend_("Rena Forsythe", "Seymour Sage").
friend_("Rodrick Forsythe", "Leann Sage").
friend_("Rudolph Wortham", "Bret Hobbs").
friend_("Sherrie Perkins", "Fernando Sage").
friend_("Stan Derosa", "Norris Kingsbury").
friend_("Stan Derosa", "Ta Wyche").
friend_("Theron Marston", "Lynetta Edge").
friend_("Tosha Derosa", "Lurline Poore").
friend_("Windy Wortham", "Howard Huss").
friend_("Annabell Edge", "Tresa Kingsbury").
friend_("Bret Hobbs", "Chad Huss").
friend_("Consuelo Huss", "Briana Mcglothlin").
friend_("Cristopher Cummins", "Evelia Edge").
friend_("Edythe Leahy", "Zana Stillwell").
friend_("Elsy Edge", "Von Sage").
friend_("Howard Huss", "Demetria Sage").
friend_("Howard Huss", "Lynetta Delapaz").
friend_("Jewel Huss", "Lyndon Huss").
friend_("Leticia Landeros", "Emanuel Poore").
friend_("Lynetta Edge", "Giovanni Mcglothlin").
friend_("Marcelo Edge", "Shelton Soliz").
friend_("Otis Stillwell", "Patrick Millet").
friend_("Otis Stillwell", "Leah Overstreet").
friend_("Rogelio Leahy", "Earlean Akin").
friend_("Terence Landeros", "Emelda Sage").
friend_("Anibal Delapaz", "Von Sage").
friend_("Bonnie Sage", "Jerry Cawley").
friend_("Charmain East", "Ramon East").
friend_("Deidra East", "Kraig Sage").
friend_("Demetria Sage", "Ramon East").
friend_("Earlean Akin", "Lynetta Delapaz").
friend_("Son Overstreet", "Vernice Cawley").
friend_("Vernice Cawley", "Zachariah Overstreet").
friend(X, Y) :-
friend_(X, Y).
friend(X, Y) :-
friend_(Y, X).
niece(X, Y) :-
sibling(X, A),
daughter(A, Y).
nephew(X, Y) :-
sibling(X, A),
son(A, Y).
brother_in_law(X, Y) :-
married(X, A),
brother(A, Y).
:- multifile message_property/2.
sister_in_law(X, Y) :-
married(X, A),
sister(A, Y).
wife(X, Y) :-
married(X, Y),
female(Y).
husband(X, Y) :-
married(X, Y),
male(Y).
daughter_in_law(X, Y) :-
child(X, A),
wife(A, Y).
son_in_law(X, Y) :-
child(X, A),
husband(A, Y).
son(X, Y) :-
child(X, Y),
male(Y).
female(X) :-
gender(X, "female").
daughter(X, Y) :-
child(X, Y),
female(Y).
father_in_law(X, Y) :-
married(X, A),
father(A, Y).
mother_in_law(X, Y) :-
married(X, A),
mother(A, Y).
father(X, Y) :-
parent(X, Y),
male(Y).
:- multifile prolog_predicate_name/2.
child(X, Y) :-
parent(Y, X).
male_first_cousin_once_removed(X, Y) :-
cousin(X, A),
son(A, Y),
X\=Y.
:- multifile prolog_clause_name/2.
:- dynamic expand_answer/2.
:- multifile expand_answer/2.
:- dynamic exception/3.
:- multifile exception/3.
female_first_cousin_once_removed(X, Y) :-
cousin(X, A),
daughter(A, Y),
X\=Y.
brother(X, Y) :-
sibling(X, Y),
male(Y).
mother(X, Y) :-
parent(X, Y),
female(Y).
male_second_cousin(X, Y) :-
parent(X, A),
parent(Y, B),
cousin(A, B),
male(Y),
X\=Y.
:- dynamic message_hook/3.
:- multifile message_hook/3.
female_second_cousin(X, Y) :-
parent(X, A),
parent(Y, B),
cousin(A, B),
female(Y),
X\=Y.
married(X, Y) :-
parent(Child, X),
parent(Child, Y),
X\=Y.
male(X) :-
gender(X, "male").
:- dynamic prolog_file_type/2.
:- multifile prolog_file_type/2.
prolog_file_type(pl, prolog).
prolog_file_type(prolog, prolog).
prolog_file_type(qlf, prolog).
prolog_file_type(qlf, qlf).
prolog_file_type(A, executable) :-
system:current_prolog_flag(shared_object_extension, A).
prolog_file_type(dylib, executable) :-
system:current_prolog_flag(apple, true).
sister(X, Y) :-
sibling(X, Y),
female(Y).
male_cousin(X, Y) :-
cousin(X, Y),
male(Y).
:- dynamic nonbinary/1.
nonbinary(X) :-
gender(X, "nonbinary").
female_cousin(X, Y) :-
cousin(X, Y),
female(Y).
sibling(X, Y) :-
parent(X, A),
parent(Y, A),
X\=Y.
:- dynamic portray/1.
:- multifile portray/1.
:- dynamic prolog_load_file/2.
:- multifile prolog_load_file/2.
:- dynamic goal_expansion/2.
:- multifile goal_expansion/2.
:- dynamic parent/2.
parent("Aida Wang", "Dino Beltran").
parent("Aida Wang", "Shelli Beltran").
parent("Alfredo Wang", "Aida Wang").
parent("Alfredo Wang", "Ryan Wang").
parent("Barabara Beltran", "Dino Beltran").
parent("Barabara Beltran", "Shelli Beltran").
parent("Christina Coe", "Stacia Toombs").
parent("Christina Coe", "Wilbert Toombs").
parent("Cortney Parmer", "Aida Wang").
parent("Cortney Parmer", "Ryan Wang").
parent("Cythia Smock", "Alison Smock").
parent("Cythia Smock", "Williams Smock").
parent("Dino Beltran", "Brian Beltran").
parent("Dino Beltran", "Daisy Beltran").
parent("Dwight Hackworth", "Ricardo Hackworth").
parent("Dwight Hackworth", "Vicki Hackworth").
parent("Earle Coe", "Alycia Coe").
parent("Earle Coe", "Christoper Coe").
parent("Eli Smock", "Alvaro Smock").
parent("Eli Smock", "Lannie Smock").
parent("Gayla Woodson", "Lissa Coe").
parent("Gayla Woodson", "Reggie Coe").
parent("Gene Smock", "Alvaro Smock").
parent("Gene Smock", "Lannie Smock").
parent("Kristen Toombs", "Stacia Toombs").
parent("Kristen Toombs", "Wilbert Toombs").
parent("Leeann Sinclair", "Ricardo Hackworth").
parent("Leeann Sinclair", "Vicki Hackworth").
parent("Leisa Lutz", "Ricardo Hackworth").
parent("Leisa Lutz", "Vicki Hackworth").
parent("Lesley Lutz", "Isiah Lutz").
parent("Lesley Lutz", "Leisa Lutz").
parent("Lonny Parmer", "Cortney Parmer").
parent("Lonny Parmer", "Ulysses Parmer").
parent("Michelle Hackworth", "Ricardo Hackworth").
parent("Michelle Hackworth", "Vicki Hackworth").
parent("Orlando Beltran", "Brian Beltran").
parent("Orlando Beltran", "Daisy Beltran").
parent("Reggie Coe", "Christina Coe").
parent("Reggie Coe", "Earle Coe").
parent("Shannon Beltran", "Orlando Beltran").
parent("Shannon Beltran", "Tosha Beltran").
parent("Shelli Beltran", "Alison Smock").
parent("Shelli Beltran", "Williams Smock").
parent("Stacia Toombs", "Alison Smock").
parent("Stacia Toombs", "Williams Smock").
parent("Tanner Beltran", "Brian Beltran").
parent("Tanner Beltran", "Daisy Beltran").
parent("Tosha Beltran", "Jamison Baptiste").
parent("Tosha Beltran", "Maria Baptiste").
parent("Tyson Woodson", "Carrol Woodson").
parent("Tyson Woodson", "Gayla Woodson").
parent("Vicki Hackworth", "Dino Beltran").
parent("Vicki Hackworth", "Shelli Beltran").
parent("Vincent Lutz", "Lesley Lutz").
parent("Vincent Lutz", "Noelia Lutz").
parent("Virgil Hackworth", "Ricardo Hackworth").
parent("Virgil Hackworth", "Vicki Hackworth").
parent("Von Sinclair", "Alec Sinclair").
parent("Von Sinclair", "Leeann Sinclair").
parent("Williams Smock", "Dominique Smock").
parent("Williams Smock", "Gene Smock").
parent("Wm Parmer", "Cortney Parmer").
parent("Wm Parmer", "Ulysses Parmer").
parent("Angela Culver", "Diane Culver").
parent("Angela Culver", "Jules Culver").
parent("Anibal Stansberry", "Iva Stansberry").
parent("Anibal Stansberry", "Oren Stansberry").
parent("Bev Gilmore", "Brigette Gilmore").
parent("Bev Gilmore", "Garry Gilmore").
parent("Brigette Gilmore", "Gail Culver").
parent("Brigette Gilmore", "Terence Culver").
parent("Celia Macmillan", "Desiree Stansberry").
parent("Celia Macmillan", "Millard Stansberry").
parent("Conrad Stansberry", "Anibal Stansberry").
parent("Conrad Stansberry", "Renate Stansberry").
parent("Dionne Stansberry", "Debra Stansberry").
parent("Dionne Stansberry", "Hayden Stansberry").
parent("Eliza Wiggs", "Gillian Wiggs").
parent("Eliza Wiggs", "Howard Wiggs").
parent("Emanuel Stansberry", "Debra Stansberry").
parent("Emanuel Stansberry", "Hayden Stansberry").
parent("Frankie Hagerty", "Justine Hagerty").
parent("Frankie Hagerty", "Markus Hagerty").
parent("Gail Culver", "Lincoln Velasco").
parent("Gail Culver", "Maurine Velasco").
parent("Gillian Wiggs", "Anibal Stansberry").
parent("Gillian Wiggs", "Renate Stansberry").
parent("Hayden Stansberry", "Anibal Stansberry").
parent("Hayden Stansberry", "Renate Stansberry").
parent("Howard Wiggs", "Cordelia Wiggs").
parent("Howard Wiggs", "David Wiggs").
parent("Hyun Hagerty", "Brigette Gilmore").
parent("Hyun Hagerty", "Garry Gilmore").
parent("Iva Stansberry", "Barbara Philpott").
parent("Iva Stansberry", "Mickey Philpott").
parent("Jordan Culver", "Loren Culver").
parent("Jordan Culver", "Tonya Culver").
parent("Jules Culver", "Loren Culver").
parent("Jules Culver", "Tonya Culver").
parent("Kelvin Culver", "Diane Culver").
parent("Kelvin Culver", "Jules Culver").
parent("Kori Wiggs", "Gillian Wiggs").
parent("Kori Wiggs", "Howard Wiggs").
parent("Laverna Stansberry", "Anibal Stansberry").
parent("Laverna Stansberry", "Renate Stansberry").
parent("Lester Stansberry", "Conrad Stansberry").
parent("Lester Stansberry", "Sona Stansberry").
parent("Lionel Culver", "Glenda Culver").
parent("Lionel Culver", "Jordan Culver").
parent("Millard Stansberry", "Anibal Stansberry").
parent("Millard Stansberry", "Renate Stansberry").
parent("Nikki Stansberry", "Desiree Stansberry").
parent("Nikki Stansberry", "Millard Stansberry").
parent("Quintin Hagerty", "Frankie Hagerty").
parent("Quintin Hagerty", "Hyun Hagerty").
parent("Renate Stansberry", "Frankie Hagerty").
parent("Renate Stansberry", "Hyun Hagerty").
parent("Tamara Macmillan", "Celia Macmillan").
parent("Tamara Macmillan", "Tad Macmillan").
parent("Terence Culver", "Glenda Culver").
parent("Terence Culver", "Jordan Culver").
parent("Victor Stansberry", "Iva Stansberry").
parent("Victor Stansberry", "Oren Stansberry").
parent("Wilmer Hagerty", "Justine Hagerty").
parent("Wilmer Hagerty", "Markus Hagerty").
parent("Yolanda Philpott", "Barbara Philpott").
parent("Yolanda Philpott", "Mickey Philpott").
parent("Benny Abrams", "Cicely Abrams").
parent("Benny Abrams", "Reed Abrams").
parent("Bobby Ricketts", "Paula Ricketts").
parent("Bobby Ricketts", "Rocky Ricketts").
parent("Bridget Solorio", "Rhonda Ricketts").
parent("Bridget Solorio", "Spencer Ricketts").
parent("Brooks Ricketts", "Cory Ricketts").
parent("Brooks Ricketts", "Flora Ricketts").
parent("Cory Ricketts", "Kristopher Ricketts").
parent("Cory Ricketts", "Madelyn Ricketts").
parent("Dee Ricketts", "Deidra Ricketts").
parent("Dee Ricketts", "Toney Ricketts").
parent("Deidra Ricketts", "Cordelia Zepeda").
parent("Deidra Ricketts", "Tommy Zepeda").
parent("Dennis Ricketts", "Brooks Ricketts").
parent("Dennis Ricketts", "Erin Ricketts").
parent("Erin Ricketts", "Cicely Abrams").
parent("Erin Ricketts", "Reed Abrams").
parent("Hoa Leija", "Shane Leija").
parent("Hoa Leija", "Tiffanie Leija").
parent("Jennifer Ricketts", "Deidra Ricketts").
parent("Jennifer Ricketts", "Toney Ricketts").
parent("Kory Ricketts", "Adelaida Ricketts").
parent("Kory Ricketts", "Dennis Ricketts").
parent("Lauren Brumbaugh", "Reggie Brumbaugh").
parent("Lauren Brumbaugh", "Rosalee Brumbaugh").
parent("Lora Ricketts", "Adelaida Ricketts").
parent("Lora Ricketts", "Dennis Ricketts").
parent("Lyman Leija", "Shane Leija").
parent("Lyman Leija", "Tiffanie Leija").
parent("Maranda Ricketts", "Rhonda Ricketts").
parent("Maranda Ricketts", "Spencer Ricketts").
parent("Marlene Isaacs", "Rolanda Isaacs").
parent("Marlene Isaacs", "Terrell Isaacs").
parent("Micheal Leija", "Lyman Leija").
parent("Micheal Leija", "Randi Leija").
parent("Milton Brumbaugh", "Reggie Brumbaugh").
parent("Milton Brumbaugh", "Rosalee Brumbaugh").
parent("Mona Leija", "Lyman Leija").
parent("Mona Leija", "Randi Leija").
parent("Orval Ricketts", "Cory Ricketts").
parent("Orval Ricketts", "Flora Ricketts").
parent("Paula Ricketts", "Lyman Leija").
parent("Paula Ricketts", "Randi Leija").
parent("Raymond Leija", "Lyman Leija").
parent("Raymond Leija", "Randi Leija").
parent("Reed Abrams", "Edmund Abrams").
parent("Reed Abrams", "Kristie Abrams").
parent("Renea Ricketts", "Cory Ricketts").
parent("Renea Ricketts", "Flora Ricketts").
parent("Rhonda Ricketts", "Melina Deming").
parent("Rhonda Ricketts", "Ulysses Deming").
parent("Rocky Ricketts", "Brooks Ricketts").
parent("Rocky Ricketts", "Erin Ricketts").
parent("Rolanda Isaacs", "Brooks Ricketts").
parent("Rolanda Isaacs", "Erin Ricketts").
parent("Rosalee Brumbaugh", "Bridget Solorio").
parent("Rosalee Brumbaugh", "Nick Solorio").
parent("Samuel Ricketts", "Paula Ricketts").
parent("Samuel Ricketts", "Rocky Ricketts").
parent("Spencer Ricketts", "Paula Ricketts").
parent("Spencer Ricketts", "Rocky Ricketts").
parent("Toney Ricketts", "Paula Ricketts").
parent("Toney Ricketts", "Rocky Ricketts").
parent("Winnifred Ricketts", "Paula Ricketts").
parent("Winnifred Ricketts", "Rocky Ricketts").
parent("Adella Schwarz", "Irish Schwarz").
parent("Adella Schwarz", "Jeremiah Schwarz").
parent("Alberto Schwarz", "Dillon Schwarz").
parent("Alberto Schwarz", "Pamula Schwarz").
parent("Antony Kinder", "Bernice Kinder").
parent("Antony Kinder", "Clark Kinder").
parent("Aura Schwarz", "Omar Schwarz").
parent("Aura Schwarz", "Tania Schwarz").
parent("Bernice Kinder", "Judith Schwarz").
parent("Bernice Kinder", "Kent Schwarz").
parent("Carmelita Schwarz", "Eugenio Schwarz").
parent("Carmelita Schwarz", "Odette Schwarz").
parent("Carter Bolen", "Ross Bolen").
parent("Carter Bolen", "Sueann Bolen").
parent("Dawne Grover", "Bernice Kinder").
parent("Dawne Grover", "Clark Kinder").
parent("Dillon Schwarz", "Eugenio Schwarz").
parent("Dillon Schwarz", "Odette Schwarz").
parent("Emilie Schwarz", "Dillon Schwarz").
parent("Emilie Schwarz", "Pamula Schwarz").
parent("Eugene Schwarz", "Dillon Schwarz").
parent("Eugene Schwarz", "Pamula Schwarz").
parent("Eugenio Schwarz", "Omar Schwarz").
parent("Eugenio Schwarz", "Tania Schwarz").
parent("Federico Schwarz", "Alberto Schwarz").
parent("Federico Schwarz", "Nada Schwarz").
parent("Francis Grover", "Dawne Grover").
parent("Francis Grover", "Gustavo Grover").
parent("Hank Schwarz", "Irish Schwarz").
parent("Hank Schwarz", "Jeremiah Schwarz").
parent("Herbert Bolen", "Ross Bolen").
parent("Herbert Bolen", "Sueann Bolen").
parent("Irish Schwarz", "Jeanette Byrd").
parent("Irish Schwarz", "Rodolfo Byrd").
parent("Jeremiah Schwarz", "Dillon Schwarz").
parent("Jeremiah Schwarz", "Pamula Schwarz").
parent("Joanna Schwarz", "Hank Schwarz").
parent("Joanna Schwarz", "Hope Schwarz").
parent("Kent Schwarz", "Eugenio Schwarz").
parent("Kent Schwarz", "Odette Schwarz").
parent("Lorina Kinder", "Antony Kinder").
parent("Lorina Kinder", "Sona Kinder").
parent("Magdalena Schwarz", "Dillon Schwarz").
parent("Magdalena Schwarz", "Pamula Schwarz").
parent("Omar Schwarz", "Dylan Schwarz").
parent("Omar Schwarz", "Shawnta Schwarz").
parent("Pamula Schwarz", "Delbert Menchaca").
parent("Pamula Schwarz", "Kimberely Menchaca").
parent("Paula Bass", "Randi Bass").
parent("Paula Bass", "Tomas Bass").
parent("Randi Bass", "Carter Bolen").
parent("Randi Bass", "Phylis Bolen").
parent("Randi Schwarz", "Judith Schwarz").
parent("Randi Schwarz", "Kent Schwarz").
parent("Randolph Schwarz", "Irish Schwarz").
parent("Randolph Schwarz", "Jeremiah Schwarz").
parent("Riley Grover", "Dawne Grover").
parent("Riley Grover", "Gustavo Grover").
parent("Sueann Bolen", "Eugenio Schwarz").
parent("Sueann Bolen", "Odette Schwarz").
parent("Tania Schwarz", "Elbert Canada").
parent("Tania Schwarz", "Elyse Canada").
parent("Zelda Schwarz", "Eugenio Schwarz").
parent("Zelda Schwarz", "Odette Schwarz").
parent("Betsy Kimbrough", "Jeremy Kimbrough").
parent("Betsy Kimbrough", "Romona Kimbrough").
parent("Bev Branson", "Hal Branson").
parent("Bev Branson", "Shanda Branson").
parent("Bobbie Luu", "Alejandrina Luu").
parent("Bobbie Luu", "Chuck Luu").
parent("Bradford Gaytan", "Oscar Gaytan").
parent("Bradford Gaytan", "Roseanna Gaytan").
parent("Casey Kimbrough", "Vincenza Kimbrough").
parent("Casey Kimbrough", "Williams Kimbrough").
parent("Chuck Luu", "Derrick Luu").
parent("Chuck Luu", "Lorine Luu").
parent("Cristal Luu", "Emanuel Luu").
parent("Cristal Luu", "Lurline Luu").
parent("Ellen Nesbit", "Simone Nesbit").
parent("Ellen Nesbit", "Timothy Nesbit").
parent("Emanuel Luu", "Alejandrina Luu").
parent("Emanuel Luu", "Chuck Luu").
parent("Georgine Zelaya", "Vincenza Kimbrough").
parent("Georgine Zelaya", "Williams Kimbrough").
parent("Glenda Carrell", "Jona Carrell").
parent("Glenda Carrell", "Rigoberto Carrell").
parent("Hugo Kimbrough", "Vincenza Kimbrough").
parent("Hugo Kimbrough", "Williams Kimbrough").
parent("Jake Nesbit", "Simone Nesbit").
parent("Jake Nesbit", "Timothy Nesbit").
parent("Jeremy Kimbrough", "Vincenza Kimbrough").
parent("Jeremy Kimbrough", "Williams Kimbrough").
parent("Johnathon Zelaya", "Georgine Zelaya").
parent("Johnathon Zelaya", "Jeremy Zelaya").
parent("Jona Carrell", "Larry Coons").
parent("Jona Carrell", "Mona Coons").
parent("Joslyn Gerdes", "Micah Gerdes").
parent("Joslyn Gerdes", "Tamala Gerdes").
parent("Joslyn Nesbit", "Simone Nesbit").
parent("Joslyn Nesbit", "Timothy Nesbit").
parent("Jules Kimbrough", "Jeremy Kimbrough").
parent("Jules Kimbrough", "Romona Kimbrough").
parent("Laurette Kimbrough", "Vincenza Kimbrough").
parent("Laurette Kimbrough", "Williams Kimbrough").
parent("Leeann Nesbit", "Simone Nesbit").
parent("Leeann Nesbit", "Timothy Nesbit").
parent("Lurline Luu", "Jona Carrell").
parent("Lurline Luu", "Rigoberto Carrell").
parent("Melodie Bowens", "Micki Bowens").
parent("Melodie Bowens", "Willis Bowens").
parent("Micki Bowens", "Jeremy Kimbrough").
parent("Micki Bowens", "Romona Kimbrough").
parent("Roseanna Gaytan", "Georgine Zelaya").
parent("Roseanna Gaytan", "Jeremy Zelaya").
parent("Shanda Branson", "Jona Carrell").
parent("Shanda Branson", "Rigoberto Carrell").
parent("Simone Nesbit", "Jona Carrell").
parent("Simone Nesbit", "Rigoberto Carrell").
parent("Tamala Gerdes", "Emanuel Luu").
parent("Tamala Gerdes", "Lurline Luu").
parent("Tessie Branson", "Hal Branson").
parent("Tessie Branson", "Shanda Branson").
parent("Vincenza Kimbrough", "Larry Coons").
parent("Vincenza Kimbrough", "Mona Coons").
parent("Wilbur Gaytan", "Adella Gaytan").
parent("Wilbur Gaytan", "Bradford Gaytan").
parent("Will Nesbit", "Simone Nesbit").
parent("Will Nesbit", "Timothy Nesbit").
parent("Williams Kimbrough", "Dennis Kimbrough").
parent("Williams Kimbrough", "Odette Kimbrough").
parent("Xavier Zelaya", "Georgine Zelaya").
parent("Xavier Zelaya", "Jeremy Zelaya").
parent("Adella Omalley", "Leroy Lupo").
parent("Adella Omalley", "Minerva Lupo").
parent("Anton Omalley", "Kanesha Omalley").
parent("Anton Omalley", "Pedro Omalley").
parent("Bradley Perkins", "Anita Perkins").
parent("Bradley Perkins", "Chad Perkins").
parent("Bridget Omalley", "Adella Omalley").
parent("Bridget Omalley", "Kraig Omalley").
parent("Buddy Perkins", "Carlton Perkins").
parent("Buddy Perkins", "Lashanda Perkins").
parent("Carlton Perkins", "Magdalene Perkins").
parent("Carlton Perkins", "Numbers Perkins").
parent("Chrissy Dasilva", "Magdalene Perkins").
parent("Chrissy Dasilva", "Numbers Perkins").
parent("Cicely Perkins", "Bradley Perkins").
parent("Cicely Perkins", "Ofelia Perkins").
parent("Delores Dasilva", "Bernardo Dasilva").
parent("Delores Dasilva", "Chrissy Dasilva").
parent("Edwin Omalley", "Adella Omalley").
parent("Edwin Omalley", "Kraig Omalley").
parent("Edythe Derosa", "Lyndsey Benavides").
parent("Edythe Derosa", "Tomas Benavides").
parent("Haydee Radcliff", "Emmanuel Holland").
parent("Haydee Radcliff", "Yoko Holland").
parent("Heather Omalley", "Adella Omalley").
parent("Heather Omalley", "Kraig Omalley").
parent("Justine Perkins", "Magdalene Perkins").
parent("Justine Perkins", "Numbers Perkins").
parent("Korey Wortham", "Leonila Wortham").
parent("Korey Wortham", "Rudolph Wortham").
parent("Kraig Omalley", "Kanesha Omalley").
parent("Kraig Omalley", "Pedro Omalley").
parent("Kristine Forsythe", "Adella Omalley").
parent("Kristine Forsythe", "Kraig Omalley").
parent("Leonila Wortham", "Haydee Radcliff").
parent("Leonila Wortham", "Jose Radcliff").
parent("Leroy Lupo", "Maurine Lupo").
parent("Leroy Lupo", "Myron Lupo").
parent("Lester Perkins", "Anita Perkins").
parent("Lester Perkins", "Chad Perkins").
parent("Lyndsey Benavides", "Carlton Perkins").
parent("Lyndsey Benavides", "Lashanda Perkins").
parent("Magdalene Perkins", "Leroy Lupo").
parent("Magdalene Perkins", "Minerva Lupo").
parent("Mel Perkins", "Magdalene Perkins").
parent("Mel Perkins", "Numbers Perkins").
parent("Micheal Perkins", "Carlton Perkins").
parent("Micheal Perkins", "Lashanda Perkins").
parent("Minerva Lupo", "Haydee Radcliff").
parent("Minerva Lupo", "Jose Radcliff").
parent("Monserrate Benavides", "Lyndsey Benavides").
parent("Monserrate Benavides", "Tomas Benavides").
parent("Normand Marston", "Randolph Marston").
parent("Normand Marston", "Yen Marston").
parent("Numbers Perkins", "Bradley Perkins").
parent("Numbers Perkins", "Ofelia Perkins").
parent("Rena Forsythe", "Kristine Forsythe").
parent("Rena Forsythe", "Rodrick Forsythe").
parent("Sherrie Perkins", "Magdalene Perkins").
parent("Sherrie Perkins", "Numbers Perkins").
parent("Theron Marston", "Randolph Marston").
parent("Theron Marston", "Yen Marston").
parent("Tosha Derosa", "Edythe Derosa").
parent("Tosha Derosa", "Stan Derosa").
parent("Windy Wortham", "Leonila Wortham").
parent("Windy Wortham", "Rudolph Wortham").
parent("Yen Marston", "Haydee Radcliff").
parent("Yen Marston", "Jose Radcliff").
parent("Adalberto Huss", "Clint Huss").
parent("Adalberto Huss", "Consuelo Huss").
parent("Angelia Youngblood", "Audie Millet").
parent("Angelia Youngblood", "Patrick Millet").
parent("Annabell Edge", "Evelia Edge").
parent("Annabell Edge", "Luther Edge").
parent("Armando Huss", "Cordell Huss").
parent("Armando Huss", "Pauline Huss").
parent("Audie Millet", "Armando Huss").
parent("Audie Millet", "Jenny Huss").
parent("Bridget Landeros", "Rashad Landeros").
parent("Bridget Landeros", "Signe Landeros").
parent("Chad Huss", "Adalberto Huss").
parent("Chad Huss", "Jewel Huss").
parent("Clint Huss", "Armando Huss").
parent("Clint Huss", "Jenny Huss").
parent("Consuelo Huss", "Kenton Edge").
parent("Consuelo Huss", "Page Edge").
parent("Cruz Stillwell", "Otis Stillwell").
parent("Cruz Stillwell", "Zana Stillwell").
parent("Edythe Leahy", "Evelia Edge").
parent("Edythe Leahy", "Luther Edge").
parent("Elsy Edge", "Evelia Edge").
parent("Elsy Edge", "Luther Edge").
parent("Evelia Edge", "Adela Sweat").
parent("Evelia Edge", "Rickey Sweat").
parent("Howard Huss", "Armando Huss").
parent("Howard Huss", "Jenny Huss").
parent("Jenny Huss", "Cruz Stillwell").
parent("Jenny Huss", "Devora Stillwell").
parent("Jewel Huss", "Ashleigh Cervantes").
parent("Jewel Huss", "Lionel Cervantes").
parent("Jocelyn Soliz", "Adalberto Huss").
parent("Jocelyn Soliz", "Jewel Huss").
parent("Kenton Edge", "Evelia Edge").
parent("Kenton Edge", "Luther Edge").
parent("Ladonna Landeros", "Leticia Landeros").
parent("Ladonna Landeros", "Terence Landeros").
parent("Leticia Landeros", "Adalberto Huss").
parent("Leticia Landeros", "Jewel Huss").
parent("Lyndon Huss", "Armando Huss").
parent("Lyndon Huss", "Jenny Huss").
parent("Lynetta Edge", "Dortha Edge").
parent("Lynetta Edge", "Marcelo Edge").
parent("Mallory Soliz", "Jocelyn Soliz").
parent("Mallory Soliz", "Shelton Soliz").
parent("Marcelo Edge", "Evelia Edge").
parent("Marcelo Edge", "Luther Edge").
parent("Niesha Hobbs", "Cristopher Cummins").
parent("Niesha Hobbs", "Vernell Cummins").
parent("Pauline Huss", "Norris Kingsbury").
parent("Pauline Huss", "Tresa Kingsbury").
parent("Rashad Landeros", "Leticia Landeros").
parent("Rashad Landeros", "Terence Landeros").
parent("Tosha Youngblood", "Angelia Youngblood").
parent("Tosha Youngblood", "Loren Youngblood").
parent("Zachary Leahy", "Edythe Leahy").
parent("Zachary Leahy", "Rogelio Leahy").
parent("Zana Stillwell", "Bret Hobbs").
parent("Zana Stillwell", "Niesha Hobbs").
parent("Alysia Sage", "Emelda Sage").
parent("Alysia Sage", "Francisco Sage").
parent("Blaine Sage", "Kena Sage").
parent("Blaine Sage", "Kraig Sage").
parent("Bonnie Sage", "Ernest Styles").
parent("Bonnie Sage", "Tianna Styles").
parent("Briana Mcglothlin", "Malcolm Sage").
parent("Briana Mcglothlin", "Zella Sage").
parent("Charmain East", "Deidra East").
parent("Charmain East", "Ramon East").
parent("Deidra East", "Anibal Delapaz").
parent("Deidra East", "Lynetta Delapaz").
parent("Demetria Sage", "Kristine Sage").
parent("Demetria Sage", "Lester Sage").
parent("Domonique Delapaz", "Anibal Delapaz").
parent("Domonique Delapaz", "Lynetta Delapaz").
parent("Emanuel Poore", "Dan Poore").
parent("Emanuel Poore", "Ollie Poore").
parent("Fernando Sage", "Kena Sage").
parent("Fernando Sage", "Kraig Sage").
parent("Fidel Sage", "Selina Sage").
parent("Fidel Sage", "Seymour Sage").
parent("Francisco Sage", "Malcolm Sage").
parent("Francisco Sage", "Zella Sage").
parent("Garth Sage", "Malcolm Sage").
parent("Garth Sage", "Zella Sage").
parent("Guy Sage", "Fidel Sage").
parent("Guy Sage", "Herlinda Sage").
parent("Herlinda Sage", "Emanuel Poore").
parent("Herlinda Sage", "Lurline Poore").
parent("Jona Delapaz", "Anibal Delapaz").
parent("Jona Delapaz", "Lynetta Delapaz").
parent("Kena Sage", "Bryan Benoit").
parent("Kena Sage", "Natacha Benoit").
parent("Kraig Sage", "Emelda Sage").
parent("Kraig Sage", "Francisco Sage").
parent("Kristine Sage", "Jerry Cawley").
parent("Kristine Sage", "Vernice Cawley").
parent("Leann Sage", "Leah Overstreet").
parent("Leann Sage", "Son Overstreet").
parent("Lester Sage", "Fidel Sage").
parent("Lester Sage", "Herlinda Sage").
parent("Levi Mcglothlin", "Briana Mcglothlin").
parent("Levi Mcglothlin", "Giovanni Mcglothlin").
parent("Lynetta Delapaz", "Emelda Sage").
parent("Lynetta Delapaz", "Francisco Sage").
parent("Malcolm Sage", "Selina Sage").
parent("Malcolm Sage", "Seymour Sage").
parent("Sherita Wyche", "Elbert Wyche").
parent("Sherita Wyche", "Ta Wyche").
parent("Son Overstreet", "Thomasena Overstreet").
parent("Son Overstreet", "Zachariah Overstreet").
parent("Ta Wyche", "Fernando Sage").
parent("Ta Wyche", "Leann Sage").
parent("Von Sage", "Bonnie Sage").
parent("Von Sage", "Guy Sage").
parent("Zella Sage", "Earlean Akin").
parent("Zella Sage", "Emmanuel Akin").
cousin(X, Y) :-
parent(X, A),
parent(Y, B),
sibling(A, B),
X\=Y.
uncle(X, Y) :-
parent(X, A),
brother(A, Y).
:- dynamic resource/3.
:- multifile resource/3.
:- thread_local thread_message_hook/3.
:- dynamic thread_message_hook/3.
:- volatile thread_message_hook/3.
aunt(X, Y) :-
parent(X, A),
sister(A, Y).
second_uncle(X, Y) :-
great_grandparent(X, A),
brother(A, Y).
:- dynamic gender/2.
gender("Aida Wang", "female").
gender("Alec Sinclair", "male").
gender("Alfredo Wang", "male").
gender("Alison Smock", "female").
gender("Alvaro Smock", "male").
gender("Alycia Coe", "female").
gender("Barabara Beltran", "female").
gender("Brian Beltran", "male").
gender("Carrol Woodson", "male").
gender("Christina Coe", "female").
gender("Christoper Coe", "male").
gender("Cortney Parmer", "female").
gender("Cythia Smock", "female").
gender("Daisy Beltran", "female").
gender("Dino Beltran", "male").
gender("Dominique Smock", "female").
gender("Dwight Hackworth", "male").
gender("Earle Coe", "male").
gender("Eli Smock", "male").
gender("Gayla Woodson", "female").
gender("Gene Smock", "male").
gender("Isiah Lutz", "male").
gender("Jamison Baptiste", "male").
gender("Kristen Toombs", "female").
gender("Lannie Smock", "female").
gender("Leeann Sinclair", "female").
gender("Leisa Lutz", "female").
gender("Lesley Lutz", "male").
gender("Lissa Coe", "female").
gender("Lonny Parmer", "male").
gender("Maria Baptiste", "female").
gender("Michelle Hackworth", "female").
gender("Noelia Lutz", "female").
gender("Orlando Beltran", "male").
gender("Reggie Coe", "male").
gender("Ricardo Hackworth", "male").
gender("Ryan Wang", "male").
gender("Shannon Beltran", "female").
gender("Shelli Beltran", "female").
gender("Stacia Toombs", "female").
gender("Tanner Beltran", "male").
gender("Tosha Beltran", "female").
gender("Tyson Woodson", "male").
gender("Ulysses Parmer", "male").
gender("Vicki Hackworth", "female").
gender("Vincent Lutz", "male").
gender("Virgil Hackworth", "male").
gender("Von Sinclair", "male").
gender("Wilbert Toombs", "male").
gender("Williams Smock", "male").
gender("Wm Parmer", "male").
gender("Angela Culver", "female").
gender("Anibal Stansberry", "male").
gender("Barbara Philpott", "female").
gender("Bev Gilmore", "female").
gender("Brigette Gilmore", "female").
gender("Celia Macmillan", "female").
gender("Conrad Stansberry", "male").
gender("Cordelia Wiggs", "female").
gender("David Wiggs", "male").
gender("Debra Stansberry", "female").
gender("Desiree Stansberry", "female").
gender("Diane Culver", "female").
gender("Dionne Stansberry", "female").
gender("Eliza Wiggs", "female").
gender("Emanuel Stansberry", "male").
gender("Frankie Hagerty", "male").
gender("Gail Culver", "female").
gender("Garry Gilmore", "male").
gender("Gillian Wiggs", "female").
gender("Glenda Culver", "female").
gender("Hayden Stansberry", "male").
gender("Howard Wiggs", "male").
gender("Hyun Hagerty", "female").
gender("Iva Stansberry", "female").
gender("Jordan Culver", "male").
gender("Jules Culver", "male").
gender("Justine Hagerty", "female").
gender("Kelvin Culver", "male").
gender("Kori Wiggs", "female").
gender("Laverna Stansberry", "female").
gender("Lester Stansberry", "male").
gender("Lincoln Velasco", "male").
gender("Lionel Culver", "male").
gender("Loren Culver", "male").
gender("Markus Hagerty", "male").
gender("Maurine Velasco", "female").
gender("Mickey Philpott", "male").
gender("Millard Stansberry", "male").
gender("Nikki Stansberry", "female").
gender("Oren Stansberry", "male").
gender("Quintin Hagerty", "male").
gender("Renate Stansberry", "female").
gender("Sona Stansberry", "female").
gender("Tad Macmillan", "male").
gender("Tamara Macmillan", "female").
gender("Terence Culver", "male").
gender("Tonya Culver", "female").
gender("Victor Stansberry", "male").
gender("Wilmer Hagerty", "male").
gender("Yolanda Philpott", "female").
gender("Adelaida Ricketts", "female").
gender("Benny Abrams", "male").
gender("Bobby Ricketts", "male").
gender("Bridget Solorio", "female").
gender("Brooks Ricketts", "male").
gender("Cicely Abrams", "female").
gender("Cordelia Zepeda", "female").
gender("Cory Ricketts", "male").
gender("Dee Ricketts", "male").
gender("Deidra Ricketts", "female").
gender("Dennis Ricketts", "male").
gender("Edmund Abrams", "male").
gender("Erin Ricketts", "female").
gender("Flora Ricketts", "female").
gender("Hoa Leija", "female").
gender("Jennifer Ricketts", "female").
gender("Kory Ricketts", "male").
gender("Kristie Abrams", "female").
gender("Kristopher Ricketts", "male").
gender("Lauren Brumbaugh", "female").
gender("Lora Ricketts", "female").
gender("Lyman Leija", "male").
gender("Madelyn Ricketts", "female").
gender("Maranda Ricketts", "female").
gender("Marlene Isaacs", "female").
gender("Melina Deming", "female").
gender("Micheal Leija", "male").
gender("Milton Brumbaugh", "male").
gender("Mona Leija", "female").
gender("Nick Solorio", "male").
gender("Orval Ricketts", "male").
gender("Paula Ricketts", "female").
gender("Randi Leija", "female").
gender("Raymond Leija", "male").
gender("Reed Abrams", "male").
gender("Reggie Brumbaugh", "male").
gender("Renea Ricketts", "female").
gender("Rhonda Ricketts", "female").
gender("Rocky Ricketts", "male").
gender("Rolanda Isaacs", "female").
gender("Rosalee Brumbaugh", "female").
gender("Samuel Ricketts", "male").
gender("Shane Leija", "male").
gender("Spencer Ricketts", "male").
gender("Terrell Isaacs", "male").
gender("Tiffanie Leija", "female").
gender("Tommy Zepeda", "male").
gender("Toney Ricketts", "male").
gender("Ulysses Deming", "male").
gender("Winnifred Ricketts", "female").
gender("Adella Schwarz", "female").
gender("Alberto Schwarz", "male").
gender("Antony Kinder", "male").
gender("Aura Schwarz", "female").
gender("Bernice Kinder", "female").
gender("Carmelita Schwarz", "female").
gender("Carter Bolen", "male").
gender("Clark Kinder", "male").
gender("Dawne Grover", "female").
gender("Delbert Menchaca", "male").
gender("Dillon Schwarz", "male").
gender("Dylan Schwarz", "male").
gender("Elbert Canada", "male").
gender("Elyse Canada", "female").
gender("Emilie Schwarz", "female").
gender("Eugene Schwarz", "male").
gender("Eugenio Schwarz", "male").
gender("Federico Schwarz", "male").
gender("Francis Grover", "male").
gender("Gustavo Grover", "male").
gender("Hank Schwarz", "male").
gender("Herbert Bolen", "male").
gender("Hope Schwarz", "female").
gender("Irish Schwarz", "female").
gender("Jeanette Byrd", "female").
gender("Jeremiah Schwarz", "male").
gender("Joanna Schwarz", "female").
gender("Judith Schwarz", "female").
gender("Kent Schwarz", "male").
gender("Kimberely Menchaca", "female").
gender("Lorina Kinder", "female").
gender("Magdalena Schwarz", "female").
gender("Nada Schwarz", "female").
gender("Odette Schwarz", "female").
gender("Omar Schwarz", "male").
gender("Pamula Schwarz", "female").
gender("Paula Bass", "female").
gender("Phylis Bolen", "female").
gender("Randi Bass", "female").
gender("Randi Schwarz", "female").
gender("Randolph Schwarz", "male").
gender("Riley Grover", "male").
gender("Rodolfo Byrd", "male").
gender("Ross Bolen", "male").
gender("Shawnta Schwarz", "female").
gender("Sona Kinder", "female").
gender("Sueann Bolen", "female").
gender("Tania Schwarz", "female").
gender("Tomas Bass", "male").
gender("Zelda Schwarz", "female").
gender("Adella Gaytan", "female").
gender("Alejandrina Luu", "female").
gender("Betsy Kimbrough", "female").
gender("Bev Branson", "female").
gender("Bobbie Luu", "female").
gender("Bradford Gaytan", "male").
gender("Casey Kimbrough", "male").
gender("Chuck Luu", "male").
gender("Cristal Luu", "female").
gender("Dennis Kimbrough", "male").
gender("Derrick Luu", "male").
gender("Ellen Nesbit", "female").
gender("Emanuel Luu", "male").
gender("Georgine Zelaya", "female").
gender("Glenda Carrell", "female").
gender("Hal Branson", "male").
gender("Hugo Kimbrough", "male").
gender("Jake Nesbit", "male").
gender("Jeremy Kimbrough", "male").
gender("Jeremy Zelaya", "male").
gender("Johnathon Zelaya", "male").
gender("Jona Carrell", "female").
gender("Joslyn Gerdes", "female").
gender("Joslyn Nesbit", "female").
gender("Jules Kimbrough", "male").
gender("Larry Coons", "male").
gender("Laurette Kimbrough", "female").
gender("Leeann Nesbit", "female").
gender("Lorine Luu", "female").
gender("Lurline Luu", "female").
gender("Melodie Bowens", "female").
gender("Micah Gerdes", "male").
gender("Micki Bowens", "female").
gender("Mona Coons", "female").
gender("Odette Kimbrough", "female").
gender("Oscar Gaytan", "male").
gender("Rigoberto Carrell", "male").
gender("Romona Kimbrough", "female").
gender("Roseanna Gaytan", "female").
gender("Shanda Branson", "female").
gender("Simone Nesbit", "female").
gender("Tamala Gerdes", "female").
gender("Tessie Branson", "female").
gender("Timothy Nesbit", "male").
gender("Vincenza Kimbrough", "female").
gender("Wilbur Gaytan", "male").
gender("Will Nesbit", "male").
gender("Williams Kimbrough", "male").
gender("Willis Bowens", "male").
gender("Xavier Zelaya", "male").
gender("Adella Omalley", "female").
gender("Anita Perkins", "female").
gender("Anton Omalley", "male").
gender("Bernardo Dasilva", "male").
gender("Bradley Perkins", "male").
gender("Bridget Omalley", "female").
gender("Buddy Perkins", "male").
gender("Carlton Perkins", "male").
gender("Chad Perkins", "male").
gender("Chrissy Dasilva", "female").
gender("Cicely Perkins", "female").
gender("Delores Dasilva", "female").
gender("Edwin Omalley", "male").
gender("Edythe Derosa", "female").
gender("Emmanuel Holland", "male").
gender("Haydee Radcliff", "female").
gender("Heather Omalley", "female").
gender("Jose Radcliff", "male").
gender("Justine Perkins", "female").
gender("Kanesha Omalley", "female").
gender("Korey Wortham", "male").
gender("Kraig Omalley", "male").
gender("Kristine Forsythe", "female").
gender("Lashanda Perkins", "female").
gender("Leonila Wortham", "female").
gender("Leroy Lupo", "male").
gender("Lester Perkins", "male").
gender("Lyndsey Benavides", "female").
gender("Magdalene Perkins", "female").
gender("Maurine Lupo", "female").
gender("Mel Perkins", "male").
gender("Micheal Perkins", "male").
gender("Minerva Lupo", "female").
gender("Monserrate Benavides", "female").
gender("Myron Lupo", "male").
gender("Normand Marston", "male").
gender("Numbers Perkins", "male").
gender("Ofelia Perkins", "female").
gender("Pedro Omalley", "male").
gender("Randolph Marston", "male").
gender("Rena Forsythe", "female").
gender("Rodrick Forsythe", "male").
gender("Rudolph Wortham", "male").
gender("Sherrie Perkins", "female").
gender("Stan Derosa", "male").
gender("Theron Marston", "male").
gender("Tomas Benavides", "male").
gender("Tosha Derosa", "female").
gender("Windy Wortham", "female").
gender("Yen Marston", "female").
gender("Yoko Holland", "female").
gender("Adalberto Huss", "male").
gender("Adela Sweat", "female").
gender("Angelia Youngblood", "female").
gender("Annabell Edge", "female").
gender("Armando Huss", "male").
gender("Ashleigh Cervantes", "female").
gender("Audie Millet", "female").
gender("Bret Hobbs", "male").
gender("Bridget Landeros", "female").
gender("Chad Huss", "male").
gender("Clint Huss", "male").
gender("Consuelo Huss", "female").
gender("Cordell Huss", "male").
gender("Cristopher Cummins", "male").
gender("Cruz Stillwell", "male").
gender("Devora Stillwell", "female").
gender("Dortha Edge", "female").
gender("Edythe Leahy", "female").
gender("Elsy Edge", "female").
gender("Evelia Edge", "female").
gender("Howard Huss", "male").
gender("Jenny Huss", "female").
gender("Jewel Huss", "female").
gender("Jocelyn Soliz", "female").
gender("Kenton Edge", "male").
gender("Ladonna Landeros", "female").
gender("Leticia Landeros", "female").
gender("Lionel Cervantes", "male").
gender("Loren Youngblood", "male").
gender("Luther Edge", "male").
gender("Lyndon Huss", "male").
gender("Lynetta Edge", "female").
gender("Mallory Soliz", "female").
gender("Marcelo Edge", "male").
gender("Niesha Hobbs", "female").
gender("Norris Kingsbury", "male").
gender("Otis Stillwell", "male").
gender("Page Edge", "female").
gender("Patrick Millet", "male").
gender("Pauline Huss", "female").
gender("Rashad Landeros", "male").
gender("Rickey Sweat", "male").
gender("Rogelio Leahy", "male").
gender("Shelton Soliz", "male").
gender("Signe Landeros", "female").
gender("Terence Landeros", "male").
gender("Tosha Youngblood", "female").
gender("Tresa Kingsbury", "female").
gender("Vernell Cummins", "female").
gender("Zachary Leahy", "male").
gender("Zana Stillwell", "female").
gender("Alysia Sage", "female").
gender("Anibal Delapaz", "male").
gender("Blaine Sage", "male").
gender("Bonnie Sage", "female").
gender("Briana Mcglothlin", "female").
gender("Bryan Benoit", "male").
gender("Charmain East", "female").
gender("Dan Poore", "male").
gender("Deidra East", "female").
gender("Demetria Sage", "female").
gender("Domonique Delapaz", "female").
gender("Earlean Akin", "female").
gender("Elbert Wyche", "male").
gender("Emanuel Poore", "male").
gender("Emelda Sage", "female").
gender("Emmanuel Akin", "male").
gender("Ernest Styles", "male").
gender("Fernando Sage", "male").
gender("Fidel Sage", "male").
gender("Francisco Sage", "male").
gender("Garth Sage", "male").
gender("Giovanni Mcglothlin", "male").
gender("Guy Sage", "male").
gender("Herlinda Sage", "female").
gender("Jerry Cawley", "male").
gender("Jona Delapaz", "female").
gender("Kena Sage", "female").
gender("Kraig Sage", "male").
gender("Kristine Sage", "female").
gender("Leah Overstreet", "female").
gender("Leann Sage", "female").
gender("Lester Sage", "male").
gender("Levi Mcglothlin", "male").
gender("Lurline Poore", "female").
gender("Lynetta Delapaz", "female").
gender("Malcolm Sage", "male").
gender("Natacha Benoit", "female").
gender("Ollie Poore", "female").
gender("Ramon East", "male").
gender("Selina Sage", "female").
gender("Seymour Sage", "male").
gender("Sherita Wyche", "female").
gender("Son Overstreet", "male").
gender("Ta Wyche", "female").
gender("Thomasena Overstreet", "female").
gender("Tianna Styles", "female").
gender("Vernice Cawley", "female").
gender("Von Sage", "male").
gender("Zachariah Overstreet", "male").
gender("Zella Sage", "female").
second_aunt(X, Y) :-
great_grandparent(X, A),
sister(A, Y).
great_grandson(X, Y) :-
great_grandchild(X, Y),
male(Y).
:- dynamic pyrun/2.
pyrun(A, B) :-
read_term_from_atom(A, C, [variable_names(B)]),
call(C).
great_granddaughter(X, Y) :-
great_grandchild(X, Y),
female(Y).
:- dynamic resource/2.
:- multifile resource/2.
|