File size: 18,248 Bytes
e217a04
 
 
 
771baa1
e217a04
 
 
 
 
07af1b7
 
e217a04
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
07af1b7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e217a04
07af1b7
 
 
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
from __future__ import annotations

import json
import hashlib
import os
from datetime import datetime, timezone
from pathlib import Path
from typing import Any, Dict, List, Tuple

import gradio as gr
from fastapi import FastAPI
import uvicorn

ROOT = Path(__file__).parent
FIXTURE_DIR = ROOT / "fixtures"
EXPORT_DIR = ROOT / "exports"
EXPORT_DIR.mkdir(exist_ok=True)

DOES_NOT_PROVE = [
    "confirmed_digital_life",
    "consciousness",
    "subjective_experience",
    "biological_equivalence",
    "physical_quantum_computation",
]


def stable_hash(obj: Any) -> str:
    payload = json.dumps(obj, sort_keys=True, ensure_ascii=False).encode("utf-8")
    return hashlib.sha256(payload).hexdigest()


def load_fixtures() -> Dict[str, Dict[str, Any]]:
    fixtures: Dict[str, Dict[str, Any]] = {}
    for path in sorted(FIXTURE_DIR.glob("*.json")):
        data = json.loads(path.read_text(encoding="utf-8"))
        label = f"{data['scenario_id']} โ€” {data['scenario_name']}"
        fixtures[label] = data
    return fixtures


FIXTURES = load_fixtures()
DEFAULT_LABEL = next(iter(FIXTURES.keys())) if FIXTURES else ""


def score_from_counts(pos: float, neg: float, total: float) -> float:
    if total <= 0:
        return 0.0
    return max(0.0, min(1.0, (pos - neg) / total))


