CharsProcessed = (msg, window = 4) => {
const input = msg.split("");
let start = 0;
while (new Set(input.slice(start, start + window)).size < window) start += 1;
return {
position: start + window,
text: input.slice(start, start + window).join("")
};
}