/* global React, KitChrome */ const { useState, useEffect } = React; const { StatusStrip, Nav, Footer, Eyebrow, MasterEquationArtifact, CrossLinkStrip, Stat, StatGrid } = KitChrome; // ============================================================================ // Live "research price" ticker — the price researchers are currently paying // per de-identified record. This anchors HCC demand and is published prominently // on the homepage. Floats per Era; we animate ±0.4% drift for liveness. // ============================================================================ function ResearchPriceTicker() { const [px, setPx] = useState(48.00); useEffect(() => { const t = setInterval(() => { setPx(p => Math.max(46.50, Math.min(49.80, p + (Math.random() - 0.5) * 0.18))); }, 1800); return () => clearInterval(t); }, []); return (
Live research price
${px.toFixed(2)}
per de-identified record · paid in HCC
Era 0 · floor rate · floats with researcher demand
); } // ============================================================================ // Three Paths to Earn — the central diagram that explains HCC mechanics // ============================================================================ function ThreePaths() { const paths = []; return (
{paths.map((p, i) => (
{p.n} {p.trigger}
{p.head}

{p.body}

{p.tag}
))}
); } // ============================================================================ // Buyer Typology — who is on the other side of the HCC trade // ============================================================================ function BuyerTypology() { const buyers = []; return (
{buyers.map((b, i) => (
{b.code} {b.name} {b.sub}
{b.share}%
))}
); } // ============================================================================ // De-id vs Identified rate comparison // ============================================================================ function RateComparison() { return (
Default mode
De-identified
$48
per record · floor rate · paid in HCC

Records are stripped of all 18 HIPAA Safe Harbor identifiers before any researcher query touches them. You are mathematically un-reversible. This is the default for every opt-in patient.

Patient opt-in · 8.75× rate
Identified
$420
per record · per-study consent · paid in HCC

Choose to be reachable for follow-up. Researchers pay nearly 9× because identified data is rare and load-bearing — rare-disease registries, longitudinal cohorts, post-market signal detection.

); } // ============================================================================ // HCC multipliers — what stacks on top of the base mint // ============================================================================ function Multipliers() { const rows = []; return (
Five stacked multipliers
Your record's worth isn't one number.

The base mint reflects de-identified queries. From there, multipliers stack \u2014 each one transparent, each one your choice, each one disclosed on the per-buyer receipt before HCC is minted.

{rows.map((r, i) => ( ))}
Layer What it is Mint factor Trigger
{r.code} {r.label} {r.mult} {r.note}
Worked example. A rare-condition patient with 3 years continuous record and identified opt-in: 1.00 \u00d7 8.75 + 4.00 + 1.50 + 0.75 = 15.00\u00d7 the base mint per record event.
); } // ============================================================================ // Where HCC flows — the settlement-currency surfaces // ============================================================================ function WhereHCCFlows() { const flows = []; return (
{flows.map((f, i) => (
Settlement
{f.h}

{f.b}

))}
); } // ============================================================================ // Patient earnings calculator — back-of-envelope HCC math // ============================================================================ function EarningsCalculator() { const [recordsPerYr, setRecordsPerYr] = useState(36); const [identified, setIdentified] = useState(false); const px = identified ? 420 : 48; const annual = recordsPerYr * px; return (
If you opt in…
What you'd earn from data sales.

The average CH patient generates ~36 distinct record-events a year — visits, labs, imaging, fills, vitals, sessions. Move the slider; we'll show you the floor.

setRecordsPerYr(Number(e.target.value))} style={{ width: "100%", marginTop: 10, accentColor: "var(--accent-halo)" }} />
{recordsPerYr} records/yr
Estimated annual HCC earnings
${annual.toLocaleString()}
≈ {(annual / (window.CHBrand.metrics.hcc.price.value.replace("$",""))).toFixed(0)} HCC at current market price
Floor estimate, derived from current research price. Actual earnings vary with researcher demand, query coverage, and your record richness. Not investment advice. HCC is a digital commodity (IRC §1221).
); } // ============================================================================ // FAQ — the four objections HCC must answer head-on // ============================================================================ function FAQ() { const items = []; return (
{items.map((it, i) => (
{it.q}

{it.a}

))}
); } function App() { const [tab, setTab] = useState("Overview"); return (
coin.healthcare· HCC (Health Commodity Coin) · the data economy· ● Live research price } />
); } ReactDOM.createRoot(document.getElementById("root")).render();