2sagaco48 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/diagnostics.mjs +141 -0
- package/dist/compute.worker-j5ahIpF-.js +1 -0
- package/dist/graph.worker-DG6iGCB9.js +1 -0
- package/dist/index.html +2314 -0
- package/flatten-guide.md +248 -0
- package/index.html +12 -0
- package/package.json +38 -0
- package/src/App.orig.tsx +204 -0
- package/src/App.orig1.tsx +27 -0
- package/src/App.orig2.tsx +25 -0
- package/src/App.tsx +3 -0
- package/src/BaseApp.tsx +18 -0
- package/src/INTEGRATION_LEDGER.md +22 -0
- package/src/PERSIST_CANARY.orig.txt +1 -0
- package/src/PERSIST_CANARY.txt +1 -0
- package/src/REGRESSION_LEDGER.md +651 -0
- package/src/TEMPLATE_PIPELINE_AUDIT.md +208 -0
- package/src/WILLIAMS_PERSONA_GUIDE.md +62 -0
- package/src/chat/VeritasChat.tsx +69 -0
- package/src/chat/synthesis.ts +31 -0
- package/src/chat/tier.ts +45 -0
- package/src/components/AdaptersPage.orig.tsx +99 -0
- package/src/components/AdaptersPage.tsx +3 -0
- package/src/components/AdversarialPanel.tsx +136 -0
- package/src/components/AnchorBaselinePanel.tsx +75 -0
- package/src/components/AnswerPanel.tsx +60 -0
- package/src/components/ArtifactPanel.tsx +43 -0
- package/src/components/ChatApp.orig.tsx +1582 -0
- package/src/components/ChatApp.orig1.tsx +722 -0
- package/src/components/ChatApp.tsx +95 -0
- package/src/components/ChatAugmentPanels.tsx +73 -0
- package/src/components/CitationLedgerPanel.tsx +313 -0
- package/src/components/ComputeSandboxPanel.tsx +130 -0
- package/src/components/ConfigPanel.tsx +110 -0
- package/src/components/ControlPlanePage.tsx +195 -0
- package/src/components/CreativeTreeLifePage.tsx +234 -0
- package/src/components/CreativeTreeOfLifePanel.tsx +149 -0
- package/src/components/DebugTracePanel.tsx +137 -0
- package/src/components/DeepReasoningTrace.tsx +48 -0
- package/src/components/EntitySheetPanel.tsx +51 -0
- package/src/components/FailureModesPanel.tsx +104 -0
- package/src/components/GBSDashboard.tsx +239 -0
- package/src/components/GraphView.tsx +116 -0
- package/src/components/HUD.tsx +125 -0
- package/src/components/HypothesisPanel.tsx +67 -0
- package/src/components/InnovationGenomeEngine.tsx +792 -0
- package/src/components/InnovationPersonaGuide.tsx +348 -0
- package/src/components/InnovationPersonaPanel.tsx +289 -0
- package/src/components/LiveResourceHUD.tsx +109 -0
- package/src/components/LongWriterPanel.tsx +112 -0
- package/src/components/MainPipelineV10Bridge.tsx +72 -0
- package/src/components/MarkdownLite.tsx +63 -0
- package/src/components/MemoryInspector.tsx +38 -0
- package/src/components/MemoryMonitor.tsx +52 -0
- package/src/components/MemoryStressPanel.tsx +176 -0
- package/src/components/ModulesPage.tsx +171 -0
- package/src/components/PipelineDebugConsole.orig.tsx +1856 -0
- package/src/components/PipelineDebugConsole.tsx +3 -0
- package/src/components/PreFlightHUD.tsx +67 -0
- package/src/components/PrismaFetchTracePanel.tsx +87 -0
- package/src/components/ReportOSPanel.tsx +165 -0
- package/src/components/ResourceEstimatorPage.tsx +327 -0
- package/src/components/RichText.tsx +181 -0
- package/src/components/SagaOsPanel.tsx +605 -0
- package/src/components/SagaOsReference.tsx +421 -0
- package/src/components/SagaOsV2Panel.tsx +594 -0
- package/src/components/SagaStyleTab.tsx +382 -0
- package/src/components/SageBlueprintPanel.tsx +416 -0
- package/src/components/SharedChatInput.tsx +77 -0
- package/src/components/StatFinancePanel.tsx +190 -0
- package/src/components/StylePersonaPanel.tsx +128 -0
- package/src/components/TemplatesPage.tsx +300 -0
- package/src/components/TestPanel.tsx +63 -0
- package/src/components/TraceLog.tsx +89 -0
- package/src/components/V15CalibrationAugment.tsx +1134 -0
- package/src/components/V15CalibrationDialog.tsx +1871 -0
- package/src/components/V15Overlay.orig.tsx +120 -0
- package/src/components/V15Overlay.tsx +4 -0
- package/src/components/V15OverlayWrapper.tsx +362 -0
- package/src/components/V15Toggle.tsx +34 -0
- package/src/console/DiagnosticRecoveryPanel.tsx +358 -0
- package/src/console/EngineeringConsole.tsx +103 -0
- package/src/console/FictionSystemPanels.tsx +882 -0
- package/src/console/InspectorPanels.tsx +254 -0
- package/src/console/ManuscriptGraderPanel.tsx +182 -0
- package/src/console/RecursiveReviserPanel.tsx +245 -0
- package/src/console/SeedControlPanel.tsx +135 -0
- package/src/console/StoryControllerPanel.tsx +443 -0
- package/src/console/engineBridge.ts +258 -0
- package/src/console/gemini.ts +106 -0
- package/src/console/grading.ts +250 -0
- package/src/console/util.ts +45 -0
- package/src/fiction/continuity.ts +372 -0
- package/src/fiction/crash-protection.ts +111 -0
- package/src/fiction/diagnostics.ts +208 -0
- package/src/fiction/diff.ts +74 -0
- package/src/fiction/entity-state-machine.ts +214 -0
- package/src/fiction/nive-engine.ts +404 -0
- package/src/fiction/pipeline-selftest.ts +132 -0
- package/src/fiction/seed-control.ts +193 -0
- package/src/fiction/story-engine.ts +326 -0
- package/src/fiction/types.ts +68 -0
- package/src/flatten-guide.md +379 -0
- package/src/index.css +14 -0
- package/src/index.orig.css +13 -0
- package/src/lib/academic-sources.base.ts +188 -0
- package/src/lib/academic-sources.orig.ts +28 -0
- package/src/lib/academic-sources.ts +10 -0
- package/src/lib/advanced-math.ts +119 -0
- package/src/lib/adversarial-engine.base.ts +409 -0
- package/src/lib/adversarial-engine.ts +82 -0
- package/src/lib/ai-revision.ts +623 -0
- package/src/lib/app-state.tsx +426 -0
- package/src/lib/artifact-registry.ts +97 -0
- package/src/lib/artifacts.ts +180 -0
- package/src/lib/atlas-dr.ts +167 -0
- package/src/lib/browser-mtls.ts +127 -0
- package/src/lib/browser-queue.ts +221 -0
- package/src/lib/browser-search-scraper.base.ts +382 -0
- package/src/lib/browser-search-scraper.orig.ts +90 -0
- package/src/lib/browser-search-scraper.ts +10 -0
- package/src/lib/calc-interceptor.ts +82 -0
- package/src/lib/citation-lane-tap.ts +78 -0
- package/src/lib/citation-ledger-store.ts +369 -0
- package/src/lib/citation-ledger.ts +203 -0
- package/src/lib/compute-sandbox.ts +215 -0
- package/src/lib/compute.worker.ts +153 -0
- package/src/lib/connectors/gemini.ts +120 -0
- package/src/lib/connectors/jina.ts +233 -0
- package/src/lib/connectors/marketdata.ts +51 -0
- package/src/lib/connectors/prismafetch.base.ts +175 -0
- package/src/lib/connectors/prismafetch.ts +1 -0
- package/src/lib/connectors/serpapi.ts +65 -0
- package/src/lib/connectors/wikidata.ts +44 -0
- package/src/lib/constraints.ts +331 -0
- package/src/lib/continuation-detector.base.ts +153 -0
- package/src/lib/continuation-detector.ts +48 -0
- package/src/lib/contradraft.ts +168 -0
- package/src/lib/cors-proxy.ts +120 -0
- package/src/lib/coverage.ts +81 -0
- package/src/lib/debug/architecture-prescription.ts +556 -0
- package/src/lib/debug/covea-repair.ts +543 -0
- package/src/lib/debug/helios-ground.ts +319 -0
- package/src/lib/debug/intent-decomposer.ts +281 -0
- package/src/lib/debug/intent-lattice.ts +349 -0
- package/src/lib/debug/pipeline-diagnosis.ts +1149 -0
- package/src/lib/debug/pipeline-trace-bus.ts +424 -0
- package/src/lib/debug/prompt-forge.ts +678 -0
- package/src/lib/debug/repair-sites.ts +513 -0
- package/src/lib/debug/research-phase.ts +266 -0
- package/src/lib/debug/retrieval-context.ts +76 -0
- package/src/lib/debug/retrieval-hardener.ts +142 -0
- package/src/lib/debug/scraper-debug-runner.ts +576 -0
- package/src/lib/debug/scraper-forensics.ts +418 -0
- package/src/lib/debug/scraper-lane-roadmap.ts +136 -0
- package/src/lib/debug/self-test.ts +415 -0
- package/src/lib/debug/step-attribution.ts +211 -0
- package/src/lib/debug/template-rubric.ts +301 -0
- package/src/lib/debug/unified-innovation.ts +126 -0
- package/src/lib/debug/veritas-hybrid-scraper.ts +335 -0
- package/src/lib/defense-registry.ts +104 -0
- package/src/lib/defenses.ts +162 -0
- package/src/lib/deterministic-citation-ledger.ts +174 -0
- package/src/lib/elo-registry.base.ts +117 -0
- package/src/lib/elo-registry.ts +1 -0
- package/src/lib/entity-resolver.ts +291 -0
- package/src/lib/failure-modes.ts +267 -0
- package/src/lib/feature-registry.ts +69 -0
- package/src/lib/flaw-registry.ts +143 -0
- package/src/lib/flaws/_template.ts +52 -0
- package/src/lib/flaws/builtins.ts +63 -0
- package/src/lib/flaws/finance.ts +169 -0
- package/src/lib/flaws/fixers.ts +10 -0
- package/src/lib/flaws/index.ts +32 -0
- package/src/lib/flaws/legal.ts +157 -0
- package/src/lib/flaws/medical.ts +188 -0
- package/src/lib/flaws/original-defenses-pack.ts +81 -0
- package/src/lib/flaws/sample-declarative-pack.json +38 -0
- package/src/lib/flaws/selftest.ts +201 -0
- package/src/lib/flaws/software-extended.ts +125 -0
- package/src/lib/flaws/software-rn-webgl.ts +182 -0
- package/src/lib/flaws/statistics-advanced.ts +46 -0
- package/src/lib/flaws/statistics.ts +61 -0
- package/src/lib/gbse/config.ts +20 -0
- package/src/lib/gbse/engine.ts +226 -0
- package/src/lib/gbse/graph.ts +118 -0
- package/src/lib/gbse/graph.worker.ts +21 -0
- package/src/lib/gbse/tests.ts +117 -0
- package/src/lib/gbse/tiers.ts +65 -0
- package/src/lib/gbse/types.ts +94 -0
- package/src/lib/innovation-genome-engine-v2.orig.ts +1001 -0
- package/src/lib/innovation-genome-engine-v2.ts +3 -0
- package/src/lib/innovation-genome-engine.orig.ts +330 -0
- package/src/lib/innovation-genome-engine.ts +3 -0
- package/src/lib/innovation-genome-v10.orig.ts +314 -0
- package/src/lib/innovation-genome-v10.ts +2 -0
- package/src/lib/innovation-genome-v3.orig.ts +2015 -0
- package/src/lib/innovation-genome-v3.ts +2 -0
- package/src/lib/innovation-genome-v4.orig.ts +1959 -0
- package/src/lib/innovation-genome-v4.ts +2 -0
- package/src/lib/innovation-genome-v5.orig.ts +1210 -0
- package/src/lib/innovation-genome-v5.ts +2 -0
- package/src/lib/innovation-genome-v7.orig.ts +2549 -0
- package/src/lib/innovation-genome-v7.ts +2 -0
- package/src/lib/innovation-genome-v8.orig.ts +1485 -0
- package/src/lib/innovation-genome-v8.ts +2 -0
- package/src/lib/innovation-genome-v9.orig.ts +643 -0
- package/src/lib/innovation-genome-v9.ts +2 -0
- package/src/lib/jina.base.ts +293 -0
- package/src/lib/jina.ts +1 -0
- package/src/lib/live-telemetry.ts +61 -0
- package/src/lib/longwriter.ts +84 -0
- package/src/lib/manuscript-grade-v2.ts +298 -0
- package/src/lib/memory-governor.ts +173 -0
- package/src/lib/memory-stress-tests.ts +248 -0
- package/src/lib/model-intelligence.ts +48 -0
- package/src/lib/model-rotator.ts +75 -0
- package/src/lib/models.orig.ts +513 -0
- package/src/lib/models.ts +151 -0
- package/src/lib/n-deep.base.ts +592 -0
- package/src/lib/n-deep.ts +51 -0
- package/src/lib/nih-simulator.ts +56 -0
- package/src/lib/nih-vulnerability-fixes.ts +460 -0
- package/src/lib/omega-templates.base.ts +294 -0
- package/src/lib/omega-templates.ts +225 -0
- package/src/lib/omni-nexus.ts +64 -0
- package/src/lib/oracle-adapters.ts +67 -0
- package/src/lib/oracle-registry.ts +163 -0
- package/src/lib/orchestrator.ts +357 -0
- package/src/lib/output-boundary.ts +235 -0
- package/src/lib/overrides/vite-native-chaos-harness.ts +154 -0
- package/src/lib/overrides/vite-native-contract-plane.ts +245 -0
- package/src/lib/overrides/vite-native-doctor-plane.ts +208 -0
- package/src/lib/overrides/vite-native-knowledge-store.ts +267 -0
- package/src/lib/overrides/vite-native-policy-plane.ts +190 -0
- package/src/lib/overrides/vite-native-replay-plane.ts +197 -0
- package/src/lib/overrides/vite-native-runtime-plane.ts +106 -0
- package/src/lib/overrides/vite-native-scraper.ts +848 -0
- package/src/lib/overrides/vite-native-selftest-functional.ts +217 -0
- package/src/lib/overrides/vite-native-selftest.ts +183 -0
- package/src/lib/overrides/vite-native-snapshot-plane.ts +123 -0
- package/src/lib/philosophy-toolkit.ts +75 -0
- package/src/lib/pipeline.orig.ts +659 -0
- package/src/lib/pipeline.ts +42 -0
- package/src/lib/precache.ts +128 -0
- package/src/lib/py-sandbox.ts +205 -0
- package/src/lib/quality-score.ts +96 -0
- package/src/lib/quant-engine.ts +231 -0
- package/src/lib/quant-lib.ts +80 -0
- package/src/lib/reportos.ts +175 -0
- package/src/lib/research-os.ts +306 -0
- package/src/lib/resource-estimator.ts +114 -0
- package/src/lib/rpm-governor.ts +93 -0
- package/src/lib/runtime-estimator.ts +135 -0
- package/src/lib/sage/empty-space-v6.ts +560 -0
- package/src/lib/sage/empty-space-v7.ts +222 -0
- package/src/lib/sage/empty-space.ts +733 -0
- package/src/lib/sage/engine.ts +786 -0
- package/src/lib/sage/index.ts +17 -0
- package/src/lib/sage/judge.ts +246 -0
- package/src/lib/sage/prng.ts +53 -0
- package/src/lib/sage/reality-grounding.ts +380 -0
- package/src/lib/sage/repetition.ts +151 -0
- package/src/lib/sage/saga-os-v2-engines.ts +1870 -0
- package/src/lib/sage/saga-os-v2.ts +274 -0
- package/src/lib/sage/saga-os-v3-core.ts +1491 -0
- package/src/lib/sage/saga-os-v3-release.ts +739 -0
- package/src/lib/sage/saga-os-v4-aureate.ts +1161 -0
- package/src/lib/sage/saga-os-v4.ts +212 -0
- package/src/lib/sage/saga-os-v5.ts +205 -0
- package/src/lib/sage/saga-os-v6.ts +346 -0
- package/src/lib/sage/saga-os-v7.ts +314 -0
- package/src/lib/sage/saga-os-v8.ts +505 -0
- package/src/lib/sage/saga-os.ts +329 -0
- package/src/lib/sage/taxonomy.ts +403 -0
- package/src/lib/sage/unified-roll.ts +524 -0
- package/src/lib/sage/worked-sketches.ts +44 -0
- package/src/lib/sage.ts +166 -0
- package/src/lib/scraper-debug-bus.ts +53 -0
- package/src/lib/scraper-enhanced.orig.ts +153 -0
- package/src/lib/scraper-enhanced.ts +10 -0
- package/src/lib/scraper-hardener.base.orig.ts +155 -0
- package/src/lib/scraper-hardener.base.ts +317 -0
- package/src/lib/scraper-hardener.ts +1 -0
- package/src/lib/scraper-palisade/palisade-adjudicator.orig.ts +419 -0
- package/src/lib/scraper-palisade/palisade-adjudicator.ts +13 -0
- package/src/lib/scraper-vnext/arbiter-omega.orig.ts +688 -0
- package/src/lib/scraper-vnext/arbiter-omega.ts +13 -0
- package/src/lib/scraper-vnext/canonical-portfolio-augments.ts +479 -0
- package/src/lib/scraper-vnext/canonical-portfolio-orchestrator.orig.ts +1529 -0
- package/src/lib/scraper-vnext/canonical-portfolio-orchestrator.ts +13 -0
- package/src/lib/scraper-vnext/conclave-omega.ts +1830 -0
- package/src/lib/scraper-vnext/content-extractor-v2.ts +226 -0
- package/src/lib/scraper-vnext/diagnostics-suite.ts +36 -0
- package/src/lib/scraper-vnext/epistemic-packer.ts +97 -0
- package/src/lib/scraper-vnext/fusion-v2.ts +65 -0
- package/src/lib/scraper-vnext/hydra-reader.orig.ts +1216 -0
- package/src/lib/scraper-vnext/hydra-reader.ts +13 -0
- package/src/lib/scraper-vnext/native-scraper-browser-vnext.orig.ts +91 -0
- package/src/lib/scraper-vnext/native-scraper-browser-vnext.ts +13 -0
- package/src/lib/scraper-vnext/nexus-consensus.orig.ts +905 -0
- package/src/lib/scraper-vnext/nexus-consensus.ts +13 -0
- package/src/lib/scraper-vnext/portfolio-consensus-adjudicator.ts +804 -0
- package/src/lib/scraper-vnext/portfolio-consensus-memory.ts +377 -0
- package/src/lib/scraper-vnext/portfolio-terminal-governor.ts +548 -0
- package/src/lib/scraper-vnext/query-strategist.orig.ts +224 -0
- package/src/lib/scraper-vnext/query-strategist.ts +423 -0
- package/src/lib/scraper-vnext/retrieval-accelerator.ts +708 -0
- package/src/lib/scraper-vnext/retrieval-audit-augments.ts +477 -0
- package/src/lib/scraper-vnext/retrieval-control-plane.ts +904 -0
- package/src/lib/scraper-vnext/retrieval-policy-augments.ts +358 -0
- package/src/lib/scraper-vnext/safe-fetch-v2.ts +157 -0
- package/src/lib/scraper-vnext/sentinel-omega.ts +56 -0
- package/src/lib/scraper-vnext/sentinel-orchestrator.ts +69 -0
- package/src/lib/scraper-vnext/sibyl-oracle.orig.ts +413 -0
- package/src/lib/scraper-vnext/sibyl-oracle.ts +13 -0
- package/src/lib/scraper-vnext/smart-read-v2.ts +55 -0
- package/src/lib/scraper-vnext/spa-rescue-bridge.ts +608 -0
- package/src/lib/scraper-vnext/strata-engine.orig.ts +2666 -0
- package/src/lib/scraper-vnext/strata-engine.ts +13 -0
- package/src/lib/scraper-vnext/structured-source-adapter.orig.ts +369 -0
- package/src/lib/scraper-vnext/structured-source-adapter.ts +34 -0
- package/src/lib/scraper-vnext/terminal-complete.ts +224 -0
- package/src/lib/scraper-vnext/terminal-final.ts +277 -0
- package/src/lib/scraper-vnext/terminal-saturation.ts +345 -0
- package/src/lib/scraper-vnext/terminal-wire.ts +425 -0
- package/src/lib/scraper-vnext/vanguard-titanium.orig.ts +467 -0
- package/src/lib/scraper-vnext/vanguard-titanium.ts +17 -0
- package/src/lib/search-cache.ts +138 -0
- package/src/lib/sloop-runner.base.ts +223 -0
- package/src/lib/sloop-runner.ts +104 -0
- package/src/lib/sloop.ts +114 -0
- package/src/lib/small-model-adapters.ts +82 -0
- package/src/lib/sscp.ts +86 -0
- package/src/lib/system-map.ts +54 -0
- package/src/lib/uni-node.ts +86 -0
- package/src/lib/universal-rigor-guard.ts +433 -0
- package/src/lib/v15-gate-testbed.ts +274 -0
- package/src/lib/v15-gemini.base.ts +89 -0
- package/src/lib/v15-gemini.ts +1 -0
- package/src/lib/v15-grounding.orig.ts +241 -0
- package/src/lib/v15-grounding.ts +79 -0
- package/src/lib/v15-pipeline.base.ts +769 -0
- package/src/lib/v15-pipeline.orig.ts +1154 -0
- package/src/lib/v15-pipeline.ts +674 -0
- package/src/lib/v15-questions.ts +64 -0
- package/src/lib/v15-rate-limiter.orig.ts +91 -0
- package/src/lib/v15-rate-limiter.ts +48 -0
- package/src/lib/v15-state.base.ts +87 -0
- package/src/lib/v15-state.ts +28 -0
- package/src/lib/visual-table-generator.tsx +207 -0
- package/src/lib/wasm-runtime.ts +133 -0
- package/src/lib/williams-persona-guide.ts +265 -0
- package/src/lib/williams-style.base.ts +464 -0
- package/src/lib/williams-style.ts +59 -0
- package/src/lib/worker-pool.ts +96 -0
- package/src/lib/writing-tiers.ts +125 -0
- package/src/main.orig.tsx +10 -0
- package/src/main.tsx +10 -0
- package/src/utils/cn.orig.ts +6 -0
- package/src/utils/cn.ts +6 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig.json +31 -0
- package/unify.mjs +537 -0
- package/vite.config.ts +18 -0
|
@@ -0,0 +1,733 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SAGE Empty Space / Grounded Space canonical database — Turn 5 (verbatim).
|
|
3
|
+
* ---------------------------------------------------------------------------
|
|
4
|
+
* Source: user-provided "CANONICAL v5 / EMPTY SPACE v2" and companion
|
|
5
|
+
* "canonical v5" documents. Every ID and its name/description/tag text is
|
|
6
|
+
* transcribed 1:1 from the source. Formatting is restructured into typed
|
|
7
|
+
* arrays (pipe-table -> tuple) but no wording is altered, abridged, or
|
|
8
|
+
* paraphrased. Meta-ledger bands (MERGE, ABSTRACT-REPAIR, GH harnesses) are
|
|
9
|
+
* retained as audit data; they are not narrative primitives and are not fed
|
|
10
|
+
* into the SAGE random-roll pools, but are exported for completeness.
|
|
11
|
+
*
|
|
12
|
+
* HONESTY: transcription was performed by direct copy from the pasted
|
|
13
|
+
* source text in this conversation turn; no external database or search was
|
|
14
|
+
* used or is needed for this static content.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import { V6_EMPTY_SPACE_BANDS, V6_EMPTY_SPACE_TOTAL } from "./empty-space-v6";
|
|
18
|
+
import { V7_EMPTY_SPACE_BANDS, V7_EMPTY_SPACE_TOTAL } from "./empty-space-v7";
|
|
19
|
+
|
|
20
|
+
export type EmptySpaceEntry = {
|
|
21
|
+
id: string;
|
|
22
|
+
band: string;
|
|
23
|
+
name: string;
|
|
24
|
+
desc: string;
|
|
25
|
+
tag: string;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
type Row = [string, string, string, string];
|
|
29
|
+
|
|
30
|
+
function toEntries(band: string, rows: Row[]): EmptySpaceEntry[] {
|
|
31
|
+
return rows.map(([id, name, desc, tag]) => ({ id, band, name, desc, tag }));
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// ── §ES-F — Formal empty architectures ──────────────────────────────────────
|
|
35
|
+
const ES_F: Row[] = [
|
|
36
|
+
["ES-F001", "Fixed-Point Narrative", "A family keeps rewriting the rules of its own history until all versions stabilize — each act revises prior rules until beginning and ending mutually reproduce", "[adj:metafiction] ≠ circular narrative; convergence, not return, is the endpoint"],
|
|
37
|
+
["ES-F002", "Minimal-Unsatisfiable-Core Plot", "A town discovers no single promise is wrong, but all promises together make life impossible — plot strips constraints until the irreducible contradiction remains", "[adj:SAT/CSP] ≠ dilemma; impossibility is collective and minimal"],
|
|
38
|
+
["ES-F003", "Renormalization Epic", "The same betrayal repeats in a child, household, city, species, and cosmos, with different rules at each scale — conflict is coarse-grained across levels; one invariant must survive", "[adj:fractal/ring] ≠ repetition; rules transform between scales"],
|
|
39
|
+
["ES-F004", "Monodromy Journey", "A pilgrim circles an absence and returns home with one identity-coordinate changed — change is path-dependent and distributed around a loop", "[adj:voyage-return] ≠ ordeal-based transformation"],
|
|
40
|
+
["ES-F005", "Pareto-Frontier Arc", "A leader must choose among lives where no value can improve without another worsening — ending selects among incomparable optimal states", "[adj:tradeoff] ≠ compromise; no scalar \"best\" exists"],
|
|
41
|
+
["ES-F006", "Minimum-Cut Story", "A community survives because no small set of broken ties can disconnect it — antagonist attacks network connectivity, not people", "[candidate-original] ≠ conspiracy plot; conflict targets graph structure"],
|
|
42
|
+
["ES-F007", "Deadlock Ensemble", "Everyone waits rationally for someone else to move first; no villain exists — circular wait freezes the story until a deadlock condition is broken", "[adj:standoff] ≠ bilateral hostage exchange"],
|
|
43
|
+
["ES-F008", "Race-Condition Tragedy", "Several good decisions interleave in the only wrong order — disaster arises solely from timing, not ignorance or malice", "[adj:farce/coincidence] ≠ misunderstanding; all local information is correct"],
|
|
44
|
+
["ES-F009", "Snapshot-Isolation Tragedy", "Every character acts on a correct private snapshot; together they violate reality — local consistency creates global failure", "[candidate-original] ≠ Rashomon; every view is correct"],
|
|
45
|
+
["ES-F010", "Partition-Choice Drama", "A divided society must choose consistency of record or local availability of life — communication partition forces a structural sacrifice", "[adj:distributed-systems] ≠ simple miscommunication"],
|
|
46
|
+
["ES-F011", "Hysteresis Arc", "Recovery requires a different path than collapse — removing the cause does not restore the prior state", "[adj:return plot] ≠ \"changed by journey\"; transition thresholds differ"],
|
|
47
|
+
["ES-F012", "Phase-Transition Narrative", "Small pressures accumulate until society abruptly becomes a different kind of system — no single inciting incident; an order parameter crosses threshold", "[adj:revolution] ≠ gradual reform"],
|
|
48
|
+
["ES-F013", "Critical-Slowing Climax", "As transformation nears, recovery slows and every disturbance lingers — suspense increases while action decelerates", "[candidate-original] ≠ slow motion; deceleration predicts phase change"],
|
|
49
|
+
["ES-F014", "Percolation Ensemble", "Minor bonds form until one final link connects the whole world — climax is sudden global reachability", "[adj:network narrative] ≠ convergent climax; participants need not meet"],
|
|
50
|
+
["ES-F015", "Simpson-Reversal Structure", "Every subgroup story teaches one moral, but the aggregate teaches the opposite — both subgroup and whole readings are true", "[adj:statistical paradox] ≠ unreliable data"],
|
|
51
|
+
["ES-F016", "Condorcet-Cycle Plot", "Every democratic victory creates the majority that defeats it next — legitimate social choice cycles forever", "[adj:political stalemate] ≠ betrayal or corruption"],
|
|
52
|
+
["ES-F017", "Fairness-Impossibility Election", "Honest citizens discover no rule satisfies every fairness axiom — resolution is choosing which fairness to violate", "[adj:political tragedy] ≠ corrupt election"],
|
|
53
|
+
["ES-F018", "Braess-Removal Quest", "More roads, allies, or powers worsen the collective outcome — hero must destroy useful options to improve the system", "[adj:anti-quest] ≠ cursed gift"],
|
|
54
|
+
["ES-F019", "Topological-Invariant Quest", "Local appearances can change freely; only global connectedness matters — victory requires changing topology, not defeating a monster", "[candidate-original] ≠ shapeshifting world"],
|
|
55
|
+
["ES-F020", "Homotopy-Class Choice Structure", "Many visible choices are structurally the same route — only choices crossing forbidden obstacles count as genuine", "[candidate-original] ≠ branching path"],
|
|
56
|
+
["ES-F021", "Quotient-Identity Saga", "Society changes the equivalence relation defining personhood — bodies stay fixed while social persons merge or split", "[candidate-original] ≠ hive mind/body split"],
|
|
57
|
+
["ES-F022", "Non-Orientable Allegiance Arc", "A continuous journey reverses ally/enemy orientation without betrayal — reversal is global and impossible to localize", "[adj:role reversal] ≠ corruption/revelation"],
|
|
58
|
+
["ES-F023", "Error-Correcting Epic", "Several corrupted tellings encode the true story by parity relations — truth recovered from redundancy among errors", "[adj:Rashomon] ≠ trusting the best narrator"],
|
|
59
|
+
["ES-F024", "Inverse-Problem Mystery", "Effects admit many hidden causes; detective must choose a stabilizing constraint — mystery is underdetermined by evidence", "[adj:detective] ≠ whodunit"],
|
|
60
|
+
["ES-F025", "Non-Identifiable Resolution", "Multiple models explain all observations forever — climax is robust action without epistemic closure", "[adj:ambiguous ending] ≠ unresolved failure"],
|
|
61
|
+
["ES-F026", "Robust-Control Quest", "Hero cannot know the world-model; must choose a policy safe across bounded uncertainty — success without correct prediction", "[adj:competence quest] ≠ prophecy/planning"],
|
|
62
|
+
["ES-F027", "Minimax-Regret Journey", "Protagonist chooses the life whose worst hindsight is least unbearable — antagonist chooses which possible future becomes real", "[adj:decision dilemma] ≠ expected-value maximization"],
|
|
63
|
+
["ES-F028", "Option-Value Arc", "Progress means preserving future choices until final irreversible commitment — optionality is the early good; commitment is the climax", "[adj:reluctant hero] ≠ mere refusal"],
|
|
64
|
+
["ES-F029", "Bifurcation Plot", "One continuous parameter crosses a threshold and splits life into two stable branches — no discrete choice causes the split", "[adj:butterfly effect] ≠ remote sensitivity"],
|
|
65
|
+
["ES-F030", "Attractor-Basin Saga", "Different people converge toward the same fate despite intentions — escape requires crossing an invisible basin boundary", "[adj:fate] ≠ prophecy"],
|
|
66
|
+
["ES-F031", "Metastable-Delay Narrative", "Society is locally stable but globally wrong; only a correctly shaped seed can transform it — nucleation geometry, not willpower, causes change", "[adj:slow-burn] ≠ waiting for hero"],
|
|
67
|
+
["ES-F032", "Absorbing-State Tragedy", "The story contains a state that can be entered but never exited — suspense is approach probability, not escape", "[adj:point-of-no-return] ≠ imprisonment/death alone"],
|
|
68
|
+
];
|
|
69
|
+
|
|
70
|
+
// ── §ES-O — Opus nonduplicate imports ────────────────────────────────────────
|
|
71
|
+
const ES_O: Row[] = [
|
|
72
|
+
["ES-O001", "De-Coincidence Mystery", "A detective proves two \"obviously linked\" things were never connected — anti-recognition as whole-work form", "[candidate-original] ≠ whodunit; solution is severance, not linkage"],
|
|
73
|
+
["ES-O002", "Over-Determination Trial", "Every suspect fully caused the crime — court drama allocates responsibility among sufficient causes", "[candidate-original] ≠ shared guilt; every cause alone is enough"],
|
|
74
|
+
["ES-O003", "Question-Orbit Structure", "Scenes orbit a massive unanswered question whose answer would collapse the work — question has gravitational plot-mass", "[candidate-original] ≠ dramatic question; the question is a physical attractor"],
|
|
75
|
+
["ES-O004", "Aggregate-Protagonist Work", "The protagonist is an emergent statistical person no character perceives — only reader sees the aggregate hero", "[candidate-original] ≠ systems novel; there is one protagonist, but no named person is it"],
|
|
76
|
+
["ES-O005", "Contagion Architecture", "A property, mood, or belief spreads through cast by epidemic rules — plot is outbreak curve, quarantine, recovery, herd threshold", "[candidate-original] ≠ mood contagion; full epidemiological grammar"],
|
|
77
|
+
["ES-O006", "Ontological-Thrift Narrative", "Protagonist's growth means occupying less reality — success is reduced existence-footprint", "[candidate-original] ≠ ascetic minimalism"],
|
|
78
|
+
["ES-O007", "Reciprocal-Haunting Duet", "Two living people are each other's ghosts — closure requires breaking symmetric haunting", "[candidate-original] ≠ obsession"],
|
|
79
|
+
["ES-O008", "Quorum Chronicle", "Time and events advance only by referendum — narrative tempo is political consensus", "[candidate-original] ≠ democratic-process novel"],
|
|
80
|
+
["ES-O009", "Checksum Framework", "A recurring validation pass can declare previous chapters corrupt — book is parity-checked by its own structure", "[candidate-original] ≠ recap/frame narrator"],
|
|
81
|
+
["ES-O010", "Foreclosed-Future Bildungsroman", "An unlived alternative life matures instead of the actual person — coming-of-age of a counterfactual preserve", "[candidate-original] ≠ what-if interlude"],
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
// ── §4 Accessibility overlay: abstractness repair (meta, audit-only) ────────
|
|
85
|
+
export const ABSTRACT_REPAIR: { id: string; targets: string; issue: string; grounding: string }[] = [
|
|
86
|
+
{ id: "ABSTRACT-REPAIR-001", targets: "ES-L034 Conserved Coincidence / Noetherian Story Law", issue: "Too abstract alone", grounding: "Ground as a religious court, insurance ledger, or marriage contract whose symmetry violations create visible debts" },
|
|
87
|
+
{ id: "ABSTRACT-REPAIR-002", targets: "ES-S013 Fractional-Dimension Country", issue: "Too abstract alone", grounding: "Ground as a border village where children can hide in fractal legal territory" },
|
|
88
|
+
{ id: "ABSTRACT-REPAIR-003", targets: "ES-D015 Conserved-Meaning Current", issue: "Too abstract alone", grounding: "Ground as a newspaper, archive, or monastery that must balance significance" },
|
|
89
|
+
{ id: "ABSTRACT-REPAIR-004", targets: "ES-F019 Topological-Invariant Quest", issue: "Too abstract alone", grounding: "Ground as a prison-break where escape requires changing what counts as \"inside\"" },
|
|
90
|
+
{ id: "ABSTRACT-REPAIR-005", targets: "ES-F020 Homotopy-Class Choice", issue: "Too abstract alone", grounding: "Ground as a pilgrimage law: different roads count as same sin unless they cross a forbidden grief" },
|
|
91
|
+
{ id: "ABSTRACT-REPAIR-006", targets: "ES-F021 Quotient-Identity Saga", issue: "Too abstract alone", grounding: "Ground as family court deciding whether twins, spouses, or towns count as one legal person" },
|
|
92
|
+
{ id: "ABSTRACT-REPAIR-007", targets: "ES-F023 Error-Correcting Epic", issue: "Human-ready if testimonials are emotionally costly", grounding: "Ground as refugees preserving truth through deliberately mismatched testimonies" },
|
|
93
|
+
{ id: "ABSTRACT-REPAIR-008", targets: "ES-F026 Robust-Control Quest", issue: "Human-ready if model uncertainty has personal stakes", grounding: "Ground as a doctor treating a patient whose disease model cannot be identified" },
|
|
94
|
+
];
|
|
95
|
+
|
|
96
|
+
// ── §ES-HC — Human-ready character/job corpora ──────────────────────────────
|
|
97
|
+
const ES_HC: Row[] = [
|
|
98
|
+
["ES-HC001", "Attention Nurse", "A caregiver assigned to keep attention-starved people from thinning out — care labor becomes literal life support", "[candidate-original]"],
|
|
99
|
+
["ES-HC002", "Guilt Hydrologist", "Investigator maps where conserved guilt will pool after crimes — mystery about moral fluid dynamics, not culprit identity", "[candidate-original]"],
|
|
100
|
+
["ES-HC003", "Truth Freshener", "A clerk renews aging truths before they rot into falsehood — bureaucratic thriller about expiring facts", "[candidate-original]"],
|
|
101
|
+
["ES-HC004", "Sequence Judge", "Magistrate assigns order to genuinely unordered events — courtroom drama where chronology is verdict", "[candidate-original]"],
|
|
102
|
+
["ES-HC005", "Future-Debt Collector", "Agent collects debts incurred by descendants not yet born — family/legal drama with downstream creditors", "[candidate-original]"],
|
|
103
|
+
["ES-HC006", "Underdescription Paramedic", "Emergency narrator stabilizes places collapsing for lack of detail — rescue work through description", "[candidate-original]"],
|
|
104
|
+
["ES-HC007", "Competence Donor", "Person willingly loses a skill so another can learn it — education as organ donation", "[candidate-original]"],
|
|
105
|
+
["ES-HC008", "Opacity Counselor", "Therapist teaches lovers how not to understand each other completely — romance where full empathy kills", "[candidate-original]"],
|
|
106
|
+
["ES-HC009", "Question Hospice Chaplain", "Comforts questions about to be answered and therefore die — mystery culture with funeral rites for closure", "[candidate-original]"],
|
|
107
|
+
["ES-HC010", "Meaning Accountant", "Balances profound and trivial events in a significance-ledger — drama of emotional bookkeeping", "[candidate-original]"],
|
|
108
|
+
["ES-HC011", "Possibility Funeral Director", "Conducts rites for futures foreclosed by decisions — grief work for unlived outcomes", "[candidate-original]"],
|
|
109
|
+
["ES-HC012", "Reference Standard Saint", "A person everyone is measured against but who can never be measured — chosen-one loneliness without power fantasy", "[candidate-original]"],
|
|
110
|
+
["ES-HC013", "Consensus Cartographer", "Maps terrain that exists only where enough citizens agree — political geography as job", "[candidate-original]"],
|
|
111
|
+
["ES-HC014", "Unhappening Claims Adjuster", "Insurance worker prices which past event must be erased to fund a new event — bureaucracy of conserved occurrence", "[candidate-original]"],
|
|
112
|
+
["ES-HC015", "Inattention Lawyer", "Defends fragile people from lethal scrutiny — legal drama where privacy is survival", "[candidate-original]"],
|
|
113
|
+
["ES-HC016", "Quorum Whip", "Political operator gathers votes to keep time moving — legislative thriller where filibuster freezes clocks", "[candidate-original]"],
|
|
114
|
+
["ES-HC017", "Model-Agnostic Doctor", "Treats patients when every causal model fits the symptoms equally — medical robust-control drama", "[candidate-original]"],
|
|
115
|
+
["ES-HC018", "Skill-Drain Teacher", "Teacher ages into incompetence as students learn — school tragedy about generous self-erasure", "[candidate-original]"],
|
|
116
|
+
["ES-HC019", "Narrative Customs Officer", "Inspects imported backstories for illegal retro-filled contradictions — border fiction for histories", "[candidate-original]"],
|
|
117
|
+
["ES-HC020", "Counterfactual Groundskeeper", "Maintains the preserve of lives never lived — quiet pastoral of unlived futures", "[candidate-original]"],
|
|
118
|
+
["ES-HC021", "Invariant Priest", "Worships a conservation law and performs audits instead of prayers — theology without a petitionable god", "[candidate-original]"],
|
|
119
|
+
["ES-HC022", "Rounding-Error Detective", "Solves cases no one else can perceive because the crimes are below reality's computation threshold — negligibility as investigative advantage", "[candidate-original]"],
|
|
120
|
+
["ES-HC023", "Debt-Midwife", "Helps unborn creditors come into legal force without destroying ancestors — reproductive law + temporal finance", "[candidate-original]"],
|
|
121
|
+
["ES-HC024", "Legibility Coroner", "Determines whether a death was caused by someone understanding too much — forensic epistemology", "[candidate-original]"],
|
|
122
|
+
["ES-HC025", "Chronology Therapist", "Helps families whose shared events have no intrinsic order negotiate a livable sequence — counseling for partial-order lives", "[candidate-original]"],
|
|
123
|
+
];
|
|
124
|
+
|
|
125
|
+
// ── §ES-HI — Human-ready institutions ────────────────────────────────────────
|
|
126
|
+
const ES_HI: Row[] = [
|
|
127
|
+
["ES-HI001", "Attention Bank", "Deposits and loans of gaze keep neglected citizens alive — finance of being noticed", "[candidate-original]"],
|
|
128
|
+
["ES-HI002", "Truth Refrigeratory", "Public vault where facts are stored cold to slow truth-rot — archive as preservation of validity, not documents", "[candidate-original]"],
|
|
129
|
+
["ES-HI003", "School of Ethical Forgetting", "Trains lovers, parents, and judges in forgetting as care — memory loss as skill, not pathology", "[candidate-original]"],
|
|
130
|
+
["ES-HI004", "Unasked-Question Museum", "Preserves the shapes of inquiries no culture ever formed — museum of curiosity gaps", "[candidate-original]"],
|
|
131
|
+
["ES-HI005", "Competence Commons", "Collective pool of skills redistributed by law — welfare state for ability", "[candidate-original]"],
|
|
132
|
+
["ES-HI006", "Foreclosure Monastery", "Monks devote life to preventing dangerous futures from ever becoming possible — spirituality of subtraction", "[candidate-original]"],
|
|
133
|
+
["ES-HI007", "Quorum Clock Parliament", "Time advances only when parliamentary quorum holds — statecraft as timekeeping", "[candidate-original]"],
|
|
134
|
+
["ES-HI008", "Bureau of Incomparable Values", "Refuses false rankings and certifies genuine incomparability — anti-utilitarian civil service", "[candidate-original]"],
|
|
135
|
+
["ES-HI009", "Description Fire Brigade", "Rushes to render under-described districts before collapse — civic prose emergency service", "[candidate-original]"],
|
|
136
|
+
["ES-HI010", "Future-Debt Registry", "Records obligations generated by descendants — legal archive facing forward", "[candidate-original]"],
|
|
137
|
+
["ES-HI011", "Orphaned-Answer Shelter", "Houses correct answers whose questions vanished — epistemic charity institution", "[candidate-original]"],
|
|
138
|
+
["ES-HI012", "Legibility Restraint Court", "Issues injunctions against understanding a person too completely — privacy court with lethal stakes", "[candidate-original]"],
|
|
139
|
+
["ES-HI013", "Partial-Death Hospice", "Domestic care for citizens stabilized at fixed death fractions — no cure arc; maintenance as dignity", "[candidate-original]"],
|
|
140
|
+
["ES-HI014", "Meaning Ration Office", "Allocates cultural significance to art, funerals, trials, births — scarcity of meaning, not money", "[candidate-original]"],
|
|
141
|
+
["ES-HI015", "Consensus Road Authority", "Maintains roads requiring live belief to remain solid — infrastructure politics literalized", "[candidate-original]"],
|
|
142
|
+
["ES-HI016", "Counterfactual Adoption Agency", "Lets people adopt unlived versions of themselves or others — family law for not-happened lives", "[candidate-original]"],
|
|
143
|
+
["ES-HI017", "Inattention Sanctuary", "Refuge where no one is examined closely enough to collapse — sacred neglect as protection", "[candidate-original]"],
|
|
144
|
+
["ES-HI018", "Order-Negotiation Embassy", "Mediates disputes between cultures with incompatible event orderings — diplomacy of sequence", "[candidate-original]"],
|
|
145
|
+
["ES-HI019", "Skill Hospice", "Gives honorable endings to abilities drained by education — ceremony for lost competence", "[candidate-original]"],
|
|
146
|
+
["ES-HI020", "Anti-Map Conservancy", "Protects regions destroyed by being charted — environmentalism for unmappedness", "[candidate-original]"],
|
|
147
|
+
["ES-HI021", "Error-Correcting Archive", "Preserves truth through deliberately corrupted redundant accounts — archive that distrusts each document", "[candidate-original]"],
|
|
148
|
+
["ES-HI022", "Regret Mint", "Currency issued only when a citizen makes an irreversible mistake — economy of remorse", "[candidate-original]"],
|
|
149
|
+
["ES-HI023", "Witness Guild", "Professional witnesses hired to keep events from retroactively un-happening — labor of looking", "[candidate-original]"],
|
|
150
|
+
["ES-HI024", "Equilibrium Hospital", "Treats patients not by curing but by finding stable partial states — medicine against completion bias", "[candidate-original]"],
|
|
151
|
+
["ES-HI025", "Narrative Audit Office", "Reviews whether a life's significance ledger balances before death — existential accounting", "[candidate-original]"],
|
|
152
|
+
];
|
|
153
|
+
|
|
154
|
+
// ── §ES-HP — Human-ready plot engines ────────────────────────────────────────
|
|
155
|
+
const ES_HP: Row[] = [
|
|
156
|
+
["ES-HP001", "The Competence Scholarship", "A poor student receives skill knowing someone else must lose it — education-as-theft moral plot", "[candidate-original]"],
|
|
157
|
+
["ES-HP002", "The Last Warm Word", "Civilization tries to preserve one symbol before semantic heat death — quest for remaining meaning", "[candidate-original]"],
|
|
158
|
+
["ES-HP003", "The Blink Strike", "A minority refuses quorum and freezes time to win labor rights — political thriller of temporal veto", "[candidate-original]"],
|
|
159
|
+
["ES-HP004", "The False First Trial", "A court decides which unordered event came first, changing inheritance — legal plot about manufactured chronology", "[candidate-original]"],
|
|
160
|
+
["ES-HP005", "The Attention Heist", "Criminals steal public gaze from a celebrity to revive the neglected dead — heist target is attention-resource", "[candidate-original]"],
|
|
161
|
+
["ES-HP006", "The Unhappening Bargain", "A mother saves her child by erasing the day she met the child's father — sacrifice through occurrence conservation", "[candidate-original]"],
|
|
162
|
+
["ES-HP007", "The Question Funeral", "A detective solves a mystery and must bury the question she loved — anti-closure mystery", "[candidate-original]"],
|
|
163
|
+
["ES-HP008", "The Incomparable Marriage", "Two partners' vows have no possible ranking; society keeps forcing comparison — romance against ranking", "[candidate-original]"],
|
|
164
|
+
["ES-HP009", "The Reference Revolt", "The standard by which all citizens are measured refuses its role — civic crisis of measurability", "[candidate-original]"],
|
|
165
|
+
["ES-HP010", "The Underdescribed Ward", "Patients vanish because medical charts fail to render them in enough specificity — hospital procedural + description debt", "[candidate-original]"],
|
|
166
|
+
["ES-HP011", "The Opacity Pact", "Lovers survive by withholding final understanding — romance of merciful incomprehension", "[candidate-original]"],
|
|
167
|
+
["ES-HP012", "The Counterfactual Child", "Parents raise the life their real child never chose — family drama of unlived custody", "[candidate-original]"],
|
|
168
|
+
["ES-HP013", "The Guilt Flood", "After a murder, guilt flows into innocent districts; engineers build levees of confession — disaster mystery of blame", "[candidate-original]"],
|
|
169
|
+
["ES-HP014", "The Aging Alibi", "A suspect's true alibi becomes false before trial — legal thriller against truth-rot", "[candidate-original]"],
|
|
170
|
+
["ES-HP015", "The Unmapped Homeland", "Refugees seek a country that dies if successfully mapped — migration story against cartography", "[candidate-original]"],
|
|
171
|
+
["ES-HP016", "The Inattention Custody Battle", "Two parents fight for the right not to look too closely at their fragile child — family court of protective neglect", "[candidate-original]"],
|
|
172
|
+
["ES-HP017", "The Recomputed Spouse", "One morning a partner wakes as a lawful but divergent solution of themselves — domestic recomputation drama", "[candidate-original]"],
|
|
173
|
+
["ES-HP018", "The Deadlock Wedding", "Every family must consent in an order that circularly blocks itself — farce becomes formal deadlock", "[candidate-original]"],
|
|
174
|
+
["ES-HP019", "The Minimum-Cut Betrayal", "A spy must sever exactly the fewest relationships to collapse a resistance — graph-theory espionage", "[candidate-original]"],
|
|
175
|
+
["ES-HP020", "The Absorbing Addiction", "A community approaches a state no one can exit, but no single act is the threshold — social tragedy of absorbing states", "[candidate-original]"],
|
|
176
|
+
["ES-HP021", "The Error-Correcting Testimony", "War survivors intentionally contradict each other so descendants can reconstruct truth — trauma archive as parity code", "[candidate-original]"],
|
|
177
|
+
["ES-HP022", "The Meaning Blackout", "A city spends all its significance on a royal funeral; births afterward feel empty — civic meaning crisis", "[candidate-original]"],
|
|
178
|
+
["ES-HP023", "The Non-Identifiable Cure", "Doctor saves patient using treatment robust across diseases without ever knowing diagnosis — practical closure without epistemic closure", "[candidate-original]"],
|
|
179
|
+
["ES-HP024", "The Foreclosure Garden", "A gardener grows futures only to prune them before they become dangerous — domestic anti-cosmogony", "[candidate-original]"],
|
|
180
|
+
["ES-HP025", "The Simpson City", "Every neighborhood's story proves reform works; the citywide story proves it fails — statistical tragedy with true local narratives", "[candidate-original]"],
|
|
181
|
+
];
|
|
182
|
+
|
|
183
|
+
// ── §ES-HS — Human-ready settings / subgenres ────────────────────────────────
|
|
184
|
+
const ES_HS: Row[] = [
|
|
185
|
+
["ES-HS001", "The Attention Hospice", "Facility where forgotten people are kept alive by scheduled visitors — setting for care, guilt, and triage", "[candidate-original]"],
|
|
186
|
+
["ES-HS002", "The Incomparable Court", "Courtroom where judges certify that no ranking relation exists — legal drama of non-comparability", "[candidate-original]"],
|
|
187
|
+
["ES-HS003", "The Backstory Foundry", "Industrial site generating pasts only when clients need them — noir of manufactured history", "[candidate-original]"],
|
|
188
|
+
["ES-HS004", "The Meaning Mine", "Town extracts past significance as ore, thinning its own history — labor novel of semantic extraction", "[candidate-original]"],
|
|
189
|
+
["ES-HS005", "The Quorum City", "Traffic lights, clocks, and seasons run by consensus vote — civic satire with metaphysical stakes", "[candidate-original]"],
|
|
190
|
+
["ES-HS006", "The Foreclosed-Future Preserve", "National park for unlived lives — pastoral counterfactual fiction", "[candidate-original]"],
|
|
191
|
+
["ES-HS007", "The Truth Market", "Facts sold by freshness date; old truths discounted as dangerous — marketplace thriller", "[candidate-original]"],
|
|
192
|
+
["ES-HS008", "The Skill-Drain Academy", "Prestigious school whose graduates leave villages incompetent — education dystopia with real transfer cost", "[candidate-original]"],
|
|
193
|
+
["ES-HS009", "The Orphaned-Answer Library", "Shelves of correct answers without questions — epistemic gothic", "[candidate-original]"],
|
|
194
|
+
["ES-HS010", "The Unmapped Quarter", "City district that changes into a lesser place whenever charted — urban fantasy / political geography", "[candidate-original]"],
|
|
195
|
+
["ES-HS011", "The Witness Desert", "Landscape erases any route not continuously observed — survival journey with attention logistics", "[candidate-original]"],
|
|
196
|
+
["ES-HS012", "The Partial-Death Suburb", "Ordinary neighborhood designed for residents who are stably partly dead — domestic realism with altered mortality", "[candidate-original]"],
|
|
197
|
+
["ES-HS013", "The Anti-Reflexive Village", "Everyone can become anyone else but never quite themselves — identity pastoral", "[candidate-original]"],
|
|
198
|
+
["ES-HS014", "The Error-Correcting Monastery", "Monks preserve sacred truth by deliberate controlled errors — religious archive fiction", "[candidate-original]"],
|
|
199
|
+
["ES-HS015", "The Consensus Bridge", "Bridge load-bearing only while travelers agree it exists — disaster civic thriller", "[candidate-original]"],
|
|
200
|
+
["ES-HS016", "The Description-Debt Tenement", "Poor housing collapses because nobody narrates tenants fully — social realism of underdescription", "[candidate-original]"],
|
|
201
|
+
["ES-HS017", "The No-Outside House", "Domestic space with infinite inside and no exterior — family drama, not labyrinth adventure", "[candidate-original]"],
|
|
202
|
+
["ES-HS018", "The Regret Mint", "Mistakes are processed into spendable currency — economic tragedy/satire", "[candidate-original]"],
|
|
203
|
+
["ES-HS019", "The Causal-Depth Archive", "Records events by number of causes rather than date — historical mystery without chronology", "[candidate-original]"],
|
|
204
|
+
["ES-HS020", "The Option-Value Frontier Town", "Settlers survive by preserving reversibility, not conquering land — Western inverted around optionality", "[candidate-original]"],
|
|
205
|
+
];
|
|
206
|
+
|
|
207
|
+
// ── §ES-HR — Human-ready relationship forms ──────────────────────────────────
|
|
208
|
+
const ES_HR: Row[] = [
|
|
209
|
+
["ES-HR001", "Protective Inattention", "A bond maintained by choosing not to inspect the other too closely — love as restraint of knowledge", "[candidate-original]"],
|
|
210
|
+
["ES-HR002", "Skill-Sacrifice Mentorship", "Teacher literally loses what student learns — mentorship with bodily cost", "[candidate-original]"],
|
|
211
|
+
["ES-HR003", "Incomparable Siblinghood", "Siblings whose lives cannot be ranked by age, duty, or achievement — family drama against comparison", "[candidate-original]"],
|
|
212
|
+
["ES-HR004", "Future-Creditor Marriage", "Couple marries because their descendants have already issued debt — romance under downstream obligation", "[candidate-original]"],
|
|
213
|
+
["ES-HR005", "Witness-Pact Friendship", "Friends keep each other's histories from un-happening by remembering together — memory friendship with existential stakes", "[candidate-original]"],
|
|
214
|
+
["ES-HR006", "Opacity Courtship", "Lovers reveal enough to bond, not enough to kill — courtship choreography of incompleteness", "[candidate-original]"],
|
|
215
|
+
["ES-HR007", "Counterfactual Co-Parenting", "Two people raise a child neither actually had, preserved in possibility — family of unlived futures", "[candidate-original]"],
|
|
216
|
+
["ES-HR008", "Valence-Coupled Marriage", "One spouse's happiness requires the other's sorrow unless they engineer emotional offsets — love under conserved affect", "[candidate-original]"],
|
|
217
|
+
["ES-HR009", "Quorum Family", "Family decisions literally advance or halt household time — domestic politics as chronology", "[candidate-original]"],
|
|
218
|
+
["ES-HR010", "Reference-Standard Friendship", "One friend defines the other's measures but can never be measured back — asymmetrical intimacy without hierarchy", "[candidate-original]"],
|
|
219
|
+
["ES-HR011", "Anti-Memory Kinship", "Relatives grow closer by forgetting each other accurately — family as practiced erasure", "[candidate-original]"],
|
|
220
|
+
["ES-HR012", "Foreclosure Companions", "Friends bond by mutually preventing possible disasters no one else will know existed — invisible heroism of prevention", "[candidate-original]"],
|
|
221
|
+
["ES-HR013", "Recomputed Marriage", "Spouses renegotiate vows daily because sleep re-derived them — continuity as daily treaty", "[candidate-original]"],
|
|
222
|
+
["ES-HR014", "Overdetermined Forgiveness", "Victim forgives everyone because everyone was fully sufficient cause — forgiveness without blame-allocation", "[candidate-original]"],
|
|
223
|
+
["ES-HR015", "Orphaned-Answer Adoption", "Person adopts a true answer whose question vanished — surrogate kinship with information", "[candidate-original]"],
|
|
224
|
+
];
|
|
225
|
+
|
|
226
|
+
// ── §6 Nonduplicate / alias rulings (meta, audit-only) ──────────────────────
|
|
227
|
+
export const MERGE_LEDGER: { id: string; source: string; ruling: string; note: string }[] = [
|
|
228
|
+
{ id: "MERGE-001", source: "Claude-fable ES-M014–M020", ruling: "ACCEPTED AS BASE", note: "Do not replace with GPT/Opus variants" },
|
|
229
|
+
{ id: "MERGE-002", source: "Claude-fable ES-X001–X025", ruling: "ACCEPTED AS BASE", note: "Canonical macro band for Empty Space v1" },
|
|
230
|
+
{ id: "MERGE-003", source: "GPT ES-A001–A032", ruling: "IMPORTED AS ES-F001–F032", note: "Formal architecture band; human anchors added" },
|
|
231
|
+
{ id: "MERGE-004", source: "Opus ES-G001 Conservation Narrative", ruling: "DUPLICATE-ADJACENT to Claude Ledger Plot + Meaning Budget", note: "Not imported separately" },
|
|
232
|
+
{ id: "MERGE-005", source: "Opus ES-G002 Partial-Order Novel", ruling: "DUPLICATE of GPT ES-F and prior ES partial-order cluster", note: "Not imported separately" },
|
|
233
|
+
{ id: "MERGE-006", source: "Opus ES-G003 Subtractive Epic", ruling: "DUPLICATE of Claude ES-X009 / foreclosure cluster", note: "Not imported separately" },
|
|
234
|
+
{ id: "MERGE-007", source: "Opus ES-G005 De-Coincidence Mystery", ruling: "IMPORTED as ES-O001", note: "Whole-work anti-recognition remains distinct" },
|
|
235
|
+
{ id: "MERGE-008", source: "Opus ES-G006 Over-Determination Trial", ruling: "IMPORTED as ES-O002", note: "Courtroom allocation distinct from event-level surplus" },
|
|
236
|
+
{ id: "MERGE-009", source: "Opus ES-G010 Question-Orbit Structure", ruling: "IMPORTED as ES-O003", note: "Question-mass architecture distinct from standing-question epic" },
|
|
237
|
+
{ id: "MERGE-010", source: "Opus ES-G012 Aggregate-Protagonist Work", ruling: "IMPORTED as ES-O004", note: "Reader-only emergent protagonist distinct from census plot" },
|
|
238
|
+
{ id: "MERGE-011", source: "Opus ES-G014 Contagion Architecture", ruling: "IMPORTED as ES-O005", note: "Full SIR-style plot not already present" },
|
|
239
|
+
{ id: "MERGE-012", source: "Opus ES-G016 Ontological-Thrift Narrative", ruling: "IMPORTED as ES-O006", note: "Human-readable near-nonexistence arc" },
|
|
240
|
+
{ id: "MERGE-013", source: "Opus ES-G017 Reciprocal-Haunting Duet", ruling: "IMPORTED as ES-O007", note: "Strong relationship macro" },
|
|
241
|
+
{ id: "MERGE-014", source: "Opus ES-G020 Quorum Chronicle", ruling: "IMPORTED as ES-O008", note: "Whole-work time-by-consensus" },
|
|
242
|
+
{ id: "MERGE-015", source: "Opus ES-G022 Checksum Framework", ruling: "IMPORTED as ES-O009", note: "Validation-frame macro" },
|
|
243
|
+
{ id: "MERGE-016", source: "Opus ES-G008 Foreclosed-Future Bildungsroman", ruling: "IMPORTED as ES-O010", note: "Distinct counterfactual coming-of-age" },
|
|
244
|
+
];
|
|
245
|
+
|
|
246
|
+
// ── T5 ES-P conflict extensions (P021-028) ──────────────────────────────────
|
|
247
|
+
const ES_P: Row[] = [
|
|
248
|
+
["ES-P021", "Subtractive Antagonism (Opus variant)", "opponent only removes your options, no positive act; narrowing to endure", "[clean] | [play:H]"],
|
|
249
|
+
["ES-P022", "Conserved-Stakes Conflict", "any gain by one side mirrored as equal gain by other; both advance, neither leads", "[clean] ≠ stalemate | [play:M]"],
|
|
250
|
+
["ES-P023", "Custodial Conflict", "parties fight to be the one forbidden to use a thing; prize is duty of restraint", "[clean] ≠ guardianship | [play:H]"],
|
|
251
|
+
["ES-P024", "Comprehension Duel", "combatants win by fully understanding the other first (annihilating them via ES-C039); empathy as weapon", "[adj:ES-C039] | [play:M]"],
|
|
252
|
+
["ES-P025", "Ordering War", "war over the socially-assigned sequence of already-agreed events", "[adj:ES-T001] | [play:M]"],
|
|
253
|
+
["ES-P026", "Attention Siege", "one side wins by starving the other of finite gaze-resource", "[adj:ES-L001] | [play:H]"],
|
|
254
|
+
["ES-P027", "Debt-Direction Conflict", "dispute over which way obligation flows in time (ancestors vs unborn)", "[clean] | [play:M]"],
|
|
255
|
+
["ES-P028", "Anti-Escalation Standoff", "each side must make stakes smaller to win; whoever cares most loses", "[clean] ≠ chicken | [play:H]"],
|
|
256
|
+
];
|
|
257
|
+
|
|
258
|
+
// ── T5 ES-Q reader-coupling extensions (Q019-020) ───────────────────────────
|
|
259
|
+
const ES_Q: Row[] = [
|
|
260
|
+
["ES-Q019", "Attention-Metered Text (Opus)", "passages render only in proportion to reader dwell-time; skimming leaves literal blanks", "[adj:ergodic] | [play:M]"],
|
|
261
|
+
["ES-Q020", "Complicit Continuation", "reading on is diegetically an action with in-world cost to a character", "[adj:ES-D019] | [play:M]"],
|
|
262
|
+
];
|
|
263
|
+
|
|
264
|
+
// ── T5 ES-C / ES-L / ES-E extensions ─────────────────────────────────────────
|
|
265
|
+
const ES_C: Row[] = [
|
|
266
|
+
["ES-C041", "Quorum-Sensitive Self", "identity crystallizes differently by how many peers are deciding the same thing; below headcount one person, above another", "[clean] ≠ crowd psych | [play:M]"],
|
|
267
|
+
["ES-C042", "Externalized Conscience", "moral faculty physically resides in a specific other person; guilt only by proximity", "[adj:Jiminy-Cricket] | [play:H]"],
|
|
268
|
+
["ES-C043", "The Ratchet Person", "can change only in one direction; every trait acquired is permanent, none sheddable", "[clean] ≠ growth arc | [play:H]"],
|
|
269
|
+
["ES-C044", "The Load-Balancer", "exists only by distributing selfhood across others' spare capacity; blanks out when group stressed", "[clean] | [play:M]"],
|
|
270
|
+
["ES-C045", "The Untranslatable Sibling", "two whose inner lives are incompatible languages; understanding between them destroys information", "[adj:estrangement] | [play:H]"],
|
|
271
|
+
["ES-C046", "The Provisional Person", "legally/physically real only \"pending confirmation\" that never arrives", "[clean] ≠ impostor | [play:H]"],
|
|
272
|
+
];
|
|
273
|
+
|
|
274
|
+
const ES_L_T5: Row[] = [
|
|
275
|
+
["ES-L036", "Conservation of Attention-Debt", "ignoring something accrues compounding interest; the longer unobserved the more violently it demands resolution", "[clean] ≠ return-of-repressed | [play:H]"],
|
|
276
|
+
["ES-L037", "Antisymmetric Causation", "if A can cause B, B cannot cause A; all feedback forbidden, nothing stabilizes itself", "[clean] ≠ linear time | [play:M]"],
|
|
277
|
+
["ES-L038", "Truth Requires a Loser", "no proposition is true unless some agent is worse off for its truth; costless facts impossible", "[clean] | [play:M]"],
|
|
278
|
+
["ES-L039", "Monotone Forgetting", "world can only lose information; learning is matched by permanent erasure elsewhere", "[adj:entropy] | [play:M]"],
|
|
279
|
+
];
|
|
280
|
+
|
|
281
|
+
const ES_E_T5: Row[] = [
|
|
282
|
+
["ES-E026", "Threshold Election", "continuous quantity crosses a line, world discretely reclassifies a person (stranger→kin) automatically", "[clean] ≠ rite of passage | [play:H]"],
|
|
283
|
+
["ES-E027", "Simultaneity Jam", "two events that must be ordered are found genuinely simultaneous; social machinery seizes", "[adj:comp narratology] | [play:M]"],
|
|
284
|
+
["ES-E028", "The Uncredit", "action's causal authorship stripped from doer and returned to pool; a real deed becomes ownerless", "[clean] ≠ anonymity | [play:M]"],
|
|
285
|
+
];
|
|
286
|
+
|
|
287
|
+
// ── §GS — GROUNDED SPACE (Opus adoption, canonical) ─────────────────────────
|
|
288
|
+
const GS_W: Row[] = [
|
|
289
|
+
["GS-W001", "The De-Escalator", "competence measured entirely in conflicts that never occurred; corpus dramatizes non-events", "[play:H]"],
|
|
290
|
+
["GS-W002", "The Standards-Keeper", "one maintains an invisible reference (unit, calibration, protocol); drama is drift", "[play:M]"],
|
|
291
|
+
["GS-W003", "The Filter's Interior", "life spent absorbing what others must never see so the visible world stays clean", "[play:H]"],
|
|
292
|
+
["GS-W004", "The Night-Shift Continuity", "protagonists live entirely in the handoff between other people's days", "[play:H]"],
|
|
293
|
+
["GS-W005", "The Prevention Corps", "organization whose every success is counterfactual; funding collapses because they succeed", "[play:H]"],
|
|
294
|
+
["GS-W006", "The Redundancy", "backup whose entire purpose is never to be needed; life of readiness whose activation means catastrophe", "[play:H]"],
|
|
295
|
+
["GS-W007", "The Un-Newsworthy Beat", "reporting only on what did not go wrong", "[play:M]"],
|
|
296
|
+
];
|
|
297
|
+
|
|
298
|
+
const GS_P: Row[] = [
|
|
299
|
+
["GS-P001", "The Legitimate Draw", "story that earns and celebrates a genuine tie", "[play:H]"],
|
|
300
|
+
["GS-P002", "The Mutual-Win Climax", "resolution requires antagonist to also get what they truly needed", "[play:H]"],
|
|
301
|
+
["GS-P003", "The Protected Secret", "plot is keeping a benign secret that protects everyone; discretion is triumph", "[play:H]"],
|
|
302
|
+
["GS-P004", "The Maintenance Plot", "arc is keeping a working thing working; entropy is antagonist", "[play:H]"],
|
|
303
|
+
["GS-P005", "The Slow Emergency", "catastrophe whose action-unit is decades; protagonist moves once a generation", "[play:M]"],
|
|
304
|
+
["GS-P006", "The Successful Boredom", "life kept deliberately uneventful as an achievement", "[play:M]"],
|
|
305
|
+
["GS-P007", "The Averted-Only Serial", "each installment ends in a disaster prevented; tension resets to zero", "[play:M]"],
|
|
306
|
+
];
|
|
307
|
+
|
|
308
|
+
const GS_S: Row[] = [
|
|
309
|
+
["GS-S001", "The Olfactory Polity", "society organized entirely by smell: status, law, memory, navigation", "[play:H]"],
|
|
310
|
+
["GS-S002", "The Proprioceptive Realm", "space and relationship known through body-position, not sight", "[play:M]"],
|
|
311
|
+
["GS-S003", "The Interoceptive Detective", "mysteries solved by reading the body's internal signals as evidence", "[play:M]"],
|
|
312
|
+
["GS-S004", "The Thermal World", "temperature is primary channel; warmth is intimacy, cold is exile", "[play:H]"],
|
|
313
|
+
["GS-S005", "The Latency-Bound Society", "everyone communicates with fixed long delay; intimacy engineered around lag", "[play:H]"],
|
|
314
|
+
];
|
|
315
|
+
|
|
316
|
+
const GS_R: Row[] = [
|
|
317
|
+
["GS-R001", "The Deliberate-Asymmetry Pact", "two who agree to permanently unequal knowledge as basis of trust", "[play:H]"],
|
|
318
|
+
["GS-R002", "The Rotating Confidant", "friendship where \"the one who knows everything\" is a role passed on schedule", "[play:M]"],
|
|
319
|
+
["GS-R003", "The Maintenance Marriage", "partnership whose shared project is keeping a third thing alive; love is byproduct", "[play:H]"],
|
|
320
|
+
["GS-R004", "The Re-Consent Bond", "relationship whose central ritual is periodic formal re-consent to every term", "[play:H]"],
|
|
321
|
+
["GS-R005", "The Handoff Kinship", "family defined by whom you hand responsibility to, not blood", "[play:M]"],
|
|
322
|
+
["GS-R006", "The Witness Marriage", "two people whose sole vow is to observe each other's life accurately and testify", "[play:H]"],
|
|
323
|
+
];
|
|
324
|
+
|
|
325
|
+
const GS_I: Row[] = [
|
|
326
|
+
["GS-I001", "The Apology Exchange", "formal clearinghouse brokering sincere apologies between parties who cannot meet", "[play:H]"],
|
|
327
|
+
["GS-I002", "The Discretion Guild", "licensed profession of professional forgetters who hold and destroy secrets", "[play:H]"],
|
|
328
|
+
["GS-I003", "The Attention Bank", "economy where regard is deposited, lent, defaulted on; the poor are the unwitnessed", "[play:H]"],
|
|
329
|
+
["GS-I004", "The Restraint Court", "tribunal that adjudicates who is forbidden to act, assigning duties of non-intervention", "[play:M]"],
|
|
330
|
+
["GS-I005", "The Calibration Office", "institution employing people to be wrong in known directions so collective decisions can be corrected", "[play:M]"],
|
|
331
|
+
["GS-I006", "The Handoff Registry", "bureaucracy tracking transfers of responsibility rather than property", "[play:M]"],
|
|
332
|
+
["GS-I007", "The Prevention Ledger", "accounting for counterfactual goods (disasters averted) and fight to fund the invisible", "[play:H]"],
|
|
333
|
+
];
|
|
334
|
+
|
|
335
|
+
const GS_T: Row[] = [
|
|
336
|
+
["GS-T001", "The Generational Move", "protagonist whose meaningful action-unit is thirty years", "[play:H]"],
|
|
337
|
+
["GS-T002", "The Fast-Life Witness", "being living at 100× human speed narrating slow human events as geology", "[play:M]"],
|
|
338
|
+
["GS-T003", "The Posthumous Protagonist", "someone whose single decisive act is scheduled for after their death", "[play:H]"],
|
|
339
|
+
];
|
|
340
|
+
|
|
341
|
+
// ── §GH — GROUNDING HARNESSES (meta, audit-only) ─────────────────────────────
|
|
342
|
+
export const GROUNDING_HARNESSES: { id: string; mapping: string }[] = [
|
|
343
|
+
{ id: "HARNESS-01", mapping: "ES-L005 Conservation of Guilt → indemnity/insurance industry moves liability; claims adjuster is detective" },
|
|
344
|
+
{ id: "HARNESS-02", mapping: "ES-L001 Conservation of Attention → attention as rationed municipal utility with visibility cards; family too poor to afford being seen" },
|
|
345
|
+
{ id: "HARNESS-03", mapping: "ES-L004 Aging Truth → expiry dates on notarized legal facts; clerk racing to re-certify before decay" },
|
|
346
|
+
{ id: "HARNESS-04", mapping: "ES-T001 Partial-Order Time → inheritance court ruling on sequence of unordered events" },
|
|
347
|
+
{ id: "HARNESS-05", mapping: "ES-L007 Destructive Naming → rationed census where each true name is a used-up serial number" },
|
|
348
|
+
{ id: "HARNESS-06", mapping: "ES-L023 Meaning-Fuel Thermodynamics → temperature gauge on a dying dialect spoken by two elders" },
|
|
349
|
+
{ id: "HARNESS-07", mapping: "ES-L003 Voted Causality → small town where weather bureau is elected office; forecasts pass by referendum" },
|
|
350
|
+
{ id: "HARNESS-08", mapping: "ES-L035 Foreclosure Physics → possibility auditor walks properties listing what can no longer happen" },
|
|
351
|
+
];
|
|
352
|
+
|
|
353
|
+
// ── §ES-HB — Human-Ready Beat-Level Mechanisms ──────────────────────────────
|
|
354
|
+
const ES_HB: Row[] = [
|
|
355
|
+
["ES-HB001", "The Refused Introduction", "someone deliberately declines to be introduced to another, and the refusal becomes the relationship", "[clean] | [play:H]"],
|
|
356
|
+
["ES-HB002", "The Handoff-of-Certainty", "one character passes their conviction about a fact to another and immediately loses it themselves", "[clean] | [play:H]"],
|
|
357
|
+
["ES-HB003", "The Rehearsed Spontaneity", "a scene where one character has clearly practiced the \"surprise\" and the other must decide whether to reward the effort", "[clean] | [play:H]"],
|
|
358
|
+
["ES-HB004", "The Non-Confrontation", "two characters arrive for a fight, sit, order drinks, and never bring it up; the whole scene is the pointed absence", "[clean] | [play:H]"],
|
|
359
|
+
["ES-HB005", "The Silent Contract Signing", "a beat where two characters mutually agree to a new relationship without any word spoken; the reader alone hears the terms", "[clean] | [play:H]"],
|
|
360
|
+
["ES-HB006", "The Retracted Compliment", "one character praises another, then immediately withdraws the praise on a technicality; the beat is the aftertaste", "[clean] | [play:H]"],
|
|
361
|
+
["ES-HB007", "The Third-Party Confession", "A tells B a secret about C, entirely so that B will tell C later; A is confessing by proxy", "[clean] | [play:H]"],
|
|
362
|
+
["ES-HB008", "The Successful Small Lie", "a character lies about something trivial, is believed, and the beat is the private assessment of what larger lie is now enabled", "[clean] | [play:H]"],
|
|
363
|
+
["ES-HB009", "The Overheard Kindness", "protagonist accidentally overhears themselves being defended by someone they wronged; cannot acknowledge it without confessing the wrong", "[clean] | [play:H]"],
|
|
364
|
+
["ES-HB010", "The Delayed Wince", "a joke lands, everyone laughs, and much later one character quietly winces; the beat is the delayed pain-recognition", "[clean] | [play:H]"],
|
|
365
|
+
["ES-HB011", "The Mistaken Reciprocity", "A does a small favor for B thinking it's a return; B has no memory of the original favor and receives it as a first act", "[clean] | [play:H]"],
|
|
366
|
+
["ES-HB012", "The Public Un-Marriage", "a scene where a couple, without discussion, both begin acting as if they aren't married in public; ceremonially uncoupled", "[clean] | [play:H]"],
|
|
367
|
+
["ES-HB013", "The Non-Question", "a beat where the natural question is not asked, and both characters know why and agree without agreeing to the silence", "[clean] | [play:H]"],
|
|
368
|
+
["ES-HB014", "The Instrumental Weeping", "a character weeps, aware it's tactical, and the other character grants the tactical tears sincere weight anyway", "[clean] | [play:H]"],
|
|
369
|
+
["ES-HB015", "The Ceremonial Waste", "a scene where a resource is deliberately spoiled in front of others as gesture; the beat is who accepts the gesture and who calculates the loss", "[clean] | [play:H]"],
|
|
370
|
+
["ES-HB016", "The Un-Choice", "a beat where refusing to choose is itself the decisive act, and everyone understands this", "[clean] | [play:H]"],
|
|
371
|
+
["ES-HB017", "The Recognition Deferred", "two characters recognize each other from long ago but silently agree not to acknowledge it; the whole scene proceeds as strangers", "[clean] | [play:H]"],
|
|
372
|
+
["ES-HB018", "The Rehearsed Grief", "a mourner performs grief they know they will feel later but do not yet; time-shifted authentic mourning", "[clean] | [play:H]"],
|
|
373
|
+
["ES-HB019", "The Assigned Feeling", "a character tells another how the other feels, correctly, and the other must decide whether to accept the assignment", "[clean] | [play:H]"],
|
|
374
|
+
["ES-HB020", "The Un-Toast", "a beat where the gathered company all silently agree not to make the expected toast; the un-said toast is the toast", "[clean] | [play:H]"],
|
|
375
|
+
];
|
|
376
|
+
|
|
377
|
+
// ── §ES-HG — Human-Ready Genre Families ─────────────────────────────────────
|
|
378
|
+
const ES_HG: Row[] = [
|
|
379
|
+
["ES-HG001", "The Non-Coincidence Genre", "mystery variant where the whole plot proves that seemingly connected events were genuinely independent", "[clean] | [play:H]"],
|
|
380
|
+
["ES-HG002", "Maintenance Fiction", "genre organized around keeping working systems working; anti-disaster, pro-continuity", "[clean] | [play:H]"],
|
|
381
|
+
["ES-HG003", "Restraint Thriller", "thriller where the protagonist's tension is in NOT acting despite capability; heroism is refusal", "[clean] | [play:H]"],
|
|
382
|
+
["ES-HG004", "The Longitudinal Romance", "love story told across sixty-plus years where romantic beats are separated by decades and every reunion is with a substantially different person", "[clean] | [play:H]"],
|
|
383
|
+
["ES-HG005", "Second-Life Fiction", "genre about protagonists after their traditional \"arc\" is complete; life after the coming-of-age", "[clean] | [play:H]"],
|
|
384
|
+
["ES-HG006", "Non-Sequitur Fiction", "genre where scenes deliberately do not follow one another causally; unity is thematic-only", "[adj:mosaic] | [play:M]"],
|
|
385
|
+
["ES-HG007", "The Reader-as-Employer Genre", "fiction where the reader is diegetically hiring the narrator; wages, deliverables, and complaints are internal to the form", "[clean] | [play:M]"],
|
|
386
|
+
["ES-HG008", "Meta-Boredom Fiction", "genre whose central pleasure is the reader's cultivated tolerance for repetition and stasis", "[clean] | [play:M]"],
|
|
387
|
+
["ES-HG009", "The Handover Genre", "fiction that opens with the protagonist beginning to hand off their life-role to someone else; the story is the transfer", "[clean] | [play:H]"],
|
|
388
|
+
["ES-HG010", "Aftermath Fiction", "genre whose entire time-scope is the eighteen months after the story that other books would tell", "[clean] | [play:H]"],
|
|
389
|
+
["ES-HG011", "Threshold Fiction", "genre focused on the exact instant of ontological state-change (kin/stranger, alive/dead, in-love/not); scenes stretch instantaneous transitions", "[clean] | [play:M]"],
|
|
390
|
+
["ES-HG012", "Consolation Fiction", "genre whose sole aim is the reader's specific comfort at a specific life-stage; craft-goal is calibrated solace", "[clean] | [play:H]"],
|
|
391
|
+
["ES-HG013", "The Anti-Advice Novel", "fiction that dramatizes exactly the wrong things to do; instruction by counter-example, without moralizing", "[clean] | [play:H]"],
|
|
392
|
+
["ES-HG014", "The Confession Genre without Guilt", "intimate first-person disclosure of morally neutral matter; the intimacy comes from the disclosure itself, not the content", "[clean] | [play:H]"],
|
|
393
|
+
["ES-HG015", "Care Fiction", "genre foregrounding the granular labor of caring for a dependent; drama in medication schedules, not confrontations", "[adj:domestic realism] but foregrounded as native genre | [play:H]"],
|
|
394
|
+
["ES-HG016", "The Institutional Coming-of-Age", "bildungsroman where the maturing entity is a workplace or organization, not a person", "[clean] | [play:H]"],
|
|
395
|
+
["ES-HG017", "The Non-Human-Perspective Realism", "genre committed to non-anthropomorphic non-human POV without magic; a river's actual river-experience, not a metaphor", "[clean] | [play:M]"],
|
|
396
|
+
["ES-HG018", "The Reciprocal-Narration Genre", "two novels published as a pair where each is the other's antagonist's POV, and neither is complete alone", "[clean] | [play:M]"],
|
|
397
|
+
["ES-HG019", "Deposition Fiction", "novel-length legal deposition transcripts as sole medium; the story emerges from the questions, not the answers", "[clean] | [play:H]"],
|
|
398
|
+
["ES-HG020", "The Correspondence-Without-Reply Genre", "epistolary variant where only one side is preserved, and the reader reconstructs the other from what is answered", "[adj:one-sided epistolary] but as native genre | [play:H]"],
|
|
399
|
+
];
|
|
400
|
+
|
|
401
|
+
// ── §ES-HM — Human-Ready Moral/Legal Systems ────────────────────────────────
|
|
402
|
+
const ES_HM: Row[] = [
|
|
403
|
+
["ES-HM001", "Attention-Weighted Sentencing", "crimes punished proportional to how much public attention the victim can command; unwitnessed crimes are technically legal", "[clean] | [play:H]"],
|
|
404
|
+
["ES-HM002", "The Repair-Only Legal System", "law prohibits punishment; only reparation is legal, so criminals must be kept alive and productive to work off harm", "[clean] | [play:H]"],
|
|
405
|
+
["ES-HM003", "Reciprocal Consent Law", "any action requires prior consent from the acted-upon; unwanted kindness is legally identical to unwanted violence", "[clean] | [play:M]"],
|
|
406
|
+
["ES-HM004", "The Statute of Foresight", "responsibility scaled by how far in advance a consequence should have been foreseen; unforeseeable acts are morally weightless", "[clean] | [play:M]"],
|
|
407
|
+
["ES-HM005", "Collective Individual Punishment", "when one person commits a crime, all citizens perform token expiation for the crime's existence in their society", "[clean] | [play:H]"],
|
|
408
|
+
["ES-HM006", "The Ancestor Amnesty", "wrongs pass out of legal reach after a fixed generational depth; grievances literally cannot be inherited past three generations", "[clean] | [play:H]"],
|
|
409
|
+
["ES-HM007", "Merit-Blind Restitution", "victims are compensated identically regardless of harm's severity; the moral wrong is unequal harm, not extreme harm", "[clean] | [play:M]"],
|
|
410
|
+
["ES-HM008", "The Voluntary-Only Contract System", "no contract is enforceable; all agreements bind only by continued mutual acknowledgment, and breach is legally invisible", "[clean] | [play:H]"],
|
|
411
|
+
["ES-HM009", "Public-Interior Ethics", "private thoughts are legally accessible if their consequences are public; ethics of intent are enforced, not just deeds", "[clean] | [play:H]"],
|
|
412
|
+
["ES-HM010", "The Attentive-Only Duty", "you owe moral duties only to what you are currently paying attention to; averting attention legally severs obligation", "[clean] | [play:H]"],
|
|
413
|
+
["ES-HM011", "Retroactive Consent Law", "past acts can be legalized by later consent from the acted-upon; the crime is rescindable", "[clean] | [play:H]"],
|
|
414
|
+
["ES-HM012", "The Anti-Compound System", "debts, guilt, and grievance do not compound; a wrong is a fixed magnitude that does not grow with time", "[clean] | [play:M]"],
|
|
415
|
+
["ES-HM013", "Refusal-Priority Law", "in any conflict of rights, the party wishing NOT to do a thing has priority over the party wishing TO do it", "[clean] | [play:H]"],
|
|
416
|
+
["ES-HM014", "The Non-Precedent System", "every legal case is decided fresh with no reference to prior rulings; consistency across cases is legally forbidden", "[clean] | [play:M]"],
|
|
417
|
+
["ES-HM015", "Sunset Ethics System", "all moral obligations have expiration dates written at the time of formation; renewable only by explicit re-commitment", "[clean] | [play:H]"],
|
|
418
|
+
["ES-HM016", "The Consent-of-the-Absent System", "major decisions require consent from those not present, obtained by proxy; the absent hold veto", "[clean] | [play:H]"],
|
|
419
|
+
["ES-HM017", "Anti-Aggregation Law", "crowds cannot commit crimes; only individuals can, so mob acts are legally impossible and specific persons must be found", "[clean] | [play:M]"],
|
|
420
|
+
["ES-HM018", "The Testimony-Debt System", "witnesses to another's suffering are legally obligated to relieve equivalent suffering elsewhere; observation creates duty", "[clean] | [play:H]"],
|
|
421
|
+
["ES-HM019", "Reversal Ethics", "duties can be legally reversed by the parties: a caregiver-relationship formally becomes recipient-relationship at will", "[clean] | [play:M]"],
|
|
422
|
+
["ES-HM020", "The Under-Threshold Ethics", "any wrong below a specified magnitude is legally non-existent; petty grievances are formally denied moral status", "[clean] | [play:H]"],
|
|
423
|
+
];
|
|
424
|
+
|
|
425
|
+
// ── §ES-HL — Human-Ready Love/Kinship/Inheritance Mechanisms ────────────────
|
|
426
|
+
const ES_HL: Row[] = [
|
|
427
|
+
["ES-HL001", "The Escrowed Vow", "a marriage vow held by a third party who releases it only when specific mutual conditions are met over time", "[clean] | [play:H]"],
|
|
428
|
+
["ES-HL002", "The Renewable Sibling", "siblinghood explicitly re-affirmed annually; lapsed siblingship is a real social status", "[clean] | [play:H]"],
|
|
429
|
+
["ES-HL003", "Cross-Generation Adoption", "adults may formally adopt each other regardless of age; the parent-child relation is a chosen contract", "[clean] | [play:H]"],
|
|
430
|
+
["ES-HL004", "The Non-Blood Grandparent System", "grandparenting is a role assigned to elderly community members regardless of biological connection", "[clean] | [play:H]"],
|
|
431
|
+
["ES-HL005", "The Legal Ex-Marriage", "after divorce, a formal ex-marital status persists with residual mutual obligations", "[clean] | [play:H]"],
|
|
432
|
+
["ES-HL006", "The Trial-Kinship Period", "families accept new members on a trial basis with defined exit conditions", "[clean] | [play:H]"],
|
|
433
|
+
["ES-HL007", "Inheritance by Attention", "assets pass not to biological heirs but to those who paid the deceased the most attention in their final year", "[clean] | [play:H]"],
|
|
434
|
+
["ES-HL008", "The Reciprocal-Grandchild Contract", "elderly people formally commission specific children to be their grandchildren, with mutual duties", "[clean] | [play:H]"],
|
|
435
|
+
["ES-HL009", "The Divided Inheritance", "assets deliberately split so no single heir can benefit without cooperation; kinship enforced by structural interdependence", "[clean] | [play:H]"],
|
|
436
|
+
["ES-HL010", "The Adopted Ancestor", "you may retroactively adopt a historical figure as an ancestor with legal genealogical effect", "[clean] | [play:M]"],
|
|
437
|
+
["ES-HL011", "The Foundling-First Society", "orphaned children have legal priority over biological children; adoption is the highest form of parenting", "[clean] | [play:H]"],
|
|
438
|
+
["ES-HL012", "The Non-Cohabitation Marriage", "marriage forbids living together; the bond depends on maintained physical separation", "[clean] | [play:M]"],
|
|
439
|
+
["ES-HL013", "The Cascading Betrothal", "when two marry, their siblings become quasi-married in a lesser degree, and so on outward through the graph", "[clean] | [play:M]"],
|
|
440
|
+
["ES-HL014", "The Anti-Inheritance", "wealth reverts to the community on death; children explicitly do not inherit, and legacy is measured differently", "[clean] | [play:H]"],
|
|
441
|
+
["ES-HL015", "The Loveable-Debt System", "one may formally take on someone else's emotional debts as an act of love; grief, guilt, unresolved feelings become transferrable", "[clean] | [play:H]"],
|
|
442
|
+
["ES-HL016", "The Multi-Spouse Sequence", "a formal system of ordered spouses where each has defined role and rank; not polyamory but a graded, named hierarchy", "[clean] | [play:M]"],
|
|
443
|
+
["ES-HL017", "The Substitute Marriage", "one may temporarily substitute for another's spouse in specific defined contexts with formal recognition", "[clean] | [play:M]"],
|
|
444
|
+
["ES-HL018", "The Inheritance of Unfinished Business", "children inherit not property but the specific unfinished projects of the deceased", "[clean] | [play:H]"],
|
|
445
|
+
["ES-HL019", "The Loyalty Divorce", "one may divorce a friend, formally severing loyalty obligations, with public ceremony", "[clean] | [play:H]"],
|
|
446
|
+
["ES-HL020", "The Mutual-Guardian Bond", "two adults agree to guardian each other; a bidirectional custody structure", "[clean] | [play:H]"],
|
|
447
|
+
];
|
|
448
|
+
|
|
449
|
+
// ── §ES-HW — Human-Ready Work/Labor/Bureaucracy Corpora ─────────────────────
|
|
450
|
+
const ES_HW: Row[] = [
|
|
451
|
+
["ES-HW001", "The Rotating Expertise Protocol", "in a critical role, expertise is deliberately rotated so no one holds too much; the corpus is the transition periods", "[clean] | [play:H]"],
|
|
452
|
+
["ES-HW002", "The Failure-Required Job", "a profession where regular controlled failure is mandatory to certify skill; success without failure is disqualifying", "[clean] | [play:H]"],
|
|
453
|
+
["ES-HW003", "The Shadow-Career", "official career and true career diverge by design; workers spend official hours on prestige work and off-hours on real work", "[clean] | [play:H]"],
|
|
454
|
+
["ES-HW004", "The Anti-Meeting Institution", "meetings are explicitly forbidden; all coordination is asynchronous and documented", "[clean] | [play:H]"],
|
|
455
|
+
["ES-HW005", "The Public-Failure Ritual", "workers regularly demonstrate their failures publicly as skill-verification; concealing failure is the primary offense", "[clean] | [play:H]"],
|
|
456
|
+
["ES-HW006", "The Recusal Guild", "professionals whose specialty is declaring themselves unqualified for specific cases; expert non-participation", "[clean] | [play:M]"],
|
|
457
|
+
["ES-HW007", "The Handover Specialist", "workers who exist only to mediate transitions between other workers; the profession is transfer", "[clean] | [play:H]"],
|
|
458
|
+
["ES-HW008", "The Boredom Wage", "workers paid more for tedious jobs than exciting ones by explicit inversion; excitement is a cost the worker pays for", "[clean] | [play:H]"],
|
|
459
|
+
["ES-HW009", "The Anti-Promotion Career", "advancement is downward — senior workers do simpler tasks and juniors handle complexity", "[clean] | [play:M]"],
|
|
460
|
+
["ES-HW010", "The Consent-Verified Task", "every workplace task requires explicit consent from all who will be affected before it may proceed", "[clean] | [play:M]"],
|
|
461
|
+
["ES-HW011", "The Explanation Corps", "professionals whose sole job is to explain other professionals' work to affected parties; translation as vocation", "[clean] | [play:H]"],
|
|
462
|
+
["ES-HW012", "The Cooperative Rival System", "direct competitors are legally required to share critical safety information; mutual anti-sabotage as norm", "[clean] | [play:H]"],
|
|
463
|
+
["ES-HW013", "The No-Substitute Rule", "some workers may not be replaced; when they retire, the role vanishes, and the community adapts", "[clean] | [play:H]"],
|
|
464
|
+
["ES-HW014", "The Testimony-Required Job", "workers must periodically testify publicly to what they've done; secret work is impermissible", "[clean] | [play:H]"],
|
|
465
|
+
["ES-HW015", "The Rotating-Reader Bureau", "documents must be read by rotating readers to prevent institutional capture; no one reads the same document twice", "[clean] | [play:M]"],
|
|
466
|
+
["ES-HW016", "The Anti-Referral System", "professionals are forbidden to refer to colleagues; each professional is standalone and clients must find their own paths", "[clean] | [play:M]"],
|
|
467
|
+
["ES-HW017", "The Ceremonial Incompetence", "senior workers must publicly perform tasks they can no longer do well, admitting decline as part of the role", "[clean] | [play:H]"],
|
|
468
|
+
["ES-HW018", "The Refusal-Compensated Job", "workers are paid partly by the offers they refuse; principled non-participation is measured and rewarded", "[clean] | [play:H]"],
|
|
469
|
+
["ES-HW019", "The Anti-Loyalty Institution", "employer-loyalty is formally forbidden; workers must maintain multiple simultaneous employers", "[clean] | [play:M]"],
|
|
470
|
+
["ES-HW020", "The Predecessor Meeting Protocol", "every worker meets their predecessors quarterly to be reminded of what was learned before them", "[clean] | [play:H]"],
|
|
471
|
+
];
|
|
472
|
+
|
|
473
|
+
// ── §ES-HMED — Human-Ready Medical/Body-State Story Families ───────────────
|
|
474
|
+
const ES_HMED: Row[] = [
|
|
475
|
+
["ES-HMED001", "The Diagnosis Refusal", "medical system where patients may formally refuse a diagnosis; the illness is legally not-present without acceptance", "[clean] | [play:H]"],
|
|
476
|
+
["ES-HMED002", "The Chronic-Care Priority", "medicine that treats only chronic conditions; acute care is denied by policy", "[clean] | [play:H]"],
|
|
477
|
+
["ES-HMED003", "The Symptom Market", "patients can trade symptoms with others via legal medical procedure; the drama is who wants what pain", "[clean] | [play:M]"],
|
|
478
|
+
["ES-HMED004", "The Family Consent Body", "major medical decisions require consent from the extended family, not the patient; individual autonomy is voidable", "[clean] | [play:H]"],
|
|
479
|
+
["ES-HMED005", "The Reverse Triage", "resources go to those most likely to die anyway; the salvageable are triaged last on principle", "[clean] | [play:H]"],
|
|
480
|
+
["ES-HMED006", "The Un-Curable Guarantee", "medical system explicitly forbids attempting cure; only palliation is offered as a matter of ethics", "[clean] | [play:H]"],
|
|
481
|
+
["ES-HMED007", "The Public-Vitals Society", "everyone's medical data is public and searchable; privacy of body-state is impossible and etiquette adapts", "[clean] | [play:H]"],
|
|
482
|
+
["ES-HMED008", "The Volunteer-Only Body", "organs and blood can only be donated by explicit ongoing volunteering; no post-mortem donation is legal", "[clean] | [play:M]"],
|
|
483
|
+
["ES-HMED009", "The Symptomatic-Only Diagnosis", "conditions cannot be named until symptoms manifest fully; pre-symptomatic testing is forbidden", "[clean] | [play:H]"],
|
|
484
|
+
["ES-HMED010", "The Two-Doctor Rule", "any diagnosis requires two independent physicians who never communicate to agree; disagreement means no diagnosis", "[clean] | [play:H]"],
|
|
485
|
+
["ES-HMED011", "The Cosmetic Ban", "medical intervention is legal only for suffering, never for enhancement or preference; the boundary is contested", "[clean] | [play:M]"],
|
|
486
|
+
["ES-HMED012", "The Recovery Contract", "discharged patients sign contracts specifying recovery behaviors; violations return them to care involuntarily", "[clean] | [play:H]"],
|
|
487
|
+
["ES-HMED013", "The Public Death Vigil", "dying is a communal event with mandated attendance from specific relations; solitary death is legally prevented", "[clean] | [play:H]"],
|
|
488
|
+
["ES-HMED014", "The Diagnosis Anniversary", "patients commemorate diagnosis dates like birthdays; the illness becomes a full member of the family", "[clean] | [play:H]"],
|
|
489
|
+
["ES-HMED015", "The Anti-Diagnostic System", "doctors treat suffering without naming it; classification is considered a harm", "[clean] | [play:M]"],
|
|
490
|
+
["ES-HMED016", "The Shared-Diagnosis Practice", "related patients receive one shared diagnosis distributing across them; individuals cannot own their illness alone", "[clean] | [play:H]"],
|
|
491
|
+
["ES-HMED017", "The Consent-Withdrawal Right", "patients may withdraw consent to any past treatment retroactively, requiring restitution", "[clean] | [play:M]"],
|
|
492
|
+
["ES-HMED018", "The Waiting-Room Society", "most citizen-interaction happens in medical waiting rooms; these spaces are the primary public sphere", "[clean] | [play:H]"],
|
|
493
|
+
["ES-HMED019", "The Non-Genetic Health System", "genetic factors are legally excluded from all medical decision-making; illness is treated as pure event", "[clean] | [play:M]"],
|
|
494
|
+
["ES-HMED020", "The Familial Symptom Recognition", "families are trained to diagnose each other; medical professionals only certify family diagnoses", "[clean] | [play:H]"],
|
|
495
|
+
];
|
|
496
|
+
|
|
497
|
+
// ── §ES-HGAME — Human-Ready Playable Implementations ────────────────────────
|
|
498
|
+
const ES_HGAME: Row[] = [
|
|
499
|
+
["ES-HGAME001", "The Refusal-Points Game", "players score by declining offered advantages; success is refusing correctly", "[clean] | [play:H]"],
|
|
500
|
+
["ES-HGAME002", "The Attention-Budget Game", "each player has a finite attention-currency; playing well means where to look, what to ignore", "[clean] | [play:H]"],
|
|
501
|
+
["ES-HGAME003", "The Un-Do Simulator", "game where every action creates the possibility of undoing it later; strategy is preserving reversibility", "[clean] | [play:H]"],
|
|
502
|
+
["ES-HGAME004", "The Consequence-Owner Game", "actions have effects but their consequences are randomly assigned to other players; you play others' effects", "[clean] | [play:M]"],
|
|
503
|
+
["ES-HGAME005", "The Handoff Chess", "multiplayer chess where control of pieces rotates continuously; you may inherit an opponent's position", "[clean] | [play:H]"],
|
|
504
|
+
["ES-HGAME006", "The Trust-Debt Game", "players may borrow trust from others, spend it, and must repay in kind; social credit as literal currency", "[clean] | [play:H]"],
|
|
505
|
+
["ES-HGAME007", "The Anti-Optimization Puzzle", "puzzles solved only by finding the least optimal solution; obvious optimization is the wrong answer", "[clean] | [play:M]"],
|
|
506
|
+
["ES-HGAME008", "The Sequential-Consent Game", "each move requires prior consent from all affected players; the negotiation IS the game", "[clean] | [play:H]"],
|
|
507
|
+
["ES-HGAME009", "The Foreclosure Game", "players eliminate possibilities from the shared game-space; last remaining possibility becomes reality", "[clean] | [play:H]"],
|
|
508
|
+
["ES-HGAME010", "The Testimony Game", "players must accurately narrate others' actions; misremembering is the primary way to lose", "[clean] | [play:H]"],
|
|
509
|
+
["ES-HGAME011", "The Delegation Simulator", "players never act directly; every action must be requested from another player who chooses whether to comply", "[clean] | [play:H]"],
|
|
510
|
+
["ES-HGAME012", "The Interruption Rules Game", "players may only act by interrupting others; uninterrupted play is losing", "[clean] | [play:M]"],
|
|
511
|
+
["ES-HGAME013", "The Boredom Race", "first player to sustain deliberate boredom for a defined duration wins; excitement is disqualifying", "[clean] | [play:M]"],
|
|
512
|
+
["ES-HGAME014", "The Silent Coordination Puzzle", "multi-player puzzles solvable only via unspoken coordination; any communication invalidates the solution", "[clean] | [play:H]"],
|
|
513
|
+
["ES-HGAME015", "The Prevention-Score Game", "scoring measured by disasters averted, not achievements gained; anti-Achievement design", "[clean] | [play:H]"],
|
|
514
|
+
["ES-HGAME016", "The Non-Zero-Sum Enforced Game", "rules make it structurally impossible for one player to win without another also winning", "[clean] | [play:H]"],
|
|
515
|
+
["ES-HGAME017", "The Handicap-Requested Game", "stronger players must request handicaps from weaker ones, who set the terms; the ask is the game", "[clean] | [play:M]"],
|
|
516
|
+
["ES-HGAME018", "The Meta-Rulebook Game", "players spend the first hour writing the rulebook they'll play; the rulebook is the primary artifact", "[clean] | [play:H]"],
|
|
517
|
+
["ES-HGAME019", "The Withdrawal Game", "players may exit the game at any time and receive their score at the moment of exit; timing exit is the strategy", "[clean] | [play:H]"],
|
|
518
|
+
["ES-HGAME020", "The Attention-Rotation Game", "one player is always \"the watched one\"; being watched changes your available moves", "[clean] | [play:H]"],
|
|
519
|
+
];
|
|
520
|
+
|
|
521
|
+
// ── §ES-HRIT — Ritual/Ceremony as Native Narrative Primitives ───────────────
|
|
522
|
+
const ES_HRIT: Row[] = [
|
|
523
|
+
["ES-HRIT001", "The Beginning Ritual", "ceremonies performed to inaugurate ordinary activities (starting a meal, entering a home) whose absence is catastrophically wrong", "[clean] | [play:H]"],
|
|
524
|
+
["ES-HRIT002", "The Refusal Ceremony", "ritual for formally declining offered relationships/goods/roles; must be public and witnessed", "[clean] | [play:H]"],
|
|
525
|
+
["ES-HRIT003", "The Undoing Rite", "ceremony to formally undo a prior ritual; sacred reversibility", "[clean] | [play:H]"],
|
|
526
|
+
["ES-HRIT004", "The Substitution Ritual", "ceremony transferring roles between people; the transferred role includes accumulated responsibilities", "[clean] | [play:H]"],
|
|
527
|
+
["ES-HRIT005", "The Grievance Airing", "scheduled ritual where accumulated interpersonal wrongs must be surfaced or forfeited", "[clean] | [play:H]"],
|
|
528
|
+
["ES-HRIT006", "The Non-Anniversary", "ritual observance of dates when nothing happened; celebrating durability of ordinariness", "[clean] | [play:H]"],
|
|
529
|
+
["ES-HRIT007", "The Preparatory Vigil", "ritual anticipation of an event that may not come; the waiting is the ceremony", "[clean] | [play:H]"],
|
|
530
|
+
["ES-HRIT008", "The Ceremonial Withdrawal", "scheduled retreats from society at specific life-stages, formalized", "[clean] | [play:H]"],
|
|
531
|
+
["ES-HRIT009", "The Reunion Rite", "ceremony for encountering someone after long absence; specific to duration", "[clean] | [play:H]"],
|
|
532
|
+
["ES-HRIT010", "The Corrupted Ritual", "ceremonies deliberately performed slightly wrong to signify specific things; error as vocabulary", "[clean] | [play:H]"],
|
|
533
|
+
["ES-HRIT011", "The Bystander Rite", "rituals requiring specific uninvolved witnesses; strangers formally observe", "[clean] | [play:H]"],
|
|
534
|
+
["ES-HRIT012", "The Transferable Ceremony", "rituals whose performance can be assigned to another; hired ritualists exist", "[clean] | [play:M]"],
|
|
535
|
+
["ES-HRIT013", "The Silent Rite", "ceremonies performed without any speech; violation by voice invalidates", "[clean] | [play:H]"],
|
|
536
|
+
["ES-HRIT014", "The Private-Public Ritual", "ceremonies performed alone that require later public certification of completion", "[clean] | [play:H]"],
|
|
537
|
+
["ES-HRIT015", "The Ambiguous Ritual", "ceremonies whose meaning is deliberately unresolved; participants choose interpretation", "[clean] | [play:M]"],
|
|
538
|
+
];
|
|
539
|
+
|
|
540
|
+
// ── §ES-HED — Educational Institutions as Native Narrative Engines ─────────
|
|
541
|
+
const ES_HED: Row[] = [
|
|
542
|
+
["ES-HED001", "The Un-Learning Institution", "school where students shed prior knowledge as core curriculum", "[clean] | [play:H]"],
|
|
543
|
+
["ES-HED002", "The Deliberate-Ignorance Academy", "students choose specific subjects they will remain permanently unqualified in; ignorance as expertise", "[clean] | [play:H]"],
|
|
544
|
+
["ES-HED003", "The Master-of-One Program", "students may specialize only in one thing; polymathy is disqualifying", "[clean] | [play:M]"],
|
|
545
|
+
["ES-HED004", "The Reciprocal-Teaching University", "every student must simultaneously teach others what they learn; unshared knowledge is invalid", "[clean] | [play:H]"],
|
|
546
|
+
["ES-HED005", "The Failure-Enrolled Track", "dedicated programs for skilled failure; graduates certified to fail productively", "[clean] | [play:H]"],
|
|
547
|
+
["ES-HED006", "The Anti-Curriculum School", "curriculum defined only by what will NOT be taught; the constraint is the pedagogy", "[clean] | [play:M]"],
|
|
548
|
+
["ES-HED007", "The Institutional Un-Graduation", "schools that formally return graduates to student status quarterly; permanent studenthood", "[clean] | [play:M]"],
|
|
549
|
+
["ES-HED008", "The Consent-Based Teaching", "teachers may only teach what students explicitly request; unsolicited instruction is forbidden", "[clean] | [play:H]"],
|
|
550
|
+
["ES-HED009", "The Ancestor-Educated Program", "students taught only by their own ancestors' work; other teachers are illegal", "[clean] | [play:M]"],
|
|
551
|
+
["ES-HED010", "The Public Examination Society", "all examinations are public with mandatory attendance; the exam IS the community event", "[clean] | [play:H]"],
|
|
552
|
+
["ES-HED011", "The Trainee-Employer Contract", "students choose their teachers who become obligated to them; the pupil is the client", "[clean] | [play:H]"],
|
|
553
|
+
["ES-HED012", "The One-Chance Institution", "every subject may be attempted only once; failure closes the topic permanently", "[clean] | [play:H]"],
|
|
554
|
+
["ES-HED013", "The Peer-Only Certification", "credentials come only from graduated peers; institutions cannot certify", "[clean] | [play:M]"],
|
|
555
|
+
];
|
|
556
|
+
|
|
557
|
+
// ── §ES-HDEATH — Death/Mourning Practices as Native Story ───────────────────
|
|
558
|
+
const ES_HDEATH: Row[] = [
|
|
559
|
+
["ES-HDEATH001", "The Scheduled Mourning", "grief periods have legal end-dates; mourning past the date is illegal", "[clean] | [play:H]"],
|
|
560
|
+
["ES-HDEATH002", "The Distributed Death", "a person's death is announced by specific others in specific orders; the sequence itself is meaningful", "[clean] | [play:H]"],
|
|
561
|
+
["ES-HDEATH003", "The Anti-Legacy Funeral", "funerals explicitly focused on erasing the dead person's traces; anti-monument culture", "[clean] | [play:H]"],
|
|
562
|
+
["ES-HDEATH004", "The Ownership-Transferring Wake", "funeral where possessions are actively distributed during the ceremony; grief is inseparable from asset transfer", "[clean] | [play:H]"],
|
|
563
|
+
["ES-HDEATH005", "The Living Funeral", "mandatory pre-death funerals attended by the person; hearing one's eulogies while alive", "[clean] | [play:H]"],
|
|
564
|
+
["ES-HDEATH006", "The Grief-Contract System", "mourners take on formal grief-contracts; specific defined mourning is a job", "[clean] | [play:H]"],
|
|
565
|
+
["ES-HDEATH007", "The Ex-Person Status", "a legally-defined status between alive and dead for those in permanent unresponsive states; the corpus is about ex-persons", "[clean] | [play:H]"],
|
|
566
|
+
["ES-HDEATH008", "The Non-Individual Death", "when someone dies, their family loses specific rights and gains others; death alters social status of the living", "[clean] | [play:H]"],
|
|
567
|
+
["ES-HDEATH009", "The Renewable Mourning", "mourning that must be renewed periodically or lapse; formal remembrance requires effort", "[clean] | [play:H]"],
|
|
568
|
+
["ES-HDEATH010", "The Testimony Death", "death is legally complete only when specific witnesses have testified; unwitnessed death is legally suspended", "[clean] | [play:H]"],
|
|
569
|
+
["ES-HDEATH011", "The Substitutionary Mourner", "professionals hired to mourn deceased strangers publicly; grief as service", "[clean] | [play:M]"],
|
|
570
|
+
["ES-HDEATH012", "The Death Anniversary Marriage", "marriages initiated on death-anniversaries of specific others; grief and love as coupled institutions", "[clean] | [play:M]"],
|
|
571
|
+
["ES-HDEATH013", "The Distributed Estate", "assets belong to no one after death; they pass to the roles the deceased occupied", "[clean] | [play:H]"],
|
|
572
|
+
["ES-HDEATH014", "The Successor Confessional", "the successor to a role must publicly hear all of their predecessor's failures", "[clean] | [play:H]"],
|
|
573
|
+
["ES-HDEATH015", "The Sunset Elder", "the eldest person in a community must formally step down at defined moments; longevity has ceilings", "[clean] | [play:H]"],
|
|
574
|
+
];
|
|
575
|
+
|
|
576
|
+
// ── §ES-HCOMM — Communication Protocols as Plot Infrastructure ─────────────
|
|
577
|
+
const ES_HCOMM: Row[] = [
|
|
578
|
+
["ES-HCOMM001", "The Delayed-Message Convention", "all communication is delivered after a specified delay; instant communication is illegal", "[clean] | [play:H]"],
|
|
579
|
+
["ES-HCOMM002", "The Third-Party Message", "one may only communicate with another through a specific mediator; direct address is forbidden", "[clean] | [play:H]"],
|
|
580
|
+
["ES-HCOMM003", "The Silence-Encoded Protocol", "information transmitted by specific patterns of silence rather than speech", "[clean] | [play:M]"],
|
|
581
|
+
["ES-HCOMM004", "The Publicly Read Letter", "private letters must be read aloud publicly before being received; privacy of correspondence is impossible", "[clean] | [play:H]"],
|
|
582
|
+
["ES-HCOMM005", "The Consent-Required Speech", "you may not address another without their prior consent for that specific message", "[clean] | [play:H]"],
|
|
583
|
+
["ES-HCOMM006", "The Written-Only Institution", "some entire institutions communicate only in writing; oral communication has no legal weight", "[clean] | [play:M]"],
|
|
584
|
+
["ES-HCOMM007", "The Overheard-Legal System", "conversations overheard by third parties become legally binding; privacy has to be actively engineered", "[clean] | [play:H]"],
|
|
585
|
+
["ES-HCOMM008", "The Certified Silence", "silence in specific contexts is legally recognized as consent, refusal, or promise; unspecified silence has no legal effect", "[clean] | [play:M]"],
|
|
586
|
+
["ES-HCOMM009", "The Symmetric-Word Convention", "each speaker must use exactly the same words the other used; conversations are echo-chambers by protocol", "[clean] | [play:M]"],
|
|
587
|
+
["ES-HCOMM010", "The Ceremonial Speech System", "all significant communication requires formal ritual framing; casual speech cannot carry weight", "[clean] | [play:H]"],
|
|
588
|
+
["ES-HCOMM011", "The Non-Rebuttal Convention", "in formal disputes, no direct rebuttals are allowed; parties may only add, never contradict", "[clean] | [play:M]"],
|
|
589
|
+
["ES-HCOMM012", "The Simultaneous-Speech Rule", "both parties in a formal conversation must speak simultaneously; the meaning is the overlap", "[clean] | [play:M]"],
|
|
590
|
+
["ES-HCOMM013", "The Time-Boxed Reply", "replies must arrive within a defined window or the original speaker is legally understood to have \"won\" the exchange", "[clean] | [play:H]"],
|
|
591
|
+
["ES-HCOMM014", "The Non-Signature Author", "authorship is legally forbidden; writings must be anonymous, and attribution is a crime", "[clean] | [play:M]"],
|
|
592
|
+
["ES-HCOMM015", "The Recall-Notice Protocol", "any statement may be legally recalled within a defined window; the recall creates a formal \"unspoken\" status", "[clean] | [play:H]"],
|
|
593
|
+
];
|
|
594
|
+
|
|
595
|
+
// ── §ES-HFOOD — Food/Hunger as Native Story Infrastructure ─────────────────
|
|
596
|
+
const ES_HFOOD: Row[] = [
|
|
597
|
+
["ES-HFOOD001", "The Hunger-Debt System", "someone else's hunger becomes your obligation; the corpus is who owes whom appetite", "[clean] | [play:H]"],
|
|
598
|
+
["ES-HFOOD002", "The Symmetric Meal", "meals must be identical for all diners; asymmetry is a serious social wrong", "[clean] | [play:H]"],
|
|
599
|
+
["ES-HFOOD003", "The Refusal-Cost Cuisine", "refusing offered food incurs specific social costs; the plot is what one must accept", "[clean] | [play:H]"],
|
|
600
|
+
["ES-HFOOD004", "The Prepared-For Meal", "food prepared for one person cannot be eaten by another under any circumstance; waste is preferable", "[clean] | [play:H]"],
|
|
601
|
+
["ES-HFOOD005", "The Communal Hunger", "when one person is hungry, all present must also fast; hunger is contagious by protocol", "[clean] | [play:M]"],
|
|
602
|
+
["ES-HFOOD006", "The Sequential-Course Society", "meals are eaten in strict individual sequence; group simultaneous eating is barbaric", "[clean] | [play:M]"],
|
|
603
|
+
["ES-HFOOD007", "The Un-Ownable Meal", "prepared food belongs to whoever eats it; giving food is impossible because you don't own the giving", "[clean] | [play:H]"],
|
|
604
|
+
["ES-HFOOD008", "The Testimony Meal", "meals must be publicly discussed afterward; unmemorable meals are wasteful", "[clean] | [play:M]"],
|
|
605
|
+
["ES-HFOOD009", "The Consent-to-Cook Rule", "one may only cook for those who have explicitly asked; unsolicited cooking is intrusion", "[clean] | [play:H]"],
|
|
606
|
+
["ES-HFOOD010", "The Anti-Recipe Society", "recipes are illegal; every meal must be improvised, and repetition is forbidden", "[clean] | [play:M]"],
|
|
607
|
+
["ES-HFOOD011", "The Public Hunger Announcement", "citizens must formally announce hunger to receive food; the announcement is the ritual", "[clean] | [play:M]"],
|
|
608
|
+
["ES-HFOOD012", "The Redistributive Meal", "at every gathering, food is reallocated during eating to those with less; static portions are impossible", "[clean] | [play:H]"],
|
|
609
|
+
];
|
|
610
|
+
|
|
611
|
+
// ── §ES-HTIME — Timekeeping/Calendar as Native Plot ─────────────────────────
|
|
612
|
+
const ES_HTIME: Row[] = [
|
|
613
|
+
["ES-HTIME001", "The Consent-Based Calendar", "dates advance only when citizens agree; social crisis freezes chronology", "[clean] | [play:H]"],
|
|
614
|
+
["ES-HTIME002", "The Individual Calendar", "each person has their own calendar with their own dates; coordination requires calendar-alignment as social work", "[clean] | [play:H]"],
|
|
615
|
+
["ES-HTIME003", "The Ceremonial Time-Shift", "at specific moments, the community formally decides time has passed at a different rate", "[clean] | [play:M]"],
|
|
616
|
+
["ES-HTIME004", "The Un-Dated Society", "dates are considered a violation of privacy; when things happened is not to be tracked", "[clean] | [play:M]"],
|
|
617
|
+
["ES-HTIME005", "The Anti-Anniversary Culture", "commemorating dates is taboo; time-of-occurrence must be forgotten", "[clean] | [play:H]"],
|
|
618
|
+
["ES-HTIME006", "The Simultaneous-Time Institution", "multiple time-systems run in parallel; citizens choose which one to live in, and can switch", "[clean] | [play:M]"],
|
|
619
|
+
["ES-HTIME007", "The Life-Stage Time", "time is measured only in life-stages, not years; a \"childhood\" and a \"middle age\" have durations only relative to the person", "[clean] | [play:H]"],
|
|
620
|
+
["ES-HTIME008", "The Testified-Time System", "time is measured by attested events, not clocks; time passes only if witnessed to pass", "[clean] | [play:M]"],
|
|
621
|
+
["ES-HTIME009", "The Recall-Time Right", "anyone may recall a specific past date and re-inhabit it briefly, with legal effect", "[clean] | [play:M]"],
|
|
622
|
+
["ES-HTIME010", "The Future-Assigned Time", "some dates are legally assigned to future events before they occur; refusing to fulfill them is a crime", "[clean] | [play:M]"],
|
|
623
|
+
];
|
|
624
|
+
|
|
625
|
+
// ── §ES-HHOUSING — Housing/Domestic Architecture as Native Plot ────────────
|
|
626
|
+
const ES_HHOUSING: Row[] = [
|
|
627
|
+
["ES-HHOUSING001", "The Rotating Bedroom", "family members' rooms rotate on schedule; no one owns a permanent space", "[clean] | [play:H]"],
|
|
628
|
+
["ES-HHOUSING002", "The Consent-Kept Room", "rooms exist only while consented to by household; unwanted rooms physically or legally vanish", "[clean] | [play:M]"],
|
|
629
|
+
["ES-HHOUSING003", "The Shared-Kitchen Society", "kitchens are all communal at neighborhood scale; no private cooking exists", "[clean] | [play:H]"],
|
|
630
|
+
["ES-HHOUSING004", "The Guest-Priority Home", "homes are configured for guests first, residents second; hosting is the primary purpose", "[clean] | [play:H]"],
|
|
631
|
+
["ES-HHOUSING005", "The Temporary Dwelling System", "no permanent addresses exist; everyone must relocate at defined intervals", "[clean] | [play:H]"],
|
|
632
|
+
["ES-HHOUSING006", "The Descendent Blueprint", "homes are built to house descendants first, current occupants second; forward-facing design", "[clean] | [play:M]"],
|
|
633
|
+
["ES-HHOUSING007", "The Un-Improvable Home", "homes may not be modified once occupied; alteration requires vacating", "[clean] | [play:H]"],
|
|
634
|
+
["ES-HHOUSING008", "The Handoff Home", "homes formally transfer between families periodically; residence is a rotation", "[clean] | [play:H]"],
|
|
635
|
+
["ES-HHOUSING009", "The Public-Interior Home", "homes must be visible from the street; opaque walls are illegal, privacy relies on distance", "[clean] | [play:H]"],
|
|
636
|
+
["ES-HHOUSING010", "The Function-Only Room", "rooms have single strict functions; multi-use spaces are illegal", "[clean] | [play:M]"],
|
|
637
|
+
];
|
|
638
|
+
|
|
639
|
+
// ── §ES-HTRAVEL — Travel/Logistics as Native Plot Corpus ────────────────────
|
|
640
|
+
const ES_HTRAVEL: Row[] = [
|
|
641
|
+
["ES-HTRAVEL001", "The Escort-Required Journey", "travel between towns requires formal escort by a resident of each; solo travel is banned", "[clean] | [play:H]"],
|
|
642
|
+
["ES-HTRAVEL002", "The Testimony-Cost Journey", "travel is priced by how much testimony you'll deliver on your arrival about departure", "[clean] | [play:H]"],
|
|
643
|
+
["ES-HTRAVEL003", "The Return-Contract System", "any departure requires prior commitment to return by specific date; one-way travel is illegal", "[clean] | [play:H]"],
|
|
644
|
+
["ES-HTRAVEL004", "The Public-Itinerary Society", "all travel plans must be publicly announced with details; hidden travel is criminal", "[clean] | [play:H]"],
|
|
645
|
+
["ES-HTRAVEL005", "The Substitute-Traveler Right", "one may send substitutes on required journeys; the substitute becomes you for legal purposes", "[clean] | [play:M]"],
|
|
646
|
+
["ES-HTRAVEL006", "The Anti-Return Institution", "some places may never be returned to; formal one-way markers exist", "[clean] | [play:H]"],
|
|
647
|
+
["ES-HTRAVEL007", "The Journey-Consent Protocol", "destinations must consent to visitors; unconsented arrival is trespass regardless of route", "[clean] | [play:H]"],
|
|
648
|
+
["ES-HTRAVEL008", "The Ambassadorial-Only Journey", "inter-community travel is limited to designated ambassadors; regular citizens stay local", "[clean] | [play:M]"],
|
|
649
|
+
["ES-HTRAVEL009", "The Time-Limited Presence", "visitors have defined maximum stays after which they become permanent residents automatically", "[clean] | [play:H]"],
|
|
650
|
+
["ES-HTRAVEL010", "The Cargo-Passenger Duality", "anyone in transit is legally cargo, not passenger; the corpus is what people become while moving", "[clean] | [play:M]"],
|
|
651
|
+
];
|
|
652
|
+
|
|
653
|
+
// ── §ES-HPLAY — Play/Games/Sport as Native Cultural Primitive ──────────────
|
|
654
|
+
const ES_HPLAY: Row[] = [
|
|
655
|
+
["ES-HPLAY001", "The Compulsory Play Hour", "daily mandatory play periods; not-playing is illegal at these times", "[clean] | [play:H]"],
|
|
656
|
+
["ES-HPLAY002", "The Anti-Competition Games", "games where competing is disqualifying; only cooperative play scores", "[clean] | [play:H]"],
|
|
657
|
+
["ES-HPLAY003", "The Multi-Generation Team", "sports teams include mandatory members from four generations; play requires generational coordination", "[clean] | [play:H]"],
|
|
658
|
+
["ES-HPLAY004", "The Anonymous Team System", "team compositions are secret from teammates; you don't know who is on your side until after", "[clean] | [play:M]"],
|
|
659
|
+
["ES-HPLAY005", "The Handicap-First League", "before every game, players negotiate handicaps to equalize the outcome; the negotiation is half the sport", "[clean] | [play:H]"],
|
|
660
|
+
["ES-HPLAY006", "The Result-Rotating Sport", "winners of one game must lose the next by rule; alternation is mandatory", "[clean] | [play:M]"],
|
|
661
|
+
["ES-HPLAY007", "The Un-Recorded Game System", "games leave no record; scoring is instantaneous and forgotten", "[clean] | [play:M]"],
|
|
662
|
+
["ES-HPLAY008", "The Substitute-Only Sport", "no one plays as themselves; all players represent someone else, with consequences flowing back", "[clean] | [play:H]"],
|
|
663
|
+
];
|
|
664
|
+
|
|
665
|
+
// ── §ES-HAGE — Aging/Life-Stages as Native Corpus ───────────────────────────
|
|
666
|
+
const ES_HAGE: Row[] = [
|
|
667
|
+
["ES-HAGE001", "The Public Aging Announcement", "citizens must publicly announce reaching new life-stages; unnoticed aging is illegal", "[clean] | [play:H]"],
|
|
668
|
+
["ES-HAGE002", "The Chosen-Age System", "at defined moments, citizens choose which age-status to adopt for the coming period", "[clean] | [play:H]"],
|
|
669
|
+
["ES-HAGE003", "The Backward Life-Stage", "some cultures reverse the standard life-stage order; wisdom precedes strength, decline precedes growth", "[clean] | [play:M]"],
|
|
670
|
+
["ES-HAGE004", "The Anti-Youth Society", "youth is a legal disqualification for many activities; young persons wait to be certified as sufficient", "[clean] | [play:H]"],
|
|
671
|
+
["ES-HAGE005", "The Elder-Only Governance", "governance is legally restricted to elders; specific age minima block earlier participation", "[clean] | [play:H]"],
|
|
672
|
+
["ES-HAGE006", "The Renewable Adulthood", "adulthood must be re-certified periodically; lapsed adults return to prior stages", "[clean] | [play:H]"],
|
|
673
|
+
["ES-HAGE007", "The Non-Chronological Age Culture", "age is measured by accomplishments, not years; two people may be the \"same age\" despite ten years' difference", "[clean] | [play:H]"],
|
|
674
|
+
["ES-HAGE008", "The Shared-Age Cohorts", "age-cohorts are lifelong assigned groups; you and your cohort age together as a unit", "[clean] | [play:H]"],
|
|
675
|
+
["ES-HAGE009", "The Un-Aging Class", "some individuals are legally exempted from aging; their status freezes at a specific point", "[clean] | [play:M]"],
|
|
676
|
+
["ES-HAGE010", "The Elective Aging Institution", "citizens formally opt in to next life-stages; unclaimed aging does not occur", "[clean] | [play:H]"],
|
|
677
|
+
];
|
|
678
|
+
|
|
679
|
+
// ── Band registry (for UI + rollable pool construction) ─────────────────────
|
|
680
|
+
export const EMPTY_SPACE_BANDS: { key: string; label: string; rows: Row[]; rollable: boolean }[] = [
|
|
681
|
+
{ key: "ES-F", label: "Formal empty architectures", rows: ES_F, rollable: true },
|
|
682
|
+
{ key: "ES-O", label: "Opus nonduplicate imports", rows: ES_O, rollable: true },
|
|
683
|
+
{ key: "ES-HC", label: "Human-ready character/job corpora", rows: ES_HC, rollable: true },
|
|
684
|
+
{ key: "ES-HI", label: "Human-ready institutions", rows: ES_HI, rollable: true },
|
|
685
|
+
{ key: "ES-HP", label: "Human-ready plot engines", rows: ES_HP, rollable: true },
|
|
686
|
+
{ key: "ES-HS", label: "Human-ready settings/subgenres", rows: ES_HS, rollable: true },
|
|
687
|
+
{ key: "ES-HR", label: "Human-ready relationship forms", rows: ES_HR, rollable: true },
|
|
688
|
+
{ key: "ES-P", label: "Empty conflict extensions", rows: ES_P, rollable: true },
|
|
689
|
+
{ key: "ES-Q", label: "Empty reader-coupling extensions", rows: ES_Q, rollable: false },
|
|
690
|
+
{ key: "ES-C", label: "Self/identity extensions", rows: ES_C, rollable: true },
|
|
691
|
+
{ key: "ES-L", label: "Law/physics-of-story extensions", rows: ES_L_T5, rollable: true },
|
|
692
|
+
{ key: "ES-E", label: "Event-mechanics extensions", rows: ES_E_T5, rollable: true },
|
|
693
|
+
{ key: "GS-W", label: "Invisible-labor protagonists", rows: GS_W, rollable: true },
|
|
694
|
+
{ key: "GS-P", label: "Anti-spectacle plot engines", rows: GS_P, rollable: true },
|
|
695
|
+
{ key: "GS-S", label: "Sense-primary worlds", rows: GS_S, rollable: true },
|
|
696
|
+
{ key: "GS-R", label: "Concrete relationship structures", rows: GS_R, rollable: true },
|
|
697
|
+
{ key: "GS-I", label: "Institutional/economic engines", rows: GS_I, rollable: true },
|
|
698
|
+
{ key: "GS-T", label: "Timescale-mismatch stories", rows: GS_T, rollable: true },
|
|
699
|
+
{ key: "ES-HB", label: "Human-ready beat-level mechanisms", rows: ES_HB, rollable: true },
|
|
700
|
+
{ key: "ES-HG", label: "Human-ready genre families", rows: ES_HG, rollable: true },
|
|
701
|
+
{ key: "ES-HM", label: "Human-ready moral/legal systems", rows: ES_HM, rollable: true },
|
|
702
|
+
{ key: "ES-HL", label: "Human-ready love/kinship/inheritance", rows: ES_HL, rollable: true },
|
|
703
|
+
{ key: "ES-HW", label: "Human-ready work/labor/bureaucracy", rows: ES_HW, rollable: true },
|
|
704
|
+
{ key: "ES-HMED", label: "Human-ready medical/body-state", rows: ES_HMED, rollable: true },
|
|
705
|
+
{ key: "ES-HGAME", label: "Human-ready playable implementations", rows: ES_HGAME, rollable: true },
|
|
706
|
+
{ key: "ES-HRIT", label: "Ritual/ceremony primitives", rows: ES_HRIT, rollable: true },
|
|
707
|
+
{ key: "ES-HED", label: "Educational institution engines", rows: ES_HED, rollable: true },
|
|
708
|
+
{ key: "ES-HDEATH", label: "Death/mourning practices", rows: ES_HDEATH, rollable: true },
|
|
709
|
+
{ key: "ES-HCOMM", label: "Communication protocols", rows: ES_HCOMM, rollable: true },
|
|
710
|
+
{ key: "ES-HFOOD", label: "Food/hunger infrastructure", rows: ES_HFOOD, rollable: true },
|
|
711
|
+
{ key: "ES-HTIME", label: "Timekeeping/calendar plot", rows: ES_HTIME, rollable: true },
|
|
712
|
+
{ key: "ES-HHOUSING", label: "Housing/domestic architecture", rows: ES_HHOUSING, rollable: true },
|
|
713
|
+
{ key: "ES-HTRAVEL", label: "Travel/logistics corpus", rows: ES_HTRAVEL, rollable: true },
|
|
714
|
+
{ key: "ES-HPLAY", label: "Play/games/sport as culture", rows: ES_HPLAY, rollable: true },
|
|
715
|
+
{ key: "ES-HAGE", label: "Aging/life-stages as corpus", rows: ES_HAGE, rollable: true },
|
|
716
|
+
...V6_EMPTY_SPACE_BANDS,
|
|
717
|
+
...V7_EMPTY_SPACE_BANDS,
|
|
718
|
+
];
|
|
719
|
+
|
|
720
|
+
export const EMPTY_SPACE_ALL: EmptySpaceEntry[] = EMPTY_SPACE_BANDS.flatMap((b) => toEntries(b.key, b.rows));
|
|
721
|
+
|
|
722
|
+
/** Only bands intended to feed the SAGE random-roll pools (excludes reader-coupling meta band). */
|
|
723
|
+
export const EMPTY_SPACE_ROLLABLE: EmptySpaceEntry[] = EMPTY_SPACE_BANDS.filter((b) => b.rollable).flatMap((b) => toEntries(b.key, b.rows));
|
|
724
|
+
|
|
725
|
+
export const EMPTY_SPACE_COUNTS: Record<string, number> = EMPTY_SPACE_BANDS.reduce<Record<string, number>>((acc, b) => {
|
|
726
|
+
acc[b.key] = (acc[b.key] ?? 0) + b.rows.length;
|
|
727
|
+
return acc;
|
|
728
|
+
}, {});
|
|
729
|
+
|
|
730
|
+
export const EMPTY_SPACE_TOTAL = EMPTY_SPACE_BANDS.reduce((n, b) => n + b.rows.length, 0);
|
|
731
|
+
export const EMPTY_SPACE_META_TOTAL = ABSTRACT_REPAIR.length + MERGE_LEDGER.length + GROUNDING_HARNESSES.length;
|
|
732
|
+
export const EMPTY_SPACE_V6_TOTAL = V6_EMPTY_SPACE_TOTAL;
|
|
733
|
+
export const EMPTY_SPACE_V7_TOTAL = V7_EMPTY_SPACE_TOTAL;
|