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

Benfica de Macau vs Shao Jiang SC

Primeira Division · Macau · 10 Jul 2026, 13:00 UTC

Final score
2 : 4
Result
Lost
Pick
Benfica de Macau
Market
1x2
Model prob.
14.4%
Best price
12.05
Min odds
9.63
Stake factor
3.00

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)
LFaEUrvRxri+SH3jsB4YqhlTkaNRhNoPx5m8NFG6TN1j67Rhz6zhdAHA9Hya2o3fU0J1sxZ5a198R17pA9Ja06snI+U2RijY51UgfNnUR0JPnlR2j9ml1aFc9PhvhwtAg+usDGRYMF0FpnzU0sLbf330NTePdmWrYCxXXOv0nJVMCbQ3qKXM/QS/H2be8+D3L6s6reT+h8rRteRoMcsTVq2JljaM+O78l8s3b0U0pD+KnnztG32CqWJy6+3/cfATHxXq4aXDerzGbrO1cVvYqkvD6rM3wZQRQti/ShcycV6KXRocYF+xW8lmDfgueMDqW4c96G/z14Vt4wl2Rov40yRtYxYxXM0pkLccITAiI7Q=
key fingerprint sha256: a96fd6ee7af3d8bae3871b5c99e6fa438c975ed67c367b61dc0d8798e5d70222
Decrypt it & read the pick
Decryption key (released after the match)
36dd6d52ac1c1a362bd8f53356a696103b3b1c7027772987f36db4c74fc2e1f3
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("LFaEUrvRxri+SH3jsB4YqhlTkaNRhNoPx5m8NFG6TN1j67Rhz6zhdAHA9Hya2o3fU0J1sxZ5a198R17pA9Ja06snI+U2RijY51UgfNnUR0JPnlR2j9ml1aFc9PhvhwtAg+usDGRYMF0FpnzU0sLbf330NTePdmWrYCxXXOv0nJVMCbQ3qKXM/QS/H2be8+D3L6s6reT+h8rRteRoMcsTVq2JljaM+O78l8s3b0U0pD+KnnztG32CqWJy6+3/cfATHxXq4aXDerzGbrO1cVvYqkvD6rM3wZQRQti/ShcycV6KXRocYF+xW8lmDfgueMDqW4c96G/z14Vt4wl2Rov40yRtYxYxXM0pkLccITAiI7Q="), c => c.charCodeAt(0));
const key  = Uint8Array.from("36dd6d52ac1c1a362bd8f53356a696103b3b1c7027772987f36db4c74fc2e1f3".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): 36dd6d52ac1c1a362bd8f53356a696103b3b1c7027772987f36db4c74fc2e1f3
  • IV / nonce (hex): 2c568452bbd1c6b8be487de3
  • Ciphertext (hex): b01e18aa195391a35184da0fc799bc3451ba4cdd63ebb461cface17401c0f47c9ada8ddf534275b316796b5f7c475ee903d25ad3ab2723e5364628d8e755207cd9d447424f9e54768fd9a5d5a15cf4f86f870b4083ebac0c6458305d05a67cd4d2c2db7f7df435378f7665ab602c575cebf49c954c09b437a8a5ccfd04bf1f66def3e0f72fab3aade4fe87cad1b5e46831cb1356ad8996368cf8eefc97cb376f4534a43f8a9e7ced1b7d82a96272ebedff71f0131f15eae1a5c37abcc66eb3b5715bd8aa4bc3eab337c1941142d8bf4a1732715e8a5d1a1c605fb15bc9660df82e78c0ea5b873de86ff3d7856de30976468bf8d3
  • Auth tag (hex): 246d6316315ccd2990b71c21302223b4

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 #957407 · 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.