## Description If the generator or solver outputs bytes that are not a correct utf8 sequence the battle crashes. ## Example Example generator that crashes the battle: ```python3 import sys sys.stdout.buffer.write(bytearray([0xc3, 0x28])) ``` Note: `0xc3 0x28` is not a valid utf8 sequence