if (e < 0x00 || e > 0xff) {
            const reason = `byte out of range 0x00 <= ${e} <= 0xFF`;
            const position = {start, end: start + 1};
            throw new Base32DecodeError(reason, bytes, position);
        }