dave
fun Security.or(that: Security): Security = when (this) { is OrSecurity -> OrSecurity(this + that) else -> OrSecurity(listOf(this) + that) }