# 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. m30 = [ # Round 1: [ [28, 7, 0, 14, 21], [29, 8, 1, 15, 22], [2, 9, 16, 23], [3, 10, 17, 24], [4, 11, 18, 25], [5, 12, 19, 26], [6, 13, 20, 27] ], # Round 2: [ [0, 8, 16, 24], [1, 9, 17, 25], [2, 10, 18, 26], [28, 27, 11, 19, 3], [29, 21, 12, 20, 4], [5, 13, 14, 22], [6, 7, 15, 23] ], # Round 3: [ [29, 0, 9, 18, 27], [1, 10, 19, 21], [2, 11, 20, 22], [3, 12, 14, 23], [4, 13, 15, 24], [5, 7, 16, 25], [28, 26, 8, 17, 6] ], # Round 4: [ [0, 10, 20, 23], [1, 11, 14, 24], [28, 15, 12, 2, 25], [29, 3, 13, 16, 26], [4, 7, 17, 27], [5, 8, 18, 21], [6, 9, 19, 22] ], # Round 5: [ [0, 11, 15, 26], [1, 12, 16, 27], [2, 13, 17, 21], [3, 7, 18, 22], [4, 8, 19, 23], [24, 9, 5, 20, 28], [25, 6, 10, 14, 29] ], # Round 6: [ [0, 12, 17, 22], [28, 1, 13, 18, 23], [29, 2, 7, 19, 24], [3, 8, 20, 25], [4, 9, 14, 26], [5, 10, 15, 27], [6, 11, 16, 21] ] ]