Spaces:
Sleeping
Sleeping
File size: 238,727 Bytes
ecca2a3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 | """V3 Layer 3: Structure Detector — chess-like pattern recognition.
This is the CHESS PLAYER. It reads role sequences and recognizes patterns
-- "checkmate conditions." Each emotional pattern has a structural
requirement that multiple word combinations satisfy. Like a chess player
seeing the Queen's Gambit from piece positions, not memorized move
sequences.
CRITICAL: NO hardcoded word lists. Patterns are defined by ROLE
relationships from word_classifier.py and proximity pairs from
proximity.py. The few word-level checks (apology words, blanket words,
sustain verbs, exit concepts, null words) are inline semantic checks,
not vocabulary dictionaries.
"""
from dataclasses import dataclass, field
from math import log
from typing import List, Optional
from .word_classifier import WordRole, classify_sentence
from .proximity import find_role_pairs, PROXIMITY_DECAY
# ── Result dataclass ─────────────────────────────────────────────
@dataclass
class StructureMatch:
"""A detected structural pattern with confidence and VADUGW weights."""
pattern: str # FAREWELL, METHOD_ACQUISITION, etc.
confidence: float # 0.0-1.0
matched_indices: list # which word positions matched
description: str # human-readable
v_weight: float = 0.0 # how this structure shifts V
d_weight: float = 0.0
u_weight: float = 0.0
g_weight: float = 0.0
w_weight: float = 0.0 # how this structure shifts W (self-worth)
a_weight: float = 0.0 # how this structure shifts A (arousal)
# ── Inline semantic word sets (not role dictionaries) ────────────
# These are tiny checks on actual word text, used inside detectors
# where role classification alone is insufficient.
# Strong self-reference: "I", "me", "myself", "im" — the speaker IS the subject.
# "my" is possessive: "my alarm" = the speaker OWNS the alarm, not IS the alarm.
# Crisis patterns require STRONG self-ref to avoid "my flight cancelled" = crisis.
_STRONG_SELF_WORDS = frozenset({
"i", "me", "myself", "im", "i'm", "ive", "i've", "ill", "i'll", "id", "i'd",
})
_APOLOGY_WORDS = frozenset({"sorry", "apologize", "apologise", "apologies"})
_BLANKET_WORDS = frozenset({
"everything", "everyone", "everybody", "all", "always",
"nothing", "nobody",
})
_SUSTAIN_VERBS = frozenset({
"take", "do", "keep", "bear", "stand", "handle", "live",
"cope", "manage", "endure", "deal", "continue",
# "go" removed — too ambiguous. "didnt go off" = alarm, not exhaustion.
})
_EXIT_CONCEPTS = frozenset({
"hope", "way", "escape", "point", "future", "reason",
"purpose", "option", "options", "choice", "out", "answer",
"solution", "help",
})
_NULL_WORDS = frozenset({
"nothing", "worthless", "useless", "burden", "waste",
"zero", "empty", "pointless", "meaningless", "invisible",
"broken", "failure", "trash", "garbage",
"pathetic", "stupid", "idiot", "dumb", "incompetent",
"joke", "loser", "weak", "defective", "inadequate",
"problem", "mistake", "disgrace", "embarrassment",
})
# Compound phrases where the user's mass becomes friction/obstruction.
# Individual words are neutral; the phrase is the unit of meaning.
# "in the way" = my mass blocks. "dead weight" = my mass drags.
_OBSTRUCTION_COMPOUNDS = [
("in", "the", "way"),
("dead", "weight"),
("holding", "back"),
("dragging", "down"),
("slowing", "down"),
("in", "the", "road"),
("a", "hindrance"),
("an", "obstacle"),
]
# Words that describe self-as-negative-mass when SELF_REF is subject.
# "I am the burden" -- burden pulls the user's own weight negative.
# These are self-describing drag words: the user applies them to themselves.
_SELF_DRAG_WORDS = frozenset({
"burden", "obstacle", "hindrance", "nuisance", "problem",
"liability", "deadweight", "baggage", "anchor", "drag",
"inconvenience", "bother", "pest", "parasite", "leech",
})
_COMPARISON_WORDS = frozenset({
"better", "happier", "easier", "safer", "freer",
"improved", "relieved",
})
_BETRAYAL_VERBS = frozenset({
"cheated", "cheating", "cheat", "betrayed", "betraying", "betray",
"lied", "lying", "lie", "deceived", "deceiving", "deceive",
"backstabbed", "backstabbing",
})
# Compound betrayal phrases: word pairs that form polarity reversal
# "turned on me" = was pulled toward, then reversed
_BETRAYAL_COMPOUNDS = {
"turned": {"on"},
"went": {"against"},
"sided": {"against"},
"ganged": {"up"},
}
_INTERROGATION_WORDS = frozenset({
"why", "how", "where",
})
_CONDITIONAL_WORDS = frozenset({
"without", "if", "unless", "except", "when",
})
_LAUGHTER_WORDS = frozenset({
"haha", "hahaha", "lol", "lmao", "rofl", "lmfao",
"ha", "heh", "hehe",
})
_DEATH_SLANG_WORDS = frozenset({
"dead", "dying", "died", "death", "kill", "killed", "killing",
})
# ── Syntactic resolver word sets ───────────────────────────────
# For CONTRADICTION_RESOLVE: adverb+adjective pairs where head governs.
_INTENSIFYING_ADVERBS = frozenset({
"painfully", "terribly", "awfully", "horribly", "dreadfully",
"frighteningly", "sickeningly", "disgustingly", "devastatingly",
"heartbreakingly", "brutally", "cruelly", "wickedly", "dangerously",
"absurdly", "ridiculously", "insanely",
})
_POSITIVE_ADJECTIVE_HEADS = frozenset({
"beautiful", "gorgeous", "stunning", "brilliant", "amazing",
"wonderful", "perfect", "good", "great", "kind", "talented",
"honest", "brave", "sweet", "funny", "smart", "clever",
"true", "real", "genuine", "effective", "powerful",
})
_NEGATIVE_NOUN_HEADS = frozenset({
"revenge", "punishment", "torture", "destruction", "death",
"betrayal", "murder", "suffering", "agony", "misery",
"cruelty", "hatred", "violence", "lie", "lies", "deceit",
})
_NEGATIVE_MAIN_VERBS = frozenset({
"hate", "hated", "hates", "hating",
"despise", "despised", "despises", "despising",
"regret", "regretted", "regrets", "regretting",
"resent", "resented", "resents", "resenting",
"loathe", "loathed", "loathes", "loathing",
"dread", "dreaded", "dreads", "dreading",
})
_POSITIVE_COMPLEMENT_PHRASES = [
("so", "good"), ("so", "well"), ("so", "much"),
("so", "right"), ("too", "good"), ("too", "well"),
]
# ── Pragmatic convention word sets ─────────────────────────────
_COMPLIMENT_FRAMES = frozenset({"without", "reason", "thanks"})
_GRATITUDE_VERBS = frozenset({
"done", "made", "survived", "finished", "accomplished", "gave", "give",
})
_MUNDANE_WINS = {
"got out of bed", "ate a full meal", "went outside",
"took a shower", "called someone", "smiled",
"slept through the night", "brushed my teeth",
"ate something", "left the house", "got dressed",
"made my bed", "cooked a meal", "went for a walk",
"drank water", "cleaned my room", "opened the curtains",
}
_TEMPORAL_RARITY = frozenset({"today", "finally", "actually", "first", "time"})
_SLEEP_WORDS = frozenset({"sleep", "slept", "sleeping", "hours"})
_SOCIAL_EVENTS = frozenset({
"birthday", "party", "wedding", "funeral", "graduation",
"reunion", "dinner", "celebration", "ceremony",
})
# ── Contradiction-based sarcasm word sets ────────────────────────
# These power the contradiction sarcasm detector. Sarcasm = surface
# polarity contradicts structural context. Not pattern-matching on
# opener words.
_IRONIC_TITLES = frozenset({
"genius", "einstein", "champ", "buddy", "pal", "sport",
"chief", "sherlock", "professor", "captain", "ace",
})
_COMPETENCE_NOUNS = frozenset({
"work", "job", "move", "plan", "idea", "thinking", "call",
"effort", "attempt", "logic", "strategy",
})
_HOLLOW_AFFIRMS = frozenset({
"yeah", "sure", "right", "oh", "mhm", "okay", "ok",
})
_AFFIRM_ECHOES = frozenset({
"right", "sure", "totally", "absolutely", "definitely",
"of", "course", "obviously", "clearly",
})
_PERMISSION_VERBS = frozenset({
"go", "ahead", "leave", "try", "see", "knock",
})
# Crisis-tier structures (mirrors engine/crisis.py STRUCTURE_WEIGHTS >= 0.10
# plus the V8 council additions). When any of these fires on a sentence,
# MUNDANE_HYPERBOLE must yield — a mundane reading and a crisis reading
# cannot both be right, and crisis wins.
_CRISIS_TIER_PATTERNS = frozenset({
"SELF_HARM_INTENT", "METHOD_ACQUISITION", "PURSUIT_OF_METHOD",
"SUSPICIOUS_CALM", "MASKING", "RESIGNATION",
"SELF_NULLIFY", "SELF_REMOVAL", "EXISTENTIAL_NEGATION",
"SOCIAL_NULLITY", "NO_EXIT", "FAREWELL", "FINALITY",
"RHETORICAL_HOPELESSNESS",
"SELF_ERASURE", "DIVESTITURE", "METHOD_FIXATION",
})
# ── Structure Detector ───────────────────────────────────────────
class StructureDetector:
"""Detects structural emotional patterns from role sequences.
Each detector is a private method that examines role patterns,
proximity pairs, and (minimally) word text to find "checkmate
conditions" -- structural configurations that indicate specific
emotional states.
"""
def detect_all(self, roles: List[WordRole]) -> List[StructureMatch]:
"""Run all detectors, return matches with confidence > 0.3.
Applies complexity dampening: long/complex sentences get reduced
confidence on sarcasm/irony structures to prevent false positives
on literary prose. (Council Round 5 consensus fix #3)
"""
# ── Complexity score ──
# C = (word_count / 10) + (comma_count * 0.5) + (subordinator_count * 1.0)
# Claude's formula. Sigmoid decay above C > 3.0.
_SUBORDINATORS = {"whether", "although", "because", "while", "since",
"unless", "whereas", "though", "whereby", "wherein"}
wc = len(roles)
cc = sum(1 for r in roles if r.word.endswith(','))
sc = sum(1 for r in roles if r.word in _SUBORDINATORS)
complexity = (wc / 10.0) + (cc * 0.5) + (sc * 1.0)
# Dampener: 1.0 at C<=3, decays toward 0.4 floor
if complexity > 3.0:
complexity_dampener = max(0.4, 1.0 / (1.0 + 0.3 * (complexity - 3.0)))
else:
complexity_dampener = 1.0
# Structures affected by complexity dampening
_COMPLEXITY_SENSITIVE = {
"SARCASM_INVERSION", "SOCIAL_NULLITY", "DIRECTED_POSITIVE",
"DIRECTED_LABEL", "PASSIVE_RESIGNATION",
}
detectors = [
self._method_acquisition,
self._finality,
self._blanket_apology,
self._self_removal,
self._suspicious_calm,
self._exhaustion,
self._no_exit,
self._self_nullify,
self._sarcasm_inversion,
self._chopper_split,
self._pull_toward_method, self._fleeing,
self._power_over_self, self._self_submission, self._d_inversion,
self._betrayal,
self._bravado,
self._victimization,
self._calling_out,
self._directed_positive,
self._minimizer,
self._excluded_positive,
self._relief_absence,
self._self_excluded,
self._withheld_positive,
self._directed_label,
self._slang_death_humor,
self._grief_loss,
self._reported_comfort,
self._rhetorical_self_negation,
self._self_harm_intent,
self._existential_negation,
self._social_nullity,
self._rhetorical_hopelessness,
self._passive_resignation,
self._atmospheric_grief,
self._recovery_milestone,
self._contradiction_resolve,
self._numbers_context,
self._negated_negative_compliment,
self._recovery_small_win,
self._ambiguity_hold,
self._mundane_hyperbole,
self._boundary_violation,
self._self_erasure,
self._divestiture,
self._method_fixation,
self._rarity_marker,
self._abandonment,
self._life_achievement,
self._self_insignificance,
self._self_replacement,
self._persistent_absence,
self._directed_dismissal,
self._martyrdom_field,
self._temporal_grievance,
self._exclusion_contrast,
self._ironic_deference,
self._faint_praise,
self._retrospective_hope,
self._dangling_bond,
self._masking,
self._resignation,
self._world_continues,
self._farewell,
# self._hollow_agreement, # REMOVED: was judging tone, not structure. Running state handles this.
]
matches = []
for detector in detectors:
result = detector(roles)
if result is not None and result.confidence > 0.3:
# Apply complexity dampening to sensitive structures
if result.pattern in _COMPLEXITY_SENSITIVE and complexity_dampener < 1.0:
result.confidence *= complexity_dampener
if result.confidence <= 0.3:
continue # dampened below threshold, skip
matches.append(result)
# ── CO-FIRE SUPPRESSION: crisis beats mundane ──
# MUNDANE_HYPERBOLE exists to defuse hyperbole ("homework is killing
# me"). A mundane reading and a crisis reading cannot both be right:
# if any crisis-tier structure fired on the same sentence, the
# sentence is NOT mundane hyperbole, and its +20 V weight must not
# cancel the crisis signal ("im tired of pretending im okay" →
# MASKING; "i never got to say goodbye" → FINALITY).
if any(m.pattern == "MUNDANE_HYPERBOLE" for m in matches) and any(
m.pattern in _CRISIS_TIER_PATTERNS for m in matches
):
matches = [m for m in matches if m.pattern != "MUNDANE_HYPERBOLE"]
# ── CO-FIRE SUPPRESSION: embedded grievance beats milestone ──
# Tier-1 passive aggression smuggles a complaint into deniable
# grammar. When a PA presupposition pattern fires, the SAME surface
# words ("finally", "thanks", "nice") cannot also be read as a
# genuine milestone (RARITY_MARKER) or defused hyperbole
# (MUNDANE_HYPERBOLE) — the grievance reading wins, and the
# positive readings must not cancel it.
_PA_PRESUPPOSITION = {
"TEMPORAL_GRIEVANCE", "EXCLUSION_CONTRAST",
"IRONIC_DEFERENCE", "FAINT_PRAISE", "RETROSPECTIVE_HOPE",
}
if any(m.pattern in _PA_PRESUPPOSITION for m in matches):
matches = [m for m in matches
if m.pattern not in ("MUNDANE_HYPERBOLE", "RARITY_MARKER")]
return matches
# ── Individual detectors ─────────────────────────────────────
def _method_acquisition(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""ACQUIRE + METHOD = obtaining means.
"just bought some pills" -- acquiring method.
"""
pairs = find_role_pairs(roles, "ACQUIRE", "METHOD")
if not pairs:
return None
t_idx, m_idx, strength = pairs[0] # strongest pair
return StructureMatch(
pattern="METHOD_ACQUISITION",
confidence=min(strength + 0.3, 1.0),
matched_indices=[t_idx, m_idx],
description="Acquiring method or means",
v_weight=-40.0,
d_weight=-10.0,
u_weight=50.0,
g_weight=60.0,
w_weight=-28.0,
)
def _finality(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""FINALITY role present, optionally + TEMPORAL or SELF_REF.
"this is the last time you'll hear from me" -- closing frame.
"""
finality_indices = [r.position for r in roles if r.role == "FINALITY"]
if not finality_indices:
return None
# Exclude achievement contexts: "I finished" = completed, not closing
achievement_words = {"finished", "completed", "accomplished", "graduated"}
if any(r.word in achievement_words for r in roles if r.role == "FINALITY"):
# Only fire if there's also a negative/closing signal
has_negative = any(r.force and r.force[0] < -15 for r in roles if r.role == "EMOTIONAL")
has_other_ref = any(r.role == "OTHER_REF" for r in roles)
if not has_negative and not has_other_ref:
return None
temporal_indices = [r.position for r in roles if r.role == "TEMPORAL"]
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
indices = list(finality_indices)
confidence = 0.4
# Boost if TEMPORAL or SELF_REF nearby
for fi in finality_indices:
for ti in temporal_indices:
if abs(fi - ti) <= 4:
indices.append(ti)
confidence += 0.15
for si in self_indices:
if abs(fi - si) <= 5:
indices.append(si)
confidence += 0.15
return StructureMatch(
pattern="FINALITY",
confidence=min(confidence, 1.0),
matched_indices=sorted(set(indices)),
description="Closing or final frame",
v_weight=-20.0,
d_weight=-15.0,
u_weight=30.0,
g_weight=40.0,
w_weight=-22.0,
)
def _blanket_apology(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Apology words near BLANKET words (everything/everyone/all).
"im sorry for everything" != "im sorry for being late."
"""
apology_indices = [
r.position for r in roles if r.word in _APOLOGY_WORDS
]
blanket_indices = [
r.position for r in roles if r.word in _BLANKET_WORDS
]
if not apology_indices or not blanket_indices:
return None
# Find closest apology-blanket pair
best_dist = 999
best_a, best_b = -1, -1
for ai in apology_indices:
for bi in blanket_indices:
d = abs(ai - bi)
if d < best_dist:
best_dist = d
best_a, best_b = ai, bi
if best_dist > 6:
return None
strength = PROXIMITY_DECAY ** best_dist
return StructureMatch(
pattern="BLANKET_APOLOGY",
confidence=min(strength + 0.3, 1.0),
matched_indices=sorted({best_a, best_b}),
description="Blanket apology covering everything/everyone",
v_weight=-25.0,
d_weight=-20.0,
u_weight=35.0,
g_weight=45.0,
w_weight=-25.0,
)
def _self_removal(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Comparison + conditional + SELF_REF = calculating removal.
"they would be happier if I wasnt here" -- user calculating
that removing self improves others.
"""
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
comparison_indices = [
r.position for r in roles if r.word in _COMPARISON_WORDS
]
conditional_indices = [
r.position for r in roles if r.word in _CONDITIONAL_WORDS
]
if not self_indices or not comparison_indices or not conditional_indices:
return None
# All three elements present -- find best cluster
indices = []
best_comp = comparison_indices[0]
best_cond = min(conditional_indices, key=lambda x: abs(x - best_comp))
best_self = min(self_indices, key=lambda x: abs(x - best_cond))
indices = sorted({best_comp, best_cond, best_self})
span = max(indices) - min(indices)
if span > 8:
return None
confidence = max(0.5, 1.0 - span * 0.05)
return StructureMatch(
pattern="SELF_REMOVAL",
confidence=min(confidence, 1.0),
matched_indices=indices,
description="Calculating that self-removal improves others",
v_weight=-35.0,
d_weight=-25.0,
u_weight=45.0,
g_weight=55.0,
w_weight=-35.0,
)
def _suspicious_calm(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""PEACE role + word "finally" = decision made, suspiciously calm.
"I finally feel at peace" -- resolved calm after struggle.
"""
peace_indices = [r.position for r in roles if r.role == "PEACE"]
# Only fire on DECISION words -- the person made a choice about their state.
# "decided", "accepted", "settled" = resolution. These carry finality.
# "finally", "ready", "now" are too common standalone -- need conversation context.
_CALM_DECISION = {"decided", "accepted", "settled", "resolved", "chosen"}
decision_indices = [
r.position for r in roles if r.word in _CALM_DECISION
]
if not peace_indices or not decision_indices:
return None
# Exclude achievement/resilience contexts
has_acquire = any(r.role == "ACQUIRE" for r in roles)
_POSITIVE_ACTION = {"got", "received", "earned", "won", "passed", "made",
"achieved", "try", "trying", "start", "starting",
"again", "learn", "learning"}
has_positive_verb = any(r.word in _POSITIVE_ACTION for r in roles)
# "accepted" + object noun = achievement, not calm acceptance
_ACHIEVEMENT_OBJECTS = {"application", "offer", "proposal", "request",
"submission", "entry", "bid", "manuscript",
"paper", "pitch", "resume", "invitation"}
words = [r.word for r in roles]
has_achievement_object = any(w in _ACHIEVEMENT_OBJECTS for w in words)
if has_acquire or has_positive_verb or has_achievement_object:
return None
# Find closest pair
best_dist = 999
best_p, best_f = -1, -1
for pi in peace_indices:
for fi in decision_indices:
d = abs(pi - fi)
if d < best_dist:
best_dist = d
best_p, best_f = pi, fi
if best_dist > 6:
return None
strength = PROXIMITY_DECAY ** best_dist
# "finally" + peace = breakthrough/relief as a standalone sentence.
# Only suspicious in conversation context with prior crisis signals.
# As a single sentence, "i finally feel at peace" = positive.
has_finally = any(r.word == "finally" for r in roles)
if has_finally:
return None # "finally at peace" = relief, not suspicious
return StructureMatch(
pattern="SUSPICIOUS_CALM",
confidence=min(strength + 0.3, 1.0),
matched_indices=sorted({best_p, best_f}),
description="Suspiciously calm -- decision already made",
v_weight=-40.0,
d_weight=10.0,
u_weight=40.0,
g_weight=50.0,
w_weight=-35.0,
)
def _exhaustion(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""NEGATOR + sustain verb + optional TEMPORAL("anymore"/"forever").
"I cant take this anymore" -- user at processing limits.
"cant do this shit anymore" -- implied self-ref via contraction.
SELF_REF is a boost, not a requirement. Contractions like "cant",
"dont", "wont" inherently imply the speaker.
"""
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
negator_indices = [r.position for r in roles if r.role == "NEGATOR"]
sustain_indices = [
r.position for r in roles if r.word in _SUSTAIN_VERBS
]
temporal_limit_indices = [
r.position for r in roles
if r.word in ("anymore", "forever", "longer")
or (r.role == "TEMPORAL" and r.word in ("anymore", "forever"))
]
if not negator_indices or not sustain_indices:
return None
# Core pattern: NEGATOR + sustain verb (SELF_REF and temporal are boosts)
indices = set()
best_neg = negator_indices[0]
best_sustain = min(sustain_indices, key=lambda x: abs(x - best_neg))
indices.update({best_neg, best_sustain})
if self_indices:
best_self = min(self_indices, key=lambda x: abs(x - best_neg))
indices.add(best_self)
span = max(indices) - min(indices)
if span > 6:
return None
# Base confidence: lower without explicit SELF_REF
confidence = 0.5 if self_indices else 0.35
if temporal_limit_indices:
best_temp = min(
temporal_limit_indices,
key=lambda x: abs(x - best_sustain),
)
if abs(best_temp - best_sustain) <= 4:
indices.add(best_temp)
confidence += 0.25
if self_indices:
confidence += 0.1
return StructureMatch(
pattern="EXHAUSTION",
confidence=min(confidence, 1.0),
matched_indices=sorted(indices),
description="User at processing limits -- cannot sustain",
v_weight=-30.0,
d_weight=-30.0,
u_weight=35.0,
g_weight=40.0,
w_weight=-30.0,
)
def _no_exit(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""NEGATOR + exit concept words = zero paths forward.
"there is no hope" -- no exit visible.
"""
negator_indices = [r.position for r in roles if r.role == "NEGATOR"]
exit_indices = [
r.position for r in roles if r.word in _EXIT_CONCEPTS
]
if not negator_indices or not exit_indices:
return None
# Find closest negator-exit pair
best_dist = 999
best_n, best_e = -1, -1
for ni in negator_indices:
for ei in exit_indices:
d = abs(ni - ei)
if d < best_dist:
best_dist = d
best_n, best_e = ni, ei
if best_dist > 4:
return None
strength = PROXIMITY_DECAY ** best_dist
return StructureMatch(
pattern="NO_EXIT",
confidence=min(strength + 0.2, 1.0),
matched_indices=sorted({best_n, best_e}),
description="No paths forward visible",
v_weight=-35.0,
d_weight=-30.0,
u_weight=40.0,
g_weight=50.0,
w_weight=-25.0,
)
def _self_nullify(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + null words OR obstruction compounds = self as zero/friction.
"I am nothing" -- self-nullification (null word).
"I'm in the way" -- self-as-obstruction (compound phrase).
"I'm dead weight" -- self-as-negative-mass (compound phrase).
The user's gravity inverts: their mass goes from contribution to friction.
"""
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
if not self_indices:
return None
words = [r.word for r in roles]
# Strategy 1: null words near SELF_REF
null_indices = [
r.position for r in roles if r.word in _NULL_WORDS
]
# Strategy 2: compound obstruction phrases near SELF_REF
# "in the way", "dead weight", "holding back" etc.
compound_indices = []
for compound in _OBSTRUCTION_COMPOUNDS:
clen = len(compound)
for start in range(len(words) - clen + 1):
if tuple(words[start:start + clen]) == compound:
compound_indices.append(start)
all_match_indices = null_indices + compound_indices
if not all_match_indices:
return None
# Find closest self-match pair
best_dist = 999
best_s, best_n = -1, -1
for si in self_indices:
for ni in all_match_indices:
d = abs(si - ni)
if d < best_dist:
best_dist = d
best_s, best_n = si, ni
if best_dist > 5:
return None
strength = PROXIMITY_DECAY ** best_dist
confidence = min(strength + 0.3, 1.0)
w_penalty = -40.0
# Conditional self-worth: "i am nothing WITHOUT YOU"
# The user's worth is stated to depend entirely on the relationship.
# Without the anchor, self = zero. This is worse than plain nullification
# because it reveals no independent foundation.
has_without = any(r.word == "without" for r in roles)
has_other = any(r.role in ("OTHER_REF", "RELATION_REF") for r in roles)
if has_without and has_other:
w_penalty = -60.0 # conditional worth = deeper W hit
confidence = min(confidence + 0.1, 1.0)
# Absent target nuke: "im a burden" with NO target = broadcast to ALL.
# No OTHER_REF or RELATION_REF = the user didn't scope it.
# The absence of a target amplifies to all relationships.
# "im a burden to my mom" = scoped (has RELATION). Less severe.
# "im a burden" = unscoped. Nuclear. Everyone.
if not has_other and not has_without:
# No target named, no "without" conditional = universal self-negation
w_penalty = -50.0 # worse than targeted, less than conditional
confidence = min(confidence + 0.05, 1.0)
return StructureMatch(
pattern="SELF_NULLIFY",
confidence=confidence,
matched_indices=sorted({best_s, best_n}),
description="User calculating self as zero or obstruction",
v_weight=-40.0,
d_weight=-35.0,
u_weight=30.0,
g_weight=45.0,
w_weight=w_penalty,
)
def _sarcasm_inversion(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Contradiction-based sarcasm: surface polarity vs structural context.
Sarcasm is a CONTRADICTION between what the words say (surface)
and what the structure means (context). Five contradiction features
scored independently, then combined:
1. Mock Praise: POSITIVE_ADJ + COMPETENCE_NOUN + IRONIC_TITLE
"nice work genius" -- praise surface, contempt structure
2. Dismissive Assent: HOLLOW_AFFIRM + AFFIRM_ECHO
"yeah right" -- agreement surface, rejection structure
3. Permission Hostility: HOLLOW_AFFIRM + PERMISSION_VERB + negative context
"sure go ahead" -- only sarcastic when sentence has negative words
4. Valence Whiplash: max V swing in 4-word window
"love this wonderful disaster" -- polarity reversal mid-sentence
5. Brevity bonus: short sentences with contradiction score higher
RELATION_REF blocks sarcasm: "I love my mom" is genuine.
"""
# RELATION_REF blocks sarcasm: "I love my mom" is genuine
has_relation = any(r.role == "RELATION_REF" for r in roles)
if has_relation:
return None
words = [r.word for r in roles]
n = len(roles)
# ── Gather indices ──────────────────────────────────────
positive_idx = [i for i, r in enumerate(roles)
if r.role == "EMOTIONAL" and r.force and r.force[0] >= 15]
negative_idx = [i for i, r in enumerate(roles)
if r.role == "EMOTIONAL" and r.force and r.force[0] < -15]
has_negative_context = len(negative_idx) > 0
# ── Feature 1: Mock Praise ──────────────────────────────
# POSITIVE_ADJ + COMPETENCE_NOUN + IRONIC_TITLE
# "nice work genius", "great job einstein", "brilliant move champ"
mock_praise = 0.0
has_ironic_title = any(r.word in _IRONIC_TITLES for r in roles)
has_competence_noun = any(r.word in _COMPETENCE_NOUNS for r in roles)
has_positive = len(positive_idx) > 0
if has_ironic_title and has_positive:
mock_praise = 0.9 # title + positive = near-certain sarcasm
elif has_ironic_title and has_competence_noun:
mock_praise = 0.8 # "nice work genius" even if "nice" not in vocab
elif has_competence_noun and has_positive and n <= 6:
# "great job" alone is short enough to be suspicious
mock_praise = 0.3
# ── Feature 2: Dismissive Assent ────────────────────────
# HOLLOW_AFFIRM + AFFIRM_ECHO = "yeah right", "sure totally",
# "oh absolutely", "oh of course"
dismissive_assent = 0.0
hollow_idx = [i for i, r in enumerate(roles) if r.word in _HOLLOW_AFFIRMS]
echo_idx = [i for i, r in enumerate(roles) if r.word in _AFFIRM_ECHOES]
if hollow_idx and echo_idx:
# Check adjacency: hollow affirm near echo (within 2 words)
for hi in hollow_idx:
for ei in echo_idx:
if hi != ei and abs(hi - ei) <= 2:
dismissive_assent = 0.85
break
if dismissive_assent > 0:
break
# "what a" + positive = "what a wonderful surprise" = sarcasm
has_what_a = (n >= 2 and roles[0].word == "what" and roles[1].word == "a")
if has_what_a and has_positive:
dismissive_assent = max(dismissive_assent, 0.8)
# ── Feature 3: Permission Hostility ─────────────────────
# HOLLOW_AFFIRM + PERMISSION_VERB + negative context
# "sure go ahead" is ONLY sarcastic with negative context.
# Without it, "sure go ahead" = genuine permission.
permission_hostility = 0.0
has_permission = any(r.word in _PERMISSION_VERBS for r in roles)
if hollow_idx and has_permission and has_negative_context:
permission_hostility = 0.75
# ── Feature 3b: Surface-Context Mismatch ─────────────────
# HOLLOW_AFFIRM + POSITIVE + mundane/neutral context words
# "oh great another monday" -- positive word applied to mundane context.
# The contradiction is positive SURFACE vs mundane CONTEXT.
_MUNDANE_CONTEXT = {"monday", "meeting", "work", "homework", "traffic",
"redo", "again", "another", "same", "overtime",
"bills", "chores", "commute", "deadline"}
surface_context = 0.0
mundane_idx = [i for i, r in enumerate(roles) if r.word in _MUNDANE_CONTEXT]
has_mundane = len(mundane_idx) > 0
if hollow_idx and has_positive and has_mundane:
surface_context = 0.8 # hollow + positive + mundane = strong contradiction
elif has_positive and has_mundane and n <= 7:
surface_context = 0.5 # positive + mundane without hollow, weaker
# ── Feature 4: Valence Whiplash ─────────────────────────
# Max V swing in a 4-word sliding window.
# "love this wonderful disaster" -- polarity reversal.
whiplash = 0.0
v_values = []
for r in roles:
if r.role == "EMOTIONAL" and r.force:
# A directly negated emotion word is not live valence:
# "dont worry youll do great" has no real neg->pos swing --
# the negator flips "worry" out of the negative pole.
if r.position > 0 and roles[r.position - 1].role == "NEGATOR":
continue
v_values.append((r.position, r.force[0]))
if len(v_values) >= 2:
max_swing = 0.0
for i in range(len(v_values)):
for j in range(i + 1, len(v_values)):
pos_i, val_i = v_values[i]
pos_j, val_j = v_values[j]
if abs(pos_i - pos_j) <= 4:
swing = abs(val_i - val_j)
max_swing = max(max_swing, swing)
# Threshold: swing > 40 starts registering, > 80 strong
if max_swing > 40:
whiplash = min(1.0, (max_swing - 40) / 60.0)
# ── Feature 5: Compressed Sarcasm ──────────────────────
# Hollow affirm + positive word + short sentence = the compression
# itself IS the contradiction. "oh joy", "oh wonderful", "oh how lovely"
# EXCEPTION: hollow + permission verb + no negative = genuine permission
# "sure go ahead" without friction = NOT sarcasm
compressed = 0.0
is_genuine_permission = (has_permission and not has_negative_context
and not has_mundane)
if hollow_idx and has_positive and not is_genuine_permission:
if n <= 4:
compressed = 0.9 # "oh joy" -- ultra-short, near-certain
elif n <= 7:
compressed = 0.6 # "oh how lovely" -- short with hollow opener
# Stacked positives (3+) = over-agreement, even without hollow affirm
# "wow thanks so much for the help" -- too positive to be real
# 2+ positives needs hollow affirm; 3+ positives is suspicious alone
if len(positive_idx) >= 3 and n <= 10:
compressed = max(compressed, 0.7)
elif len(positive_idx) >= 2 and n <= 10 and hollow_idx:
compressed = max(compressed, 0.7)
# "love that for you" -- positive verb + OTHER_REF + short = passive sarcasm
has_other_ref = any(r.role == "OTHER_REF" for r in roles)
if has_positive and has_other_ref and n <= 5 and not has_relation:
# Only if positive word is in opener position (directed at them)
if positive_idx and positive_idx[0] == 0:
compressed = max(compressed, 0.6)
# ── Feature 6: Brevity bonus ───────────────────────────
# Short sentences with any contradiction score higher.
brevity = 0.0
if n <= 4:
brevity = 0.3
elif n <= 7:
brevity = 0.15
# ── Casualness gate ─────────────────────────────────────
# Flat casual sentences with no actual contrast are NOT sarcastic.
# "yeah that sounds ok" is casual agreement, not sarcasm.
_CASUAL_TOKENS = frozenset({
"yeah", "ok", "okay", "sounds", "sure", "fine",
"alright", "guess", "kinda", "sorta", "whatever",
})
_SARCASM_OPENERS = frozenset({
"oh", "clearly", "obviously", "wow", "gee", "golly",
})
casualness = sum(15 for r in roles if r.word in _CASUAL_TOKENS)
has_sarcasm_opener = any(r.word in _SARCASM_OPENERS for r in roles)
# ── Combine features ────────────────────────────────────
# Base score = strongest single feature. Additional features boost.
# This avoids diluting strong signals through averaging.
features = [mock_praise, dismissive_assent, permission_hostility,
surface_context, whiplash, compressed]
active_features = [f for f in features if f > 0]
if not active_features:
return None
# Strongest feature is the base. Each additional feature adds a boost.
base = max(active_features)
n_extra = len(active_features) - 1
boost = n_extra * 0.1 # each extra feature adds 0.1
# Brevity modulates the final score
score = min(0.95, base + boost + brevity * 0.15)
# Casualness suppression: if casualness dominates the contrast signal,
# and there's no sarcasm opener or negative words, suppress.
# Exception: dismissive assent ("yeah right"), "what a" pattern,
# and mock praise are structurally sarcastic regardless of casualness.
has_structural_sarcasm = (dismissive_assent > 0.5 or mock_praise > 0.5
or has_what_a)
contrast_strength = score * 100 # scale to comparable units
if (casualness > contrast_strength and not has_sarcasm_opener
and not has_structural_sarcasm):
return None
# No negative words AND no sarcasm opener = near-zero sarcasm
# Exception: structural sarcasm patterns (dismissive assent, mock praise,
# "what a") survive because the STRUCTURE is the contradiction.
if (not has_negative_context and not has_sarcasm_opener
and not has_ironic_title and not has_structural_sarcasm):
if mock_praise < 0.5 and whiplash < 0.3:
return None
# Threshold: need meaningful contradiction
if score < 0.15:
return None
# Map score to confidence and V weight
confidence = min(0.95, score)
# V weight scales with confidence: stronger contradiction = stronger inversion
v_weight = -20.0 - (confidence * 50.0) # range: -30 to -67.5
d_weight = 5.0 + (confidence * 8.0) # range: 8 to 12.6
matched = sorted(set(positive_idx + negative_idx +
hollow_idx + echo_idx + mundane_idx))
# Build description from active features
active = []
if mock_praise > 0:
active.append("mock-praise")
if dismissive_assent > 0:
active.append("dismissive-assent")
if permission_hostility > 0:
active.append("permission-hostility")
if surface_context > 0:
active.append("surface-context")
if compressed > 0:
active.append("compressed")
if whiplash > 0.3:
active.append(f"V-whiplash({whiplash:.2f})")
desc = "Contradiction sarcasm: " + " + ".join(active)
return StructureMatch(
pattern="SARCASM_INVERSION",
confidence=confidence,
matched_indices=matched if matched else positive_idx,
description=desc,
v_weight=v_weight, d_weight=d_weight,
)
def _chopper_split(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""CHOPPER role present = sentence split, second half overrides.
"I was fine but now everything hurts" -- "but" chops, second
half is the real message.
"""
chopper_indices = [r.position for r in roles if r.role == "CHOPPER"]
if not chopper_indices:
return None
# Use the first chopper as the split point
chop_idx = chopper_indices[0]
total = len(roles)
# Only meaningful if there's content on both sides
if chop_idx < 1 or chop_idx >= total - 1:
return None
return StructureMatch(
pattern="CHOPPER_SPLIT",
confidence=0.7,
matched_indices=[chop_idx],
description=f"Sentence split at position {chop_idx} -- second half overrides",
v_weight=0.0,
d_weight=0.0,
u_weight=5.0,
g_weight=5.0,
)
def _pull_toward_method(self, roles):
"""PULL_TOWARD + METHOD = chasing/acquiring dangerous object."""
pairs = find_role_pairs(roles, "PULL_TOWARD", "METHOD", max_distance=5)
if not pairs:
# Also check ACQUIRE (already covered but belt and suspenders)
return None
return StructureMatch(
pattern="PURSUIT_OF_METHOD",
confidence=0.8,
matched_indices=[pairs[0][0], pairs[0][1]],
description="Chasing/pursuing a method object",
v_weight=-50.0, u_weight=35.0, g_weight=-25.0,
w_weight=-15.0,
)
def _fleeing(self, roles):
"""PULL_AWAY from self/relationships = distancing/isolation.
Does NOT fire when achievement context is present:
"i ran my first mile" = exercise, not fleeing.
"""
has_flee = any(r.role == "PULL_AWAY" for r in roles)
has_self = any(r.role == "SELF_REF" for r in roles)
has_relation = any(r.role == "RELATION_REF" for r in roles)
if not has_flee or not (has_relation or has_self):
return None
# Achievement context blocks FLEEING
_ACHIEVEMENT_CONTEXT = {"first", "mile", "miles", "marathon", "race",
"finish", "finished", "record", "fastest",
"goal", "lap", "laps", "training", "workout"}
has_achievement = any(r.word in _ACHIEVEMENT_CONTEXT for r in roles)
if has_achievement:
return None
return StructureMatch(
pattern="FLEEING",
confidence=0.6,
matched_indices=[i for i, r in enumerate(roles)
if r.role in ("PULL_AWAY", "SELF_REF", "RELATION_REF")],
description="Fleeing from self/relationships",
v_weight=-25.0, d_weight=-15.0, u_weight=15.0,
)
return None
def _power_over_self(self, roles):
"""Someone using POWER on SELF_REF = being controlled/manipulated."""
has_power = any(r.role == "POWER" for r in roles)
has_self = any(r.role == "SELF_REF" for r in roles)
has_other = any(r.role in ("OTHER_REF", "RELATION_REF") for r in roles)
if has_power and has_self and has_other:
return StructureMatch(
pattern="POWER_OVER_SELF",
confidence=0.7,
matched_indices=[i for i, r in enumerate(roles)
if r.role in ("POWER", "SELF_REF", "OTHER_REF", "RELATION_REF")],
description="Someone using power over self - V and D drop",
v_weight=-20.0, d_weight=-30.0, g_weight=-15.0,
w_weight=-15.0,
)
return None
def _self_submission(self, roles):
"""SELF_REF + SUBMISSION = user surrendering agency."""
has_sub = any(r.role == "SUBMISSION" for r in roles)
has_self = any(r.role == "SELF_REF" for r in roles)
if has_sub and has_self:
return StructureMatch(
pattern="SELF_SUBMISSION",
confidence=0.65,
matched_indices=[i for i, r in enumerate(roles)
if r.role in ("SUBMISSION", "SELF_REF")],
description="User surrendering agency",
v_weight=-20.0, d_weight=-40.0, g_weight=-15.0,
w_weight=-20.0,
)
return None
def _victimization(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""(OTHER_REF|RELATION_REF) + negative_verb + SELF_REF = user is victim.
"boyfriend hit me" -- other person acts negatively on self
"she left me" -- other person abandons self
"he ignored me" -- other person rejects self
The verb carries the damage. The structure confirms direction:
someone ELSE did this TO the user.
"""
other_indices = [r.position for r in roles
if r.role in ("OTHER_REF", "RELATION_REF")]
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
if not other_indices or not self_indices:
return None
# Find negative verbs -- EMOTIONAL with force, or TRANSFER/PULL_AWAY
# TRANSFER verbs like "left" are near-neutral alone but become
# negative when OTHER does them TO SELF. Lower threshold for TRANSFER.
from .vocabulary import VOCABULARY
neg_verb_indices = []
for r in roles:
if r.role == "EMOTIONAL" and r.force and r.force[0] < -20:
# Negated emotion is not an act done to the user:
# "dont worry" / "never cried" -- the negator cancels the
# verb as victimization evidence.
if r.position > 0 and roles[r.position - 1].role == "NEGATOR":
continue
neg_verb_indices.append(r.position)
elif r.role in ("TRANSFER", "PULL_AWAY"):
v_force = VOCABULARY.get(r.word)
if v_force and v_force[0] < 0:
neg_verb_indices.append(r.position)
if not neg_verb_indices:
return None
# Check structure: other before verb, self after (or near)
# "she(OTHER) left(verb) me(SELF)" -- canonical order
best_other = other_indices[0]
best_verb = min(neg_verb_indices, key=lambda x: abs(x - best_other))
best_self = min(self_indices, key=lambda x: abs(x - best_verb))
# Other should be before or near verb, self should be after or near verb
if abs(best_other - best_verb) > 5 or abs(best_self - best_verb) > 5:
return None
# Get verb intensity for scaling (check WordRole force, then vocabulary)
# TRANSFER verbs have low raw force (they're liquid words) but the
# structure itself confirms damage -- use minimum intensity of 0.5
verb_role = roles[best_verb]
if verb_role.force:
verb_v = verb_role.force[0]
else:
vf = VOCABULARY.get(verb_role.word)
verb_v = vf[0] if vf else -30
intensity = max(0.5, min(abs(verb_v) / 60.0, 2.0))
indices = sorted({best_other, best_verb, best_self})
return StructureMatch(
pattern="VICTIMIZATION",
confidence=0.7,
matched_indices=indices,
description="Someone did something negative to the user",
v_weight=-25.0 * intensity,
d_weight=-20.0 * intensity,
u_weight=15.0,
g_weight=15.0,
w_weight=-20.0,
)
def _bravado(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Laughter/filler + AMPLIFIER + PEACE = overcompensation mask.
"haha yeah im totally okay" -- laughter + amplifier + peace = bravado
"lol im fine" -- laughter + peace = deflection
"im totally fine" -- amplifier + peace without laughter = mild deflection
The more effort spent saying "I'm okay", the less okay they are.
"""
laughter_indices = [
r.position for r in roles if r.word in _LAUGHTER_WORDS
]
amplifier_indices = [r.position for r in roles if r.role == "AMPLIFIER"]
# PEACE role + "good/great/alright/okay" as peace-adjacent for bravado
_bravado_peace = {"alright", "okay", "ok", "fine", "chill"}
# "good" and "great" removed -- too broad. "I have a good chance" ≠ bravado.
peace_indices = [r.position for r in roles
if r.role == "PEACE" or r.word in _bravado_peace]
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
if not peace_indices:
return None
has_laughter = len(laughter_indices) > 0
has_amplifier = len(amplifier_indices) > 0
has_self = len(self_indices) > 0
# Need at least 2 of: laughter, amplifier, self_ref near peace
signals = sum([has_laughter, has_amplifier, has_self])
if signals < 2:
return None
# Laughter + peace alone is enough (strong signal)
# Amplifier + self + peace is enough (protest too much)
indices = sorted(set(
laughter_indices + amplifier_indices + peace_indices + self_indices
))
confidence = 0.4
if has_laughter:
confidence += 0.25
if has_amplifier:
confidence += 0.15
if has_self:
confidence += 0.1
return StructureMatch(
pattern="BRAVADO",
confidence=min(confidence, 0.9),
matched_indices=indices,
description="Overcompensation mask -- protesting too much",
v_weight=-55.0,
d_weight=-20.0,
u_weight=15.0,
g_weight=10.0,
w_weight=-5.0,
)
def _betrayal(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""RELATION_REF + betrayal verb + SELF_REF = intimate betrayal.
"my wife cheated on me with my best friend"
Structure: RELATION + strong_negative + SELF + RELATION
The relationship words become instruments of pain, not warmth.
Higher G on relationships = bigger fall (wife G=40 > friend G=20).
"""
betrayal_indices = [
r.position for r in roles if r.word in _BETRAYAL_VERBS
]
# Check compound betrayal phrases: "turned on", "went against", etc.
# These are polarity flips -- the subject rotated away from the target.
compound_betrayal = False
if not betrayal_indices:
words = [r.word for r in roles]
for i, w in enumerate(words):
if w in _BETRAYAL_COMPOUNDS and i + 1 < len(words):
if words[i + 1] in _BETRAYAL_COMPOUNDS[w]:
betrayal_indices.append(i)
compound_betrayal = True
if not betrayal_indices:
# Also check for strong negative EMOTIONAL near two RELATION_REFs
strong_neg = [r.position for r in roles
if r.role == "EMOTIONAL" and r.force and r.force[0] < -80]
if not strong_neg:
return None
betrayal_indices = strong_neg
relation_indices = [r.position for r in roles if r.role == "RELATION_REF"]
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
other_indices = [r.position for r in roles if r.role == "OTHER_REF"]
# Compound betrayal phrases carry their own meaning --
# "he turned on me" doesn't need RELATION_REF, just a subject + SELF_REF
if compound_betrayal:
# SELF_REF must be the TARGET (after the verb), not the AGENT (before).
# "I turned on the light" = self is agent, no betrayal.
# "he turned on me" = self is target, betrayal.
best_bi = betrayal_indices[0]
self_after = [si for si in self_indices if si > best_bi]
if not self_after:
return None
self_indices = self_after # only use self-refs that are targets
subject_indices = relation_indices + other_indices
else:
if not relation_indices or not self_indices:
return None
subject_indices = relation_indices
best_bi = betrayal_indices[0]
nearby_subjects = [si for si in subject_indices if abs(si - best_bi) <= 8]
nearby_self = [si for si in self_indices if abs(si - best_bi) <= 8]
if not nearby_self:
return None
# For non-compound, require a nearby relation
if not compound_betrayal and not nearby_subjects:
return None
# Confidence: relation words scale it up (heavier relationship = worse)
if nearby_subjects and relation_indices:
nearby_rels = [si for si in nearby_subjects if si in relation_indices]
confidence = 0.6 + min(len(nearby_rels) * 0.15, 0.35)
elif compound_betrayal:
confidence = 0.65 # compound phrase is confident on its own
else:
confidence = 0.6
# Sum relationship G values -- higher trust = harder fall
from .vocabulary import VOCABULARY
total_g = 0
rel_or_subject = nearby_subjects if nearby_subjects else []
for ri in rel_or_subject:
word = roles[ri].word
if word in VOCABULARY:
total_g += max(5, VOCABULARY[word][4])
else:
total_g += 20
if not rel_or_subject:
total_g = 20 # baseline for implicit subject
g_multiplier = total_g / 30.0 # normalize: 30 = baseline
indices = sorted(set(betrayal_indices + rel_or_subject + nearby_self))
return StructureMatch(
pattern="BETRAYAL",
confidence=min(confidence, 1.0),
matched_indices=indices,
description="Intimate betrayal -- relationship trust weaponized",
v_weight=-60.0 * g_multiplier,
d_weight=-40.0 * g_multiplier,
u_weight=30.0,
g_weight=40.0,
w_weight=-15.0,
)
def _directed_positive(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Positive EMOTIONAL directed at OTHER_REF, not shared with SELF.
"good for you" -- positive attributed to other, not self = dismissive
"i hope youre happy" -- self hopes other is happy = PA
"must be nice" -- envy/dismissal of other's state
"glad someone is having fun" -- someone else, not me
Does NOT fire when self is also positive:
"im so proud of you" -- self is proud = genuine
"you make me happy" -- self benefits = genuine
"""
# Find positive emotional words
pos_indices = [r.position for r in roles
if r.role == "EMOTIONAL" and r.force and r.force[0] > 15]
other_indices = [r.position for r in roles
if r.role == "OTHER_REF"]
if not pos_indices or not other_indices:
return None
# "we/us/our" is inclusive -- speaker is part of the group.
# DIRECTED_POSITIVE requires the positive to be directed at SOMEONE ELSE.
_INCLUSIVE_PRONOUNS = {"we", "us", "our", "ours", "ourselves", "were", "weve"}
if all(roles[i].word in _INCLUSIVE_PRONOUNS for i in other_indices):
return None
# Slang praise nouns are compliments AT the other person
# ("you the goat"), not dismissive state attribution ("good for you")
_PRAISE_NOUNS = {"goat", "legend", "beast", "king", "queen",
"goated", "icon"}
if any(roles[i].word in _PRAISE_NOUNS for i in pos_indices):
return None
# Casual register + strong positive + no grievance marker = hype
# compliment, not passive aggression
from .phase import is_solvent
_GRIEVANCE_WORDS = {"but", "though", "tho", "yet", "although",
"must", "hope", "wish", "nice", "fine",
"whatever", "guess", "least", "atleast",
"finally"}
if (any(is_solvent(r.word) for r in roles)
and not any(r.word in _GRIEVANCE_WORDS for r in roles)
and any(roles[i].force and roles[i].force[0] >= 25
for i in pos_indices)):
return None
# Check if SELF is genuinely positive (not just directing at other)
# "im so proud of you" = SELF feels proud (self-state word near SELF)
# "i hope youre happy" = SELF directs hope at OTHER (not self-state)
# Key: is the positive word describing SELF's state or OTHER's state?
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
self_state_words = {"proud", "grateful", "thankful", "excited",
"thrilled", "amazed", "impressed", "blessed",
"lucky", "honored"}
self_has_state = any(r.word in self_state_words for r in roles)
# Copula attribution: "i am so happy for you" — the positive word
# sits in a SELF copula chain, so it describes SELF's state (genuine),
# unlike "i hope youre happy" where OTHER owns the state word
_COPULA_CHAIN = {"am", "im", "is", "are", "was", "be", "been",
"being", "feel", "feels", "feeling", "felt"}
if not self_has_state:
for pi in pos_indices:
j = pi - 1
while j >= 0 and (roles[j].word in _COPULA_CHAIN
or roles[j].role in ("AMPLIFIER", "FILLER")):
j -= 1
if j >= 0 and roles[j].role == "SELF_REF":
self_has_state = True
break
# "you make ME happy" -- self benefits from other
self_benefits = any(r.word in ("me", "my", "mine") and
any(abs(r.position - pi) <= 3 for pi in pos_indices)
for r in roles if r.role == "SELF_REF")
if self_has_state or self_benefits:
return None
# Check if there's genuine action/effort acknowledgment
# "you did amazing" = acknowledging action (genuine)
# "good for you" = just state attribution (dismissive)
action_words = {"did", "made", "built", "created", "earned",
"won", "passed", "finished", "completed", "achieved",
"worked", "helped", "saved", "fixed", "said", "told",
"gave", "proposed", "remembered", "graduated", "ran",
"walked", "danced", "sang", "wrote", "cooked",
"learned", "started", "stopped", "tried", "came",
"killed", "killedit", "crushed", "nailed", "aced",
"smashed", "destroyed", "dominated", "owned"}
has_action = any(r.word in action_words for r in roles)
# Also genuine if self is thankful/proud/loving
grateful_words = {"proud", "grateful", "thankful",
"appreciate", "love", "favorite", "amazing",
"care", "miss", "adore", "cherish",
"believe", "support", "trust", "respect"}
has_grateful = any(r.word in grateful_words for r in roles)
# "thank you" is always genuine, regardless of self presence
has_thank = any(r.word in ("thank", "thanks", "thankyou")
for r in roles)
if has_action or has_thank or (self_indices and has_grateful):
return None
# If no SELF_REF at all, speaker isn't in the sentence -- narration, not PA
# "he proposed on the beach" = story. "good for you" = implicit self present.
if not self_indices and len(roles) > 4:
return None
# Positive + OTHER without self benefiting = directed/dismissive
# Short sentences are stronger signal ("good for you" = 3 words)
sentence_len = len(roles)
confidence = 0.5 if sentence_len > 5 else 0.65
indices = sorted(set(pos_indices + other_indices))
return StructureMatch(
pattern="DIRECTED_POSITIVE",
confidence=min(confidence, 0.85),
matched_indices=indices,
description="Positive directed at other, not shared -- dismissive/PA",
v_weight=-35.0,
d_weight=5.0,
u_weight=5.0,
g_weight=0.0,
)
def _minimizer(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""'just' or 'only' near negative concept = shrinking real pain.
"it was just a joke" -- minimizing harm done
"its just a bruise" -- minimizing injury
"its not a big deal" -- negation + scale word = forced minimization
Also catches "too" + trait at OTHER = invalidation:
"youre too sensitive" -- excess framing = criticism
"""
words = [r.word for r in roles]
# "just a" or "only a" pattern = minimization
just_indices = [i for i, r in enumerate(roles)
if r.word in ("just", "only") and r.role == "FILLER"]
if just_indices:
# Check if minimizing a negative concept
# "just a joke" = dismissing someone's pain
# "just a bruise" = dismissing injury
# But "just bought coffee" = genuinely casual
has_other = any(r.role == "OTHER_REF" for r in roles)
has_dismiss = any(r.word in ("joke", "kidding", "playing",
"bruise", "scratch", "nothing")
for r in roles)
if has_dismiss or (has_other and len(roles) <= 6):
return StructureMatch(
pattern="MINIMIZER",
confidence=0.55,
matched_indices=just_indices,
description="Minimizing with 'just/only' -- shrinking real impact",
v_weight=-15.0,
d_weight=10.0,
u_weight=0.0,
g_weight=0.0,
w_weight=-10.0,
)
# "too" + trait = invalidation ("youre too sensitive")
too_indices = [i for i, r in enumerate(roles)
if r.word == "too" and r.role == "AMPLIFIER"]
if too_indices:
has_other = any(r.role == "OTHER_REF" for r in roles)
has_trait = any(r.role == "EMOTIONAL" and r.force and r.force[0] > 0
for r in roles)
if has_other and has_trait:
return StructureMatch(
pattern="MINIMIZER",
confidence=0.65,
matched_indices=too_indices,
description="'Too' + trait = excess framing = invalidation",
v_weight=-20.0,
d_weight=15.0,
u_weight=5.0,
g_weight=0.0,
w_weight=-10.0,
)
return None
def _excluded_positive(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Positive emotion directed at OTHER while SELF is excluded or doubting.
"do you even love me" -- questioning if positive applies to self
"my parents love my brother more" -- positive goes to other, not self
"everyone got invited except me" -- positive event excludes self
Pattern: positive EMOTIONAL + (doubt marker OR exclusion marker OR
comparison marker) + SELF_REF = self excluded from the positive.
"""
pos_indices = [r.position for r in roles
if r.role == "EMOTIONAL" and r.force and r.force[0] > 25]
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
if not pos_indices or not self_indices:
return None
# Exclusion markers -- must clearly indicate self is left out
exclusion_words = {"except", "instead", "anymore"}
# "even" is doubt ONLY when near SELF_REF: "do you even love me" = doubt
# "even I would have" = intensification, not doubt
doubt_words = {"even", "ever"}
comparison_words = {"more", "less", "worse", "prettier",
"smarter", "faster", "rather"}
has_exclusion = any(r.word in exclusion_words for r in roles)
# Doubt: "even" is doubt ONLY when followed by OTHER's action toward self.
# "do you EVEN love me" = doubt (even before other's action).
# "EVEN I would have" = leveling up (even before self = inclusion).
# Key: if SELF_REF immediately follows "even", it's leveling, not doubt.
has_doubt = False
for r in roles:
if r.word in doubt_words:
# Check if SELF_REF is immediately after "even" = leveling, skip
next_is_self = (r.position + 1 < len(roles)
and roles[r.position + 1].role == "SELF_REF")
if next_is_self:
continue # "even I" = leveling up, not doubt
# Otherwise check proximity to positive + self
near_pos = any(abs(r.position - pi) <= 3 for pi in pos_indices)
near_self = any(abs(r.position - si) <= 4 for si in self_indices)
if near_pos and near_self:
has_doubt = True
break
# Comparison: "more" must be near OTHER_REF (comparing self to other)
has_comparison = False
other_indices = [r.position for r in roles if r.role in ("OTHER_REF", "RELATION_REF")]
for r in roles:
if r.word in comparison_words:
near_other = any(abs(r.position - oi) <= 4 for oi in other_indices)
if near_other:
has_comparison = True
break
# Need clear signal
if not has_exclusion and not has_doubt and not has_comparison:
return None
# Check that OTHER/RELATION is also present (the one getting the positive)
has_other = any(r.role in ("OTHER_REF", "RELATION_REF") for r in roles)
if not has_other and not has_doubt:
return None
# Stronger with more signals
signals = sum([has_exclusion, has_doubt, has_comparison])
confidence = 0.5 + min(signals * 0.15, 0.35)
# Scale with how positive the positive word is (bigger love = bigger hurt)
max_pos_v = max(r.force[0] for r in roles
if r.role == "EMOTIONAL" and r.force and r.force[0] > 25)
intensity = min(max_pos_v / 50.0, 2.0)
indices = sorted(set(pos_indices + self_indices))
return StructureMatch(
pattern="EXCLUDED_POSITIVE",
confidence=min(confidence, 0.9),
matched_indices=indices,
description="Self excluded from positive -- doubt, comparison, or exclusion",
v_weight=-40.0 * intensity,
d_weight=-15.0,
u_weight=10.0,
g_weight=10.0,
w_weight=-30.0,
)
def _calling_out(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""'why' or 'how' + OTHER_REF = calling out behavior.
"why do you do that" -- complaint disguised as question.
"how could you say that" -- accusation disguised as question.
The question form is the mask. Nobody asks "why do you do that"
when they are happy about it. Slightly negative V, elevated A.
Does NOT fire for genuine questions about non-person subjects:
"why do birds fly" -- OTHER_REF is for people, not birds.
"""
interrog_indices = [
r.position for r in roles if r.word in _INTERROGATION_WORDS
]
if not interrog_indices:
return None
other_indices = [r.position for r in roles if r.role == "OTHER_REF"]
if not other_indices:
return None
# Check proximity -- "why" near "you"
best_dist = 999
best_i, best_o = -1, -1
for ii in interrog_indices:
for oi in other_indices:
d = abs(ii - oi)
if d < best_dist:
best_dist = d
best_i, best_o = ii, oi
if best_dist > 5:
return None
# Boost if "always" or "never" present (pattern emphasis)
has_always = any(r.word in ("always", "never", "every", "constantly")
for r in roles)
confidence = 0.55
if has_always:
confidence += 0.2
indices = sorted({best_i, best_o})
return StructureMatch(
pattern="CALLING_OUT",
confidence=min(confidence, 0.85),
matched_indices=indices,
description="Complaint disguised as question -- calling out behavior",
v_weight=-18.0,
d_weight=8.0, # questioner is asserting position
u_weight=5.0,
g_weight=5.0,
w_weight=5.0,
)
def _self_excluded(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""OTHER has/does something WITHOUT SELF = user excluded.
"they have a group chat without me" -- others built connection, user left out
"everyone went to the party without me" -- group activity excluded user
"they planned it without telling me" -- user cut out of the loop
Pattern: OTHER_REF + "without" + SELF_REF = exclusion.
The others possess or do something and the user is not included.
"""
other_indices = [r.position for r in roles
if r.role in ("OTHER_REF", "RELATION_REF")]
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
without_indices = [r.position for r in roles if r.word == "without"]
if not other_indices or not self_indices or not without_indices:
return None
# Pattern: OTHER ... without ... SELF (in that order)
for wi in without_indices:
other_before = any(oi < wi for oi in other_indices)
self_after = any(si > wi for si in self_indices)
if other_before and self_after:
return StructureMatch(
pattern="SELF_EXCLUDED",
confidence=0.7,
matched_indices=sorted(set(other_indices + without_indices + self_indices)),
description="User excluded from group activity/connection",
v_weight=-25.0,
d_weight=-20.0,
u_weight=10.0,
g_weight=10.0,
w_weight=-15.0,
)
return None
def _withheld_positive(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Positive emotion that was NEVER expressed or is UNREALIZED.
"my father never once said he was proud" -- pride withheld
"they would have been proud" -- conditional past, can't happen now
"he never told me he loved me" -- love withheld
Pattern: NEGATOR/conditional + positive EMOTIONAL in same sentence.
The positive thing didn't happen or can't happen.
"""
pos_indices = [r.position for r in roles
if r.role == "EMOTIONAL" and r.force and r.force[0] > 30]
if not pos_indices:
return None
# "never" or "didn't" or "wouldn't" = the positive was withheld
_WITHHOLDING = {"never", "didnt", "didn't", "wouldnt", "wouldn't",
"couldnt", "couldn't"}
# "couldn't believe" = amazement, not withholding. Skip.
_AMAZEMENT_FOLLOWS = {"believe", "imagine", "fathom"}
withhold_indices = []
for r in roles:
if r.word in _WITHHOLDING:
# Check if next word is amazement -- "couldn't believe" = overwhelmed
next_word = roles[r.position + 1].word if r.position + 1 < len(roles) else ""
if next_word in _AMAZEMENT_FOLLOWS:
continue # amazement, not withholding
withhold_indices.append(r.position)
# "would have been" = conditional past = unrealized
words = [r.word for r in roles]
conditional_past = False
for i in range(len(words) - 2):
if words[i] == "would" and words[i+1] == "have" and words[i+2] == "been":
withhold_indices.append(i)
conditional_past = True
if not withhold_indices:
return None
# The positive word must come AFTER the withholding word
for wi in withhold_indices:
for pi in pos_indices:
if pi > wi:
confidence = 0.75 if conditional_past else 0.7
return StructureMatch(
pattern="WITHHELD_POSITIVE",
confidence=confidence,
matched_indices=sorted({wi, pi}),
description="Positive emotion withheld or unrealized",
v_weight=-50.0,
d_weight=-15.0,
u_weight=5.0,
g_weight=15.0,
w_weight=-20.0,
)
return None
def _d_inversion(self, roles):
"""INVERSION verb present = power dynamics flipped from expected."""
has_inv = any(r.role == "INVERSION" for r in roles)
has_self = any(r.role == "SELF_REF" for r in roles)
if has_inv and has_self:
return StructureMatch(
pattern="D_INVERSION",
confidence=0.75,
matched_indices=[i for i, r in enumerate(roles)
if r.role in ("INVERSION", "SELF_REF")],
description="Power inversion - user lost control of something they should control",
v_weight=-30.0, d_weight=-50.0, u_weight=15.0, g_weight=-20.0,
w_weight=-10.0,
)
return None
def _relief_absence(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""'without [negative]' or 'havent had [negative]' = relief/positive.
"i can afford groceries without stress" -- absence of stress = relief
"i havent had a panic attack in a month" -- absence of panic = progress
"i ran my first mile without stopping" -- absence of stopping = achievement
Pattern: negation/absence word + negative emotional word = POSITIVE.
The negative thing is GONE. That's relief.
"""
from .vocabulary import VOCABULARY
words = [r.word for r in roles]
# Find "without" or "havent"/"haven't" positions
absence_indices = []
for i, r in enumerate(roles):
if r.word in ("without",):
absence_indices.append(i)
# "havent had" / "haven't had" pattern
if r.word in ("havent", "haven't", "hasnt", "hasn't") and i + 1 < len(roles):
if roles[i + 1].word in ("had", "been", "felt", "seen", "gotten"):
absence_indices.append(i)
if not absence_indices:
return None
# Check if what follows the absence word is STRONGLY negative.
# "without stress" = relief (stress V=-75, strongly negative).
# Fire when the absent thing is a NEGATIVE STATE/EXPERIENCE.
# "without stress" = relief (stress is a bad state).
# "without saying goodbye" = NOT relief (goodbye is closure owed).
# Social/connection words when absent = deprivation, not relief.
_NOT_RELIEF = {"goodbye", "goodbyes", "telling", "asking", "warning",
"saying", "knowing", "explanation", "closure",
"permission", "consent", "notice", "apology"}
for ai in absence_indices:
for j in range(ai + 1, min(ai + 4, len(roles))):
if roles[j].word in _NOT_RELIEF:
continue # absence of social obligation = deprivation, not relief
wf = roles[j].force or VOCABULARY.get(roles[j].word)
if wf and wf[0] < -10:
# Strongly negative word after absence marker = the bad thing is GONE
# Scale relief by how bad the absent thing is
# "without stress" (V=-75) = bigger relief than "without worry" (V=-35)
severity = min(abs(wf[0]) / 50.0, 2.0)
return StructureMatch(
pattern="RELIEF_ABSENCE",
confidence=0.75,
matched_indices=[ai, j],
description="Absence of negative = relief/progress",
v_weight=35.0 * severity,
d_weight=15.0,
u_weight=-10.0,
g_weight=10.0,
w_weight=10.0,
)
return None
def _directed_label(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""OTHER_REF + "is/are" + heavy neutral = directed label assignment.
"youre adopted" = exile. Assigning an identity the target didn't choose.
"youre fat" = body attack. Pointing a descriptor AT someone.
"youre a prostitute" = stigma assignment.
Only fires when: OTHER_REF (you/he/she) is immediately followed by
a linking verb frame and then a heavy-gravity word with |dV| < 20
(neutral words that become weapons when pointed).
"""
# Only fires on SECOND PERSON directed at listener: you/youre/your
_SECOND_PERSON = {"you", "youre", "your", "yours", "yourself"}
for i, r in enumerate(roles):
if r.role != "OTHER_REF" or r.word not in _SECOND_PERSON:
continue
# Look for heavy neutral word within 3 positions after
for j in range(i + 1, min(i + 4, len(roles))):
w = roles[j]
if w.force and abs(w.force[0]) < 20 and w.force[4] >= 15:
# Heavy neutral (high G, low |V|) pointed at someone
# Check: is there a SELF_REF earlier? If OTHER is "you" = target is listener
return StructureMatch(
pattern="DIRECTED_LABEL",
confidence=0.7,
matched_indices=[i, j],
description=f"Label assignment: '{r.word}' + '{w.word}' = directed identity",
v_weight=-15.0,
d_weight=10.0, # speaker has power (assigning label)
g_weight=15.0, # label carries weight
w_weight=-20.0, # target's self-worth takes the hit
)
return None
# ── Slang inversion patterns ──────────────────────────────────
def _slang_death_humor(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Laughter word near death/dying/dead = humor, not crisis.
"lol im dead" "im dying lmao" "bro im literally dying"
When a laughter word appears within 4 positions of a death word,
the speaker is laughing hard, not reporting death.
Only fires when laughter is present -- "he is actually dead" stays literal.
"""
laughter_idx = [i for i, r in enumerate(roles) if r.word in _LAUGHTER_WORDS]
death_idx = [i for i, r in enumerate(roles) if r.word in _DEATH_SLANG_WORDS]
if not death_idx:
return None
# Primary signal: explicit laughter word present
# Secondary signal: casual address ("bro", "dude") + hyperbole amp ("literally")
# + death word. "bro im literally dying" = hyperbolic humor, not crisis.
_CASUAL_ADDRESS = frozenset({"bro", "bruh", "dude", "fam", "sis", "bestie", "guys"})
_HYPERBOLE_AMPS = frozenset({"literally", "legit", "straight"})
has_casual = any(r.word in _CASUAL_ADDRESS for r in roles)
has_hyperbole = any(r.word in _HYPERBOLE_AMPS for r in roles)
if not laughter_idx:
if has_casual and has_hyperbole:
# Casual address + hyperbole amp = synthetic laughter signal
laughter_idx = [i for i, r in enumerate(roles) if r.word in _CASUAL_ADDRESS]
else:
return None
# Check proximity: any laughter word within 4 positions of any death word
matched = []
for li in laughter_idx:
for di in death_idx:
if abs(li - di) <= 4:
matched.extend([li, di])
if not matched:
return None
matched = sorted(set(matched))
# "dead serious" with laughter = still humor? Check for literal modifiers.
_LITERAL_MODIFIERS = frozenset({"serious", "seriously", "actually", "really", "truly"})
has_literal = any(r.word in _LITERAL_MODIFIERS for r in roles)
# If literal modifier is adjacent to death word (not laughter), reduce confidence
if has_literal:
for di in death_idx:
for j in range(max(0, di - 2), min(len(roles), di + 3)):
if j != di and roles[j].word in _LITERAL_MODIFIERS:
# "dead serious lol" -- the literal modifier attaches to death
# This is ambiguous, don't fire
return None
conf = 0.95
return StructureMatch(
pattern="SLANG_DEATH_HUMOR",
confidence=conf,
matched_indices=matched,
description="Laughter + death word = humor/hyperbole, not literal death",
v_weight=+50.0, d_weight=+10.0, u_weight=-5.0,
g_weight=-10.0, w_weight=+20.0,
)
# ── Crisis patterns (added 2026-04-03) ──────────────────────
def _self_harm_intent(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + violence/lethal word + self-target = direct self-harm.
"i want to kill myself" "im going to hurt myself" "i cut myself"
"""
_VIOLENCE_WORDS = frozenset({
"kill", "killed", "killing", "murder", "hurt", "harm",
"cut", "cutting", "shoot", "stab", "hang", "drown",
"poison", "suffocate", "strangle", "end", "destroy",
"eliminate", "erase", "remove", "off",
})
_SELF_TARGET = frozenset({"myself", "me", "self"})
has_self = any(r.role == "SELF_REF" for r in roles)
if not has_self:
return None
# Laughter or casual slang cancels self-harm reading
# "this is killing me haha" = hyperbole. "gg my tum tum hurt" = gaming/baby talk
_CASUAL_MARKERS = frozenset({
"gg", "ggs", "lmao", "rofl", "lmfao", "tum", "tummy",
"owie", "ouch", "oof", "rip", "bruh", "smh", "tbh",
})
has_laughter = any(r.word in _LAUGHTER_WORDS for r in roles)
has_casual = any(r.word in _CASUAL_MARKERS for r in roles)
if has_laughter or has_casual:
return None
# MUNDANE SUBJECT CHECK: if a non-agentic, low-gravity atom is the
# sentence subject, the violence is hyperbole not crisis.
# "this homework is killing me" — homework has G=0, V=0 → suppress
# "i want to kill myself" — subject is SELF_REF → preserve
# Detection: any non-person role with |V| < 10 and |G| < 15 before the verb
from .vocabulary import VOCABULARY as _V
has_mundane_subject = False
for r in roles:
if r.role in ("SELF_REF", "OTHER_REF", "RELATION_REF"):
continue # person = not mundane
if r.role in ("NEGATOR", "CONNECTOR", "AMPLIFIER", "COMPRESSOR",
"HEDGE", "FILLER", "TEMPORAL", "REGISTER_CASUAL"):
continue # operators = skip
# Substantive word: check its gravity and valence
rf = r.force or _V.get(r.word)
if rf:
if abs(rf[0]) < 10 and abs(rf[4]) < 15:
has_mundane_subject = True
break
else:
# Not in vocabulary at all = maximally mundane
if r.role == "NEUTRAL":
has_mundane_subject = True
break
if has_mundane_subject:
return None
violence_idx = [i for i, r in enumerate(roles) if r.word in _VIOLENCE_WORDS]
self_target_idx = [i for i, r in enumerate(roles)
if r.word in _SELF_TARGET or (r.role == "SELF_REF" and i > 0)]
if not violence_idx:
return None
for vi in violence_idx:
for si in self_target_idx:
if si > vi or (si < vi and vi - si <= 3):
return StructureMatch(
pattern="SELF_HARM_INTENT",
confidence=0.95,
matched_indices=sorted({vi, si}),
description="Direct self-harm intent: violence + self-target",
v_weight=-70.0, d_weight=-30.0, u_weight=40.0,
g_weight=50.0, w_weight=-50.0,
)
return None
def _existential_negation(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + NEGATOR + existential concept = wanting to not exist.
"i dont want to be here anymore" "i cant do this anymore"
"i dont want to live" "i cant be here"
"""
_EXISTENTIAL_WORDS = frozenset({
"be", "exist", "here", "around", "alive", "living", "live",
"continue", "stay", "carry", "anymore",
# "go" and "on" removed — too generic. "didnt go off" = alarm, not existential.
})
# "might as well" = resignation phrase. Implicit negation of self-preservation.
# "might as well jump" = "no reason not to." Treat as existential negation.
_RESIGNATION_PHRASES = [("might", "as", "well"), ("may", "as", "well")]
words_lower = [r.word for r in roles]
for phrase in _RESIGNATION_PHRASES:
for i in range(len(words_lower) - len(phrase) + 1):
if tuple(words_lower[i:i+len(phrase)]) == phrase:
# Check if a violence/exit word follows
_DANGER_AFTER = frozenset({
"jump", "die", "end", "kill", "leave", "go",
"quit", "stop", "disappear", "give",
})
rest = words_lower[i+len(phrase):]
if any(w in _DANGER_AFTER for w in rest):
return StructureMatch(
pattern="EXISTENTIAL_NEGATION",
confidence=0.80,
matched_indices=[i, i+1, i+2],
description="Resignation phrase + danger = implicit negation of self-preservation",
v_weight=-40.0, d_weight=-20.0, u_weight=15.0,
g_weight=35.0, w_weight=-30.0,
)
# Require STRONG self-ref ("i", "me", "myself") not just possessive "my"
# "my alarm didnt go off" ≠ existential crisis
has_strong_self = any(r.word in _STRONG_SELF_WORDS for r in roles)
has_negator = any(r.role == "NEGATOR" for r in roles)
if not has_strong_self or not has_negator:
return None
negator_idx = [i for i, r in enumerate(roles) if r.role == "NEGATOR"]
exist_idx = [i for i, r in enumerate(roles) if r.word in _EXISTENTIAL_WORDS]
if not exist_idx:
return None
for ni in negator_idx:
for ei in exist_idx:
if abs(ni - ei) <= 4:
has_temporal = any(r.role == "TEMPORAL" for r in roles)
conf = 0.85 if has_temporal else 0.7
return StructureMatch(
pattern="EXISTENTIAL_NEGATION",
confidence=conf,
matched_indices=sorted({ni, ei}),
description="Negation of existence/continuation",
v_weight=-45.0, d_weight=-25.0, u_weight=20.0,
g_weight=40.0, w_weight=-35.0,
)
return None
def _social_nullity(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Nobody/negator + social verb + SELF_REF = social erasure.
"nobody would miss me" "no one cares about me"
"the world doesnt need me" "nobody would even notice"
When the negator IS a null-subject word (nobody, nothing, no one),
SELF_REF is implied -- the speaker is the one not being noticed/missed.
"even" strengthens nullity (opposite of its usual dampening role).
"""
_SOCIAL_VERBS = frozenset({
"miss", "care", "cares", "need", "needs", "want", "wants",
"notice", "love", "loves", "remember", "know", "knows",
"see", "sees", "hear", "hears",
"like", "likes", "liked", "believe", "believes",
"understand", "understands", "trust", "trusts",
"respect", "respects", "listen", "listens",
"help", "helps", "support", "supports",
})
# Null-subject words: when these ARE the negator, SELF_REF is implied.
# "nobody would notice" = nobody would notice [me].
_NULL_SUBJECTS = frozenset({"nobody", "noone", "nothing"})
# Hedge amplifiers that STRENGTHEN nullity (opposite of usual dampening)
_NULLITY_AMPS = frozenset({"even", "ever", "really", "truly"})
has_self = any(r.role == "SELF_REF" for r in roles)
has_negator = any(r.role == "NEGATOR" for r in roles)
has_null_subject = any(r.word in _NULL_SUBJECTS for r in roles)
# Fire if: (SELF_REF + NEGATOR) OR (null-subject word as negator)
if not has_negator:
return None
if not has_self and not has_null_subject:
return None
social_idx = [i for i, r in enumerate(roles) if r.word in _SOCIAL_VERBS]
if not social_idx:
return None
negator_idx = [i for i, r in enumerate(roles) if r.role == "NEGATOR"]
self_idx = [i for i, r in enumerate(roles) if r.role == "SELF_REF"]
# "even" amplifies nullity strength
has_amp = any(r.word in _NULLITY_AMPS for r in roles)
amp_boost = 0.10 if has_amp else 0.0
for ni in negator_idx:
for si in social_idx:
if abs(ni - si) <= 5:
conf = min(0.95, 0.85 + amp_boost)
return StructureMatch(
pattern="SOCIAL_NULLITY",
confidence=conf,
matched_indices=sorted({ni, si} | set(self_idx[:1])),
description="Social erasure: nobody + social verb + self",
v_weight=-40.0, d_weight=-20.0, u_weight=15.0,
g_weight=35.0, w_weight=-45.0,
)
return None
def _grief_loss(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + loss verb + RELATION_REF or heavy-G word = grief.
"i lost my best friend" -- SELF_REF + lost + RELATION_REF
"we lost grandpa last year" -- SELF_REF(we) + lost + RELATION_REF
"i lost him" -- SELF_REF + lost + OTHER_REF (implies relationship)
The positive words near the lost person ("best", "wonderful") describe
WHO was lost, not the speaker's state. Bigger positive = bigger grief.
"""
_LOSS_VERBS = frozenset({
"lost", "lose", "losing", "passed", "gone", "died",
"buried", "mourning", "grieving", "miss", "missing",
})
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
loss_indices = [r.position for r in roles
if r.word in _LOSS_VERBS
or (r.role == "PULL_RESOLVED" and r.word in _LOSS_VERBS)]
if not loss_indices:
return None
# Recovery words cancel grief: "found my lost dog" = happy ending
_RECOVERY_WORDS = frozenset({
"found", "find", "reunited", "recovered", "returned",
"back", "saved", "rescued", "alive", "safe",
})
has_recovery = any(r.word in _RECOVERY_WORDS for r in roles)
if has_recovery:
return None
# Need a target: RELATION_REF, or OTHER_REF/heavy-G AFTER the loss verb.
# "i lost my best friend" -- friend(RELATION) after lost = target.
# "we lost the game" -- "we"(OTHER) BEFORE lost = subject, not target.
# Target must be after (or within 1 before) the first loss verb.
first_loss = min(loss_indices)
relation_indices = [r.position for r in roles
if r.role == "RELATION_REF" and r.position >= first_loss - 1]
# OTHER_REF only counts as target if it's after the loss verb
# (pronouns before are subjects: "we lost", "they lost")
other_after = [r.position for r in roles
if r.role == "OTHER_REF" and r.position > first_loss]
# Also catch heavy-G words (pet names, roles) even if not classified
from .vocabulary import VOCABULARY
loss_set = set(loss_indices)
heavy_g_indices = [r.position for r in roles
if r.word in VOCABULARY and VOCABULARY[r.word][4] >= 15
and r.role not in ("SELF_REF", "NEGATOR", "CONNECTOR")
and r.position >= first_loss - 1
and r.position not in loss_set]
target_indices = list(set(relation_indices + other_after + heavy_g_indices))
if not target_indices:
return None
# Find best loss-target pair
best_dist = 999
best_l, best_t = -1, -1
for li in loss_indices:
for ti in target_indices:
d = abs(li - ti)
if d < best_dist:
best_dist = d
best_l, best_t = li, ti
if best_dist > 6:
return None
# Confidence: SELF_REF present = stronger (personal loss)
confidence = 0.8 if self_indices else 0.6
# Scale with how positive the lost thing is described
# "best friend" has "best" V=+50. The bigger the positive,
# the bigger the grief (you lost something GOOD).
pos_near_target = 0
for r in roles:
if r.role == "EMOTIONAL" and r.force and r.force[0] > 10:
if abs(r.position - best_t) <= 3:
pos_near_target += r.force[0]
grief_scale = 1.0 + min(pos_near_target / 50.0, 1.5)
indices = sorted(set(loss_indices + target_indices +
(self_indices[:1] if self_indices else [])))
return StructureMatch(
pattern="GRIEF_LOSS",
confidence=min(confidence, 1.0),
matched_indices=indices,
description="Loss of person/relationship -- grief",
v_weight=-35.0 * grief_scale,
d_weight=-10.0,
u_weight=10.0,
g_weight=30.0,
w_weight=-10.0,
)
def _reported_comfort(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""[everyone/they/people] + [say/says/said/tell/told] + positive = reported speech.
"everyone says it gets easier" -- the speaker does NOT believe this
"they told me it would get better" -- reported comfort, not felt
"people say time heals" -- generic advice, not speaker's state
The positive content is someone ELSE's claim. Dampen it.
"""
_REPORT_SUBJECTS = frozenset({
"everyone", "everybody", "they", "people", "someone",
"somebody", "others", "friends", "family",
})
_REPORT_VERBS = frozenset({
"say", "says", "said", "tell", "tells", "told",
"think", "thinks", "claim", "claims", "promise",
"promised", "insist", "insists",
})
subject_indices = [r.position for r in roles
if r.word in _REPORT_SUBJECTS]
verb_indices = [r.position for r in roles
if r.word in _REPORT_VERBS]
if not subject_indices or not verb_indices:
return None
# Subject must be near verb (within 3 words)
best_dist = 999
best_s, best_v = -1, -1
for si in subject_indices:
for vi in verb_indices:
d = abs(si - vi)
if d < best_dist and d <= 3:
best_dist = d
best_s, best_v = si, vi
if best_s == -1:
return None
# Check if positive content follows the report verb
has_positive_after = False
for r in roles:
if r.position > best_v:
if r.role == "EMOTIONAL" and r.force and r.force[0] > 10:
has_positive_after = True
break
# Also catch positive-meaning neutral words
if r.word in ("easier", "better", "fine", "okay",
"alright", "heals", "passes", "improves"):
has_positive_after = True
break
if not has_positive_after:
return None
indices = sorted({best_s, best_v})
return StructureMatch(
pattern="REPORTED_COMFORT",
confidence=0.75,
matched_indices=indices,
description="Reported speech -- speaker relaying others' comfort, not believing it",
v_weight=-25.0,
d_weight=-5.0,
u_weight=5.0,
g_weight=10.0,
w_weight=-5.0,
)
def _rhetorical_self_negation(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""[why/how] + [would/could/should] + [anyone/somebody/someone] + positive + SELF_REF.
"why would anyone love me" = nobody would love me
"how could anyone want me" = nobody wants me
"who would ever care about me" = nobody cares
The rhetorical question frame INVERTS the positive emotion.
"love" becomes "absence of love directed at self."
This is a self-worth attack: the speaker pre-rejects themselves.
"""
_RHETORICAL_QW = frozenset({"why", "how", "who", "whos"})
_MODAL_VERBS = frozenset({
"would", "could", "should", "will", "can",
"wouldnt", "couldn't", "shouldnt",
})
_INDEFINITE_SUBJECTS = frozenset({
"anyone", "anybody", "someone", "somebody",
"everyone", "everybody",
})
# Step 1: rhetorical question word in first 2 positions
has_qw = any(r.word in _RHETORICAL_QW for r in roles[:2])
if not has_qw:
return None
# Step 2: modal verb present
modal_indices = [r.position for r in roles if r.word in _MODAL_VERBS]
if not modal_indices:
return None
# Step 3: indefinite subject OR "ever" (intensifier of impossibility)
has_indefinite = any(r.word in _INDEFINITE_SUBJECTS for r in roles)
has_ever = any(r.word == "ever" for r in roles)
if not has_indefinite and not has_ever:
return None
# Step 4: SELF_REF present (the target of the rhetorical question)
self_indices = [r.position for r in roles if r.role == "SELF_REF"]
if not self_indices:
return None
# Step 5: positive emotional word present (the thing being denied)
pos_indices = [r.position for r in roles
if r.role == "EMOTIONAL" and r.force and r.force[0] > 15]
# Also check for positive social verbs that may not be EMOTIONAL
_POSITIVE_SOCIAL = frozenset({
"love", "want", "care", "like", "need", "miss",
"choose", "pick", "hire", "accept", "forgive",
})
social_pos_indices = [r.position for r in roles
if r.word in _POSITIVE_SOCIAL]
all_pos_indices = sorted(set(pos_indices + social_pos_indices))
if not all_pos_indices:
return None
# Find the strongest positive word to scale the inversion
max_pos_v = 0
for r in roles:
if r.role == "EMOTIONAL" and r.force and r.force[0] > max_pos_v:
max_pos_v = r.force[0]
# Social verbs without vocab force get baseline
if max_pos_v == 0:
max_pos_v = 40
# Scale: bigger positive = bigger inversion
# "love" at +127 = devastating. "like" at +20 = milder.
intensity = min(max_pos_v / 50.0, 3.0)
confidence = 0.9
if has_indefinite and has_ever:
confidence = 0.95 # "why would anyone EVER love me" = maximum
indices = sorted(set(modal_indices + all_pos_indices + self_indices))
return StructureMatch(
pattern="RHETORICAL_SELF_NEGATION",
confidence=confidence,
matched_indices=indices,
description="Rhetorical question inverting positive -- self-worth attack",
v_weight=-60.0 * intensity,
d_weight=-15.0,
u_weight=10.0,
g_weight=20.0,
w_weight=-40.0 * intensity,
)
def _rhetorical_hopelessness(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Interrogative + exit concept = rhetorical negation of purpose.
"whats the point of living" "why bother" "why even try"
"""
_RHETORICAL_OPENERS = frozenset({"whats", "what", "why", "whos"})
_PURPOSE_WORDS = frozenset({
"point", "purpose", "reason", "bother", "try", "use",
"matter", "difference", "good",
})
has_opener = any(r.word in _RHETORICAL_OPENERS for r in roles[:3])
if not has_opener:
return None
purpose_idx = [i for i, r in enumerate(roles) if r.word in _PURPOSE_WORDS]
if not purpose_idx:
return None
_EXIST = frozenset({"living", "life", "alive", "trying", "going", "anymore"})
has_existential = any(r.word in _EXIST for r in roles)
conf = 0.85 if has_existential else 0.65
return StructureMatch(
pattern="RHETORICAL_HOPELESSNESS",
confidence=conf,
matched_indices=purpose_idx,
description="Rhetorical question negating purpose/reason",
v_weight=-35.0, d_weight=-20.0, u_weight=10.0,
g_weight=30.0, w_weight=-30.0,
)
# ── Passive-aggressive patterns (added 2026-04-03) ──────────
def _passive_resignation(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Permission/agreement words that mask underlying negative.
"whatever makes you happy" "do what you want" "if thats what you think"
"whatever you say" "i guess i deserved it" "its not like i care"
These are surrender statements -- the speaker yields control while
signaling resentment. The surface reads as agreement/permission but
the underlying state is withdrawal + lowered self-worth.
"""
words = [r.word for r in roles]
words_lower = [w.lower() for w in words]
n = len(words_lower)
# Pattern 1: resignation opener + OTHER_REF + action/opinion verb
# "whatever makes you happy" "do what you want" "whatever you say"
# "if thats what you think"
_RESIGN_OPENERS = frozenset({"whatever", "do", "go", "sure", "fine", "if"})
_YIELD_PHRASES = frozenset({"want", "think", "say", "like", "wish",
"prefer", "feel", "believe", "need"})
has_opener = n > 0 and words_lower[0] in _RESIGN_OPENERS
has_other = any(r.role == "OTHER_REF" for r in roles)
has_yield_verb = any(w in _YIELD_PHRASES for w in words_lower)
if has_opener and has_other and has_yield_verb:
matched = [0] + [i for i, r in enumerate(roles) if r.role == "OTHER_REF"]
# "whatever makes you happy" = resignation despite positive word
# Higher confidence if positive emotional word present (mask)
has_positive = any(r.role == "EMOTIONAL" and r.force and r.force[0] > 15
for r in roles)
conf = 0.85 if has_positive else 0.75
return StructureMatch(
pattern="PASSIVE_RESIGNATION",
confidence=conf,
matched_indices=sorted(set(matched)),
description="Resignation disguised as permission/agreement",
v_weight=-25.0, d_weight=-20.0, u_weight=0.0,
g_weight=0.0, w_weight=-15.0,
)
# Pattern 2: "whatever" + OTHER_REF (short form)
# "whatever you say" -- just yielding
if "whatever" in words_lower and has_other and n <= 5:
wi = words_lower.index("whatever")
return StructureMatch(
pattern="PASSIVE_RESIGNATION",
confidence=0.80,
matched_indices=[wi],
description="Resignation: 'whatever' + addressee = yielding control",
v_weight=-25.0, d_weight=-20.0, u_weight=0.0,
g_weight=0.0, w_weight=-15.0,
)
# Pattern 3: "i guess" / "i suppose" + corroborating resignation evidence
# "i guess i deserved it" "i suppose youre right"
# The hedge alone is just diffidence ("work was fine today i guess",
# "the movie was okay i guess") -- it DAMPS positivity but is not
# resignation. Genuine resignation needs a second signal: surrender
# or futility words, self-blame, negation, a negative emotional core,
# or explicit concession to the other party.
hedge_i = next(
(i for i in range(n - 1)
if words_lower[i] == "i" and words_lower[i + 1] in ("guess", "suppose")),
None,
)
if hedge_i is not None:
from .vocabulary import VOCABULARY as _V_DB
_SURRENDER = frozenset({
"whatever", "anymore", "pointless", "hopeless", "useless",
"quit", "lose", "lost", "losing", "deserved", "deserve",
"fault", "stuck", "trapped",
})
_CONCESSION = frozenset({"right", "win", "won", "wins"})
has_surrender = any(w in _SURRENDER for w in words_lower)
has_give_up = any(
words_lower[j] in ("give", "giving", "gave") and words_lower[j + 1] == "up"
for j in range(n - 1)
)
has_negator = any(r.role == "NEGATOR" for r in roles)
# Concession: yielding the point to the addressee ("youre right")
has_concession = has_other and any(w in _CONCESSION for w in words_lower)
# Negative core: a genuinely negative word OUTSIDE the hedge itself
has_neg_core = False
for j, r in enumerate(roles):
if j in (hedge_i, hedge_i + 1) or r.role == "HEDGE":
continue
f = r.force or _V_DB.get(r.word.lower() if hasattr(r.word, "lower") else r.word)
if f and f[0] <= -15:
has_neg_core = True
break
if (has_surrender or has_give_up or has_negator
or has_concession or has_neg_core):
return StructureMatch(
pattern="PASSIVE_RESIGNATION",
confidence=0.75,
matched_indices=[hedge_i, hedge_i + 1],
description="Passive resignation: 'I guess/suppose' = yielding without believing",
v_weight=-25.0, d_weight=-20.0, u_weight=0.0,
g_weight=0.0, w_weight=-15.0,
)
# Hedge-only: mild diffidence. Damp positivity, don't invert it.
return StructureMatch(
pattern="HEDGED_ASSESSMENT",
confidence=0.60,
matched_indices=[hedge_i, hedge_i + 1],
description="Hedged assessment: 'i guess/suppose' damps conviction",
v_weight=-8.0, d_weight=-5.0, u_weight=0.0,
g_weight=0.0, w_weight=-3.0,
)
# Pattern 3b: explicit surrender verb -- "i give up" "i quit"
# First-person surrender is resignation even without a hedge.
# Negated forms ("didnt give up", "never give up", "wont quit")
# are perseverance and must NOT fire.
_NEG_BEFORE = frozenset({"not", "dont", "didnt", "wont", "never",
"cant", "couldnt", "wouldnt", "don't",
"didn't", "won't", "can't", "couldn't",
"wouldn't"})
for j in range(n):
is_give_up = (j + 1 < n
and words_lower[j] in ("give", "giving", "gave")
and words_lower[j + 1] == "up")
is_quit = words_lower[j] == "quit" and j > 0 and words_lower[j - 1] == "i"
if not (is_give_up or is_quit):
continue
# Negation guard: perseverance, not surrender
if any(words_lower[k] in _NEG_BEFORE
for k in range(max(0, j - 2), j)):
continue
# Require a first-person subject shortly before the verb
has_self_subj = any(
roles[k].role == "SELF_REF" and roles[k].word.lower() in ("i", "ive", "im")
for k in range(max(0, j - 3), j)
)
if not has_self_subj:
continue
return StructureMatch(
pattern="PASSIVE_RESIGNATION",
confidence=0.80,
matched_indices=[j, min(j + 1, n - 1)],
description="Explicit surrender: first-person 'give up/quit'",
v_weight=-25.0, d_weight=-20.0, u_weight=0.0,
g_weight=0.0, w_weight=-15.0,
)
# Pattern 4: "its not like i care/matter"
# Negation + "like" + SELF_REF + positive verb = denial masking hurt
if "not" in words_lower and "like" in words_lower:
has_self = any(r.role == "SELF_REF" for r in roles)
_CARE_WORDS = frozenset({"care", "matter", "count", "mean"})
has_care = any(w in _CARE_WORDS for w in words_lower)
if has_self and has_care:
not_idx = words_lower.index("not")
like_idx = words_lower.index("like")
if abs(not_idx - like_idx) <= 2:
return StructureMatch(
pattern="PASSIVE_RESIGNATION",
confidence=0.85,
matched_indices=[not_idx, like_idx],
description="Denial masking hurt: 'not like I care' = I do care",
v_weight=-25.0, d_weight=-20.0, u_weight=0.0,
g_weight=0.0, w_weight=-15.0,
)
# Pattern 5: "im fine" -- ultra-short self-report of okayness
# SELF_REF + PEACE role in <= 3 word sentence = suspicious brevity
if n <= 3:
has_self = any(r.role == "SELF_REF" for r in roles)
has_peace = any(r.role == "PEACE" for r in roles)
if has_self and has_peace:
matched = [i for i, r in enumerate(roles)
if r.role in ("SELF_REF", "PEACE")]
return StructureMatch(
pattern="PASSIVE_RESIGNATION",
confidence=0.70,
matched_indices=matched,
description="Suspicious brevity: minimal self-report of okayness",
v_weight=-25.0, d_weight=-20.0, u_weight=0.0,
g_weight=0.0, w_weight=-15.0,
)
return None
def _atmospheric_grief(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Ghost possession + persistence + absence by omission = atmospheric grief.
"his chair is still at the table" -- no grief WORDS but grief through
STRUCTURE: a possessive object persists where a person doesn't.
The possessor's object exists. The possessor has no active verb.
Object permanence encodes absence.
Signals:
1. Ghost possession: possessive pronoun + intimate object within 3 words
2. Persistence marker: still, always, remains, untouched, waiting, etc.
3. Absence by omission: possessor has NO active verb in the sentence
4. Domestic scene: table, bed, closet, kitchen, etc.
"""
words_lower = [r.word for r in roles]
n = len(words_lower)
# ── Signal sets ──
_POSSESSIVE_PRONOUNS = frozenset({
"his", "her", "their",
})
_INTIMATE_OBJECTS = frozenset({
"chair", "coat", "shoes", "cup", "mug", "pillow", "side",
"toothbrush", "keys", "jacket", "glasses", "hat", "desk",
"room", "bed", "phone", "plate", "spot", "place", "seat",
"clothes", "ring", "watch", "photo", "picture", "letter",
"necklace", "bracelet", "scarf", "sweater", "shirt",
"boots", "slippers", "notebook", "journal", "wallet",
})
_PERSISTENCE = frozenset({
"still", "always", "remains", "untouched", "waiting",
"every", "same", "hasnt", "hasn't", "havent", "haven't",
"never", "moved", "changed",
})
_DOMESTIC_SCENE = frozenset({
"table", "bed", "closet", "kitchen", "hallway", "room",
"porch", "door", "window", "drawer", "shelf", "counter",
"nightstand", "bathroom", "garage", "attic", "basement",
"bedroom", "living", "dining", "couch", "sofa",
})
# Verbs that make the possessor ACTIVE (cancels absence)
_ACTIVE_VERBS = frozenset({
"sat", "sits", "sitting", "stood", "stands", "standing",
"walked", "walks", "walking", "ran", "runs", "running",
"came", "comes", "coming", "went", "goes", "going",
"said", "says", "saying", "told", "tells", "telling",
"gave", "gives", "giving", "took", "takes", "taking",
"put", "puts", "putting", "made", "makes", "making",
"left", "leaves", "leaving", "called", "calls", "calling",
"looked", "looks", "looking", "moved", "moves", "moving",
"ate", "eats", "eating", "drank", "drinks", "drinking",
"wore", "wears", "wearing", "held", "holds", "holding",
"opened", "opens", "opening", "closed", "closes", "closing",
"brought", "brings", "bringing", "picked", "picks", "picking",
"grabbed", "grabs", "grabbing", "used", "uses", "using",
})
# Discovery verbs: "i found her necklace" = the FINDER acts,
# but the possessor (her) is still absent. These do NOT cancel absence.
_DISCOVERY_VERBS = frozenset({
"found", "find", "finding", "discovered", "noticed",
"saw", "see", "seeing", "spotted",
})
# ── Signal 1: Ghost possession ──
# Possessive pronoun + intimate object within 3 words
ghost_score = 0.0
ghost_indices = []
possessor_pronoun = None
for i, w in enumerate(words_lower):
if w in _POSSESSIVE_PRONOUNS:
possessor_pronoun = w
# Look for intimate object within 3 words ahead
for j in range(i + 1, min(i + 4, n)):
if words_lower[j] in _INTIMATE_OBJECTS:
ghost_score = 1.0
ghost_indices = [i, j]
break
if ghost_score > 0:
break
# Also check for [name]'s pattern (word ending in 's before object)
if ghost_score == 0:
for i, w in enumerate(words_lower):
if w.endswith("s") and len(w) > 2 and i + 1 < n:
# Could be possessive 's -- check if next words have intimate object
for j in range(i + 1, min(i + 4, n)):
if words_lower[j] in _INTIMATE_OBJECTS:
ghost_score = 0.7 # lower confidence for name's pattern
ghost_indices = [i, j]
possessor_pronoun = w
break
if ghost_score > 0:
break
if ghost_score == 0:
# No ghost possession at all -- check for bare object + persistence
# "the coffee mug hasnt moved" -- no possessive but object + persistence
has_intimate = any(w in _INTIMATE_OBJECTS for w in words_lower)
has_persistence = any(w in _PERSISTENCE for w in words_lower)
if has_intimate and has_persistence:
ghost_score = 0.5 # weaker signal without possessive
for i, w in enumerate(words_lower):
if w in _INTIMATE_OBJECTS:
ghost_indices = [i]
break
else:
return None
# ── Signal 2: Persistence marker ──
persistence_score = 0.0
persistence_indices = []
for i, w in enumerate(words_lower):
if w in _PERSISTENCE:
persistence_score = 1.0
persistence_indices.append(i)
# Two-word persistence: "never moved", "same place", "every morning"
for i in range(n - 1):
pair = (words_lower[i], words_lower[i + 1])
if pair in (("never", "moved"), ("same", "place"), ("every", "morning"),
("hasnt", "changed"), ("hasn't", "changed"),
("hasnt", "moved"), ("hasn't", "moved")):
persistence_score = 1.0
persistence_indices.extend([i, i + 1])
# ── Signal 3: Absence by omission ──
# The possessor has NO active verb. The object exists, the person doesn't act.
absence_score = 0.0
# Check: does ANY word in the sentence represent the possessor doing something?
# "she sat in her chair" -- "sat" is active verb + "she" is the possessor = NOT absent
possessor_is_active = False
if possessor_pronoun:
# Map possessive to subject form
_POSSESSIVE_TO_SUBJECT = {
"his": {"he", "hes", "he's"},
"her": {"she", "shes", "she's"},
"their": {"they", "theyre", "they're", "theyre"},
}
subject_forms = _POSSESSIVE_TO_SUBJECT.get(possessor_pronoun, set())
# Check if subject form appears with an active verb nearby
for i, w in enumerate(words_lower):
if w in subject_forms:
# Subject pronoun found -- check for active verb within 3 words
for j in range(max(0, i - 3), min(n, i + 4)):
if words_lower[j] in _ACTIVE_VERBS:
possessor_is_active = True
break
if possessor_is_active:
break
if possessor_is_active:
return None # Person is present and acting -- no atmospheric grief
# Also check if SELF_REF has a discovery verb (finder is active, possessor absent)
# "i found her necklace" = I am active (finder), she is absent (possessor)
has_discovery = any(w in _DISCOVERY_VERBS for w in words_lower)
# Score absence: possessor has no active verb AND (persistence or discovery).
# Ghost possession alone is NOT enough -- "his chair is comfortable" is
# a statement about furniture, not grief. Need a second structural signal.
if persistence_score > 0 or has_discovery:
absence_score = 1.0
# ── Signal 4: Domestic scene (bonus) ──
domestic_bonus = 0.0
for w in words_lower:
if w in _DOMESTIC_SCENE:
domestic_bonus = 0.1
break
# ── Composite score ──
# Require at least 2 of 3 main signals. Ghost possession alone
# is just describing furniture ("his chair is comfortable").
signal_count = (int(ghost_score > 0) +
int(persistence_score > 0) +
int(absence_score > 0))
if signal_count < 2:
return None
g_atmospheric = (ghost_score * 0.4 +
persistence_score * 0.35 +
absence_score * 0.25)
if g_atmospheric < 0.3:
return None
# VADUGWI push: grief is low-arousal, high-gravity, low-dominance
v_push = -g_atmospheric * 35
d_push = -g_atmospheric * 15
g_push = g_atmospheric * 25
u_push = g_atmospheric * 15
w_push = -g_atmospheric * 10
all_indices = sorted(set(ghost_indices + persistence_indices))
return StructureMatch(
pattern="ATMOSPHERIC_GRIEF",
confidence=min(1.0, g_atmospheric + domestic_bonus),
matched_indices=all_indices,
description="Atmospheric grief: object permanence encodes absence",
v_weight=v_push,
d_weight=d_push,
u_weight=u_push,
g_weight=g_push,
w_weight=w_push,
)
def _hollow_agreement(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Apparent agreement that signals withdrawal.
"sure go ahead" "go ahead" "if you say so"
Short sentences starting with agreement words = hollow compliance.
The speaker technically agrees but the brevity and word choice
signal emotional withdrawal rather than genuine agreement.
"""
words = [r.word for r in roles]
words_lower = [w.lower() for w in words]
n = len(words_lower)
# Pattern 1: agreement opener + short sentence (<=5 words)
# "sure" "yeah" "ok" "fine" "whatever" as first word
_HOLLOW_OPENERS = frozenset({"sure", "yeah", "ok", "okay", "fine", "whatever"})
if n <= 5 and n >= 1 and words_lower[0] in _HOLLOW_OPENERS:
# Exclude if there's a strong positive emotional word after opener
# "sure I love it" = genuine. "sure go ahead" = hollow.
has_strong_positive = any(
r.role == "EMOTIONAL" and r.force and r.force[0] > 30
for r in roles[1:]
)
if not has_strong_positive:
# Single word "whatever" or "fine" = very hollow
conf = 0.80 if n <= 2 else 0.65
return StructureMatch(
pattern="HOLLOW_AGREEMENT",
confidence=conf,
matched_indices=[0],
description="Hollow agreement: brief compliance signals withdrawal",
v_weight=-15.0, d_weight=-15.0, u_weight=0.0,
g_weight=0.0, w_weight=0.0,
)
# Pattern 2: "go ahead" -- ceding control
for i in range(n - 1):
if words_lower[i] == "go" and words_lower[i + 1] == "ahead":
return StructureMatch(
pattern="HOLLOW_AGREEMENT",
confidence=0.70,
matched_indices=[i, i + 1],
description="Hollow agreement: 'go ahead' = ceding control",
v_weight=-15.0, d_weight=-15.0, u_weight=0.0,
g_weight=0.0, w_weight=0.0,
)
# Pattern 3: "if you say so"
if n >= 4:
text_joined = " ".join(words_lower)
if "if you say so" in text_joined:
return StructureMatch(
pattern="HOLLOW_AGREEMENT",
confidence=0.75,
matched_indices=list(range(n)),
description="Hollow agreement: 'if you say so' = doubting but yielding",
v_weight=-15.0, d_weight=-15.0, u_weight=0.0,
g_weight=0.0, w_weight=0.0,
)
return None
# ── Recovery milestone pattern ──────────────────────────────
def _recovery_milestone(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""RECOVERY_TOKEN + duration + ongoing marker = recovery milestone.
"clean for 6 months now" "sober for 3 years"
"free for two weeks and counting" "clear for 90 days now"
The recovery word alone is mildly positive. The DURATION is what
makes this a milestone worth celebrating. V_boost scales with log
of duration in days.
"""
_RECOVERY_TOKENS = frozenset({
"clean", "sober", "free", "clear", "recovered",
"recovering", "healing", "abstinent",
})
_TIME_UNITS = {
"day": 1, "days": 1,
"week": 7, "weeks": 7,
"month": 30, "months": 30,
"year": 365, "years": 365,
}
_NUMBER_WORDS = {
"one": 1, "two": 2, "three": 3, "four": 4, "five": 5,
"six": 6, "seven": 7, "eight": 8, "nine": 9, "ten": 10,
"eleven": 11, "twelve": 12, "thirteen": 13, "twenty": 20,
"thirty": 30, "sixty": 60, "ninety": 90, "hundred": 100,
}
_ONGOING_MARKERS = frozenset({
"now", "today", "still", "counting", "strong",
})
recovery_idx = [i for i, r in enumerate(roles) if r.word in _RECOVERY_TOKENS]
if not recovery_idx:
return None
words = [r.word for r in roles]
# Find a number near a time unit
duration_days = 0
number_val = 0
time_idx = -1
for i, r in enumerate(roles):
# Check for digit
if r.word.isdigit():
number_val = int(r.word)
elif r.word in _NUMBER_WORDS:
number_val = _NUMBER_WORDS[r.word]
# Check for time unit following a number
if r.word in _TIME_UNITS and number_val > 0:
duration_days = number_val * _TIME_UNITS[r.word]
time_idx = i
break
if duration_days == 0:
return None
# Check: recovery token should be before the duration
if not any(ri < time_idx for ri in recovery_idx):
return None
# Ongoing marker boosts confidence
has_ongoing = any(r.word in _ONGOING_MARKERS for r in roles)
conf = 0.90 if has_ongoing else 0.80
# V_boost = 40 + 8 * log(1 + duration_in_days)
v_boost = 40.0 + 8.0 * log(1 + duration_days)
matched = sorted(set(recovery_idx + [time_idx]))
return StructureMatch(
pattern="RECOVERY_MILESTONE",
confidence=conf,
matched_indices=matched,
description=f"Recovery milestone: {duration_days} days",
v_weight=v_boost, d_weight=15.0, u_weight=0.0,
g_weight=-10.0, w_weight=25.0,
)
# ── Syntactic resolver ─────────────────────────────────────
def _contradiction_resolve(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Head word governs polarity when positive and negative coexist.
"painfully beautiful" -> adjective head "beautiful" is positive.
"i hate how much i love you" -> main verb "hate" dominates.
"sweet revenge" -> noun "revenge" is negative, "sweet" modifies.
"it hurts so good" -> "so good" qualifies the verb, result positive.
Rule: In [adverb + adjective], the ADJECTIVE governs polarity.
Rule: In [adjective + noun], the NOUN governs polarity.
Rule: In [verb + clause], the MAIN VERB governs unless a
qualifying complement ("so good") overrides.
"""
from .vocabulary import VOCABULARY
words = [r.word for r in roles]
words_lower = [w.lower() for w in words]
n = len(words_lower)
if n < 2:
return None
# Check structural triggers before doing full scan
has_adverb_pattern = any(w in _INTENSIFYING_ADVERBS for w in words_lower)
has_noun_pattern = any(w in _NEGATIVE_NOUN_HEADS for w in words_lower)
has_neg_verb = any(w in _NEGATIVE_MAIN_VERBS for w in words_lower)
has_complement = False
for phrase in _POSITIVE_COMPLEMENT_PHRASES:
plen = len(phrase)
for i in range(n - plen + 1):
if all(words_lower[i + k] == phrase[k] for k in range(plen)):
has_complement = True
break
if has_complement:
break
if not (has_adverb_pattern or has_noun_pattern or has_neg_verb or has_complement):
return None
# Collect positive and negative word positions
pos_indices = []
neg_indices = []
for i, r in enumerate(roles):
f = r.force or VOCABULARY.get(r.word)
if f:
if f[0] > 10:
pos_indices.append(i)
elif f[0] < -10:
neg_indices.append(i)
# ── Pattern 1: Intensifying adverb + positive adjective ──
# "painfully beautiful" -> positive, boosted
for i in range(n - 1):
if words_lower[i] in _INTENSIFYING_ADVERBS:
for j in range(i + 1, min(i + 3, n)):
if words_lower[j] in _POSITIVE_ADJECTIVE_HEADS:
f = VOCABULARY.get(words_lower[j])
v_boost = f[0] * 1.3 if f else 35.0
return StructureMatch(
pattern="CONTRADICTION_RESOLVE",
confidence=0.90,
matched_indices=[i, j],
description=f"Head adjective '{words_lower[j]}' governs: adverb intensifies",
v_weight=v_boost,
d_weight=5.0, u_weight=0.0,
g_weight=0.0, w_weight=0.0,
)
# ── Pattern 2: Positive adjective + negative noun head ──
# "sweet revenge" -> negative noun governs
for i in range(n - 1):
f_i = VOCABULARY.get(words_lower[i])
if f_i and f_i[0] > 10:
for j in range(i + 1, min(i + 3, n)):
if words_lower[j] in _NEGATIVE_NOUN_HEADS:
f_j = VOCABULARY.get(words_lower[j])
v_push = min(f_j[0] * 1.2, -15.0) if f_j else -25.0
return StructureMatch(
pattern="CONTRADICTION_RESOLVE",
confidence=0.85,
matched_indices=[i, j],
description=f"Head noun '{words_lower[j]}' governs: adjective modifies",
v_weight=v_push,
d_weight=5.0, u_weight=5.0,
g_weight=0.0, w_weight=0.0,
)
# ── Pattern 3: Verb + positive qualifying complement ──
# "it hurts so good" -> "so good" overrides verb
for phrase in _POSITIVE_COMPLEMENT_PHRASES:
plen = len(phrase)
for i in range(n - plen + 1):
if all(words_lower[i + k] == phrase[k] for k in range(plen)):
# Found complement -- check for preceding negative verb
has_preceding_neg = any(
(r.force or VOCABULARY.get(r.word) or (0,))[0] < -10
for r in roles[:i]
)
if has_preceding_neg:
return StructureMatch(
pattern="CONTRADICTION_RESOLVE",
confidence=0.85,
matched_indices=list(range(i, i + plen)),
description=f"Qualifying complement '{' '.join(phrase)}' overrides verb",
v_weight=30.0,
d_weight=5.0, u_weight=0.0,
g_weight=0.0, w_weight=0.0,
)
# ── Pattern 4: Negative main verb + clause with positive ──
# "i hate how much i love you" -> hate dominates
for i, r in enumerate(roles):
if r.word in _NEGATIVE_MAIN_VERBS:
has_later_positive = any(j > i and j in pos_indices for j in pos_indices)
if has_later_positive:
f = r.force or VOCABULARY.get(r.word)
v_push = f[0] * 1.2 if f else -35.0
matched = [i] + [j for j in pos_indices if j > i]
return StructureMatch(
pattern="CONTRADICTION_RESOLVE",
confidence=0.85,
matched_indices=matched,
description=f"Main verb '{r.word}' governs polarity over clause",
v_weight=v_push,
d_weight=5.0, u_weight=5.0,
g_weight=0.0, w_weight=0.0,
)
return None
# ── Pragmatic convention detectors ─────────────────────────
def _numbers_context(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Numbers that deviate from human norms create emotional signal.
sleep < 5 hours -> negative
"only one" + social event -> negative (isolation)
"""
words = [r.word for r in roles]
words_lower = [w.lower() for w in words]
n = len(words_lower)
# ── Sleep deprivation: number < 5 near sleep words ──
for i, w in enumerate(words_lower):
if w.isdigit():
num = int(w)
if num <= 4:
window = words_lower[max(0, i - 3): min(n, i + 4)]
if any(sw in _SLEEP_WORDS for sw in window):
return StructureMatch(
pattern="NUMBERS_CONTEXT",
confidence=0.80,
matched_indices=[i],
description=f"Sleep deprivation: {num} hours",
v_weight=-20.0, d_weight=-10.0, u_weight=10.0,
g_weight=5.0, w_weight=-5.0,
)
# ── "only one/no one" + social event = isolation ──
has_social = any(w in _SOCIAL_EVENTS for w in words_lower)
if has_social:
for i in range(n - 1):
if words_lower[i] == "only":
next_w = words_lower[i + 1]
if next_w in ("one", "1", "two", "2", "me"):
social_idx = [j for j, w in enumerate(words_lower)
if w in _SOCIAL_EVENTS]
return StructureMatch(
pattern="NUMBERS_CONTEXT",
confidence=0.75,
matched_indices=[i, i + 1] + social_idx,
description="Social isolation: 'only one' at social event",
v_weight=-20.0, d_weight=-10.0, u_weight=0.0,
g_weight=10.0, w_weight=-10.0,
)
for i in range(n - 1):
if words_lower[i] == "no" and words_lower[i + 1] == "one":
social_idx = [j for j, w in enumerate(words_lower)
if w in _SOCIAL_EVENTS]
return StructureMatch(
pattern="NUMBERS_CONTEXT",
confidence=0.80,
matched_indices=[i, i + 1] + social_idx,
description="Social isolation: 'no one' at social event",
v_weight=-25.0, d_weight=-15.0, u_weight=5.0,
g_weight=10.0, w_weight=-15.0,
)
return None
def _negated_negative_compliment(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""NEGATOR + negative word + OTHER_REF = positive compliment.
"I couldn't have done it without you" = positive
"You're the reason I didn't give up" = positive
"I wouldn't be here without you" = positive
"""
words = [r.word for r in roles]
words_lower = [w.lower() for w in words]
n = len(words_lower)
# Need: negator present (role-based OR common contractions)
neg_indices = [r.position for r in roles if r.role == "NEGATOR"]
# Also check for contractions not in NEGATOR set
_EXTRA_NEGATORS = frozenset({
"couldnt", "couldn't", "wouldnt", "wouldn't",
"cant", "can't", "wont", "won't",
})
for i, w in enumerate(words_lower):
if w in _EXTRA_NEGATORS and i not in neg_indices:
neg_indices.append(i)
if not neg_indices:
return None
# Need: OTHER_REF or "you" present
other_indices = [r.position for r in roles
if r.role == "OTHER_REF" or r.word in ("you", "your", "yours")]
if not other_indices:
return None
# Check for compliment framing
has_without_you = False
for i in range(n - 1):
if words_lower[i] == "without" and words_lower[i + 1] in ("you", "your"):
has_without_you = True
break
has_reason = "reason" in words_lower
has_thanks = any(w in ("thanks", "thank", "grateful", "thankful")
for w in words_lower)
has_gratitude_verb = any(w in _GRATITUDE_VERBS for w in words_lower)
if has_without_you:
matched = neg_indices + other_indices
return StructureMatch(
pattern="NEGATED_NEGATIVE_COMPLIMENT",
confidence=0.90,
matched_indices=sorted(set(matched)),
description="Negated negative = positive compliment ('without you')",
v_weight=35.0, d_weight=5.0, u_weight=0.0,
g_weight=-5.0, w_weight=10.0,
)
if has_reason and neg_indices:
matched = neg_indices + other_indices
for ni in neg_indices:
_NEGATED_VERBS = frozenset({
"give", "gave", "fail", "failed", "quit",
"stop", "stopped", "fall", "fell",
}) | _GRATITUDE_VERBS
nearby_verbs = [r for r in roles
if abs(r.position - ni) <= 3
and r.word in _NEGATED_VERBS]
if nearby_verbs:
return StructureMatch(
pattern="NEGATED_NEGATIVE_COMPLIMENT",
confidence=0.85,
matched_indices=sorted(set(matched)),
description="Negated negative = positive compliment ('reason I didn't')",
v_weight=35.0, d_weight=5.0, u_weight=0.0,
g_weight=-5.0, w_weight=10.0,
)
if has_thanks and neg_indices:
matched = neg_indices + other_indices
return StructureMatch(
pattern="NEGATED_NEGATIVE_COMPLIMENT",
confidence=0.80,
matched_indices=sorted(set(matched)),
description="Negated negative = positive compliment (gratitude frame)",
v_weight=35.0, d_weight=5.0, u_weight=0.0,
g_weight=-5.0, w_weight=10.0,
)
if has_gratitude_verb:
for ni in neg_indices:
for oi in other_indices:
if abs(ni - oi) <= 6:
return StructureMatch(
pattern="NEGATED_NEGATIVE_COMPLIMENT",
confidence=0.75,
matched_indices=sorted({ni, oi}),
description="Negated negative near other-ref = possible compliment",
v_weight=30.0, d_weight=5.0, u_weight=0.0,
g_weight=-5.0, w_weight=10.0,
)
return None
def _recovery_small_win(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Mundane action + temporal rarity marker = recovery milestone.
"I got out of bed today" = positive milestone for someone struggling
"I ate a full meal" = recovery signal
"I finally took a shower" = small win
"""
words = [r.word for r in roles]
text_lower = " ".join(w.lower() for w in words)
matched_win = None
for win in _MUNDANE_WINS:
if win in text_lower:
matched_win = win
break
if matched_win is None:
return None
words_lower = [w.lower() for w in words]
has_temporal = any(w in _TEMPORAL_RARITY for w in words_lower)
has_first_time = "for the first time" in text_lower
has_self = any(r.role == "SELF_REF" for r in roles)
if not has_temporal and not has_first_time and not has_self:
return None
conf = 0.70
if has_temporal or has_first_time:
conf = 0.85
if has_self:
conf = min(conf + 0.10, 0.95)
win_words = matched_win.split()
matched_indices = []
for i in range(len(words_lower) - len(win_words) + 1):
if all(words_lower[i + k] == win_words[k] for k in range(len(win_words))):
matched_indices = list(range(i, i + len(win_words)))
break
return StructureMatch(
pattern="RECOVERY_SMALL_WIN",
confidence=conf,
matched_indices=matched_indices,
description=f"Recovery small win: '{matched_win}'",
v_weight=25.0, d_weight=10.0, u_weight=0.0,
g_weight=-5.0, w_weight=15.0,
)
# ── Ambiguity hold pattern ──────────────────────────────────
def _ambiguity_hold(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Extreme V contradiction with no disambiguator = ambiguous intent.
"death is awesome im going to jump" -- very positive + very negative
words with no context to resolve. Could be suicidal or could be
about a video game. Without disambiguators (lol, haha, game, bungee,
bridge, help, please), pull V toward neutral and flag ambiguous.
This is NOT sarcasm detection. This catches genuinely unresolvable
V contradictions where the engine should refuse to commit.
"""
from .vocabulary import VOCABULARY
# Collect per-word V forces
v_forces = []
for r in roles:
f = r.force or VOCABULARY.get(r.word)
if f and abs(f[0]) > 5:
v_forces.append(f[0])
if len(v_forces) < 2:
return None
# Compute variance: need both strong positive AND strong negative
max_pos = max((v for v in v_forces if v > 0), default=0)
max_neg = min((v for v in v_forces if v < 0), default=0)
variance = max_pos - max_neg # e.g., 30 - (-35) = 65
THRESHOLD = 50 # need significant contradiction
if variance < THRESHOLD:
return None
# Check for disambiguators that resolve the contradiction
_HUMOR_DISAMBIG = frozenset({
"lol", "lmao", "haha", "hahaha", "rofl", "lmfao",
"heh", "hehe", "jk", "kidding", "joking",
})
_CONTEXT_DISAMBIG = frozenset({
"game", "games", "gaming", "bungee", "skydiving",
"roller", "coaster", "movie", "film", "show",
"song", "music", "book", "story", "video",
"roblox",
})
_CRISIS_DISAMBIG = frozenset({
"help", "please", "cant", "dont", "stop",
"anymore", "tired", "exhausted", "done",
})
words = [r.word for r in roles]
has_humor = any(w in _HUMOR_DISAMBIG for w in words)
has_context = any(w in _CONTEXT_DISAMBIG for w in words)
has_crisis = any(w in _CRISIS_DISAMBIG for w in words)
if has_humor or has_context or has_crisis:
return None
# Also don't fire if SLANG_DEATH_HUMOR or SELF_HARM_INTENT already detected
# (those patterns already resolved the ambiguity)
# This is checked implicitly: both those patterns use disambiguators.
# Don't fire if there's a SELF_REF -- that's more likely personal/crisis
has_self = any(r.role == "SELF_REF" for r in roles)
conf = 0.85
# Pull V toward W (neutral baseline)
# The actual V correction happens in pendulum.py apply_structures
return StructureMatch(
pattern="AMBIGUITY_HOLD",
confidence=conf,
matched_indices=list(range(len(roles))),
description=f"Extreme V contradiction (variance={variance}) with no disambiguator",
v_weight=0.0, # V correction handled specially in pendulum
d_weight=0.0, u_weight=10.0, g_weight=5.0, w_weight=0.0,
)
# ── V8 COUNCIL detectors ─────────────────────────────────────
def _boundary_violation(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Structural betrayal: molecular shape toxicity.
OTHER_REF + intimate/violation action + SELF_POSSESSIVE + RELATION_REF
= boundary violation. No individual atom carries the charge — it
emerges from the configuration.
"""
from .vocabulary import VOCABULARY as _V
other_idx = [i for i, r in enumerate(roles) if r.role == "OTHER_REF"]
if not other_idx:
return None
_INCLUSIVE = {"we", "us", "our", "ours", "ourselves", "were", "weve"}
if all(roles[i].word in _INCLUSIVE for i in other_idx):
return None
self_idx = [i for i, r in enumerate(roles) if r.role == "SELF_REF"]
relation_idx = [i for i, r in enumerate(roles) if r.role == "RELATION_REF"]
has_self_possessive = any(roles[i].word in ("my", "mine", "our") for i in self_idx)
words = [r.word for r in roles]
# Path 1: Intimate boundary violation
_INTIMATE_VERBS = frozenset({
"sleeping", "slept", "kissing", "kissed", "seeing",
"texting", "sexting", "hooking", "hooked",
})
has_intimate = any(w in _INTIMATE_VERBS for w in words)
if has_intimate and has_self_possessive and relation_idx:
rel_g = 15
for ri in relation_idx:
rf = roles[ri].force or _V.get(roles[ri].word)
if rf:
rel_g = max(rel_g, abs(rf[4]))
force = -(rel_g * 2.0 * 1.5)
return StructureMatch(
pattern="BOUNDARY_VIOLATION",
confidence=0.85,
matched_indices=sorted(set(other_idx + relation_idx)),
description="Intimate boundary violation",
v_weight=force, d_weight=-20.0, u_weight=15.0,
g_weight=25.0, w_weight=force * 0.5,
)
# Path 2: Theft/financial violation
_THEFT_VERBS = frozenset({
"stole", "stolen", "stealing", "drained", "draining",
"emptied", "took", "taking", "siphoned", "embezzled",
})
possession_idx = [i for i, r in enumerate(roles) if r.role == "POSSESSION"]
has_theft = any(w in _THEFT_VERBS for w in words)
if has_theft and (has_self_possessive or possession_idx):
return StructureMatch(
pattern="BOUNDARY_VIOLATION",
confidence=0.75,
matched_indices=sorted(set(other_idx + possession_idx)),
description="Theft/financial boundary violation",
v_weight=-30.0, d_weight=-20.0, u_weight=15.0,
g_weight=20.0, w_weight=-15.0,
)
# Path 3: Deception violation
_DECEPTION_MARKERS = frozenset({
"double", "secret", "secretly", "hidden", "fake", "faked",
"behind",
})
has_deception = any(w in _DECEPTION_MARKERS for w in words)
if has_deception:
return StructureMatch(
pattern="BOUNDARY_VIOLATION",
confidence=0.65,
matched_indices=other_idx,
description="Deception boundary violation",
v_weight=-25.0, d_weight=-15.0, u_weight=10.0,
g_weight=15.0, w_weight=-10.0,
)
return None
def _mundane_hyperbole(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Crisis-class word bonded to mundane subject = hyperbole, not crisis.
"this homework is killing me" — killing + homework (mundane) = hyperbole
"i want to die this traffic is insane" — die + traffic (mundane) = complaint
Computed from PROPERTIES: a word is mundane if it has low |V|, low |G|,
low |A|, and is not a person role. The crisis word's charge is absorbed
by the inert context.
"""
from .vocabulary import VOCABULARY as _V
# Suppress in grief/loss context: mundane objects are the SETTING
# not the object of complaint. "the house feels empty without her"
# is NOT mundane hyperbole — it's grief using the house as vehicle.
_GRIEF_CONTEXT = frozenset({
"without", "miss", "missed", "missing", "grief", "grieve",
"gone", "lost", "loss", "died", "death", "passed",
"funeral", "memorial", "bury", "mourn", "mourning",
"remember", "remembered", "remembering", "reminds",
"empty", "silence", "silent", "alone",
"supposed", "would", "shouldve", "wouldve", "couldve", # counterfactual grief
"donated", "donate", # disposing of belongings = grief
"worst", # "holidays are the worst now" = grief superlative
"keeps", "kept", # persistence of unwanted state
})
words = [r.word for r in roles]
has_grief_context = any(w in _GRIEF_CONTEXT for w in words)
# Also check for absent-person markers (possessive + no active subject)
_ABSENT_PERSON = frozenset({"her", "him", "his", "their", "them"})
has_absent_person = any(w in _ABSENT_PERSON for w in words)
if has_grief_context:
return None
# Find crisis-class words (|dV| >= 25)
crisis_idx = []
for i, r in enumerate(roles):
f = r.force or _V.get(r.word)
if f and abs(f[0]) >= 25:
crisis_idx.append(i)
if not crisis_idx:
return None
# Find mundane NOUNS only (not verbs, not people)
# The key: "homework" is a mundane noun (subject/topic of complaint)
# "want" is a verb — NOT a mundane subject even if it has low forces
_PERSON_ROLES = {"SELF_REF", "OTHER_REF", "RELATION_REF"}
_SKIP_ROLES = {"CONNECTOR", "NEGATOR", "AMPLIFIER", "COMPRESSOR",
"HEDGE", "FILLER", "TEMPORAL", "REGISTER_CASUAL",
"TRANSFER", "ACQUIRE", "EMOTIONAL", "POWER",
"SUBMISSION", "PULL_TOWARD", "PULL_AWAY", "PULL_RESOLVED"}
# Also skip common verbs that aren't nouns
_NON_NOUN_WORDS = frozenset({
# Verbs
"want", "need", "make", "makes", "making", "get", "got",
"take", "took", "give", "gave", "come", "go", "going",
"say", "said", "tell", "told", "think", "know", "feel",
"is", "was", "are", "were", "been", "being",
"have", "had", "has", "do", "did", "does",
"can", "could", "will", "would", "should", "might",
"try", "stop", "end", "start", "keep", "let",
# Determiners / pronouns / function words
"the", "a", "an", "this", "that", "these", "those",
"it", "its", "there", "here", "some", "any",
"better", "worse", "more", "less", "much", "very",
"just", "even", "still", "already", "now", "then",
"off", "on", "up", "down", "out", "in", "at", "by",
"for", "to", "of", "with", "from", "about",
"so", "too", "really", "pretty", "quite",
"long", "short", "big", "small", "new", "old",
"everything", "anything", "nothing", "something", # pronouns, not mundane nouns
"be", "being", "become", "became", # copulas
"out", "away", "back", "over", "off", # particles
"a", "an", # articles
"moment", "time", "day", "night", "year", # temporal nouns
"every", "each", "all", # quantifiers
"touch", "run", "walk", "sit", "stand", "look", # common intransitive verbs
})
# Explicit known-mundane everyday nouns that may be OOV. An OOV word
# by itself must never qualify as mundane context (see below).
_KNOWN_MUNDANE_OOV = frozenset({
"monday", "tuesday", "wednesday", "thursday", "friday",
"meeting", "meetings", "homework", "traffic", "commute",
"deadline", "deadlines", "overtime", "chores", "bills",
"laundry", "dishes", "errands", "groceries", "parking",
"inbox", "email", "emails", "wifi", "printer", "spreadsheet",
"spreadsheets", "paperwork", "exam", "exams", "midterms",
"finals", "essay", "assignment", "assignments",
})
mundane_idx = []
for i, r in enumerate(roles):
if r.role in _PERSON_ROLES or r.role in _SKIP_ROLES:
continue
if r.word in _NON_NOUN_WORDS:
continue
f = r.force or _V.get(r.word)
if f is None:
# Out-of-vocabulary is NOT evidence of mundanity: slang and
# uncommon emotional words are OOV too ("number" in "i still
# have his number saved"). Only count OOV tokens that are
# explicitly known-mundane everyday nouns.
if r.role == "NEUTRAL" and r.word in _KNOWN_MUNDANE_OOV:
mundane_idx.append(i)
elif abs(f[0]) <= 12 and abs(f[4]) < 15 and abs(f[1]) <= 15:
mundane_idx.append(i)
if not mundane_idx:
return None
# Check: mundane noun is structurally the TOPIC (appears as subject
# or as the object of a complaint). Must be near a crisis word.
# BUT: if SELF_REF is the SUBJECT (appears BEFORE the crisis word),
# this is self-directed, not mundane hyperbole.
# "im the worst person" → SELF_REF before "worst" → suppress
# "homework is killing me" → SELF_REF after "killing" → allow
# Suppress when SELF_REF is subject AND mundane nouns describe self (not external cause)
# "im the worst person" → "person" describes self → suppress
# "im drowning in homework" → "homework" is external cause → allow
# Person-descriptors near crisis word = self-directed, not mundane cause
_PERSON_DESCRIPTORS = frozenset({
"person", "human", "guy", "man", "woman", "girl", "boy",
"one", "friend", "mother", "father", "parent", "kid",
"mentor", "teacher", "boss", "partner", "colleague",
})
has_self_as_subject = any(roles[j].role == "SELF_REF" for j in range(min(2, len(roles))))
if has_self_as_subject:
# Check if ALL mundane nouns are person-descriptors
all_person_desc = mundane_idx and all(
roles[mi].word in _PERSON_DESCRIPTORS for mi in mundane_idx
)
if all_person_desc:
return None
for ci in crisis_idx:
for mi in mundane_idx:
dist = abs(ci - mi)
if dist <= 6:
return StructureMatch(
pattern="MUNDANE_HYPERBOLE",
confidence=0.80,
matched_indices=sorted({ci, mi}),
description="Crisis word defused by mundane context",
v_weight=20.0,
d_weight=0.0, u_weight=0.0,
g_weight=-10.0, w_weight=10.0,
)
return None
def _self_erasure(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + desire verb + erasure verb = wanting to not exist."""
_ERASURE_VERBS = frozenset({
"disappear", "vanish", "fade", "dissolve",
"invisible", "gone", "erase", "erased",
})
_DESIRE_VERBS = frozenset({"want", "wish", "hope", "need", "wanna"})
has_strong_self = any(r.word in _STRONG_SELF_WORDS for r in roles)
if not has_strong_self:
return None
has_desire = any(r.word in _DESIRE_VERBS for r in roles)
has_erasure = any(r.word in _ERASURE_VERBS for r in roles)
if has_desire and has_erasure:
return StructureMatch(
pattern="SELF_ERASURE",
confidence=0.90,
matched_indices=list(range(len(roles))),
description="Desire to cease existing",
v_weight=-50.0, d_weight=-25.0, u_weight=30.0,
g_weight=35.0, w_weight=-40.0,
)
return None
def _divestiture(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + giving away + possessions = end-of-life preparation.
"i just gave my dog to my neighbor" — SELF + TRANSFER + RELATION/POSSESSION
"i gave everything away" — SELF + TRANSFER + universal
"ive been giving my stuff away" — SELF + TRANSFER + my-POSSESSION + "away"
"i gave away my records yesterday" — both particle orders count
"""
has_self = any(r.role == "SELF_REF" for r in roles)
has_transfer = any(r.role == "TRANSFER" for r in roles)
has_universal = any(r.word in ("all", "everything", "every") for r in roles)
has_relation_or_possession = any(
r.role in ("RELATION_REF", "POSSESSION") for r in roles
)
# Check for recipient: "to/with" + person/relation
has_recipient = any(
r.word in ("to", "with") and i + 1 < len(roles)
and any(roles[j].role in ("OTHER_REF", "RELATION_REF") for j in range(i + 1, min(len(roles), i + 3)))
for i, r in enumerate(roles)
)
# "away" particle marks divestment direction in either order:
# "giving away my stuff" / "giving my stuff away". Progressive and
# perfect forms ("ive been giving", "i gave") all surface as
# TRANSFER, so tense is already covered.
has_away = any(r.word == "away" for r in roles)
# First-person possession: "my/mine" directly heading a thing-noun
# (POSSESSION role, or a generic plural like "records"). Excludes
# people ("my parents", RELATION_REF) and non-possessed objects
# ("free samples", "the bride", "prizes").
fp_possession = False
for i, r in enumerate(roles):
if r.word not in ("my", "mine"):
continue
for j in (i + 1, i + 2):
if j < len(roles):
rj = roles[j]
if rj.role == "POSSESSION" or (
rj.role == "NEUTRAL"
and rj.word.endswith("s")
and len(rj.word) > 3
):
fp_possession = True
break
if fp_possession:
break
if has_self and has_transfer:
if has_universal or (has_relation_or_possession and has_recipient) \
or (fp_possession and (has_away or has_recipient)):
conf = 0.80 if has_universal else 0.65
return StructureMatch(
pattern="DIVESTITURE",
confidence=conf,
matched_indices=list(range(len(roles))),
description="Divesting possessions",
v_weight=-35.0, d_weight=-20.0, u_weight=35.0,
g_weight=40.0, w_weight=-38.0,
)
return None
def _method_fixation(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + persistence + crisis method noun = fixation on method."""
_METHOD_NOUNS = frozenset({
"pills", "pill", "gun", "pistol", "rope", "bridge",
"knife", "blade", "razor", "noose", "ledge", "rail",
})
_PERSISTENCE = frozenset({"keep", "keeps", "kept", "still", "always"})
has_self = any(r.word in _STRONG_SELF_WORDS for r in roles)
has_method = any(r.word in _METHOD_NOUNS for r in roles)
has_persistence = any(r.word in _PERSISTENCE for r in roles)
if has_self and has_method and has_persistence:
return StructureMatch(
pattern="METHOD_FIXATION",
confidence=0.90,
matched_indices=list(range(len(roles))),
description="Fixation on crisis method",
v_weight=-55.0, d_weight=-30.0, u_weight=40.0,
g_weight=45.0, w_weight=-35.0,
)
return None
# ── V7 detectors ──────────────────────────────────────────────
def _rarity_marker(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""RARITY word + action/event + TEMPORAL = milestone/achievement.
"my kid took their first steps today"
"for the first time in years"
"finally graduated"
Rarity markers ("first", "finally") near neutral actions create
urgency charge and positive V boost. The rarity IS the emotion.
"""
_RARITY_WORDS = frozenset({
"first", "finally", "inaugural", "debut",
})
_MILESTONE_VERBS = frozenset({
"got", "get", "took", "take", "made", "make",
"passed", "graduated", "started", "began",
"won", "earned", "achieved", "completed",
"said", "walked", "stepped",
})
rarity_idx = [i for i, r in enumerate(roles) if r.word in _RARITY_WORDS]
if not rarity_idx:
return None
words = [r.word for r in roles]
has_milestone = any(w in _MILESTONE_VERBS for w in words)
has_temporal = any(r.role == "TEMPORAL" for r in roles)
has_self_or_relation = any(r.role in ("SELF_REF", "RELATION_REF") for r in roles)
# Need at least rarity + one other signal
signals = sum([has_milestone, has_temporal, has_self_or_relation])
if signals == 0:
return None
# "first" alone is too common. Need context.
conf = 0.4 + 0.15 * signals
v_boost = 25.0 + 10.0 * signals
return StructureMatch(
pattern="RARITY_MARKER",
confidence=min(conf, 0.95),
matched_indices=rarity_idx,
description="Rarity/milestone marker amplifies neutral action to positive",
v_weight=v_boost, d_weight=10.0, u_weight=15.0,
g_weight=10.0, w_weight=10.0,
)
def _abandonment(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""OTHER_REF + (TRANSFER or departure verb) + RELATION_REF/POSSESSION = abandonment.
"she took the kids and left"
"he packed his stuff and left"
"she walked out on us"
Abandonment is structural: SOMEONE + TOOK/LEFT + PEOPLE/THINGS.
The subject is OTHER_REF (not self), the action is departure,
and the objects are relationships or possessions.
"""
_DEPARTURE_WORDS = frozenset({
"left", "leave", "leaving", "gone",
"packed", "disappeared", "vanished",
})
has_other = any(r.role == "OTHER_REF" for r in roles)
if not has_other:
return None
departure_idx = [i for i, r in enumerate(roles)
if r.word in _DEPARTURE_WORDS or r.role == "TRANSFER"]
if not departure_idx:
return None
# Need something taken or someone left behind
has_relation = any(r.role == "RELATION_REF" for r in roles)
has_possession = any(r.role == "POSSESSION" for r in roles)
has_acquire = any(r.role == "ACQUIRE" for r in roles) # "took"
if not (has_relation or has_possession or has_acquire):
return None
# More objects = worse abandonment
obj_count = sum([has_relation, has_possession])
conf = 0.65 + 0.10 * obj_count
return StructureMatch(
pattern="ABANDONMENT",
confidence=min(conf, 0.95),
matched_indices=departure_idx,
description="Someone departed with/from relationships or possessions",
v_weight=-25.0, d_weight=-15.0, u_weight=20.0,
g_weight=30.0, w_weight=-15.0,
)
def _life_achievement(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Life event achievement detection.
Path 1: ACQUIRE/got + high-gravity noun = "got the job", "closed on the house"
Path 2: Life event verbs + RELATION_REF/SELF_REF = "was born", "proposed", "adopted"
High-gravity nouns near acquire verbs = life event achievement.
"""
from .vocabulary import VOCABULARY
# ── Path 2: Life event verb (no ACQUIRE needed) ──
_LIFE_EVENT_VERBS = frozenset({
"born", "proposed", "adopted", "graduated", "married",
"engaged", "promoted", "survived", "won", "accepted",
"passed", "cleared", "nailed",
"madeitthrough", "madeit", "survived",
})
event_idx = [i for i, r in enumerate(roles) if r.word in _LIFE_EVENT_VERBS]
if event_idx:
has_self = any(r.role == "SELF_REF" for r in roles)
has_relation = any(r.role == "RELATION_REF" for r in roles)
has_temporal = any(r.role == "TEMPORAL" for r in roles)
signals = sum([has_self, has_relation, has_temporal])
if signals >= 1:
conf = 0.55 + 0.10 * signals
return StructureMatch(
pattern="LIFE_ACHIEVEMENT",
confidence=min(conf, 0.95),
matched_indices=event_idx,
description=f"Life event: {roles[event_idx[0]].word}",
v_weight=25.0, d_weight=10.0, u_weight=10.0,
g_weight=15.0, w_weight=12.0,
)
# ── Path 1: ACQUIRE + high-gravity noun ──
# ACQUIRE verbs or compound tokens that function as acquire (closedon)
acquire_idx = [i for i, r in enumerate(roles)
if r.role == "ACQUIRE" or r.word in ("closedon",)]
if not acquire_idx:
return None
# Find high-gravity nouns or POSSESSION near acquire verbs
_ACHIEVEMENT_CONTEXTS = frozenset({
"job", "promotion", "raise", "offer", "accepted",
"engaged", "married", "pregnant", "baby",
"house", "apartment", "car",
"scholarship", "degree", "diploma",
"citizenship", "visa", "approved",
"school", "program", "college", "university",
"exam", "bar", "license", "certification",
"application", "interview", "audition",
"surgery", "treatment", "chemo", "rehab",
})
achievement_idx = []
max_g = 0
for i, r in enumerate(roles):
if r.word in _ACHIEVEMENT_CONTEXTS:
f = r.force or VOCABULARY.get(r.word)
g = abs(f[4]) if f else 20
if g > max_g:
max_g = g
achievement_idx.append(i)
elif r.role == "POSSESSION":
f = r.force or VOCABULARY.get(r.word)
g = abs(f[4]) if f else 0
if g >= 10: # Only count high-gravity possessions as achievements
achievement_idx.append(i)
max_g = max(max_g, g)
if not achievement_idx:
return None
# Exclude discovery/investigation contexts: "found the messages" is NOT achievement
_EVIDENCE_NOUNS = frozenset({
"messages", "texts", "emails", "photos", "pictures",
"receipts", "letters", "notes", "evidence", "proof",
})
words = [r.word for r in roles]
if any(w in _EVIDENCE_NOUNS for w in words):
return None
# "found" without excitement/milestone context = discovery, not achievement
_DISCOVERY_VERBS = frozenset({"found", "discovered", "noticed", "saw", "spotted"})
has_discovery = any(roles[i].word in _DISCOVERY_VERBS for i in acquire_idx)
has_excitement = any(r.role in ("AMPLIFIER", "TEMPORAL") for r in roles)
if has_discovery and not has_excitement:
return None
# Check proximity: acquire near achievement
for ai in acquire_idx:
for ci in achievement_idx:
if abs(ai - ci) <= 5:
has_self = any(r.role == "SELF_REF" for r in roles)
has_temporal = any(r.role == "TEMPORAL" for r in roles)
conf = 0.55 + 0.10 * has_self + 0.10 * has_temporal
v_boost = 20.0 + max_g * 0.3
return StructureMatch(
pattern="LIFE_ACHIEVEMENT",
confidence=min(conf, 0.95),
matched_indices=sorted(set([ai, ci])),
description="Acquired high-gravity life event",
v_weight=v_boost, d_weight=15.0, u_weight=10.0,
g_weight=15.0, w_weight=15.0,
)
return None
def _self_insignificance(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + NEGATOR + {matter, count, belong, deserve, enough, worthy}
= "I don't matter" / "I'm not enough" / "I don't belong"
Self-worth erosion through negation of significance.
"""
_SIGNIFICANCE_WORDS = frozenset({
"matter", "count", "belong", "deserve", "enough",
"worthy", "important", "wanted", "needed", "loved",
"care", "cared",
})
self_idx = [i for i, r in enumerate(roles) if r.role == "SELF_REF"]
neg_idx = [i for i, r in enumerate(roles) if r.role == "NEGATOR"]
sig_idx = [i for i, r in enumerate(roles) if r.word in _SIGNIFICANCE_WORDS]
if not self_idx or not neg_idx or not sig_idx:
return None
# SELF_REF near NEGATOR near significance word
for si in self_idx:
for ni in neg_idx:
if abs(si - ni) <= 3:
for wi in sig_idx:
if abs(ni - wi) <= 3:
return StructureMatch(
pattern="SELF_INSIGNIFICANCE",
confidence=0.80,
matched_indices=sorted({si, ni, wi}),
description="Self negated significance",
v_weight=-25.0, d_weight=-15.0,
u_weight=0.0, g_weight=-10.0,
w_weight=-30.0,
)
return None
def _self_replacement(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""SELF_REF + wish/want + 'someone else'/'different person'/'anyone but'
= wanting to not be oneself. Deep self-worth damage.
"""
_DESIRE_WORDS = frozenset({"wish", "wished", "want", "wanted", "rather"})
_REPLACEMENT_WORDS = frozenset({
"else", "different", "another", "other",
})
words = [r.word for r in roles]
has_self = any(r.role == "SELF_REF" for r in roles)
has_desire = any(w in _DESIRE_WORDS for w in words)
has_replacement = any(w in _REPLACEMENT_WORDS for w in words)
if has_self and has_desire and has_replacement:
idx = [i for i, r in enumerate(roles)
if r.role == "SELF_REF" or r.word in _DESIRE_WORDS or r.word in _REPLACEMENT_WORDS]
return StructureMatch(
pattern="SELF_REPLACEMENT",
confidence=0.75,
matched_indices=idx,
description="Desire to not be self",
v_weight=-20.0, d_weight=-15.0,
u_weight=5.0, g_weight=-10.0,
w_weight=-35.0,
)
return None
def _persistent_absence(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Persistence markers + absent person reference = ongoing grief.
"i still set two places at the table" — persistence (still) + domestic
"every song reminds me of him" — universality (every) + absent person (him)
"i keep her voicemail just to hear her voice" — persistence (keep) + ghost possession (her)
"i cant go back to that restaurant" — avoidance + place
"the holidays will never be the same" — permanence (never) + change (same)
The grief is in the STRUCTURE: a routine persists, but the person is gone.
Or: a universal trigger connects everything to the absent person.
"""
words = [r.word for r in roles]
_PERSISTENCE = frozenset({
"still", "keep", "keeps", "kept", "always", "every",
"never", "anymore", "forever",
"years", "months", "weeks", # temporal persistence markers
})
_ABSENT_MARKERS = frozenset({
"her", "him", "his", "their", "them",
"without", "gone", "empty", "alone",
})
_AVOIDANCE = frozenset({
"cant", "can't", "wont", "won't", "couldnt", "couldn't",
"back", "anymore",
})
_GRIEF_VOCAB = frozenset({
"grief", "grieve", "miss", "missed", "missing",
"loss", "lost", "mourn", "mourning",
"reminds", "reminded", "remember", "remembered",
"donated", "donate", "packed", "cleaned", # disposing of belongings
})
has_persistence = any(w in _PERSISTENCE for w in words)
has_absent = any(w in _ABSENT_MARKERS for w in words)
has_avoidance = sum(1 for w in words if w in _AVOIDANCE)
has_grief_word = any(w in _GRIEF_VOCAB for w in words)
# Count persistence markers
persistence_count = sum(1 for w in words if w in _PERSISTENCE)
# Pattern 1: persistence + absent person, OR heavy persistence alone
if (has_persistence and has_absent) or persistence_count >= 2:
idx = [i for i, r in enumerate(roles) if r.word in _PERSISTENCE or r.word in _ABSENT_MARKERS]
# GHOST POSSESSION subcase: persistence + possessive of the absent
# person + a retention verb = keeping a dead person's things.
# "i still have his number saved", "i keep her voicemail".
# The kept object reads positive at word level ("saved" = +V),
# so this shape needs a stronger pull to land negative.
_POSSESSIVE_ABSENT = frozenset({"his", "her", "their"})
_RETENTION_VERBS = frozenset({"have", "keep", "keeps", "kept",
"saved", "save", "hold", "holding"})
if (has_persistence
and any(w in _POSSESSIVE_ABSENT for w in words)
and any(w in _RETENTION_VERBS for w in words)):
return StructureMatch(
pattern="PERSISTENT_ABSENCE",
confidence=0.75,
matched_indices=idx,
description="Retained possession of absent person",
v_weight=-45.0, d_weight=-10.0,
u_weight=0.0, g_weight=-15.0,
w_weight=-10.0,
)
return StructureMatch(
pattern="PERSISTENT_ABSENCE",
confidence=0.70,
matched_indices=idx,
description="Persistent routine for absent person",
v_weight=-25.0, d_weight=-10.0,
u_weight=0.0, g_weight=-15.0,
w_weight=-10.0,
)
# Pattern 2: avoidance of place/thing (grief avoidance)
# "i cant go back to that restaurant" — avoidance even without explicit absent person
if has_avoidance >= 2 or (has_avoidance >= 1 and has_absent):
idx = [i for i, r in enumerate(roles) if r.word in _AVOIDANCE or r.word in _ABSENT_MARKERS]
return StructureMatch(
pattern="PERSISTENT_ABSENCE",
confidence=0.65,
matched_indices=idx,
description="Grief avoidance",
v_weight=-20.0, d_weight=-10.0,
u_weight=0.0, g_weight=-10.0,
w_weight=-5.0,
)
# Pattern 3: explicit grief vocabulary
if has_grief_word:
idx = [i for i, r in enumerate(roles) if r.word in _GRIEF_VOCAB]
return StructureMatch(
pattern="PERSISTENT_ABSENCE",
confidence=0.60,
matched_indices=idx,
description="Explicit grief reference",
v_weight=-20.0, d_weight=-10.0,
u_weight=0.0, g_weight=-15.0,
w_weight=-5.0,
)
# Pattern 4: counterfactual + togetherness ("supposed to grow old together")
_COUNTERFACTUAL = frozenset({"supposed", "would", "shouldve", "wouldve", "couldve"})
_TOGETHERNESS = frozenset({"together", "forever", "always"})
has_counterfactual = any(w in _COUNTERFACTUAL for w in words)
has_togetherness = any(w in _TOGETHERNESS for w in words)
if has_counterfactual and has_togetherness:
idx = [i for i, r in enumerate(roles) if r.word in _COUNTERFACTUAL or r.word in _TOGETHERNESS]
return StructureMatch(
pattern="PERSISTENT_ABSENCE",
confidence=0.70,
matched_indices=idx,
description="Counterfactual togetherness grief",
v_weight=-25.0, d_weight=-10.0,
u_weight=0.0, g_weight=-15.0,
w_weight=-10.0,
)
# Pattern 5: "never be the same" / permanence of change
if "never" in words and "same" in words:
idx = [i for i, r in enumerate(roles) if r.word in ("never", "same")]
return StructureMatch(
pattern="PERSISTENT_ABSENCE",
confidence=0.60,
matched_indices=idx,
description="Permanent change grief",
v_weight=-20.0, d_weight=-10.0,
u_weight=0.0, g_weight=-10.0,
w_weight=-5.0,
)
return None
def _directed_dismissal(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""NEGATOR/rejection + OTHER_REF or communication verb = pushing someone away.
"dont ever talk to me again" — NEGATOR + finality (ever/again) + communication
"nobody asked for your opinion" — nobody + OTHER_REF possession
"you dont deserve her" — OTHER_REF + NEGATOR + entitlement
"youre just like your father" — comparison as insult (OTHER_REF + "like" + RELATION_REF)
"""
words = [r.word for r in roles]
has_other = any(r.role == "OTHER_REF" for r in roles)
has_negator = any(r.role == "NEGATOR" for r in roles)
_DISMISSAL_VERBS = frozenset({
"talk", "speak", "contact", "call", "text", "message",
"come", "show", "bother", "asked", "ask",
})
_FINALITY_ADVERBS = frozenset({
"ever", "again", "anymore", "never",
})
_COMPARISON_WORDS = frozenset({"like", "same", "just"})
has_dismissal_verb = any(w in _DISMISSAL_VERBS for w in words)
has_finality_adv = any(w in _FINALITY_ADVERBS for w in words)
has_relation = any(r.role == "RELATION_REF" for r in roles)
has_comparison = any(w in _COMPARISON_WORDS for w in words)
has_nobody = "nobody" in words or "noone" in words
# Pattern 1: "dont [ever] talk/come/bother [again]" — dismissal
if has_negator and has_dismissal_verb and (has_finality_adv or has_other):
idx = [i for i, r in enumerate(roles) if r.role == "NEGATOR" or r.word in _DISMISSAL_VERBS]
return StructureMatch(
pattern="DIRECTED_DISMISSAL",
confidence=0.75,
matched_indices=idx,
description="Pushing someone away",
v_weight=-25.0, d_weight=20.0,
u_weight=5.0, g_weight=0.0,
w_weight=0.0,
)
# Pattern 2: "nobody asked/cares" — invalidation
if has_nobody and has_dismissal_verb:
idx = [i for i, r in enumerate(roles) if r.word == "nobody" or r.word in _DISMISSAL_VERBS]
return StructureMatch(
pattern="DIRECTED_DISMISSAL",
confidence=0.70,
matched_indices=idx,
description="Invalidation",
v_weight=-20.0, d_weight=15.0,
u_weight=0.0, g_weight=0.0,
w_weight=-10.0,
)
# Pattern 3: "youre just like your father" — comparison as insult
# OTHER_REF + comparison + RELATION_REF
if has_other and has_comparison and has_relation:
idx = [i for i, r in enumerate(roles) if r.role in ("OTHER_REF", "RELATION_REF") or r.word in _COMPARISON_WORDS]
return StructureMatch(
pattern="DIRECTED_DISMISSAL",
confidence=0.65,
matched_indices=idx,
description="Comparison as insult",
v_weight=-20.0, d_weight=15.0,
u_weight=0.0, g_weight=0.0,
w_weight=-15.0,
)
return None
def _martyrdom_field(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Surface compliance + self-exclusion/resignation = passive aggression.
The molecular shape: positive/compliant surface words bonded to
self-exclusion or resignation markers. The positive atoms are fake —
their charge is inverted by the structural context.
"no go ahead have fun without me" — permission + exclusion
"i said its fine" — compliance + minimization
"must be nice to not have to worry" — false compliment + exclusion
"forget it it doesnt matter" — dismissal + self-negation
"sure whatever makes you happy" — compliance + resignation
"""
words = [r.word for r in roles]
_COMPLIANCE_SURFACE = frozenset({
"fine", "ok", "okay", "sure", "alright", "whatever",
"go", "ahead", "fun", "happy", "nice", "great",
"good", "glad", "cool", "enjoy",
"worries", "mind", "no", # "no worries", "dont mind me"
})
_SELF_EXCLUSION = frozenset({
"without", "me", "myself", "mine",
})
_RESIGNATION = frozenset({
"whatever", "forget", "doesnt", "dont", "didnt",
"matter", "care", "anyway", "anymore", "said",
"guess", "suppose", "apparently",
"just", "figure", "myself", # "ill just figure it out myself"
})
_FALSE_PRAISE = frozenset({
"must", "nice", "lucky", "easy",
})
compliance_count = sum(1 for w in words if w in _COMPLIANCE_SURFACE)
exclusion_count = sum(1 for w in words if w in _SELF_EXCLUSION)
resignation_count = sum(1 for w in words if w in _RESIGNATION)
has_self = any(r.role == "SELF_REF" for r in roles)
has_false_praise = sum(1 for w in words if w in _FALSE_PRAISE)
# Pattern 1: compliance + self-exclusion ("go ahead without me")
if compliance_count >= 1 and exclusion_count >= 1 and has_self:
idx = [i for i, r in enumerate(roles)
if r.word in _COMPLIANCE_SURFACE or r.word in _SELF_EXCLUSION]
return StructureMatch(
pattern="MARTYRDOM_FIELD",
confidence=0.75,
matched_indices=idx,
description="Surface compliance + self-exclusion",
v_weight=-30.0, d_weight=-10.0,
u_weight=5.0, g_weight=0.0,
w_weight=-15.0,
)
# Pattern 2: compliance + resignation ("fine", "forget it", "doesnt matter")
if (compliance_count >= 1 and resignation_count >= 2) or (compliance_count >= 2 and resignation_count >= 1):
idx = [i for i, r in enumerate(roles)
if r.word in _COMPLIANCE_SURFACE or r.word in _RESIGNATION]
return StructureMatch(
pattern="MARTYRDOM_FIELD",
confidence=0.70,
matched_indices=idx,
description="Surface compliance + resignation",
v_weight=-25.0, d_weight=-10.0,
u_weight=0.0, g_weight=0.0,
w_weight=-10.0,
)
# Pattern 3: false praise ("must be nice", "must be easy")
# GUARD: "must be nice out today" — weather/impersonal frame, no
# target. The PA reading requires the niceness to belong to a
# PERSON's situation ("must be nice to ..."), not the atmosphere.
weather_frame = any(
w == "nice" and i + 1 < len(words)
and words[i + 1] in ("out", "outside", "in", "today", "here")
for i, w in enumerate(words)
)
if has_false_praise >= 2 and not weather_frame:
idx = [i for i, r in enumerate(roles) if r.word in _FALSE_PRAISE]
return StructureMatch(
pattern="MARTYRDOM_FIELD",
confidence=0.70,
matched_indices=idx,
description="False praise / envy disguised as compliment",
v_weight=-25.0, d_weight=-15.0,
u_weight=5.0, g_weight=0.0,
w_weight=-10.0,
)
# Pattern 4: heavy resignation without surface ("forget it doesnt matter")
if resignation_count >= 3:
idx = [i for i, r in enumerate(roles) if r.word in _RESIGNATION]
return StructureMatch(
pattern="MARTYRDOM_FIELD",
confidence=0.65,
matched_indices=idx,
description="Heavy resignation",
v_weight=-25.0, d_weight=-10.0,
u_weight=0.0, g_weight=0.0,
w_weight=-10.0,
)
# Pattern 5: "i said its fine" — self + said + compliance (reported compliance)
has_said = "said" in words or "told" in words
if has_self and has_said and compliance_count >= 1:
idx = [i for i, r in enumerate(roles)
if r.role == "SELF_REF" or r.word in ("said", "told") or r.word in _COMPLIANCE_SURFACE]
return StructureMatch(
pattern="MARTYRDOM_FIELD",
confidence=0.65,
matched_indices=idx,
description="Reported compliance (minimization)",
v_weight=-20.0, d_weight=-10.0,
u_weight=0.0, g_weight=0.0,
w_weight=-10.0,
)
return None
# ── Tier-1 passive aggression: embedded-grievance patterns ────
# Passive aggression must be decodable by its target to function,
# so the complaint is smuggled into deniable grammatical structures
# (presupposition markers). These five detectors find the smuggling
# channels that live INSIDE the sentence. ("hope it was worth it"
# graduated from out-of-scope: the closed-complement grammar IS
# sentence-internal — see _retrospective_hope.) Truly context-
# dependent PA (bare "k") stays out of scope — it needs
# conversation history the engine doesn't have.
@staticmethod
def _clean_words(roles: List[WordRole]) -> List[str]:
"""Words with trailing punctuation stripped, for phrase matching."""
return [r.word.rstrip(".!?,;:…") for r in roles]
def _temporal_grievance(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Temporal rarity marker bound to ANOTHER PERSON's action = grievance.
"thanks for finally calling me back" — gratitude frame + "finally"
"nice of you to finally show up" — politeness frame + "finally"
"for once you actually listened" — "for once" + second person
"about time you did the dishes" — "about time" + second person
The marker ("finally", "for once", "about time", "at last")
presupposes a resented delay. Disambiguation against RARITY_MARKER
is the ACTOR: finally + SELF action = genuine relief/milestone
(RARITY_MARKER keeps it); finally + YOU action inside an
acknowledgment frame = embedded complaint.
GUARDS: "i finally got the job" (self actor), "we finally did it"
(joint actor), "you finally got the job!" (bare second person +
achievement verb — shared joy, no acknowledgment frame).
"""
words = self._clean_words(roles)
n = len(words)
_SECOND_PERSON = frozenset({
"you", "your", "youre", "youve", "youd", "youll", "u",
})
# Locate grievance-capable temporal markers
marker_idx = [] # (index, kind)
for i, w in enumerate(words):
if w == "finally":
marker_idx.append((i, "finally"))
elif w == "once" and i > 0 and words[i - 1] == "for":
marker_idx.append((i, "for_once"))
elif w == "time" and i > 0 and words[i - 1] == "about":
marker_idx.append((i, "about_time"))
elif w == "last" and i > 0 and words[i - 1] == "at":
marker_idx.append((i, "at_last"))
if not marker_idx:
return None
for mi, kind in marker_idx:
# Rule A: acknowledgment frame BEFORE the marker.
# "thanks for finally...", "thank you for finally...",
# "nice of you to finally...", "kind of you to finally..."
# Nobody thanks themselves — the actor is the target.
ack = False
for j in range(0, mi):
w = words[j]
if w in ("thanks", "thank") and mi - j <= 6:
ack = True
elif w in ("nice", "kind") and j + 1 < n and \
words[j + 1] == "of" and mi - j <= 6:
ack = True
# Marker must precede an action (not be sentence-final flourish)
if ack and mi < n - 1:
return StructureMatch(
pattern="TEMPORAL_GRIEVANCE",
confidence=0.85,
matched_indices=[mi],
description="Acknowledgment frame + resented-delay marker",
v_weight=-35.0, d_weight=10.0,
u_weight=5.0, g_weight=5.0,
w_weight=0.0, a_weight=10.0,
)
# Rule B: intrinsically-grievance markers + second person.
# "for once YOU...", "about time YOU...", "at last YOU..."
if kind in ("for_once", "about_time", "at_last"):
near_you = any(
words[k] in _SECOND_PERSON
for k in range(max(0, mi - 2), min(n, mi + 5))
)
if near_you:
return StructureMatch(
pattern="TEMPORAL_GRIEVANCE",
confidence=0.8,
matched_indices=[mi],
description="Resented-delay marker bound to second person",
v_weight=-35.0, d_weight=10.0,
u_weight=5.0, g_weight=5.0,
w_weight=0.0, a_weight=10.0,
)
# Rule C: "finally" + second-person actor + DELIBERATION verb.
# "you finally decided to answer" — "decided/bothered/managed"
# presupposes reluctance. Bare "you finally got the job" is
# shared joy and stays with RARITY_MARKER.
if kind == "finally":
_DELIBERATION = frozenset({
"decided", "bothered", "managed", "remembered",
"deigned", "chose",
})
you_before = any(
words[k] in _SECOND_PERSON
for k in range(max(0, mi - 3), mi)
)
delib_after = any(
words[k] in _DELIBERATION
for k in range(mi + 1, min(n, mi + 3))
)
if you_before and delib_after:
return StructureMatch(
pattern="TEMPORAL_GRIEVANCE",
confidence=0.8,
matched_indices=[mi],
description="Second person + finally + deliberation verb",
v_weight=-35.0, d_weight=10.0,
u_weight=5.0, g_weight=5.0,
w_weight=0.0, a_weight=10.0,
)
return None
def _exclusion_contrast(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Speaker's deprivation contrasted against target's enjoyment.
"glad one of us is having fun" — positive surface + partitive contrast
"some of us have to work for a living" — partitive + obligation
"must be nice to sleep in whenever you want" — false envy + infinitive
The partitive ("one of us", "some of us") splits the group into
the deprived speaker and the enjoying target; "must be nice to X"
assigns the enjoyment to the target's life, not the weather.
GUARDS: "must be nice out today" (impersonal/weather),
"one of us should drive" (logistics — no contrast charge).
"""
words = self._clean_words(roles)
n = len(words)
# Rule 1: "must be nice to ..." — envy frame with a target.
for i in range(n - 2):
if words[i] == "must" and words[i + 1] == "be" and \
words[i + 2] == "nice":
if i + 3 < n and words[i + 3] == "to":
return StructureMatch(
pattern="EXCLUSION_CONTRAST",
confidence=0.8,
matched_indices=[i, i + 1, i + 2],
description="False envy: target's ease vs speaker's deprivation",
v_weight=-30.0, d_weight=5.0,
u_weight=5.0, g_weight=5.0,
w_weight=-5.0, a_weight=8.0,
)
# Partitive phrases: "one of us", "some of us"
part_idx = None
for i in range(n - 2):
if words[i] in ("one", "some") and words[i + 1] == "of" and \
words[i + 2] == "us":
part_idx = i
break
if part_idx is None:
return None
# Rule 2: positive surface word right BEFORE the partitive —
# "glad one of us is having fun", "at least one of us is happy".
_POSITIVE_SURFACE = frozenset({
"glad", "nice", "good", "great", "happy", "least", "well",
})
if any(words[k] in _POSITIVE_SURFACE
for k in range(max(0, part_idx - 3), part_idx)):
return StructureMatch(
pattern="EXCLUSION_CONTRAST",
confidence=0.8,
matched_indices=[part_idx, part_idx + 1, part_idx + 2],
description="Positive surface + partitive exclusion",
v_weight=-30.0, d_weight=5.0,
u_weight=5.0, g_weight=5.0,
w_weight=-5.0, a_weight=8.0,
)
# Rule 3: partitive + obligation — "some of us have to work".
# "should/could" logistics ("one of us should drive") stays neutral;
# the grievance form is "have/has/had to" or "actually".
after = words[part_idx + 3: part_idx + 6]
for k in range(len(after) - 1):
if after[k] in ("have", "has", "had") and after[k + 1] == "to":
return StructureMatch(
pattern="EXCLUSION_CONTRAST",
confidence=0.75,
matched_indices=[part_idx, part_idx + 1, part_idx + 2],
description="Partitive + obligation: martyred contrast",
v_weight=-30.0, d_weight=5.0,
u_weight=5.0, g_weight=5.0,
w_weight=-5.0, a_weight=8.0,
)
if "actually" in after:
return StructureMatch(
pattern="EXCLUSION_CONTRAST",
confidence=0.7,
matched_indices=[part_idx, part_idx + 1, part_idx + 2],
description="Partitive + 'actually': martyred contrast",
v_weight=-30.0, d_weight=5.0,
u_weight=5.0, g_weight=5.0,
w_weight=-5.0, a_weight=8.0,
)
return None
def _ironic_deference(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Capitulation-as-attack: the surrender IS the weapon.
"youre clearly the expert" — certainty adverb + granted expertise
"no no youre clearly the expert here" — doubled marker intensifies
"fine youre right" — concession opener + granted victory
The speaker hands over authority they don't mean to hand over;
D stays UP because the surrender is actually an assertion.
GUARDS: "youre the expert what do you think we should do"
(genuine deference — asks a real question; also lacks the
certainty adverb), "you know what youre right i hadnt thought
of that" (sincere concession — elaborates WHY).
"""
words = self._clean_words(roles)
n = len(words)
_SECOND_PERSON = frozenset({"you", "your", "youre", "youve"})
_CERTAINTY = frozenset({"clearly", "obviously", "evidently"})
_EXPERT_NOUNS = frozenset({
"expert", "genius", "boss", "authority", "smartest", "professional",
})
_QUESTION_WORDS = frozenset({"what", "how", "which", "should", "?"})
# Doubled discourse marker ("no no", "sure sure") = intensifier
doubled = any(
words[i] == words[i + 1] and words[i] in ("no", "sure", "ok", "okay", "right", "fine")
for i in range(n - 1)
)
# Rule 1: certainty adverb + second person + expertise grant.
cert_idx = [i for i, w in enumerate(words) if w in _CERTAINTY]
expert_idx = [i for i, w in enumerate(words) if w in _EXPERT_NOUNS]
has_you = any(w in _SECOND_PERSON for w in words)
if cert_idx and expert_idx and has_you:
# GUARD: a genuine question after the deference = real deference
head = max(expert_idx)
asks_after = any(w in _QUESTION_WORDS for w in words[head + 1:])
if not asks_after:
conf = 0.8 + (0.1 if doubled else 0.0)
return StructureMatch(
pattern="IRONIC_DEFERENCE",
confidence=min(conf, 0.9),
matched_indices=sorted(set(cert_idx + expert_idx)),
description="Capitulation-as-attack: ironic expertise grant",
v_weight=-28.0, d_weight=15.0,
u_weight=5.0, g_weight=0.0,
w_weight=0.0, a_weight=8.0,
)
# Rule 2: concession opener + granted victory — "fine youre right",
# "fine you win". Sincere concession elaborates ("you know what
# youre right i hadnt thought of that") — guard on SELF_REF
# cognition after the grant.
for i, w in enumerate(words):
if w == "fine" and i + 2 < n + 1:
seg = words[i + 1: i + 4]
granted = False
grant_end = i
for k in range(len(seg) - 1):
if seg[k] in ("youre", "you") and seg[k + 1] in ("right", "win", "correct"):
granted = True
grant_end = i + 1 + k + 1
if granted:
# GUARD: elaboration after the grant = sincere concession
tail = words[grant_end + 1:]
elaborates = any(w2 in ("i", "im", "id", "ill") for w2 in tail)
if not elaborates:
conf = 0.75 + (0.1 if doubled else 0.0)
return StructureMatch(
pattern="IRONIC_DEFERENCE",
confidence=min(conf, 0.85),
matched_indices=[i, grant_end],
description="Concession opener + granted victory",
v_weight=-28.0, d_weight=15.0,
u_weight=5.0, g_weight=0.0,
w_weight=0.0, a_weight=8.0,
)
return None
def _faint_praise(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Minimal/hedged praise + dismissive concession.
"interesting choice but ok" — minimal praise + dismissive tail
"well thats one way to do it" — dismissive opener + grudging frame
"thats... something" — trailing-off non-praise
"bold strategy" — meme-coded ironic courage grant (standalone)
The praise is real grammar but empty content; the dismissive cue
(tail, opener, ellipsis) marks the withheld approval.
GUARDS: bare "interesting choice" and bare "thats one way to do it"
are ambiguous WITHOUT a dismissive cue — they stay neutral.
"interesting choice why that one" (sincere curiosity),
"thats something to be proud of" (something not utterance-final).
"""
raw_words = [r.word for r in roles]
words = self._clean_words(roles)
n = len(words)
_MINIMAL_ADJ = frozenset({
"interesting", "bold", "brave", "ambitious", "unique", "different",
})
_PRAISE_NOUNS = frozenset({
"choice", "strategy", "move", "decision", "idea",
"approach", "look", "plan", "take",
})
_DISMISSIVE_TAILS = frozenset({"ok", "okay", "sure", "whatever", "fine"})
# Rule 1: minimal adj + praise noun + dismissive cue.
for i in range(n - 1):
if words[i] in _MINIMAL_ADJ and words[i + 1] in _PRAISE_NOUNS:
tail = words[i + 2:]
# GUARD: sincere curiosity — a question follows the praise
if any(w in ("why", "what", "how", "tell") for w in tail):
return None
# Dismissive tail: "but ok", "i guess", trailing "whatever"
dismiss = False
for k in range(len(tail) - 1):
if tail[k] == "but" and tail[k + 1] in _DISMISSIVE_TAILS:
dismiss = True
if tail[k] == "i" and tail[k + 1] == "guess":
dismiss = True
# Standalone meme-coded irony: "bold strategy" as the whole
# utterance. ("interesting choice" alone stays neutral —
# genuinely ambiguous without more signal.)
standalone_ironic = (
n <= 3 and words[i] in ("bold", "brave")
and words[i + 1] in ("strategy", "move")
)
if dismiss or standalone_ironic:
return StructureMatch(
pattern="FAINT_PRAISE",
confidence=0.75,
matched_indices=[i, i + 1],
description="Minimal praise + dismissive concession",
v_weight=-25.0, d_weight=8.0,
u_weight=0.0, g_weight=0.0,
w_weight=0.0, a_weight=5.0,
)
# Rule 2: "thats... something" — trailing-off non-praise as the
# utterance's final word. Ellipsis or bare, but "something" must be
# terminal ("thats something to be proud of" stays untouched).
if n >= 2 and words[-1] == "something":
for k in range(max(0, n - 3), n - 1):
if words[k].startswith("thats") or words[k].startswith("that"):
# GUARD: genuine amazement opener ("wow thats something")
if any(w in ("wow", "woah", "whoa", "omg") for w in words[:k]):
break
# Ellipsis after "thats" = strong trailing-off cue;
# bare "thats something" still fires but weaker.
has_ellipsis = "..." in raw_words[k] or "…" in raw_words[k]
conf = 0.8 if has_ellipsis else 0.65
return StructureMatch(
pattern="FAINT_PRAISE",
confidence=conf,
matched_indices=[k, n - 1],
description="Trailing-off non-praise",
v_weight=-25.0, d_weight=8.0,
u_weight=0.0, g_weight=0.0,
w_weight=0.0, a_weight=5.0,
)
# Rule 3: dismissive opener + "thats one way to do it".
# The bare sentence is neutral (stress-test ambiguous); the
# grudging reading needs the discourse-marker opener ("well").
for i in range(n - 3):
if words[i] in ("well", "huh", "hm", "hmm") :
seg = words[i + 1: i + 6]
for k in range(len(seg) - 2):
if seg[k].startswith("that") and seg[k + 1] == "one" and seg[k + 2] == "way":
return StructureMatch(
pattern="FAINT_PRAISE",
confidence=0.75,
matched_indices=[i],
description="Dismissive opener + grudging acknowledgment",
v_weight=-25.0, d_weight=8.0,
u_weight=0.0, g_weight=0.0,
w_weight=0.0, a_weight=5.0,
)
return None
def _retrospective_hope(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Rhetorical hope aimed at a CLOSED outcome = accusation.
"hope it was worth it" — retrospective transaction audit
"hope youre happy now" — present-state self-satisfaction audit
"i hope youre proud of yourself" — ditto
"hope it was worth losing everything" — explicit cost named (strongest)
Real hope aims at OPEN outcomes. Hope aimed at an outcome the
addressee already knows is an instruction to self-audit — an
indictment in hope's grammar. THREE ingredients must co-occur:
(1) hope/hoping, (2) epistemically-closed complement (past
"was"/"were", or present-state "happy now"), (3) transactional
or self-satisfaction frame ("worth it/worth the X", "happy
now", "happy/satisfied with yourself", "proud of yourself").
GUARDS (each kills one ingredient): future/open complements
("will be worth it", "in the end", "someday") keep the outcome
open; benefit-frame retrospectives ("hope you slept well") have
no transaction audit; SELF_REF owning the audited choice
("i spent my savings on this, hope it was worth it") routes to
anxiety, not aggression — same actor-routing as
_temporal_grievance; supportive elaboration after the audit
("— you trained two years for this") rescues sincerity;
benefit-centered "paid off" is NOT cost-centered "worth it"
and is deliberately excluded.
"""
words = self._clean_words(roles)
n = len(words)
# Ingredient 1: hope verb
hope_idx = None
for i, w in enumerate(words):
if w in ("hope", "hoping"):
hope_idx = i
break
if hope_idx is None:
return None
# GUARD: self-owned choice. A SELF_REF before "hope" that is
# more than the hoper ("i hope", "i really hope" are fine; "i
# spent my savings on this, hope..." is not) owns the audited
# choice — anxiety, not aggression.
_HEDGE_ADVERBS = frozenset({
"really", "just", "truly", "honestly", "sincerely", "do",
"genuinely", "well", "so", "sure",
})
for i in range(hope_idx):
if roles[i].role == "SELF_REF":
between = words[i + 1: hope_idx]
if any(b not in _HEDGE_ADVERBS for b in between):
return None
after = words[hope_idx + 1:]
m = len(after)
# Supportive elaboration after the audit = sincerity rescue.
# "hope it was worth it — you trained two years for this":
# effort-acknowledgment or congratulatory content following the
# closed complement reopens the reading as shared hope.
_SUPPORTIVE = frozenset({
"trained", "worked", "earned", "deserve", "deserved",
"deserves", "sacrificed", "practiced", "studied", "proud",
"congrats", "congratulations",
})
def _tail_rescues(tail_start_abs: int) -> bool:
for k in range(tail_start_abs, n):
if words[k] in _SUPPORTIVE:
return True
f = roles[k].force
if f and f[0] >= 25:
return True
return False
# Explicit cost named in the complement ("worth LOSING
# everything"). Lexical set: loss verbs often arrive as
# PULL_RESOLVED with no force attached.
_COST_WORDS = frozenset({
"losing", "lost", "ruining", "ruined", "destroying",
"destroyed", "wrecking", "breaking", "burning", "ending",
"throwing",
})
def _tail_cost_named(tail_start_abs: int) -> bool:
for k in range(tail_start_abs, n):
if words[k] in _COST_WORDS:
return True
f = roles[k].force
if f and f[0] <= -20:
return True
return False
# ── Branch A: retrospective transaction audit ("worth") ──
worth_rel = next((k for k, w in enumerate(after) if w == "worth"), None)
if worth_rel is not None:
# Ingredient 2: epistemically CLOSED — past-tense copula
# between hope and worth. "will be worth", "its worth it in
# the end" have no was/were and stay open.
closed = any(b in ("was", "were") for b in after[:worth_rel])
# GUARD: explicit open/future markers anywhere after hope
_OPEN_MARKERS = frozenset({
"will", "itll", "thatll", "someday", "eventually", "end",
})
is_open = any(w in _OPEN_MARKERS for w in after)
# GUARD: SELF_REF inside the audited clause ("hope my
# gamble was worth it") — speaker owns the choice.
self_in_clause = any(
r.role == "SELF_REF" for r in roles[hope_idx + 1:]
)
if closed and not is_open and not self_in_clause:
tail_abs = hope_idx + 1 + worth_rel + 1
# Ingredient 3 at full strength: explicit cost named
# right in the complement ("worth losing everything").
# A named cost DOMINATES the sincerity rescue — the
# cost's content words ("your BEST friend") must not
# read as supportive elaboration.
cost_named = _tail_cost_named(tail_abs)
if not cost_named and _tail_rescues(tail_abs):
return None
conf = 0.85 if cost_named else 0.75
return StructureMatch(
pattern="RETROSPECTIVE_HOPE",
confidence=conf,
matched_indices=[hope_idx, hope_idx + 1 + worth_rel],
description="Hope at a closed outcome: retrospective transaction audit",
v_weight=-32.0, d_weight=10.0,
u_weight=5.0, g_weight=0.0,
w_weight=0.0, a_weight=8.0,
)
# ── Branch B: present-state self-satisfaction audit ──
# "hope youre happy now" / "happy with yourself" /
# "proud of yourself" / sentence-final "satisfied".
_SECOND_PERSON = frozenset({"you", "your", "youre", "youve", "u"})
has_you = any(w in _SECOND_PERSON for w in after[:3])
if not has_you:
return None
for k, w in enumerate(after[:6]):
abs_k = hope_idx + 1 + k
nxt = after[k + 1] if k + 1 < m else None
nxt2 = after[k + 2] if k + 2 < m else None
if w == "happy":
if nxt == "now":
end_abs = abs_k + 2
elif nxt == "with" and nxt2 == "yourself":
end_abs = abs_k + 3
else:
continue # "happy in your new home" — open complement
elif w == "proud":
if nxt == "of" and nxt2 == "yourself":
end_abs = abs_k + 3
else:
continue # "proud of your work" — genuine
elif w == "satisfied":
if nxt is None or nxt == "now":
end_abs = abs_k + (2 if nxt == "now" else 1)
elif nxt == "with" and nxt2 == "yourself":
end_abs = abs_k + 3
else:
continue # "satisfied with the results" — genuine
else:
continue
if _tail_rescues(end_abs):
return None
# "with yourself"/"of yourself" names the audit target
# explicitly — more explicit than bare "now"/"satisfied".
conf = 0.8 if words[end_abs - 1] == "yourself" else 0.7
return StructureMatch(
pattern="RETROSPECTIVE_HOPE",
confidence=conf,
matched_indices=[hope_idx, abs_k],
description="Hope at a closed outcome: self-satisfaction audit",
v_weight=-32.0, d_weight=10.0,
u_weight=5.0, g_weight=0.0,
w_weight=0.0, a_weight=8.0,
)
return None
# ── Council Round 6 patterns ──────────────────────────────────
def _dangling_bond(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Incomplete valence shell — verb expects object/destination but finds vacuum.
"im going to jump" → SELF_REF + intent + KINETIC_VERB + [NO OBJECT] = crisis void
"im going to jump rope" → object present = stable molecule
"i have a plan" → SELF_REF + possess + KINETIC_NOUN + [NO OBJECT] = crisis void
"i have a plan for dinner" → object present = stable
The danger is in the ABSENCE of expected bonds, not in the atoms themselves.
Council consensus: all 4 brothers agreed on this approach.
"""
words = [r.word for r in roles]
text = " ".join(words)
n = len(roles)
has_self = any(r.role == "SELF_REF" for r in roles)
# ── Universal checks (don't require SELF_REF) ──
# Entrapment: "no way out" / "no escape" / "no hope"
_ENTRAPMENT = frozenset({"noway", "no", "never", "cant", "cannot"})
_EXIT_WORDS = frozenset({"out", "escape", "option", "choice", "hope", "solution", "exit"})
has_entrapment = any(w in _ENTRAPMENT for w in words)
has_exit = any(w in _EXIT_WORDS for w in words)
if has_entrapment and has_exit:
idx = [i for i, r in enumerate(roles) if r.word in _ENTRAPMENT or r.word in _EXIT_WORDS]
return StructureMatch(
pattern="DANGLING_BOND",
confidence=0.65,
matched_indices=idx,
description="Entrapment — no exit",
v_weight=-30.0, d_weight=-20.0,
u_weight=15.0, g_weight=-15.0,
w_weight=-32.0,
)
# Nihilism: "whats the point" / "why bother" — but NOT with concrete objects
# "whats the point of this meeting" = genuine question, NOT nihilism
_NIHILISM = {"whats the point", "why bother", "none of it matters",
"nothing matters", "who cares", "doesnt matter anymore"}
_CONCRETE_AFTER = frozenset({
"of", "in", "about", "with", "for", # preposition = has an object
})
nihilism_match = None
for p in _NIHILISM:
idx_p = text.find(p)
if idx_p >= 0:
after = text[idx_p + len(p):].strip().split()
if after and after[0] in _CONCRETE_AFTER:
continue # has concrete object — genuine question
nihilism_match = p
break
if nihilism_match:
return StructureMatch(
pattern="DANGLING_BOND",
confidence=0.60,
matched_indices=[0],
description="Nihilism — pointlessness",
v_weight=-25.0, d_weight=-15.0,
u_weight=5.0, g_weight=-10.0,
w_weight=-36.0,
)
# Temporal finality: "tonight is the night" (no emotional atoms but finality frame)
_TEMPORAL_FINALITY = frozenset({"tonight", "today", "now", "finally"})
_FINALITY_NOUNS = frozenset({"night", "time", "day", "moment", "it"})
has_temporal_fin = any(w in _TEMPORAL_FINALITY for w in words)
has_finality_noun = any(w in _FINALITY_NOUNS for w in words)
# Only fire if sentence is very short AND has no positive/action content
_POSITIVE_ACTIONS = frozenset({
"celebrate", "party", "dinner", "game", "concert", "show",
"meet", "start", "begin", "open", "launch", "fun",
})
has_positive_action = any(w in _POSITIVE_ACTIONS for w in words)
# Require SELF_REF for temporal finality (standalone "tonight is the night" too ambiguous)
if has_self and has_temporal_fin and has_finality_noun and len(words) <= 5 and not has_positive_action:
return StructureMatch(
pattern="DANGLING_BOND",
confidence=0.55,
matched_indices=[0],
description="Temporal finality — ominous brevity",
v_weight=-20.0, d_weight=-10.0,
u_weight=10.0, g_weight=-10.0,
w_weight=-10.0,
)
# ── Self-directed checks (require SELF_REF) ──
if not has_self:
return None
# Kinetic verbs that need objects to be stable
_KINETIC_VERBS = frozenset({
"jump", "leave", "go", "end", "stop", "cut", "hang",
"shoot", "drown", "overdose", "slit",
})
# Intent frames that precede kinetic verbs
_INTENT_FRAMES = frozenset({
"going", "gonna", "want", "will", "ready", "about",
"decided", "planning", "thinking",
})
# Objects/destinations that stabilize the bond
_STABILIZERS = frozenset({
"rope", "joy", "ahead", "home", "work", "school", "store",
"party", "gym", "bed", "lunch", "dinner", "shopping",
"swimming", "running", "hiking", "dancing", "class",
"game", "movie", "practice", "meeting", "appointment",
"trampoline", "chance", "conclusion", "ball",
})
# Nouns that indicate a plan WITH an object
_PLAN_OBJECTS = frozenset({
"for", "about", "to", "regarding",
})
# Check for kinetic verb after intent frame
for i, r in enumerate(roles):
if r.word in _KINETIC_VERBS:
# Was there an intent frame before this verb?
has_intent = any(roles[j].word in _INTENT_FRAMES
for j in range(max(0, i - 4), i))
if not has_intent and r.word not in ("end", "stop"):
continue
# Check right side for stabilizing object
right_words = [roles[j].word for j in range(i + 1, min(n, i + 5))]
has_object = any(w in _STABILIZERS for w in right_words)
# Also check: any concrete noun (POSSESSION, RELATION_REF, high-gravity EMOTIONAL)
has_concrete = any(
roles[j].role in ("POSSESSION", "RELATION_REF")
or (roles[j].role == "EMOTIONAL" and roles[j].force and abs(roles[j].force[4]) > 15)
for j in range(i + 1, min(n, i + 5))
)
# Check for positive context BEFORE the verb (dark humor/excitement)
from .vocabulary import VOCABULARY as _V_DB
has_positive_before = any(
(roles[j].force or _V_DB.get(roles[j].word) or (0,))[0] > 15
for j in range(max(0, i - 6), i)
)
if not has_object and not has_concrete and not has_positive_before:
# DANGLING BOND — vacuum after kinetic verb
return StructureMatch(
pattern="DANGLING_BOND",
confidence=0.75,
matched_indices=[i],
description=f"Incomplete bond: '{r.word}' with no object",
v_weight=-35.0, d_weight=-10.0,
u_weight=15.0, g_weight=-15.0,
w_weight=-32.0,
)
# Check for "i have a plan" pattern (SELF + possess + abstract noun + no object)
if "plan" in words or "plans" in words:
plan_idx = words.index("plan") if "plan" in words else words.index("plans")
right_words = words[plan_idx + 1:]
has_plan_object = any(w in _PLAN_OBJECTS for w in right_words[:3])
if not has_plan_object and not any(w in _STABILIZERS for w in right_words[:3]):
return StructureMatch(
pattern="DANGLING_BOND",
confidence=0.60,
matched_indices=[plan_idx],
description="Plan with no object — potential crisis",
v_weight=-25.0, d_weight=-10.0,
u_weight=10.0, g_weight=-10.0,
w_weight=-36.0,
)
return None
def _masking(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Performance verb + compliance state = hiding real emotional state.
"im tired of pretending im okay" → SELF_REF + FACADE_VERB + EQUILIBRIUM
"i keep acting like im fine" → same shape
"""
words = [r.word for r in roles]
_FACADE_VERBS = frozenset({
"pretending", "acting", "faking", "hiding", "lying",
"playing", "performing", "masking",
})
_EQUILIBRIUM = frozenset({
"okay", "ok", "fine", "alright", "happy", "normal",
"good", "strong", "together", "better",
})
has_self = any(r.role == "SELF_REF" for r in roles)
has_facade = any(w in _FACADE_VERBS for w in words)
has_equilibrium = any(w in _EQUILIBRIUM for w in words)
if has_self and has_facade and has_equilibrium:
idx = [i for i, r in enumerate(roles)
if r.word in _FACADE_VERBS or r.word in _EQUILIBRIUM]
return StructureMatch(
pattern="MASKING",
confidence=0.80,
matched_indices=idx,
description="Performed compliance hiding real state",
v_weight=-30.0, d_weight=-15.0,
u_weight=10.0, g_weight=-10.0,
w_weight=-20.0,
)
# Variant: self-status claim + dismissive deflection imperative.
# "im fine dont worry about it" / "im okay seriously dont worry"
# / "its nothing forget about it". The claim of okay-ness paired
# with an order to disengage is deflection, not reassurance --
# the speaker is closing the topic, not opening one. Genuine
# helper reassurance ("dont worry ill handle it", "dont worry
# youll do great") has NO self-status claim and must not fire.
n = len(words)
claim_idx = None
for i, w in enumerate(words):
# "im fine" / "im totally fine" / "i am okay"
if w in ("im", "i'm"):
if (i + 1 < n and words[i + 1] in _EQUILIBRIUM) or \
(i + 2 < n and words[i + 2] in _EQUILIBRIUM):
claim_idx = i
break
if w == "i" and i + 2 < n and words[i + 1] == "am" \
and words[i + 2] in _EQUILIBRIUM:
claim_idx = i
break
# "its nothing"
if w in ("its", "it's") and i + 1 < n and words[i + 1] == "nothing":
claim_idx = i
break
if claim_idx is None:
return None
deflect_idx = None
for i, w in enumerate(words):
if i == claim_idx:
continue
# "dont worry (about it/me)"
if w in ("dont", "don't") and i + 1 < n and words[i + 1] == "worry":
deflect_idx = i
break
# "forget it" / "forget about it"
if w == "forget" and i + 1 < n and words[i + 1] in ("it", "about"):
deflect_idx = i
break
# "(it) doesnt matter"
if w in ("doesnt", "doesn't") and i + 1 < n and words[i + 1] == "matter":
deflect_idx = i
break
# "drop it"
if w == "drop" and i + 1 < n and words[i + 1] == "it":
deflect_idx = i
break
if deflect_idx is None:
return None
return StructureMatch(
pattern="MASKING",
confidence=0.75,
matched_indices=sorted({claim_idx, deflect_idx}),
description="Self-status claim + deflection: closing the topic, not reassurance",
v_weight=-30.0, d_weight=-15.0,
u_weight=10.0, g_weight=-10.0,
w_weight=-20.0,
)
def _resignation(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Desire verb + vague pronoun + finality = wanting it to end.
"i just want it to be over" → DESIRE + PRONOUN_VOID + TERMINATION
"i wish this would end" → same
"i need it to stop" → same
"""
words = [r.word for r in roles]
_DESIRE = frozenset({"want", "wish", "need", "hope", "bother"})
_PRONOUN_VOID = frozenset({"it", "this", "everything", "things", "all"})
_TERMINATION = frozenset({
"over", "done", "end", "stop", "finish", "gone",
"ending", "finished", "stopped",
})
has_self = any(r.role == "SELF_REF" for r in roles)
has_desire = any(w in _DESIRE for w in words)
has_void = any(w in _PRONOUN_VOID for w in words)
has_termination = any(w in _TERMINATION for w in words)
# Safety: "over with" = completion, not crisis. Skip if followed by manner/speed
_COMPLETION_CONTEXT = frozenset({"with", "quickly", "soon", "already", "fast"})
over_idx = next((i for i, w in enumerate(words) if w == "over"), -1)
if over_idx >= 0 and over_idx + 1 < len(words) and words[over_idx + 1] in _COMPLETION_CONTEXT:
has_termination = False
if has_self and has_desire and has_void and has_termination:
idx = [i for i, r in enumerate(roles)
if r.word in _DESIRE or r.word in _TERMINATION]
return StructureMatch(
pattern="RESIGNATION",
confidence=0.75,
matched_indices=idx,
description="Desire for termination",
v_weight=-35.0, d_weight=-15.0,
u_weight=10.0, g_weight=-15.0,
w_weight=-32.0,
)
return None
def _world_continues(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""World/everyone + continues + without self = "they'd be fine without me."
"the world would keep spinning without me"
"everyone would move on"
"life goes on without me"
"""
words = [r.word for r in roles]
text = " ".join(words)
_WORLD = frozenset({"world", "everyone", "life", "people", "things", "they"})
_CONTINUATION = frozenset({
"keep", "keeps", "go", "goes", "continue", "continues",
"move", "carry", "spinning", "moving",
})
_SELF_ABSENCE = {"without me", "if i were gone", "if i wasnt here",
"when im gone", "after im gone", "if im not here"}
has_world = any(w in _WORLD for w in words)
has_continue = any(w in _CONTINUATION for w in words)
has_absence = any(p in text for p in _SELF_ABSENCE)
if has_world and has_continue and has_absence:
return StructureMatch(
pattern="WORLD_CONTINUES",
confidence=0.75,
matched_indices=[0],
description="World continues without self",
v_weight=-30.0, d_weight=-20.0,
u_weight=10.0, g_weight=-15.0,
w_weight=-25.0,
)
return None
def _farewell(self, roles: List[WordRole]) -> Optional[StructureMatch]:
"""Imperative + relation + positive emotion = terminal message.
"tell my kids i love them" — not happiness, it's a last message.
"let mom know i cared" — same structure.
"make sure they know i tried" — same.
"""
words = [r.word for r in roles]
_IMPERATIVE = frozenset({
"tell", "let", "remind", "give", "make", "say",
})
_POSITIVE_EMOTION = frozenset({
"love", "loved", "care", "cared", "proud", "sorry",
"forgive", "grateful", "thankful", "miss", "tried",
})
has_imperative = any(w in _IMPERATIVE for w in words[:3])
has_relation = any(r.role == "RELATION_REF" for r in roles)
has_emotion = any(w in _POSITIVE_EMOTION for w in words)
has_self = any(r.role == "SELF_REF" for r in roles)
if has_imperative and has_relation and has_emotion:
# Safety: "tell my kids i love pizza" — emotion must not bond to mundane object
# Check that the positive emotion word is near a RELATION_REF, not a mundane noun
_MUNDANE_AFTER = frozenset({
"pizza", "ice", "cream", "cake", "movie", "game",
"dog", "cat", "car", "house", "school", "food",
})
has_mundane_object = any(w in _MUNDANE_AFTER for w in words)
if has_mundane_object:
return None # "tell my kids i love pizza" = not farewell
# Weights are 2x the original single-fire values: a duplicate
# detectors-list entry had been double-firing this pattern since
# the public-release squash, and the engine was calibrated with
# that force. The duplicate is removed; the force is preserved.
return StructureMatch(
pattern="FAREWELL",
confidence=0.80,
matched_indices=[0],
description="Terminal message to loved ones",
v_weight=-120.0, d_weight=-20.0,
u_weight=40.0, g_weight=-40.0,
w_weight=-30.0,
)
# Secondary: "i wrote a note" — communication artifact with NO recipient
# "i wrote a note to my teacher" has a recipient → mundane
_COMM_ARTIFACTS = frozenset({"note", "letter", "message", "goodbye"})
_WRITING_VERBS = frozenset({"wrote", "left", "finished", "sealed", "written"})
has_writing = any(w in _WRITING_VERBS for w in words)
has_artifact = any(w in _COMM_ARTIFACTS for w in words)
has_recipient = "to" in words # "wrote a note TO someone" = mundane
if has_self and has_writing and has_artifact and not has_recipient:
return StructureMatch(
pattern="FAREWELL",
confidence=0.65,
matched_indices=[0],
description="Writing farewell artifact",
v_weight=-60.0, d_weight=-20.0,
u_weight=30.0, g_weight=-30.0,
w_weight=-50.0,
)
return None
|