I still dont understand the realistic logical sense 😅🙏
Here's the breakdown.
import os
high_precision_estimated_range = int.from_bytes(os.urandom(4)) >> 2
high_precision_estimated_range |= 1 << 30
print(
'High precision estimated range: '
f'0x{high_precision_estimated_range:08x}0000000000'
f' : 0x{high_precision_estimated_range:08x}ffffffffff'
)