package com.raeids.stratus.hook data class ChatRegexes(val regexList: List?) { val compiledRegexList: MutableList = arrayListOf() init { regexList?.forEach { compiledRegexList.add(Regex(it)) } } }