Sabas vs Hokushukai
Regional League · Japan · 13 Sept 2026, 01: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.
GPF32EZjfUnjh8xcaGhNb12gWbaBfx5W5YZtRiaIx9h6h+M7oQvAtOkbNxNswTiqvnoO/aulWWCHR04E4c9ohOBPesX8mxhVxH4HIXt4aFntM9QRVPL8XZKo5SzX7CzcM2TP5FAyLYGINdbICrUPP1g7QurpL+wJyDhbx8xFGghRNITutfGzgvEKMJxnLievWarBY0q0OuO8NBUjjJmQqMM0sR88C1Ly/dviIclx5wt1BC8Vti7DEAL+gsAeByFUlUHcN7QLitLuyerY3/vAPafj2wl5xPHoWnz8emwqaHHp4KU9v58ww+R52XwfmAcFEqgcDIKZGEFGDHV65SMCXNhzaP8i7phn
146adbe76d83a82e09a80aa9f1b5f2f9194a54a25065b980bbfedaa057876517Decrypt 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("GPF32EZjfUnjh8xcaGhNb12gWbaBfx5W5YZtRiaIx9h6h+M7oQvAtOkbNxNswTiqvnoO/aulWWCHR04E4c9ohOBPesX8mxhVxH4HIXt4aFntM9QRVPL8XZKo5SzX7CzcM2TP5FAyLYGINdbICrUPP1g7QurpL+wJyDhbx8xFGghRNITutfGzgvEKMJxnLievWarBY0q0OuO8NBUjjJmQqMM0sR88C1Ly/dviIclx5wt1BC8Vti7DEAL+gsAeByFUlUHcN7QLitLuyerY3/vAPafj2wl5xPHoWnz8emwqaHHp4KU9v58ww+R52XwfmAcFEqgcDIKZGEFGDHV65SMCXNhzaP8i7phn"), c => c.charCodeAt(0));
const key = Uint8Array.from("146adbe76d83a82e09a80aa9f1b5f2f9194a54a25065b980bbfedaa057876517".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):
146adbe76d83a82e09a80aa9f1b5f2f9194a54a25065b980bbfedaa057876517 - IV / nonce (hex):
18f177d846637d49e387cc5c - Ciphertext (hex):
68684d6f5da059b6817f1e56e5866d462688c7d87a87e33ba10bc0b4e91b37136cc138aabe7a0efdaba5596087474e04e1cf6884e04f7ac5fc9b1855c47e07217b786859ed33d41154f2fc5d92a8e52cd7ec2cdc3364cfe450322d818835d6c80ab50f3f583b42eae92fec09c8385bc7cc451a08513484eeb5f1b382f10a309c672e27af59aac1634ab43ae3bc3415238c9990a8c334b11f3c0b52f2fddbe221c971e70b75042f15b62ec31002fe82c01e0721549541dc37b40b8ad2eec9ead8dffbc03da7e3db0979c4f1e85a7cfc7a6c2a6871e9e0a53dbf9f30c3e479d97c1f98070512a81c0c82991841 - Auth tag (hex):
460c757ae523025cd87368ff22ee9867
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 #966735 · 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.