File size: 116,601 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 |
:- 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("Alethia Kidd", "amateur astronomy").
hobby("Alexis Kingsley", "crystals").
hobby("Ana Colin", "stamp collecting").
hobby("Antionette Song", "trainspotting").
hobby("Byron Song", "animation").
hobby("Carlos Baptiste", "esports").
hobby("Damon Song", "magnet fishing").
hobby("Danilo Colin", "billiards").
hobby("Deirdre Bivins", "iceboat racing").
hobby("Eddie Song", "aerospace").
hobby("Elisabeth Kingsley", "learning").
hobby("Felton Kidd", "meteorology").
hobby("Freda Song", "learning").
hobby("Gene Song", "trapshooting").
hobby("Genesis Colin", "shoes").
hobby("Geneva Song", "meteorology").
hobby("Gilbert Summerlin", "birdwatching").
hobby("Hannah Bivins", "mahjong").
hobby("Hyun Song", "horseback riding").
hobby("Idell Kidd", "birdwatching").
hobby("Isidro Kidd", "air sports").
hobby("Jamal Song", "publishing").
hobby("Jeana Song", "fossicking").
hobby("Jesse Kiel", "dolls").
hobby("Jolene Song", "web design").
hobby("Lance Kiel", "tourism").
hobby("Lester Bivins", "lapel pins").
hobby("Lynda Colin", "slot car").
hobby("Madaline Song", "audiophile").
hobby("Matilda Summerlin", "model united nations").
hobby("Maynard Song", "insect collecting").
hobby("Mckinley Colin", "baking").
hobby("Meghann Kidd", "mineral collecting").
hobby("Melvin Kidd", "stone collecting").
hobby("Nathaniel Song", "dandyism").
hobby("Nikki Kidd", "mineral collecting").
hobby("Nina Song", "digital hoarding").
hobby("Noreen Kingsley", "reading").
hobby("Ramona Colin", "pinball").
hobby("Romelia Song", "dog sport").
hobby("Seymour Song", "research").
hobby("Shelly Reece", "butterfly watching").
hobby("Sol Song", "research").
hobby("Stephan Kidd", "stamp collecting").
hobby("Tawana Summerlin", "jogging").
hobby("Thomasine Kidd", "rowing").
hobby("Tod Song", "sport stacking").
hobby("Twila Baptiste", "audiophile").
hobby("Winfred Baptiste", "seashell collecting").
hobby("Wyatt Reece", "skateboarding").
hobby("Yvette Song", "lomography").
hobby("Adah Camper", "ant farming").
hobby("Adele Ahmad", "rock tumbling").
hobby("Amos Vargas", "birdwatching").
hobby("Angie Vargas", "model aircraft").
hobby("Ayesha Abbate", "die-cast toy").
hobby("Bradley Yocum", "metal detecting").
hobby("Carina Vargas", "learning").
hobby("Christa Vargas", "phillumeny").
hobby("David Mcclelland", "cycling").
hobby("Derek Flatt", "benchmarking").
hobby("Eddy Vargas", "sociology").
hobby("Elfriede Moffitt", "shoes").
hobby("Eli Flatt", "jujitsu").
hobby("Elvie Vargas", "tourism").
hobby("Errol Camper", "ant farming").
hobby("Forrest Vargas", "slot car racing").
hobby("Fred Vargas", "flower collecting and pressing").
hobby("Gerry Vargas", "videography").
hobby("Ginger Hamrick", "powerlifting").
hobby("Harriette Vargas", "picnicking").
hobby("Ivan Abbate", "stone collecting").
hobby("Jeannie Loper", "sea glass collecting").
hobby("Joey Mcclelland", "radio-controlled model playing").
hobby("Kacey Yocum", "badminton").
hobby("Kendrick Vargas", "insect collecting").
hobby("Kraig Hamrick", "animation").
hobby("Livia Camper", "bowling").
hobby("Marlana Mcclelland", "disc golf").
hobby("Millard Camper", "model aircraft").
hobby("Newton Moffitt", "ant farming").
hobby("Nicholas Vargas", "geography").
hobby("Noe Vargas", "meditation").
hobby("Page Vargas", "slot car racing").
hobby("Pamula Flatt", "stone collecting").
hobby("Raphael Vargas", "roundnet").
hobby("Renaldo Ahmad", "chemistry").
hobby("Robyn Vargas", "tether car").
hobby("Ronnie Vargas", "roller skating").
hobby("Rosie Vargas", "aircraft spotting").
hobby("Son Loper", "martial arts").
hobby("Stevie Vargas", "rowing").
hobby("Thelma Flatt", "philately").
hobby("Theodore Yocum", "research").
hobby("Theron Mcclelland", "butterfly watching").
hobby("Toney Vargas", "neuroscience").
hobby("Valentina Vargas", "judo").
hobby("Wendell Flatt", "cycling").
hobby("Will Vargas", "myrmecology").
hobby("Winnifred Mcclelland", "auto audiophilia").
hobby("Xavier Vargas", "lomography").
hobby("Antionette Dyer", "mountaineering").
hobby("Anton Swink", "knife throwing").
hobby("Cara Lucky", "learning").
hobby("Christina Lucky", "archery").
hobby("Damion Swink", "magnet fishing").
hobby("Dwain Lucky", "compact discs").
hobby("Ellis Lucky", "social studies").
hobby("Emil Lucky", "skateboarding").
hobby("Ervin Swink", "high-power rocketry").
hobby("Eugene Ellsworth", "table tennis").
hobby("Floyd Lucky", "mathematics").
hobby("Freda Dyer", "linguistics").
hobby("Frederick Lucky", "rugby league football").
hobby("Gabriele Lucky", "meditation").
hobby("Gemma Pirtle", "animation").
hobby("Hank Lucky", "judo").
hobby("Harlan Lucky", "engineering").
hobby("Holly Lucky", "trainspotting").
hobby("Ilona Dyer", "jukskei").
hobby("Jerrold Lucky", "jurisprudential").
hobby("Jess Ellsworth", "life science").
hobby("Jewel Dyer", "geocaching").
hobby("Judith Slate", "stamp collecting").
hobby("Katharine Lucky", "snorkeling").
hobby("Ken Pirtle", "exhibition drill").
hobby("Kermit Swink", "magnet fishing").
hobby("Kimberely Lucky", "bus spotting").
hobby("Lauren Pirtle", "fishkeeping").
hobby("Laverna Ellsworth", "microscopy").
hobby("Leena Lucky", "fishkeeping").
hobby("Lincoln Oneil", "mineral collecting").
hobby("Lisa Dyer", "philately").
hobby("Lois Oneil", "breakdancing").
hobby("Lowell Lucky", "leaves").
hobby("Luke Slate", "hobby horsing").
hobby("Meryl Lucky", "model united nations").
hobby("My Swink", "amateur astronomy").
hobby("Nelly Lucky", "botany").
hobby("Odelia Lucky", "ice hockey").
hobby("Paris Lucky", "leaves").
hobby("Renaldo Dyer", "rappelling").
hobby("Ricardo Lucky", "dolls").
hobby("Romana Dyer", "comic book collecting").
hobby("Roosevelt Dyer", "hiking/backpacking").
hobby("Selina Slate", "fishkeeping").
hobby("Sherita Dyer", "beekeeping").
hobby("Stevie Dyer", "die-cast toy").
hobby("Wesley Pirtle", "curling").
hobby("Wilmer Pirtle", "bridge").
hobby("Winnie Lucky", "tennis polo").
hobby("Alejandrina Preciado", "race walking").
hobby("Aletha Mccune", "camping").
hobby("Amie Preciado", "photography").
hobby("Annabell Mccune", "butterfly watching").
hobby("Belva Mccune", "web design").
hobby("Benjamin Mullins", "zoo visiting").
hobby("Caleb Langford", "biology").
hobby("Chelsie Roldan", "tennis polo").
hobby("Chloe Mccune", "web design").
hobby("Conrad Mccune", "ant-keeping").
hobby("Cristopher Homan", "whale watching").
hobby("Daniela Bishop", "botany").
hobby("Deane Medley", "shopping").
hobby("Deena Munroe", "hiking/backpacking").
hobby("Deidre Medley", "ice skating").
hobby("Demetria Decosta", "air hockey").
hobby("Deshawn Munroe", "ant-keeping").
hobby("Devon Preciado", "medical science").
hobby("Doug Medley", "stone skipping").
hobby("Federico Keene", "equestrianism").
hobby("Gemma Keene", "record collecting").
hobby("Gordon Decosta", "skiing").
hobby("Hans Decosta", "deltiology").
hobby("Jacque Mullins", "roller skating").
hobby("Jamey Turnage", "insect collecting").
hobby("Jamie Rounds", "people-watching").
hobby("Jon Preciado", "reading").
hobby("Josie Langford", "meditation").
hobby("Katerine Mullins", "sports science").
hobby("Kathey Turnage", "ice hockey").
hobby("Kelley Preciado", "flower collecting and pressing").
hobby("Lavonne Rounds", "fusilately").
hobby("Lorina Homan", "web design").
hobby("Nestor Preciado", "jujitsu").
hobby("Paula Preciado", "vintage clothing").
hobby("Pete Mullins", "audiophile").
hobby("Queenie Homan", "curling").
hobby("Rolland Bishop", "slot car").
hobby("Romana Bishop", "road biking").
hobby("Ronald Mccune", "perfume").
hobby("Ruby Preciado", "microscopy").
hobby("Rudolph Keene", "herping").
hobby("Sam Bishop", "butterfly watching").
hobby("Sanford Preciado", "meditation").
hobby("Santiago Homan", "perfume").
hobby("Santos Rounds", "mineral collecting").
hobby("Sherrie Keene", "fishkeeping").
hobby("Stacey Roldan", "mineral collecting").
hobby("Vaughn Bishop", "phillumeny").
hobby("Zackary Keene", "radio-controlled model playing").
hobby("Zoraida Roldan", "magnet fishing").
hobby("Andy Perez", "architecture").
hobby("Armando Perreault", "notaphily").
hobby("Bev Gamboa", "research").
hobby("Billye Laird", "radio-controlled model collecting").
hobby("Caleb Stroup", "microscopy").
hobby("Carmella Gamboa", "mathematics").
hobby("Chante Perreault", "ephemera collecting").
hobby("Christopher Pfeiffer", "scutelliphily").
hobby("Cyril Perreault", "baseball").
hobby("Damien Reece", "speedcubing").
hobby("Daniele Perez", "swimming").
hobby("Dion Gamboa", "publishing").
hobby("Elbert Gamboa", "ant farming").
hobby("Elvis Laird", "capoeira").
hobby("Emerson Perez", "web design").
hobby("Erik Damron", "mathematics").
hobby("Erma Gamboa", "flying").
hobby("Felipe Durbin", "debate").
hobby("Flora Driggers", "butterfly watching").
hobby("Grady Perez", "billiards").
hobby("Homer Perez", "meditation").
hobby("Idell Perreault", "microscopy").
hobby("Ivan Driggers", "social studies").
hobby("Janell Perez", "antiquities").
hobby("Janis Reece", "longboarding").
hobby("Joline Perez", "esports").
hobby("Karla Perez", "leaves").
hobby("Kurt Gamboa", "metal detecting").
hobby("Lashawnda Reece", "fossil hunting").
hobby("Laverne Reece", "web design").
hobby("Lester Perez", "ant farming").
hobby("Lissa Stroup", "museum visiting").
hobby("Lucien Perez", "billiards").
hobby("Malcolm Driggers", "railway studies").
hobby("Mariann Damron", "seashell collecting").
hobby("Marlene Laird", "table tennis playing").
hobby("Marvin Laird", "biology").
hobby("Myra Pfeiffer", "mineral collecting").
hobby("Page Reece", "transit map collecting").
hobby("Pamala Reece", "dairy farming").
hobby("Reita Driggers", "sled dog racing").
hobby("Rena Driggers", "rock balancing").
hobby("Rodney Durbin", "rock balancing").
hobby("Rosemary Gamboa", "fencing").
hobby("Sondra Perez", "radio-controlled model collecting").
hobby("Sophie Stroup", "reading").
hobby("Tanner Pfeiffer", "guerrilla gardening").
hobby("Teena Durbin", "butterfly watching").
hobby("Teresita Damron", "tourism").
hobby("Tyson Gamboa", "model racing").
hobby("Wilton Perez", "ice hockey").
hobby("Aline Sipes", "insect collecting").
hobby("Art Sipes", "learning").
hobby("Bernardo Sipes", "volleyball").
hobby("Brooke Silver", "croquet").
hobby("Damian Standifer", "beauty pageants").
hobby("Debbie Silver", "action figure").
hobby("Delsie Hail", "slot car racing").
hobby("Desmond Sipes", "vinyl records").
hobby("Devin Sipes", "birdwatching").
hobby("Dianna Sipes", "finance").
hobby("Dudley Manion", "ant farming").
hobby("Eugene Hail", "triathlon").
hobby("Francisca Sipes", "surfing").
hobby("Gabriel Sipes", "sea glass collecting").
hobby("Gavin Sipes", "flower collecting and pressing").
hobby("Glenda Sipes", "herping").
hobby("Hannah Sipes", "magnet fishing").
hobby("Hiram Sipes", "longboarding").
hobby("Ida Silver", "gongoozling").
hobby("Jamal Sipes", "table tennis").
hobby("Jefferson Abram", "myrmecology").
hobby("Jennette Manion", "microscopy").
hobby("Jerry Standifer", "tour skating").
hobby("Kenneth Bullins", "business").
hobby("Lauren Bullins", "magnet fishing").
hobby("Lauren Sipes", "video game collecting").
hobby("Laverna Sipes", "transit map collecting").
hobby("Laverne Standifer", "archery").
hobby("Lenny Standifer", "microscopy").
hobby("Lessie Sipes", "dolls").
hobby("Linda Sipes", "beekeeping").
hobby("Loraine Sipes", "canyoning").
hobby("Miranda Sipes", "research").
hobby("Myles Abram", "publishing").
hobby("Nathan Standifer", "magnet fishing").
hobby("Nicholle Sipes", "shooting sports").
hobby("Orlando Sipes", "satellite watching").
hobby("Rae Sipes", "life science").
hobby("Randal Hail", "geocaching").
hobby("Shelton Silver", "auto racing").
hobby("Stella Standifer", "chemistry").
hobby("Ta Standifer", "speedcubing").
hobby("Taylor Silver", "myrmecology").
hobby("Thomasine Standifer", "railway journeys").
hobby("Tonya Sipes", "knife throwing").
hobby("Tyrell Sipes", "microscopy").
hobby("Tyrone Silver", "social studies").
hobby("Walker Sipes", "notaphily").
hobby("Wilson Sipes", "equestrianism").
hobby("Yoshiko Silver", "benchmarking").
hobby("Zana Abram", "roller derby").
granddaughter(X, Y) :-
grandchild(X, Y),
female(Y).
grandson(X, Y) :-
grandchild(X, Y),
male(Y).
:- dynamic job/2.
job("Alethia Kidd", "academic librarian").
job("Alexis Kingsley", "clinical research associate").
job("Ana Colin", "museum curator").
job("Antionette Song", "technical sales engineer").
job("Byron Song", "advertising account planner").
job("Carlos Baptiste", "toxicologist").
job("Damon Song", "education administrator").
job("Danilo Colin", "colour technologist").
job("Deirdre Bivins", "regulatory affairs officer").
job("Eddie Song", "gaffer").
job("Elisabeth Kingsley", "producer").
job("Felton Kidd", "newspaper journalist").
job("Freda Song", "social researcher").
job("Gene Song", "learning disability nurse").
job("Genesis Colin", "interior and spatial designer").
job("Geneva Song", "pharmacologist").
job("Gilbert Summerlin", "investment banker").
job("Hannah Bivins", "biomedical engineer").
job("Hyun Song", "marketing executive").
job("Idell Kidd", "chartered legal executive").
job("Isidro Kidd", "public relations officer").
job("Jamal Song", "nutritional therapist").
job("Jeana Song", "psychotherapist").
job("Jesse Kiel", "production designer").
job("Jolene Song", "phytotherapist").
job("Lance Kiel", "training and development officer").
job("Lester Bivins", "electronics engineer").
job("Lynda Colin", "contracting civil engineer").
job("Madaline Song", "air traffic controller").
job("Matilda Summerlin", "airline pilot").
job("Maynard Song", "IT consultant").
job("Mckinley Colin", "geophysical data processor").
job("Meghann Kidd", "careers information officer").
job("Melvin Kidd", "applications developer").
job("Nathaniel Song", "architectural technologist").
job("Nikki Kidd", "horticultural therapist").
job("Nina Song", "theme park manager").
job("Noreen Kingsley", "animal nutritionist").
job("Ramona Colin", "education administrator").
job("Romelia Song", "community development worker").
job("Seymour Song", "ophthalmologist").
job("Shelly Reece", "lobbyist").
job("Sol Song", "telecommunications researcher").
job("Stephan Kidd", "social worker").
job("Tawana Summerlin", "exercise physiologist").
job("Thomasine Kidd", "senior tax professional").
job("Tod Song", "environmental consultant").
job("Twila Baptiste", "soil scientist").
job("Winfred Baptiste", "interpreter").
job("Wyatt Reece", "professor emeritus").
job("Yvette Song", "archivist").
job("Adah Camper", "herpetologist").
job("Adele Ahmad", "transport planner").
job("Amos Vargas", "advice worker").
job("Angie Vargas", "hospital pharmacist").
job("Ayesha Abbate", "network engineer").
job("Bradley Yocum", "personal assistant").
job("Carina Vargas", "tax inspector").
job("Christa Vargas", "industrial buyer").
job("David Mcclelland", "physicist").
job("Derek Flatt", "sub").
job("Eddy Vargas", "market researcher").
job("Elfriede Moffitt", "building services engineer").
job("Eli Flatt", "general practice doctor").
job("Elvie Vargas", "dispensing optician").
job("Errol Camper", "company secretary").
job("Forrest Vargas", "sub").
job("Fred Vargas", "accounting technician").
job("Gerry Vargas", "local government officer").
job("Ginger Hamrick", "magazine features editor").
job("Harriette Vargas", "publishing rights manager").
job("Ivan Abbate", "government social research officer").
job("Jeannie Loper", "mudlogger").
job("Joey Mcclelland", "senior tax professional").
job("Kacey Yocum", "patent examiner").
job("Kendrick Vargas", "science writer").
job("Kraig Hamrick", "estate agent").
job("Livia Camper", "lighting technician").
job("Marlana Mcclelland", "fine artist").
job("Millard Camper", "ship broker").
job("Newton Moffitt", "tree surgeon").
job("Nicholas Vargas", "geologist").
job("Noe Vargas", "restaurant manager").
job("Page Vargas", "designer").
job("Pamula Flatt", "drilling engineer").
job("Raphael Vargas", "radiographer").
job("Renaldo Ahmad", "legal secretary").
job("Robyn Vargas", "health visitor").
job("Ronnie Vargas", "medical physicist").
job("Rosie Vargas", "engineer").
job("Son Loper", "geophysical data processor").
job("Stevie Vargas", "midwife").
job("Thelma Flatt", "financial risk analyst").
job("Theodore Yocum", "English as a foreign language teacher").
job("Theron Mcclelland", "personnel officer").
job("Toney Vargas", "systems analyst").
job("Valentina Vargas", "animator").
job("Wendell Flatt", "educational psychologist").
job("Will Vargas", "production manager").
job("Winnifred Mcclelland", "magazine journalist").
job("Xavier Vargas", "runner").
job("Antionette Dyer", "learning disability nurse").
job("Anton Swink", "radiation protection practitioner").
job("Cara Lucky", "advertising art director").
job("Christina Lucky", "scientific laboratory technician").
job("Damion Swink", "call centre manager").
job("Dwain Lucky", "arts development officer").
job("Ellis Lucky", "estate agent").
job("Emil Lucky", "furniture conservator").
job("Ervin Swink", "travel agency manager").
job("Eugene Ellsworth", "maintenance engineer").
job("Floyd Lucky", "conservation officer").
job("Freda Dyer", "copy").
job("Frederick Lucky", "sales professional").
job("Gabriele Lucky", "graphic designer").
job("Gemma Pirtle", "special educational needs teacher").
job("Hank Lucky", "astronomer").
job("Harlan Lucky", "sales promotion account executive").
job("Holly Lucky", "accounting technician").
job("Ilona Dyer", "corporate investment banker").
job("Jerrold Lucky", "insurance broker").
job("Jess Ellsworth", "advertising account planner").
job("Jewel Dyer", "interpreter").
job("Judith Slate", "writer").
job("Katharine Lucky", "advertising account planner").
job("Ken Pirtle", "actuary").
job("Kermit Swink", "clinical biochemist").
job("Kimberely Lucky", "communications engineer").
job("Lauren Pirtle", "publishing copy").
job("Laverna Ellsworth", "database administrator").
job("Leena Lucky", "retail buyer").
job("Lincoln Oneil", "magazine features editor").
job("Lisa Dyer", "heritage manager").
job("Lois Oneil", "commercial horticulturist").
job("Lowell Lucky", "presenter").
job("Luke Slate", "administrator").
job("Meryl Lucky", "marine scientist").
job("My Swink", "rural practice surveyor").
job("Nelly Lucky", "occupational hygienist").
job("Odelia Lucky", "town planner").
job("Paris Lucky", "firefighter").
job("Renaldo Dyer", "publishing rights manager").
job("Ricardo Lucky", "charity fundraiser").
job("Romana Dyer", "paediatric nurse").
job("Roosevelt Dyer", "licensed conveyancer").
job("Selina Slate", "music therapist").
job("Sherita Dyer", "building control surveyor").
job("Stevie Dyer", "records manager").
job("Wesley Pirtle", "social worker").
job("Wilmer Pirtle", "industrial designer").
job("Winnie Lucky", "hydrographic surveyor").
job("Alejandrina Preciado", "trade union research officer").
job("Aletha Mccune", "fisheries officer").
job("Amie Preciado", "public relations account executive").
job("Annabell Mccune", "editorial assistant").
job("Belva Mccune", "brewing technologist").
job("Benjamin Mullins", "dramatherapist").
job("Caleb Langford", "conference centre manager").
job("Chelsie Roldan", "embryologist").
job("Chloe Mccune", "geoscientist").
job("Conrad Mccune", "trade mark attorney").
job("Cristopher Homan", "multimedia specialist").
job("Daniela Bishop", "biochemist").
job("Deane Medley", "senior tax professional").
job("Deena Munroe", "copywriter").
job("Deidre Medley", "lecturer").
job("Demetria Decosta", "development worker").
job("Deshawn Munroe", "educational psychologist").
job("Devon Preciado", "IT sales professional").
job("Doug Medley", "accountant").
job("Federico Keene", "physiotherapist").
job("Gemma Keene", "energy manager").
job("Gordon Decosta", "chief of staff").
job("Hans Decosta", "conference centre manager").
job("Jacque Mullins", "doctor").
job("Jamey Turnage", "data scientist").
job("Jamie Rounds", "exercise physiologist").
job("Jon Preciado", "physicist").
job("Josie Langford", "health physicist").
job("Katerine Mullins", "fisheries officer").
job("Kathey Turnage", "corporate treasurer").
job("Kelley Preciado", "customer service manager").
job("Lavonne Rounds", "bookseller").
job("Lorina Homan", "trade union research officer").
job("Nestor Preciado", "geochemist").
job("Paula Preciado", "furniture designer").
job("Pete Mullins", "clinical research associate").
job("Queenie Homan", "public house manager").
job("Rolland Bishop", "toxicologist").
job("Romana Bishop", "public house manager").
job("Ronald Mccune", "optometrist").
job("Ruby Preciado", "artist").
job("Rudolph Keene", "development worker").
job("Sam Bishop", "chemist").
job("Sanford Preciado", "primary school teacher").
job("Santiago Homan", "civil engineer").
job("Santos Rounds", "photographer").
job("Sherrie Keene", "trade mark attorney").
job("Stacey Roldan", "IT technical support officer").
job("Vaughn Bishop", "fitness centre manager").
job("Zackary Keene", "press photographer").
job("Zoraida Roldan", "textile designer").
job("Andy Perez", "occupational hygienist").
job("Armando Perreault", "hydrographic surveyor").
job("Bev Gamboa", "higher education lecturer").
job("Billye Laird", "network engineer").
job("Caleb Stroup", "film editor").
job("Carmella Gamboa", "magazine journalist").
job("Chante Perreault", "printmaker").
job("Christopher Pfeiffer", "medical illustrator").
job("Cyril Perreault", "ambulance person").
job("Damien Reece", "health and safety inspector").
job("Daniele Perez", "farm manager").
job("Dion Gamboa", "fish farm manager").
job("Elbert Gamboa", "oncologist").
job("Elvis Laird", "science writer").
job("Emerson Perez", "social research officer").
job("Erik Damron", "tree surgeon").
job("Erma Gamboa", "geophysical data processor").
job("Felipe Durbin", "mining engineer").
job("Flora Driggers", "passenger transport manager").
job("Grady Perez", "tour manager").
job("Homer Perez", "financial manager").
job("Idell Perreault", "warden").
job("Ivan Driggers", "museum exhibitions officer").
job("Janell Perez", "art therapist").
job("Janis Reece", "forensic scientist").
job("Joline Perez", "radio broadcast assistant").
job("Karla Perez", "lecturer").
job("Kurt Gamboa", "textile designer").
job("Lashawnda Reece", "optometrist").
job("Laverne Reece", "gaffer").
job("Lester Perez", "podiatrist").
job("Lissa Stroup", "exhibitions officer").
job("Lucien Perez", "armed forces operational officer").
job("Malcolm Driggers", "database administrator").
job("Mariann Damron", "programme researcher").
job("Marlene Laird", "tourist information centre manager").
job("Marvin Laird", "manufacturing engineer").
job("Myra Pfeiffer", "facilities manager").
job("Page Reece", "aeronautical engineer").
job("Pamala Reece", "chiropodist").
job("Reita Driggers", "production assistant").
job("Rena Driggers", "restaurant manager").
job("Rodney Durbin", "financial controller").
job("Rosemary Gamboa", "facilities manager").
job("Sondra Perez", "health service manager").
job("Sophie Stroup", "theatre stage manager").
job("Tanner Pfeiffer", "proofreader").
job("Teena Durbin", "health visitor").
job("Teresita Damron", "quarry manager").
job("Tyson Gamboa", "building services engineer").
job("Wilton Perez", "chemist").
job("Aline Sipes", "textile designer").
job("Art Sipes", "education administrator").
job("Bernardo Sipes", "product designer").
job("Brooke Silver", "ecologist").
job("Damian Standifer", "environmental education officer").
job("Debbie Silver", "pilot").
job("Delsie Hail", "manufacturing systems engineer").
job("Desmond Sipes", "careers adviser").
job("Devin Sipes", "purchasing manager").
job("Dianna Sipes", "petroleum engineer").
job("Dudley Manion", "IT technical support officer").
job("Eugene Hail", "pensions consultant").
job("Francisca Sipes", "colour technologist").
job("Gabriel Sipes", "physicist").
job("Gavin Sipes", "equities trader").
job("Glenda Sipes", "IT technical support officer").
job("Hannah Sipes", "horticultural consultant").
job("Hiram Sipes", "accounting technician").
job("Ida Silver", "nutritional therapist").
job("Jamal Sipes", "soil scientist").
job("Jefferson Abram", "physicist").
job("Jennette Manion", "education administrator").
job("Jerry Standifer", "merchant navy officer").
job("Kenneth Bullins", "merchandiser").
job("Lauren Bullins", "administrator").
job("Lauren Sipes", "product designer").
job("Laverna Sipes", "health promotion specialist").
job("Laverne Standifer", "IT sales professional").
job("Lenny Standifer", "medical sales representative").
job("Lessie Sipes", "operational investment banker").
job("Linda Sipes", "electronics engineer").
job("Loraine Sipes", "nurse").
job("Miranda Sipes", "producer").
job("Myles Abram", "civil engineer").
job("Nathan Standifer", "corporate investment banker").
job("Nicholle Sipes", "psychologist").
job("Orlando Sipes", "accounting technician").
job("Rae Sipes", "training and development officer").
job("Randal Hail", "chartered public finance accountant").
job("Shelton Silver", "mechanical engineer").
job("Stella Standifer", "advertising art director").
job("Ta Standifer", "environmental consultant").
job("Taylor Silver", "further education lecturer").
job("Thomasine Standifer", "geographical information systems officer").
job("Tonya Sipes", "building control surveyor").
job("Tyrell Sipes", "technical author").
job("Tyrone Silver", "legal secretary").
job("Walker Sipes", "embryologist").
job("Wilson Sipes", "hydrographic surveyor").
job("Yoshiko Silver", "designer").
job("Zana Abram", "analytical chemist").
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("Alethia Kidd", "0873-07-19").
dob("Alexis Kingsley", "1041-10-02").
dob("Ana Colin", "0935-04-16").
dob("Antionette Song", "0991-05-04").
dob("Byron Song", "0908-09-14").
dob("Carlos Baptiste", "1044-12-31").
dob("Damon Song", "1021-10-02").
dob("Danilo Colin", "0909-08-09").
dob("Deirdre Bivins", "1021-12-21").
dob("Eddie Song", "0935-01-05").
dob("Elisabeth Kingsley", "1073-05-19").
dob("Felton Kidd", "0874-01-26").
dob("Freda Song", "0961-03-14").
dob("Gene Song", "1016-07-28").
dob("Genesis Colin", "0935-10-02").
dob("Geneva Song", "1017-08-26").
dob("Gilbert Summerlin", "0875-11-11").
dob("Hannah Bivins", "0991-10-05").
dob("Hyun Song", "0908-01-20").
dob("Idell Kidd", "0882-10-19").
dob("Isidro Kidd", "0900-05-25").
dob("Jamal Song", "0961-07-23").
dob("Jeana Song", "0965-11-11").
dob("Jesse Kiel", "0878-11-05").
dob("Jolene Song", "1015-01-07").
dob("Lance Kiel", "0879-03-08").
dob("Lester Bivins", "0991-03-23").
dob("Lynda Colin", "0941-08-16").
dob("Madaline Song", "0959-12-18").
dob("Matilda Summerlin", "0874-08-12").
dob("Maynard Song", "1023-05-28").
dob("Mckinley Colin", "0936-10-18").
dob("Meghann Kidd", "0929-12-23").
dob("Melvin Kidd", "0905-06-22").
dob("Nathaniel Song", "0985-07-27").
dob("Nikki Kidd", "0903-01-28").
dob("Nina Song", "0936-08-07").
dob("Noreen Kingsley", "1042-12-18").
dob("Ramona Colin", "0909-09-08").
dob("Romelia Song", "1020-12-02").
dob("Seymour Song", "0964-05-16").
dob("Shelly Reece", "0985-04-02").
dob("Sol Song", "0993-10-31").
dob("Stephan Kidd", "0852-06-22").
dob("Tawana Summerlin", "0904-08-01").
dob("Thomasine Kidd", "0854-04-15").
dob("Tod Song", "0993-10-31").
dob("Twila Baptiste", "1018-11-12").
dob("Winfred Baptiste", "1014-09-07").
dob("Wyatt Reece", "0983-05-04").
dob("Yvette Song", "0962-11-01").
dob("Adah Camper", "0932-07-19").
dob("Adele Ahmad", "0925-02-26").
dob("Amos Vargas", "0956-09-05").
dob("Angie Vargas", "0977-10-14").
dob("Ayesha Abbate", "0916-07-12").
dob("Bradley Yocum", "0978-01-11").
dob("Carina Vargas", "0983-08-23").
dob("Christa Vargas", "0955-08-11").
dob("David Mcclelland", "1006-12-16").
dob("Derek Flatt", "0970-03-01").
dob("Eddy Vargas", "0980-12-28").
dob("Elfriede Moffitt", "0880-02-08").
dob("Eli Flatt", "0945-08-01").
dob("Elvie Vargas", "1005-07-01").
dob("Errol Camper", "0927-10-02").
dob("Forrest Vargas", "1002-10-20").
dob("Fred Vargas", "0981-04-01").
dob("Gerry Vargas", "0980-03-01").
dob("Ginger Hamrick", "0947-04-05").
dob("Harriette Vargas", "0958-03-01").
dob("Ivan Abbate", "0919-06-20").
dob("Jeannie Loper", "0846-01-09").
dob("Joey Mcclelland", "0974-07-26").
dob("Kacey Yocum", "0982-03-17").
dob("Kendrick Vargas", "1010-11-04").
dob("Kraig Hamrick", "0950-03-09").
dob("Livia Camper", "0905-05-08").
dob("Marlana Mcclelland", "1006-08-22").
dob("Millard Camper", "0903-07-02").
dob("Newton Moffitt", "0880-10-06").
dob("Nicholas Vargas", "1033-02-24").
dob("Noe Vargas", "0983-04-25").
dob("Page Vargas", "1008-11-17").
dob("Pamula Flatt", "0946-04-07").
dob("Raphael Vargas", "1009-02-12").
dob("Renaldo Ahmad", "0928-10-18").
dob("Robyn Vargas", "1008-05-19").
dob("Ronnie Vargas", "0983-02-22").
dob("Rosie Vargas", "0983-02-16").
dob("Son Loper", "0851-04-10").
dob("Stevie Vargas", "0929-04-04").
dob("Thelma Flatt", "0968-03-13").
dob("Theodore Yocum", "1009-01-14").
dob("Theron Mcclelland", "1032-04-22").
dob("Toney Vargas", "1007-07-11").
dob("Valentina Vargas", "0929-05-28").
dob("Wendell Flatt", "0974-07-13").
dob("Will Vargas", "0958-01-11").
dob("Winnifred Mcclelland", "0974-12-02").
dob("Xavier Vargas", "0983-02-22").
dob("Antionette Dyer", "0992-09-18").
dob("Anton Swink", "0940-12-07").
dob("Cara Lucky", "0854-06-21").
dob("Christina Lucky", "0913-08-08").
dob("Damion Swink", "0943-06-02").
dob("Dwain Lucky", "0941-09-17").
dob("Ellis Lucky", "0966-11-10").
dob("Emil Lucky", "0972-07-09").
dob("Ervin Swink", "0912-12-21").
dob("Eugene Ellsworth", "1014-07-07").
dob("Floyd Lucky", "0998-10-28").
dob("Freda Dyer", "1017-09-02").
dob("Frederick Lucky", "0918-09-11").
dob("Gabriele Lucky", "0886-06-02").
dob("Gemma Pirtle", "0943-12-23").
dob("Hank Lucky", "1000-12-27").
dob("Harlan Lucky", "0916-05-04").
dob("Holly Lucky", "0996-05-02").
dob("Ilona Dyer", "1017-06-24").
dob("Jerrold Lucky", "0857-03-06").
dob("Jess Ellsworth", "1039-06-09").
dob("Jewel Dyer", "0992-04-04").
dob("Judith Slate", "0858-03-23").
dob("Katharine Lucky", "0938-06-11").
dob("Ken Pirtle", "0967-07-11").
dob("Kermit Swink", "0936-04-05").
dob("Kimberely Lucky", "0864-10-24").
dob("Lauren Pirtle", "0974-04-02").
dob("Laverna Ellsworth", "1015-12-22").
dob("Leena Lucky", "0968-09-03").
dob("Lincoln Oneil", "0882-03-28").
dob("Lisa Dyer", "0989-08-06").
dob("Lois Oneil", "0881-07-26").
dob("Lowell Lucky", "0835-07-27").
dob("Luke Slate", "0860-12-04").
dob("Meryl Lucky", "0911-05-16").
dob("My Swink", "0913-10-14").
dob("Nelly Lucky", "0966-01-01").
dob("Odelia Lucky", "0918-09-23").
dob("Paris Lucky", "0939-01-12").
dob("Renaldo Dyer", "0992-03-06").
dob("Ricardo Lucky", "0887-08-17").
dob("Romana Dyer", "0994-08-14").
dob("Roosevelt Dyer", "0990-05-21").
dob("Selina Slate", "0887-06-30").
dob("Sherita Dyer", "0965-02-24").
dob("Stevie Dyer", "0965-11-22").
dob("Wesley Pirtle", "0971-01-12").
dob("Wilmer Pirtle", "0942-09-22").
dob("Winnie Lucky", "0835-07-11").
dob("Alejandrina Preciado", "1045-03-11").
dob("Aletha Mccune", "0938-08-26").
dob("Amie Preciado", "0962-01-21").
dob("Annabell Mccune", "0970-01-22").
dob("Belva Mccune", "0998-07-18").
dob("Benjamin Mullins", "0940-02-25").
dob("Caleb Langford", "0963-05-06").
dob("Chelsie Roldan", "1078-06-02").
dob("Chloe Mccune", "0968-08-02").
dob("Conrad Mccune", "0937-01-22").
dob("Cristopher Homan", "1014-04-19").
dob("Daniela Bishop", "0986-07-12").
dob("Deane Medley", "1016-04-12").
dob("Deena Munroe", "1015-03-04").
dob("Deidre Medley", "0988-10-12").
dob("Demetria Decosta", "1014-11-06").
dob("Deshawn Munroe", "1018-02-08").
dob("Devon Preciado", "1017-09-23").
dob("Doug Medley", "0987-02-27").
dob("Federico Keene", "1048-07-11").
dob("Gemma Keene", "0993-06-29").
dob("Gordon Decosta", "1012-08-17").
dob("Hans Decosta", "1044-03-24").
dob("Jacque Mullins", "0940-08-06").
dob("Jamey Turnage", "0984-04-12").
dob("Jamie Rounds", "1018-12-07").
dob("Jon Preciado", "0961-09-17").
dob("Josie Langford", "0965-07-05").
dob("Katerine Mullins", "0913-02-02").
dob("Kathey Turnage", "0986-01-11").
dob("Kelley Preciado", "0990-04-20").
dob("Lavonne Rounds", "1018-10-12").
dob("Lorina Homan", "0987-07-03").
dob("Nestor Preciado", "1046-02-24").
dob("Paula Preciado", "1042-03-28").
dob("Pete Mullins", "0913-06-11").
dob("Queenie Homan", "1020-09-18").
dob("Rolland Bishop", "0991-06-13").
dob("Romana Bishop", "0962-12-19").
dob("Ronald Mccune", "0969-03-07").
dob("Ruby Preciado", "1018-11-16").
dob("Rudolph Keene", "1019-06-20").
dob("Sam Bishop", "1024-06-16").
dob("Sanford Preciado", "0989-07-15").
dob("Santiago Homan", "0982-06-26").
dob("Santos Rounds", "1049-03-17").
dob("Sherrie Keene", "1019-05-13").
dob("Stacey Roldan", "1050-05-24").
dob("Vaughn Bishop", "0958-07-06").
dob("Zackary Keene", "0993-03-04").
dob("Zoraida Roldan", "1051-12-04").
dob("Andy Perez", "0979-06-02").
dob("Armando Perreault", "0996-10-25").
dob("Bev Gamboa", "0922-12-25").
dob("Billye Laird", "0905-07-06").
dob("Caleb Stroup", "1011-12-03").
dob("Carmella Gamboa", "1020-11-06").
dob("Chante Perreault", "1002-05-13").
dob("Christopher Pfeiffer", "1013-11-21").
dob("Cyril Perreault", "0973-04-10").
dob("Damien Reece", "0954-06-18").
dob("Daniele Perez", "0967-10-13").
dob("Dion Gamboa", "0952-05-21").
dob("Elbert Gamboa", "0925-05-26").
dob("Elvis Laird", "0904-02-14").
dob("Emerson Perez", "0970-10-08").
dob("Erik Damron", "0998-07-07").
dob("Erma Gamboa", "0986-03-11").
dob("Felipe Durbin", "0991-08-04").
dob("Flora Driggers", "0994-04-09").
dob("Grady Perez", "0994-11-14").
dob("Homer Perez", "0970-10-08").
dob("Idell Perreault", "0973-11-16").
dob("Ivan Driggers", "0930-05-08").
dob("Janell Perez", "0969-11-03").
dob("Janis Reece", "0984-03-15").
dob("Joline Perez", "0966-08-19").
dob("Karla Perez", "0982-03-09").
dob("Kurt Gamboa", "0988-03-21").
dob("Lashawnda Reece", "0986-09-26").
dob("Laverne Reece", "0955-01-06").
dob("Lester Perez", "0996-08-19").
dob("Lissa Stroup", "1006-01-21").
dob("Lucien Perez", "1012-07-03").
dob("Malcolm Driggers", "0961-10-11").
dob("Mariann Damron", "1001-02-26").
dob("Marlene Laird", "0878-06-05").
dob("Marvin Laird", "0879-10-15").
dob("Myra Pfeiffer", "0982-11-17").
dob("Page Reece", "0982-11-09").
dob("Pamala Reece", "0976-04-18").
dob("Reita Driggers", "0930-11-26").
dob("Rena Driggers", "0960-10-25").
dob("Rodney Durbin", "1020-01-26").
dob("Rosemary Gamboa", "0958-03-06").
dob("Sondra Perez", "0945-11-02").
dob("Sophie Stroup", "1038-09-02").
dob("Tanner Pfeiffer", "0985-03-10").
dob("Teena Durbin", "0989-11-16").
dob("Teresita Damron", "1029-06-20").
dob("Tyson Gamboa", "0959-08-17").
dob("Wilton Perez", "0946-01-16").
dob("Aline Sipes", "0943-10-18").
dob("Art Sipes", "0970-03-14").
dob("Bernardo Sipes", "0998-05-23").
dob("Brooke Silver", "0916-03-07").
dob("Damian Standifer", "0969-07-01").
dob("Debbie Silver", "0977-06-04").
dob("Delsie Hail", "0941-01-26").
dob("Desmond Sipes", "0940-05-06").
dob("Devin Sipes", "0917-10-19").
dob("Dianna Sipes", "0942-08-04").
dob("Dudley Manion", "0854-06-06").
dob("Eugene Hail", "0942-12-04").
dob("Francisca Sipes", "0965-10-25").
dob("Gabriel Sipes", "0910-05-15").
dob("Gavin Sipes", "0914-01-06").
dob("Glenda Sipes", "0937-08-09").
dob("Hannah Sipes", "0970-03-19").
dob("Hiram Sipes", "0885-02-14").
dob("Ida Silver", "0945-07-10").
dob("Jamal Sipes", "0965-11-29").
dob("Jefferson Abram", "0944-09-05").
dob("Jennette Manion", "0853-01-11").
dob("Jerry Standifer", "1019-05-01").
dob("Kenneth Bullins", "0884-11-16").
dob("Lauren Bullins", "0883-04-13").
dob("Lauren Sipes", "1001-06-28").
dob("Laverna Sipes", "0944-07-20").
dob("Laverne Standifer", "1026-10-27").
dob("Lenny Standifer", "0996-01-01").
dob("Lessie Sipes", "0913-10-04").
dob("Linda Sipes", "0942-10-17").
dob("Loraine Sipes", "0910-03-16").
dob("Miranda Sipes", "0947-02-07").
dob("Myles Abram", "0971-01-21").
dob("Nathan Standifer", "0994-11-16").
dob("Nicholle Sipes", "0914-10-21").
dob("Orlando Sipes", "0973-05-28").
dob("Rae Sipes", "0887-12-28").
dob("Randal Hail", "0966-04-23").
dob("Shelton Silver", "0946-01-15").
dob("Stella Standifer", "0992-04-06").
dob("Ta Standifer", "0966-12-26").
dob("Taylor Silver", "0914-05-18").
dob("Thomasine Standifer", "0993-05-10").
dob("Tonya Sipes", "0945-11-10").
dob("Tyrell Sipes", "0940-12-04").
dob("Tyrone Silver", "0887-04-27").
dob("Walker Sipes", "0971-08-16").
dob("Wilson Sipes", "0946-12-06").
dob("Yoshiko Silver", "0886-08-27").
dob("Zana Abram", "0943-03-06").
:- 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("Alethia Kidd", person).
type("Alexis Kingsley", person).
type("Ana Colin", person).
type("Antionette Song", person).
type("Byron Song", person).
type("Carlos Baptiste", person).
type("Damon Song", person).
type("Danilo Colin", person).
type("Deirdre Bivins", person).
type("Eddie Song", person).
type("Elisabeth Kingsley", person).
type("Felton Kidd", person).
type("Freda Song", person).
type("Gene Song", person).
type("Genesis Colin", person).
type("Geneva Song", person).
type("Gilbert Summerlin", person).
type("Hannah Bivins", person).
type("Hyun Song", person).
type("Idell Kidd", person).
type("Isidro Kidd", person).
type("Jamal Song", person).
type("Jeana Song", person).
type("Jesse Kiel", person).
type("Jolene Song", person).
type("Lance Kiel", person).
type("Lester Bivins", person).
type("Lynda Colin", person).
type("Madaline Song", person).
type("Matilda Summerlin", person).
type("Maynard Song", person).
type("Mckinley Colin", person).
type("Meghann Kidd", person).
type("Melvin Kidd", person).
type("Nathaniel Song", person).
type("Nikki Kidd", person).
type("Nina Song", person).
type("Noreen Kingsley", person).
type("Ramona Colin", person).
type("Romelia Song", person).
type("Seymour Song", person).
type("Shelly Reece", person).
type("Sol Song", person).
type("Stephan Kidd", person).
type("Tawana Summerlin", person).
type("Thomasine Kidd", person).
type("Tod Song", person).
type("Twila Baptiste", person).
type("Winfred Baptiste", person).
type("Wyatt Reece", person).
type("Yvette Song", person).
type("Adah Camper", person).
type("Adele Ahmad", person).
type("Amos Vargas", person).
type("Angie Vargas", person).
type("Ayesha Abbate", person).
type("Bradley Yocum", person).
type("Carina Vargas", person).
type("Christa Vargas", person).
type("David Mcclelland", person).
type("Derek Flatt", person).
type("Eddy Vargas", person).
type("Elfriede Moffitt", person).
type("Eli Flatt", person).
type("Elvie Vargas", person).
type("Errol Camper", person).
type("Forrest Vargas", person).
type("Fred Vargas", person).
type("Gerry Vargas", person).
type("Ginger Hamrick", person).
type("Harriette Vargas", person).
type("Ivan Abbate", person).
type("Jeannie Loper", person).
type("Joey Mcclelland", person).
type("Kacey Yocum", person).
type("Kendrick Vargas", person).
type("Kraig Hamrick", person).
type("Livia Camper", person).
type("Marlana Mcclelland", person).
type("Millard Camper", person).
type("Newton Moffitt", person).
type("Nicholas Vargas", person).
type("Noe Vargas", person).
type("Page Vargas", person).
type("Pamula Flatt", person).
type("Raphael Vargas", person).
type("Renaldo Ahmad", person).
type("Robyn Vargas", person).
type("Ronnie Vargas", person).
type("Rosie Vargas", person).
type("Son Loper", person).
type("Stevie Vargas", person).
type("Thelma Flatt", person).
type("Theodore Yocum", person).
type("Theron Mcclelland", person).
type("Toney Vargas", person).
type("Valentina Vargas", person).
type("Wendell Flatt", person).
type("Will Vargas", person).
type("Winnifred Mcclelland", person).
type("Xavier Vargas", person).
type("Antionette Dyer", person).
type("Anton Swink", person).
type("Cara Lucky", person).
type("Christina Lucky", person).
type("Damion Swink", person).
type("Dwain Lucky", person).
type("Ellis Lucky", person).
type("Emil Lucky", person).
type("Ervin Swink", person).
type("Eugene Ellsworth", person).
type("Floyd Lucky", person).
type("Freda Dyer", person).
type("Frederick Lucky", person).
type("Gabriele Lucky", person).
type("Gemma Pirtle", person).
type("Hank Lucky", person).
type("Harlan Lucky", person).
type("Holly Lucky", person).
type("Ilona Dyer", person).
type("Jerrold Lucky", person).
type("Jess Ellsworth", person).
type("Jewel Dyer", person).
type("Judith Slate", person).
type("Katharine Lucky", person).
type("Ken Pirtle", person).
type("Kermit Swink", person).
type("Kimberely Lucky", person).
type("Lauren Pirtle", person).
type("Laverna Ellsworth", person).
type("Leena Lucky", person).
type("Lincoln Oneil", person).
type("Lisa Dyer", person).
type("Lois Oneil", person).
type("Lowell Lucky", person).
type("Luke Slate", person).
type("Meryl Lucky", person).
type("My Swink", person).
type("Nelly Lucky", person).
type("Odelia Lucky", person).
type("Paris Lucky", person).
type("Renaldo Dyer", person).
type("Ricardo Lucky", person).
type("Romana Dyer", person).
type("Roosevelt Dyer", person).
type("Selina Slate", person).
type("Sherita Dyer", person).
type("Stevie Dyer", person).
type("Wesley Pirtle", person).
type("Wilmer Pirtle", person).
type("Winnie Lucky", person).
type("Alejandrina Preciado", person).
type("Aletha Mccune", person).
type("Amie Preciado", person).
type("Annabell Mccune", person).
type("Belva Mccune", person).
type("Benjamin Mullins", person).
type("Caleb Langford", person).
type("Chelsie Roldan", person).
type("Chloe Mccune", person).
type("Conrad Mccune", person).
type("Cristopher Homan", person).
type("Daniela Bishop", person).
type("Deane Medley", person).
type("Deena Munroe", person).
type("Deidre Medley", person).
type("Demetria Decosta", person).
type("Deshawn Munroe", person).
type("Devon Preciado", person).
type("Doug Medley", person).
type("Federico Keene", person).
type("Gemma Keene", person).
type("Gordon Decosta", person).
type("Hans Decosta", person).
type("Jacque Mullins", person).
type("Jamey Turnage", person).
type("Jamie Rounds", person).
type("Jon Preciado", person).
type("Josie Langford", person).
type("Katerine Mullins", person).
type("Kathey Turnage", person).
type("Kelley Preciado", person).
type("Lavonne Rounds", person).
type("Lorina Homan", person).
type("Nestor Preciado", person).
type("Paula Preciado", person).
type("Pete Mullins", person).
type("Queenie Homan", person).
type("Rolland Bishop", person).
type("Romana Bishop", person).
type("Ronald Mccune", person).
type("Ruby Preciado", person).
type("Rudolph Keene", person).
type("Sam Bishop", person).
type("Sanford Preciado", person).
type("Santiago Homan", person).
type("Santos Rounds", person).
type("Sherrie Keene", person).
type("Stacey Roldan", person).
type("Vaughn Bishop", person).
type("Zackary Keene", person).
type("Zoraida Roldan", person).
type("Andy Perez", person).
type("Armando Perreault", person).
type("Bev Gamboa", person).
type("Billye Laird", person).
type("Caleb Stroup", person).
type("Carmella Gamboa", person).
type("Chante Perreault", person).
type("Christopher Pfeiffer", person).
type("Cyril Perreault", person).
type("Damien Reece", person).
type("Daniele Perez", person).
type("Dion Gamboa", person).
type("Elbert Gamboa", person).
type("Elvis Laird", person).
type("Emerson Perez", person).
type("Erik Damron", person).
type("Erma Gamboa", person).
type("Felipe Durbin", person).
type("Flora Driggers", person).
type("Grady Perez", person).
type("Homer Perez", person).
type("Idell Perreault", person).
type("Ivan Driggers", person).
type("Janell Perez", person).
type("Janis Reece", person).
type("Joline Perez", person).
type("Karla Perez", person).
type("Kurt Gamboa", person).
type("Lashawnda Reece", person).
type("Laverne Reece", person).
type("Lester Perez", person).
type("Lissa Stroup", person).
type("Lucien Perez", person).
type("Malcolm Driggers", person).
type("Mariann Damron", person).
type("Marlene Laird", person).
type("Marvin Laird", person).
type("Myra Pfeiffer", person).
type("Page Reece", person).
type("Pamala Reece", person).
type("Reita Driggers", person).
type("Rena Driggers", person).
type("Rodney Durbin", person).
type("Rosemary Gamboa", person).
type("Sondra Perez", person).
type("Sophie Stroup", person).
type("Tanner Pfeiffer", person).
type("Teena Durbin", person).
type("Teresita Damron", person).
type("Tyson Gamboa", person).
type("Wilton Perez", person).
type("Aline Sipes", person).
type("Art Sipes", person).
type("Bernardo Sipes", person).
type("Brooke Silver", person).
type("Damian Standifer", person).
type("Debbie Silver", person).
type("Delsie Hail", person).
type("Desmond Sipes", person).
type("Devin Sipes", person).
type("Dianna Sipes", person).
type("Dudley Manion", person).
type("Eugene Hail", person).
type("Francisca Sipes", person).
type("Gabriel Sipes", person).
type("Gavin Sipes", person).
type("Glenda Sipes", person).
type("Hannah Sipes", person).
type("Hiram Sipes", person).
type("Ida Silver", person).
type("Jamal Sipes", person).
type("Jefferson Abram", person).
type("Jennette Manion", person).
type("Jerry Standifer", person).
type("Kenneth Bullins", person).
type("Lauren Bullins", person).
type("Lauren Sipes", person).
type("Laverna Sipes", person).
type("Laverne Standifer", person).
type("Lenny Standifer", person).
type("Lessie Sipes", person).
type("Linda Sipes", person).
type("Loraine Sipes", person).
type("Miranda Sipes", person).
type("Myles Abram", person).
type("Nathan Standifer", person).
type("Nicholle Sipes", person).
type("Orlando Sipes", person).
type("Rae Sipes", person).
type("Randal Hail", person).
type("Shelton Silver", person).
type("Stella Standifer", person).
type("Ta Standifer", person).
type("Taylor Silver", person).
type("Thomasine Standifer", person).
type("Tonya Sipes", person).
type("Tyrell Sipes", person).
type("Tyrone Silver", person).
type("Walker Sipes", person).
type("Wilson Sipes", person).
type("Yoshiko Silver", person).
type("Zana Abram", person).
grandfather(X, Y) :-
grandparent(X, Y),
male(Y).
:- dynamic expand_query/4.
:- multifile expand_query/4.
:- dynamic attribute/1.
attribute("academic librarian").
attribute("amateur astronomy").
attribute("clinical research associate").
attribute("crystals").
attribute("museum curator").
attribute("stamp collecting").
attribute("technical sales engineer").
attribute("trainspotting").
attribute("advertising account planner").
attribute("animation").
attribute("toxicologist").
attribute("esports").
attribute("education administrator").
attribute("magnet fishing").
attribute("colour technologist").
attribute("billiards").
attribute("regulatory affairs officer").
attribute("iceboat racing").
attribute("gaffer").
attribute("aerospace").
attribute("producer").
attribute("learning").
attribute("newspaper journalist").
attribute("meteorology").
attribute("social researcher").
attribute("learning").
attribute("learning disability nurse").
attribute("trapshooting").
attribute("interior and spatial designer").
attribute("shoes").
attribute("pharmacologist").
attribute("meteorology").
attribute("investment banker").
attribute("birdwatching").
attribute("biomedical engineer").
attribute("mahjong").
attribute("marketing executive").
attribute("horseback riding").
attribute("chartered legal executive").
attribute("birdwatching").
attribute("public relations officer").
attribute("air sports").
attribute("nutritional therapist").
attribute("publishing").
attribute("psychotherapist").
attribute("fossicking").
attribute("production designer").
attribute("dolls").
attribute("phytotherapist").
attribute("web design").
attribute("training and development officer").
attribute("tourism").
attribute("electronics engineer").
attribute("lapel pins").
attribute("contracting civil engineer").
attribute("slot car").
attribute("air traffic controller").
attribute("audiophile").
attribute("airline pilot").
attribute("model united nations").
attribute("IT consultant").
attribute("insect collecting").
attribute("geophysical data processor").
attribute("baking").
attribute("careers information officer").
attribute("mineral collecting").
attribute("applications developer").
attribute("stone collecting").
attribute("architectural technologist").
attribute("dandyism").
attribute("horticultural therapist").
attribute("mineral collecting").
attribute("theme park manager").
attribute("digital hoarding").
attribute("animal nutritionist").
attribute("reading").
attribute("education administrator").
attribute("pinball").
attribute("community development worker").
attribute("dog sport").
attribute("ophthalmologist").
attribute("research").
attribute("lobbyist").
attribute("butterfly watching").
attribute("telecommunications researcher").
attribute("research").
attribute("social worker").
attribute("stamp collecting").
attribute("exercise physiologist").
attribute("jogging").
attribute("senior tax professional").
attribute("rowing").
attribute("environmental consultant").
attribute("sport stacking").
attribute("soil scientist").
attribute("audiophile").
attribute("interpreter").
attribute("seashell collecting").
attribute("professor emeritus").
attribute("skateboarding").
attribute("archivist").
attribute("lomography").
attribute("herpetologist").
attribute("ant farming").
attribute("transport planner").
attribute("rock tumbling").
attribute("advice worker").
attribute("birdwatching").
attribute("hospital pharmacist").
attribute("model aircraft").
attribute("network engineer").
attribute("die-cast toy").
attribute("personal assistant").
attribute("metal detecting").
attribute("tax inspector").
attribute("learning").
attribute("industrial buyer").
attribute("phillumeny").
attribute("physicist").
attribute("cycling").
attribute("sub").
attribute("benchmarking").
attribute("market researcher").
attribute("sociology").
attribute("building services engineer").
attribute("shoes").
attribute("general practice doctor").
attribute("jujitsu").
attribute("dispensing optician").
attribute("tourism").
attribute("company secretary").
attribute("ant farming").
attribute("sub").
attribute("slot car racing").
attribute("accounting technician").
attribute("flower collecting and pressing").
attribute("local government officer").
attribute("videography").
attribute("magazine features editor").
attribute("powerlifting").
attribute("publishing rights manager").
attribute("picnicking").
attribute("government social research officer").
attribute("stone collecting").
attribute("mudlogger").
attribute("sea glass collecting").
attribute("senior tax professional").
attribute("radio-controlled model playing").
attribute("patent examiner").
attribute("badminton").
attribute("science writer").
attribute("insect collecting").
attribute("estate agent").
attribute("animation").
attribute("lighting technician").
attribute("bowling").
attribute("fine artist").
attribute("disc golf").
attribute("ship broker").
attribute("model aircraft").
attribute("tree surgeon").
attribute("ant farming").
attribute("geologist").
attribute("geography").
attribute("restaurant manager").
attribute("meditation").
attribute("designer").
attribute("slot car racing").
attribute("drilling engineer").
attribute("stone collecting").
attribute("radiographer").
attribute("roundnet").
attribute("legal secretary").
attribute("chemistry").
attribute("health visitor").
attribute("tether car").
attribute("medical physicist").
attribute("roller skating").
attribute("engineer").
attribute("aircraft spotting").
attribute("geophysical data processor").
attribute("martial arts").
attribute("midwife").
attribute("rowing").
attribute("financial risk analyst").
attribute("philately").
attribute("English as a foreign language teacher").
attribute("research").
attribute("personnel officer").
attribute("butterfly watching").
attribute("systems analyst").
attribute("neuroscience").
attribute("animator").
attribute("judo").
attribute("educational psychologist").
attribute("cycling").
attribute("production manager").
attribute("myrmecology").
attribute("magazine journalist").
attribute("auto audiophilia").
attribute("runner").
attribute("lomography").
attribute("learning disability nurse").
attribute("mountaineering").
attribute("radiation protection practitioner").
attribute("knife throwing").
attribute("advertising art director").
attribute("learning").
attribute("scientific laboratory technician").
attribute("archery").
attribute("call centre manager").
attribute("magnet fishing").
attribute("arts development officer").
attribute("compact discs").
attribute("estate agent").
attribute("social studies").
attribute("furniture conservator").
attribute("skateboarding").
attribute("travel agency manager").
attribute("high-power rocketry").
attribute("maintenance engineer").
attribute("table tennis").
attribute("conservation officer").
attribute("mathematics").
attribute("copy").
attribute("linguistics").
attribute("sales professional").
attribute("rugby league football").
attribute("graphic designer").
attribute("meditation").
attribute("special educational needs teacher").
attribute("animation").
attribute("astronomer").
attribute("judo").
attribute("sales promotion account executive").
attribute("engineering").
attribute("accounting technician").
attribute("trainspotting").
attribute("corporate investment banker").
attribute("jukskei").
attribute("insurance broker").
attribute("jurisprudential").
attribute("advertising account planner").
attribute("life science").
attribute("interpreter").
attribute("geocaching").
attribute("writer").
attribute("stamp collecting").
attribute("advertising account planner").
attribute("snorkeling").
attribute("actuary").
attribute("exhibition drill").
attribute("clinical biochemist").
attribute("magnet fishing").
attribute("communications engineer").
attribute("bus spotting").
attribute("publishing copy").
attribute("fishkeeping").
attribute("database administrator").
attribute("microscopy").
attribute("retail buyer").
attribute("fishkeeping").
attribute("magazine features editor").
attribute("mineral collecting").
attribute("heritage manager").
attribute("philately").
attribute("commercial horticulturist").
attribute("breakdancing").
attribute("presenter").
attribute("leaves").
attribute("administrator").
attribute("hobby horsing").
attribute("marine scientist").
attribute("model united nations").
attribute("rural practice surveyor").
attribute("amateur astronomy").
attribute("occupational hygienist").
attribute("botany").
attribute("town planner").
attribute("ice hockey").
attribute("firefighter").
attribute("leaves").
attribute("publishing rights manager").
attribute("rappelling").
attribute("charity fundraiser").
attribute("dolls").
attribute("paediatric nurse").
attribute("comic book collecting").
attribute("licensed conveyancer").
attribute("hiking/backpacking").
attribute("music therapist").
attribute("fishkeeping").
attribute("building control surveyor").
attribute("beekeeping").
attribute("records manager").
attribute("die-cast toy").
attribute("social worker").
attribute("curling").
attribute("industrial designer").
attribute("bridge").
attribute("hydrographic surveyor").
attribute("tennis polo").
attribute("trade union research officer").
attribute("race walking").
attribute("fisheries officer").
attribute("camping").
attribute("public relations account executive").
attribute("photography").
attribute("editorial assistant").
attribute("butterfly watching").
attribute("brewing technologist").
attribute("web design").
attribute("dramatherapist").
attribute("zoo visiting").
attribute("conference centre manager").
attribute("biology").
attribute("embryologist").
attribute("tennis polo").
attribute("geoscientist").
attribute("web design").
attribute("trade mark attorney").
attribute("ant-keeping").
attribute("multimedia specialist").
attribute("whale watching").
attribute("biochemist").
attribute("botany").
attribute("senior tax professional").
attribute("shopping").
attribute("copywriter").
attribute("hiking/backpacking").
attribute("lecturer").
attribute("ice skating").
attribute("development worker").
attribute("air hockey").
attribute("educational psychologist").
attribute("ant-keeping").
attribute("IT sales professional").
attribute("medical science").
attribute("accountant").
attribute("stone skipping").
attribute("physiotherapist").
attribute("equestrianism").
attribute("energy manager").
attribute("record collecting").
attribute("chief of staff").
attribute("skiing").
attribute("conference centre manager").
attribute("deltiology").
attribute("doctor").
attribute("roller skating").
attribute("data scientist").
attribute("insect collecting").
attribute("exercise physiologist").
attribute("people-watching").
attribute("physicist").
attribute("reading").
attribute("health physicist").
attribute("meditation").
attribute("fisheries officer").
attribute("sports science").
attribute("corporate treasurer").
attribute("ice hockey").
attribute("customer service manager").
attribute("flower collecting and pressing").
attribute("bookseller").
attribute("fusilately").
attribute("trade union research officer").
attribute("web design").
attribute("geochemist").
attribute("jujitsu").
attribute("furniture designer").
attribute("vintage clothing").
attribute("clinical research associate").
attribute("audiophile").
attribute("public house manager").
attribute("curling").
attribute("toxicologist").
attribute("slot car").
attribute("public house manager").
attribute("road biking").
attribute("optometrist").
attribute("perfume").
attribute("artist").
attribute("microscopy").
attribute("development worker").
attribute("herping").
attribute("chemist").
attribute("butterfly watching").
attribute("primary school teacher").
attribute("meditation").
attribute("civil engineer").
attribute("perfume").
attribute("photographer").
attribute("mineral collecting").
attribute("trade mark attorney").
attribute("fishkeeping").
attribute("IT technical support officer").
attribute("mineral collecting").
attribute("fitness centre manager").
attribute("phillumeny").
attribute("press photographer").
attribute("radio-controlled model playing").
attribute("textile designer").
attribute("magnet fishing").
attribute("occupational hygienist").
attribute("architecture").
attribute("hydrographic surveyor").
attribute("notaphily").
attribute("higher education lecturer").
attribute("research").
attribute("network engineer").
attribute("radio-controlled model collecting").
attribute("film editor").
attribute("microscopy").
attribute("magazine journalist").
attribute("mathematics").
attribute("printmaker").
attribute("ephemera collecting").
attribute("medical illustrator").
attribute("scutelliphily").
attribute("ambulance person").
attribute("baseball").
attribute("health and safety inspector").
attribute("speedcubing").
attribute("farm manager").
attribute("swimming").
attribute("fish farm manager").
attribute("publishing").
attribute("oncologist").
attribute("ant farming").
attribute("science writer").
attribute("capoeira").
attribute("social research officer").
attribute("web design").
attribute("tree surgeon").
attribute("mathematics").
attribute("geophysical data processor").
attribute("flying").
attribute("mining engineer").
attribute("debate").
attribute("passenger transport manager").
attribute("butterfly watching").
attribute("tour manager").
attribute("billiards").
attribute("financial manager").
attribute("meditation").
attribute("warden").
attribute("microscopy").
attribute("museum exhibitions officer").
attribute("social studies").
attribute("art therapist").
attribute("antiquities").
attribute("forensic scientist").
attribute("longboarding").
attribute("radio broadcast assistant").
attribute("esports").
attribute("lecturer").
attribute("leaves").
attribute("textile designer").
attribute("metal detecting").
attribute("optometrist").
attribute("fossil hunting").
attribute("gaffer").
attribute("web design").
attribute("podiatrist").
attribute("ant farming").
attribute("exhibitions officer").
attribute("museum visiting").
attribute("armed forces operational officer").
attribute("billiards").
attribute("database administrator").
attribute("railway studies").
attribute("programme researcher").
attribute("seashell collecting").
attribute("tourist information centre manager").
attribute("table tennis playing").
attribute("manufacturing engineer").
attribute("biology").
attribute("facilities manager").
attribute("mineral collecting").
attribute("aeronautical engineer").
attribute("transit map collecting").
attribute("chiropodist").
attribute("dairy farming").
attribute("production assistant").
attribute("sled dog racing").
attribute("restaurant manager").
attribute("rock balancing").
attribute("financial controller").
attribute("rock balancing").
attribute("facilities manager").
attribute("fencing").
attribute("health service manager").
attribute("radio-controlled model collecting").
attribute("theatre stage manager").
attribute("reading").
attribute("proofreader").
attribute("guerrilla gardening").
attribute("health visitor").
attribute("butterfly watching").
attribute("quarry manager").
attribute("tourism").
attribute("building services engineer").
attribute("model racing").
attribute("chemist").
attribute("ice hockey").
attribute("textile designer").
attribute("insect collecting").
attribute("education administrator").
attribute("learning").
attribute("product designer").
attribute("volleyball").
attribute("ecologist").
attribute("croquet").
attribute("environmental education officer").
attribute("beauty pageants").
attribute("pilot").
attribute("action figure").
attribute("manufacturing systems engineer").
attribute("slot car racing").
attribute("careers adviser").
attribute("vinyl records").
attribute("purchasing manager").
attribute("birdwatching").
attribute("petroleum engineer").
attribute("finance").
attribute("IT technical support officer").
attribute("ant farming").
attribute("pensions consultant").
attribute("triathlon").
attribute("colour technologist").
attribute("surfing").
attribute("physicist").
attribute("sea glass collecting").
attribute("equities trader").
attribute("flower collecting and pressing").
attribute("IT technical support officer").
attribute("herping").
attribute("horticultural consultant").
attribute("magnet fishing").
attribute("accounting technician").
attribute("longboarding").
attribute("nutritional therapist").
attribute("gongoozling").
attribute("soil scientist").
attribute("table tennis").
attribute("physicist").
attribute("myrmecology").
attribute("education administrator").
attribute("microscopy").
attribute("merchant navy officer").
attribute("tour skating").
attribute("merchandiser").
attribute("business").
attribute("administrator").
attribute("magnet fishing").
attribute("product designer").
attribute("video game collecting").
attribute("health promotion specialist").
attribute("transit map collecting").
attribute("IT sales professional").
attribute("archery").
attribute("medical sales representative").
attribute("microscopy").
attribute("operational investment banker").
attribute("dolls").
attribute("electronics engineer").
attribute("beekeeping").
attribute("nurse").
attribute("canyoning").
attribute("producer").
attribute("research").
attribute("civil engineer").
attribute("publishing").
attribute("corporate investment banker").
attribute("magnet fishing").
attribute("psychologist").
attribute("shooting sports").
attribute("accounting technician").
attribute("satellite watching").
attribute("training and development officer").
attribute("life science").
attribute("chartered public finance accountant").
attribute("geocaching").
attribute("mechanical engineer").
attribute("auto racing").
attribute("advertising art director").
attribute("chemistry").
attribute("environmental consultant").
attribute("speedcubing").
attribute("further education lecturer").
attribute("myrmecology").
attribute("geographical information systems officer").
attribute("railway journeys").
attribute("building control surveyor").
attribute("knife throwing").
attribute("technical author").
attribute("microscopy").
attribute("legal secretary").
attribute("social studies").
attribute("embryologist").
attribute("notaphily").
attribute("hydrographic surveyor").
attribute("equestrianism").
attribute("designer").
attribute("benchmarking").
attribute("analytical chemist").
attribute("roller derby").
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_("Alethia Kidd", "Joey Mcclelland").
friend_("Alexis Kingsley", "Harriette Vargas").
friend_("Alexis Kingsley", "Ida Silver").
friend_("Ana Colin", "Madaline Song").
friend_("Ana Colin", "Jess Ellsworth").
friend_("Ana Colin", "Mariann Damron").
friend_("Byron Song", "Carlos Baptiste").
friend_("Byron Song", "Seymour Song").
friend_("Byron Song", "Harriette Vargas").
friend_("Byron Song", "Wendell Flatt").
friend_("Byron Song", "Annabell Mccune").
friend_("Byron Song", "Erma Gamboa").
friend_("Byron Song", "Mariann Damron").
friend_("Byron Song", "Gavin Sipes").
friend_("Carlos Baptiste", "Damion Swink").
friend_("Carlos Baptiste", "Erik Damron").
friend_("Carlos Baptiste", "Sophie Stroup").
friend_("Carlos Baptiste", "Rae Sipes").
friend_("Damon Song", "Conrad Mccune").
friend_("Damon Song", "Dudley Manion").
friend_("Danilo Colin", "Seymour Song").
friend_("Deirdre Bivins", "Gerry Vargas").
friend_("Deirdre Bivins", "Ken Pirtle").
friend_("Deirdre Bivins", "Lenny Standifer").
friend_("Eddie Song", "Yvette Song").
friend_("Eddie Song", "Damion Swink").
friend_("Eddie Song", "Elbert Gamboa").
friend_("Elisabeth Kingsley", "Ronnie Vargas").
friend_("Elisabeth Kingsley", "Cyril Perreault").
friend_("Elisabeth Kingsley", "Erik Damron").
friend_("Felton Kidd", "Deane Medley").
friend_("Felton Kidd", "Jacque Mullins").
friend_("Felton Kidd", "Katerine Mullins").
friend_("Freda Song", "Amos Vargas").
friend_("Freda Song", "Livia Camper").
friend_("Freda Song", "Deidre Medley").
friend_("Freda Song", "Daniele Perez").
friend_("Freda Song", "Laverne Reece").
friend_("Freda Song", "Francisca Sipes").
friend_("Freda Song", "Lauren Sipes").
friend_("Gene Song", "My Swink").
friend_("Genesis Colin", "Isidro Kidd").
friend_("Genesis Colin", "Maynard Song").
friend_("Genesis Colin", "Meghann Kidd").
friend_("Genesis Colin", "Ginger Hamrick").
friend_("Genesis Colin", "Freda Dyer").
friend_("Genesis Colin", "Selina Slate").
friend_("Geneva Song", "Kacey Yocum").
friend_("Geneva Song", "Stevie Dyer").
friend_("Geneva Song", "Jamey Turnage").
friend_("Geneva Song", "Laverna Sipes").
friend_("Gilbert Summerlin", "Son Loper").
friend_("Gilbert Summerlin", "Toney Vargas").
friend_("Gilbert Summerlin", "Gabriele Lucky").
friend_("Hannah Bivins", "Marlana Mcclelland").
friend_("Hannah Bivins", "Ricardo Lucky").
friend_("Hannah Bivins", "Doug Medley").
friend_("Hannah Bivins", "Sam Bishop").
friend_("Hyun Song", "Jeannie Loper").
friend_("Hyun Song", "Erik Damron").
friend_("Hyun Song", "Malcolm Driggers").
friend_("Idell Kidd", "Ivan Abbate").
friend_("Idell Kidd", "Will Vargas").
friend_("Idell Kidd", "Christina Lucky").
friend_("Isidro Kidd", "Chloe Mccune").
friend_("Isidro Kidd", "Linda Sipes").
friend_("Jamal Song", "Gemma Pirtle").
friend_("Jamal Song", "Jess Ellsworth").
friend_("Jamal Song", "Belva Mccune").
friend_("Jeana Song", "Nikki Kidd").
friend_("Jesse Kiel", "Ronnie Vargas").
friend_("Jesse Kiel", "Laverne Reece").
friend_("Jolene Song", "Tawana Summerlin").
friend_("Jolene Song", "Cristopher Homan").
friend_("Jolene Song", "Grady Perez").
friend_("Jolene Song", "Myles Abram").
friend_("Lance Kiel", "Lester Bivins").
friend_("Lance Kiel", "Joey Mcclelland").
friend_("Lance Kiel", "Gemma Pirtle").
friend_("Lance Kiel", "Conrad Mccune").
friend_("Lester Bivins", "Elfriede Moffitt").
friend_("Lester Bivins", "Jerry Standifer").
friend_("Lynda Colin", "Lavonne Rounds").
friend_("Lynda Colin", "Sanford Preciado").
friend_("Lynda Colin", "Sherrie Keene").
friend_("Madaline Song", "Rudolph Keene").
friend_("Matilda Summerlin", "Laverna Ellsworth").
friend_("Matilda Summerlin", "Sherrie Keene").
friend_("Maynard Song", "Christa Vargas").
friend_("Maynard Song", "Elfriede Moffitt").
friend_("Maynard Song", "Harriette Vargas").
friend_("Maynard Song", "Gemma Pirtle").
friend_("Maynard Song", "Daniela Bishop").
friend_("Mckinley Colin", "Sondra Perez").
friend_("Mckinley Colin", "Tyson Gamboa").
friend_("Mckinley Colin", "Walker Sipes").
friend_("Meghann Kidd", "Kermit Swink").
friend_("Melvin Kidd", "Romelia Song").
friend_("Melvin Kidd", "Elfriede Moffitt").
friend_("Melvin Kidd", "Romana Dyer").
friend_("Melvin Kidd", "Daniela Bishop").
friend_("Melvin Kidd", "Eugene Hail").
friend_("Nathaniel Song", "Lisa Dyer").
friend_("Nathaniel Song", "Gabriel Sipes").
friend_("Nathaniel Song", "Tyrone Silver").
friend_("Nina Song", "Emil Lucky").
friend_("Nina Song", "Wilmer Pirtle").
friend_("Nina Song", "Lester Perez").
friend_("Noreen Kingsley", "Adele Ahmad").
friend_("Noreen Kingsley", "Damien Reece").
friend_("Ramona Colin", "Thomasine Kidd").
friend_("Ramona Colin", "Damion Swink").
friend_("Ramona Colin", "Hank Lucky").
friend_("Ramona Colin", "Chelsie Roldan").
friend_("Ramona Colin", "Lorina Homan").
friend_("Romelia Song", "Caleb Langford").
friend_("Romelia Song", "Lauren Sipes").
friend_("Seymour Song", "Lauren Sipes").
friend_("Seymour Song", "Randal Hail").
friend_("Sol Song", "Ellis Lucky").
friend_("Sol Song", "Flora Driggers").
friend_("Sol Song", "Idell Perreault").
friend_("Sol Song", "Bernardo Sipes").
friend_("Stephan Kidd", "Millard Camper").
friend_("Tawana Summerlin", "Lashawnda Reece").
friend_("Thomasine Kidd", "Winfred Baptiste").
friend_("Thomasine Kidd", "Jeannie Loper").
friend_("Thomasine Kidd", "Laverne Standifer").
friend_("Tod Song", "Winfred Baptiste").
friend_("Winfred Baptiste", "Winnifred Mcclelland").
friend_("Winfred Baptiste", "Caleb Langford").
friend_("Winfred Baptiste", "Katerine Mullins").
friend_("Winfred Baptiste", "Malcolm Driggers").
friend_("Winfred Baptiste", "Rosemary Gamboa").
friend_("Winfred Baptiste", "Hiram Sipes").
friend_("Winfred Baptiste", "Nathan Standifer").
friend_("Wyatt Reece", "Sherita Dyer").
friend_("Yvette Song", "Eli Flatt").
friend_("Yvette Song", "Kacey Yocum").
friend_("Yvette Song", "Nelly Lucky").
friend_("Yvette Song", "Caleb Langford").
friend_("Yvette Song", "Bernardo Sipes").
friend_("Yvette Song", "Lessie Sipes").
friend_("Adah Camper", "Cara Lucky").
friend_("Adah Camper", "Ervin Swink").
friend_("Adah Camper", "Belva Mccune").
friend_("Adele Ahmad", "Stevie Vargas").
friend_("Adele Ahmad", "Caleb Langford").
friend_("Adele Ahmad", "Hans Decosta").
friend_("Adele Ahmad", "Queenie Homan").
friend_("Adele Ahmad", "Sherrie Keene").
friend_("Amos Vargas", "Kacey Yocum").
friend_("Amos Vargas", "Floyd Lucky").
friend_("Amos Vargas", "Linda Sipes").
friend_("Angie Vargas", "Theron Mcclelland").
friend_("Angie Vargas", "Frederick Lucky").
friend_("Angie Vargas", "Art Sipes").
friend_("Angie Vargas", "Miranda Sipes").
friend_("Ayesha Abbate", "Thomasine Standifer").
friend_("Bradley Yocum", "Will Vargas").
friend_("Bradley Yocum", "Eugene Ellsworth").
friend_("Bradley Yocum", "Andy Perez").
friend_("Carina Vargas", "Gerry Vargas").
friend_("Carina Vargas", "Lauren Pirtle").
friend_("Carina Vargas", "Lashawnda Reece").
friend_("Carina Vargas", "Pamala Reece").
friend_("Christa Vargas", "Stevie Dyer").
friend_("Christa Vargas", "Conrad Mccune").
friend_("Christa Vargas", "Bernardo Sipes").
friend_("David Mcclelland", "Daniele Perez").
friend_("Derek Flatt", "Aline Sipes").
friend_("Derek Flatt", "Hannah Sipes").
friend_("Eddy Vargas", "Janis Reece").
friend_("Eddy Vargas", "Rena Driggers").
friend_("Elfriede Moffitt", "Ellis Lucky").
friend_("Elfriede Moffitt", "Jacque Mullins").
friend_("Elfriede Moffitt", "Sondra Perez").
friend_("Eli Flatt", "Chloe Mccune").
friend_("Eli Flatt", "Sanford Preciado").
friend_("Eli Flatt", "Janis Reece").
friend_("Elvie Vargas", "Millard Camper").
friend_("Elvie Vargas", "Ronnie Vargas").
friend_("Errol Camper", "Antionette Dyer").
friend_("Errol Camper", "Nicholle Sipes").
friend_("Errol Camper", "Orlando Sipes").
friend_("Fred Vargas", "Gabriele Lucky").
friend_("Fred Vargas", "Chelsie Roldan").
friend_("Fred Vargas", "Kathey Turnage").
friend_("Gerry Vargas", "Lorina Homan").
friend_("Gerry Vargas", "Marvin Laird").
friend_("Gerry Vargas", "Tyson Gamboa").
friend_("Gerry Vargas", "Desmond Sipes").
friend_("Gerry Vargas", "Hiram Sipes").
friend_("Gerry Vargas", "Jerry Standifer").
friend_("Ginger Hamrick", "Raphael Vargas").
friend_("Ginger Hamrick", "Lorina Homan").
friend_("Harriette Vargas", "Devon Preciado").
friend_("Ivan Abbate", "Jerrold Lucky").
friend_("Ivan Abbate", "Chloe Mccune").
friend_("Ivan Abbate", "Rudolph Keene").
friend_("Ivan Abbate", "Ta Standifer").
friend_("Joey Mcclelland", "Zoraida Roldan").
friend_("Joey Mcclelland", "Kenneth Bullins").
friend_("Joey Mcclelland", "Laverne Standifer").
friend_("Kacey Yocum", "Laverna Sipes").
friend_("Kendrick Vargas", "Sam Bishop").
friend_("Kraig Hamrick", "Lashawnda Reece").
friend_("Kraig Hamrick", "Ta Standifer").
friend_("Livia Camper", "Lois Oneil").
friend_("Marlana Mcclelland", "Lincoln Oneil").
friend_("Marlana Mcclelland", "Hans Decosta").
friend_("Millard Camper", "Chelsie Roldan").
friend_("Newton Moffitt", "Deena Munroe").
friend_("Newton Moffitt", "Kenneth Bullins").
friend_("Nicholas Vargas", "Ivan Driggers").
friend_("Noe Vargas", "Benjamin Mullins").
friend_("Page Vargas", "Daniela Bishop").
friend_("Pamula Flatt", "Lauren Pirtle").
friend_("Pamula Flatt", "Lester Perez").
friend_("Renaldo Ahmad", "Cristopher Homan").
friend_("Renaldo Ahmad", "Wilton Perez").
friend_("Ronnie Vargas", "Wesley Pirtle").
friend_("Ronnie Vargas", "Winnie Lucky").
friend_("Rosie Vargas", "Romana Dyer").
friend_("Rosie Vargas", "Chloe Mccune").
friend_("Rosie Vargas", "Lauren Bullins").
friend_("Stevie Vargas", "Ricardo Lucky").
friend_("Stevie Vargas", "Teena Durbin").
friend_("Stevie Vargas", "Lenny Standifer").
friend_("Thelma Flatt", "Jess Ellsworth").
friend_("Thelma Flatt", "Paula Preciado").
friend_("Thelma Flatt", "Zackary Keene").
friend_("Theodore Yocum", "Sherrie Keene").
friend_("Theron Mcclelland", "Dwain Lucky").
friend_("Toney Vargas", "Romana Dyer").
friend_("Toney Vargas", "Rudolph Keene").
friend_("Toney Vargas", "Nathan Standifer").
friend_("Valentina Vargas", "Lisa Dyer").
friend_("Valentina Vargas", "Deshawn Munroe").
friend_("Valentina Vargas", "Billye Laird").
friend_("Valentina Vargas", "Stella Standifer").
friend_("Wendell Flatt", "Doug Medley").
friend_("Wendell Flatt", "Sam Bishop").
friend_("Wendell Flatt", "Aline Sipes").
friend_("Will Vargas", "Wilmer Pirtle").
friend_("Winnifred Mcclelland", "Ilona Dyer").
friend_("Winnifred Mcclelland", "Nestor Preciado").
friend_("Winnifred Mcclelland", "Ruby Preciado").
friend_("Winnifred Mcclelland", "Brooke Silver").
friend_("Winnifred Mcclelland", "Jerry Standifer").
friend_("Xavier Vargas", "Selina Slate").
friend_("Antionette Dyer", "Wilmer Pirtle").
friend_("Antionette Dyer", "Daniele Perez").
friend_("Anton Swink", "Jerry Standifer").
friend_("Cara Lucky", "Nestor Preciado").
friend_("Christina Lucky", "Eugene Ellsworth").
friend_("Christina Lucky", "Lashawnda Reece").
friend_("Christina Lucky", "Debbie Silver").
friend_("Damion Swink", "Kathey Turnage").
friend_("Dwain Lucky", "Deidre Medley").
friend_("Ellis Lucky", "Elvis Laird").
friend_("Emil Lucky", "Janell Perez").
friend_("Emil Lucky", "Tyson Gamboa").
friend_("Emil Lucky", "Jefferson Abram").
friend_("Ervin Swink", "Sam Bishop").
friend_("Eugene Ellsworth", "Grady Perez").
friend_("Floyd Lucky", "Kermit Swink").
friend_("Frederick Lucky", "Demetria Decosta").
friend_("Frederick Lucky", "Emerson Perez").
friend_("Frederick Lucky", "Damian Standifer").
friend_("Frederick Lucky", "Debbie Silver").
friend_("Frederick Lucky", "Ida Silver").
friend_("Gabriele Lucky", "Deshawn Munroe").
friend_("Gabriele Lucky", "Malcolm Driggers").
friend_("Hank Lucky", "Sherita Dyer").
friend_("Hank Lucky", "Demetria Decosta").
friend_("Hank Lucky", "Jamey Turnage").
friend_("Hank Lucky", "Lauren Sipes").
friend_("Holly Lucky", "Demetria Decosta").
friend_("Jess Ellsworth", "Felipe Durbin").
friend_("Judith Slate", "Selina Slate").
friend_("Judith Slate", "Doug Medley").
friend_("Judith Slate", "Jamey Turnage").
friend_("Ken Pirtle", "Malcolm Driggers").
friend_("Ken Pirtle", "Kenneth Bullins").
friend_("Kermit Swink", "Cristopher Homan").
friend_("Kermit Swink", "Armando Perreault").
friend_("Kermit Swink", "Hiram Sipes").
friend_("Kermit Swink", "Randal Hail").
friend_("Lauren Pirtle", "Lisa Dyer").
friend_("Lauren Pirtle", "Luke Slate").
friend_("Lauren Pirtle", "Wilmer Pirtle").
friend_("Lauren Pirtle", "Dion Gamboa").
friend_("Lauren Pirtle", "Emerson Perez").
friend_("Laverna Ellsworth", "Luke Slate").
friend_("Laverna Ellsworth", "Marvin Laird").
friend_("Leena Lucky", "Paris Lucky").
friend_("Leena Lucky", "Chante Perreault").
friend_("Leena Lucky", "Damian Standifer").
friend_("Lisa Dyer", "Odelia Lucky").
friend_("Lois Oneil", "Sanford Preciado").
friend_("Lowell Lucky", "Demetria Decosta").
friend_("Lowell Lucky", "Zackary Keene").
friend_("Meryl Lucky", "Stevie Dyer").
friend_("Meryl Lucky", "Daniele Perez").
friend_("Meryl Lucky", "Grady Perez").
friend_("My Swink", "Alejandrina Preciado").
friend_("My Swink", "Vaughn Bishop").
friend_("Nelly Lucky", "Queenie Homan").
friend_("Nelly Lucky", "Shelton Silver").
friend_("Nelly Lucky", "Tonya Sipes").
friend_("Odelia Lucky", "Daniela Bishop").
friend_("Odelia Lucky", "Chante Perreault").
friend_("Odelia Lucky", "Aline Sipes").
friend_("Paris Lucky", "Stella Standifer").
friend_("Renaldo Dyer", "Sondra Perez").
friend_("Renaldo Dyer", "Kenneth Bullins").
friend_("Renaldo Dyer", "Lauren Bullins").
friend_("Ricardo Lucky", "Glenda Sipes").
friend_("Ricardo Lucky", "Laverne Standifer").
friend_("Ricardo Lucky", "Zana Abram").
friend_("Romana Dyer", "Ivan Driggers").
friend_("Romana Dyer", "Ida Silver").
friend_("Romana Dyer", "Myles Abram").
friend_("Roosevelt Dyer", "Dianna Sipes").
friend_("Roosevelt Dyer", "Hiram Sipes").
friend_("Roosevelt Dyer", "Shelton Silver").
friend_("Selina Slate", "Grady Perez").
friend_("Sherita Dyer", "Art Sipes").
friend_("Sherita Dyer", "Randal Hail").
friend_("Stevie Dyer", "Tyson Gamboa").
friend_("Wesley Pirtle", "Wilmer Pirtle").
friend_("Wesley Pirtle", "Aletha Mccune").
friend_("Wilmer Pirtle", "Jacque Mullins").
friend_("Winnie Lucky", "Gordon Decosta").
friend_("Winnie Lucky", "Ida Silver").
friend_("Aletha Mccune", "Deena Munroe").
friend_("Amie Preciado", "Walker Sipes").
friend_("Annabell Mccune", "Cyril Perreault").
friend_("Belva Mccune", "Jon Preciado").
friend_("Belva Mccune", "Kenneth Bullins").
friend_("Belva Mccune", "Thomasine Standifer").
friend_("Benjamin Mullins", "Delsie Hail").
friend_("Caleb Langford", "Queenie Homan").
friend_("Caleb Langford", "Nicholle Sipes").
friend_("Chelsie Roldan", "Chante Perreault").
friend_("Chelsie Roldan", "Linda Sipes").
friend_("Chloe Mccune", "Gemma Keene").
friend_("Chloe Mccune", "Jamey Turnage").
friend_("Chloe Mccune", "Zackary Keene").
friend_("Conrad Mccune", "Bernardo Sipes").
friend_("Cristopher Homan", "Daniela Bishop").
friend_("Cristopher Homan", "Erma Gamboa").
friend_("Deane Medley", "Billye Laird").
friend_("Deane Medley", "Linda Sipes").
friend_("Deena Munroe", "Felipe Durbin").
friend_("Deidre Medley", "Lavonne Rounds").
friend_("Deidre Medley", "Tyrell Sipes").
friend_("Demetria Decosta", "Ronald Mccune").
friend_("Demetria Decosta", "Rosemary Gamboa").
friend_("Deshawn Munroe", "Marvin Laird").
friend_("Devon Preciado", "Brooke Silver").
friend_("Doug Medley", "Armando Perreault").
friend_("Doug Medley", "Reita Driggers").
friend_("Doug Medley", "Gavin Sipes").
friend_("Gemma Keene", "Ruby Preciado").
friend_("Gemma Keene", "Linda Sipes").
friend_("Gordon Decosta", "Tanner Pfeiffer").
friend_("Hans Decosta", "Sanford Preciado").
friend_("Hans Decosta", "Loraine Sipes").
friend_("Jacque Mullins", "Marvin Laird").
friend_("Jacque Mullins", "Wilson Sipes").
friend_("Jamey Turnage", "Rolland Bishop").
friend_("Jamey Turnage", "Janis Reece").
friend_("Jamey Turnage", "Art Sipes").
friend_("Jamie Rounds", "Ivan Driggers").
friend_("Jamie Rounds", "Delsie Hail").
friend_("Jamie Rounds", "Randal Hail").
friend_("Jon Preciado", "Grady Perez").
friend_("Jon Preciado", "Marlene Laird").
friend_("Josie Langford", "Art Sipes").
friend_("Katerine Mullins", "Carmella Gamboa").
friend_("Katerine Mullins", "Sondra Perez").
friend_("Kathey Turnage", "Homer Perez").
friend_("Kelley Preciado", "Reita Driggers").
friend_("Kelley Preciado", "Tyrell Sipes").
friend_("Lavonne Rounds", "Bev Gamboa").
friend_("Lorina Homan", "Myra Pfeiffer").
friend_("Lorina Homan", "Dianna Sipes").
friend_("Lorina Homan", "Taylor Silver").
friend_("Paula Preciado", "Janis Reece").
friend_("Pete Mullins", "Santiago Homan").
friend_("Pete Mullins", "Kenneth Bullins").
friend_("Queenie Homan", "Lauren Sipes").
friend_("Queenie Homan", "Thomasine Standifer").
friend_("Rolland Bishop", "Jennette Manion").
friend_("Romana Bishop", "Jefferson Abram").
friend_("Ruby Preciado", "Joline Perez").
friend_("Ruby Preciado", "Laverna Sipes").
friend_("Ruby Preciado", "Loraine Sipes").
friend_("Sam Bishop", "Lauren Bullins").
friend_("Sanford Preciado", "Christopher Pfeiffer").
friend_("Santiago Homan", "Teena Durbin").
friend_("Santiago Homan", "Bernardo Sipes").
friend_("Santiago Homan", "Dianna Sipes").
friend_("Santos Rounds", "Flora Driggers").
friend_("Santos Rounds", "Joline Perez").
friend_("Stacey Roldan", "Janis Reece").
friend_("Vaughn Bishop", "Hannah Sipes").
friend_("Zackary Keene", "Zana Abram").
friend_("Zoraida Roldan", "Damian Standifer").
friend_("Zoraida Roldan", "Randal Hail").
friend_("Caleb Stroup", "Carmella Gamboa").
friend_("Caleb Stroup", "Reita Driggers").
friend_("Carmella Gamboa", "Lissa Stroup").
friend_("Carmella Gamboa", "Art Sipes").
friend_("Carmella Gamboa", "Jerry Standifer").
friend_("Chante Perreault", "Sondra Perez").
friend_("Chante Perreault", "Laverne Standifer").
friend_("Christopher Pfeiffer", "Emerson Perez").
friend_("Dion Gamboa", "Marlene Laird").
friend_("Dion Gamboa", "Rodney Durbin").
friend_("Dion Gamboa", "Jamal Sipes").
friend_("Dion Gamboa", "Stella Standifer").
friend_("Dion Gamboa", "Walker Sipes").
friend_("Elvis Laird", "Art Sipes").
friend_("Emerson Perez", "Lucien Perez").
friend_("Erik Damron", "Kurt Gamboa").
friend_("Erik Damron", "Sondra Perez").
friend_("Erik Damron", "Nathan Standifer").
friend_("Felipe Durbin", "Aline Sipes").
friend_("Felipe Durbin", "Zana Abram").
friend_("Grady Perez", "Tyrone Silver").
friend_("Ivan Driggers", "Joline Perez").
friend_("Laverne Reece", "Teresita Damron").
friend_("Laverne Reece", "Devin Sipes").
friend_("Laverne Reece", "Yoshiko Silver").
friend_("Lester Perez", "Malcolm Driggers").
friend_("Lester Perez", "Tanner Pfeiffer").
friend_("Lester Perez", "Stella Standifer").
friend_("Lucien Perez", "Laverne Standifer").
friend_("Rodney Durbin", "Linda Sipes").
friend_("Teena Durbin", "Jennette Manion").
friend_("Brooke Silver", "Francisca Sipes").
friend_("Delsie Hail", "Zana Abram").
friend_("Desmond Sipes", "Dudley Manion").
friend_("Desmond Sipes", "Eugene Hail").
friend_("Desmond Sipes", "Francisca Sipes").
friend_("Desmond Sipes", "Shelton Silver").
friend_("Dianna Sipes", "Jerry Standifer").
friend_("Glenda Sipes", "Jefferson Abram").
friend_("Ida Silver", "Miranda Sipes").
friend_("Jefferson Abram", "Zana Abram").
friend_("Laverne Standifer", "Yoshiko Silver").
friend_("Myles Abram", "Randal Hail").
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("Ana Colin", "Danilo Colin").
parent("Ana Colin", "Ramona Colin").
parent("Carlos Baptiste", "Twila Baptiste").
parent("Carlos Baptiste", "Winfred Baptiste").
parent("Damon Song", "Antionette Song").
parent("Damon Song", "Sol Song").
parent("Deirdre Bivins", "Hannah Bivins").
parent("Deirdre Bivins", "Lester Bivins").
parent("Eddie Song", "Byron Song").
parent("Eddie Song", "Hyun Song").
parent("Elisabeth Kingsley", "Alexis Kingsley").
parent("Elisabeth Kingsley", "Noreen Kingsley").
parent("Felton Kidd", "Stephan Kidd").
parent("Felton Kidd", "Thomasine Kidd").
parent("Gene Song", "Antionette Song").
parent("Gene Song", "Sol Song").
parent("Genesis Colin", "Melvin Kidd").
parent("Genesis Colin", "Nikki Kidd").
parent("Geneva Song", "Antionette Song").
parent("Geneva Song", "Sol Song").
parent("Hannah Bivins", "Jamal Song").
parent("Hannah Bivins", "Yvette Song").
parent("Idell Kidd", "Stephan Kidd").
parent("Idell Kidd", "Thomasine Kidd").
parent("Isidro Kidd", "Alethia Kidd").
parent("Isidro Kidd", "Felton Kidd").
parent("Jamal Song", "Eddie Song").
parent("Jamal Song", "Nina Song").
parent("Jeana Song", "Eddie Song").
parent("Jeana Song", "Nina Song").
parent("Jolene Song", "Shelly Reece").
parent("Jolene Song", "Wyatt Reece").
parent("Lynda Colin", "Danilo Colin").
parent("Lynda Colin", "Ramona Colin").
parent("Madaline Song", "Eddie Song").
parent("Madaline Song", "Nina Song").
parent("Maynard Song", "Antionette Song").
parent("Maynard Song", "Sol Song").
parent("Mckinley Colin", "Danilo Colin").
parent("Mckinley Colin", "Ramona Colin").
parent("Meghann Kidd", "Melvin Kidd").
parent("Meghann Kidd", "Nikki Kidd").
parent("Melvin Kidd", "Alethia Kidd").
parent("Melvin Kidd", "Felton Kidd").
parent("Nathaniel Song", "Freda Song").
parent("Nathaniel Song", "Seymour Song").
parent("Nikki Kidd", "Gilbert Summerlin").
parent("Nikki Kidd", "Matilda Summerlin").
parent("Noreen Kingsley", "Gene Song").
parent("Noreen Kingsley", "Jolene Song").
parent("Ramona Colin", "Jesse Kiel").
parent("Ramona Colin", "Lance Kiel").
parent("Romelia Song", "Antionette Song").
parent("Romelia Song", "Sol Song").
parent("Seymour Song", "Eddie Song").
parent("Seymour Song", "Nina Song").
parent("Sol Song", "Jamal Song").
parent("Sol Song", "Yvette Song").
parent("Tawana Summerlin", "Gilbert Summerlin").
parent("Tawana Summerlin", "Matilda Summerlin").
parent("Tod Song", "Jamal Song").
parent("Tod Song", "Yvette Song").
parent("Twila Baptiste", "Hannah Bivins").
parent("Twila Baptiste", "Lester Bivins").
parent("Yvette Song", "Genesis Colin").
parent("Yvette Song", "Mckinley Colin").
parent("Adah Camper", "Livia Camper").
parent("Adah Camper", "Millard Camper").
parent("Amos Vargas", "Stevie Vargas").
parent("Amos Vargas", "Valentina Vargas").
parent("Angie Vargas", "Eli Flatt").
parent("Angie Vargas", "Pamula Flatt").
parent("David Mcclelland", "Joey Mcclelland").
parent("David Mcclelland", "Winnifred Mcclelland").
parent("Derek Flatt", "Eli Flatt").
parent("Derek Flatt", "Pamula Flatt").
parent("Eddy Vargas", "Harriette Vargas").
parent("Eddy Vargas", "Will Vargas").
parent("Elfriede Moffitt", "Jeannie Loper").
parent("Elfriede Moffitt", "Son Loper").
parent("Elvie Vargas", "Angie Vargas").
parent("Elvie Vargas", "Gerry Vargas").
parent("Errol Camper", "Livia Camper").
parent("Errol Camper", "Millard Camper").
parent("Forrest Vargas", "Angie Vargas").
parent("Forrest Vargas", "Gerry Vargas").
parent("Fred Vargas", "Amos Vargas").
parent("Fred Vargas", "Christa Vargas").
parent("Gerry Vargas", "Amos Vargas").
parent("Gerry Vargas", "Christa Vargas").
parent("Harriette Vargas", "Adele Ahmad").
parent("Harriette Vargas", "Renaldo Ahmad").
parent("Kacey Yocum", "Amos Vargas").
parent("Kacey Yocum", "Christa Vargas").
parent("Kendrick Vargas", "Angie Vargas").
parent("Kendrick Vargas", "Gerry Vargas").
parent("Livia Camper", "Elfriede Moffitt").
parent("Livia Camper", "Newton Moffitt").
parent("Marlana Mcclelland", "Angie Vargas").
parent("Marlana Mcclelland", "Gerry Vargas").
parent("Nicholas Vargas", "Kendrick Vargas").
parent("Nicholas Vargas", "Page Vargas").
parent("Noe Vargas", "Amos Vargas").
parent("Noe Vargas", "Christa Vargas").
parent("Pamula Flatt", "Ayesha Abbate").
parent("Pamula Flatt", "Ivan Abbate").
parent("Raphael Vargas", "Ronnie Vargas").
parent("Raphael Vargas", "Rosie Vargas").
parent("Robyn Vargas", "Carina Vargas").
parent("Robyn Vargas", "Xavier Vargas").
parent("Ronnie Vargas", "Harriette Vargas").
parent("Ronnie Vargas", "Will Vargas").
parent("Rosie Vargas", "Ginger Hamrick").
parent("Rosie Vargas", "Kraig Hamrick").
parent("Thelma Flatt", "Eli Flatt").
parent("Thelma Flatt", "Pamula Flatt").
parent("Theodore Yocum", "Bradley Yocum").
parent("Theodore Yocum", "Kacey Yocum").
parent("Theron Mcclelland", "David Mcclelland").
parent("Theron Mcclelland", "Marlana Mcclelland").
parent("Toney Vargas", "Angie Vargas").
parent("Toney Vargas", "Gerry Vargas").
parent("Valentina Vargas", "Livia Camper").
parent("Valentina Vargas", "Millard Camper").
parent("Wendell Flatt", "Eli Flatt").
parent("Wendell Flatt", "Pamula Flatt").
parent("Will Vargas", "Stevie Vargas").
parent("Will Vargas", "Valentina Vargas").
parent("Xavier Vargas", "Harriette Vargas").
parent("Xavier Vargas", "Will Vargas").
parent("Antionette Dyer", "Sherita Dyer").
parent("Antionette Dyer", "Stevie Dyer").
parent("Anton Swink", "Ervin Swink").
parent("Anton Swink", "My Swink").
parent("Christina Lucky", "Gabriele Lucky").
parent("Christina Lucky", "Ricardo Lucky").
parent("Damion Swink", "Ervin Swink").
parent("Damion Swink", "My Swink").
parent("Dwain Lucky", "Harlan Lucky").
parent("Dwain Lucky", "Odelia Lucky").
parent("Ellis Lucky", "Katharine Lucky").
parent("Ellis Lucky", "Paris Lucky").
parent("Emil Lucky", "Katharine Lucky").
parent("Emil Lucky", "Paris Lucky").
parent("Floyd Lucky", "Ellis Lucky").
parent("Floyd Lucky", "Leena Lucky").
parent("Freda Dyer", "Lisa Dyer").
parent("Freda Dyer", "Roosevelt Dyer").
parent("Frederick Lucky", "Gabriele Lucky").
parent("Frederick Lucky", "Ricardo Lucky").
parent("Gabriele Lucky", "Judith Slate").
parent("Gabriele Lucky", "Luke Slate").
parent("Gemma Pirtle", "Ervin Swink").
parent("Gemma Pirtle", "My Swink").
parent("Hank Lucky", "Ellis Lucky").
parent("Hank Lucky", "Leena Lucky").
parent("Harlan Lucky", "Gabriele Lucky").
parent("Harlan Lucky", "Ricardo Lucky").
parent("Holly Lucky", "Ellis Lucky").
parent("Holly Lucky", "Leena Lucky").
parent("Ilona Dyer", "Jewel Dyer").
parent("Ilona Dyer", "Renaldo Dyer").
parent("Jerrold Lucky", "Lowell Lucky").
parent("Jerrold Lucky", "Winnie Lucky").
parent("Jess Ellsworth", "Eugene Ellsworth").
parent("Jess Ellsworth", "Laverna Ellsworth").
parent("Katharine Lucky", "Ervin Swink").
parent("Katharine Lucky", "My Swink").
parent("Ken Pirtle", "Gemma Pirtle").
parent("Ken Pirtle", "Wilmer Pirtle").
parent("Kermit Swink", "Ervin Swink").
parent("Kermit Swink", "My Swink").
parent("Kimberely Lucky", "Lowell Lucky").
parent("Kimberely Lucky", "Winnie Lucky").
parent("Lauren Pirtle", "Gemma Pirtle").
parent("Lauren Pirtle", "Wilmer Pirtle").
parent("Laverna Ellsworth", "Lisa Dyer").
parent("Laverna Ellsworth", "Roosevelt Dyer").
parent("Meryl Lucky", "Gabriele Lucky").
parent("Meryl Lucky", "Ricardo Lucky").
parent("My Swink", "Lincoln Oneil").
parent("My Swink", "Lois Oneil").
parent("Nelly Lucky", "Katharine Lucky").
parent("Nelly Lucky", "Paris Lucky").
parent("Paris Lucky", "Harlan Lucky").
parent("Paris Lucky", "Odelia Lucky").
parent("Renaldo Dyer", "Sherita Dyer").
parent("Renaldo Dyer", "Stevie Dyer").
parent("Ricardo Lucky", "Cara Lucky").
parent("Ricardo Lucky", "Jerrold Lucky").
parent("Romana Dyer", "Sherita Dyer").
parent("Romana Dyer", "Stevie Dyer").
parent("Roosevelt Dyer", "Sherita Dyer").
parent("Roosevelt Dyer", "Stevie Dyer").
parent("Selina Slate", "Judith Slate").
parent("Selina Slate", "Luke Slate").
parent("Sherita Dyer", "Katharine Lucky").
parent("Sherita Dyer", "Paris Lucky").
parent("Wesley Pirtle", "Gemma Pirtle").
parent("Wesley Pirtle", "Wilmer Pirtle").
parent("Alejandrina Preciado", "Devon Preciado").
parent("Alejandrina Preciado", "Ruby Preciado").
parent("Aletha Mccune", "Katerine Mullins").
parent("Aletha Mccune", "Pete Mullins").
parent("Annabell Mccune", "Aletha Mccune").
parent("Annabell Mccune", "Conrad Mccune").
parent("Belva Mccune", "Chloe Mccune").
parent("Belva Mccune", "Ronald Mccune").
parent("Benjamin Mullins", "Katerine Mullins").
parent("Benjamin Mullins", "Pete Mullins").
parent("Chelsie Roldan", "Stacey Roldan").
parent("Chelsie Roldan", "Zoraida Roldan").
parent("Cristopher Homan", "Lorina Homan").
parent("Cristopher Homan", "Santiago Homan").
parent("Deane Medley", "Deidre Medley").
parent("Deane Medley", "Doug Medley").
parent("Deena Munroe", "Deidre Medley").
parent("Deena Munroe", "Doug Medley").
parent("Deidre Medley", "Romana Bishop").
parent("Deidre Medley", "Vaughn Bishop").
parent("Demetria Decosta", "Kelley Preciado").
parent("Demetria Decosta", "Sanford Preciado").
parent("Devon Preciado", "Kelley Preciado").
parent("Devon Preciado", "Sanford Preciado").
parent("Federico Keene", "Rudolph Keene").
parent("Federico Keene", "Sherrie Keene").
parent("Gemma Keene", "Chloe Mccune").
parent("Gemma Keene", "Ronald Mccune").
parent("Hans Decosta", "Demetria Decosta").
parent("Hans Decosta", "Gordon Decosta").
parent("Jacque Mullins", "Katerine Mullins").
parent("Jacque Mullins", "Pete Mullins").
parent("Josie Langford", "Aletha Mccune").
parent("Josie Langford", "Conrad Mccune").
parent("Kelley Preciado", "Caleb Langford").
parent("Kelley Preciado", "Josie Langford").
parent("Lavonne Rounds", "Kelley Preciado").
parent("Lavonne Rounds", "Sanford Preciado").
parent("Lorina Homan", "Caleb Langford").
parent("Lorina Homan", "Josie Langford").
parent("Nestor Preciado", "Devon Preciado").
parent("Nestor Preciado", "Ruby Preciado").
parent("Paula Preciado", "Devon Preciado").
parent("Paula Preciado", "Ruby Preciado").
parent("Queenie Homan", "Lorina Homan").
parent("Queenie Homan", "Santiago Homan").
parent("Rolland Bishop", "Romana Bishop").
parent("Rolland Bishop", "Vaughn Bishop").
parent("Romana Bishop", "Aletha Mccune").
parent("Romana Bishop", "Conrad Mccune").
parent("Ronald Mccune", "Aletha Mccune").
parent("Ronald Mccune", "Conrad Mccune").
parent("Ruby Preciado", "Jamey Turnage").
parent("Ruby Preciado", "Kathey Turnage").
parent("Rudolph Keene", "Gemma Keene").
parent("Rudolph Keene", "Zackary Keene").
parent("Sam Bishop", "Daniela Bishop").
parent("Sam Bishop", "Rolland Bishop").
parent("Sanford Preciado", "Amie Preciado").
parent("Sanford Preciado", "Jon Preciado").
parent("Santos Rounds", "Jamie Rounds").
parent("Santos Rounds", "Lavonne Rounds").
parent("Zoraida Roldan", "Deena Munroe").
parent("Zoraida Roldan", "Deshawn Munroe").
parent("Andy Perez", "Sondra Perez").
parent("Andy Perez", "Wilton Perez").
parent("Armando Perreault", "Cyril Perreault").
parent("Armando Perreault", "Idell Perreault").
parent("Carmella Gamboa", "Erma Gamboa").
parent("Carmella Gamboa", "Kurt Gamboa").
parent("Chante Perreault", "Cyril Perreault").
parent("Chante Perreault", "Idell Perreault").
parent("Christopher Pfeiffer", "Myra Pfeiffer").
parent("Christopher Pfeiffer", "Tanner Pfeiffer").
parent("Daniele Perez", "Sondra Perez").
parent("Daniele Perez", "Wilton Perez").
parent("Dion Gamboa", "Bev Gamboa").
parent("Dion Gamboa", "Elbert Gamboa").
parent("Elvis Laird", "Marlene Laird").
parent("Elvis Laird", "Marvin Laird").
parent("Emerson Perez", "Sondra Perez").
parent("Emerson Perez", "Wilton Perez").
parent("Flora Driggers", "Malcolm Driggers").
parent("Flora Driggers", "Rena Driggers").
parent("Grady Perez", "Emerson Perez").
parent("Grady Perez", "Janell Perez").
parent("Homer Perez", "Sondra Perez").
parent("Homer Perez", "Wilton Perez").
parent("Idell Perreault", "Sondra Perez").
parent("Idell Perreault", "Wilton Perez").
parent("Janis Reece", "Damien Reece").
parent("Janis Reece", "Laverne Reece").
parent("Karla Perez", "Damien Reece").
parent("Karla Perez", "Laverne Reece").
parent("Kurt Gamboa", "Rosemary Gamboa").
parent("Kurt Gamboa", "Tyson Gamboa").
parent("Lashawnda Reece", "Damien Reece").
parent("Lashawnda Reece", "Laverne Reece").
parent("Laverne Reece", "Ivan Driggers").
parent("Laverne Reece", "Reita Driggers").
parent("Lester Perez", "Homer Perez").
parent("Lester Perez", "Joline Perez").
parent("Lissa Stroup", "Andy Perez").
parent("Lissa Stroup", "Karla Perez").
parent("Lucien Perez", "Andy Perez").
parent("Lucien Perez", "Karla Perez").
parent("Malcolm Driggers", "Ivan Driggers").
parent("Malcolm Driggers", "Reita Driggers").
parent("Mariann Damron", "Emerson Perez").
parent("Mariann Damron", "Janell Perez").
parent("Myra Pfeiffer", "Rosemary Gamboa").
parent("Myra Pfeiffer", "Tyson Gamboa").
parent("Page Reece", "Damien Reece").
parent("Page Reece", "Laverne Reece").
parent("Pamala Reece", "Damien Reece").
parent("Pamala Reece", "Laverne Reece").
parent("Reita Driggers", "Billye Laird").
parent("Reita Driggers", "Elvis Laird").
parent("Rodney Durbin", "Felipe Durbin").
parent("Rodney Durbin", "Teena Durbin").
parent("Rosemary Gamboa", "Ivan Driggers").
parent("Rosemary Gamboa", "Reita Driggers").
parent("Sophie Stroup", "Caleb Stroup").
parent("Sophie Stroup", "Lissa Stroup").
parent("Teena Durbin", "Rosemary Gamboa").
parent("Teena Durbin", "Tyson Gamboa").
parent("Teresita Damron", "Erik Damron").
parent("Teresita Damron", "Mariann Damron").
parent("Tyson Gamboa", "Bev Gamboa").
parent("Tyson Gamboa", "Elbert Gamboa").
parent("Aline Sipes", "Devin Sipes").
parent("Aline Sipes", "Lessie Sipes").
parent("Art Sipes", "Desmond Sipes").
parent("Art Sipes", "Linda Sipes").
parent("Bernardo Sipes", "Francisca Sipes").
parent("Bernardo Sipes", "Jamal Sipes").
parent("Brooke Silver", "Hiram Sipes").
parent("Brooke Silver", "Rae Sipes").
parent("Debbie Silver", "Ida Silver").
parent("Debbie Silver", "Shelton Silver").
parent("Delsie Hail", "Gavin Sipes").
parent("Delsie Hail", "Nicholle Sipes").
parent("Desmond Sipes", "Gabriel Sipes").
parent("Desmond Sipes", "Loraine Sipes").
parent("Devin Sipes", "Hiram Sipes").
parent("Devin Sipes", "Rae Sipes").
parent("Dianna Sipes", "Devin Sipes").
parent("Dianna Sipes", "Lessie Sipes").
parent("Gabriel Sipes", "Hiram Sipes").
parent("Gabriel Sipes", "Rae Sipes").
parent("Gavin Sipes", "Hiram Sipes").
parent("Gavin Sipes", "Rae Sipes").
parent("Glenda Sipes", "Gabriel Sipes").
parent("Glenda Sipes", "Loraine Sipes").
parent("Jamal Sipes", "Desmond Sipes").
parent("Jamal Sipes", "Linda Sipes").
parent("Jerry Standifer", "Nathan Standifer").
parent("Jerry Standifer", "Stella Standifer").
parent("Lauren Sipes", "Hannah Sipes").
parent("Lauren Sipes", "Walker Sipes").
parent("Laverne Standifer", "Nathan Standifer").
parent("Laverne Standifer", "Stella Standifer").
parent("Lenny Standifer", "Damian Standifer").
parent("Lenny Standifer", "Ta Standifer").
parent("Loraine Sipes", "Kenneth Bullins").
parent("Loraine Sipes", "Lauren Bullins").
parent("Miranda Sipes", "Devin Sipes").
parent("Miranda Sipes", "Lessie Sipes").
parent("Myles Abram", "Jefferson Abram").
parent("Myles Abram", "Zana Abram").
parent("Nathan Standifer", "Damian Standifer").
parent("Nathan Standifer", "Ta Standifer").
parent("Orlando Sipes", "Desmond Sipes").
parent("Orlando Sipes", "Linda Sipes").
parent("Rae Sipes", "Dudley Manion").
parent("Rae Sipes", "Jennette Manion").
parent("Randal Hail", "Delsie Hail").
parent("Randal Hail", "Eugene Hail").
parent("Shelton Silver", "Brooke Silver").
parent("Shelton Silver", "Taylor Silver").
parent("Ta Standifer", "Desmond Sipes").
parent("Ta Standifer", "Linda Sipes").
parent("Taylor Silver", "Tyrone Silver").
parent("Taylor Silver", "Yoshiko Silver").
parent("Thomasine Standifer", "Damian Standifer").
parent("Thomasine Standifer", "Ta Standifer").
parent("Tonya Sipes", "Gavin Sipes").
parent("Tonya Sipes", "Nicholle Sipes").
parent("Tyrell Sipes", "Gabriel Sipes").
parent("Tyrell Sipes", "Loraine Sipes").
parent("Walker Sipes", "Laverna Sipes").
parent("Walker Sipes", "Tyrell Sipes").
parent("Wilson Sipes", "Devin Sipes").
parent("Wilson Sipes", "Lessie Sipes").
parent("Zana Abram", "Gavin Sipes").
parent("Zana Abram", "Nicholle Sipes").
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("Alethia Kidd", "female").
gender("Alexis Kingsley", "male").
gender("Ana Colin", "female").
gender("Antionette Song", "female").
gender("Byron Song", "male").
gender("Carlos Baptiste", "male").
gender("Damon Song", "male").
gender("Danilo Colin", "male").
gender("Deirdre Bivins", "female").
gender("Eddie Song", "male").
gender("Elisabeth Kingsley", "female").
gender("Felton Kidd", "male").
gender("Freda Song", "female").
gender("Gene Song", "male").
gender("Genesis Colin", "female").
gender("Geneva Song", "female").
gender("Gilbert Summerlin", "male").
gender("Hannah Bivins", "female").
gender("Hyun Song", "female").
gender("Idell Kidd", "female").
gender("Isidro Kidd", "male").
gender("Jamal Song", "male").
gender("Jeana Song", "female").
gender("Jesse Kiel", "female").
gender("Jolene Song", "female").
gender("Lance Kiel", "male").
gender("Lester Bivins", "male").
gender("Lynda Colin", "female").
gender("Madaline Song", "female").
gender("Matilda Summerlin", "female").
gender("Maynard Song", "male").
gender("Mckinley Colin", "male").
gender("Meghann Kidd", "female").
gender("Melvin Kidd", "male").
gender("Nathaniel Song", "male").
gender("Nikki Kidd", "female").
gender("Nina Song", "female").
gender("Noreen Kingsley", "female").
gender("Ramona Colin", "female").
gender("Romelia Song", "female").
gender("Seymour Song", "male").
gender("Shelly Reece", "female").
gender("Sol Song", "male").
gender("Stephan Kidd", "male").
gender("Tawana Summerlin", "female").
gender("Thomasine Kidd", "female").
gender("Tod Song", "male").
gender("Twila Baptiste", "female").
gender("Winfred Baptiste", "male").
gender("Wyatt Reece", "male").
gender("Yvette Song", "female").
gender("Adah Camper", "female").
gender("Adele Ahmad", "female").
gender("Amos Vargas", "male").
gender("Angie Vargas", "female").
gender("Ayesha Abbate", "female").
gender("Bradley Yocum", "male").
gender("Carina Vargas", "female").
gender("Christa Vargas", "female").
gender("David Mcclelland", "male").
gender("Derek Flatt", "male").
gender("Eddy Vargas", "male").
gender("Elfriede Moffitt", "female").
gender("Eli Flatt", "male").
gender("Elvie Vargas", "female").
gender("Errol Camper", "male").
gender("Forrest Vargas", "male").
gender("Fred Vargas", "male").
gender("Gerry Vargas", "male").
gender("Ginger Hamrick", "female").
gender("Harriette Vargas", "female").
gender("Ivan Abbate", "male").
gender("Jeannie Loper", "female").
gender("Joey Mcclelland", "male").
gender("Kacey Yocum", "female").
gender("Kendrick Vargas", "male").
gender("Kraig Hamrick", "male").
gender("Livia Camper", "female").
gender("Marlana Mcclelland", "female").
gender("Millard Camper", "male").
gender("Newton Moffitt", "male").
gender("Nicholas Vargas", "male").
gender("Noe Vargas", "male").
gender("Page Vargas", "female").
gender("Pamula Flatt", "female").
gender("Raphael Vargas", "male").
gender("Renaldo Ahmad", "male").
gender("Robyn Vargas", "female").
gender("Ronnie Vargas", "male").
gender("Rosie Vargas", "female").
gender("Son Loper", "male").
gender("Stevie Vargas", "male").
gender("Thelma Flatt", "female").
gender("Theodore Yocum", "male").
gender("Theron Mcclelland", "male").
gender("Toney Vargas", "male").
gender("Valentina Vargas", "female").
gender("Wendell Flatt", "male").
gender("Will Vargas", "male").
gender("Winnifred Mcclelland", "female").
gender("Xavier Vargas", "male").
gender("Antionette Dyer", "female").
gender("Anton Swink", "male").
gender("Cara Lucky", "female").
gender("Christina Lucky", "female").
gender("Damion Swink", "male").
gender("Dwain Lucky", "male").
gender("Ellis Lucky", "male").
gender("Emil Lucky", "male").
gender("Ervin Swink", "male").
gender("Eugene Ellsworth", "male").
gender("Floyd Lucky", "male").
gender("Freda Dyer", "female").
gender("Frederick Lucky", "male").
gender("Gabriele Lucky", "female").
gender("Gemma Pirtle", "female").
gender("Hank Lucky", "male").
gender("Harlan Lucky", "male").
gender("Holly Lucky", "female").
gender("Ilona Dyer", "female").
gender("Jerrold Lucky", "male").
gender("Jess Ellsworth", "male").
gender("Jewel Dyer", "female").
gender("Judith Slate", "female").
gender("Katharine Lucky", "female").
gender("Ken Pirtle", "male").
gender("Kermit Swink", "male").
gender("Kimberely Lucky", "female").
gender("Lauren Pirtle", "female").
gender("Laverna Ellsworth", "female").
gender("Leena Lucky", "female").
gender("Lincoln Oneil", "male").
gender("Lisa Dyer", "female").
gender("Lois Oneil", "female").
gender("Lowell Lucky", "male").
gender("Luke Slate", "male").
gender("Meryl Lucky", "female").
gender("My Swink", "female").
gender("Nelly Lucky", "female").
gender("Odelia Lucky", "female").
gender("Paris Lucky", "male").
gender("Renaldo Dyer", "male").
gender("Ricardo Lucky", "male").
gender("Romana Dyer", "female").
gender("Roosevelt Dyer", "male").
gender("Selina Slate", "female").
gender("Sherita Dyer", "female").
gender("Stevie Dyer", "male").
gender("Wesley Pirtle", "male").
gender("Wilmer Pirtle", "male").
gender("Winnie Lucky", "female").
gender("Alejandrina Preciado", "female").
gender("Aletha Mccune", "female").
gender("Amie Preciado", "female").
gender("Annabell Mccune", "female").
gender("Belva Mccune", "female").
gender("Benjamin Mullins", "male").
gender("Caleb Langford", "male").
gender("Chelsie Roldan", "female").
gender("Chloe Mccune", "female").
gender("Conrad Mccune", "male").
gender("Cristopher Homan", "male").
gender("Daniela Bishop", "female").
gender("Deane Medley", "female").
gender("Deena Munroe", "female").
gender("Deidre Medley", "female").
gender("Demetria Decosta", "female").
gender("Deshawn Munroe", "male").
gender("Devon Preciado", "male").
gender("Doug Medley", "male").
gender("Federico Keene", "male").
gender("Gemma Keene", "female").
gender("Gordon Decosta", "male").
gender("Hans Decosta", "male").
gender("Jacque Mullins", "female").
gender("Jamey Turnage", "male").
gender("Jamie Rounds", "male").
gender("Jon Preciado", "male").
gender("Josie Langford", "female").
gender("Katerine Mullins", "female").
gender("Kathey Turnage", "female").
gender("Kelley Preciado", "female").
gender("Lavonne Rounds", "female").
gender("Lorina Homan", "female").
gender("Nestor Preciado", "male").
gender("Paula Preciado", "female").
gender("Pete Mullins", "male").
gender("Queenie Homan", "female").
gender("Rolland Bishop", "male").
gender("Romana Bishop", "female").
gender("Ronald Mccune", "male").
gender("Ruby Preciado", "female").
gender("Rudolph Keene", "male").
gender("Sam Bishop", "male").
gender("Sanford Preciado", "male").
gender("Santiago Homan", "male").
gender("Santos Rounds", "male").
gender("Sherrie Keene", "female").
gender("Stacey Roldan", "male").
gender("Vaughn Bishop", "male").
gender("Zackary Keene", "male").
gender("Zoraida Roldan", "female").
gender("Andy Perez", "male").
gender("Armando Perreault", "male").
gender("Bev Gamboa", "female").
gender("Billye Laird", "female").
gender("Caleb Stroup", "male").
gender("Carmella Gamboa", "female").
gender("Chante Perreault", "female").
gender("Christopher Pfeiffer", "male").
gender("Cyril Perreault", "male").
gender("Damien Reece", "male").
gender("Daniele Perez", "female").
gender("Dion Gamboa", "male").
gender("Elbert Gamboa", "male").
gender("Elvis Laird", "male").
gender("Emerson Perez", "male").
gender("Erik Damron", "male").
gender("Erma Gamboa", "female").
gender("Felipe Durbin", "male").
gender("Flora Driggers", "female").
gender("Grady Perez", "male").
gender("Homer Perez", "male").
gender("Idell Perreault", "female").
gender("Ivan Driggers", "male").
gender("Janell Perez", "female").
gender("Janis Reece", "female").
gender("Joline Perez", "female").
gender("Karla Perez", "female").
gender("Kurt Gamboa", "male").
gender("Lashawnda Reece", "female").
gender("Laverne Reece", "female").
gender("Lester Perez", "male").
gender("Lissa Stroup", "female").
gender("Lucien Perez", "male").
gender("Malcolm Driggers", "male").
gender("Mariann Damron", "female").
gender("Marlene Laird", "female").
gender("Marvin Laird", "male").
gender("Myra Pfeiffer", "female").
gender("Page Reece", "female").
gender("Pamala Reece", "female").
gender("Reita Driggers", "female").
gender("Rena Driggers", "female").
gender("Rodney Durbin", "male").
gender("Rosemary Gamboa", "female").
gender("Sondra Perez", "female").
gender("Sophie Stroup", "female").
gender("Tanner Pfeiffer", "male").
gender("Teena Durbin", "female").
gender("Teresita Damron", "female").
gender("Tyson Gamboa", "male").
gender("Wilton Perez", "male").
gender("Aline Sipes", "female").
gender("Art Sipes", "male").
gender("Bernardo Sipes", "male").
gender("Brooke Silver", "female").
gender("Damian Standifer", "male").
gender("Debbie Silver", "female").
gender("Delsie Hail", "female").
gender("Desmond Sipes", "male").
gender("Devin Sipes", "male").
gender("Dianna Sipes", "female").
gender("Dudley Manion", "male").
gender("Eugene Hail", "male").
gender("Francisca Sipes", "female").
gender("Gabriel Sipes", "male").
gender("Gavin Sipes", "male").
gender("Glenda Sipes", "female").
gender("Hannah Sipes", "female").
gender("Hiram Sipes", "male").
gender("Ida Silver", "female").
gender("Jamal Sipes", "male").
gender("Jefferson Abram", "male").
gender("Jennette Manion", "female").
gender("Jerry Standifer", "male").
gender("Kenneth Bullins", "male").
gender("Lauren Bullins", "female").
gender("Lauren Sipes", "female").
gender("Laverna Sipes", "female").
gender("Laverne Standifer", "female").
gender("Lenny Standifer", "male").
gender("Lessie Sipes", "female").
gender("Linda Sipes", "female").
gender("Loraine Sipes", "female").
gender("Miranda Sipes", "female").
gender("Myles Abram", "male").
gender("Nathan Standifer", "male").
gender("Nicholle Sipes", "female").
gender("Orlando Sipes", "male").
gender("Rae Sipes", "female").
gender("Randal Hail", "male").
gender("Shelton Silver", "male").
gender("Stella Standifer", "female").
gender("Ta Standifer", "female").
gender("Taylor Silver", "male").
gender("Thomasine Standifer", "female").
gender("Tonya Sipes", "female").
gender("Tyrell Sipes", "male").
gender("Tyrone Silver", "male").
gender("Walker Sipes", "male").
gender("Wilson Sipes", "male").
gender("Yoshiko Silver", "female").
gender("Zana Abram", "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.
|