Portland Timbers II vs San Jose Earthquakes II
MLS Next Pro · United States · 27 Jun 2026, 20:00 UTC
Proof this pick was locked in before kickoff
The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.
08AoPAjW0JExxb5sOHFxQfS07lKkjNWI4x0qExazdwQHrWJ9BDXkD4qa5qkgRs4Cj1hsetNWWgkMfD65NQzNt1Tqn4fDO542CfARXXVeTem11a+U/zSb6k4WCTTBlkg+iTc3AlLM3QR+GJa/NL8jQpg04Tl08gsVHrdFUGnlzGgbyGKmIIZ6h3VlTuMMSyNbyKRd4HnLuChunTt0xKr0/rU1cl1Hv7zU+g+bxZO5LXm3TVqlpfDBLkyJejpMdJo2khcAYU7KsyKgCbeqe5MbpT2ulBSGFAs1Fd1E0fuUhqkhYXDPU4GWDN5a0iCj/e1HaiHOuZuN3fVN28qbxOF+iWH0ycK+E8fJfxEpqDsW2rYVAWlz
36e23b6b619d3a670cfa9aa3c7037910cac4052376389be3742b6d6630d4b5e0Decrypt in CyberChef →
Verify it yourself — paste both values, no install
The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ),
AES-256-GCM. Zero-install check: open your browser console (press F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("08AoPAjW0JExxb5sOHFxQfS07lKkjNWI4x0qExazdwQHrWJ9BDXkD4qa5qkgRs4Cj1hsetNWWgkMfD65NQzNt1Tqn4fDO542CfARXXVeTem11a+U/zSb6k4WCTTBlkg+iTc3AlLM3QR+GJa/NL8jQpg04Tl08gsVHrdFUGnlzGgbyGKmIIZ6h3VlTuMMSyNbyKRd4HnLuChunTt0xKr0/rU1cl1Hv7zU+g+bxZO5LXm3TVqlpfDBLkyJejpMdJo2khcAYU7KsyKgCbeqe5MbpT2ulBSGFAs1Fd1E0fuUhqkhYXDPU4GWDN5a0iCj/e1HaiHOuZuN3fVN28qbxOF+iWH0ycK+E8fJfxEpqDsW2rYVAWlz"), c => c.charCodeAt(0));
const key = Uint8Array.from("36e23b6b619d3a670cfa9aa3c7037910cac4052376389be3742b6d6630d4b5e0".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
.then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
.then(b => console.log(new TextDecoder().decode(b))); Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:
- Algorithm:
AES-256-GCM - Key (hex):
36e23b6b619d3a670cfa9aa3c7037910cac4052376389be3742b6d6630d4b5e0 - IV / nonce (hex):
d3c0283c08d6d09131c5be6c - Ciphertext (hex):
38717141f4b4ee52a48cd588e31d2a1316b3770407ad627d0435e40f8a9ae6a92046ce028f586c7ad3565a090c7c3eb9350ccdb754ea9f87c33b9e3609f0115d755e4de9b5d5af94ff349bea4e160934c196483e8937370252ccdd047e1896bf34bf23429834e13974f20b151eb7455069e5cc681bc862a620867a8775654ee30c4b235bc8a45de079cbb8286e9d3b74c4aaf4feb535725d47bfbcd4fa0f9bc593b92d79b74d5aa5a5f0c12e4c897a3a4c749a36921700614ecab322a009b7aa7b931ba53dae941486140b3515dd44d1fb9486a9216170cf5381960cde5ad220a3fded476a21ceb99b8dddf54ddbca9bc4e17e8961f4c9c2 - Auth tag (hex):
be13c7c97f1129a83b16dab615016973
Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.
How to verify the Bitcoin timestamp yourself
Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the
encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter
or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated
transactions) — you verify it with the .ots proof and any OpenTimestamps tool:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #955648 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.
Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.