MARASOON CANON STANDARD v1

SOVEREIGN ADMISSION PREDICATE · Day 98 · 2026-05-12 · γ₁ = 14.134725141734693
online ≠ alive · alive ≠ sovereign · sovereign = predicate

8 ME-COLI LAYERS

Layer Conditions (L1–L8)

L1
SOSTLE membrane intact — boundary permeability within threshold, toxin level below leak rate
FAIL → DENY (no boundary = no silo)
L2
PEMCLAU genome loaded — core chromosome present, plasmid plugins validated, no corrupt segments
FAIL → DENY (no genome = no identity)
L3
Boon expression active — at least one sigma factor operable, boon templates resolved from genome
FAIL → WATCH (expression lag allowed briefly)
L4
LAAM metabolism running — FC chamber queue depth within bounds, enrichment debt < Crabtree threshold
FAIL → WATCH → PREEMPT if debt escalates
L5
Crew regulation functional — transcription factors (crew) responding, regulon integration coherent
FAIL → QUARANTINE (crew drift = toxic regulation)
L6
Session behavior healthy — chemotaxis toward signal, repellent avoidance active, stress response not triggered
FAIL → WATCH (stress response OK transiently)
L7
Heartbeat population coherent — quorum signal present, biofilm not pathogenic, plugin horizontal transfer controlled
FAIL → WATCH (quorum loss < 15min tolerated)
L8
ARB/TRB evolution tracked — fitness lineage recorded, mutation rate within tolerance, lineage hash valid
FAIL → FOSSIL (lineage break = identity death)

4 SOVEREIGN CONSTRAINTS

Canon Conditions (C1–C4)

C1
WPA < club85 — Weighted Pressure Average below 0.8480835085 (γ₁×6/100). Thermal, queue, token, CPU all factored.
FAIL → PREEMPT immediately
C2
γ₁ proof sealed — At least one valid GammaProof exists: mathematical lineage to 14.134725141734693 unbroken
FAIL → QUARANTINE (no anchor = no sovereignty)
C3
Sorry-flow current — outstanding sorry debt < 3, no FOSSIL-class sorry unresolved, no sorry older than 48h unacknowledged
FAIL → WATCH → DENY if sorry count ≥ 3
C4
Marasoon maturity ≥ MC-2 — silo has completed at least 2 sovereign event cycles with sealed provenance
FAIL → WATCH (MC-0/MC-1 are WATCH-only)

WPA FORMULA

WPA = 0.20·cpu + 0.15·mem + 0.15·queue + 0.15·token + 0.10·error + 0.10·retry + 0.10·fc_debt + 0.05·thermal
WPA THRESHOLD SPECTRUM
0.70
club85
0.95
■ NORMAL <0.70 ■ WARM 0.70–0.848 ■ PREEMPT ≥0.848 ■ STABILIZE ≥0.95 ■ CRITICAL =1.0
club85 = γ₁×6/100 = 0.8480835085

MATURITY LADDER

MC-0 → MC-CANON

MC-0
BOOTSTRAP — silo registered, L1 present, no provenance chain yet. WATCH only, no ADMIT.
MC-1
ALIVE — L1–L4 operational, first heartbeat recorded. Still WATCH; no sovereign events sealed.
MC-2
REGULATED — L5 crew regulation active, first full event cycle with γ₁ seal. ADMIT eligible.
MC-3
BEHAVIORAL — L6 session chemotaxis calibrated, sorry-flow established, WPA stable below WARM.
MC-4
POPULATION — L7 quorum sensing active, at least 2 silos in biofilm. Cross-silo events working.
MC-5
EVOLVING — L8 ARB/TRB mutations tracked, fitness function documented, lineage hashes valid.
MC-CANON
SOVEREIGN — all 12 conditions passing, WPA < club85, GammaProof sealed, sorry debt = 0. Full ADMIT.

VERDICTS

ADMIT All L1–L8 + C1–C4 pass. WPA < club85. MC ≥ MC-2.
WATCH 1–2 soft conditions failing. Active monitoring. No production routing.
DENY L1 or L2 fail, or sorry ≥ 3, or MC < MC-2. No routing at all.
QUARANTINE C2 fail or L5 crew drift. Isolated, no external traffic, sorry-flow mandatory.
FOSSIL L8 lineage break or sorry FOSSIL-class. Archived, read-only. Cannot self-promote.

