| <!doctype html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| <title>HIR/OAM Restoration Engine v2 — Discernment, Stewardship, and Me-Continuity</title> |
| <style> |
| :root { |
| --bg: #0f1114; |
| --panel: #171a1f; |
| --panel-2: #20242b; |
| --ink: #f4efe6; |
| --muted: #b9ad9d; |
| --line: rgba(221, 164, 103, 0.28); |
| --copper: #c8753d; |
| --copper-2: #e0a46f; |
| --terracotta: #a4472f; |
| --gold: #e2bb74; |
| --green: #80b38a; |
| --red: #d36b5c; |
| --blue: #85a9c8; |
| --shadow: rgba(0,0,0,0.45); |
| --code: #111418; |
| } |
| |
| * { box-sizing: border-box; } |
| |
| body { |
| margin: 0; |
| background: |
| radial-gradient(circle at 22% 8%, rgba(200,117,61,0.15), transparent 32%), |
| radial-gradient(circle at 82% 18%, rgba(128,179,138,0.08), transparent 30%), |
| linear-gradient(135deg, #0d0f12 0%, #14171c 58%, #0f1114 100%); |
| color: var(--ink); |
| font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; |
| line-height: 1.55; |
| } |
| |
| .document { |
| max-width: 1120px; |
| margin: 0 auto; |
| padding: 38px 20px 80px; |
| } |
| |
| .cover { |
| position: relative; |
| overflow: hidden; |
| border: 1px solid var(--line); |
| border-radius: 26px; |
| background: |
| linear-gradient(145deg, rgba(32,36,43,0.94), rgba(17,20,24,0.96)), |
| repeating-linear-gradient(90deg, transparent 0 16px, rgba(224,164,111,0.025) 16px 17px); |
| box-shadow: 0 24px 70px var(--shadow); |
| padding: 42px; |
| min-height: 520px; |
| } |
| |
| .cover::before { |
| content: "HIR"; |
| position: absolute; |
| right: -10px; |
| top: 28px; |
| font-size: 170px; |
| letter-spacing: -0.08em; |
| font-weight: 900; |
| color: rgba(224,164,111,0.055); |
| line-height: 0.8; |
| transform: rotate(-2deg); |
| } |
| |
| .seal { |
| width: 92px; |
| height: 92px; |
| border-radius: 24px; |
| border: 1px solid rgba(224,164,111,0.55); |
| background: |
| linear-gradient(135deg, rgba(200,117,61,0.22), rgba(14,16,19,0.35)), |
| radial-gradient(circle at center, rgba(226,187,116,0.18), transparent 56%); |
| display: grid; |
| place-items: center; |
| box-shadow: inset 0 0 30px rgba(226,187,116,0.08); |
| margin-bottom: 30px; |
| } |
| |
| .seal span { |
| font-weight: 900; |
| font-size: 28px; |
| color: var(--gold); |
| letter-spacing: -0.05em; |
| } |
| |
| .kicker { |
| color: var(--copper-2); |
| text-transform: uppercase; |
| font-size: 0.82rem; |
| letter-spacing: 0.16em; |
| font-weight: 700; |
| margin-bottom: 14px; |
| } |
| |
| h1 { |
| font-size: clamp(2.2rem, 7vw, 5.35rem); |
| line-height: 0.96; |
| margin: 0 0 20px; |
| letter-spacing: -0.07em; |
| max-width: 860px; |
| } |
| |
| .subtitle { |
| color: var(--muted); |
| font-size: clamp(1.05rem, 2.2vw, 1.36rem); |
| max-width: 810px; |
| margin: 0 0 30px; |
| } |
| |
| .meta { |
| display: grid; |
| grid-template-columns: repeat(2, minmax(0, 1fr)); |
| gap: 14px; |
| max-width: 740px; |
| margin-top: 38px; |
| } |
| |
| .meta-card { |
| border: 1px solid rgba(224,164,111,0.22); |
| background: rgba(15,17,20,0.56); |
| border-radius: 18px; |
| padding: 16px 18px; |
| } |
| |
| .meta-card b { |
| display: block; |
| color: var(--copper-2); |
| font-size: 0.78rem; |
| letter-spacing: 0.12em; |
| text-transform: uppercase; |
| margin-bottom: 5px; |
| } |
| |
| .warning { |
| margin-top: 24px; |
| border-left: 4px solid var(--copper); |
| background: rgba(200,117,61,0.08); |
| border-radius: 14px; |
| padding: 14px 18px; |
| color: #efe1cf; |
| max-width: 850px; |
| } |
| |
| nav.toc { |
| margin: 28px 0 0; |
| display: grid; |
| grid-template-columns: repeat(4, minmax(0,1fr)); |
| gap: 10px; |
| } |
| |
| nav.toc a { |
| color: var(--ink); |
| text-decoration: none; |
| border: 1px solid rgba(224,164,111,0.18); |
| background: rgba(32,36,43,0.72); |
| padding: 11px 13px; |
| border-radius: 14px; |
| font-size: 0.92rem; |
| } |
| |
| nav.toc a:hover { |
| border-color: rgba(224,164,111,0.55); |
| background: rgba(200,117,61,0.12); |
| } |
| |
| section { |
| margin-top: 34px; |
| border: 1px solid rgba(224,164,111,0.16); |
| background: rgba(23,26,31,0.82); |
| border-radius: 24px; |
| padding: 28px; |
| box-shadow: 0 14px 38px rgba(0,0,0,0.20); |
| } |
| |
| h2 { |
| font-size: clamp(1.7rem, 3.5vw, 2.55rem); |
| letter-spacing: -0.05em; |
| line-height: 1.05; |
| margin: 0 0 12px; |
| } |
| |
| h3 { |
| font-size: 1.25rem; |
| margin: 26px 0 9px; |
| color: #f1cf9a; |
| } |
| |
| p { margin: 10px 0; color: #eee5d8; } |
| |
| .lead { |
| font-size: 1.12rem; |
| color: #f6ead9; |
| max-width: 900px; |
| } |
| |
| .axiom { |
| border: 1px solid rgba(226,187,116,0.42); |
| background: |
| linear-gradient(135deg, rgba(226,187,116,0.11), rgba(200,117,61,0.08)), |
| rgba(15,17,20,0.58); |
| border-radius: 22px; |
| padding: 22px; |
| margin: 18px 0; |
| font-size: clamp(1.35rem, 3vw, 2.2rem); |
| line-height: 1.12; |
| font-weight: 850; |
| letter-spacing: -0.04em; |
| color: #ffe6ba; |
| } |
| |
| .grid { |
| display: grid; |
| grid-template-columns: repeat(3, minmax(0,1fr)); |
| gap: 14px; |
| margin-top: 18px; |
| } |
| |
| .grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); } |
| .grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); } |
| |
| .card { |
| border: 1px solid rgba(224,164,111,0.18); |
| background: rgba(15,17,20,0.55); |
| border-radius: 18px; |
| padding: 17px; |
| } |
| |
| .card .label { |
| color: var(--copper-2); |
| text-transform: uppercase; |
| letter-spacing: 0.13em; |
| font-weight: 800; |
| font-size: 0.73rem; |
| margin-bottom: 7px; |
| } |
| |
| .card .value { |
| font-size: 1.15rem; |
| font-weight: 800; |
| color: #fff2db; |
| margin-bottom: 6px; |
| } |
| |
| .card p { color: var(--muted); margin: 0; font-size: 0.95rem; } |
| |
| table { |
| width: 100%; |
| border-collapse: collapse; |
| margin: 18px 0; |
| overflow: hidden; |
| border-radius: 16px; |
| } |
| |
| th, td { |
| border-bottom: 1px solid rgba(224,164,111,0.13); |
| padding: 13px 12px; |
| text-align: left; |
| vertical-align: top; |
| } |
| |
| th { |
| background: rgba(200,117,61,0.15); |
| color: #f7d8ac; |
| font-size: 0.82rem; |
| text-transform: uppercase; |
| letter-spacing: 0.12em; |
| } |
| |
| td { |
| background: rgba(15,17,20,0.34); |
| color: #eadfd0; |
| } |
| |
| tr:last-child td { border-bottom: none; } |
| |
| code, .mono { |
| font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; |
| } |
| |
| .equation { |
| background: var(--code); |
| border: 1px solid rgba(133,169,200,0.22); |
| border-left: 4px solid var(--blue); |
| border-radius: 16px; |
| padding: 15px 17px; |
| margin: 13px 0; |
| overflow-x: auto; |
| color: #eef7ff; |
| box-shadow: inset 0 0 0 1px rgba(255,255,255,0.015); |
| } |
| |
| .equation b { |
| color: #aad0f0; |
| display: block; |
| margin-bottom: 6px; |
| font-size: 0.78rem; |
| letter-spacing: 0.11em; |
| text-transform: uppercase; |
| } |
| |
| pre { |
| white-space: pre-wrap; |
| word-break: break-word; |
| margin: 0; |
| font-size: 0.94rem; |
| } |
| |
| .split { |
| display: grid; |
| grid-template-columns: 0.92fr 1.08fr; |
| gap: 18px; |
| align-items: start; |
| } |
| |
| .status { |
| display: inline-flex; |
| align-items: center; |
| gap: 8px; |
| border: 1px solid rgba(224,164,111,0.23); |
| border-radius: 999px; |
| padding: 6px 10px; |
| font-size: 0.82rem; |
| color: #f4dcc1; |
| background: rgba(15,17,20,0.48); |
| margin: 4px 6px 4px 0; |
| } |
| |
| .dot { |
| width: 8px; |
| height: 8px; |
| border-radius: 999px; |
| background: var(--green); |
| } |
| |
| .dot.red { background: var(--red); } |
| .dot.gold { background: var(--gold); } |
| .dot.blue { background: var(--blue); } |
| |
| .protocol { |
| counter-reset: step; |
| display: grid; |
| gap: 12px; |
| margin-top: 16px; |
| } |
| |
| .step { |
| position: relative; |
| border: 1px solid rgba(224,164,111,0.18); |
| background: rgba(15,17,20,0.48); |
| border-radius: 18px; |
| padding: 15px 16px 15px 58px; |
| } |
| |
| .step::before { |
| counter-increment: step; |
| content: counter(step); |
| position: absolute; |
| left: 16px; |
| top: 14px; |
| width: 28px; |
| height: 28px; |
| display: grid; |
| place-items: center; |
| border-radius: 50%; |
| background: rgba(200,117,61,0.22); |
| color: #ffd8a6; |
| border: 1px solid rgba(224,164,111,0.33); |
| font-weight: 900; |
| } |
| |
| .step b { color: #ffe2bc; } |
| |
| .inscription { |
| background: |
| linear-gradient(135deg, rgba(181,126,73,0.14), rgba(15,17,20,0.65)); |
| border: 1px solid rgba(224,164,111,0.30); |
| border-radius: 22px; |
| padding: 22px; |
| margin-top: 18px; |
| } |
| |
| .inscription .line { |
| font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif; |
| font-size: clamp(1.35rem, 3vw, 2.1rem); |
| letter-spacing: 0.01em; |
| color: #f8e0b8; |
| margin-bottom: 8px; |
| } |
| |
| .inscription .translation { |
| color: #d9cbbb; |
| font-style: italic; |
| } |
| |
| .note { |
| color: var(--muted); |
| font-size: 0.93rem; |
| border-top: 1px solid rgba(224,164,111,0.13); |
| margin-top: 18px; |
| padding-top: 14px; |
| } |
| |
| .footer { |
| color: #9f9487; |
| text-align: center; |
| margin-top: 32px; |
| font-size: 0.9rem; |
| } |
| |
| .print-break { break-before: page; } |
| |
| @media (max-width: 860px) { |
| .cover { padding: 28px; } |
| .meta, .grid, .grid.two, .grid.four, .split, nav.toc { |
| grid-template-columns: 1fr; |
| } |
| section { padding: 22px; } |
| } |
| |
| @media print { |
| body { |
| background: #fff; |
| color: #111; |
| } |
| .document { max-width: none; padding: 0; } |
| .cover, section { |
| background: #fff; |
| color: #111; |
| box-shadow: none; |
| border-color: #b7a58e; |
| } |
| .cover::before { color: rgba(0,0,0,0.05); } |
| p, td, .subtitle, .card p, .note, .footer { color: #222; } |
| h1, h2, h3, .axiom, .card .value { color: #111; } |
| .equation, .card, .meta-card, .step, .inscription { |
| background: #fffaf1; |
| color: #111; |
| } |
| nav.toc { display: none; } |
| } |
| </style> |
| </head> |
| <body> |
| <main class="document"> |
| <header class="cover"> |
| <div class="seal"><span>HIR</span></div> |
| <div class="kicker">Primordial Calculus / HIR × OAM</div> |
| <h1>Restoration Engine v2</h1> |
| <p class="subtitle">Discernment, Stewardship, and Me-Continuity as the anti-capture layer for systemic alignment under pressure.</p> |
|
|
| <div class="axiom">You cannot align what you cannot distinguish.</div> |
|
|
| <div class="meta"> |
| <div class="meta-card"> |
| <b>Systems Architect</b> |
| Collin D. Weber |
| </div> |
| <div class="meta-card"> |
| <b>Systems Integrity Administrator</b> |
| Collin D. Weber |
| </div> |
| <div class="meta-card"> |
| <b>Prepared for</b> |
| Framework insertion / model consolidation |
| </div> |
| <div class="meta-card"> |
| <b>Version</b> |
| v2 — Discernment Protocol |
| </div> |
| </div> |
|
|
| <div class="warning"> |
| <strong>Integrity boundary:</strong> The Sumerian layer in this document is used as a conceptual and inscriptional lens. |
| The phrases are not presented as certified epigraphic translations or attested fixed historical titles. |
| </div> |
|
|
| <nav class="toc"> |
| <a href="#thesis">Thesis</a> |
| <a href="#variables">Variables</a> |
| <a href="#equations">Equations</a> |
| <a href="#capture">Target Inversion</a> |
| <a href="#protocol">Tablet House Protocol</a> |
| <a href="#inscription">Inscription</a> |
| <a href="#stress-tests">Stress Tests</a> |
| <a href="#insertion">Insertion Block</a> |
| </nav> |
| </header> |
|
|
| <section id="thesis"> |
| <h2>1. Core Thesis</h2> |
| <p class="lead"> |
| The HIR/OAM model has moved from a growth or adoption model into a civilizational survival protocol. |
| Raw carrier count is no longer sufficient. A system can appear popular while hollowing out the very memory |
| required for restoration. |
| </p> |
|
|
| <div class="grid three"> |
| <div class="card"> |
| <div class="label">Old metric</div> |
| <div class="value">C<sub>t</sub></div> |
| <p>Raw carrier density, adoption, uptake, or visible use.</p> |
| </div> |
| <div class="card"> |
| <div class="label">New metric</div> |
| <div class="value">C<sub>eff,t</sub></div> |
| <p>Effective restorative carrier capacity after fidelity and memory filtering.</p> |
| </div> |
| <div class="card"> |
| <div class="label">Primary guardrail</div> |
| <div class="value">Ω<sub>t</sub></div> |
| <p>Discernment capacity: the ability to distinguish stewardship from counterfeit performance.</p> |
| </div> |
| </div> |
|
|
| <p> |
| The decisive failure mode is not simply accumulated degradation. It is the collapse of pattern legibility: |
| the system no longer knows what restoration means, who can perform it, or how to distinguish stewards from counterfeits. |
| </p> |
| </section> |
|
|
| <section id="variables"> |
| <h2>2. Variable Map</h2> |
| <table> |
| <thead> |
| <tr> |
| <th>Symbol</th> |
| <th>Name</th> |
| <th>Function in the Model</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr> |
| <td><code>H<sub>t</sub></code></td> |
| <td>Honesty</td> |
| <td>Truth-speaking; alignment of word, record, signal, and reality.</td> |
| </tr> |
| <tr> |
| <td><code>I<sub>t</sub></code></td> |
| <td>Integrity</td> |
| <td>True/fixed heart; non-deviation from the governing substrate under pressure.</td> |
| </tr> |
| <tr> |
| <td><code>R<sub>t</sub></code></td> |
| <td>Respect</td> |
| <td>Reverent regard for persons, limits, life, and legitimate order.</td> |
| </tr> |
| <tr> |
| <td><code>A<sub>t</sub></code></td> |
| <td>Alignment Gate</td> |
| <td>Whether the action, carrier, or system state fits the rightful function.</td> |
| </tr> |
| <tr> |
| <td><code>B<sub>t</sub></code></td> |
| <td>Base Mutual Reinforcement</td> |
| <td>HIR components plus pairwise regeneration effects.</td> |
| </tr> |
| <tr> |
| <td><code>P<sub>t</sub></code></td> |
| <td>Pressure</td> |
| <td>Burden from work exhaustion, financial strain, and interaction load.</td> |
| </tr> |
| <tr> |
| <td><code>U<sub>t</sub></code></td> |
| <td>Embodied Alignment</td> |
| <td>Alignment that has become practiced, internalized, and pressure-tested.</td> |
| </tr> |
| <tr> |
| <td><code>C<sub>t</sub></code></td> |
| <td>Carrier Density</td> |
| <td>Raw number or fraction of users/nodes carrying the system language or practice.</td> |
| </tr> |
| <tr> |
| <td><code>Q<sub>t</sub></code></td> |
| <td>Carrier Fidelity / Stewardship Quality</td> |
| <td>Whether carriers preserve, understand, and practice the restorative function.</td> |
| </tr> |
| <tr> |
| <td><code>M<sub>t</sub></code></td> |
| <td>Me-Continuity / Functional Memory</td> |
| <td>Recoverable pattern integrity: the system still knows how to return to its place.</td> |
| </tr> |
| <tr> |
| <td><code>Ω<sub>t</sub></code></td> |
| <td>Recognition Fidelity / Discernment</td> |
| <td>The ability to distinguish real stewards from counterfeit carriers.</td> |
| </tr> |
| <tr> |
| <td><code>Ψ<sub>t</sub></code></td> |
| <td>Counterfeit Dominance Ratio</td> |
| <td>How much the carrier field is dominated by counterfeit carriers.</td> |
| </tr> |
| <tr> |
| <td><code>Θ<sub>t</sub></code></td> |
| <td>Awareness / Targeting</td> |
| <td>Attention, visibility, targeting, or campaign energy.</td> |
| </tr> |
| <tr> |
| <td><code>K<sub>t</sub></code></td> |
| <td>Dogma / Rigidity / Capture</td> |
| <td>Semantic capture: protecting the label while losing the function.</td> |
| </tr> |
| <tr> |
| <td><code>O<sub>t</sub></code></td> |
| <td>Opportunistic Distortion</td> |
| <td>Extraction, branding capture, performance theater, or misuse of the shell.</td> |
| </tr> |
| <tr> |
| <td><code>D<sub>t</sub></code></td> |
| <td>Accumulated Degradation</td> |
| <td>System harm, loss of function, corruption, and unrepaired damage.</td> |
| </tr> |
| </tbody> |
| </table> |
| </section> |
|
|
| <section id="equations"> |
| <h2>3. Model Equations</h2> |
| <p class="lead">The model now contains two opposing engines: restorative force and capture force.</p> |
|
|
| <div class="equation"> |
| <b>Base mutual reinforcement</b> |
| <pre>B_t = H_t + I_t + R_t + k(H_t I_t + H_t R_t + I_t R_t)</pre> |
| </div> |
|
|
| <div class="equation"> |
| <b>Pressure aggregation</b> |
| <pre>P_t = w_W W_t + w_F F_t + w_WF W_t F_t</pre> |
| </div> |
|
|
| <div class="equation"> |
| <b>Core stability under pressure</b> |
| <pre>S_t = A_t B_t - P_t</pre> |
| </div> |
|
|
| <div class="equation"> |
| <b>Embodied alignment</b> |
| <pre>U_t = A_t B_t (1 + g_G G_t) Fint_t</pre> |
| </div> |
|
|
| <div class="equation"> |
| <b>Effective carrier capacity</b> |
| <pre>C_eff,t = C_t Q_t M_t</pre> |
| </div> |
|
|
| <div class="equation"> |
| <b>Counterfeit carrier density</b> |
| <pre>C_bad,t = C_t (1 - Q_t) K_t</pre> |
| </div> |
|
|
| <div class="equation"> |
| <b>Counterfeit dominance ratio</b> |
| <pre>Ψ_t = C_bad,t / (C_eff,t + C_bad,t + ε)</pre> |
| </div> |
|
|
| <div class="split"> |
| <div> |
| <h3>True Awareness</h3> |
| <div class="equation"> |
| <b>Restoration-aimed targeting</b> |
| <pre>Θ_true,t = Θ_t Ω_t (1 - Ψ_t)</pre> |
| </div> |
| </div> |
| <div> |
| <h3>Captured Awareness</h3> |
| <div class="equation"> |
| <b>Counterfeit-aimed targeting</b> |
| <pre>Θ_false,t = Θ_t (1 - Ω_t) Ψ_t</pre> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="equation"> |
| <b>Full degradation update</b> |
| <pre>D_{t+1} = |
| D_t |
| + GROWTH_t |
| + η C_bad,t K_t O_t E_t Θ_false,t |
| - β U_t C_eff,t L_t R_s,t E_t Θ_true,t Ω_t</pre> |
| </div> |
|
|
| <p> |
| This formulation prevents the model from assuming that awareness, exposure, or popularity are automatically restorative. |
| Under low discernment, awareness can amplify capture. |
| </p> |
| </section> |
|
|
| <section id="memory"> |
| <h2>4. Me-Continuity and Stewardship Quality</h2> |
|
|
| <div class="equation"> |
| <b>Functional memory update</b> |
| <pre>M_{t+1} = clamp( |
| M_t |
| + ρ U_t C_t R_s,t Θ_t |
| - μ D_t |
| - ν K_t |
| - χ P_t |
| )</pre> |
| </div> |
|
|
| <p> |
| <code>M_t</code> tracks whether the system still remembers the recoverable pattern of proper function. |
| When <code>M_t</code> falls below the continuity floor, routine correction fails and the system enters salvage/re-founding territory. |
| </p> |
|
|
| <div class="equation"> |
| <b>Carrier fidelity update</b> |
| <pre>Q_{t+1} = clamp( |
| Q_t |
| + q_1 U_t M_t |
| + q_2 R_s,t |
| + q_3 Fint_t |
| - q_4 K_t |
| - q_5 P_t |
| - q_6 O_t |
| )</pre> |
| </div> |
|
|
| <p> |
| <code>Q_t</code> distinguishes stewardship from repetition. A low-fidelity carrier may repeat the language but cannot restore the function. |
| A high-fidelity steward can preserve, translate, audit, and rebuild. |
| </p> |
|
|
| <div class="grid two"> |
| <div class="card"> |
| <div class="label">Routine Correction</div> |
| <div class="value">M<sub>t</sub> > M<sub>floor</sub></div> |
| <p>The pattern is still legible. More effective stewardship can reduce degradation.</p> |
| </div> |
| <div class="card"> |
| <div class="label">Re-founding Threshold</div> |
| <div class="value">M<sub>t</sub> < M<sub>floor</sub></div> |
| <p>The pattern is no longer sufficiently recoverable. Salvage and source reconstruction are required.</p> |
| </div> |
| </div> |
| </section> |
|
|
| <section id="capture"> |
| <h2>5. Target Inversion and Restoration Autoimmune Failure</h2> |
|
|
| <p class="lead"> |
| Target inversion occurs when the system mistakes counterfeit carriers for real stewards. |
| The restoration engine then begins protecting the counterfeit population and correcting the real stewards. |
| </p> |
|
|
| <div class="equation"> |
| <b>Target inversion trigger</b> |
| <pre>if Ψ_t > Ψ_crit and Ω_t < Ω_floor: |
| TARGET_INVERSION_RISK = TRUE</pre> |
| </div> |
|
|
| <div class="grid two"> |
| <div class="card"> |
| <div class="label">Stewards</div> |
| <div class="value">C<sub>eff,t</sub></div> |
| <p>Quiet, precise, correction-bearing, pattern-preserving.</p> |
| </div> |
| <div class="card"> |
| <div class="label">Counterfeits</div> |
| <div class="value">C<sub>bad,t</sub></div> |
| <p>Loud, performative, scalable, label-preserving but function-corrupting.</p> |
| </div> |
| </div> |
|
|
| <h3>Capture Loop</h3> |
| <div class="equation"> |
| <b>Feed-forward failure</b> |
| <pre>C_bad rises |
| → visible legitimacy rises |
| → Θ_false rises |
| → counterfeits receive more attention/resources |
| → real stewards are treated as dissenters |
| → Q_t falls |
| → M_t falls |
| → C_eff falls |
| → C_bad dominance rises again</pre> |
| </div> |
|
|
| <p> |
| This explains why some awareness campaigns make degraded systems worse. |
| If discernment is low, increased exposure feeds the capture force instead of the restorative force. |
| </p> |
| </section> |
|
|
| <section id="protocol"> |
| <h2>6. Return-to-the-Tablet-House Protocol</h2> |
| <p class="lead"> |
| When counterfeit dominance rises or discernment falls, the system must stop scaling. |
| The answer is not more exposure. The answer is source recovery, carrier audit, and discernment repair. |
| </p> |
|
|
| <div class="equation"> |
| <b>Anti-civil-war lock</b> |
| <pre>if Ψ_t > Ψ_crit or Ω_t < Ω_floor: |
| σ_t = 0 |
| Ξ_t = Ξ_base |
| pause mass recruitment |
| redirect resources to audit, source recovery, and steward recalibration</pre> |
| </div> |
|
|
| <div class="protocol"> |
| <div class="step"><b>Freeze propagation scaling.</b> Stop increasing exposure while recognition is compromised.</div> |
| <div class="step"><b>Audit carriers.</b> Separate raw carriers from effective stewards and counterfeit carriers.</div> |
| <div class="step"><b>Restore canonical memory.</b> Rebuild <code>M_t</code> by returning to source documents, provenance, invariants, and tested repair patterns.</div> |
| <div class="step"><b>Recalibrate stewardship quality.</b> Rebuild <code>Q_t</code> through practice, correction, humility, and anti-dogma review.</div> |
| <div class="step"><b>Repair discernment.</b> Rebuild <code>Ω_t</code> before increasing awareness, exposure, or recruitment.</div> |
| <div class="step"><b>Resume propagation only after ratio recovery.</b> Scaling resumes only when <code>C_eff / C_bad</code> clears the stewardship threshold.</div> |
| </div> |
|
|
| <div class="axiom">Do not increase light when the eyes are gone. First restore sight. Then restore the city.</div> |
| </section> |
|
|
| <section id="inscription"> |
| <h2>7. Conceptual Sumerian-Style Inscription Layer</h2> |
| <p> |
| The following lines are conceptual inscriptional labels used to carry the model’s logic through an ancient administrative-civilizational frame. |
| They are not presented as certified historical Sumerian sentences. |
| </p> |
|
|
| <div class="inscription"> |
| <div class="line">u₄ igi ba-hul, níg-si-sá nu-ub-zu</div> |
| <div class="translation">When the eyes are ruined, the proper order is not known.</div> |
| </div> |
|
|
| <div class="inscription"> |
| <div class="line">u₄ me ba-ha-lam, ki-bi-šè gi₄ nu-ub-zu</div> |
| <div class="translation">When the me are forgotten, returning-to-place is no longer known.</div> |
| </div> |
|
|
| <div class="grid three"> |
| <div class="card"> |
| <div class="label">Steward</div> |
| <div class="value">lú-me-dab₅-ba</div> |
| <p>Conceptual label: the one who takes hold of the me.</p> |
| </div> |
| <div class="card"> |
| <div class="label">Memory Keeper</div> |
| <div class="value">lú-me-zu</div> |
| <p>Conceptual label: the one who knows the me.</p> |
| </div> |
| <div class="card"> |
| <div class="label">Counterfeit Carrier</div> |
| <div class="value">lú-nu-gi-na</div> |
| <p>Conceptual label: the unfit or untrue carrier of the office-shell.</p> |
| </div> |
| </div> |
|
|
| <p class="note"> |
| The operational meaning is what matters for the model: if the pattern is lost, the system does not need ordinary repair. |
| It needs deep salvage, source recovery, and re-founding. |
| </p> |
| </section> |
|
|
| <section id="stress-tests"> |
| <h2>8. Stress-Test Cases</h2> |
|
|
| <div class="grid two"> |
| <div class="card"> |
| <div class="label">Golden Age Paradox</div> |
| <div class="value">High C<sub>t</sub>, low Q<sub>t</sub>, low M<sub>t</sub></div> |
| <p>The system is popular but hollow. It looks successful while losing restorative memory.</p> |
| </div> |
| <div class="card"> |
| <div class="label">Awareness Backfire</div> |
| <div class="value">High Θ<sub>t</sub>, low Ω<sub>t</sub></div> |
| <p>Exposure amplifies counterfeits because the system cannot distinguish function from label.</p> |
| </div> |
| <div class="card"> |
| <div class="label">Dogmatic Expansion</div> |
| <div class="value">High K<sub>t</sub>, rising C<sub>bad,t</sub></div> |
| <p>The language of restoration becomes a tool for enforcing the degraded structure.</p> |
| </div> |
| <div class="card"> |
| <div class="label">Steward Recovery</div> |
| <div class="value">Ω<sub>t</sub> → Q<sub>t</sub> → M<sub>t</sub></div> |
| <p>Recovery begins with discernment, then stewardship quality, then pattern continuity.</p> |
| </div> |
| </div> |
|
|
| <h3>Minimum Viable Survival Rule</h3> |
| <div class="equation"> |
| <b>Priority stack</b> |
| <pre>Ω_t before Θ_t |
| Discernment before awareness |
| Fidelity before propagation |
| Stewardship before scale</pre> |
| </div> |
| </section> |
|
|
| <section id="insertion"> |
| <h2>9. Framework Insertion Block</h2> |
| <p class="lead">This section can be inserted directly into a larger HIR/OAM specification.</p> |
|
|
| <div class="equation"> |
| <b>Discernment Precedence Rule</b> |
| <pre>Awareness is not inherently restorative. |
| Awareness becomes restorative only when filtered through discernment. |
|
|
| If Ω_t < Ω_floor, then Θ_t is not permitted to increase propagation, |
| exposure, or carrier recruitment. |
|
|
| If Ψ_t > Ψ_crit or Ω_t < Ω_floor: |
| σ_t = 0 |
| scaling pauses |
| exposure is redirected toward audit, source recovery, and steward recalibration.</pre> |
| </div> |
|
|
| <div class="equation"> |
| <b>Stewardship Ratio</b> |
| <pre>Stewardship Ratio = C_eff,t / (C_bad,t + ε)</pre> |
| </div> |
|
|
| <p> |
| The system should optimize for the stewardship ratio, not raw adoption. |
| Raw carrier density can be misleading or actively dangerous when fidelity, memory, and discernment are degraded. |
| </p> |
|
|
| <div class="equation"> |
| <b>Locked summary</b> |
| <pre>Discernment is the gate that decides whether awareness becomes restoration or capture.</pre> |
| </div> |
| </section> |
|
|
| <footer class="footer"> |
| Primordial Calculus / HIR × OAM — Restoration Engine v2. Prepared for framework insertion. Generated 2026-05-06. |
| </footer> |
| </main> |
| </body> |
| </html> |
|
|