VJS II vs Atlantis / PM
Kolmonen - Southern Group · Finland · 01 Aug 2026, 16:30 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.
ifC1HQmXAaUo6Oqku2lOna+/94bbMJDqvl/dPKI+iI62H+R/4QAzr5DN/qkL6a48S//eyy7/i4X7ZSFk+OI8wxCIJeu8BEitz3W8q8gqQ5EGYugVWpiCZgI7H1YBsYMuurnlbDh7W3ENaztuxKap1QCM1rzeO2X4zB4KW83foSuzr56z3gn+o7pMF4TR2kg7dsJciOxnwQGQd+WaZAe5k1isVgEMSgXKRJYClAtLFe1CWeZYwCcJSMsDN33+uA5chFqE0wQ/0K1EvlPEKG0Taajzn42HIGhDZn/ioxGALis89XFI0Ego3++72M+bNubsGW7Sd+ykhdv0E8mqH9v9HU0dKfFr
0f53d3212d37e2c956943a94d8f51837b874322da1cfb24cba6c4f4dbfb89d65Decrypt 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("ifC1HQmXAaUo6Oqku2lOna+/94bbMJDqvl/dPKI+iI62H+R/4QAzr5DN/qkL6a48S//eyy7/i4X7ZSFk+OI8wxCIJeu8BEitz3W8q8gqQ5EGYugVWpiCZgI7H1YBsYMuurnlbDh7W3ENaztuxKap1QCM1rzeO2X4zB4KW83foSuzr56z3gn+o7pMF4TR2kg7dsJciOxnwQGQd+WaZAe5k1isVgEMSgXKRJYClAtLFe1CWeZYwCcJSMsDN33+uA5chFqE0wQ/0K1EvlPEKG0Taajzn42HIGhDZn/ioxGALis89XFI0Ego3++72M+bNubsGW7Sd+ykhdv0E8mqH9v9HU0dKfFr"), c => c.charCodeAt(0));
const key = Uint8Array.from("0f53d3212d37e2c956943a94d8f51837b874322da1cfb24cba6c4f4dbfb89d65".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):
0f53d3212d37e2c956943a94d8f51837b874322da1cfb24cba6c4f4dbfb89d65 - IV / nonce (hex):
89f0b51d099701a528e8eaa4 - Ciphertext (hex):
bb694e9dafbff786db3090eabe5fdd3ca23e888eb61fe47fe10033af90cdfea90be9ae3c4bffdecb2eff8b85fb652164f8e23cc3108825ebbc0448adcf75bcabc82a43910662e8155a988266023b1f5601b1832ebab9e56c387b5b710d6b3b6ec4a6a9d5008cd6bcde3b65f8cc1e0a5bcddfa12bb3af9eb3de09fea3ba4c1784d1da483b76c25c88ec67c1019077e59a6407b99358ac56010c4a05ca449602940b4b15ed4259e658c0270948cb03377dfeb80e5c845a84d3043fd0ad44be53c4286d1369a8f39f8d87206843667fe2a311802e2b3cf57148d04828dfefbbd8cf9b36e6ec196ed277ec - Auth tag (hex):
a485dbf413c9aa1fdbfd1d4d1d29f16b
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. 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.