# Each line is one game.  First two listed players in each game form one team (a pair), 
# and the rest form the other team (pair or triple as needed).
#
# No player meets any other more than once, in any capacity.
#
# No player appears in a triple more than twice.
#
# Only 5 rounds are possible.

m22 = [
# Round 1:
	[
		[4, 3, 1, 2, 0],
		[6, 8, 7, 5, 9],
		[10, 11, 12, 13],
		[14, 15, 16, 17],
		[18, 19, 20, 21]
	],
# Round 2:
	[
		[0, 6, 12, 17],
		[16, 21, 5, 4, 11],
		[20, 9, 10, 15, 3],
		[2, 8, 14, 19],
		[1, 7, 13, 18]
	],
# Round 3:
	[
		[0, 7, 15, 21],
		[3, 5, 12, 19],
		[1, 8, 10, 16],
		[4, 14, 13, 6, 20],
		[2, 9, 11, 17, 18]
	],
# Round 4:
	[
		[13, 9, 0, 16, 19],
		[1, 5, 17, 20],
		[2, 6, 10, 21],
		[3, 7, 11, 14],
		[4, 18, 12, 15, 8]
	],
# Round 5:
	[
		[0, 8, 11, 20],
		[2, 5, 13, 15],
		[4, 17, 7, 10, 19],
		[1, 9, 12, 14, 21],
		[3, 6, 16, 18]
	]
]