Logic OR with multiple lists of Booleans

Hello dear professionals.
Could you please advise the ways how Logic OR can be applied with multiple lists of Booleans.
in dynamo we have OOTB nodes that do not support lists or more than 2 lists at once.
I know the way how to do it with If else operator, but it will be not convenient with 10+ conditions.
Could you please share your ideas how the result from Code Block can be achieved in other ways

In your code block: swap your first two ; for || (two vertical bars, not an easy thing to read on the forum.

For nodes you would have to place multiple or nodes and feed the output of the first into the second, with the second input in the second node being the input from the second test.

PS: if you want and as well it is &&