Sign in
← All matches
✅ Cryptographically verified · sealed pick #18

Edgeworth Eagles Res. vs Lambton Jaffas Res.

Northern NSW Reserve League · Australia · 23 Jun 2026, 08:00 UTC

Final score
1 : 2
Result
Won
Pick
Lambton Jaffas Res.
Market
1x2
Model prob.
39.2%
Best price
3.09
Min odds
2.84
Stake factor
2.70

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.

Encrypted pick (AES-256-GCM)
sllP7VSg2Nwyq0SBpFfGG1RtlyPxMDdxe4EKiBAvgxVSbeB6ZSx1B7tQzZ3d9aDUO1lPImJ2vsNdABlxfEeQaog/CNKjImJQpihErJkioKEX87ryCIm/b33g2sUK8YbGDUknBEksEipg2RlVpRJQiht8dFV/L6feu1nwqr+315/Kv6PMRsGXfbEpdQiTy7ruCFPeUIb231O51lchNyvYDmowigGthydElNNGYLOWxcynbNJ4VNWgTi9K3lsV0ipmGyBL8rq3g6EDkoJLNccP0m+/KUJiXP2PG3U2scBg+jUPQfyFhJpZJYgWiL5P9UKCsONTFMpb5hDY99vB9xVvKxlBBW36rAeP2D53rEQNtye/RiFY
key fingerprint sha256: e8537c66189bc48e6897b67e8c97a48beb62c59af6483e42272c49817a9eae62
Decrypt it & read the pick
Decryption key (released after the match)
3e5cef4bdb7cf81af6967e6ee75f935a5dc7c74dc5c1248768c516d79319b5f9
Decrypt 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 F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("sllP7VSg2Nwyq0SBpFfGG1RtlyPxMDdxe4EKiBAvgxVSbeB6ZSx1B7tQzZ3d9aDUO1lPImJ2vsNdABlxfEeQaog/CNKjImJQpihErJkioKEX87ryCIm/b33g2sUK8YbGDUknBEksEipg2RlVpRJQiht8dFV/L6feu1nwqr+315/Kv6PMRsGXfbEpdQiTy7ruCFPeUIb231O51lchNyvYDmowigGthydElNNGYLOWxcynbNJ4VNWgTi9K3lsV0ipmGyBL8rq3g6EDkoJLNccP0m+/KUJiXP2PG3U2scBg+jUPQfyFhJpZJYgWiL5P9UKCsONTFMpb5hDY99vB9xVvKxlBBW36rAeP2D53rEQNtye/RiFY"), c => c.charCodeAt(0));
const key  = Uint8Array.from("3e5cef4bdb7cf81af6967e6ee75f935a5dc7c74dc5c1248768c516d79319b5f9".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): 3e5cef4bdb7cf81af6967e6ee75f935a5dc7c74dc5c1248768c516d79319b5f9
  • IV / nonce (hex): b2594fed54a0d8dc32ab4481
  • Ciphertext (hex): a457c61b546d9723f13037717b810a88102f8315526de07a652c7507bb50cd9dddf5a0d43b594f226276bec35d0019717c47906a883f08d2a3226250a62844ac9922a0a117f3baf20889bf6f7de0dac50af186c60d492704492c122a60d91955a512508a1b7c74557f2fa7debb59f0aabfb7d79fcabfa3cc46c1977db129750893cbbaee0853de5086f6df53b9d65721372bd80e6a308a01ad87274494d34660b396c5cca76cd27854d5a04e2f4ade5b15d22a661b204bf2bab783a10392824b35c70fd26fbf2942625cfd8f1b7536b1c060fa350f41fc85849a5925881688be4ff54282b0e35314ca5be610d8f7dbc1f7156f2b1941056d
  • Auth tag (hex): faac078fd83e77ac440db727bf462158

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:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #954934 · 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.