# 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 is in a triple more than twice.
#
# Only 5 rounds are possible. 

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