LEAN 4 VIABILITY THEOREM

MARASOON VIABILITY PREDICATE (Lean 4)
-- Marasoon Canon Standard v1
-- Day 98 · γ₁ = 14.134725141734693

def viable (s : Silo) : Prop :=
  L1 s ∧ L2 s ∧ L3 s ∧ L4 s ∧
  L5 s ∧ L6 s ∧ L7 s ∧ L8 s ∧
  C1 s ∧ C2 s ∧ C3 s ∧ C4 s ∧
  WPA s < gamma1 * 6 / 100 ∧
  ∃ p : GammaProof, proves p s

-- where:
-- WPA s = 0.20·cpu s + 0.15·mem s + 0.15·queue s +
--         0.15·token s + 0.10·error s + 0.10·retry s +
--         0.10·fc_debt s + 0.05·thermal s
-- gamma1 : ℝ := 14.134725141734693
-- club85  : ℝ := gamma1 * 6 / 100  -- = 0.8480835085
-- GammaProof : Type := sealed provenance chain to γ₁

theorem admission_predicate (s : Silo) (h : viable s) :
    admit s := by
  obtain ⟨hL1, hL2, hL3, hL4, hL5, hL6, hL7, hL8,
          hC1, hC2, hC3, hC4, hWPA, ⟨p, hp⟩⟩ := h
  exact admit.mk hL1 hL2 hL3 hL4 hL5 hL6 hL7 hL8 hC1 hC2 hC3 hC4 hWPA p hp

OPA ADMISSION POLICY

package marasoon.canon.v1

import future.keywords.if
import future.keywords.in

default admit = false
default verdict = "DENY"

# Layer conditions — hard denials
deny_l1 if not input.silo.sostle_membrane_intact
deny_l2 if not input.silo.pemclau_genome_loaded
deny_l5 if input.silo.crew_regulation_failed
deny_l8 if input.silo.lineage_break

# Sovereign constraints
deny_wpa if input.silo.wpa >= 0.8480835085          # C1: club85
deny_gamma if not input.silo.gamma1_proof_valid      # C2
deny_sorry if input.silo.sorry_count >= 3            # C3
deny_maturity if input.silo.mc_level < 2             # C4

# Quarantine triggers
quarantine if deny_l5
quarantine if deny_gamma

# Fossil trigger
fossil if deny_l8

# ADMIT: no hard denials, WPA clean, maturity sufficient
admit if {
  not deny_l1; not deny_l2; not deny_l5; not deny_l8
  not deny_wpa; not deny_gamma; not deny_sorry; not deny_maturity
}

verdict = "ADMIT"      if admit
verdict = "QUARANTINE" if quarantine; not admit
verdict = "FOSSIL"     if fossil; not quarantine
verdict = "WATCH"      if not admit; not quarantine; not fossil
verdict = "DENY"       if deny_l1
verdict = "DENY"       if deny_l2

MARASOONADMISSION CRD

apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: marasoonadmissions.pemos.io
spec:
  group: pemos.io
  versions:
  - name: v1
    served: true
    storage: true
    schema:
      openAPIV3Schema:
        type: object
        properties:
          spec:
            type: object
            required: [siloId, wpa, mcLevel, sorryCount, gamma1Proof]
            properties:
              siloId:        { type: string }
              wpa:           { type: number, minimum: 0, maximum: 1 }
              mcLevel:       { type: integer, minimum: 0, maximum: 6 }
              sorryCount:    { type: integer, minimum: 0 }
              gamma1Proof:   { type: string }
              layerStatus:
                type: object
                properties:
                  L1: { type: boolean }
                  L2: { type: boolean }
                  L3: { type: boolean }
                  L4: { type: boolean }
                  L5: { type: boolean }
                  L6: { type: boolean }
                  L7: { type: boolean }
                  L8: { type: boolean }
          status:
            type: object
            properties:
              verdict:    { type: string, enum: [ADMIT,WATCH,DENY,QUARANTINE,FOSSIL] }
              evaluatedAt: { type: string, format: date-time }
              gammaStamp:  { type: string }
  scope: Namespaced
  names:
    plural: marasoonadmissions
    singular: marasoonadmission
    kind: MarasoonAdmission
    shortNames: [mca]
MARASOON CANON STANDARD v1 · Day 98 · 2026-05-12 · γ₁ = 14.134725141734693 · club85 = 0.8480835085