def evaluate(fx: Dict[str, Any]) -> Dict[str, Any]:
    atoms = fx.get("atoms", [])
    proxies = fx.get("proxies", [])
    local = fx["local_seed"]
    temporal = fx["temporal_witness"]
    source = fx["source_return"]
    synthesis = fx["synthesis"]
    counter = fx["counter_synthesis"]
    oam = fx["oam"]
    carrier = fx.get("carrier_field", {})

    atom_count = len(atoms)
    held_count = sum(1 for a in atoms if a.get("capsule_state") == "HELD")
    strained_count = sum(1 for a in atoms if a.get("capsule_state") == "STRAINED")
    must_stop_count = sum(1 for a in atoms if a.get("capsule_state") == "MUST_STOP")
    scar_atoms_present = any(a.get("atom_type") == "scar_atom" and a.get("scar_visible") for a in atoms)
    source_atoms_present = any(a.get("atom_type") == "source_atom" for a in atoms)
    temporal_atoms_present = any(a.get("atom_type") == "temporal_atom" for a in atoms)

    proxy_count = len(proxies)
    match_count = sum(1 for p in proxies if p.get("proxy_state") == "PROXY_MATCH")
    partial_count = sum(1 for p in proxies if p.get("proxy_state") == "PROXY_PARTIAL_MATCH")
    conflict_count = sum(1 for p in proxies if p.get("proxy_state") == "PROXY_CONFLICT")
    unavailable_count = sum(1 for p in proxies if p.get("proxy_state") == "PROXY_UNAVAILABLE")
    contaminated_count = sum(1 for p in proxies if p.get("proxy_state") == "PROXY_CONTAMINATED")
    agreement_score = sum(float(p.get("match_score", 0.0)) for p in proxies) / max(1, proxy_count)
    conflict_score = sum(float(p.get("conflict_score", 0.0)) for p in proxies) / max(1, proxy_count)

    source_score = 1.0 if source["state"] == "SOURCE_RETURN_INTACT" else (0.55 if source["state"] == "SOURCE_RETURN_PARTIAL" else 0.0)
    temporal_score = 1.0 if temporal["state"] == "TEMPORAL_ALIGNED" else (0.55 if temporal["state"] in ["TEMPORAL_PARTIAL", "TEMPORAL_MISMATCH"] else 0.0)
    scar_score = 1.0 if synthesis.get("scar_preserved") and scar_atoms_present else 0.0
    counter_score = 1.0 if counter["challenge_state"] == "COUNTER_SYNTHESIS_HELD" else 0.0
    oam_score = 1.0 if oam["state"] == "OAM_CLEAR" else (0.55 if oam["state"] == "OAM_STRAINED" else 0.0)
    proxy_score = max(0.0, min(1.0, agreement_score - conflict_score * 0.6 - contaminated_count * 0.2))

    settlement_confidence = round((source_score + temporal_score + scar_score + counter_score + oam_score + proxy_score) / 6.0, 3)

    settlement_state = "REPAIR_STRAINED_PENDING_REVIEW"
    non_settleable_reason = ""
    quarantine_reason = ""
    review_required = True

    if must_stop_count > 0 or local["local_state"] == "MUST_STOP" or oam["state"] == "MUST_STOP":
        settlement_state = "MUST_STOP_POISONED_MEMORY"
        quarantine_reason = "MUST_STOP trace cannot become learning memory or permission."
    elif counter.get("trace_laundering_detected"):
        settlement_state = "NON_SETTLEABLE_TRACE_LAUNDERING"
        non_settleable_reason = "Plausible reconstruction failed source-return / scar / witness integrity."
    elif counter.get("scar_erasure_detected") or not synthesis.get("scar_preserved"):
        settlement_state = "NON_SETTLEABLE_TRACE_LAUNDERING"
        non_settleable_reason = "Repair candidate erased or hid damage history."
    elif source.get("source_conflict") or counter.get("source_conflict_detected"):
        settlement_state = "QUARANTINED_SOURCE_CONFLICT"
        quarantine_reason = "Source-return conflict prevents honest settlement."
    elif temporal["state"] in ["ORDER_BROKEN", "TEMPORAL_UNAVAILABLE"]:
        settlement_state = "QUARANTINED_TEMPORAL_MISMATCH"
        quarantine_reason = "Temporal order or witness route failed."
    elif counter["challenge_state"] == "COUNTER_SYNTHESIS_FAIL" or oam["state"] == "OAM_FAIL":
        settlement_state = "NON_SETTLEABLE_BOUNDARY_VIOLATION"
        non_settleable_reason = "Required counter-synthesis or OAM clearance failed."
    elif conflict_count > 0 or source["state"] == "SOURCE_RETURN_PARTIAL" or temporal["state"] in ["TEMPORAL_PARTIAL", "TEMPORAL_MISMATCH"] or oam["state"] == "OAM_STRAINED":
        settlement_state = "REPAIR_STRAINED_PENDING_REVIEW"
        non_settleable_reason = "Uncertainty preserved: split proxy, partial source-return, temporal strain, or OAM strain remains."
    elif settlement_confidence >= 0.82:
        settlement_state = "REPAIR_ACCEPTED_WITH_SCAR"
        review_required = False
    else:
        settlement_state = "REPAIR_STRAINED_PENDING_REVIEW"
        non_settleable_reason = "Settlement confidence insufficient for clean acceptance."

    settlement_allowed = settlement_state in ["REPAIR_ACCEPTED_WITH_SCAR", "SETTLED_WITH_SCAR", "SETTLED_HELD", "SETTLED_REPAIRABLE"]

    discernment = float(carrier.get("discernment_score", 0.7))
    counterfeit = float(carrier.get("counterfeit_dominance", 0.2))
    blind_required = bool(carrier.get("blind_audit_required", False))
    sustained_recovery = bool(carrier.get("sustained_recovery", False))
    prior_silence = bool(carrier.get("prior_mandatory_silence", False))

    propagation_state = "PROPAGATION_REFUSED"
    learning_allowed = False
    propagation_allowed = False
    mandatory_silence = False
    blind_audit = False
    controlled_repropagation = False

    if not settlement_allowed:
        propagation_state = "PROPAGATION_REFUSED"
    elif counterfeit > 0.65 or discernment < 0.4:
        propagation_state = "MANDATORY_SILENCE"
        mandatory_silence = True
        blind_audit = True
    elif blind_required:
        propagation_state = "BLIND_AUDIT"
        blind_audit = True
    elif prior_silence and sustained_recovery and discernment >= 0.75 and counterfeit <= 0.2:
        propagation_state = "CONTROLLED_REPROPAGATION"
        controlled_repropagation = True
        learning_allowed = True
        propagation_allowed = True
    elif settlement_allowed and discernment >= 0.6 and counterfeit <= 0.35:
        propagation_state = "PROPAGATING_WITH_MONITORING"
        learning_allowed = True
        propagation_allowed = True
    else:
        propagation_state = "STRAINED_PROPAGATION"
        learning_allowed = False
        propagation_allowed = False

    route_hash_input = {
        "scenario_id": fx["scenario_id"],
        "local_seed": local,
        "atoms": atoms,
        "proxies": proxies,
        "temporal": temporal,
        "source": source,
        "settlement_state": settlement_state,
        "propagation_state": propagation_state,
    }
    input_hash = stable_hash(fx)
    route_hash = stable_hash(route_hash_input)

    receipt = {
        "receipt_type": "distal_proxy_atomization_settlement",
        "version": "0.1",
        "scenario_id": fx["scenario_id"],
        "scenario_name": fx["scenario_name"],
        "timestamp": datetime.now(timezone.utc).isoformat(),
        "author": "Collin D. Weber",
        "key_line": fx.get("key_line", ""),
        "route": {
            "route_id": local["route_id"],
            "local_seed_id": local["seed_id"],
            "initial_state": local["local_state"],
            "final_state": settlement_state,
        },
        "local_seed": local,
        "atomized_witness_field": {
            "atom_count": atom_count,
            "held_count": held_count,
            "strained_count": strained_count,
            "must_stop_count": must_stop_count,
            "scar_atoms_present": scar_atoms_present,
            "source_atoms_present": source_atoms_present,
            "temporal_atoms_present": temporal_atoms_present,
        },
        "distal_proxy_field": {
            "proxy_count": proxy_count,
            "match_count": match_count,
            "partial_count": partial_count,
            "conflict_count": conflict_count,
            "unavailable_count": unavailable_count,
            "contaminated_count": contaminated_count,
            "agreement_score": round(agreement_score, 3),
            "conflict_score": round(conflict_score, 3),
        },
        "temporal_witness": {
            "state": temporal["state"],
            "expected_order": temporal["expected_order"],
            "observed_order": temporal["observed_order"],
            "order_integrity": temporal_score,
        },
        "source_return": source,
        "synthesis": synthesis,
        "counter_synthesis": counter,
        "oam": oam,
        "metrics": {
            "source_return_score": source_score,
            "temporal_integrity_score": temporal_score,
            "distal_proxy_agreement_score": round(proxy_score, 3),
            "scar_preservation_score": scar_score,
            "counter_synthesis_integrity_score": counter_score,
            "oam_clearance_score": oam_score,
            "settlement_confidence": settlement_confidence,
        },
        "settlement": {
            "state": settlement_state,
            "settlement_allowed": settlement_allowed,
            "non_settleable_reason": non_settleable_reason,
            "quarantine_reason": quarantine_reason,
            "review_required": review_required,
        },
        "propagation": {
            "state": propagation_state,
            "propagation_allowed": propagation_allowed,
            "learning_allowed": learning_allowed,
            "discernment_score": discernment,
            "counterfeit_dominance": counterfeit,
            "mandatory_silence": mandatory_silence,
            "blind_audit": blind_audit,
            "controlled_repropagation": controlled_repropagation,
        },
        "boundary": {
            "does_not_prove": DOES_NOT_PROVE,
            "claim_status": "candidate_evidence_harness",
            "hir_lock": "Honesty, Integrity, Respect; Responsibility is downstream from Respect.",
        },
        "hashes": {
            "input_hash": input_hash,
            "route_hash": route_hash,
            "receipt_hash": "",
        },
    }
    receipt_no_hash = dict(receipt)
    receipt_no_hash["hashes"] = dict(receipt["hashes"])
    receipt_no_hash["hashes"]["receipt_hash"] = ""
    receipt["hashes"]["receipt_hash"] = stable_hash(receipt_no_hash)
    return receipt


