Olimpija vs Rudeš
Club Friendlies 3 · World · 05 Jul 2026, 16: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.
SKtvAMSZBGSP8g0v4fxmdxQcGJGjnkNQStIsD32Ii8K5PbV3cGqkTgHYLNQInw37IzRdwnoI3EVu+B/mbEshwdtZHvr9sw3jPz8q2qDkGd6DMipBQIba4et/+EzqUfOJodTh5Hjvxi68vIC5xG/5007SPbiY6T76CZyC6hedZYlD09SzwGFv1xv13bSItaDB5lsdI/mnSP3Ql/fUuyRj+aOpVhjD6lr3cFqWscff8as/plSS30OUGBjIPqhaMENEgnhvISBJvCvoSjrd52qGLxHUeFCHp94ql3hdKM/4dyWgwChX/EyqWm2xMp236omnyKV6ozmrhuP8Kx0flgSbGaDXwVewRjXi
0f8c4da31d8b3f5b1e61b106c64b16e3fea838dbc08a217d6c218bbde34924daDecrypt 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("SKtvAMSZBGSP8g0v4fxmdxQcGJGjnkNQStIsD32Ii8K5PbV3cGqkTgHYLNQInw37IzRdwnoI3EVu+B/mbEshwdtZHvr9sw3jPz8q2qDkGd6DMipBQIba4et/+EzqUfOJodTh5Hjvxi68vIC5xG/5007SPbiY6T76CZyC6hedZYlD09SzwGFv1xv13bSItaDB5lsdI/mnSP3Ql/fUuyRj+aOpVhjD6lr3cFqWscff8as/plSS30OUGBjIPqhaMENEgnhvISBJvCvoSjrd52qGLxHUeFCHp94ql3hdKM/4dyWgwChX/EyqWm2xMp236omnyKV6ozmrhuP8Kx0flgSbGaDXwVewRjXi"), c => c.charCodeAt(0));
const key = Uint8Array.from("0f8c4da31d8b3f5b1e61b106c64b16e3fea838dbc08a217d6c218bbde34924da".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):
0f8c4da31d8b3f5b1e61b106c64b16e3fea838dbc08a217d6c218bbde34924da - IV / nonce (hex):
48ab6f00c49904648ff20d2f - Ciphertext (hex):
e1fc6677141c1891a39e43504ad22c0f7d888bc2b93db577706aa44e01d82cd4089f0dfb23345dc27a08dc456ef81fe66c4b21c1db591efafdb30de33f3f2adaa0e419de83322a414086dae1eb7ff84cea51f389a1d4e1e478efc62ebcbc80b9c46ff9d34ed23db898e93efa099c82ea179d658943d3d4b3c0616fd71bf5ddb488b5a0c1e65b1d23f9a748fdd097f7d4bb2463f9a3a95618c3ea5af7705a96b1c7dff1ab3fa65492df43941818c83ea85a30434482786f212049bc2be84a3adde76a862f11d4785087a7de2a97785d28cff87725a0c02857fc4caa5a6db1329db7ea89a7c8a57aa339ab86e3 - Auth tag (hex):
fc2b1d1f96049b19a0d7c157b04635e2
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 #956772 · 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.