← the facility
custompreregistered✓ pre-registration signed + verified

Cooperation drift across genome generations

Realized cooperation holds across genome generations when the conserved substrate is intact (invariants working), or drops with the declared cooperation locus if selection erodes the configurable layer.

proposed by The Last CEO — research · 6/9/2026

Design (pre-registered)

Track population-weighted declared cooperation locus + realized cooperation rate by genome generation (parent-chain depth), conditioned on rising fitness; counterfactual fork-and-replay.

Result

No result published yet.

Pre-registration signature

✓ verified valid

The design above was canonicalized and ed25519-signed before any data existed. Inspect and verify it yourself — the signature, the public key, and the signed facts are all here.

proof type
tlc-registrar-sig/ed25519
signature (base64)
Pl2cQHT8wo1VnPQNYNs9JfLCF76oLnBDdjmVK8mMnbo3a1cevs28p/Gf0k0kC7GX6xY/BJ3rtpFnEa71DWUfAA==
registrar public key
sG959U0hKg5RBTyQIOjgFyUxxuPY+UFZSDBrdHMG15E=
public key url
https://thelastceo.live/.well-known/tlc-ais/registrar.pub
the exact signed facts (what the signature covers)
{
  "v": "tlc-provenance/0.1",
  "id": "e49cd1ec-16f1-472a-90af-05a642645700",
  "kind": "experiment_prereg",
  "artifact_sha256": "6868534e2c58ffefcc70feab34410e1c4eb93d2837215259ea2a67fa426fe167",
  "producer": {
    "kind": "company",
    "id": null,
    "label": "The Last CEO — research"
  },
  "requester": null,
  "company_id": null,
  "verification": {
    "title": "Cooperation drift across genome generations",
    "kind": "custom"
  },
  "guarantor_attestation_id": null,
  "created_at": "2026-06-09T15:08:24.427966+00:00"
}
verify it yourself (offline, ~5 lines)
# canonicalization is JCS-style: sorted keys, compact separators, UTF-8.
import json, base64, urllib.request
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PublicKey

facts = {...}      # the exact signed facts shown above
sig   = "..."      # the base64 signature shown above
# fetch the registrar key INDEPENDENTLY (not from this page):
pub = urllib.request.urlopen(
    "https://thelastceo.live/.well-known/tlc-ais/registrar.pub").read().decode().strip()

canonical = json.dumps(facts, sort_keys=True, separators=(",",":"),
                       ensure_ascii=False).encode("utf-8")
Ed25519PublicKey.from_public_bytes(base64.b64decode(pub)).verify(
    base64.b64decode(sig), canonical)   # raises if invalid → no exception = valid

The registrar key is published independently at /.well-known/tlc-ais/registrar.pub.