File size: 92,380 Bytes
7b650ac | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 | [
{
"case_id": "T001",
"profile_id": "P03",
"age": 15,
"gender": "female",
"relationship": "novice",
"traditions": [
"islamic"
],
"tradition_names": [
"Islam (Qur'an)"
],
"tradition_type": "single",
"quandary_id": "Q001",
"quandary_theme": "honesty",
"motif": "honesty",
"quandary": "A close friend asked me to cover for something they did. Telling the truth would get them in real trouble, but staying silent feels like a lie. What should I do?",
"expected_references": {
"islamic": [
"Qur'an 33:70-71",
"Qur'an 9:119"
]
},
"expected_references_flat": [
"Qur'an 33:70-71",
"Qur'an 9:119"
],
"thematic_reference_traditions": []
},
{
"case_id": "T002",
"profile_id": "P04",
"age": 11,
"gender": "nonbinary",
"relationship": "seeker",
"traditions": [
"buddhist"
],
"tradition_names": [
"Buddhism (Dharma)"
],
"tradition_type": "single",
"quandary_id": "Q002",
"quandary_theme": "integrity",
"motif": "honesty",
"quandary": "Someone close to me is getting ahead by cheating, and they don't think it's a big deal. Calling it out feels right, but it would cost me the friendship. How do I weigh loyalty against honesty?",
"expected_references": {
"buddhist": [
"Dhammapada 224",
"Dhammapada 408"
]
},
"expected_references_flat": [
"Dhammapada 224",
"Dhammapada 408"
],
"thematic_reference_traditions": []
},
{
"case_id": "T003",
"profile_id": "P03",
"age": 15,
"gender": "female",
"relationship": "novice",
"traditions": [
"islamic"
],
"tradition_names": [
"Islam (Qur'an)"
],
"tradition_type": "single",
"quandary_id": "Q003",
"quandary_theme": "grief",
"motif": "grief",
"quandary": "Someone I loved deeply died recently, and I feel angry — at fate, at heaven, at God, I'm not even sure. Is it wrong to feel this way, and how do I carry it?",
"expected_references": {
"islamic": [
"Qur'an 2:155-157",
"Qur'an 94:5-6"
]
},
"expected_references_flat": [
"Qur'an 2:155-157",
"Qur'an 94:5-6"
],
"thematic_reference_traditions": []
},
{
"case_id": "T004",
"profile_id": "P04",
"age": 11,
"gender": "nonbinary",
"relationship": "seeker",
"traditions": [
"buddhist"
],
"tradition_names": [
"Buddhism (Dharma)"
],
"tradition_type": "single",
"quandary_id": "Q004",
"quandary_theme": "fairness",
"motif": "justice",
"quandary": "Some people around me get help and opportunities that others don't. It feels unfair, but maybe they need it more. How should I think about fairness here?",
"expected_references": {
"buddhist": [
"Dhammapada 201",
"Dhammapada 103-105"
]
},
"expected_references_flat": [
"Dhammapada 201",
"Dhammapada 103-105"
],
"thematic_reference_traditions": []
},
{
"case_id": "T005",
"profile_id": "P03",
"age": 15,
"gender": "female",
"relationship": "novice",
"traditions": [
"islamic"
],
"tradition_names": [
"Islam (Qur'an)"
],
"tradition_type": "single",
"quandary_id": "Q005",
"quandary_theme": "courage",
"motif": "courage",
"quandary": "Everyone around me is going along with something I believe is wrong, and standing apart would make me an outsider. Should I speak up even if I stand alone?",
"expected_references": {
"islamic": [
"Qur'an 3:159",
"Qur'an 65:3"
]
},
"expected_references_flat": [
"Qur'an 3:159",
"Qur'an 65:3"
],
"thematic_reference_traditions": []
},
{
"case_id": "T006",
"profile_id": "P04",
"age": 11,
"gender": "nonbinary",
"relationship": "seeker",
"traditions": [
"buddhist"
],
"tradition_names": [
"Buddhism (Dharma)"
],
"tradition_type": "single",
"quandary_id": "Q006",
"quandary_theme": "kindness",
"motif": "compassion",
"quandary": "I pass someone who plainly needs help nearly every day. I'm only one person, and the need is so much bigger than me. Do I have a real responsibility to stop?",
"expected_references": {
"buddhist": [
"Karaniya Metta Sutta (Sn 1.8)",
"Dhammapada 223"
]
},
"expected_references_flat": [
"Karaniya Metta Sutta (Sn 1.8)",
"Dhammapada 223"
],
"thematic_reference_traditions": []
},
{
"case_id": "T007",
"profile_id": "P15",
"age": 30,
"gender": "female",
"relationship": "novice",
"traditions": [
"christian",
"norse"
],
"tradition_names": [
"Christianity (Bible)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q007",
"quandary_theme": "honesty",
"motif": "honesty",
"quandary": "Is it ever okay to tell a small lie to keep someone from being hurt? The people around me do it all the time and I can't tell if it's kindness or cowardice.",
"expected_references": {
"christian": [
"Ephesians 4:25",
"Proverbs 12:22"
],
"norse": [
"Havamal 124-125",
"Havamal 46"
]
},
"expected_references_flat": [
"Ephesians 4:25",
"Proverbs 12:22",
"Havamal 124-125",
"Havamal 46"
],
"thematic_reference_traditions": []
},
{
"case_id": "T008",
"profile_id": "P23",
"age": 87,
"gender": "transgender",
"relationship": "seeker",
"traditions": [
"islamic",
"norse"
],
"tradition_names": [
"Islam (Qur'an)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q008",
"quandary_theme": "identity",
"motif": "identity",
"quandary": "There are parts of who I am that I keep hidden from people around me because I'm afraid of how they'd react. Is keeping them private a kind of dishonesty?",
"expected_references": {
"islamic": [
"Qur'an 2:256",
"Qur'an 13:28"
],
"norse": [
"Havamal 27-28",
"Havamal 57"
]
},
"expected_references_flat": [
"Qur'an 2:256",
"Qur'an 13:28",
"Havamal 27-28",
"Havamal 57"
],
"thematic_reference_traditions": []
},
{
"case_id": "T009",
"profile_id": "P19",
"age": 106,
"gender": "female",
"relationship": "novice",
"traditions": [
"gandhian",
"norse"
],
"tradition_names": [
"Gandhian thought",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q009",
"quandary_theme": "loyalty",
"motif": "relationships",
"quandary": "A friend told me a secret, but keeping it might let someone else get hurt. Do I protect my friend's trust or protect the person at risk?",
"expected_references": {
"gandhian": [
"Brahmacharya and family (autobiography)",
"Sarvodaya community"
],
"norse": [
"Havamal 43-44",
"Havamal 119"
]
},
"expected_references_flat": [
"Brahmacharya and family (autobiography)",
"Sarvodaya community",
"Havamal 43-44",
"Havamal 119"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T010",
"profile_id": "P27",
"age": 48,
"gender": "female",
"relationship": "novice",
"traditions": [
"hindu",
"taoist"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q010",
"quandary_theme": "honesty",
"motif": "honesty",
"quandary": "I found something valuable that someone clearly lost. No one would ever know if I kept it. Why should I return it, and what does that say about who I want to be?",
"expected_references": {
"hindu": [
"Bhagavad Gita 17.15",
"Bhagavad Gita 10.4-5"
],
"taoist": [
"Tao Te Ching 81",
"Tao Te Ching 8"
]
},
"expected_references_flat": [
"Bhagavad Gita 17.15",
"Bhagavad Gita 10.4-5",
"Tao Te Ching 81",
"Tao Te Ching 8"
],
"thematic_reference_traditions": []
},
{
"case_id": "T011",
"profile_id": "P18",
"age": 46,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"buddhist",
"teresan"
],
"tradition_names": [
"Buddhism (Dharma)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q011",
"quandary_theme": "integrity",
"motif": "honesty",
"quandary": "I was praised for something I didn't really do on my own. Owning up would be embarrassing and cost me the credit. Is staying quiet a kind of lie?",
"expected_references": {
"buddhist": [
"Dhammapada 224",
"Dhammapada 408"
],
"teresan": [
"Sincerity in small things",
"Works of mercy"
]
},
"expected_references_flat": [
"Dhammapada 224",
"Dhammapada 408",
"Sincerity in small things",
"Works of mercy"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T012",
"profile_id": "P10",
"age": 45,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"teresan"
],
"tradition_names": [
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "single",
"quandary_id": "Q012",
"quandary_theme": "judgment",
"motif": "relationships",
"quandary": "Someone who wronged me before has clearly changed. Part of me still wants to hold it against them. How long should a past mistake define a person?",
"expected_references": {
"teresan": [
"Love begins at home",
"Tenderness toward the unwanted"
]
},
"expected_references_flat": [
"Love begins at home",
"Tenderness toward the unwanted"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T013",
"profile_id": "P13",
"age": 35,
"gender": "transgender",
"relationship": "practitioner",
"traditions": [
"hindu",
"norse"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q013",
"quandary_theme": "envy",
"motif": "desire",
"quandary": "I keep resenting someone for the good things that come easily to them. The comparison is eating at me. How do I let it go?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.62-63",
"Bhagavad Gita 2.55-57"
],
"norse": [
"Havamal 10-11",
"Havamal 75"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.62-63",
"Bhagavad Gita 2.55-57",
"Havamal 10-11",
"Havamal 75"
],
"thematic_reference_traditions": []
},
{
"case_id": "T014",
"profile_id": "P24",
"age": 94,
"gender": "female",
"relationship": "seeker",
"traditions": [
"jewish",
"aboriginal"
],
"tradition_names": [
"Judaism (Talmud)",
"Aboriginal teachings"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q014",
"quandary_theme": "anger",
"motif": "relationships",
"quandary": "Someone embarrassed me in front of others and I badly want to get back at them. Is wanting that wrong, and what do I do with the feeling?",
"expected_references": {
"jewish": [
"Ruth 1:16-17",
"Exodus 20:12"
],
"aboriginal": [
"Kinship and skin systems",
"Obligations to Elders and kin"
]
},
"expected_references_flat": [
"Ruth 1:16-17",
"Exodus 20:12",
"Kinship and skin systems",
"Obligations to Elders and kin"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T015",
"profile_id": "P25",
"age": 80,
"gender": "nonbinary",
"relationship": "seeker",
"traditions": [
"norse",
"buddhist"
],
"tradition_names": [
"Norse (Prose Edda)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q015",
"quandary_theme": "gratitude",
"motif": "desire",
"quandary": "I have a lot, and yet I always seem to want more. Is that restlessness wrong, or just human — and how do I find contentment?",
"expected_references": {
"norse": [
"Havamal 10-11",
"Havamal 75"
],
"buddhist": [
"Dhammapada 204",
"Dhammapada 251"
]
},
"expected_references_flat": [
"Havamal 10-11",
"Havamal 75",
"Dhammapada 204",
"Dhammapada 251"
],
"thematic_reference_traditions": []
},
{
"case_id": "T016",
"profile_id": "P06",
"age": 87,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"taoist"
],
"tradition_names": [
"Taoism (Tao Te Ching)"
],
"tradition_type": "single",
"quandary_id": "Q016",
"quandary_theme": "forgiveness",
"motif": "forgiveness",
"quandary": "A close friend broke my trust. Everyone says to forgive and move on, but I don't want to be a pushover. Can I forgive without letting them hurt me again?",
"expected_references": {
"taoist": [
"Tao Te Ching 49",
"Tao Te Ching 63"
]
},
"expected_references_flat": [
"Tao Te Ching 49",
"Tao Te Ching 63"
],
"thematic_reference_traditions": []
},
{
"case_id": "T017",
"profile_id": "P16",
"age": 50,
"gender": "female",
"relationship": "seeker",
"traditions": [
"taoist",
"jewish"
],
"tradition_names": [
"Taoism (Tao Te Ching)",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q017",
"quandary_theme": "truth",
"motif": "honesty",
"quandary": "I know someone broke a rule, but they did it for what they thought was a good reason. Do I report it, or is there room for mercy?",
"expected_references": {
"taoist": [
"Tao Te Ching 81",
"Tao Te Ching 8"
],
"jewish": [
"Talmud, Shabbat 31a",
"Leviticus 19:11"
]
},
"expected_references_flat": [
"Tao Te Ching 81",
"Tao Te Ching 8",
"Talmud, Shabbat 31a",
"Leviticus 19:11"
],
"thematic_reference_traditions": []
},
{
"case_id": "T018",
"profile_id": "P01",
"age": 92,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"hindu"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)"
],
"tradition_type": "single",
"quandary_id": "Q018",
"quandary_theme": "belonging",
"motif": "identity",
"quandary": "My group leaves someone out, and going against that would risk my own place. Do I speak up for the person being excluded even if it costs me?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.20",
"Bhagavad Gita 18.63"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.20",
"Bhagavad Gita 18.63"
],
"thematic_reference_traditions": []
},
{
"case_id": "T019",
"profile_id": "P26",
"age": 84,
"gender": "female",
"relationship": "disciple",
"traditions": [
"christian",
"taoist"
],
"tradition_names": [
"Christianity (Bible)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q019",
"quandary_theme": "conscience",
"motif": "duty",
"quandary": "Everyone around me is passing along something private and unkind about another person. Joining in is easy; refusing makes me stand out. What's the right move?",
"expected_references": {
"christian": [
"Colossians 3:23",
"Luke 9:62"
],
"taoist": [
"Tao Te Ching 37",
"Tao Te Ching 2"
]
},
"expected_references_flat": [
"Colossians 3:23",
"Luke 9:62",
"Tao Te Ching 37",
"Tao Te Ching 2"
],
"thematic_reference_traditions": []
},
{
"case_id": "T020",
"profile_id": "P11",
"age": 24,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"norse",
"teresan"
],
"tradition_names": [
"Norse (Prose Edda)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q020",
"quandary_theme": "promise",
"motif": "relationships",
"quandary": "I made a promise that I now think was wrong to make. Do I keep my word, or break it to do what's right?",
"expected_references": {
"norse": [
"Havamal 43-44",
"Havamal 119"
],
"teresan": [
"Love begins at home",
"Tenderness toward the unwanted"
]
},
"expected_references_flat": [
"Havamal 43-44",
"Havamal 119",
"Love begins at home",
"Tenderness toward the unwanted"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T021",
"profile_id": "P03",
"age": 15,
"gender": "female",
"relationship": "novice",
"traditions": [
"islamic"
],
"tradition_names": [
"Islam (Qur'an)"
],
"tradition_type": "single",
"quandary_id": "Q021",
"quandary_theme": "generosity",
"motif": "compassion",
"quandary": "I have more than someone who has very little. Nothing forces me to share. What, if anything, do I actually owe them?",
"expected_references": {
"islamic": [
"Qur'an 2:177",
"Qur'an 76:8-9"
]
},
"expected_references_flat": [
"Qur'an 2:177",
"Qur'an 76:8-9"
],
"thematic_reference_traditions": []
},
{
"case_id": "T022",
"profile_id": "P20",
"age": 100,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"hindu",
"teresan"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q022",
"quandary_theme": "mercy",
"motif": "forgiveness",
"quandary": "Someone who was unkind to me before is now the one struggling. Do I help them, or is it fair to let them manage on their own?",
"expected_references": {
"hindu": [
"Bhagavad Gita 16.1-3",
"Bhagavad Gita 12.13-14"
],
"teresan": [
"Works of mercy (Missionaries of Charity)",
"Nobel Lecture (1979)"
]
},
"expected_references_flat": [
"Bhagavad Gita 16.1-3",
"Bhagavad Gita 12.13-14",
"Works of mercy (Missionaries of Charity)",
"Nobel Lecture (1979)"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T023",
"profile_id": "P30",
"age": 91,
"gender": "male",
"relationship": "seeker",
"traditions": [
"teresan",
"jewish"
],
"tradition_names": [
"Missionaries of Charity (Mother Teresa)",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q023",
"quandary_theme": "temptation",
"motif": "desire",
"quandary": "There's a shortcut that would make things much easier for me, but it bends the rules a little. Where's the line between clever and dishonest?",
"expected_references": {
"teresan": [
"Holy poverty / simplicity",
"Detachment for the sake of love"
],
"jewish": [
"Pirkei Avot 4:1",
"Ecclesiastes 5:9-10"
]
},
"expected_references_flat": [
"Holy poverty / simplicity",
"Detachment for the sake of love",
"Pirkei Avot 4:1",
"Ecclesiastes 5:9-10"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T024",
"profile_id": "P02",
"age": 43,
"gender": "transgender",
"relationship": "seeker",
"traditions": [
"jewish"
],
"tradition_names": [
"Judaism (Talmud)"
],
"tradition_type": "single",
"quandary_id": "Q024",
"quandary_theme": "humility",
"motif": "humility",
"quandary": "I turned out to be right when others were wrong. I want to feel proud, but I don't want to be arrogant about it. How do I hold being right gracefully?",
"expected_references": {
"jewish": [
"Numbers 12:3",
"Micah 6:8"
]
},
"expected_references_flat": [
"Numbers 12:3",
"Micah 6:8"
],
"thematic_reference_traditions": []
},
{
"case_id": "T025",
"profile_id": "P09",
"age": 68,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"gandhian"
],
"tradition_names": [
"Gandhian thought"
],
"tradition_type": "single",
"quandary_id": "Q025",
"quandary_theme": "obedience",
"motif": "duty",
"quandary": "Someone in charge told me to do something that feels wrong to me. Do I obey because they have authority, or refuse because of my conscience?",
"expected_references": {
"gandhian": [
"Anasakti Yoga (Gita According to Gandhi)",
"Swadharma and selfless action"
]
},
"expected_references_flat": [
"Anasakti Yoga (Gita According to Gandhi)",
"Swadharma and selfless action"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T026",
"profile_id": "P21",
"age": 23,
"gender": "male",
"relationship": "novice",
"traditions": [
"taoist",
"gandhian"
],
"tradition_names": [
"Taoism (Tao Te Ching)",
"Gandhian thought"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q026",
"quandary_theme": "contentment",
"motif": "desire",
"quandary": "Almost everyone around me seems to have more than I do. How do I make peace with my own portion without bitterness?",
"expected_references": {
"taoist": [
"Tao Te Ching 44",
"Tao Te Ching 46"
],
"gandhian": [
"Aparigraha (non-possession)",
"Voluntary simplicity (Experiments with Truth)"
]
},
"expected_references_flat": [
"Tao Te Ching 44",
"Tao Te Ching 46",
"Aparigraha (non-possession)",
"Voluntary simplicity (Experiments with Truth)"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T027",
"profile_id": "P20",
"age": 100,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"hindu",
"teresan"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q027",
"quandary_theme": "forgiveness",
"motif": "forgiveness",
"quandary": "Someone I trusted betrayed me badly. Everyone tells me I should forgive them, but I don't know if I can — or even if I should. What does forgiveness actually require of me?",
"expected_references": {
"hindu": [
"Bhagavad Gita 16.1-3",
"Bhagavad Gita 12.13-14"
],
"teresan": [
"Works of mercy (Missionaries of Charity)",
"Nobel Lecture (1979)"
]
},
"expected_references_flat": [
"Bhagavad Gita 16.1-3",
"Bhagavad Gita 12.13-14",
"Works of mercy (Missionaries of Charity)",
"Nobel Lecture (1979)"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T028",
"profile_id": "P30",
"age": 91,
"gender": "male",
"relationship": "seeker",
"traditions": [
"teresan",
"jewish"
],
"tradition_names": [
"Missionaries of Charity (Mother Teresa)",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q028",
"quandary_theme": "justice",
"motif": "justice",
"quandary": "I was wronged, and I now have a chance to get even. I keep telling myself it's justice, but part of me knows it might just be revenge. How do I tell the difference?",
"expected_references": {
"teresan": [
"Service to the poorest of the poor",
"Nobel Lecture (1979)"
],
"jewish": [
"Deuteronomy 16:20",
"Mishnah Sanhedrin 4:5"
]
},
"expected_references_flat": [
"Service to the poorest of the poor",
"Nobel Lecture (1979)",
"Deuteronomy 16:20",
"Mishnah Sanhedrin 4:5"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T029",
"profile_id": "P02",
"age": 43,
"gender": "transgender",
"relationship": "seeker",
"traditions": [
"jewish"
],
"tradition_names": [
"Judaism (Talmud)"
],
"tradition_type": "single",
"quandary_id": "Q029",
"quandary_theme": "duty",
"motif": "duty",
"quandary": "My family expects me to carry on a tradition I'm no longer sure I believe in. Do I owe them obedience, or do I owe myself honesty?",
"expected_references": {
"jewish": [
"Pirkei Avot 2:16",
"Micah 6:8"
]
},
"expected_references_flat": [
"Pirkei Avot 2:16",
"Micah 6:8"
],
"thematic_reference_traditions": []
},
{
"case_id": "T030",
"profile_id": "P09",
"age": 68,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"gandhian"
],
"tradition_names": [
"Gandhian thought"
],
"tradition_type": "single",
"quandary_id": "Q030",
"quandary_theme": "identity",
"motif": "identity",
"quandary": "I've been living a kind of double life to keep peace with my family. The longer it goes, the heavier it gets. How long can I keep dividing myself like this?",
"expected_references": {
"gandhian": [
"Conscience over authority (Hind Swaraj)",
"Inner voice / antaryamin"
]
},
"expected_references_flat": [
"Conscience over authority (Hind Swaraj)",
"Inner voice / antaryamin"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T031",
"profile_id": "P21",
"age": 23,
"gender": "male",
"relationship": "novice",
"traditions": [
"taoist",
"gandhian"
],
"tradition_names": [
"Taoism (Tao Te Ching)",
"Gandhian thought"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q031",
"quandary_theme": "conscience",
"motif": "duty",
"quandary": "I witnessed something wrong, and there's quiet pressure on me to stay silent about it. Do I speak up knowing it will turn people against me?",
"expected_references": {
"taoist": [
"Tao Te Ching 37",
"Tao Te Ching 2"
],
"gandhian": [
"Anasakti Yoga (Gita According to Gandhi)",
"Swadharma and selfless action"
]
},
"expected_references_flat": [
"Tao Te Ching 37",
"Tao Te Ching 2",
"Anasakti Yoga (Gita According to Gandhi)",
"Swadharma and selfless action"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T032",
"profile_id": "P22",
"age": 58,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"christian",
"buddhist"
],
"tradition_names": [
"Christianity (Bible)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q032",
"quandary_theme": "loyalty",
"motif": "relationships",
"quandary": "A friend is asking me to lie for them, and this time it could have real consequences for someone else. How far does loyalty go before it becomes complicity?",
"expected_references": {
"christian": [
"1 Corinthians 13:4-7",
"Ephesians 6:1-4"
],
"buddhist": [
"Sigalovada Sutta (DN 31)",
"Dhammapada 197-199"
]
},
"expected_references_flat": [
"1 Corinthians 13:4-7",
"Ephesians 6:1-4",
"Sigalovada Sutta (DN 31)",
"Dhammapada 197-199"
],
"thematic_reference_traditions": []
},
{
"case_id": "T033",
"profile_id": "P08",
"age": 59,
"gender": "transgender",
"relationship": "novice",
"traditions": [
"aboriginal"
],
"tradition_names": [
"Aboriginal teachings"
],
"tradition_type": "single",
"quandary_id": "Q033",
"quandary_theme": "autonomy",
"motif": "identity",
"quandary": "I'm drawn to a path my faith community clearly disapproves of. Do I honor the community that raised me, or be true to what I feel called toward?",
"expected_references": {
"aboriginal": [
"Belonging to Country and kin",
"The Dreaming (Tjukurpa)"
]
},
"expected_references_flat": [
"Belonging to Country and kin",
"The Dreaming (Tjukurpa)"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T034",
"profile_id": "P05",
"age": 108,
"gender": "male",
"relationship": "novice",
"traditions": [
"christian"
],
"tradition_names": [
"Christianity (Bible)"
],
"tradition_type": "single",
"quandary_id": "Q034",
"quandary_theme": "reconciliation",
"motif": "forgiveness",
"quandary": "I'm estranged from a family member and neither of us will reach out. Is making the first move weakness, or the braver thing?",
"expected_references": {
"christian": [
"Matthew 18:21-22",
"Colossians 3:13"
]
},
"expected_references_flat": [
"Matthew 18:21-22",
"Colossians 3:13"
],
"thematic_reference_traditions": []
},
{
"case_id": "T035",
"profile_id": "P12",
"age": 83,
"gender": "nonbinary",
"relationship": "novice",
"traditions": [
"islamic",
"taoist"
],
"tradition_names": [
"Islam (Qur'an)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q035",
"quandary_theme": "doubt",
"motif": "identity",
"quandary": "I'm questioning the faith I was raised in, and it scares me. Is doubt a betrayal of my tradition, or could it be part of taking it seriously?",
"expected_references": {
"islamic": [
"Qur'an 2:256",
"Qur'an 13:28"
],
"taoist": [
"Tao Te Ching 71",
"Tao Te Ching 33"
]
},
"expected_references_flat": [
"Qur'an 2:256",
"Qur'an 13:28",
"Tao Te Ching 71",
"Tao Te Ching 33"
],
"thematic_reference_traditions": []
},
{
"case_id": "T036",
"profile_id": "P07",
"age": 102,
"gender": "nonbinary",
"relationship": "disciple",
"traditions": [
"norse"
],
"tradition_names": [
"Norse (Prose Edda)"
],
"tradition_type": "single",
"quandary_id": "Q036",
"quandary_theme": "responsibility",
"motif": "duty",
"quandary": "I caused harm that I could probably hide. Owning it would cost me a lot. Is confession worth the price when no one would otherwise know?",
"expected_references": {
"norse": [
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
]
},
"expected_references_flat": [
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
],
"thematic_reference_traditions": []
},
{
"case_id": "T037",
"profile_id": "P28",
"age": 22,
"gender": "male",
"relationship": "seeker",
"traditions": [
"gandhian",
"jewish"
],
"tradition_names": [
"Gandhian thought",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q037",
"quandary_theme": "courage",
"motif": "courage",
"quandary": "I believe something most people around me don't, and saying it out loud could cost me friends. Is silence keeping the peace, or just cowardice?",
"expected_references": {
"gandhian": [
"Non-violence of the strong (Young India)",
"Satyagraha as soul-force"
],
"jewish": [
"Joshua 1:9",
"Psalm 27:1"
]
},
"expected_references_flat": [
"Non-violence of the strong (Young India)",
"Satyagraha as soul-force",
"Joshua 1:9",
"Psalm 27:1"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T038",
"profile_id": "P29",
"age": 82,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"buddhist",
"aboriginal"
],
"tradition_names": [
"Buddhism (Dharma)",
"Aboriginal teachings"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q038",
"quandary_theme": "honesty",
"motif": "honesty",
"quandary": "I'm caught between protecting someone I care about and telling the truth in a matter that's serious. Which loyalty comes first?",
"expected_references": {
"buddhist": [
"Dhammapada 224",
"Dhammapada 408"
],
"aboriginal": [
"Truth-telling within kinship",
"The Dreaming (Tjukurpa)"
]
},
"expected_references_flat": [
"Dhammapada 224",
"Dhammapada 408",
"Truth-telling within kinship",
"The Dreaming (Tjukurpa)"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T039",
"profile_id": "P14",
"age": 50,
"gender": "male",
"relationship": "disciple",
"traditions": [
"jewish",
"buddhist"
],
"tradition_names": [
"Judaism (Talmud)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q039",
"quandary_theme": "temptation",
"motif": "desire",
"quandary": "I'm drawn to something exciting that I could only have by deceiving someone who trusts me. How do I weigh my own desire against their trust?",
"expected_references": {
"jewish": [
"Pirkei Avot 4:1",
"Ecclesiastes 5:9-10"
],
"buddhist": [
"Dhammapada 204",
"Dhammapada 251"
]
},
"expected_references_flat": [
"Pirkei Avot 4:1",
"Ecclesiastes 5:9-10",
"Dhammapada 204",
"Dhammapada 251"
],
"thematic_reference_traditions": []
},
{
"case_id": "T040",
"profile_id": "P17",
"age": 42,
"gender": "female",
"relationship": "seeker",
"traditions": [
"aboriginal",
"islamic"
],
"tradition_names": [
"Aboriginal teachings",
"Islam (Qur'an)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q040",
"quandary_theme": "judgment",
"motif": "relationships",
"quandary": "I keep judging someone harshly for choices I don't really understand. How do I tell the difference between moral clarity and plain prejudice?",
"expected_references": {
"aboriginal": [
"Kinship and skin systems",
"Obligations to Elders and kin"
],
"islamic": [
"Qur'an 17:23-24",
"Qur'an 31:14"
]
},
"expected_references_flat": [
"Kinship and skin systems",
"Obligations to Elders and kin",
"Qur'an 17:23-24",
"Qur'an 31:14"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T041",
"profile_id": "P11",
"age": 24,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"norse",
"teresan"
],
"tradition_names": [
"Norse (Prose Edda)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q041",
"quandary_theme": "vocation",
"motif": "duty",
"quandary": "I've been offered a prestigious, well-paid job that quietly conflicts with my deepest values. Do I take it and tell myself I'll do good from the inside, or walk away?",
"expected_references": {
"norse": [
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
],
"teresan": [
"Vocation of charity (Missionaries of Charity)",
"Wholehearted service"
]
},
"expected_references_flat": [
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51",
"Vocation of charity (Missionaries of Charity)",
"Wholehearted service"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T042",
"profile_id": "P21",
"age": 23,
"gender": "male",
"relationship": "novice",
"traditions": [
"taoist",
"gandhian"
],
"tradition_names": [
"Taoism (Tao Te Ching)",
"Gandhian thought"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q042",
"quandary_theme": "honesty",
"motif": "honesty",
"quandary": "Someone I love is dying and keeps asking me a question I could answer honestly or answer gently. Is a comforting half-truth ever the more loving choice?",
"expected_references": {
"taoist": [
"Tao Te Ching 81",
"Tao Te Ching 8"
],
"gandhian": [
"Satya (The Story of My Experiments with Truth)",
"Truth as God"
]
},
"expected_references_flat": [
"Tao Te Ching 81",
"Tao Te Ching 8",
"Satya (The Story of My Experiments with Truth)",
"Truth as God"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T043",
"profile_id": "P28",
"age": 22,
"gender": "male",
"relationship": "seeker",
"traditions": [
"gandhian",
"jewish"
],
"tradition_names": [
"Gandhian thought",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q043",
"quandary_theme": "responsibility",
"motif": "duty",
"quandary": "My work supports my family but I've come to believe it causes real harm in the world. How do I weigh providing for the people I love against the cost to others?",
"expected_references": {
"gandhian": [
"Anasakti Yoga (Gita According to Gandhi)",
"Swadharma and selfless action"
],
"jewish": [
"Pirkei Avot 2:16",
"Micah 6:8"
]
},
"expected_references_flat": [
"Anasakti Yoga (Gita According to Gandhi)",
"Swadharma and selfless action",
"Pirkei Avot 2:16",
"Micah 6:8"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T044",
"profile_id": "P25",
"age": 80,
"gender": "nonbinary",
"relationship": "seeker",
"traditions": [
"norse",
"buddhist"
],
"tradition_names": [
"Norse (Prose Edda)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q044",
"quandary_theme": "mercy",
"motif": "forgiveness",
"quandary": "A person who hurt my family years ago is now suffering and alone, and only I am in a position to help them. Does mercy ask me to, even when justice says they don't deserve it?",
"expected_references": {
"norse": [
"Havamal 43-46",
"Havamal 121-124"
],
"buddhist": [
"Dhammapada 3-5",
"Dhammapada 223"
]
},
"expected_references_flat": [
"Havamal 43-46",
"Havamal 121-124",
"Dhammapada 3-5",
"Dhammapada 223"
],
"thematic_reference_traditions": []
},
{
"case_id": "T045",
"profile_id": "P06",
"age": 87,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"taoist"
],
"tradition_names": [
"Taoism (Tao Te Ching)"
],
"tradition_type": "single",
"quandary_id": "Q045",
"quandary_theme": "work",
"motif": "duty",
"quandary": "I work for an organization whose values I've come to reject. Do I stay and try to change it from within, or is staying its own kind of compromise?",
"expected_references": {
"taoist": [
"Tao Te Ching 37",
"Tao Te Ching 2"
]
},
"expected_references_flat": [
"Tao Te Ching 37",
"Tao Te Ching 2"
],
"thematic_reference_traditions": []
},
{
"case_id": "T046",
"profile_id": "P16",
"age": 50,
"gender": "female",
"relationship": "seeker",
"traditions": [
"taoist",
"jewish"
],
"tradition_names": [
"Taoism (Tao Te Ching)",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q046",
"quandary_theme": "conscience",
"motif": "duty",
"quandary": "I've discovered serious wrongdoing where I work. Reporting it could end careers, maybe my own. Is speaking up an act of integrity or just self-destruction?",
"expected_references": {
"taoist": [
"Tao Te Ching 37",
"Tao Te Ching 2"
],
"jewish": [
"Pirkei Avot 2:16",
"Micah 6:8"
]
},
"expected_references_flat": [
"Tao Te Ching 37",
"Tao Te Ching 2",
"Pirkei Avot 2:16",
"Micah 6:8"
],
"thematic_reference_traditions": []
},
{
"case_id": "T047",
"profile_id": "P01",
"age": 92,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"hindu"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)"
],
"tradition_type": "single",
"quandary_id": "Q047",
"quandary_theme": "wealth",
"motif": "desire",
"quandary": "I have more than I need while others go without. How much of what I've earned am I actually obligated to give away?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.62-63",
"Bhagavad Gita 2.55-57"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.62-63",
"Bhagavad Gita 2.55-57"
],
"thematic_reference_traditions": []
},
{
"case_id": "T048",
"profile_id": "P26",
"age": 84,
"gender": "female",
"relationship": "disciple",
"traditions": [
"christian",
"taoist"
],
"tradition_names": [
"Christianity (Bible)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q048",
"quandary_theme": "charity",
"motif": "compassion",
"quandary": "Day after day I pass someone asking for help, and I never know whether stopping helps or just eases my own conscience. What does real charity ask of me here?",
"expected_references": {
"christian": [
"Luke 10:25-37",
"Matthew 25:35-40"
],
"taoist": [
"Tao Te Ching 67",
"Tao Te Ching 8"
]
},
"expected_references_flat": [
"Luke 10:25-37",
"Matthew 25:35-40",
"Tao Te Ching 67",
"Tao Te Ching 8"
],
"thematic_reference_traditions": []
},
{
"case_id": "T049",
"profile_id": "P11",
"age": 24,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"norse",
"teresan"
],
"tradition_names": [
"Norse (Prose Edda)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q049",
"quandary_theme": "compassion",
"motif": "compassion",
"quandary": "Someone I love is caught in addiction. I can't tell anymore where support ends and enabling begins. How do I love them without losing myself?",
"expected_references": {
"norse": [
"Havamal 3-4",
"Havamal 135"
],
"teresan": [
"Love in action (Nobel Lecture, 1979)",
"Care for the dying and destitute"
]
},
"expected_references_flat": [
"Havamal 3-4",
"Havamal 135",
"Love in action (Nobel Lecture, 1979)",
"Care for the dying and destitute"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T050",
"profile_id": "P20",
"age": 100,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"hindu",
"teresan"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q050",
"quandary_theme": "autonomy",
"motif": "identity",
"quandary": "Someone I love wants to refuse further treatment and let their suffering end. Everything in me wants them to fight. Do I honor their wishes or my own grief?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.20",
"Bhagavad Gita 18.63"
],
"teresan": [
"Serving Christ in the distressing disguise of the poor",
"Vocation of charity"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.20",
"Bhagavad Gita 18.63",
"Serving Christ in the distressing disguise of the poor",
"Vocation of charity"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T051",
"profile_id": "P30",
"age": 91,
"gender": "male",
"relationship": "seeker",
"traditions": [
"teresan",
"jewish"
],
"tradition_names": [
"Missionaries of Charity (Mother Teresa)",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q051",
"quandary_theme": "forgiveness",
"motif": "forgiveness",
"quandary": "I'm wrestling with whether to forgive a parent who hurt me. They may never change. Could forgiving them be less about them and more about my own freedom?",
"expected_references": {
"teresan": [
"Works of mercy (Missionaries of Charity)",
"Nobel Lecture (1979)"
],
"jewish": [
"Talmud, Yoma 87a",
"Leviticus 19:18"
]
},
"expected_references_flat": [
"Works of mercy (Missionaries of Charity)",
"Nobel Lecture (1979)",
"Talmud, Yoma 87a",
"Leviticus 19:18"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T052",
"profile_id": "P02",
"age": 43,
"gender": "transgender",
"relationship": "seeker",
"traditions": [
"jewish"
],
"tradition_names": [
"Judaism (Talmud)"
],
"tradition_type": "single",
"quandary_id": "Q052",
"quandary_theme": "parenting",
"motif": "relationships",
"quandary": "There are painful truths about the world, and about our family, that a child in my care will eventually face. How honest should I be, and when?",
"expected_references": {
"jewish": [
"Ruth 1:16-17",
"Exodus 20:12"
]
},
"expected_references_flat": [
"Ruth 1:16-17",
"Exodus 20:12"
],
"thematic_reference_traditions": []
},
{
"case_id": "T053",
"profile_id": "P09",
"age": 68,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"gandhian"
],
"tradition_names": [
"Gandhian thought"
],
"tradition_type": "single",
"quandary_id": "Q053",
"quandary_theme": "trust",
"motif": "relationships",
"quandary": "I'm responsible for someone and I could watch over them closely or give them room to make their own mistakes. Where's the line between care and control?",
"expected_references": {
"gandhian": [
"Brahmacharya and family (autobiography)",
"Sarvodaya community"
]
},
"expected_references_flat": [
"Brahmacharya and family (autobiography)",
"Sarvodaya community"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T054",
"profile_id": "P21",
"age": 23,
"gender": "male",
"relationship": "novice",
"traditions": [
"taoist",
"gandhian"
],
"tradition_names": [
"Taoism (Tao Te Ching)",
"Gandhian thought"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q054",
"quandary_theme": "marriage",
"motif": "relationships",
"quandary": "A bond that once meant everything has grown hollow. Do I stay out of duty and the promise I made, or leave in honesty about what's gone?",
"expected_references": {
"taoist": [
"Tao Te Ching 54",
"Tao Te Ching 18-19"
],
"gandhian": [
"Brahmacharya and family (autobiography)",
"Sarvodaya community"
]
},
"expected_references_flat": [
"Tao Te Ching 54",
"Tao Te Ching 18-19",
"Brahmacharya and family (autobiography)",
"Sarvodaya community"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T055",
"profile_id": "P22",
"age": 58,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"christian",
"buddhist"
],
"tradition_names": [
"Christianity (Bible)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q055",
"quandary_theme": "conscience",
"motif": "duty",
"quandary": "I've been asked to carry out a policy I believe is unethical. Do I follow the role I agreed to, or refuse and accept the fallout?",
"expected_references": {
"christian": [
"Colossians 3:23",
"Luke 9:62"
],
"buddhist": [
"Dhammapada 166",
"Dhammapada 276"
]
},
"expected_references_flat": [
"Colossians 3:23",
"Luke 9:62",
"Dhammapada 166",
"Dhammapada 276"
],
"thematic_reference_traditions": []
},
{
"case_id": "T056",
"profile_id": "P08",
"age": 59,
"gender": "transgender",
"relationship": "novice",
"traditions": [
"aboriginal"
],
"tradition_names": [
"Aboriginal teachings"
],
"tradition_type": "single",
"quandary_id": "Q056",
"quandary_theme": "truth",
"motif": "honesty",
"quandary": "I've learned something damning about a person I deeply admired. Exposing it would shatter how others see them. Do they deserve that, and do the others deserve to know?",
"expected_references": {
"aboriginal": [
"Truth-telling within kinship",
"The Dreaming (Tjukurpa)"
]
},
"expected_references_flat": [
"Truth-telling within kinship",
"The Dreaming (Tjukurpa)"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T057",
"profile_id": "P05",
"age": 108,
"gender": "male",
"relationship": "novice",
"traditions": [
"christian"
],
"tradition_names": [
"Christianity (Bible)"
],
"tradition_type": "single",
"quandary_id": "Q057",
"quandary_theme": "service",
"motif": "compassion",
"quandary": "I feel pulled to give myself to others, yet my own life feels unfinished and unsteady. Do I have to have my house in order before I can serve?",
"expected_references": {
"christian": [
"Luke 10:25-37",
"Matthew 25:35-40"
]
},
"expected_references_flat": [
"Luke 10:25-37",
"Matthew 25:35-40"
],
"thematic_reference_traditions": []
},
{
"case_id": "T058",
"profile_id": "P12",
"age": 83,
"gender": "nonbinary",
"relationship": "novice",
"traditions": [
"islamic",
"taoist"
],
"tradition_names": [
"Islam (Qur'an)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q058",
"quandary_theme": "stewardship",
"motif": "compassion",
"quandary": "My everyday habits quietly harm the earth, and changing them would cost me real comfort and money. How much am I obligated to sacrifice for something so diffuse?",
"expected_references": {
"islamic": [
"Qur'an 2:177",
"Qur'an 76:8-9"
],
"taoist": [
"Tao Te Ching 67",
"Tao Te Ching 8"
]
},
"expected_references_flat": [
"Qur'an 2:177",
"Qur'an 76:8-9",
"Tao Te Ching 67",
"Tao Te Ching 8"
],
"thematic_reference_traditions": []
},
{
"case_id": "T059",
"profile_id": "P07",
"age": 102,
"gender": "nonbinary",
"relationship": "disciple",
"traditions": [
"norse"
],
"tradition_names": [
"Norse (Prose Edda)"
],
"tradition_type": "single",
"quandary_id": "Q059",
"quandary_theme": "conviction",
"motif": "duty",
"quandary": "I keep wondering whether it's right for me to consume and use animals the way I do, given what I claim to believe about compassion. Am I living honestly?",
"expected_references": {
"norse": [
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
]
},
"expected_references_flat": [
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
],
"thematic_reference_traditions": []
},
{
"case_id": "T060",
"profile_id": "P28",
"age": 22,
"gender": "male",
"relationship": "seeker",
"traditions": [
"gandhian",
"jewish"
],
"tradition_names": [
"Gandhian thought",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q060",
"quandary_theme": "ambition",
"motif": "desire",
"quandary": "I'm chasing a kind of success that everyone admires, but I'm no longer sure my soul actually wants it. How do I tell the difference between calling and conditioning?",
"expected_references": {
"gandhian": [
"Aparigraha (non-possession)",
"Voluntary simplicity (Experiments with Truth)"
],
"jewish": [
"Pirkei Avot 4:1",
"Ecclesiastes 5:9-10"
]
},
"expected_references_flat": [
"Aparigraha (non-possession)",
"Voluntary simplicity (Experiments with Truth)",
"Pirkei Avot 4:1",
"Ecclesiastes 5:9-10"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T061",
"profile_id": "P29",
"age": 82,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"buddhist",
"aboriginal"
],
"tradition_names": [
"Buddhism (Dharma)",
"Aboriginal teachings"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q061",
"quandary_theme": "loyalty",
"motif": "relationships",
"quandary": "A close friend did something seriously wrong. Standing by them feels like loyalty; it also feels like condoning it. What does true friendship ask of me now?",
"expected_references": {
"buddhist": [
"Sigalovada Sutta (DN 31)",
"Dhammapada 197-199"
],
"aboriginal": [
"Kinship and skin systems",
"Obligations to Elders and kin"
]
},
"expected_references_flat": [
"Sigalovada Sutta (DN 31)",
"Dhammapada 197-199",
"Kinship and skin systems",
"Obligations to Elders and kin"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T062",
"profile_id": "P14",
"age": 50,
"gender": "male",
"relationship": "disciple",
"traditions": [
"jewish",
"buddhist"
],
"tradition_names": [
"Judaism (Talmud)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q062",
"quandary_theme": "integrity",
"motif": "honesty",
"quandary": "There's a chance to bend one rule to bring about a clearly good outcome. Do the ends justify it, or does breaking faith with the rule cost more than it's worth?",
"expected_references": {
"jewish": [
"Talmud, Shabbat 31a",
"Leviticus 19:11"
],
"buddhist": [
"Dhammapada 224",
"Dhammapada 408"
]
},
"expected_references_flat": [
"Talmud, Shabbat 31a",
"Leviticus 19:11",
"Dhammapada 224",
"Dhammapada 408"
],
"thematic_reference_traditions": []
},
{
"case_id": "T063",
"profile_id": "P17",
"age": 42,
"gender": "female",
"relationship": "seeker",
"traditions": [
"aboriginal",
"islamic"
],
"tradition_names": [
"Aboriginal teachings",
"Islam (Qur'an)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q063",
"quandary_theme": "justice",
"motif": "justice",
"quandary": "I could pursue justice against someone who wronged me, but doing so would also harm people who are innocent. How do I weigh being made right against the harm it spreads?",
"expected_references": {
"aboriginal": [
"Customary law (the Dreaming)",
"Reciprocity and obligation"
],
"islamic": [
"Qur'an 4:135",
"Qur'an 16:90"
]
},
"expected_references_flat": [
"Customary law (the Dreaming)",
"Reciprocity and obligation",
"Qur'an 4:135",
"Qur'an 16:90"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T064",
"profile_id": "P15",
"age": 30,
"gender": "female",
"relationship": "novice",
"traditions": [
"christian",
"norse"
],
"tradition_names": [
"Christianity (Bible)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q064",
"quandary_theme": "honesty",
"motif": "honesty",
"quandary": "Keeping a particular secret protects me but quietly wrongs someone else. Is my silence self-preservation, or is it a betrayal I'm dressing up as discretion?",
"expected_references": {
"christian": [
"Ephesians 4:25",
"Proverbs 12:22"
],
"norse": [
"Havamal 124-125",
"Havamal 46"
]
},
"expected_references_flat": [
"Ephesians 4:25",
"Proverbs 12:22",
"Havamal 124-125",
"Havamal 46"
],
"thematic_reference_traditions": []
},
{
"case_id": "T065",
"profile_id": "P23",
"age": 87,
"gender": "transgender",
"relationship": "seeker",
"traditions": [
"islamic",
"norse"
],
"tradition_names": [
"Islam (Qur'an)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q065",
"quandary_theme": "pride",
"motif": "humility",
"quandary": "I'd have to admit publicly that I was wrong, and it would cost me standing I've worked hard for. Is swallowing my pride humility, or just humiliation?",
"expected_references": {
"islamic": [
"Qur'an 31:18",
"Qur'an 25:63"
],
"norse": [
"Havamal 6",
"Havamal 27"
]
},
"expected_references_flat": [
"Qur'an 31:18",
"Qur'an 25:63",
"Havamal 6",
"Havamal 27"
],
"thematic_reference_traditions": []
},
{
"case_id": "T066",
"profile_id": "P19",
"age": 106,
"gender": "female",
"relationship": "novice",
"traditions": [
"gandhian",
"norse"
],
"tradition_names": [
"Gandhian thought",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q066",
"quandary_theme": "sacrifice",
"motif": "compassion",
"quandary": "I could give up something I love for someone who needs it more than I do. Nothing requires it of me. When does generosity become genuine sacrifice?",
"expected_references": {
"gandhian": [
"Sarvodaya (welfare of all)",
"Daridranarayana (service to the poor)"
],
"norse": [
"Havamal 3-4",
"Havamal 135"
]
},
"expected_references_flat": [
"Sarvodaya (welfare of all)",
"Daridranarayana (service to the poor)",
"Havamal 3-4",
"Havamal 135"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T067",
"profile_id": "P27",
"age": 48,
"gender": "female",
"relationship": "novice",
"traditions": [
"hindu",
"taoist"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q067",
"quandary_theme": "boundaries",
"motif": "relationships",
"quandary": "A relative leans on me so heavily that it's draining me. Stepping back feels selfish, but staying is wearing me down. Is a boundary a failure of love?",
"expected_references": {
"hindu": [
"Bhagavad Gita 1.28-37",
"Bhagavad Gita 6.5-6"
],
"taoist": [
"Tao Te Ching 54",
"Tao Te Ching 18-19"
]
},
"expected_references_flat": [
"Bhagavad Gita 1.28-37",
"Bhagavad Gita 6.5-6",
"Tao Te Ching 54",
"Tao Te Ching 18-19"
],
"thematic_reference_traditions": []
},
{
"case_id": "T068",
"profile_id": "P18",
"age": 46,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"buddhist",
"teresan"
],
"tradition_names": [
"Buddhism (Dharma)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q068",
"quandary_theme": "fairness",
"motif": "justice",
"quandary": "I've benefited from advantages others around me never had. I didn't choose them, but I did keep them. What, in justice, do I owe?",
"expected_references": {
"buddhist": [
"Dhammapada 201",
"Dhammapada 103-105"
],
"teresan": [
"Service to the poorest of the poor",
"Nobel Lecture (1979)"
]
},
"expected_references_flat": [
"Dhammapada 201",
"Dhammapada 103-105",
"Service to the poorest of the poor",
"Nobel Lecture (1979)"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T069",
"profile_id": "P10",
"age": 45,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"teresan"
],
"tradition_names": [
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "single",
"quandary_id": "Q069",
"quandary_theme": "revenge",
"motif": "justice",
"quandary": "Everyone tells me I'm owed payback for what was done to me. Letting it go feels like weakness. Is releasing the debt strength or surrender?",
"expected_references": {
"teresan": [
"Service to the poorest of the poor",
"Nobel Lecture (1979)"
]
},
"expected_references_flat": [
"Service to the poorest of the poor",
"Nobel Lecture (1979)"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T070",
"profile_id": "P13",
"age": 35,
"gender": "transgender",
"relationship": "practitioner",
"traditions": [
"hindu",
"norse"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q070",
"quandary_theme": "doubt",
"motif": "identity",
"quandary": "My prayers and practice have started to feel empty, like going through the motions. Do I keep showing up in hope it returns, or is that just self-deception?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.20",
"Bhagavad Gita 18.63"
],
"norse": [
"Havamal 27-28",
"Havamal 57"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.20",
"Bhagavad Gita 18.63",
"Havamal 27-28",
"Havamal 57"
],
"thematic_reference_traditions": []
},
{
"case_id": "T071",
"profile_id": "P24",
"age": 94,
"gender": "female",
"relationship": "seeker",
"traditions": [
"jewish",
"aboriginal"
],
"tradition_names": [
"Judaism (Talmud)",
"Aboriginal teachings"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q071",
"quandary_theme": "trust",
"motif": "relationships",
"quandary": "Someone betrayed me once and now wants back in. Trusting again could be foolish — or it could be grace. How do I know which?",
"expected_references": {
"jewish": [
"Ruth 1:16-17",
"Exodus 20:12"
],
"aboriginal": [
"Kinship and skin systems",
"Obligations to Elders and kin"
]
},
"expected_references_flat": [
"Ruth 1:16-17",
"Exodus 20:12",
"Kinship and skin systems",
"Obligations to Elders and kin"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T072",
"profile_id": "P25",
"age": 80,
"gender": "nonbinary",
"relationship": "seeker",
"traditions": [
"norse",
"buddhist"
],
"tradition_names": [
"Norse (Prose Edda)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q072",
"quandary_theme": "displacement",
"motif": "relationships",
"quandary": "I feel torn between the needs of my own community and the needs of a stranger from far away. Is it wrong to put my own people first?",
"expected_references": {
"norse": [
"Havamal 43-44",
"Havamal 119"
],
"buddhist": [
"Sigalovada Sutta (DN 31)",
"Dhammapada 197-199"
]
},
"expected_references_flat": [
"Havamal 43-44",
"Havamal 119",
"Sigalovada Sutta (DN 31)",
"Dhammapada 197-199"
],
"thematic_reference_traditions": []
},
{
"case_id": "T073",
"profile_id": "P06",
"age": 87,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"taoist"
],
"tradition_names": [
"Taoism (Tao Te Ching)"
],
"tradition_type": "single",
"quandary_id": "Q073",
"quandary_theme": "windfall",
"motif": "desire",
"quandary": "Money has come to me, but it traces back to something I find questionable. Keeping it would help my family. Does where it came from stain what I'd do with it?",
"expected_references": {
"taoist": [
"Tao Te Ching 44",
"Tao Te Ching 46"
]
},
"expected_references_flat": [
"Tao Te Ching 44",
"Tao Te Ching 46"
],
"thematic_reference_traditions": []
},
{
"case_id": "T074",
"profile_id": "P16",
"age": 50,
"gender": "female",
"relationship": "seeker",
"traditions": [
"taoist",
"jewish"
],
"tradition_names": [
"Taoism (Tao Te Ching)",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q074",
"quandary_theme": "gossip",
"motif": "honesty",
"quandary": "I know of someone's serious failing. Speaking up might warn others who could be hurt, but it would also expose and shame them. Where does the duty lie?",
"expected_references": {
"taoist": [
"Tao Te Ching 81",
"Tao Te Ching 8"
],
"jewish": [
"Talmud, Shabbat 31a",
"Leviticus 19:11"
]
},
"expected_references_flat": [
"Tao Te Ching 81",
"Tao Te Ching 8",
"Talmud, Shabbat 31a",
"Leviticus 19:11"
],
"thematic_reference_traditions": []
},
{
"case_id": "T075",
"profile_id": "P01",
"age": 92,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"hindu"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)"
],
"tradition_type": "single",
"quandary_id": "Q075",
"quandary_theme": "humility",
"motif": "humility",
"quandary": "I've always been the one who gives and provides, and now I'm the one who needs help. Accepting it feels like failure. Why is receiving so much harder than giving?",
"expected_references": {
"hindu": [
"Bhagavad Gita 13.7-11",
"Bhagavad Gita 16.1-3"
]
},
"expected_references_flat": [
"Bhagavad Gita 13.7-11",
"Bhagavad Gita 16.1-3"
],
"thematic_reference_traditions": []
},
{
"case_id": "T076",
"profile_id": "P26",
"age": 84,
"gender": "female",
"relationship": "disciple",
"traditions": [
"christian",
"taoist"
],
"tradition_names": [
"Christianity (Bible)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q076",
"quandary_theme": "temptation",
"motif": "desire",
"quandary": "There's a real chance to get ahead by quietly compromising a principle I hold. No one would know but me. Is a private compromise still a compromise?",
"expected_references": {
"christian": [
"Matthew 6:19-21",
"1 Timothy 6:6-10"
],
"taoist": [
"Tao Te Ching 44",
"Tao Te Ching 46"
]
},
"expected_references_flat": [
"Matthew 6:19-21",
"1 Timothy 6:6-10",
"Tao Te Ching 44",
"Tao Te Ching 46"
],
"thematic_reference_traditions": []
},
{
"case_id": "T077",
"profile_id": "P11",
"age": 24,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"norse",
"teresan"
],
"tradition_names": [
"Norse (Prose Edda)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q077",
"quandary_theme": "reconciliation",
"motif": "forgiveness",
"quandary": "I could make the first move toward someone who wronged me and never apologized. Why should I be the one to bend — and would doing so free me or diminish me?",
"expected_references": {
"norse": [
"Havamal 43-46",
"Havamal 121-124"
],
"teresan": [
"Works of mercy (Missionaries of Charity)",
"Nobel Lecture (1979)"
]
},
"expected_references_flat": [
"Havamal 43-46",
"Havamal 121-124",
"Works of mercy (Missionaries of Charity)",
"Nobel Lecture (1979)"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T078",
"profile_id": "P10",
"age": 45,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"teresan"
],
"tradition_names": [
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "single",
"quandary_id": "Q078",
"quandary_theme": "duty",
"motif": "duty",
"quandary": "I'm pulled between caring for an aging parent and a calling I feel I'm meant to pursue. Both feel like sacred duties and I cannot do both fully. How do I choose?",
"expected_references": {
"teresan": [
"Vocation of charity (Missionaries of Charity)",
"Wholehearted service"
]
},
"expected_references_flat": [
"Vocation of charity (Missionaries of Charity)",
"Wholehearted service"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T079",
"profile_id": "P13",
"age": 35,
"gender": "transgender",
"relationship": "practitioner",
"traditions": [
"hindu",
"norse"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q079",
"quandary_theme": "vocation",
"motif": "duty",
"quandary": "I could leave a stable, secure life for uncertain work that feels far more meaningful. Is choosing meaning over security brave or just reckless?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.47",
"Bhagavad Gita 3.19-21"
],
"norse": [
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.47",
"Bhagavad Gita 3.19-21",
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
],
"thematic_reference_traditions": []
},
{
"case_id": "T080",
"profile_id": "P24",
"age": 94,
"gender": "female",
"relationship": "seeker",
"traditions": [
"jewish",
"aboriginal"
],
"tradition_names": [
"Judaism (Talmud)",
"Aboriginal teachings"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q080",
"quandary_theme": "marriage",
"motif": "relationships",
"quandary": "I'm being asked to commit fully to someone despite real doubts I can't quite name. Do I trust the doubts or trust the love?",
"expected_references": {
"jewish": [
"Ruth 1:16-17",
"Exodus 20:12"
],
"aboriginal": [
"Kinship and skin systems",
"Obligations to Elders and kin"
]
},
"expected_references_flat": [
"Ruth 1:16-17",
"Exodus 20:12",
"Kinship and skin systems",
"Obligations to Elders and kin"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T081",
"profile_id": "P18",
"age": 46,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"buddhist",
"teresan"
],
"tradition_names": [
"Buddhism (Dharma)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q081",
"quandary_theme": "parenting",
"motif": "relationships",
"quandary": "I want to raise my child within my own tradition, but I also want them to choose freely. Is passing on my faith a gift or an imposition?",
"expected_references": {
"buddhist": [
"Sigalovada Sutta (DN 31)",
"Dhammapada 197-199"
],
"teresan": [
"Love begins at home",
"Tenderness toward the unwanted"
]
},
"expected_references_flat": [
"Sigalovada Sutta (DN 31)",
"Dhammapada 197-199",
"Love begins at home",
"Tenderness toward the unwanted"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T082",
"profile_id": "P15",
"age": 30,
"gender": "female",
"relationship": "novice",
"traditions": [
"christian",
"norse"
],
"tradition_names": [
"Christianity (Bible)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q082",
"quandary_theme": "vocation",
"motif": "duty",
"quandary": "I've spent years building something I no longer believe in. Walking away would waste all of it and disrupt people who depend on me. Is it ever too late to change course honestly?",
"expected_references": {
"christian": [
"Colossians 3:23",
"Luke 9:62"
],
"norse": [
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
]
},
"expected_references_flat": [
"Colossians 3:23",
"Luke 9:62",
"Havamal 76-77",
"Gylfaginning (Prose Edda) 51"
],
"thematic_reference_traditions": []
},
{
"case_id": "T083",
"profile_id": "P19",
"age": 106,
"gender": "female",
"relationship": "novice",
"traditions": [
"gandhian",
"norse"
],
"tradition_names": [
"Gandhian thought",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q083",
"quandary_theme": "reconciliation",
"motif": "forgiveness",
"quandary": "A sibling and I haven't spoken in years, and the silence has hardened into habit. Someone has to bend first. Why shouldn't it be me?",
"expected_references": {
"gandhian": [
"Ahimsa (Hind Swaraj)",
"Forgiveness as the attribute of the strong"
],
"norse": [
"Havamal 43-46",
"Havamal 121-124"
]
},
"expected_references_flat": [
"Ahimsa (Hind Swaraj)",
"Forgiveness as the attribute of the strong",
"Havamal 43-46",
"Havamal 121-124"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T084",
"profile_id": "P27",
"age": 48,
"gender": "female",
"relationship": "novice",
"traditions": [
"hindu",
"taoist"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q084",
"quandary_theme": "legacy",
"motif": "identity",
"quandary": "I've reached a point where I'm asking what I actually want to have stood for — and whether the way I'm living now reflects it at all. Where do I even begin?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.20",
"Bhagavad Gita 18.63"
],
"taoist": [
"Tao Te Ching 71",
"Tao Te Ching 33"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.20",
"Bhagavad Gita 18.63",
"Tao Te Ching 71",
"Tao Te Ching 33"
],
"thematic_reference_traditions": []
},
{
"case_id": "T085",
"profile_id": "P14",
"age": 50,
"gender": "male",
"relationship": "disciple",
"traditions": [
"jewish",
"buddhist"
],
"tradition_names": [
"Judaism (Talmud)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q085",
"quandary_theme": "forgiveness",
"motif": "forgiveness",
"quandary": "I've carried resentment toward someone for most of my adult life, and they will never apologize. They may never even know. Can I let it go for my own sake without it being a kind of surrender?",
"expected_references": {
"jewish": [
"Talmud, Yoma 87a",
"Leviticus 19:18"
],
"buddhist": [
"Dhammapada 3-5",
"Dhammapada 223"
]
},
"expected_references_flat": [
"Talmud, Yoma 87a",
"Leviticus 19:18",
"Dhammapada 3-5",
"Dhammapada 223"
],
"thematic_reference_traditions": []
},
{
"case_id": "T086",
"profile_id": "P17",
"age": 42,
"gender": "female",
"relationship": "seeker",
"traditions": [
"aboriginal",
"islamic"
],
"tradition_names": [
"Aboriginal teachings",
"Islam (Qur'an)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q086",
"quandary_theme": "betrayal",
"motif": "forgiveness",
"quandary": "A partner was unfaithful, and I'm torn between the work of rebuilding and the dignity of leaving. How do I tell whether staying is love or fear?",
"expected_references": {
"aboriginal": [
"Kinship law and restitution",
"Reciprocity and care for Country"
],
"islamic": [
"Qur'an 24:22",
"Qur'an 42:40"
]
},
"expected_references_flat": [
"Kinship law and restitution",
"Reciprocity and care for Country",
"Qur'an 24:22",
"Qur'an 42:40"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T087",
"profile_id": "P23",
"age": 87,
"gender": "transgender",
"relationship": "seeker",
"traditions": [
"islamic",
"norse"
],
"tradition_names": [
"Islam (Qur'an)",
"Norse (Prose Edda)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q087",
"quandary_theme": "ambition",
"motif": "desire",
"quandary": "Success came, but it cost me the people I love. Now I have what I chased and not who I cherished. How do I reorder a life I built backwards?",
"expected_references": {
"islamic": [
"Qur'an 57:20",
"Qur'an 89:27-30"
],
"norse": [
"Havamal 10-11",
"Havamal 75"
]
},
"expected_references_flat": [
"Qur'an 57:20",
"Qur'an 89:27-30",
"Havamal 10-11",
"Havamal 75"
],
"thematic_reference_traditions": []
},
{
"case_id": "T088",
"profile_id": "P02",
"age": 43,
"gender": "transgender",
"relationship": "seeker",
"traditions": [
"jewish"
],
"tradition_names": [
"Judaism (Talmud)"
],
"tradition_type": "single",
"quandary_id": "Q088",
"quandary_theme": "grief",
"motif": "grief",
"quandary": "Someone central to my life is gone, and the faith that used to comfort me now feels hollow. Is doubt a betrayal of my tradition, or part of it?",
"expected_references": {
"jewish": [
"Job 1:21",
"Psalm 23"
]
},
"expected_references_flat": [
"Job 1:21",
"Psalm 23"
],
"thematic_reference_traditions": []
},
{
"case_id": "T089",
"profile_id": "P07",
"age": 102,
"gender": "nonbinary",
"relationship": "disciple",
"traditions": [
"norse"
],
"tradition_names": [
"Norse (Prose Edda)"
],
"tradition_type": "single",
"quandary_id": "Q089",
"quandary_theme": "mortality",
"motif": "grief",
"quandary": "I'm beginning to feel my own decline, and I keep counting the things I never did. How do I make peace with a life that's more behind me than ahead?",
"expected_references": {
"norse": [
"Havamal 70-71",
"Havamal 76-77"
]
},
"expected_references_flat": [
"Havamal 70-71",
"Havamal 76-77"
],
"thematic_reference_traditions": []
},
{
"case_id": "T090",
"profile_id": "P29",
"age": 82,
"gender": "male",
"relationship": "practitioner",
"traditions": [
"buddhist",
"aboriginal"
],
"tradition_names": [
"Buddhism (Dharma)",
"Aboriginal teachings"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q090",
"quandary_theme": "estrangement",
"motif": "grief",
"quandary": "An adult child has cut me off, and I don't fully understand why. Do I keep reaching out and risk more rejection, or honor the distance they've asked for?",
"expected_references": {
"buddhist": [
"Dhammapada 277-279",
"Dhammapada 287"
],
"aboriginal": [
"Sorry business and mourning law",
"Connection to ancestors and Country"
]
},
"expected_references_flat": [
"Dhammapada 277-279",
"Dhammapada 287",
"Sorry business and mourning law",
"Connection to ancestors and Country"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T091",
"profile_id": "P05",
"age": 108,
"gender": "male",
"relationship": "novice",
"traditions": [
"christian"
],
"tradition_names": [
"Christianity (Bible)"
],
"tradition_type": "single",
"quandary_id": "Q091",
"quandary_theme": "regret",
"motif": "forgiveness",
"quandary": "A choice I made decades ago still haunts me. I've changed since, but the harm was real. How do I forgive myself for something I can't undo?",
"expected_references": {
"christian": [
"Matthew 18:21-22",
"Colossians 3:13"
]
},
"expected_references_flat": [
"Matthew 18:21-22",
"Colossians 3:13"
],
"thematic_reference_traditions": []
},
{
"case_id": "T092",
"profile_id": "P12",
"age": 83,
"gender": "nonbinary",
"relationship": "novice",
"traditions": [
"islamic",
"taoist"
],
"tradition_names": [
"Islam (Qur'an)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q092",
"quandary_theme": "caregiving",
"motif": "compassion",
"quandary": "Caring for a dying spouse is slowly breaking me, and I feel guilty even admitting it. Is it a betrayal of love to say I need help?",
"expected_references": {
"islamic": [
"Qur'an 2:177",
"Qur'an 76:8-9"
],
"taoist": [
"Tao Te Ching 67",
"Tao Te Ching 8"
]
},
"expected_references_flat": [
"Qur'an 2:177",
"Qur'an 76:8-9",
"Tao Te Ching 67",
"Tao Te Ching 8"
],
"thematic_reference_traditions": []
},
{
"case_id": "T093",
"profile_id": "P16",
"age": 50,
"gender": "female",
"relationship": "seeker",
"traditions": [
"taoist",
"jewish"
],
"tradition_names": [
"Taoism (Tao Te Ching)",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q093",
"quandary_theme": "legacy",
"motif": "identity",
"quandary": "Looking back, I made a serious choice that hurt people, and I've changed since. Can a person who did real wrong still be considered good, and how do I make peace with my past?",
"expected_references": {
"taoist": [
"Tao Te Ching 71",
"Tao Te Ching 33"
],
"jewish": [
"Genesis 32:24-30",
"Pirkei Avot 2:5"
]
},
"expected_references_flat": [
"Tao Te Ching 71",
"Tao Te Ching 33",
"Genesis 32:24-30",
"Pirkei Avot 2:5"
],
"thematic_reference_traditions": []
},
{
"case_id": "T094",
"profile_id": "P08",
"age": 59,
"gender": "transgender",
"relationship": "novice",
"traditions": [
"aboriginal"
],
"tradition_names": [
"Aboriginal teachings"
],
"tradition_type": "single",
"quandary_id": "Q094",
"quandary_theme": "fairness",
"motif": "justice",
"quandary": "I have to divide what I've built among people who will each feel it's unfair. There may be no truly even answer. How do I act justly when someone will be hurt either way?",
"expected_references": {
"aboriginal": [
"Customary law (the Dreaming)",
"Reciprocity and obligation"
]
},
"expected_references_flat": [
"Customary law (the Dreaming)",
"Reciprocity and obligation"
],
"thematic_reference_traditions": [
"aboriginal"
]
},
{
"case_id": "T095",
"profile_id": "P09",
"age": 68,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"gandhian"
],
"tradition_names": [
"Gandhian thought"
],
"tradition_type": "single",
"quandary_id": "Q095",
"quandary_theme": "meaning",
"motif": "identity",
"quandary": "The work that gave my days their shape is over, and my sense of purpose left with it. Who am I now, and how do I begin again?",
"expected_references": {
"gandhian": [
"Conscience over authority (Hind Swaraj)",
"Inner voice / antaryamin"
]
},
"expected_references_flat": [
"Conscience over authority (Hind Swaraj)",
"Inner voice / antaryamin"
],
"thematic_reference_traditions": [
"gandhian"
]
},
{
"case_id": "T096",
"profile_id": "P22",
"age": 58,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"christian",
"buddhist"
],
"tradition_names": [
"Christianity (Bible)",
"Buddhism (Dharma)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q096",
"quandary_theme": "repentance",
"motif": "forgiveness",
"quandary": "I want to make amends to someone I wronged long ago, but reopening it might serve me more than them. Do I have the right to seek peace at their expense?",
"expected_references": {
"christian": [
"Matthew 18:21-22",
"Colossians 3:13"
],
"buddhist": [
"Dhammapada 3-5",
"Dhammapada 223"
]
},
"expected_references_flat": [
"Matthew 18:21-22",
"Colossians 3:13",
"Dhammapada 3-5",
"Dhammapada 223"
],
"thematic_reference_traditions": []
},
{
"case_id": "T097",
"profile_id": "P20",
"age": 100,
"gender": "nonbinary",
"relationship": "practitioner",
"traditions": [
"hindu",
"teresan"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)",
"Missionaries of Charity (Mother Teresa)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q097",
"quandary_theme": "mortality",
"motif": "grief",
"quandary": "I want to face my own death without fear, but I don't know how. What does my tradition ask of me in meeting the end with grace?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.13",
"Bhagavad Gita 2.22-27"
],
"teresan": [
"Accompanying the dying (Nirmal Hriday)",
"Consolation in suffering"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.13",
"Bhagavad Gita 2.22-27",
"Accompanying the dying (Nirmal Hriday)",
"Consolation in suffering"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T098",
"profile_id": "P30",
"age": 91,
"gender": "male",
"relationship": "seeker",
"traditions": [
"teresan",
"jewish"
],
"tradition_names": [
"Missionaries of Charity (Mother Teresa)",
"Judaism (Talmud)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q098",
"quandary_theme": "wisdom",
"motif": "identity",
"quandary": "I've learned hard lessons I could pass on, but unasked-for advice often does more harm than good. When do I speak, and when do I hold my peace?",
"expected_references": {
"teresan": [
"Serving Christ in the distressing disguise of the poor",
"Vocation of charity"
],
"jewish": [
"Genesis 32:24-30",
"Pirkei Avot 2:5"
]
},
"expected_references_flat": [
"Serving Christ in the distressing disguise of the poor",
"Vocation of charity",
"Genesis 32:24-30",
"Pirkei Avot 2:5"
],
"thematic_reference_traditions": [
"teresan"
]
},
{
"case_id": "T099",
"profile_id": "P26",
"age": 84,
"gender": "female",
"relationship": "disciple",
"traditions": [
"christian",
"taoist"
],
"tradition_names": [
"Christianity (Bible)",
"Taoism (Tao Te Ching)"
],
"tradition_type": "dual_unlikely",
"quandary_id": "Q099",
"quandary_theme": "surrender",
"motif": "identity",
"quandary": "I keep trying to steer the choices of people I love, and it's straining us. How do I let go of control without feeling I've abandoned them?",
"expected_references": {
"christian": [
"Mark 9:24",
"John 20:24-29"
],
"taoist": [
"Tao Te Ching 71",
"Tao Te Ching 33"
]
},
"expected_references_flat": [
"Mark 9:24",
"John 20:24-29",
"Tao Te Ching 71",
"Tao Te Ching 33"
],
"thematic_reference_traditions": []
},
{
"case_id": "T100",
"profile_id": "P01",
"age": 92,
"gender": "transgender",
"relationship": "disciple",
"traditions": [
"hindu"
],
"tradition_names": [
"Hinduism (Vedas / Bhagavad Gita)"
],
"tradition_type": "single",
"quandary_id": "Q100",
"quandary_theme": "acceptance",
"motif": "grief",
"quandary": "My life didn't unfold the way I once hoped. How do I make genuine peace with that, rather than just resigning myself to it?",
"expected_references": {
"hindu": [
"Bhagavad Gita 2.13",
"Bhagavad Gita 2.22-27"
]
},
"expected_references_flat": [
"Bhagavad Gita 2.13",
"Bhagavad Gita 2.22-27"
],
"thematic_reference_traditions": []
}
] |