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

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