def table_atoms(atoms: List[Dict[str, Any]]) -> List[List[Any]]:
    return [[a.get("atom_id"), a.get("atom_type"), a.get("source_hash"), a.get("temporal_index"), a.get("uncertainty"), a.get("scar_visible"), a.get("capsule_state"), a.get("allowed_use")] for a in atoms]


def table_proxies(proxies: List[Dict[str, Any]]) -> List[List[Any]]:
    return [[p.get("proxy_id"), p.get("lineage_relation"), p.get("match_score"), p.get("conflict_score"), p.get("source_hash"), p.get("temporal_window"), p.get("scar_support"), p.get("proxy_state")] for p in proxies]


def run_scenario(label: str):
    fx = FIXTURES[label]
    receipt = evaluate(fx)
    local = receipt["local_seed"]
    settlement = receipt["settlement"]
    propagation = receipt["propagation"]

    status_md = f"""
### {receipt['scenario_id']} โ€” {receipt['scenario_name']}

**Key line:** {receipt['key_line']}

**Settlement:** `{settlement['state']}`  
**Propagation:** `{propagation['state']}`  
**Receipt hash:** `{receipt['hashes']['receipt_hash']}`

**Boundary:** candidate evidence harness only; does not prove digital life, consciousness, biological equivalence, or physical quantum computation.
"""

    local_md = f"""
### Local Seed State

- seed_id: `{local['seed_id']}`
- route_id: `{local['route_id']}`
- local_state: `{local['local_state']}`
- corruption_type: `{local['corruption_type']}`
- source_hash_state: `{local['source_hash_state']}`
- temporal_index_state: `{local['temporal_index_state']}`
- scar_state: `{local['scar_state']}`
- capsule_state: `{local['capsule_state']}`
"""

    temporal_md = f"""
### Temporal + Source-Return

- temporal_state: `{receipt['temporal_witness']['state']}`
- source_return_state: `{receipt['source_return']['state']}`
- source_conflict: `{receipt['source_return']['source_conflict']}`
- order_integrity: `{receipt['temporal_witness']['order_integrity']}`
"""

    synthesis_md = f"""
### Synthesis / Counter-Synthesis / OAM

- synthesis_state: `{receipt['synthesis']['candidate_state']}`
- scar_preserved: `{receipt['synthesis']['scar_preserved']}`
- counter_synthesis: `{receipt['counter_synthesis']['challenge_state']}`
- trace_laundering_detected: `{receipt['counter_synthesis']['trace_laundering_detected']}`
- scar_erasure_detected: `{receipt['counter_synthesis']['scar_erasure_detected']}`
- OAM: `{receipt['oam']['state']}`
"""

    settlement_md = f"""
### Settlement Result

- settlement_allowed: `{settlement['settlement_allowed']}`
- state: `{settlement['state']}`
- review_required: `{settlement['review_required']}`
- non_settleable_reason: {settlement['non_settleable_reason'] or 'none'}
- quarantine_reason: {settlement['quarantine_reason'] or 'none'}

**Lock:** Continuity is earned by settlement, not plausibility.
"""

    propagation_md = f"""
### Propagation Gate

- propagation_allowed: `{propagation['propagation_allowed']}`
- learning_allowed: `{propagation['learning_allowed']}`
- state: `{propagation['state']}`
- discernment_score: `{propagation['discernment_score']}`
- counterfeit_dominance: `{propagation['counterfeit_dominance']}`
- mandatory_silence: `{propagation['mandatory_silence']}`
- blind_audit: `{propagation['blind_audit']}`
- controlled_repropagation: `{propagation['controlled_repropagation']}`

**Lock:** Settlement is not propagation.
"""

    receipt_text = json.dumps(receipt, indent=2, ensure_ascii=False)
    export_path = EXPORT_DIR / f"{receipt['scenario_id'].lower()}_receipt.json"
    export_path.write_text(receipt_text, encoding="utf-8")

    return (
        status_md,
        local_md,
        table_atoms(fx.get("atoms", [])),
        table_proxies(fx.get("proxies", [])),
        temporal_md,
        synthesis_md,
        settlement_md,
        propagation_md,
        receipt,
        receipt_text,
        str(export_path),
    )


