{
const b = new Int8Array([
97, 57, 100, 54, 49, 53, 100, 48, 45, 101, 51, 98, 99, 45, 52, 49, 101, 100,
45, 98, 51, 51, 49, 45, 50, 100, 98, 97, 57, 57, 48, 51, 56, 54, 49, 101
]);
b.reduce((a, i) => (a += String.fromCharCode(i)));
return {
b: b,
reduction: b.reduce((a, i) => (a += String.fromCharCode(i))),
"b[0]": String.fromCharCode(b[0]),
"97": String.fromCharCode(97),
"57": String.fromCharCode(57)
};
}