# 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.  

m39 = [
# Round 1:
	[
		[0, 9, 18, 27, 36],
		[1, 10, 19, 28, 37],
		[2, 11, 20, 29, 38],
		[3, 12, 21, 30],
		[4, 13, 22, 31],
		[5, 14, 23, 32],
		[6, 15, 24, 33],
		[7, 16, 25, 34],
		[8, 17, 26, 35]
	],
# Round 2:
	[
		[0, 10, 20, 30],
		[1, 11, 18, 31],
		[2, 9, 19, 32],
		[3, 13, 23, 33],
		[4, 14, 21, 34],
		[5, 12, 22, 35],
		[37, 27, 16, 26, 6],
		[38, 28, 17, 24, 7],
		[36, 29, 15, 25, 8]
	],
# Round 3:
	[
		[0, 11, 19, 33],
		[1, 9, 20, 34],
		[2, 10, 18, 35],
		[38, 14, 3, 22, 27],
		[36, 12, 4, 23, 28],
		[37, 13, 5, 21, 29],
		[6, 17, 25, 30],
		[7, 15, 26, 31],
		[8, 16, 24, 32]
	],
# Round 4:
	[
		[0, 12, 24, 31],
		[1, 13, 25, 32],
		[2, 14, 26, 30],
		[34, 3, 15, 18, 37],
		[35, 4, 16, 19, 38],
		[33, 5, 17, 20, 36],
		[6, 9, 21, 28],
		[7, 10, 22, 29],
		[8, 11, 23, 27]
	],
# Round 5:
	[
		[38, 26, 0, 13, 34],
		[36, 24, 1, 14, 35],
		[37, 25, 2, 12, 33],
		[3, 16, 20, 28],
		[4, 17, 18, 29],
		[5, 15, 19, 27],
		[6, 10, 23, 31],
		[7, 11, 21, 32],
		[8, 9, 22, 30]
	],
# Round 6:
	[
		[0, 14, 25, 28],
		[1, 12, 26, 29],
		[2, 13, 24, 27],
		[3, 17, 19, 31],
		[4, 15, 20, 32],
		[5, 16, 18, 30],
		[36, 6, 11, 22, 34],
		[37, 7, 9, 23, 35],
		[38, 8, 10, 21, 33]
	]
]