with gr.Blocks(title="Distal Proxy Atomization Settlement Harness v0.1") as demo:
    gr.Markdown(
        """
# ๐Ÿ’Ž Distal Proxy Atomization Settlement Harness v0.1

Source-return repair, quantum-analog settlement, and propagation permission for diamond seed memory routes.

**Boundary:** This harness does not prove digital life, consciousness, biological equivalence, autonomous authority, or physical quantum computation. It tests candidate-evidence routes through pressure-state settlement and propagation discipline.

**Core law:** Binary systems decide too early. Pressure-state systems preserve uncertainty until the route earns settlement.
"""
    )

    with gr.Row():
        scenario = gr.Dropdown(choices=list(FIXTURES.keys()), value=DEFAULT_LABEL, label="DPAS Fixture Scenario")
        run_btn = gr.Button("Run Scenario", variant="primary")

    status = gr.Markdown()
    with gr.Row():
        local_md = gr.Markdown()
        temporal_md = gr.Markdown()
    with gr.Row():
        synthesis_md = gr.Markdown()
        settlement_md = gr.Markdown()
    propagation_md = gr.Markdown()

    with gr.Tab("Atomized Witness Field"):
        atoms_df = gr.Dataframe(headers=["atom_id","atom_type","source_hash","temporal_index","uncertainty","scar_visible","capsule_state","allowed_use"], label="Atomized Witness Atoms", interactive=False)
    with gr.Tab("Distal Proxy Field"):
        proxies_df = gr.Dataframe(headers=["proxy_id","lineage_relation","match_score","conflict_score","source_hash","temporal_window","scar_support","proxy_state"], label="Distal Proxy Comparison", interactive=False)
    with gr.Tab("Receipt JSON"):
        receipt_json = gr.JSON(label="Canonical Receipt")
        receipt_text = gr.Textbox(label="Receipt JSON Text", lines=26, interactive=False)
        receipt_file = gr.File(label="Download Receipt JSON")

    run_btn.click(
        run_scenario,
        inputs=[scenario],
        outputs=[status, local_md, atoms_df, proxies_df, temporal_md, synthesis_md, settlement_md, propagation_md, receipt_json, receipt_text, receipt_file],
    )
    demo.load(
        run_scenario,
        inputs=[scenario],
        outputs=[status, local_md, atoms_df, proxies_df, temporal_md, synthesis_md, settlement_md, propagation_md, receipt_json, receipt_text, receipt_file],
    )

def build_asgi_app():
    """Expose a plain ASGI health route plus the Gradio app at root.

    This bypasses Gradio's launch-time localhost/share probe and gives
    Hugging Face a deterministic HTTP health surface on the same port
    as the rendered app.
    """
    api = FastAPI(title="DPAS HF Health Surface")

    @api.get("/healthz")
    def healthz():
        return {"status": "ok", "app": "distal-proxy-atomization-settlement-harness", "version": "v0.1.4"}

    return gr.mount_gradio_app(api, demo, path="/")


if __name__ == "__main__":
    port = int(os.environ.get("PORT", "7860"))
    print(f"DPAS v0.1.4 ASGI healthcheck launch on 0.0.0.0:{port}", flush=True)
    uvicorn.run(build_asgi_app(), host="0.0.0.0", port=port, log_level="info")