# 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 once.
#
# Only 5 rounds are possible.

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