aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2021-02-08 16:53:02 -0600
committerAnthony Wang2021-02-08 16:53:02 -0600
commit7ca81e8f8022abd247b267fb17a60ef59b348c8f (patch)
tree5d598699c2e52d26b524d5ff9150a3c76d782b12
parentfaecf57006dea5ae609d9a1ee574c4fff47533c9 (diff)
Add 3 stuff
-rw-r--r--.vscode/launch.json7
-rw-r--r--.vscode/settings.json6
-rwxr-xr-xai/3.py50
-rw-r--r--ai/re1
4 files changed, 57 insertions, 7 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 1eac2a2..46eb2cf 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,6 +5,13 @@
"version": "0.2.0",
"configurations": [
{
+ "name": "Python: Current File",
+ "type": "python",
+ "request": "launch",
+ "program": "${file}",
+ "console": "integratedTerminal"
+ },
+ {
"name": "Debug",
"type": "gdb",
"request": "launch",
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..e86917c
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,6 @@
+{
+ "python.pythonPath": "/usr/bin/python",
+ "python.linting.pylintEnabled": true,
+ "python.linting.enabled": true,
+ "python.linting.pylintPath": "./venv/bin/pylint"
+} \ No newline at end of file
diff --git a/ai/3.py b/ai/3.py
index 7815423..23c680c 100755
--- a/ai/3.py
+++ b/ai/3.py
@@ -49,7 +49,7 @@
# Example bot that moves in a random direction every round:
-import random
+import math
class spaceship_bot:
@@ -60,7 +60,43 @@ class spaceship_bot:
def move(self, ship, others):
# You should write your code that moves every turn here
- return random.choice(self.moves)
+ x,y = ship[0], ship[1]
+ status = ship[2]
+ score = ship[3]
+
+ # add possibly occupied positions to a dict
+ oc = dict()
+
+ # sun
+ for i in range(-2, 3):
+ for j in range(-2, 3):
+ oc[(i, j)] = 1e9
+
+ # others
+ for other in others:
+ if other[2] == 0: continue
+ a,b = other[0],other[1]
+ for move in self.moves:
+ key = (a+move[0], b+move[1])
+ if key not in oc: oc[key] = 1
+ else: oc[key] += 1
+
+ # now check all moves
+ score = []
+ for move in self.moves:
+ a,b = x+move[0],y+move[1]
+ angle = math.atan2(y, x)-math.atan2(b, a)
+ v = oc.get((a, b))
+ if v == None: v = 0
+ if status == 1:
+ score.append(angle-v/2) # adjust this constant
+ else:
+ score.append(-angle-v/2) # same
+
+ idx = score.index(min(score))
+ return (self.moves[idx][0], self.moves[idx][1])
+
+
#=============================================================================
@@ -82,11 +118,11 @@ SIDE = 10
# Set a list of (arbitrarily many) strategies you would like to test locally
LOCAL_STRATS = [
- spaceship_bot(),
- spaceship_bot(),
- spaceship_bot(),
- spaceship_bot(),
- spaceship_bot(),
+ #spaceship_bot(),
+ #spaceship_bot(),
+ #spaceship_bot(),
+ #spaceship_bot(),
+ #spaceship_bot(),
spaceship_bot()
]
diff --git a/ai/re b/ai/re
new file mode 100644
index 0000000..fc0e34d
--- /dev/null
+++ b/ai/re
@@ -0,0 +1 @@
+{"seat": 31, "gamedata": [{"round": 1, "state": [[1, 33, -1, 0], [7, 33, 1, 0], [13, 31, -1, 0], [19, 27, 1, 0], [23, 23, -1, 0], [27, 19, 1, 0], [31, 13, -1, 0], [33, 7, 1, 0], [33, 1, -1, 0], [33, -5, 1, 0], [32, -10, -1, 0], [30, -16, 1, 0], [25, -21, -1, 0], [21, -25, 1, 0], [17, -29, -1, 0], [12, -32, 1, 0], [5, -33, -1, 0], [-1, -33, 1, 0], [-7, -33, -1, 0], [-13, -31, 1, 0], [-18, -28, -1, 0], [-23, -25, 1, 0], [-27, -19, -1, 0], [-31, -13, 1, 0], [-33, -7, -1, 0], [-33, -1, 1, 0], [-32, 4, -1, 0], [-32, 10, 1, 0], [-29, 17, -1, 0], [-27, 21, 1, 0], [-21, 25, -1, 0], [-16, 30, 1, 0], [-10, 32, -1, 0], [-5, 33, 1, 0]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [1, 2], "using": [1, 2]}, {"seat": 20, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-33, -1, 1, 0], "error": "invalid coords", "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 2, "state": [[-1, 32, -1, -0.00979337554770685], [9, 34, 1, -0.00791763201708973], [12, 29, -1, -0.0007542831824570049], [17, 28, 1, 0.010751281562606133], [22, 21, -1, 0.003700610705193437], [25, 20, 1, 0.009793375547706816], [30, 11, -1, 0.007262980318165274], [32, 9, 1, 0.010368070513367751], [32, 3, -1, -0.010055890149796671], [31, -4, 1, 0.0035090800674215366], [31, -12, -1, 0.010575653279352648], [28, -15, 1, -0.0002947310391839344], [23, -20, -1, 0.002718965638001457], [22, -23, 1, 0.010268640855704426], [19, -30, -1, -0.00546754857798247], [14, -33, 1, 0.006757421062492136], [4, -31, -1, 0.0035090800674215453], [0, -31, 1, 0.004821401635912198], [-6, -31, -1, -0.002839082780013944], [-14, -29, 1, -0.00838430911541967], [-17, -26, -1, 0.0012313482980143386], [-21, -24, 1, 0.003967030010837651], [-28, -17, -1, 0.010751281562606116], [-29, -14, 1, 0.00838430911541967], [-35, -6, -1, 0.00624598303556046], [-35, -2, 1, 0.004263287039597754], [-30, 5, -1, 0.006492516275343986], [-30, 9, 1, 0.00181883445074363], [-27, 16, -1, 0.0007542831824570049], [-25, 20, 1, -0.0021800683416441386], [-19, 26, -1, 0.010755760644670457], [-15, 28, 1, 0.0002947310391839256], [-9, 30, -1, 0.0018188344507435947], [-4, 35, 1, -0.005821795645853129]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-1, 2], "using": [-1, 2]}, {"seat": 20, "got": "", "error": "process exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process exited", "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 3, "state": [[-2, 34, -1, -0.014172681256550548], [11, 33, 1, -0.017941156607551807], [11, 27, -1, -0.0016239736686254808], [15, 29, 1, 0.02162310354679378], [20, 20, -1, 0.0], [23, 21, 1, 0.02017567983495711], [29, 9, -1, 0.015304213732910165], [33, 7, 1, 0.0], [34, 4, -1, -0.013817033941190401], [29, -3, 1, 0.007526408528871146], [30, -14, -1, 0.02128574678288528], [26, -14, 1, -0.0006340800837595091], [21, -19, -1, 0.005853709727773777], [23, -21, 1, 0.021034174807250304], [20, -28, -1, -0.014329310501683429], [16, -32, 1, 0.01669168321526258], [3, -29, -1, 0.007526408528871133], [1, -29, 1, 0.01030732944391768], [-7, -29, -1, 0.00442861650266148], [-15, -27, 1, -0.017510077100804163], [-16, -24, -1, 0.0026523368163116085], [-19, -23, 1, 0.008484411112824188], [-29, -19, -1, 0.005284672191489657], [-27, -15, 1, 0.017510077100804163], [-37, -5, -1, 0.011889113117185544], [-37, -3, 1, 0.008054885661039615], [-28, 6, -1, 0.013804835355861939], [-28, 8, 1, 0.00391285759816236], [-25, 17, -1, 0.01065715589185847], [-23, 19, 1, -0.004679678660823076], [-17, 27, -1, 0.021762570381045707], [-14, 26, 1, 0.0006340800837594562], [-8, 32, -1, 0.009216058800930111], [-3, 37, 1, -0.011056068770170777]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-1, -2], "using": [-1, -2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": [-2, 1], "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 17, "got": [1, 2], "using": [1, 2]}, {"seat": 18, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 20, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 25, "got": [-2, 1], "using": [-2, 1]}, {"seat": 26, "got": [-35, -2, 1, 0.004263287039597754], "error": "invalid coords", "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, 1], "using": [2, 1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 4, "state": [[-3, 36, -1, -0.018053739665707138], [10, 31, 1, -0.01639601153232773], [10, 25, -1, -0.0026376857123217076], [13, 30, 1, 0.03251527846713953], [19, 18, -1, 0.004300438052716573], [22, 23, 1, 0.030941213786502983], [28, 7, -1, 0.024207591319058766], [35, 6, 1, -0.00624598303556042], [32, 3, -1, -0.010055890149796671], [27, -2, 1, 0.012164592736403534], [29, -16, -1, 0.03203488091847052], [24, -13, 1, -0.0010290046903066482], [19, -18, -1, 0.009504397303145385], [21, -20, 1, 0.01768589376501855], [21, -26, -1, -0.023745604392844316], [18, -33, 1, 0.02237337346217152], [4, -27, -1, 0.0005241087852317552], [2, -27, 1, 0.016589164966631195], [-5, -28, -1, -0.005142946635570926], [-16, -25, 1, -0.027411852023347776], [-15, -22, -1, 0.004310140847503838], [-17, -22, 1, 0.013666154174783427], [-30, -17, -1, 0.01554280777043765], [-25, -16, 1, 0.027411852023347703], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-26, 5, -1, 0.010445863071547063], [-26, 9, 1, -0.004831853789511934], [-23, 16, -1, 0.01234823095996793], [-21, 18, 1, -0.007573086094184063], [-15, 28, -1, 0.03292130322758478], [-13, 24, 1, 0.0010290046903066307], [-7, 34, -1, 0.015889973992558017], [-2, 39, 1, -0.015777707604841505]], "moves": [{"seat": 1, "got": [-2, -1], "using": [-2, -1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 17, "got": [-1, 2], "using": [-1, 2]}, {"seat": 18, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 20, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 5, "state": [[-5, 35, -1, -0.027405019286345485], [9, 33, 1, -0.009108295163484485], [9, 23, -1, -0.0038343168706790097], [11, 31, 1, 0.04332649477440901], [17, 17, -1, 0.0], [20, 24, 1, 0.041833988474497694], [27, 5, -1, 0.03405416480682232], [34, 8, 1, 0.0035121874193995836], [34, 2, -1, -0.004529877984726147], [25, -1, 1, 0.017569550393126618], [28, -18, -1, 0.04272556009957299], [22, -12, 1, -0.0014943686947562849], [17, -17, -1, 0.013804835355861958], [19, -19, 1, 0.013804835355861958], [22, -28, -1, -0.021605834933335323], [20, -34, 1, 0.027526388055212257], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, -27, -1, -0.015655390828592908], [-17, -23, 1, -0.03810627235351176], [-14, -20, -1, 0.006268872017919666], [-15, -21, 1, 0.01965660604899118], [-31, -15, -1, 0.025870003007573257], [-23, -17, 1, 0.03810627235351176], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-24, 6, -1, 0.019197853108401934], [-24, 8, 1, -0.0030025671851686034], [-21, 17, -1, 0.02392185564204758], [-19, 17, 1, -0.01095885063621549], [-14, 26, -1, 0.03258195418300925], [-12, 22, 1, 0.001494368694756232], [-6, 36, -1, 0.02192139563398806], [-1, 41, 1, -0.020051297657965927]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 20, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 6, "state": [[-6, 33, -1, -0.03344597516026229], [7, 32, 1, -0.00100820787256343], [8, 21, -1, -0.005268106397803561], [9, 32, 1, 0.05395987563305524], [16, 15, -1, 0.005132250738873868], [18, 25, 1, 0.05308866580179894], [26, 3, -1, 0.04491397691002673], [36, 7, 1, -0.002701643312371808], [35, 0, -1, 0.0048214016359121896], [23, 0, 1, 0.023932356067122535], [27, -20, -1, 0.05326341869645512], [20, -11, 1, -0.0020508522420002824], [15, -16, -1, 0.018937086094735843], [17, -18, 1, 0.009258788018037735], [23, -30, -1, -0.01971403763886952], [22, -35, 1, 0.032211805338052436], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, -26, -1, -0.027148706340104307], [-18, -21, 1, -0.04958421750615788], [-13, -18, -1, 0.008617851894918602], [-13, -20, 1, 0.026639412260595997], [-33, -16, -1, 0.02574398961894755], [-21, -18, 1, 0.0495842175061578], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-22, 5, -1, 0.015775693656624908], [-22, 9, 1, -0.013597219502641802], [-19, 16, -1, 0.027004948707899677], [-17, 16, 1, -0.014970310444370579], [-13, 24, -1, 0.03218702957646208], [-11, 20, 1, 0.0020508522420002733], [-7, 34, -1, 0.015889973992558017], [0, 43, 1, -0.023932356067122552]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 20, "got": "", "error": "process already exited", "using": [-1, 2]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 24, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 7, "state": [[-4, 34, -1, -0.023459837213014798], [5, 33, 1, 0.009334678500109028], [7, 19, -1, -0.007016991421165405], [7, 33, 1, 0.06432794614642298], [14, 14, -1, 0.0], [16, 26, 1, 0.06460640193565406], [27, 1, -1, 0.05730522207257272], [35, 5, 1, -0.010683416916798263], [34, -2, -1, 0.014172681256550527], [21, 1, 1, 0.03150544216130661], [26, -22, -1, 0.06356203798059028], [18, -10, 1, -0.0027281032311783017], [13, -15, -1, 0.02515377085579218], [18, -16, 1, 0.02315611497650029], [24, -28, -1, -0.02839491287121144], [24, -36, 1, 0.03648339529554534], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, -25, -1, -0.03962984024122744], [-19, -19, 0, -0.06180284349225656], [-12, -16, -1, 0.011485198260378932], [-11, -19, 1, 0.03484853652152429], [-31, -17, -1, 0.01776221601452113], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-20, 6, -1, 0.02659507745858838], [-20, 8, 1, -0.012353846805806954], [-17, 15, -1, 0.030679276704539717], [-15, 15, 1, -0.01979171208028281], [-12, 22, -1, 0.031721665572012475], [-10, 18, 1, 0.0027281032311782575], [-8, 32, -1, 0.009216058800930111], [1, 45, 1, -0.027468550567280085]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [1, -2], "using": [1, -2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 8, "state": [[-5, 32, -1, -0.02948989927624622], [6, 31, 1, 0.0028390827800139446], [6, 17, -1, -0.009197059762809543], [5, 34, 1, 0.07435640814689737], [13, 12, -1, 0.0063628056739959095], [14, 27, 1, 0.07627286529240543], [26, -1, -1, 0.06931548473487066], [36, 7, 1, -0.0027016433123718073], [35, 0, -1, 0.00482140163591219], [19, 2, 1, 0.04062403928238511], [25, -24, -1, 0.07354676676619795], [16, -9, 1, -0.0035701850192731057], [11, -14, -1, 0.032812539279836794], [16, -15, 1, 0.018937086094735826], [25, -30, -1, -0.02618456966915791], [26, -35, 1, 0.044586193313955656], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, -24, -1, -0.026639412260595928], [-19, -19, 0, -0.06180284349225656], [-11, -14, -1, 0.015061111986837373], [-9, -18, 1, 0.044580568868147805], [-29, -16, -1, 0.0173544758055693], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-18, 5, -1, 0.023330818466256856], [-19, 6, 1, -0.0004765103818376668], [-15, 16, -1, 0.04574578959618405], [-13, 14, 1, -0.02568364651545352], [-11, 20, -1, 0.031165182024768433], [-9, 16, 1, 0.0035701850192730793], [-6, 31, -1, 0.017777672202397184], [2, 47, 1, -0.030700823419372917]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 9, "state": [[-3, 31, -1, -0.020175679834957133], [5, 33, 1, 0.009334678500109028], [5, 15, -1, -0.011988965332960056], [3, 35, 1, 0.08398639056424409], [11, 11, -1, 0.0], [12, 28, 1, 0.08796449008176715], [24, 0, -1, 0.06319715650774342], [37, 5, 1, -0.011889113117185516], [36, -2, -1, 0.013654263079979507], [17, 3, 1, 0.051732299960015146], [24, -26, -1, 0.08315718168438115], [14, -8, 1, -0.004645539891914626], [9, -13, -1, 0.04242940888021206], [14, -14, 1, 0.013804835355861958], [26, -28, -1, -0.034721604422139445], [28, -34, 1, 0.05254559619100101], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, -23, -1, -0.012624234647307902], [-19, -19, 0, -0.06180284349225656], [-10, -12, -1, 0.019639846722660014], [-7, -17, 1, 0.056205335882365606], [-31, -17, -1, 0.01776221601452113], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-16, 6, -1, 0.037308413529671326], [-17, 5, 1, 0.0026791230617404043], [-13, 15, -1, 0.051962474357240364], [-11, 13, 1, -0.03302405011007775], [-10, 18, -1, 0.03048793103559045], [-8, 14, 1, 0.0046455398919146166], [-5, 33, -1, 0.024273267922492233], [3, 49, 1, -0.033664388413746034]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 10, "state": [[-2, 29, -1, -0.01578025227212764], [7, 34, 1, 0.000951384570174775], [4, 13, -1, -0.015689576038153494], [1, 36, 1, 0.09317514662700292], [10, 9, -1, 0.008368854178287057], [10, 29, 1, 0.09955611362643246], [23, -2, -1, 0.07700199186360537], [35, 6, 1, -0.006245983035560419], [38, -3, -1, 0.017360258463693472], [15, 4, 1, 0.06540851489528242], [23, -28, -1, 0.09234809638960904], [12, -7, 1, -0.006066528410211967], [7, -12, -1, 0.054759176568280686], [12, -13, 1, 0.007442029681866031], [27, -26, -1, -0.043616106042478724], [30, -35, 1, 0.05568124840394722], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, -22, -1, 0.002300371169676102], [-19, -19, 0, -0.06180284349225656], [-9, -10, -1, 0.0256999617325252], [-5, -16, 1, 0.07016675370374967], [-32, -19, -1, 0.012317973628058976], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-14, 7, -1, 0.054000096744933904], [-15, 6, 1, -0.012353846805806954], [-11, 14, -1, 0.059621242781285014], [-9, 12, 1, -0.0423753297307161], [-9, 16, -1, 0.02964584924749563], [-7, 12, 1, 0.006066528410211956], [-3, 32, -1, 0.03332833220390592], [4, 51, 1, -0.03638959498252429]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [-1, -2], "using": [-1, -2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 16, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 11, "state": [[-1, 31, -1, -0.009953652374786074], [6, 32, 1, 0.003767992133467291], [3, 11, -1, -0.02082182677702738], [-1, 37, 1, 0.10189541876637111], [8, 8, -1, 0.0], [8, 30, 1, 0.11092886045818558], [21, -1, -1, 0.07077024260192749], [33, 5, 1, -0.009334678500109005], [37, -1, -1, 0.009121839688628766], [13, 5, 1, 0.08236988669329426], [22, -30, -1, 0.1010892711841497], [10, -6, 1, -0.008031304433946018], [5, -11, -1, 0.07090496096581603], [13, -11, 1, 0.0270371733856569], [28, -24, -1, -0.05283216484340885], [32, -36, 1, 0.05854859476940758], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, -21, -1, 0.017941156607551845], [-19, -19, 0, -0.06180284349225656], [-10, -8, -1, 0.051680459649450894], [-3, -15, 1, 0.08695589859886384], [-33, -21, -1, 0.007397224350186521], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-12, 8, -1, 0.07379180882521665], [-14, 4, 1, 0.003912857598162359], [-9, 15, -1, 0.07960310404599484], [-7, 11, 1, -0.05459395571681478], [-8, 14, -1, 0.028570494374854094], [-6, 10, 1, 0.008031304433945972], [-1, 33, -1, 0.04338422235370259], [5, 53, 1, -0.038902666511493135]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, 2], "using": [1, 2]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 12, "state": [[-2, 33, -1, -0.014455371799570925], [4, 33, 1, 0.014069181458829646], [2, 9, -1, -0.028394912871211445], [-3, 38, 1, 0.11013383754143583], [7, 6, -1, 0.012218625986098696], [6, 31, 1, 0.12197706749912784], [19, 0, -1, 0.06319715650774342], [34, 3, 1, -0.019260226041756784], [35, -2, -1, 0.013906090311422092], [11, 6, 1, 0.10340585513924816], [21, -32, -1, 0.109364131608066], [8, -5, 1, -0.010924711867307056], [3, -10, -1, 0.09241804581699081], [11, -10, 1, 0.021377921450046022], [29, -26, -1, -0.04928612347429823], [34, -35, 1, 0.06559344248377368], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, -20, -1, 0.034032257982641145], [-19, -19, 0, -0.06180284349225656], [-11, -6, -1, 0.07959531683868663], [-1, -14, 1, 0.10702344219343421], [-31, -20, -1, 0.006404586848619798], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-10, 9, -1, 0.09683943374143017], [-12, 3, 1, 0.009216058800930075], [-7, 14, -1, 0.09182173003209351], [-5, 10, 1, -0.07099990325506617], [-7, 16, -1, 0.04555800428120246], [-5, 8, 1, 0.010924711867307028], [1, 34, -1, 0.052885302650437796], [6, 55, 1, -0.041226325690527456]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [1, -2], "using": [1, -2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 27, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 13, "state": [[-3, 35, -1, -0.01842999178532267], [5, 31, 1, 0.007816070551337925], [1, 7, -1, -0.04061353885731016], [-5, 39, 1, 0.11788875719507351], [6, 4, -1, 0.0314164790945006], [4, 32, 1, 0.13261330720606268], [18, -2, -1, 0.08080880024638207], [36, 4, 1, -0.015655390828592904], [36, 0, -1, 0.004821401635912189], [9, 7, 1, 0.12914064398683978], [20, -34, -1, 0.1171678623452189], [6, -4, 1, -0.01560439052813008], [1, -9, -1, 0.12119319161722333], [9, -9, 1, 0.01380483535586196], [30, -28, -1, -0.046099466665315635], [36, -34, 1, 0.07244592172787014], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, -19, -1, 0.050256806604608614], [-19, -19, 0, -0.06180284349225656], [-10, -4, -1, 0.09850934511539051], [1, -13, 1, 0.13059100367946314], [-32, -22, -1, 0.001737972414575642], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-8, 10, -1, 0.12281993165835586], [-10, 2, 1, 0.016789144895114207], [-5, 13, -1, 0.10717600823113842], [-3, 9, 1, -0.09358352090549943], [-5, 15, -1, 0.05998697346935467], [-4, 6, 1, 0.015604390528130034], [2, 36, -1, 0.05703848543368211], [7, 57, 1, -0.04338032150460962]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 14, "state": [[-5, 36, -1, -0.026785742477463476], [7, 30, 1, -0.003216360728313777], [3, 6, -1, 0.010594652317473231], [-7, 40, 1, 0.12516788489879815], [7, 2, -1, 0.08070723360854763], [2, 33, 1, 0.14277104912268673], [16, -1, -1, 0.07313141866051386], [34, 3, 1, -0.019260226041756784], [38, -1, -1, 0.009008723188064878], [7, 8, 1, 0.15952700838459574], [19, -36, -1, 0.12450521938745951], [4, -3, 1, -0.024437251972197406], [-1, -8, -1, 0.15859654743614476], [7, -8, 1, 0.0032101830383887437], [31, -30, -1, -0.04322240259546453], [37, -32, 1, 0.07941271811533562], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, -18, -1, 0.06628200141687483], [-19, -19, 0, -0.06180284349225656], [-11, -2, -1, 0.13044424238646216], [3, -12, 1, 0.1573619428820491], [-33, -20, -1, 0.010877195257136827], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-6, 9, -1, 0.13662476701421788], [-8, 1, 1, 0.02841391190933201], [-3, 12, -1, 0.1266239736686255], [-1, 8, 1, -0.12500000000000006], [-3, 14, -1, 0.07759861720799331], [-3, 4, 1, 0.024437251972197357], [1, 38, -1, 0.05239294554176746], [8, 59, 1, -0.045381872178597495]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 15, "state": [[-7, 37, -1, -0.03458007669922064], [6, 32, 1, 0.0037679921334672906], [2, 4, -1, 0.010594652317473231], [-9, 41, 1, 0.1319859721825634], [6, 0, -1, 0.125], [0, 34, 1, 0.15240501928634548], [14, 0, -1, 0.06319715650774343], [32, 4, 1, -0.013475322486948771], [36, -2, -1, 0.013654263079979505], [5, 9, 1, 0.19322512245857493], [18, -38, -1, 0.13138833172719996], [6, -4, 1, -0.015604390528130082], [-3, -7, -1, 0.2032453645604403], [8, -6, 1, 0.03638845300629523], [32, -32, -1, -0.04061353885731015], [36, -30, 1, 0.08232884357819817], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, -17, -1, 0.08179870327999808], [-19, -19, 0, -0.06180284349225656], [-12, 0, -1, 0.15906881591081223], [4, -10, 1, 0.17893184848878618], [-31, -19, -1, 0.010083128715865185], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-4, 8, -1, 0.15641647909450063], [-6, 0, 1, 0.048205623989614754], [-1, 11, -1, 0.15118456966915791], [1, 7, 1, -0.1673753297307161], [-1, 13, -1, 0.09897653865803935], [-4, 2, 1, 0.098229060797414], [2, 36, -1, 0.05703848543368211], [9, 61, 1, -0.04724603714321282]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-1, -2], "using": [-1, -2]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 16, "state": [[-5, 36, -1, -0.026785742477463476], [5, 30, 1, 0.006982806211604853], [3, 2, -1, 0.09321932258675719], [-11, 42, 1, 0.13836273942879346], [7, -2, -1, 0.16929276639145238], [-2, 35, 1, 0.16148970796185538], [13, -2, -1, 0.0874920516815079], [30, 3, 1, -0.017404275851954757], [35, 0, -1, 0.004821401635912189], [3, 10, 1, 0.22754556652825136], [17, -40, -1, 0.13783467598669621], [4, -3, 1, -0.024437251972197406], [-5, -6, -1, 0.2493758661677098], [6, -5, 1, 0.0282338045440142], [34, -33, -1, -0.042988809402495484], [37, -28, 1, 0.08979748360318406], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, -16, -1, 0.09655436706868069], [-19, -19, 0, -0.06180284349225656], [-11, 2, -1, 0.18769338943516228], [5, -8, 1, 0.20727621993804085], [-30, -21, -1, 0.00039492460654718016], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [-2, 7, -1, 0.18591552152826488], [-5, -2, 1, 0.10876509478503646], [1, 10, -1, 0.18147629757258693], [3, 6, 1, -0.21858352090549948], [1, 12, -1, 0.124427502673933], [-3, 0, 1, 0.17202086962263063], [1, 34, -1, 0.052885302650437796], [10, 63, 1, -0.04898602948762721]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 17, "state": [[-3, 37, -1, -0.017697688932863963], [7, 31, 1, -0.002078397892275017], [4, 0, -1, 0.1868028434922566], [-13, 43, 1, 0.14432111929710129], [6, -4, -1, 0.21858352090549943], [-3, 33, 1, 0.1668339884744977], [11, -1, -1, 0.07762612569589568], [29, 1, 1, -0.02778110675922605], [36, 2, -1, -0.004011459808155128], [1, 11, 1, 0.2595033868789703], [16, -42, -1, 0.14386532590044535], [5, -5, 1, -0.047020869622630676], [-7, -5, -1, 0.29008906371148874], [4, -4, 1, 0.013804835355861956], [36, -34, -1, -0.045159586195134355], [36, -26, 1, 0.09335083840593957], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -15, -1, 0.11037140100987103], [-19, -19, 0, -0.06180284349225656], [-10, 4, -1, 0.2196282867062339], [6, -6, 1, 0.24337237769336448], [-32, -22, -1, 0.0017379724145756435], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [0, 6, -1, 0.23020828791971726], [-3, -3, 1, 0.17320562398961475], [3, 9, -1, 0.21682173003209354], [5, 5, 1, -0.26979171208028285], [3, 11, -1, 0.1535704943748541], [-4, -2, 1, 0.24581267844784727], [2, 36, -1, 0.05703848543368211], [11, 65, 1, -0.050613478719936274]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 18, "state": [[-1, 36, -1, -0.009241235722563837], [6, 33, 1, 0.00464246104288148], [6, -1, -1, 0.2130870718478833], [-15, 44, 1, 0.1498858418754325], [7, -6, -1, 0.23778137401390131], [-4, 31, 1, 0.17282829528604648], [9, 0, -1, 0.06319715650774343], [27, 0, 1, -0.03326703456723154], [38, 1, -1, 0.0006340800837595006], [-1, 12, 1, 0.28716469409691747], [15, -44, -1, 0.14950351484860722], [3, -4, 1, -0.06960448727306395], [-9, -4, -1, 0.3222423659820337], [2, -3, 1, -0.017611643738638643], [37, -36, -1, -0.042793607198954274], [35, -24, 1, 0.09723601519892477], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-21, -14, -1, 0.12314944452726907], [-19, -19, 0, -0.06180284349225656], [-11, 6, -1, 0.2385423149829378], [7, -4, 1, 0.2857477074240805], [-33, -20, -1, 0.010877195257136828], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [2, 5, -1, 0.29076775871513894], [-1, -4, 1, 0.25921605880093007], [5, 8, -1, 0.2545173811019866], [7, 4, 1, -0.3121670418109989], [5, 10, -1, 0.18498697346935472], [-2, -3, 1, 0.32843734871713126], [0, 37, -1, 0.04820562398961479], [12, 67, 1, -0.052138652123234396]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 27, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 19, "state": [[0, 38, -1, -0.004821401635912186], [4, 34, 1, 0.014628598990128973], [7, -3, -1, 0.2512433726968349], [-17, 45, 1, 0.15508234386383032], [5, -7, -1, 0.2762842283556267], [-5, 29, 1, 0.17957837215247685], [10, -2, -1, 0.09461363560224403], [29, 1, 1, -0.02778110675922605], [37, 3, -1, -0.008054885661039596], [-3, 13, 1, 0.3100285138224462], [14, -46, -1, 0.1547735063877545], [4, -6, 1, -0.07843734871713127], [-11, -3, -1, 0.34642950562514596], [3, -1, 1, 0.08759664418107857], [38, -38, -1, -0.04061353885731015], [36, -22, 1, 0.10559552545993894], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-23, -13, -1, 0.13485549597930804], [-19, -19, 0, -0.06180284349225656], [-10, 8, -1, 0.2664571721721735], [8, -2, 1, 0.3293828125046798], [-35, -19, -1, 0.018440428996307375], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [4, 4, -1, 0.35520828791971726], [0, -6, 1, 0.29820562398961475], [7, 7, -1, 0.29061353885731017], [9, 3, 1, -0.3435835209054995], [7, 9, -1, 0.2164034525638553], [-1, -5, 1, 0.39060439052813], [-1, 35, -1, 0.043659576651790565], [13, 69, 1, -0.053570641635168885]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 20, "state": [[-2, 39, -1, -0.012976050098193234], [6, 33, 1, 0.00464246104288148], [8, -5, -1, 0.27570668573693297], [-19, 46, 1, 0.1599359622839166], [3, -6, -1, 0.30120819117478337], [-6, 27, 1, 0.18720726292287745], [8, -1, -1, 0.08298886858802622], [31, 0, 1, -0.03326703456723154], [35, 2, -1, -0.004263287039597715], [-5, 14, 1, 0.3285263117839373], [13, -48, -1, 0.15969974253729463], [3, -4, 1, -0.06960448727306395], [-13, -2, -1, 0.36450994018209754], [4, 1, 1, 0.1777944005445466], [39, -40, -1, -0.03859902691547888], [37, -20, 1, 0.1140303759973154], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-25, -12, -1, 0.14550794925414265], [-19, -19, 0, -0.06180284349225656], [-9, 10, -1, 0.2924376700890992], [9, 0, 1, 0.3683723776933645], [-33, -20, -1, 0.010877195257136828], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [5, 2, -1, 0.4196488171242956], [1, -8, 1, 0.31799733606989755], [9, 6, -1, 0.32203001795181074], [11, 2, 1, -0.36616713855593275], [9, 8, -1, 0.2455464442647764], [0, -3, 1, 0.42202086962263063], [-3, 36, -1, 0.03497328595981984], [14, 71, 1, -0.05491752200859003]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [2, -1], "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 21, "state": [[0, 40, -1, -0.004821401635912187], [4, 34, 1, 0.014628598990128973], [6, -4, -1, 0.280386364397756], [-21, 47, 1, 0.16447136475554017], [1, -7, -1, 0.35241638234956674], [-7, 25, 1, 0.19585570388970308], [6, -2, -1, 0.1144053476825268], [33, -1, 1, -0.038088436203143734], [34, 0, -1, 0.004821401635912189], [-7, 15, 1, 0.3434237268396227], [12, -50, -1, 0.1643062280081746], [5, -3, 1, -0.008031304433946021], [-15, -1, -1, 0.37821018303838877], [5, 3, 1, 0.22481527016717728], [40, -42, -1, -0.03673248044815354], [38, -18, 1, 0.12249383010686068], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-27, -11, -1, 0.15515978259365054], [-19, -19, 0, -0.06180284349225656], [-7, 11, -1, 0.3188710595473442], [10, 2, 1, 0.3997888567878651], [-32, -18, -1, 0.016045665317012122], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [4, 0, -1, 0.48020828791971726], [0, -6, 1, 0.29820562398961475], [8, 4, -1, 0.3418217300320935], [13, 1, 1, -0.3825730860941841], [11, 7, -1, 0.27099740828067004], [-2, -4, 1, 0.348229060797414], [-5, 37, -1, 0.026827702539568746], [15, 73, 1, -0.056186485022368365]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 22, "state": [[-2, 41, -1, -0.012578908207337973], [3, 36, 1, 0.020034696537436603], [5, -6, -1, 0.32623181268040885], [-23, 48, 1, 0.16871216835654834], [-1, -6, -1, 0.4012842283556267], [-8, 23, 1, 0.20568004158026415], [4, -1, -1, 0.1021867216964281], [34, -3, 1, -0.047273843092706304], [33, -2, -1, 0.014455371799570934], [-9, 16, 1, 0.355481671463765], [11, -52, -1, 0.1686161060424787], [3, -4, 1, -0.06960448727306395], [-17, 0, -1, 0.3888048353558619], [3, 4, 1, 0.28638845300629523], [38, -43, -1, -0.03080160945761324], [37, -16, 1, 0.12794092700889662], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-29, -10, -1, 0.16388405977285544], [-19, -19, 0, -0.06180284349225656], [-5, 10, -1, 0.33527700708559555], [8, 1, 1, 0.38816408977364725], [-31, -20, -1, 0.0064045868486198], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [5, 2, -1, 0.4196488171242956], [2, -7, 1, 0.3424983903810671], [9, 2, -1, 0.38081129522077817], [15, 0, 1, -0.3947917120802828], [10, 5, -1, 0.28740335581892146], [0, -3, 1, 0.42202086962263063], [-4, 39, -1, 0.03193891958564543], [16, 75, 1, -0.05738395368624749]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [1, -2], "using": [1, -2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 23, "state": [[-3, 39, -1, -0.0170400276220109], [2, 38, 1, 0.024898180388944487], [3, -7, -1, 0.3723623142876783], [-25, 49, 1, 0.1726807036576628], [-3, -7, -1, 0.43944052920457827], [-9, 21, 1, 0.21684554849092377], [5, -3, -1, 0.14920759131905878], [35, -5, 1, -0.055850652217664824], [31, -3, -1, 0.020175679834957112], [-11, 17, 1, 0.3653358086309779], [10, -54, -1, 0.1726513843094641], [5, -5, 1, -0.047020869622630676], [-19, 1, -1, 0.39717368953414894], [1, 3, 1, 0.3375966441810786], [36, -44, -1, -0.024750780142033357], [36, -14, 1, 0.13387069242578695], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-31, -9, -1, 0.17176294805213807], [-19, -19, 0, -0.06180284349225656], [-3, 11, -1, 0.3666934861800961], [9, 3, 1, 0.4195805688681478], [-33, -21, -1, 0.007397224350186523], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [4, 0, -1, 0.48020828791971726], [0, -6, 1, 0.29820562398961475], [8, 0, -1, 0.4156135388573101], [17, -1, 1, -0.40414299170092116], [11, 3, -1, 0.31881983491342203], [2, -4, 1, 0.49581267844784727], [-2, 38, -1, 0.03983676981132772], [17, 77, 1, -0.05851567969991866]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [2, -1], "using": [2, -1]}, {"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 8, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 24, "state": [[-2, 37, -1, -0.013416007355126401], [4, 37, 1, 0.016127659303260412], [2, -9, -1, 0.4020005998557246], [-27, 50, 1, 0.17639788708387277], [-5, -6, -1, 0.48557103081184777], [-10, 19, 1, 0.22951207651151223], [6, -5, -1, 0.1737681873195912], [37, -4, 1, -0.05040640983120268], [32, -1, -1, 0.009793375547706826], [-13, 18, 1, 0.373481392051229], [9, -56, -1, 0.1764327746707222], [6, -3, 1, 0.0041873215521526855], [-21, 2, -1, 0.4039168687753217], [-1, 4, 1, 0.42779440054454665], [34, -45, -1, -0.01859429807206127], [37, -12, 1, 0.14298559733405422], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-33, -8, -1, 0.17888020193306978], [-19, -19, 0, -0.06180284349225656], [-1, 10, -1, 0.39320605719553536], [7, 2, 1, 0.4126651440848168], [-31, -20, -1, 0.0064045868486198], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [5, -2, -1, 0.5407677587151389], [2, -7, 1, 0.3424983903810671], [9, -2, -1, 0.45041578249384207], [19, -2, 1, -0.4114833952955454], [10, 1, -1, 0.3453324059288613], [0, -3, 1, 0.42202086962263063], [-3, 36, -1, 0.03497328595981984], [18, 79, 1, -0.059586826862682095]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [1, -2], "using": [1, -2]}, {"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 8, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 27, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 25, "state": [[0, 36, -1, -0.004821401635912185], [5, 35, 1, 0.010683416916798291], [0, -10, -1, 0.43680284349225657], [-29, 51, 1, 0.1798831716891373], [-6, -4, -1, 0.5314164790945006], [-11, 17, 1, 0.2438084718502008], [5, -7, -1, 0.21448138486337018], [38, -6, 1, -0.058190997386388194], [34, 0, -1, 0.004821401635912189], [-15, 19, 1, 0.38029392049002003], [8, -58, -1, 0.1799796168382235], [5, -5, 1, -0.047020869622630676], [-23, 3, -1, 0.4094476352757856], [-3, 3, 1, 0.513804835355862], [32, -46, -1, -0.012348230959967905], [36, -10, 1, 0.14977734384350633], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-35, -7, -1, 0.18531648633826792], [-19, -19, 0, -0.06180284349225656], [1, 11, -1, 0.4234977850989644], [5, 1, 1, 0.399788856787865], [-33, -21, -1, 0.007397224350186523], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [6, -4, -1, 0.5737918088252166], [3, -5, 1, 0.38421605880093007], [10, -4, -1, 0.4761730096527318], [21, -3, 1, -0.4173753297307161], [8, 0, -1, 0.36119516464413803], [2, -4, 1, 0.49581267844784727], [-1, 35, -1, 0.04365957665179056], [19, 81, 1, -0.06060204266630471]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [-1, -2], "using": [-1, -2]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 8, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 27, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-1, -2], "using": [-1, -2]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 26, "state": [[-1, 34, -1, -0.009501080296735225], [4, 33, 1, 0.014069181458829648], [-2, -9, -1, 0.4716050871287885], [-31, 52, 1, 0.18315455286959018], [-7, -2, -1, 0.5807072336085476], [-12, 15, 1, 0.2597933755477069], [3, -8, -1, 0.2560970308977894], [36, -5, 1, -0.05523137540878282], [32, 1, -1, -0.0001505722758824487], [-17, 20, 1, 0.38605606877017085], [7, -60, -1, 0.18330986199370022], [3, -4, 1, -0.06960448727306395], [-25, 4, -1, 0.4140556045803684], [-4, 1, 1, 0.5998152701671773], [30, -47, -1, -0.006030215224514017], [37, -8, 1, 0.15900968348065486], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-37, -6, -1, 0.19114678059716664], [-19, -19, 0, -0.06180284349225656], [3, 10, -1, 0.45545560544968333], [6, 3, 1, 0.4421641865185811], [-32, -23, -1, -0.001590273176909015], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [5, -2, -1, 0.5407677587151389], [5, -4, 1, 0.44081726772825336], [9, -6, -1, 0.5091970597628095], [23, -4, 1, -0.42219673136662833], [7, -2, -1, 0.4054879310355904], [3, -2, 1, 0.5784373487171313], [-2, 37, -1, 0.03961101827040056], [20, 83, 1, -0.06156551992267949]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 8, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 16, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 27, "state": [[-2, 36, -1, -0.013654263079979507], [3, 35, 1, 0.019658444417821098], [-1, -7, -1, 0.45938646114268983], [-33, 53, 1, 0.18622861109046882], [-6, 0, -1, 0.625], [-13, 13, 1, 0.2774050192863455], [1, -7, -1, 0.2906135388573102], [38, -6, 0, -0.058190997386388194], [33, -1, -1, 0.009642803271824379], [-19, 21, 1, 0.3909812304390345], [6, -62, -1, 0.1864400978113403], [5, -5, 1, -0.047020869622630676], [-27, 5, -1, 0.417947827056783], [-3, -1, 1, 0.6900130265306453], [28, -48, -1, 0.00034080235510857565], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-39, -5, -1, 0.19643918895134949], [-19, -19, 0, -0.06180284349225656], [5, 11, -1, 0.4769686903008581], [4, 2, 1, 0.4421641865185811], [-30, -24, -1, -0.009793375547706772], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [3, -1, -1, 0.5314164790945006], [6, -2, 1, 0.49699743281483133], [7, -7, -1, 0.5406135388573101], [25, -5, 1, -0.4262081911747835], [5, -3, -1, 0.44720559945545335], [2, -4, 1, 0.4958126784478473], [0, 38, -1, 0.048205623989614775], [21, 85, 1, -0.062481049964922576]], "moves": [{"seat": 1, "got": [2, -1], "using": [2, -1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 27, "got": "", "error": "Expecting value: line 1 column 1 (char 0)", "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-2, -1], "using": [-2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 28, "state": [[0, 35, -1, -0.0048214016359121835], [1, 34, 1, 0.02858735590640854], [-3, -6, -1, 0.5105946523174731], [-35, 54, 1, 0.18912057825973907], [-5, 2, -1, 0.6855594707954217], [-14, 11, 1, 0.2964127232103203], [-1, -6, -1, 0.3394813848633702], [38, -6, 0, -0.058190997386388194], [32, 1, -1, -0.0001505722758824487], [-21, 22, 1, 0.3952317453619292], [5, -64, -1, 0.18938560083985945], [6, -3, 1, 0.0041873215521526855], [-29, 6, -1, 0.4212753052876374], [-2, -3, 1, 0.7952213144503626], [26, -49, -1, 0.006744880509661582], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-41, -4, -1, 0.2012546381995357], [-19, -19, 0, -0.06180284349225656], [7, 10, -1, 0.5062688720179196], [2, 3, 1, 0.524788856787865], [-28, -25, -1, -0.018405851797172815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 0, 1, 0.5482056239896147], [5, -8, -1, 0.5767096966126337], [27, -6, 1, -0.42959395571681486], [3, -4, -1, 0.5087787822945713], [0, -3, 1, 0.4220208696226307], [1, 36, -1, 0.05262545807626639], [22, 87, 1, -0.06335206870330025]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [1, -2], "using": [1, -2]}, {"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 31, "got": [-1, 2], "using": [-1, 2]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 29, "state": [[-1, 37, -1, -0.009121839688628756], [2, 32, 1, 0.023332772414461137], [-5, -5, -1, 0.5618028434922565], [-37, 55, 1, 0.19184441799715626], [-6, 4, -1, 0.7185835209054994], [-15, 9, 1, 0.3163945844750301], [-3, -7, -1, 0.37763768571232176], [38, -6, 0, -0.058190997386388194], [34, 2, -1, -0.004529877984726149], [-23, 23, 1, 0.39893235606712263], [4, -66, -1, 0.19216040584672647], [4, -4, 1, -0.047020869622630676], [-31, 7, -1, 0.42415026781536846], [-4, -2, 1, 0.7125966441810786], [24, -50, -1, 0.013161444964064056], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-43, -3, -1, 0.20564709571490797], [-19, -19, 0, -0.06180284349225656], [9, 11, -1, 0.5182060571955354], [0, 4, 1, 0.6183723776933644], [-30, -26, -1, -0.01605608378641524], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, 2, 1, 0.5994138151643981], [3, -9, -1, 0.6144053476825267], [29, -7, 1, -0.4324873631501759], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 0.4958126784478473], [3, 35, -1, 0.06181421413902522], [23, 89, 1, -0.06418169660569047]], "moves": [{"seat": 1, "got": [-1, 2], "using": [-1, 2]}, {"seat": 2, "got": [-2, 1], "using": [-2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 30, "state": [[-2, 39, -1, -0.01297605009819323], [0, 33, 1, 0.03326703456723155], [-4, -3, -1, 0.5843864611426898], [-39, 56, 1, 0.19441291284172024], [-4, 5, -1, 0.7676116437386385], [-16, 7, 1, 0.3367678589234099], [-2, -5, -1, 0.37375662730316517], [38, -6, 0, -0.058190997386388194], [36, 1, -1, 0.0004015675492605574], [-25, 24, 1, 0.40217996531130995], [3, -68, -1, 0.1947773845892198], [6, -3, 1, 0.0041873215521526855], [-33, 8, -1, 0.4266575988555606], [-2, -3, 1, 0.7952213144503626], [22, -51, -1, 0.019569679818496045], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-45, -2, -1, 0.20966406437773208], [-19, -19, 0, -0.06180284349225656], [10, 9, -1, 0.5424376700890993], [-2, 3, 1, 0.7119558985988638], [-31, -28, -1, -0.019319358658101683], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 4, 1, 0.655593980250976], [1, -8, -1, 0.6458218267770274], [31, -8, 1, -0.4349869734693548], [2, -2, 0, 0.5087787822945713], [4, -3, 1, 0.5696044872730639], [2, 33, -1, 0.05783959415327351], [24, 91, 1, -0.06497277349780751]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [1, 2], "using": [1, 2]}, {"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 31, "state": [[0, 40, -1, -0.0048214016359121835], [1, 35, 1, 0.028720987229407326], [-5, -1, -1, 0.655386364397756], [-41, 57, 1, 0.19683775355476474], [-2, 6, -1, 0.8237918088252165], [-17, 5, 1, 0.3568785183584711], [-4, -6, -1, 0.40678067741324286], [38, -6, 0, -0.058190997386388194], [38, 2, -1, -0.0035474525423748677], [-27, 25, 1, 0.4050506842942499], [2, -70, -1, 0.19724832867256098], [4, -4, 1, -0.047020869622630676], [-35, 9, -1, 0.42886253848783684], [-1, -5, 1, 0.8573883562613613], [20, -52, -1, 0.02594893051651815], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-47, -1, -1, 0.2133472008907371], [-19, -19, 0, -0.06180284349225656], [11, 7, -1, 0.5688710595473442], [-4, 2, 1, 0.7945805688681478], [-33, -29, -1, -0.01715116932398078], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 5, 1, 0.7121951891782994], [-1, -9, -1, 0.6832251825959488], [33, -9, 1, -0.4371670418109989], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 0.6208126784478473], [0, 34, -1, 0.048205623989614775], [25, 93, 1, -0.06572788893434063]], "moves": [{"seat": 1, "got": [1, -2], "using": [1, -2]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 32, "state": [[1, 38, -1, -0.0006340800837595128], [0, 37, 1, 0.03326703456723155], [-4, 1, -1, 0.7257924086809412], [-43, 58, 1, 0.19912962724724206], [0, 5, -1, 0.8749999999999999], [-18, 3, 1, 0.37612079093071876], [-5, -4, -1, 0.45580880024638215], [38, -6, 0, -0.058190997386388194], [37, 0, -1, 0.004821401635912188], [-29, 26, 1, 0.40760494068411074], [1, -72, -1, 0.19958403280833167], [6, -3, 1, 0.0041873215521526855], [-37, 10, -1, 0.43081596676783573], [0, -3, 1, 0.888804835355862], [18, -53, -1, 0.0322790990653503], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-49, 0, -1, 0.21673296543276854], [-19, -19, 0, -0.06180284349225656], [10, 5, -1, 0.5852770070855956], [-3, 0, 1, 0.8683723776933644], [-32, -27, -1, -0.013949462688899067], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 6, 1, 0.771921395633988], [-3, -10, -1, 0.7120003283961813], [35, -10, 1, -0.43908447847173526], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 0.7110104348113153], [-2, 35, -1, 0.039120935314104856], [26, 95, 1, -0.06644940877292775]], "moves": [{"seat": 1, "got": [1, 2], "using": [1, 2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 33, "state": [[2, 40, -1, 0.003129723992175997], [2, 38, 1, 0.02489818038894449], [-3, 3, -1, 0.8118028434922565], [-45, 59, 1, 0.2012983022086151], [2, 6, -1, 0.9262081911747833], [-19, 1, 1, 0.39403616510805844], [-6, -2, -1, 0.5119889653329601], [38, -6, 0, -0.058190997386388194], [38, -2, -1, 0.013190255814199244], [-31, 27, 1, 0.4098912067033381], [0, -74, -1, 0.2017943760103852], [4, -4, 1, -0.047020869622630676], [-39, 11, -1, 0.43255809553212027], [2, -4, 1, 0.9625966441810786], [16, -54, -1, 0.03854101286003703], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-47, 1, -1, 0.2201187299747999], [-19, -19, 0, -0.06180284349225656], [11, 3, -1, 0.6166934861800962], [-4, -2, 1, 0.942164186518581], [-33, -25, -1, -0.00559026011418374], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 5, 1, 0.8296221030841153], [-5, -9, -1, 0.7463207724658577], [37, -11, 1, -0.4407835770126069], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 0.7970208696226306], [-3, 33, -1, 0.03377665480146253], [27, 97, 1, -0.0671394984839959]], "moves": [{"seat": 1, "got": [-2, 1], "using": [-2, 1]}, {"seat": 2, "got": [-2, -1], "using": [-2, -1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 34, "state": [[0, 41, -1, -0.0048214016359121835], [0, 37, 1, 0.03326703456723155], [-1, 4, -1, 0.8978132783035718], [-47, 60, 1, 0.20335270814140677], [4, 5, -1, 0.9823883562613612], [-20, -1, 1, 0.4103561449144336], [-7, 0, -1, 0.5631971565077435], [38, -6, 0, -0.058190997386388194], [36, -3, -1, 0.018053739665707128], [-33, 28, 1, 0.4119487445101857], [-1, -76, -1, 0.203888399157804], [6, -3, 1, 0.0041873215521526855], [-41, 12, -1, 0.43412109209547456], [4, -3, 1, 1.0363884530062952], [14, -55, -1, 0.04471675076499313], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-45, 2, -1, 0.22380186648780492], [-19, -19, 0, -0.06180284349225656], [10, 1, -1, 0.6432060571955355], [-3, -4, 1, 1.0159559953437978], [-32, -27, -1, -0.013949462688899067], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 4, 1, 0.9006220063391814], [-6, -7, -1, 0.7783949128712114], [39, -12, 1, -0.44229929254987277], [2, -2, 0, 0.5087787822945713], [2, 5, 1, 0.861461398827209], [-2, 35, -1, 0.039120935314104856], [28, 99, 1, -0.06780014364728168]], "moves": [{"seat": 1, "got": [-1, -2], "using": [-1, -2]}, {"seat": 2, "got": [2, 1], "using": [2, 1]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 35, "state": [[-1, 39, -1, -0.008901403620317248], [2, 38, 1, 0.02489818038894449], [1, 5, -1, 0.968219322586757], [-49, 61, 1, 0.20530101109024956], [5, 3, -1, 1.0389895651886845], [-18, -2, 1, 0.4200166630249841], [-5, -1, -1, 0.531780677413243], [38, -6, 0, -0.058190997386388194], [35, -5, -1, 0.027405019286345464], [-35, 29, 1, 0.41380964785283153], [-2, -78, -1, 0.20587437799479025], [4, -4, 1, -0.047020869622630676], [-43, 13, -1, 0.4355309739393086], [3, -1, 1, 1.0875966441810785], [12, -56, -1, 0.050789913706545134], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-43, 3, -1, 0.22781883515062903], [-19, -19, 0, -0.06180284349225656], [11, -1, -1, 0.6734977850989645], [-1, -3, 1, 1.067164186518581], [-31, -25, -1, -0.010417509379997109], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 2, 1, 0.9744138151643981], [-7, -5, -1, 0.8168977672129368], [41, -13, 1, -0.44365955808634283], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 0.9220208696226306], [-3, 33, -1, 0.03377665480146253], [29, 101, 1, -0.06843316801732037]], "moves": [{"seat": 1, "got": [2, 1], "using": [2, 1]}, {"seat": 2, "got": [-1, 2], "using": [-1, 2]}, {"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 36, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 6, -1, 1.0105946523174731], [-51, 62, 1, 0.20715068276001689], [6, 1, -1, 1.0987157716443732], [-16, -3, 1, 0.43190406172010976], [-4, 1, -1, 0.6021867216964282], [38, -6, 0, -0.058190997386388194], [33, -6, -1, 0.03344597516026228], [-37, 30, 1, 0.4155003757928258], [-3, -80, -1, 0.20775989108899215], [6, -3, 1, 0.0041873215521526855], [-45, 14, -1, 0.43680899749979696], [5, 0, 1, 1.1388048353558617], [10, -57, -1, 0.056745831453935414], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-41, 4, -1, 0.2322112926660013], [-19, -19, 0, -0.06180284349225656], [10, -3, -1, 0.7054556054496834], [1, -4, 1, 1.157361942882049], [-32, -27, -1, -0.013949462688899067], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 1.0482056239896147], [-8, -3, -1, 0.8585134132473561], [43, -14, 1, -0.44488694976675464], [2, -2, 0, 0.5087787822945713], [-2, 5, 1, 0.9825803404180523], [-1, 32, -1, 0.043233650077820124], [30, 103, 1, -0.06904024948293443]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 37, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 1.0105946523174731], [-53, 63, 1, 0.20890856419240722], [5, -1, -1, 1.1564164790945004], [-14, -4, 1, 0.4466977856777979], [-5, 3, -1, 0.6492075913190588], [38, -6, 0, -0.058190997386388194], [31, -5, -1, 0.030272365651805827], [-39, 31, 1, 0.41704291648839203], [-4, -82, -1, 0.20955188258181098], [4, -4, 1, -0.047020869622630676], [-47, 15, -1, 0.43797269032438185], [3, 1, 1, 1.190013026530645], [8, -58, -1, 0.06257170197052815], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-39, 5, -1, 0.23702674191418752], [-19, -19, 0, -0.06180284349225656], [11, -5, -1, 0.7269686903008582], [3, -3, 1, 1.2433723776933643], [-30, -28, -1, -0.021919091478339963], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -2, 1, 1.1219974328148314], [-9, -1, -1, 0.8980018951186716], [45, -15, 1, -0.44599990325506617], [2, -2, 0, 0.5087787822945713], [-4, 4, 1, 1.0470208696226306], [-2, 30, -1, 0.037610971672141544], [31, 105, 1, -0.0696229341977887]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 38, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 1.093219322586757], [-55, 64, 1, 0.21058092395049208], [6, -3, -1, 1.1987918088252165], [-12, -5, 1, 0.4652379774753467], [-3, 4, -1, 0.7107807741581768], [38, -6, 0, -0.058190997386388194], [33, -4, -1, 0.024019254744314083], [-41, 32, 1, 0.4184556789530938], [-5, -84, -1, 0.21125671977425944], [3, -6, 1, -0.09822906079741403], [-49, 16, -1, 0.4390366280865526], [2, 3, 1, 1.2952213144503621], [6, -59, -1, 0.06825666418287991], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-37, 6, -1, 0.24231915026837036], [-19, -19, 0, -0.06180284349225656], [10, -7, -1, 0.7562688720179197], [4, -1, 1, 1.3293828125046796], [-31, -30, -1, -0.024796155548191028], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 1.2046221030841153], [-8, 1, -1, 0.935405250937593], [47, -16, 1, -0.4470136152987624], [2, -2, 0, 0.5087787822945713], [-5, 2, 1, 1.1114613988272088], [-1, 28, -1, 0.042523933742705806], [32, 107, 1, -0.07018264911879767]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 39, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 0, -1, 1.1868028434922564], [-57, 65, 1, 0.21217351107330457], [5, -5, -1, 1.2499999999999998], [-10, -6, 1, 0.48841545409766085], [-1, 5, -1, 0.7817806774132429], [38, -6, 0, -0.058190997386388194], [35, -5, -1, 0.027405019286345467], [-43, 33, 1, 0.41975418284415006], [-6, -86, -1, 0.21288024572824574], [5, -7, 1, -0.0733050979782574], [-51, 17, -1, 0.4400130265306452], [0, 4, 1, 1.3888048353558615], [4, -60, -1, 0.07379180882521665], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-35, 7, -1, 0.2481494445272691], [-19, -19, 0, -0.06180284349225656], [11, -9, -1, 0.7682060571955356], [5, 1, 1, 1.399788856787865], [-32, -32, -1, -0.027405019286345443], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 1.2982056239896147], [-6, 2, -1, 0.9668217300320936], [49, -17, 1, -0.4479407209855758], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 1.1208126784478472], [0, 30, -1, 0.04820562398961478], [33, 109, 1, -0.07072071315525429]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 40, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 1.2803863643977558], [-59, 66, 1, 0.2136916031275059], [3, -6, -1, 1.301208191174783], [-8, -7, 1, 0.5168103669688723], [1, 4, -1, 0.8521867216964281], [38, -6, 0, -0.058190997386388194], [37, -4, -1, 0.021960776899883325], [-45, 34, 1, 0.42095159685237155], [-7, -88, -1, 0.2144278271468447], [4, -5, 1, -0.06463251336126932], [-53, 18, -1, 0.4409121974332014], [-2, 5, 1, 1.4493643061512833], [2, -61, -1, 0.0791701349002305], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-33, 8, -1, 0.2545857289324672], [-19, -19, 0, -0.06180284349225656], [9, -10, -1, 0.7924376700890994], [6, 3, 1, 1.442164186518581], [-34, -31, -1, -0.020064615691721212], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 1.391789144895114], [-5, 4, -1, 1.0230018951186715], [51, -18, 1, -0.4487918088252167], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 1.211010434811315], [2, 29, -1, 0.059164474625830236], [34, 111, 1, -0.07123834710291989]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 41, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 1.385594652317473], [-61, 67, 1, 0.21514004971512957], [1, -5, -1, 1.3435835209054992], [-6, -8, 1, 0.5499886369367788], [3, 5, -1, 0.8992075913190587], [38, -6, 0, -0.058190997386388194], [35, -3, -1, 0.018429991785322647], [-47, 35, 1, 0.42205916254053055], [-8, -90, -1, 0.215904397843759], [3, -3, 1, -0.04702086962263068], [-55, 19, -1, 0.44174290343955164], [-4, 4, 1, 1.5138048353558615], [0, -62, -1, 0.08438646114268984], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-31, 9, -1, 0.26170298281339893], [-19, -19, 0, -0.06180284349225656], [7, -11, -1, 0.8188710595473443], [4, 2, 1, 1.442164186518581], [-32, -30, -1, -0.022272768547471556], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -1, 1, 1.4969974328148312], [-3, 5, -1, 1.0796031040459948], [53, -19, 1, -0.4495758169815246], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 1.2970208696226304], [0, 30, -1, 0.04820562398961478], [35, 113, 1, -0.07173668251308894]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 42, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 1.4368028434922562], [-63, 68, 1, 0.21652331180594453], [-1, -6, -1, 1.4012842283556264], [-4, -9, 1, 0.5858425499125172], [4, 3, -1, 0.9607807741581766], [38, -6, 0, -0.058190997386388194], [33, -2, -1, 0.014455371799570932], [-49, 36, 1, 0.42308653072663593], [-9, -92, -1, 0.21731449813317505], [5, -4, 1, -0.029409225883992043], [-57, 20, -1, 0.4425126368498241], [-3, 2, 1, 1.5452213144503621], [-2, -63, -1, 0.08943730271061162], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-29, 10, -1, 0.26958187109268156], [-19, -19, 0, -0.06180284349225656], [5, -10, -1, 0.8352770070855957], [2, 3, 1, 1.524788856787865], [-31, -32, -1, -0.02993107608967638], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 1.5871951891782992], [-1, 6, -1, 1.1393293105016833], [55, -20, 1, -0.45030034130778274], [2, -2, 0, 0.5087787822945713], [-2, -5, 1, 1.3614613988272086], [2, 31, -1, 0.05845947395197941], [36, 115, 1, -0.07221676962608894]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 43, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 1.4880110346670397], [-65, 69, 1, 0.21784549725770583], [-3, -5, -1, 1.4610104348113149], [-2, -10, 1, 0.6209885401918449], [5, 1, -1, 1.0317806774132428], [38, -6, 0, -0.058190997386388194], [31, -1, -1, 0.009953652374786064], [-51, 37, 1, 0.4240420305208869], [-10, -94, -1, 0.21866231047485105], [3, -3, 1, -0.04702086962263068], [-59, 21, -1, 0.4432278406087828], [-4, 0, 1, 1.6388048353558615], [-3, -61, -1, 0.09220745193216548], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-27, 11, -1, 0.27830614827188643], [-19, -19, 0, -0.06180284349225656], [3, -11, -1, 0.8666934861800963], [0, 4, 1, 1.6183723776933643], [-32, -34, -1, -0.0322264209222576], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 1.6732056239896145], [1, 7, -1, 1.1881971565077434], [57, -21, 1, -0.45097187716686077], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 1.4220208696226304], [0, 32, -1, 0.04820562398961478], [37, 117, 1, -0.07267958448119968]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 44, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 1.539219225841823], [-67, 70, 1, 0.21911039287287246], [-5, -6, -1, 1.4855710308118473], [0, -11, 1, 0.6524050192863455], [6, -1, -1, 1.08948138486337], [38, -6, 0, -0.058190997386388194], [30, -3, -1, 0.020684160351188974], [-53, 38, 1, 0.4249328860724375], [-11, -96, -1, 0.21995169170148815], [5, -4, 1, -0.029409225883992043], [-61, 22, -1, 0.44389408493980187], [-3, -2, 1, 1.732388356261361], [-4, -59, -1, 0.09516014031726681], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-25, 12, -1, 0.28795798161139435], [-19, -19, 0, -0.06180284349225656], [1, -10, -1, 0.8932060571955356], [-2, 3, 1, 1.7119558985988637], [-34, -35, -1, -0.02971145119261768], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 4, 1, 1.7592160588009298], [3, 6, -1, 1.2394053476825269], [59, -22, 1, -0.45159601099915103], [2, -2, 0, 0.5087787822945713], [2, -7, 1, 1.4663136360140827], [-1, 34, -1, 0.04352594532879174], [38, 119, 1, -0.07312603530007464]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 45, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 1.6130110346670397], [-69, 71, 1, 0.22032149332007503], [-6, -4, -1, 1.5314164790945002], [1, -13, 1, 0.6646236452724442], [4, 0, -1, 1.0631971565077434], [38, -6, 0, -0.058190997386388194], [29, -1, -1, 0.01030732944391768], [-55, 39, 1, 0.42576539239612915], [-12, -98, -1, 0.22118620214046797], [3, -3, 1, -0.04702086962263068], [-63, 23, -1, 0.44451620962412697], [-2, -4, 1, 1.8150130265306448], [-5, -57, -1, 0.09831177712890042], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-23, 13, -1, 0.29861043488622896], [-19, -19, 0, -0.06180284349225656], [-1, -11, -1, 0.9234977850989646], [-4, 2, 1, 1.7945805688681475], [-36, -34, -1, -0.022858971948521215], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 3, 1, 1.8494138151643977], [4, 4, -1, 1.2906135388573101], [61, -23, 1, -0.452177573367248], [2, -2, 0, 0.5087787822945713], [4, -8, 1, 1.495812678447847], [-3, 35, -1, 0.034597033840204294], [39, 121, 1, -0.0735569682280201]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 46, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, -1, -1, 1.6605186151366296], [-71, 72, 1, 0.22148202722534296], [-5, -2, -1, 1.5644405292045778], [2, -11, 1, 0.6810295928106956], [5, -2, -1, 1.1237566273031652], [38, -6, 0, -0.058190997386388194], [28, -3, -1, 0.021808911542260542], [-57, 40, 1, 0.42654505893688105], [-13, -100, -1, 0.22236913192287194], [5, -4, 1, -0.029409225883992043], [-65, 24, -1, 0.4450984394418272], [0, -3, 1, 1.8888048353558615], [-6, -55, -1, 0.10168043076609479], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-21, 14, -1, 0.3103164863382679], [-19, -19, 0, -0.06180284349225656], [-3, -10, -1, 0.9554556054496836], [-3, 0, 1, 1.8683723776933643], [-35, -32, -1, -0.02028343536560927], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 1.9546221030841149], [6, 3, -1, 1.3418217300320934], [63, -24, 1, -0.4527207621902226], [2, -2, 0, 0.5087787822945713], [3, -6, 1, 1.495812678447847], [-5, 36, -1, 0.02624128314806349], [40, 123, 1, -0.07397317250658153]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 47, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-7, 1, -1, 1.7093864611426897], [-73, 73, 1, 0.22259498071365447], [-6, 0, -1, 1.6249999999999996], [3, -9, 1, 0.7036132104611289], [6, -4, -1, 1.156780677413243], [38, -6, 0, -0.058190997386388194], [30, -4, -1, 0.02591763321533287], [-59, 41, 1, 0.4272767275163773], [-14, -102, -1, 0.22350352475140428], [3, -5, 1, -0.08601043481131536], [-67, 25, -1, 0.44564447847647914], [-1, -5, 1, 1.857388356261361], [-7, -53, -1, 0.10528596236113051], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, 15, -1, 0.32309452985566595], [-19, -19, 0, -0.06180284349225656], [-5, -11, -1, 0.9769686903008583], [-4, -2, 1, 1.942164186518581], [-34, -30, -1, -0.01747075713357499], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 3, 1, 1.962195189178299], [7, 1, -1, 1.3930299212068766], [65, -25, 1, -0.4532292427064545], [2, -2, 0, 0.5087787822945713], [5, -5, 1, 1.5470208696226302], [-6, 38, -1, 0.023281661170458115], [41, 125, 1, -0.0743753851415302]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 48, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 1.760594652317473], [-75, 74, 1, 0.2236631186569448], [-5, 2, -1, 1.6855594707954213], [4, -7, 1, 0.7350296895556295], [4, -5, -1, 1.2058088002463823], [38, -6, 0, -0.058190997386388194], [32, -3, -1, 0.01969869342162105], [-61, 42, 1, 0.4279646698004246], [-15, -104, -1, 0.22459219937682448], [5, -4, 1, -0.029409225883992043], [-69, 26, -1, 0.44615758764744623], [0, -3, 1, 1.8888048353558615], [-8, -51, -1, 0.10915014713476728], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, 16, -1, 0.3369115637968563], [-19, -19, 0, -0.06180284349225656], [-7, -10, -1, 1.0062688720179198], [-3, -4, 1, 2.0159559953437975], [-35, -28, -1, -0.009793375547706762], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, 1, 1, 2.0219213956339877], [6, -1, -1, 1.4418977672129367], [67, -26, 1, -0.4537062291197905], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 1.5982290607974134], [-7, 36, -1, 0.017640232734755033], [42, 127, 1, -0.07476429512229038]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 49, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 1.7182193225867568], [-77, 75, 1, 0.22468900386107327], [-6, 4, -1, 1.718583520905499], [6, -8, 1, 0.7548214016359123], [3, -7, -1, 1.2487566273031654], [38, -6, 0, -0.058190997386388194], [30, -4, -1, 0.02591763321533287], [-63, 43, 1, 0.4286126682893524], [-16, -106, -1, 0.2256377690107017], [4, -6, 1, -0.07843734871713127], [-71, 27, -1, 0.4466406488372808], [1, -5, 1, 1.9202213144503621], [-9, -49, -1, 0.11329677034405115], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, 17, -1, 0.35166722758553887], [-19, -19, 0, -0.06180284349225656], [-9, -11, -1, 1.0182060571955356], [-1, -3, 1, 2.067164186518581], [-34, -30, -1, -0.01747075713357499], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -1, 1, 2.079622103084115], [5, -3, -1, 1.5016239736686254], [69, -27, 1, -0.45415455171734714], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 1.6406043905281296], [-6, 38, -1, 0.023281661170458115], [43, 129, 1, -0.07514054724190589]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 50, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 1.760594652317473], [-79, 76, 1, 0.22567501440187654], [-4, 5, -1, 1.7676116437386382], [7, -6, 1, 0.7896236452724442], [1, -6, -1, 1.286912928152117], [38, -6, 0, -0.058190997386388194], [28, -5, -1, 0.03294548956757279], [-65, 44, 1, 0.4292240839705517], [-17, -108, -1, 0.22664265888132676], [5, -4, 1, -0.029409225883992043], [-73, 28, -1, 0.44709621823331236], [2, -3, 1, 1.982388356261361], [-10, -47, -1, 0.11775167888259387], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, 18, -1, 0.3671839294486621], [-19, -19, 0, -0.06180284349225656], [-10, -9, -1, 1.0424376700890994], [1, -4, 1, 2.157361942882049], [-35, -32, -1, -0.02028343536560927], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -3, 1, 2.1506220063391814], [4, -5, -1, 1.5582251825959488], [71, -28, 1, -0.4545767123800246], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 1.6720208696226302], [-5, 36, -1, 0.02624128314806349], [44, 131, 1, -0.07550474556064814]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 51, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 2, -1, 1.760594652317473], [-81, 77, 1, 0.22662335929958066], [-2, 6, -1, 1.8237918088252163], [8, -4, 1, 0.8286132104611289], [-1, -7, -1, 1.335780774158177], [38, -6, 0, -0.058190997386388194], [27, -7, -1, 0.04519488797074586], [-67, 45, 1, 0.42980191311142346], [-18, -110, -1, 0.22760912211982162], [7, -3, 1, 0.013538601172791015], [-75, 29, -1, 0.44752657093546644], [3, -1, 1, 2.0875966441810783], [-11, -45, -1, 0.12254276199164146], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, 19, -1, 0.38320912426092835], [-19, -19, 0, -0.06180284349225656], [-11, -7, -1, 1.0688710595473443], [3, -3, 1, 2.2433723776933645], [-33, -31, -1, -0.02243304537455082], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -4, 1, 2.224413815164398], [3, -7, -1, 1.601173009652732], [73, -29, 1, -0.4549749307560889], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 1.7458126784478467], [-4, 38, -1, 0.0315139407743522], [45, 133, 1, -0.07585745655117306]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 52, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 1.8432193225867568], [-83, 78, 1, 0.22753609270163738], [0, 5, -1, 1.8749999999999998], [9, -2, 1, 0.8676027756498136], [-2, -5, -1, 1.3737566273031656], [38, -6, 0, -0.058190997386388194], [28, -5, -1, 0.03294548956757279], [-69, 46, 1, 0.43034883516162326], [-19, -112, -1, 0.2285392541450705], [9, -4, 1, 0.011416661003541028], [-77, 30, -1, 0.4479337384493593], [4, 1, 1, 2.1777944005445464], [-12, -43, -1, 0.12769982486287415], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, 20, -1, 0.39943367288289583], [-19, -19, 0, -0.06180284349225656], [-10, -5, -1, 1.0852770070855957], [4, -1, 1, 2.32938281250468], [-31, -32, -1, -0.029931076089676375], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -3, 1, 2.2982056239896145], [2, -9, -1, 1.6308112952207783], [75, -30, 1, -0.4553511828757044], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 1.8284373487171306], [-5, 36, -1, 0.02624128314806349], [46, 135, 1, -0.07619921195863127]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 53, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 1.9053863643977555], [-85, 79, 1, 0.2284151267264985], [2, 6, -1, 1.926208191174783], [10, 0, 1, 0.9024050192863455], [-4, -4, -1, 1.4381971565077438], [38, -6, 0, -0.058190997386388194], [30, -4, -1, 0.02591763321533287], [-71, 47, 1, 0.43086725333819426], [-20, -114, -1, 0.2294350056991397], [7, -5, 1, -0.020736641267003968], [-79, 31, -1, 0.448319540350549], [3, 3, 1, 2.2638048353558617], [-14, -42, -1, 0.13559465231747325], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, 21, -1, 0.4155247742579851], [-19, -19, 0, -0.06180284349225656], [-11, -3, -1, 1.1166934861800963], [5, 1, 1, 2.399788856787865], [-32, -34, -1, -0.0322264209222576], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 2.371997432814831], [0, -8, -1, 1.6656135388573103], [77, -31, 1, -0.4557072336085476], [2, -2, 0, 0.5087787822945713], [1, 5, 1, 1.8906043905281293], [-4, 38, -1, 0.0315139407743522], [47, 137, 1, -0.07653051140521766]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 54, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 6, -1, 1.9630870718478828], [-87, 80, 1, 0.2292622431049229], [4, 5, -1, 1.9823883562613611], [11, 2, 1, 0.9310295928106956], [-5, -2, -1, 1.502637685712322], [38, -6, 0, -0.058190997386388194], [32, -5, -1, 0.029489899276246203], [-73, 48, 1, 0.4313593291584693], [-21, -116, -1, 0.23029819466936963], [5, -4, 1, -0.02940922588399204], [-81, 32, -1, 0.4486856111476332], [2, 5, 1, 2.32824536456044], [-16, -43, -1, 0.14108058012547872], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, 22, -1, 0.43116555969586084], [-19, -19, 0, -0.06180284349225656], [-10, -1, -1, 1.1432060571955356], [6, 3, 1, 2.442164186518581], [-31, -36, -1, -0.03926027845381989], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 2.454622103084115], [-2, -7, -1, 1.7099063052487626], [79, -32, 1, -0.4560446640777181], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 1.9610104348113147], [-2, 39, -1, 0.040050975527333735], [48, 139, 1, -0.07685182476523708]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 55, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 5, -1, 2.0228132783035715], [-89, 81, 1, 0.23007910374103258], [5, 3, -1, 2.0389895651886842], [9, 3, 1, 0.9536132104611289], [-4, 0, -1, 1.5631971565077438], [38, -6, 0, -0.058190997386388194], [34, -4, -1, 0.02345983721301478], [-75, 49, 1, 0.4318270119430331], [-22, -118, -1, 0.23113051681926408], [3, -3, 1, -0.047020869622630676], [-83, 33, -1, 0.4490334231704311], [1, 7, 1, 2.3662212177054283], [-18, -42, -1, 0.14882699034726815], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, 23, -1, 0.44609016551284486], [-19, -19, 0, -0.06180284349225656], [-11, 1, -1, 1.1734977850989645], [4, 2, 1, 2.442164186518581], [-30, -34, -1, -0.037339281439115815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 0, 1, 2.5482056239896145], [-4, -6, -1, 1.7591970597628097], [81, -33, 1, -0.4563648949194007], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 2.04702086962263], [-3, 41, -1, 0.036580856975396946], [49, 141, 1, -0.07716359433378485]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 56, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 3, -1, 2.0843864611426897], [-91, 82, 1, 0.23086726030240384], [6, 1, -1, 2.0987157716443727], [8, 5, 1, 0.9913088615310219], [-5, 2, -1, 1.6237566273031656], [38, -6, 0, -0.058190997386388194], [33, -2, -1, 0.014455371799570932], [-77, 50, 1, 0.4322720641192996], [-23, -120, -1, 0.23193355553760014], [5, -4, 1, -0.029409225883992036], [-85, 34, -1, 0.44936430615128353], [0, 5, 1, 2.3888048353558613], [-20, -43, -1, 0.1536750868744248], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, 24, -1, 0.4601053431261329], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 1.2054556054496834], [2, 3, 1, 2.524788856787865], [-28, -35, -1, -0.04501666302498404], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 2, 1, 2.6087650947850363], [-5, -4, -1, 1.808225182595949], [83, -34, 1, -0.45666920610322437], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 2.1330313044339455], [-4, 39, -1, 0.03193891958564543], [50, 143, 1, -0.0774662368095388]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 57, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 2.155386364397756], [-93, 83, 1, 0.23162816293688748], [5, -1, -1, 2.1564164790945], [6, 6, 1, 1.0274050192863455], [-4, 4, -1, 1.6881971565077438], [38, -6, 0, -0.058190997386388194], [35, -3, -1, 0.018429991785322647], [-79, 51, 1, 0.43269608300385104], [-24, -122, -1, 0.23270879070374964], [3, -3, 1, -0.047020869622630676], [-87, 35, -1, 0.4496794640425055], [-1, 3, 1, 2.440013026530645], [-22, -42, -1, 0.1611808371530751], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, 25, -1, 0.4730957711067644], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 1.2269686903008583], [0, 4, 1, 2.6183723776933645], [-26, -34, -1, -0.04850125086576607], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 2.6732056239896145], [-6, -2, -1, 1.8644053476825269], [85, -35, 1, -0.4569587538912816], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 2.2232290607974137], [-6, 40, -1, 0.024509052850869947], [51, 145, 1, -0.07776014510988093]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 58, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -1, -1, 2.2130870718478834], [-95, 84, 1, 0.2323631682034752], [6, -3, -1, 2.198791808825216], [4, 7, 1, 1.0697803490170616], [-3, 6, -1, 1.739405347682527], [38, -6, 0, -0.058190997386388194], [33, -2, -1, 0.014455371799570932], [-81, 52, 1, 0.4331005196198951], [-25, -124, -1, 0.23345760675693503], [5, -4, 1, -0.029409225883992036], [-89, 36, -1, 0.4499799895136708], [-3, 4, 1, 2.4912212177054283], [-24, -43, -1, 0.16540760941929483], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [3, 24, -1, 0.4865246775130513], [-19, -19, 0, -0.06180284349225656], [-10, 7, -1, 1.2562688720179198], [-2, 3, 1, 2.711955898598864], [-28, -33, -1, -0.04042140772940851], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 2, 1, 2.6087650947850363], [-7, 0, -1, 1.9156135388573101], [87, -36, 1, -0.4572345854055692], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 2.328437348717131], [-7, 38, -1, 0.019212636903175366], [52, 147, 1, -0.07804569003456523]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 59, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 2.272813278303572], [-97, 85, 1, 0.23307354629526517], [5, -5, -1, 2.2499999999999996], [2, 8, 1, 1.1134154540976609], [-1, 7, -1, 1.7906135388573103], [38, -6, 0, -0.058190997386388194], [31, -3, -1, 0.020175679834957112], [-83, 53, 1, 0.433486695008363], [-26, -126, -1, 0.2341813000479491], [3, -3, 1, -0.047020869622630676], [-91, 37, -1, 0.45026687649300984], [-5, 3, 1, 2.5527944005445464], [-26, -42, -1, 0.17260723915605877], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [5, 23, -1, 0.5008017813435808], [-19, -19, 0, -0.06180284349225656], [-11, 9, -1, 1.2682060571955356], [-4, 2, 1, 2.794580568868148], [-30, -32, -1, -0.03253727002521932], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 4, 1, 2.6732056239896145], [-6, 2, -1, 1.9668217300320934], [89, -37, 1, -0.4574976511876389], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 2.42202086962263], [-6, 36, -1, 0.021921395633988053], [53, 149, 1, -0.07832322179239229]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, 2], "using": [-1, 2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 60, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 2.280386364397756], [-99, 86, 1, 0.23376048762431417], [3, -6, -1, 2.301208191174783], [1, 10, 1, 1.1365422605710687], [1, 8, -1, 1.8329888685880265], [38, -6, 0, -0.058190997386388194], [33, -4, -1, 0.02401925474431408], [-85, 54, 1, 0.4338558144121991], [-27, -128, -1, 0.23488108554363965], [5, -4, 1, -0.029409225883992036], [-93, 38, -1, 0.45054103105339943], [-3, 2, 1, 2.5452213144503624], [-28, -43, -1, 0.1762494550948056], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [7, 22, -1, 0.5157610882659077], [-19, -19, 0, -0.06180284349225656], [-9, 10, -1, 1.2924376700890994], [-3, 0, 1, 2.8683723776933645], [-29, -30, -1, -0.030102302428232024], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 2.7376461531941927], [-4, 3, -1, 2.018029921206877], [91, -38, 1, -0.45774881606554974], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 2.5156043905281296], [-5, 38, -1, 0.0273837972125874], [54, 151, 1, -0.07859307140380199]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 61, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 2.385594652317473], [-101, 87, 1, 0.23442510883079437], [1, -5, -1, 2.343583520905499], [-1, 11, 1, 1.1668339884744976], [2, 6, -1, 1.864405347682527], [38, -6, 0, -0.058190997386388194], [35, -3, -1, 0.018429991785322647], [-87, 55, 1, 0.4342089796493375], [-28, -130, -1, 0.23555810294711366], [3, -3, 1, -0.047020869622630676], [-95, 39, -1, 0.4508032808919037], [-4, 0, 1, 2.6388048353558617], [-30, -42, -1, 0.18310223278706314], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [9, 21, -1, 0.5311734946373468], [-19, -19, 0, -0.06180284349225656], [-7, 11, -1, 1.3188710595473443], [-4, -2, 1, 2.942164186518581], [-27, -29, -1, -0.03308670953325437], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 2.7982056239896145], [-3, 5, -1, 2.079603104045995], [93, -39, 1, -0.45798886858802623], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 2.6208126784478467], [-3, 37, -1, 0.035329336692663], [55, 153, 1, -0.07885555199093201]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 62, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 2.4368028434922566], [-103, 88, 1, 0.23506845827231096], [-1, -6, -1, 2.4012842283556264], [-2, 9, 1, 1.1872072629228774], [1, 4, -1, 1.8521867216964283], [38, -6, 0, -0.058190997386388194], [37, -4, -1, 0.021960776899883325], [-89, 56, 1, 0.43454719993767515], [-29, -132, -1, 0.23621342229005443], [5, -4, 1, -0.029409225883992036], [-97, 40, -1, 0.45105438361000977], [-3, -2, 1, 2.732388356261361], [-32, -43, -1, 0.1862089845203757], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [11, 20, -1, 0.5467629480521381], [-19, -19, 0, -0.06180284349225656], [-5, 10, -1, 1.3352770070855957], [-3, -4, 1, 3.0159559953437975], [-25, -30, -1, -0.04183398847449764], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 2.8587650947850363], [-1, 4, -1, 2.1266239736686257], [95, -40, 1, -0.45821852924116485], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 2.711010434811315], [-1, 36, -1, 0.043785789902963126], [56, 155, 1, -0.07911095996548367]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 63, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -7, -1, 2.45938646114269], [-105, 89, 1, 0.23569152104339045], [-3, -5, -1, 2.461010434811315], [-3, 7, 1, 1.2168455484909237], [3, 5, -1, 1.899207591319059], [38, -6, 0, -0.058190997386388194], [38, -2, -1, 0.013190255814199246], [-91, 57, 1, 0.4348714013926405], [-30, -134, -1, 0.23684804904769297], [3, -3, 1, -0.047020869622630676], [-99, 41, -1, 0.45129503396761894], [-4, -4, 1, 2.7638048353558617], [-34, -42, -1, 0.19269477792742729], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [13, 19, -1, 0.5622339229990042], [-19, -19, 0, -0.06180284349225656], [-4, 12, -1, 1.357860624736029], [-1, -3, 1, 3.067164186518581], [-27, -29, -1, -0.03308670953325437], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 2.9232056239896145], [1, 3, -1, 2.216821730032094], [97, -41, 1, -0.4584384576268707], [2, -2, 0, 0.5087787822945713], [5, 3, 1, 2.7580313044339455], [1, 37, -1, 0.05250606204233135], [57, 157, 1, -0.07935957612367035]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, -1], "using": [-2, -1]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 29, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 64, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -8, -1, 2.4939029691022108], [-107, 90, 1, 0.23629522356994576], [-5, -6, -1, 2.4855710308118475], [-5, 6, 1, 1.2629760500981932], [4, 3, -1, 1.9607807741581769], [38, -6, 0, -0.058190997386388194], [37, -4, -1, 0.021960776899883325], [-93, 58, 1, 0.4351824353828639], [-31, -136, -1, 0.2374629288217541], [5, -4, 1, -0.029409225883992036], [-101, 42, -1, 0.4515258702559348], [-6, -5, 1, 2.7493758661677097], [-36, -43, -1, 0.19532085877316188], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [15, 18, -1, 0.5773039962446163], [-19, -19, 0, -0.06180284349225656], [-2, 11, -1, 1.3804442423864622], [1, -4, 1, 3.157361942882049], [-26, -27, -1, -0.030407586471513964], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 2.9876461531941927], [2, 5, -1, 2.226173009652732], [99, -42, 1, -0.458649258752729], [2, -2, 0, 0.5087787822945713], [4, 5, 1, 2.8146325133612686], [3, 38, -1, 0.06074448081739604], [58, 159, 1, -0.07960166665657882]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 65, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 2.48801103466704], [-109, 91, 1, 0.23688043781888854], [-6, -4, -1, 2.5314164790945], [-6, 4, 1, 1.3088214983808462], [5, 1, -1, 2.031780677413243], [38, -6, 0, -0.058190997386388194], [36, -6, -1, 0.031105629991538902], [-95, 59, 1, 0.43548108590049717], [-32, -138, -1, 0.2380589516320425], [7, -3, 1, 0.013538601172791022], [-103, 43, -1, 0.4517474799114336], [-8, -6, 1, 2.7412212177054287], [-38, -42, -1, 0.20143533551460172], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [17, 17, -1, 0.5917329654327685], [-19, -19, 0, -0.06180284349225656], [0, 10, -1, 1.4090688159108122], [3, -3, 1, 3.2433723776933645], [-27, -29, -1, -0.03308670953325437], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 3.0482056239896145], [4, 4, -1, 2.2906135388573103], [101, -43, 1, -0.4588514885588759], [2, -2, 0, 0.5087787822945713], [2, 6, 1, 2.8708126784478467], [1, 37, -1, 0.05250606204233135], [59, 161, 1, -0.07983748408343462]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 29, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 66, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 2.4757924086809413], [-111, 92, 1, 0.23744798515893054], [-5, -2, -1, 2.5644405292045778], [-7, 2, 1, 1.3581122528948932], [6, -1, -1, 2.0894813848633706], [38, -6, 0, -0.058190997386388194], [34, -5, -1, 0.028059974202669383], [-97, 60, 1, 0.43576807607874724], [-33, -140, -1, 0.2386369558531806], [6, -5, 1, -0.03259190043447843], [-105, 44, -1, 0.4519604044741436], [-6, -7, 1, 2.7760234613419605], [-40, -43, -1, 0.20363637599535347], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [19, 16, -1, 0.605341555582179], [-19, -19, 0, -0.06180284349225656], [2, 11, -1, 1.4376933894351622], [4, -1, 1, 3.32938281250468], [-25, -28, -1, -0.03640418677551799], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 3.141789144895114], [5, 2, -1, 2.3550540680618886], [103, -44, 1, -0.4590456587875813], [2, -2, 0, 0.5087787822945713], [1, 4, 1, 2.8830313044339455], [3, 38, -1, 0.06074448081739604], [60, 163, 1, -0.08006726811451859]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 7, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, 1], "using": [-2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 29, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 67, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 2.522813278303572], [-113, 93, 1, 0.23799863990493797], [-6, 0, -1, 2.6249999999999996], [-8, 0, 1, 1.4024050192863455], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -6, -1, 0.031105629991538902], [-99, 61, 1, 0.43604407396924627], [-34, -142, -1, 0.23919773182930665], [4, -4, 1, -0.047020869622630676], [-107, 45, -1, 0.45216514397774366], [-5, -5, 1, 2.7638048353558617], [-42, -42, -1, 0.20938646114268986], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [21, 15, -1, 0.6180171937883953], [-19, -19, 0, -0.06180284349225656], [4, 10, -1, 1.4696282867062338], [5, 1, 1, 3.399788856787865], [-26, -30, -1, -0.038753954786275635], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 3.246997432814831], [4, 0, 0, 2.4156135388573103], [105, -45, 1, -0.45923224128486106], [2, -2, 0, 0.5087787822945713], [-1, 3, 1, 2.9732290607974137], [5, 37, -1, 0.06958354543966079], [61, 165, 1, -0.08029124644981639]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 68, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 2.530386364397756], [-115, 94, 1, 0.23853313257492234], [-5, 2, -1, 2.6855594707954213], [-6, -1, 1, 1.4286892476419724], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -8, -1, 0.04058529485705796], [-101, 62, 1, 0.4363096976752441], [-35, -144, -1, 0.2397420251962339], [6, -3, 1, 0.0041873215521526855], [-109, 46, -1, 0.45236216084591097], [-3, -6, 1, 2.8150130265306452], [-43, -40, -1, 0.21513654629002624], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [23, 14, -1, 0.629708818577757], [-19, -19, 0, -0.06180284349225656], [6, 11, -1, 1.4885423149829378], [6, 3, 1, 3.442164186518581], [-25, -28, -1, -0.03640418677551799], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 3.337195189178299], [4, 0, 0, 2.4156135388573103], [107, -46, 1, -0.4594116718098466], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 3.078437348717131], [3, 36, -1, 0.06143796201940973], [62, 167, 1, -0.0805096355188944]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 6, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 69, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 2.635594652317473], [-117, 95, 1, 0.2390521528858281], [-6, 4, -1, 2.718583520905499], [-7, -3, 1, 1.466845548490924], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -7, -1, 0.03458007669922063], [-103, 63, 1, 0.43656551992267956], [-36, -146, -1, 0.24027053993762135], [4, -4, 1, -0.047020869622630676], [-111, 47, -1, 0.4525518833584265], [-2, -4, 1, 2.8150130265306452], [-44, -38, -1, 0.22101122815690766], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [25, 13, -1, 0.640415099804221], [-19, -19, 0, -0.06180284349225656], [8, 10, -1, 1.5164571721721736], [4, 2, 1, 3.442164186518581], [-26, -30, -1, -0.038753954786275635], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 3.4232056239896145], [4, 0, 0, 2.4156135388573103], [109, -47, 1, -0.4595843534163268], [2, -2, 0, 0.5087787822945713], [-5, 3, 1, 3.086010434811315], [4, 38, -1, 0.06489730720487734], [63, 169, 1, -0.08072264116696459]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 70, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 0, -1, 2.6868028434922566], [-119, 96, 1, 0.23955635251166635], [-4, 5, -1, 2.767611643738638], [-6, -5, 1, 1.5129760500981935], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -6, -1, 0.031842453167583315], [-105, 64, 1, 0.4368120721394836], [-37, -148, -1, 0.24078394119906993], [6, -3, 1, 0.0041873215521526855], [-113, 48, -1, 0.4527347087413895], [0, -3, 1, 2.8888048353558617], [-45, -36, -1, 0.22699810488132852], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [27, 12, -1, 0.6501704960589403], [-19, -19, 0, -0.06180284349225656], [10, 9, -1, 1.5424376700890994], [2, 3, 1, 3.524788856787865], [-25, -32, -1, -0.04685298472383245], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -1, 1, 3.50921605880093], [4, 0, 0, 2.4156135388573103], [111, -48, 1, -0.45975065946143207], [2, -2, 0, 0.5087787822945713], [-6, 1, 1, 3.1457366412670034], [5, 36, -1, 0.07016996483116605], [64, 171, 1, -0.08093045929163283]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 71, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 2, -1, 2.73801103466704], [-121, 97, 1, 0.2400463476252139], [-2, 6, -1, 2.823791808825216], [-4, -6, 1, 1.5588214983808464], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -7, -1, 0.03458007669922063], [-107, 65, 1, 0.4370498481036047], [-38, -150, -1, 0.24128285788170067], [4, -4, 1, -0.047020869622630676], [-115, 49, -1, 0.45291100592819755], [2, -4, 1, 2.9625966441810783], [-46, -34, -1, 0.23308303228143465], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [29, 11, -1, 0.6590322579826413], [-19, -19, 0, -0.06180284349225656], [11, 7, -1, 1.5688710595473443], [0, 4, 1, 3.6183723776933645], [-23, -33, -1, -0.05552910721800605], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 3.579622103084115], [4, 0, 0, 2.4156135388573103], [113, -49, 1, -0.4599109362885113], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 3.17202086962263], [7, 37, -1, 0.07796429905292322], [65, 173, 1, -0.08113327643440002]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 72, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 2.7257924086809413], [-123, 98, 1, 0.2405227212424139], [0, 5, -1, 2.8749999999999996], [-2, -7, 1, 1.6081122528948935], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -9, -1, 0.04183398847449771], [-109, 66, 1, 0.43727930721191244], [-39, -152, -1, 0.24176788503466556], [6, -3, 1, 0.0041873215521526855], [-117, 50, -1, 0.45308111803144985], [4, -3, 1, 3.036388453006295], [-47, -32, -1, 0.23925025834599004], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [31, 10, -1, 0.6670699193332094], [-19, -19, 0, -0.06180284349225656], [10, 5, -1, 1.5852770070855957], [-2, 3, 1, 3.711955898598864], [-21, -32, -1, -0.059974774884026215], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 3.6506220063391814], [4, 0, 0, 2.4156135388573103], [115, -50, 1, -0.46006550562459414], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 3.2656043905281296], [8, 35, -1, 0.08396951721076056], [66, 175, 1, -0.08133127033060995]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 73, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 2.8118028434922566], [-125, 99, 1, 0.24098602538675165], [2, 6, -1, 2.926208191174783], [0, -8, 1, 1.6524050192863458], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -8, -1, 0.036237880730412786], [-111, 67, 1, 0.43750087741506194], [-40, -154, -1, 0.24223958606415438], [4, -4, 1, -0.047020869622630676], [-119, 51, -1, 0.4532453645604401], [3, -1, 1, 3.0875966441810783], [-48, -30, -1, 0.24548261889801348], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [33, 9, -1, 0.6743576357020525], [-19, -19, 0, -0.06180284349225656], [11, 3, -1, 1.6166934861800963], [-4, 2, 1, 3.794580568868148], [-19, -31, -1, -0.064893167288556], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 5, 1, 3.712195189178299], [4, 0, 0, 2.4156135388573103], [117, -51, 1, -0.46021466672721234], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 3.3708126784478467], [7, 33, -1, 0.08147265855684635], [67, 177, 1, -0.08152461042119703]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 6, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 74, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 2.897813278303572], [-127, 100, 1, 0.24143678308921326], [4, 5, -1, 2.982388356261361], [2, -9, 1, 1.6872072629228778], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -9, -1, 0.03841794907205692], [-113, 68, 1, 0.4377149578573926], [-41, -156, -1, 0.2426984947747733], [6, -3, 1, 0.0041873215521526855], [-121, 52, -1, 0.45340404341423585], [4, 1, 1, 3.1777944005445464], [-49, -28, -1, 0.2517617908734059], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [35, 8, -1, 0.6809690722116228], [-19, -19, 0, -0.06180284349225656], [10, 1, -1, 1.6432060571955356], [-3, 0, 1, 3.8683723776933645], [-18, -29, -1, -0.06399544546225344], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 6, 1, 3.7719213956339877], [4, 0, 0, 2.4156135388573103], [119, -52, 1, -0.46035869831060006], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 3.461010434811315], [6, 31, -1, 0.0786335757768324], [68, 179, 1, -0.08171345832928306]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 75, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 2.98801103466704], [-129, 101, 1, 0.24187549023793944], [5, 3, -1, 3.0389895651886842], [3, -7, 1, 1.7168455484909242], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -8, -1, 0.033445975160262285], [-115, 69, 1, 0.43792192125580726], [-42, -158, -1, 0.24314511725765628], [4, -4, 1, -0.047020869622630676], [-123, 53, -1, 0.45355743267637344], [6, 2, 1, 3.1900130265306452], [-50, -26, -1, 0.2580685955141423], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [37, 7, -1, 0.6869742903694602], [-19, -19, 0, -0.06180284349225656], [11, -1, -1, 1.6734977850989645], [-4, -2, 1, 3.942164186518581], [-19, -31, -1, -0.064893167288556], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 5, 1, 3.829622103084115], [4, 0, 0, 2.4156135388573103], [121, -53, 1, -0.4604978602772556], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 3.54702086962263], [7, 29, -1, 0.08590127505950779], [69, 181, 1, -0.08189796830439801]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 76, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 5, -1, 2.9973623142876784], [-131, 102, 1, 0.24230261729035185], [6, 1, -1, 3.0987157716443727], [5, -6, 1, 1.7629760500981937], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -7, -1, 0.02885623994456421], [-117, 70, 1, 0.4381221160471944], [-43, -160, -1, 0.24357993363831262], [6, -3, 1, 0.0041873215521526855], [-125, 54, -1, 0.4537057922338052], [4, 3, 1, 3.2412212177054287], [-51, -24, -1, 0.26438333990525914], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [39, 6, -1, 0.6924380702590042], [-19, -19, 0, -0.06180284349225656], [10, -3, -1, 1.7054556054496834], [-3, -4, 1, 4.0159559953437975], [-18, -33, -1, -0.07293152021421985], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 4, 1, 3.900622006339181], [4, 0, 0, 2.4156135388573103], [123, -54, 1, -0.4606323952774112], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 3.6330313044339455], [6, 27, -1, 0.08300786762614676], [70, 183, 1, -0.08207828763685336]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 77, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 2.98801103466704], [-133, 103, 1, 0.24271861085932445], [5, -1, -1, 3.1564164790945], [6, -4, 1, 1.8088214983808466], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -9, -1, 0.036237880730412786], [-119, 71, 1, 0.43831586833019737], [-44, -162, -1, 0.24400339969599605], [5, -5, 1, -0.047020869622630676], [-127, 55, -1, 0.45384936523983516], [2, 4, 1, 3.3150130265306452], [-52, -22, -1, 0.27068618214938495], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [41, 5, -1, 0.6974191946878411], [-19, -19, 0, -0.06180284349225656], [11, -5, -1, 1.7269686903008583], [-1, -3, 1, 4.067164186518581], [-17, -31, -1, -0.07257225458721195], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 2, 1, 3.9744138151643975], [4, 0, 0, 2.4156135388573103], [125, -55, 1, -0.46076253011602375], [2, -2, 0, 0.5087787822945713], [6, 0, 1, 3.67202086962263], [5, 29, -1, 0.07537897685574613], [71, 185, 1, -0.08225455704457357]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 6, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 22, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 78, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 4, -1, 3.0392192258418236], [-135, 104, 1, 0.24312389518389813], [6, -3, -1, 3.198791808825216], [8, -3, 1, 1.8453048936763918], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -7, -1, 0.02993107608967642], [-121, 72, 1, 0.43850348362390423], [-45, -164, -1, 0.2444159483652849], [3, -4, 1, -0.06960448727306395], [-129, 56, -1, 0.4539883794382888], [0, 3, 1, 3.3888048353558617], [-53, -20, -1, 0.27695750347359577], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [43, 4, -1, 0.701970338571811], [-19, -19, 0, -0.06180284349225656], [10, -7, -1, 1.7562688720179198], [1, -4, 1, 4.157361942882049], [-16, -33, -1, -0.08055402819163844], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 4.048205623989614], [4, 0, 0, 2.4156135388573103], [127, -56, 1, -0.46088847702438773], [2, -2, 0, 0.5087787822945713], [5, 2, 1, 3.732580340418052], [7, 28, -1, 0.08719518917829944], [72, 187, 1, -0.08242691103449142]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 22, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 79, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 2, -1, 3.11301103466704], [-137, 105, 1, 0.24351887349406381], [5, -5, -1, 3.2499999999999996], [9, -1, 1, 1.8847933755477073], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -8, -1, 0.032226420922257665], [-123, 73, 1, 0.4386852484632515], [-46, -166, -1, 0.24481799112957883], [5, -3, 1, -0.008031304433946021], [-131, 57, -1, 0.45412304836401896], [-2, 4, 1, 3.4625966441810783], [-54, -18, -1, 0.28317826996790657], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [45, 3, -1, 0.7061383131152954], [-19, -19, 0, -0.06180284349225656], [11, -9, -1, 1.7682060571955356], [3, -3, 1, 4.2433723776933645], [-17, -35, -1, -0.08044249706547213], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -2, 1, 4.1219974328148306], [4, 0, 0, 2.4156135388573103], [129, -57, 1, -0.4610104348113153], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 3.79702086962263], [6, 30, -1, 0.07962210308411538], [73, 189, 1, -0.08259547824043083]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 80, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 0, -1, 3.1868028434922566], [-139, 106, 1, 0.24390392927827115], [3, -6, -1, 3.301208191174783], [10, 1, 1, 1.9182677780016228], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -10, -1, 0.03962364527244417], [-125, 74, 1, 0.4388614318485264], [-47, -168, -1, 0.2452099193153314], [6, -5, 1, -0.03259190043447843], [-133, 58, -1, 0.4542535724330035], [-3, 2, 1, 3.5452213144503624], [-55, -16, -1, 0.28933036754379327], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [47, 2, -1, 0.7099644980805182], [-19, -19, 0, -0.06180284349225656], [9, -10, -1, 1.7924376700890994], [4, -1, 1, 4.32938281250468], [-16, -37, -1, -0.08744607190519613], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 4.204622103084114], [4, 0, 0, 2.4156135388573103], [131, -58, 1, -0.4611285899069744], [2, -2, 0, 0.5087787822945713], [1, 4, 1, 3.8830313044339455], [8, 31, -1, 0.08840088537868669], [74, 191, 1, -0.08276038173923718]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 81, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -2, -1, 3.260594652317473], [-141, 107, 1, 0.24427942746153158], [1, -5, -1, 3.343583520905499], [8, 2, 1, 1.9413945844750307], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -12, -1, 0.04543494049322235], [-127, 75, 1, 0.439032286564276], [-48, -170, -1, 0.24559210529503994], [7, -3, 1, 0.013538601172791022], [-135, 59, -1, 0.4543801399336911], [-4, 0, 1, 3.6388048353558617], [-56, -14, -1, 0.2953968959540052], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [49, 1, -1, 0.7134853561885813], [-19, -19, 0, -0.06180284349225656], [7, -11, -1, 1.8188710595473443], [5, 1, 1, 4.399788856787866], [-17, -39, -1, -0.08698206463941587], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 4.298205623989614], [4, 0, 0, 2.4156135388573103], [133, -59, 1, -0.46124311731087514], [2, -2, 0, 0.5087787822945713], [-1, 5, 1, 3.953437348717131], [7, 33, -1, 0.08147265855684635], [75, 193, 1, -0.08292173934676672]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 6, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 22, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 82, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 0, -1, 3.1868028434922566], [-143, 108, 1, 0.2446457155012808], [-1, -6, -1, 3.4012842283556264], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -11, -1, 0.043810966824596856], [-129, 76, 1, 0.43919805038112536], [-49, -172, -1, 0.24596490360629483], [6, -5, 1, -0.03259190043447843], [-137, 60, -1, 0.45450292792986774], [-3, -2, 1, 3.732388356261361], [-57, -12, -1, 0.3013624110326122], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [51, 0, -1, 0.7167329654327687], [-19, -19, 0, -0.06180284349225656], [5, -10, -1, 1.8352770070855957], [6, 3, 0, 4.442164186518582], [-19, -40, -1, -0.08182802453926634], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 4.358765094785036], [4, 0, 0, 2.4156135388573103], [135, -60, 1, -0.461354181454111], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 4.01560439052813], [5, 32, -1, 0.0728741216299488], [76, 195, 1, -0.08307966389521176]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 83, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -2, -1, 3.260594652317473], [-145, 109, 1, 0.24500312440752425], [-3, -5, -1, 3.461010434811315], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -13, -1, 0.04958089672782689], [-131, 77, 1, 0.4393589471524353], [-50, -174, -1, 0.24632865199354076], [5, -3, 1, -0.008031304433946018], [-139, 61, -1, 0.45462210308411516], [-1, -3, 1, 3.8375966441810783], [-58, -10, -1, 0.3072131082765585], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [49, -1, -1, 0.719980574676956], [-19, -19, 0, -0.06180284349225656], [3, -11, -1, 1.8666934861800963], [6, 3, 0, 4.442164186518582], [-18, -42, -1, -0.08796449008176715], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 4.423205623989614], [4, 0, 0, 2.4156135388573103], [137, -61, 1, -0.46146193698476323], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 4.120812678447847], [3, 31, -1, 0.06355990218865971], [77, 197, 1, -0.08323426349311648]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 84, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 3.3432193225867572], [-147, 110, 1, 0.24535196969321563], [-5, -6, -1, 3.4855710308118475], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -11, -1, 0.043810966824596856], [-133, 78, 1, 0.4395151878163647], [-51, -176, -1, 0.2466836723786175], [7, -4, 1, -0.004645539891914626], [-141, 62, -1, 0.45473782240988314], [0, -5, 1, 3.8888048353558617], [-59, -8, -1, 0.31293694503121494], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [47, -2, -1, 0.7235014327850191], [-19, -19, 0, -0.06180284349225656], [1, -10, -1, 1.8932060571955356], [6, 3, 0, 4.442164186518582], [-17, -44, -1, -0.09372524388058855], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -2, 1, 4.487646153194192], [4, 0, 0, 2.4156135388573103], [139, -62, 1, -0.4615665294843339], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 4.211010434811315], [2, 33, -1, 0.05783959415327354], [78, 199, 1, -0.08338564176932729]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 85, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 3.4368028434922566], [-149, 111, 1, 0.24569255226029865], [-6, -4, -1, 3.5314164790945], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -9, -1, 0.037658869248710126], [-135, 79, 1, 0.43966697131270904], [-52, -178, -1, 0.24703027176561695], [5, -3, 1, -0.008031304433946018], [-143, 63, -1, 0.4548502339592889], [1, -3, 1, 3.9400130265306452], [-60, -6, -1, 0.31852370242741307], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [45, -3, -1, 0.7273276177502419], [-19, -19, 0, -0.06180284349225656], [-1, -9, -1, 1.926680459649451], [6, 3, 0, 4.442164186518582], [-18, -46, -1, -0.09304217964928105], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, 0, 1, 4.548205623989614], [4, 0, 0, 2.4156135388573103], [141, -63, 1, -0.46166809612216836], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 4.297020869622631], [1, 31, -1, 0.05333787472848865], [79, 201, 1, -0.0835338981020207]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, -2], "using": [-1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 86, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 3.530386364397756], [-151, 112, 1, 0.24602515922636858], [-5, -2, -1, 3.5644405292045778], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, -8, -1, 0.03549067991458923], [-137, 80, 1, 0.4398144854228397], [-53, -180, -1, 0.2473687430851148], [4, -5, 1, -0.06463251336126931], [-145, 64, -1, 0.4549594774529559], [0, -5, 1, 3.8888048353558617], [-61, -4, -1, 0.3239649915023399], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [43, -4, -1, 0.7314955922937263], [-19, -19, 0, -0.06180284349225656], [-3, -10, -1, 1.9554556054496834], [6, 3, 0, 4.442164186518582], [-19, -48, -1, -0.09241804581699074], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 2, 1, 4.608765094785036], [4, 0, 0, 2.4156135388573103], [143, -64, 1, -0.46176676625403523], [2, -2, 0, 0.5087787822945713], [-5, -4, 1, 4.279409225883992], [0, 29, -1, 0.0482056239896148], [80, 203, 1, -0.08367912783385986]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 87, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 3.4368028434922566], [-153, 113, 1, 0.246350064696488], [-6, 0, -1, 3.6249999999999996], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -6, -1, 0.028517972774657008], [-139, 81, 1, 0.439957907540155], [-54, -182, -1, 0.24769936598240097], [3, -3, 1, -0.04702086962263067], [-147, 65, -1, 0.45506568485750704], [1, -3, 1, 3.9400130265306452], [-62, -2, -1, 0.3292542104038159], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [41, -5, -1, 0.7360467361776962], [-19, -19, 0, -0.06180284349225656], [-5, -11, -1, 1.976968690300858], [6, 3, 0, 4.442164186518582], [-21, -47, -1, -0.0855286352444598], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 4, 1, 4.673205623989614], [4, 0, 0, 2.4156135388573103], [145, -65, 1, -0.4618626619703428], [2, -2, 0, 0.5087787822945713], [-4, -6, 1, 4.328437348717131], [1, 31, -1, 0.05333787472848865], [81, 205, 1, -0.08382142247424781]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 88, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 3.530386364397756], [-155, 114, 1, 0.24666753048430318], [-5, 2, -1, 3.6855594707954213], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -5, -1, 0.023679664342686615], [-141, 82, 1, 0.4400974053776506], [-55, -184, -1, 0.2480224075539402], [5, -4, 1, -0.02940922588399203], [-149, 66, -1, 0.4551689809157156], [3, -2, 1, 4.045221314450362], [-63, 0, -1, 0.3343864611426899], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [39, -6, -1, 0.7410278606065331], [-19, -19, 0, -0.06180284349225656], [-7, -10, -1, 2.0062688720179196], [6, 3, 0, 4.442164186518582], [-23, -46, -1, -0.0786132104611288], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 4.737646153194192], [4, 0, 0, 2.4156135388573103], [147, -66, 1, -0.4619558985988637], [2, -2, 0, 0.5087787822945713], [-2, -7, 1, 4.377728103231178], [0, 29, -1, 0.0482056239896148], [82, 207, 1, -0.08396086988956866]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 89, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 3.635594652317473], [-157, 115, 1, 0.24697780678625786], [-6, 4, -1, 3.718583520905499], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, -3, -1, 0.016446168650130016], [-143, 83, 1, 0.4402331376185066], [-56, -186, -1, 0.24833812303593805], [3, -3, 1, -0.04702086962263067], [-151, 67, -1, 0.45526948363377684], [5, -1, 1, 4.107388356261361], [-61, 1, -1, 0.3369953248808442], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [37, -7, -1, 0.7464916404960771], [-19, -19, 0, -0.06180284349225656], [-6, -8, -1, 2.0114851982603787], [6, 3, 0, 4.442164186518582], [-21, -47, -1, -0.0855286352444598], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 4.798205623989614], [4, 0, 0, 2.4156135388573103], [149, -67, 1, -0.4620465851663096], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 4.42202086962263], [-1, 31, -1, 0.04307337325074092], [83, 209, 1, -0.08409755448223895]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 90, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 3.7257924086809413], [-159, 116, 1, 0.24728113281238445], [-4, 5, -1, 3.767611643738638], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -5, -1, 0.024613113716194967], [-145, 84, 1, 0.44036525451496933], [-57, -188, -1, 0.24864675644856232], [5, -4, 1, -0.02940922588399203], [-153, 68, -1, 0.45536730472969006], [3, 0, 1, 4.138804835355861], [-59, 2, -1, 0.3397794788952298], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [35, -8, -1, 0.7524968586539145], [-19, -19, 0, -0.06180284349225656], [-7, -10, -1, 2.0062688720179196], [6, 3, 0, 4.442164186518582], [-20, -49, -1, -0.09072869003063044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 4.891789144895114], [4, 0, 0, 2.4156135388573103], [151, -68, 1, -0.4621348248226307], [2, -2, 0, 0.5087787822945713], [2, -7, 1, 4.466313636014082], [-2, 29, -1, 0.03724677335339935], [84, 211, 1, -0.08423155735932739]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 91, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 2, -1, 3.73801103466704], [-161, 117, 1, 0.2475777373768644], [-2, 6, -1, 3.823791808825216], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -4, -1, 0.021513084851174764], [-147, 85, 1, 0.44049389844025194], [-58, -190, -1, 0.24894854119907903], [3, -3, 1, -0.04702086962263067], [-155, 69, -1, 0.45546255004632213], [4, 2, 1, 4.212596644181078], [-57, 3, -1, 0.3427553153209769], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [33, -9, -1, 0.7591082951634848], [-19, -19, 0, -0.06180284349225656], [-6, -8, -1, 2.0114851982603787], [6, 3, 0, 4.442164186518582], [-18, -50, -1, -0.09740814052377621], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 4.996997432814831], [4, 0, 0, 2.4156135388573103], [153, -69, 1, -0.46222071523150343], [2, -2, 0, 0.5087787822945713], [4, -8, 1, 4.495812678447846], [-3, 31, -1, 0.03285134579056986], [85, 213, 1, -0.08436295649144374]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 92, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 3.7257924086809413], [-163, 118, 1, 0.24786783945128654], [0, 5, -1, 3.8749999999999996], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -3, -1, 0.016735716438187245], [-149, 86, 1, 0.4406192043976939], [-59, -192, -1, 0.24924370064689172], [5, -4, 1, -0.02940922588399203], [-157, 70, -1, 0.45555531993235465], [2, 3, 1, 4.2952213144503615], [-55, 4, -1, 0.3459410230696694], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [31, -10, -1, 0.766396011532328], [-19, -19, 0, -0.06180284349225656], [-5, -6, -1, 2.0196398467226597], [6, 3, 0, 4.442164186518582], [-19, -52, -1, -0.09665078077373787], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 5.087195189178299], [4, 0, 0, 2.4156135388573103], [155, -70, 1, -0.4623043489301069], [2, -2, 0, 0.5087787822945713], [3, -6, 1, 4.495812678447846], [-2, 33, -1, 0.038571653825956065], [86, 215, 1, -0.08449182686254422]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 93, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -1, -1, 3.655386364397756], [-165, 119, 1, 0.24815164868329437], [2, 6, -1, 3.926208191174783], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -4, -1, 0.019933435055371936], [-151, 87, 1, 0.4407413004909865], [-60, -194, -1, 0.24953244863323187], [3, -3, 1, -0.04702086962263067], [-159, 71, -1, 0.4556457095939877], [0, 4, 1, 4.388804835355861], [-53, 5, -1, 0.34935677158706047], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [29, -11, -1, 0.774433672882896], [-19, -19, 0, -0.06180284349225656], [-3, -7, -1, 1.9735093451153902], [6, 3, 0, 4.442164186518582], [-21, -51, -1, -0.0902379774753466], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 5.173205623989615], [4, 0, 0, 2.4156135388573103], [157, -71, 1, -0.4623858136609681], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 4.495812678447846], [0, 32, -1, 0.0482056239896148], [87, 217, 1, -0.08461824061125155]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 94, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 3.7257924086809413], [-167, 120, 1, 0.2484293658830964], [4, 5, -1, 3.982388356261361], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -5, -1, 0.024613113716194967], [-153, 88, 1, 0.4408603083588909], [-61, -196, -1, 0.24981498997802568], [5, -4, 1, -0.02940922588399203], [-161, 72, -1, 0.45573380941998537], [-2, 3, 1, 4.482388356261361], [-51, 6, -1, 0.3530248967197925], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [27, -12, -1, 0.783295434806597], [-19, -19, 0, -0.06180284349225656], [-2, -9, -1, 1.9438710595473438], [6, 3, 0, 4.442164186518582], [-20, -49, -1, -0.09072869003063044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 5.259216058800931], [4, 0, 0, 2.4156135388573103], [159, -72, 1, -0.4624651926783721], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 4.57843734871713], [-2, 33, -1, 0.038571653825956065], [88, 219, 1, -0.08474226716424475]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 95, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 3.8118028434922566], [-169, 121, 1, 0.24870118348011566], [5, 3, -1, 4.038989565188684], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -4, -1, 0.021513084851174764], [-155, 89, 1, 0.44097634357753385], [-62, -198, -1, 0.25009152094626175], [3, -3, 1, -0.04702086962263067], [-163, 73, -1, 0.45581970528238946], [-3, 1, 1, 4.587596644181079], [-49, 7, -1, 0.3569700787931232], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [25, -13, -1, 0.7930508310613164], [-19, -19, 0, -0.06180284349225656], [-4, -10, -1, 1.9696282867062336], [6, 3, 0, 4.442164186518582], [-22, -48, -1, -0.08400622821366874], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 5.329622103084116], [4, 0, 0, 2.4156135388573103], [161, -73, 1, -0.46254256503158253], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 4.640604390528129], [0, 32, -1, 0.0482056239896148], [89, 221, 1, -0.08486397336223095]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 96, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 3.897813278303572], [-171, 122, 1, 0.24896728595187365], [6, 1, -1, 4.098715771644373], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -6, -1, 0.03040758647151405], [-157, 90, 1, 0.44108951603306445], [-63, -200, -1, 0.25036222968599836], [5, -4, 1, -0.02940922588399203], [-165, 74, -1, 0.45590347881499893], [-4, -1, 1, 4.677794400544546], [-47, 8, -1, 0.36121949747169635], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [23, -14, -1, 0.8037571122877804], [-19, -19, 0, -0.06180284349225656], [-6, -11, -1, 1.9885423149829375], [6, 3, 0, 4.442164186518582], [-20, -47, -1, -0.08837362785169815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -4, 1, 5.400622006339182], [4, 0, 0, 2.4156135388573103], [163, -74, 1, -0.4626180058268924], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 4.672020869622629], [1, 34, -1, 0.05288530265043781], [90, 223, 1, -0.0849834235789757]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 97, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 3.98801103466704], [-173, 123, 1, 0.2492278502270396], [5, -1, -1, 4.1564164790945], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -5, -1, 0.02511517811733116], [-159, 91, 1, 0.44119993026718646], [-64, -202, -1, 0.2506272966399833], [3, -3, 1, -0.04702086962263067], [-167, 75, -1, 0.45598520767150813], [-3, -3, 1, 4.763804835355862], [-45, 9, -1, 0.36580294023719045], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [21, -15, -1, 0.815448737077142], [-19, -19, 0, -0.06180284349225656], [-8, -10, -1, 2.0164571721721734], [6, 3, 0, 4.442164186518582], [-19, -49, -1, -0.09353264017095021], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 5.4621951891783], [4, 0, 0, 2.4156135388573103], [165, -75, 1, -0.46269158647032865], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 4.703437348717129], [-1, 33, -1, 0.04338422235370261], [91, 225, 1, -0.08510067983383268]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 98, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 4, -1, 4.039219225841824], [-175, 124, 1, 0.2494830460644263], [6, -3, -1, 4.1987918088252165], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -3, -1, 0.017360258463693483], [-161, 92, 1, 0.44130768579783863], [-65, -204, -1, 0.2508868949327039], [5, -4, 1, -0.02940922588399203], [-169, 76, -1, 0.45606496576501604], [-1, -4, 1, 4.849815270167178], [-43, 10, -1, 0.3707528307658756], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [19, -16, -1, 0.8281243752833584], [-19, -19, 0, -0.06180284349225656], [-10, -9, -1, 2.042437670089099], [6, 3, 0, 4.442164186518582], [-20, -47, -1, -0.08837362785169815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -4, 1, 5.465580953720331], [4, 0, 0, 2.4156135388573103], [167, -76, 1, -0.46276337489265534], [2, -2, 0, 0.5087787822945713], [4, 3, 1, 4.774437251972195], [1, 34, -1, 0.05288530265043781], [92, 227, 1, -0.0852158018981823]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 99, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 2, -1, 4.11301103466704], [-177, 125, 1, 0.2497330364095746], [5, -5, -1, 4.25], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -4, -1, 0.022433045374550837], [-163, 93, 1, 0.44141287741708307], [-66, -206, -1, 0.25114119073454494], [3, -3, 1, -0.04702086962263067], [-171, 77, -1, 0.4561428234904551], [1, -3, 1, 4.940013026530646], [-42, 12, -1, 0.3786792275341423], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [17, -17, -1, 0.8417329654327688], [-19, -19, 0, -0.06180284349225656], [-9, -7, -1, 2.0538605279910946], [6, 3, 0, 4.442164186518582], [-22, -48, -1, -0.08400622821366874], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 5.4621951891783], [4, 0, 0, 2.4156135388573103], [169, -77, 1, -0.462833435758163], [2, -2, 0, 0.5087787822945713], [2, 4, 1, 4.8482290607974114], [3, 35, -1, 0.061814214139025256], [93, 229, 1, -0.08532884739615983]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 100, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 0, -1, 4.186802843492257], [-179, 126, 1, 0.2499779777304446], [3, -6, -1, 4.3012081911747835], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -6, -1, 0.03184245316758332], [-165, 94, 1, 0.44151559546806557], [-67, -208, -1, 0.2513903436046054], [5, -4, 1, -0.02940922588399203], [-173, 78, -1, 0.4562188479313435], [0, -5, 1, 4.888804835355862], [-43, 14, -1, 0.38448169882916167], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [15, -18, -1, 0.856161934620921], [-19, -19, 0, -0.06180284349225656], [-10, -5, -1, 2.0852770070855953], [6, 3, 0, 4.442164186518582], [-20, -47, -1, -0.08837362785169815], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 5.5219213956339885], [4, 0, 0, 2.4156135388573103], [171, -78, 1, -0.4629018306585904], [2, -2, 0, 0.5087787822945713], [0, 3, 1, 4.922020869622628], [2, 33, -1, 0.05783959415327354], [94, 231, 1, -0.08543987190002648]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 101, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -1, -1, 4.218219322586757], [-181, 127, 1, 0.2502180203336154], [1, -5, -1, 4.3435835209055], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -5, -1, 0.026199323085958223], [-167, 95, 1, 0.44161592610274314], [-68, -210, -1, 0.25163450681360383], [3, -3, 1, -0.04702086962263067], [-175, 79, -1, 0.456293103052134], [1, -3, 1, 4.940013026530646], [-42, 16, -1, 0.3923155112526297], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [13, -19, -1, 0.8712320078665331], [-19, -19, 0, -0.06180284349225656], [-11, -3, -1, 2.116693486180096], [6, 3, 0, 4.442164186518582], [-19, -45, -1, -0.08882015357454455], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 1, 1, 5.570789241640049], [4, 0, 0, 2.4156135388573103], [173, -79, 1, -0.46296861829339936], [2, -2, 0, 0.5087787822945713], [-2, 4, 1, 4.9958126784478445], [3, 35, -1, 0.061814214139025256], [95, 233, 1, -0.08554892902051218]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 102, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -3, -1, 4.289219225841823], [-183, 128, 1, 0.2504533086622891], [-1, -6, -1, 4.401284228355627], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -7, -1, 0.03538679289077193], [-169, 96, 1, 0.4417139515219178], [-69, -212, -1, 0.2518738276481991], [5, -4, 1, -0.02940922588399203], [-177, 80, -1, 0.4563656498773163], [0, -5, 1, 4.888804835355862], [-43, 18, -1, 0.39748205101259887], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [11, -20, -1, 0.8867029828133992], [-19, -19, 0, -0.06180284349225656], [-10, -1, -1, 2.143206057195535], [6, 3, 0, 4.442164186518582], [-20, -43, -1, -0.08311639355461052], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 5.548205623989616], [4, 0, 0, 2.4156135388573103], [175, -80, 1, -0.4630338546375086], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 5.078437348717128], [4, 37, -1, 0.06534499925358594], [96, 235, 1, -0.08565607049243605]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 103, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -5, -1, 4.311802843492256], [-185, 129, 1, 0.2506839815773007], [-3, -5, -1, 4.461010434811316], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -8, -1, 0.04160062362254332], [-171, 97, 1, 0.4418097501989749], [-70, -214, -1, 0.25210844769795], [3, -3, 1, -0.04702086962263067], [-179, 81, -1, 0.4564365466583241], [1, -3, 1, 4.940013026530646], [-42, 20, -1, 0.4051179752034443], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [9, -21, -1, 0.9022924362281906], [-19, -19, 0, -0.06180284349225656], [-11, 1, -1, 2.173497785098964], [6, 3, 0, 4.442164186518582], [-21, -45, -1, -0.08291364851384535], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 5.621997432814832], [4, 0, 0, 2.4156135388573103], [177, -81, 1, -0.4630975930974939], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 5.172020869622628], [2, 38, -1, 0.05657447816790187], [97, 237, 1, -0.08576134625588967]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 104, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -6, -1, 4.363011034667039], [-187, 130, 1, 0.2509101726222427], [-5, -6, -1, 4.485571030811848], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -7, -1, 0.039096644075707176], [-173, 98, 1, 0.44190339708860277], [-71, -216, -1, 0.2523385031260495], [5, -4, 1, -0.02940922588399203], [-181, 82, -1, 0.456505849029205], [3, -2, 1, 5.045221314450363], [-43, 22, -1, 0.4096518847364448], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [7, -22, -1, 0.9177048425996296], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 2.2054556054496826], [6, 3, 0, 4.442164186518582], [-23, -44, -1, -0.07574586409566841], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 5.704622103084116], [4, 0, 0, 2.4156135388573103], [179, -82, 1, -0.4631598846571671], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 5.265604390528127], [1, 36, -1, 0.05262545807626643], [98, 239, 1, -0.08586480453324827]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 105, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -5, -1, 4.4053863643977555], [-189, 131, 1, 0.25113201027373583], [-6, -4, -1, 4.531416479094501], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [30, -6, -1, 0.03623788073041278], [-175, 99, 1, 0.44199496382165493], [-72, -218, -1, 0.2525641249248856], [3, -3, 1, -0.04702086962263067], [-183, 83, -1, 0.4565736101519248], [5, -1, 1, 5.107388356261362], [-42, 24, -1, 0.4170111314119738], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [5, -23, -1, 0.9326641495219565], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 2.226968690300857], [6, 3, 0, 4.442164186518582], [-25, -45, -1, -0.07169778567779785], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 5.798205623989616], [4, 0, 0, 2.4156135388573103], [181, -83, 1, -0.4632207780133688], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 5.3708126784478445], [2, 34, -1, 0.05755690361025313], [99, 241, 1, -0.08596649190225784]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 106, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 4.475792408680941], [-191, 132, 1, 0.251349618177799], [-5, -2, -1, 4.564440529204579], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -7, -1, 0.039096644075707176], [-177, 100, 1, 0.4420845188872152], [-73, -220, -1, 0.2527854391574026], [5, -4, 1, -0.02940922588399203], [-185, 84, -1, 0.45663988085210344], [3, 0, 1, 5.138804835355862], [-43, 26, -1, 0.4209400847769798], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [3, -24, -1, 0.946941253352486], [-19, -19, 0, -0.06180284349225656], [-10, 7, -1, 2.2562688720179187], [6, 3, 0, 4.442164186518582], [-23, -44, -1, -0.07574586409566841], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 5.891789144895116], [4, 0, 0, 2.4156135388573103], [183, -84, 1, -0.46328031970273165], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 5.422020869622628], [3, 32, -1, 0.06308291577532368], [100, 243, 1, -0.08606645336542855]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 107, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 4.5228132783035715], [-193, 133, 1, 0.2515631153732047], [-6, 0, -1, 4.625000000000001], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -5, -1, 0.028753757703034726], [-179, 101, 1, 0.44217212780283605], [-74, -222, -1, 0.2530025671851686], [3, -3, 1, -0.04702086962263067], [-187, 85, -1, 0.4567047097459078], [4, 2, 1, 5.212596644181079], [-42, 28, -1, 0.42796998204818926], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, -25, -1, 0.9603701597587729], [-19, -19, 0, -0.06180284349225656], [-11, 9, -1, 2.2682060571955347], [6, 3, 0, 4.442164186518582], [-24, -46, -1, -0.07586943157324044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 5.996997432814833], [4, 0, 0, 2.4156135388573103], [185, -85, 1, -0.4633385542201079], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 5.4958126784478445], [1, 31, -1, 0.05333787472848867], [101, 245, 1, -0.08616473241595045]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 108, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 4.5303863643977555], [-195, 134, 1, 0.25177261650264227], [-5, 2, -1, 4.685559470795423], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -4, -1, 0.022931962057181593], [-181, 102, 1, 0.4422578532738346], [-75, -224, -1, 0.25321562588398905], [5, -4, 1, -0.02940922588399203], [-189, 86, -1, 0.4567681433587673], [2, 3, 1, 5.295221314450362], [-43, 30, -1, 0.4313378378535918], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, -26, -1, 0.9728512936598961], [-19, -19, 0, -0.06180284349225656], [-9, 10, -1, 2.2924376700890985], [6, 3, 0, 4.442164186518582], [-25, -44, -1, -0.07017043388077628], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 6.048205623989617], [4, 0, 0, 2.4156135388573103], [187, -86, 1, -0.4633955241292933], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 5.578437348717128], [2, 33, -1, 0.05783959415327356], [102, 247, 1, -0.08626137110033255]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 109, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -4, -1, 4.561802843492256], [-197, 135, 1, 0.2519782320124525], [-6, 4, -1, 4.718583520905501], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -2, -1, 0.013654263079979505], [-183, 103, 1, 0.44234175534245895], [-76, -226, -1, 0.25342472784784603], [3, -3, 1, -0.04702086962263067], [-191, 87, -1, 0.45683022623651975], [0, 4, 1, 5.388804835355862], [-42, 32, -1, 0.4380085396926438], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, -25, -1, 0.9857406693567436], [-19, -19, 0, -0.06180284349225656], [-7, 11, -1, 2.3188710595473436], [6, 3, 0, 4.442164186518582], [-27, -43, -1, -0.06316891250749124], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, -2, 1, 6.0994138151644], [4, 0, 0, 2.4156135388573103], [189, -87, 1, -0.46345127016662546], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 5.640604390528127], [4, 34, -1, 0.06684405956671739], [103, 249, 1, -0.08635641007795342]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 110, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 4.593219322586756], [-199, 136, 1, 0.2521800683416441], [-4, 5, -1, 4.76761164373864], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -3, -1, 0.017360258463693472], [-185, 104, 1, 0.4424238915276663], [-77, -228, -1, 0.25362998158188943], [5, -4, 1, -0.02940922588399203], [-193, 88, -1, 0.4568910010495446], [-2, 3, 1, 5.482388356261362], [-43, 34, -1, 0.44086796144574164], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, -24, -1, 0.999422656910604], [-19, -19, 0, -0.06180284349225656], [-5, 10, -1, 2.335277007085595], [6, 3, 0, 4.442164186518582], [-29, -42, -1, -0.05622681073093173], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -4, 1, 6.155593980250978], [4, 0, 0, 2.4156135388573103], [191, -88, 1, -0.46350583133798545], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 5.672020869622627], [6, 33, -1, 0.07683019751396489], [104, 251, 1, -0.08644988867769925]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 111, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 4.686802843492255], [-201, 137, 1, 0.25237822810085164], [-2, 6, -1, 4.823791808825217], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -1, -1, 0.009121839688628766], [-187, 105, 1, 0.442504316956196], [-78, -230, -1, 0.25383149168515434], [3, -3, 1, -0.04702086962263067], [-195, 89, -1, 0.4569505086903936], [-3, 1, 1, 5.58759664418108], [-42, 36, -1, 0.44716783515659114], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, -23, -1, 1.0137538350553994], [-19, -19, 0, -0.06180284349225656], [-3, 11, -1, 2.3666934861800955], [6, 3, 0, 4.442164186518582], [-28, -44, -1, -0.06220726292287743], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -5, 1, 6.212195189178301], [4, 0, 0, 2.4156135388573103], [193, -89, 1, -0.46355924500968804], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 5.745812678447844], [4, 32, -1, 0.06799733606989761], [105, 253, 1, -0.08654184495185398]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 112, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 4.780386364397755], [-203, 138, 1, 0.2525728102418509], [0, 5, -1, 4.875000000000001], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, 0, -1, 0.0048214016359121896], [-189, 106, 1, 0.4425830844855624], [-79, -232, -1, 0.2540293590236325], [5, -4, 1, -0.02940922588399203], [-197, 90, -1, 0.45700878836538833], [-4, -1, 1, 5.677794400544547], [-43, 38, -1, 0.449574531742993], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, -22, -1, 1.0285358089250254], [-19, -19, 0, -0.06180284349225656], [-1, 10, -1, 2.3932060571955347], [6, 3, 0, 4.442164186518582], [-27, -42, -1, -0.06147383519715768], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 6.271921395633989], [4, 0, 0, 2.4156135388573103], [195, -90, 1, -0.4636115469937047], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 5.828437348717127], [3, 30, -1, 0.06406838270489158], [106, 255, 1, -0.08663231572739527]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 113, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 4.686802843492255], [-205, 139, 1, 0.2527639102182026], [2, 6, -1, 4.926208191174784], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, 1, -1, 0.0005209635831956126], [-191, 107, 1, 0.4426602448195418], [-80, -234, -1, 0.2542236808942833], [3, -3, 1, -0.04702086962263067], [-199, 91, -1, 0.45706587768061463], [-3, -3, 1, 5.763804835355863], [-42, 40, -1, 0.4555054027335333], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, -21, -1, 1.043527341443154], [-19, -19, 0, -0.06180284349225656], [1, 11, -1, 2.423497785098964], [6, 3, 0, 4.442164186518582], [-28, -40, -1, -0.05520496317923801], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 6.329622103084117], [4, 0, 0, 2.4156135388573103], [197, -91, 1, -0.4636627716276269], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 5.922020869622627], [4, 32, -1, 0.06799733606989761], [107, 257, 1, -0.08672133665484119]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-1, 2], "using": [-1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 114, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 4.780386364397755], [-207, 140, 1, 0.2529516201375595], [4, 5, -1, 4.982388356261362], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, 3, -1, -0.008410936393882748], [-193, 108, 1, 0.4427358466166831], [-81, -236, -1, 0.2544145511805283], [5, -4, 1, -0.02940922588399203], [-201, 92, -1, 0.4571218127227094], [-2, -5, 1, 5.828245364560441], [-43, 42, -1, 0.45751413642606625], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, -20, -1, 1.0584659308655373], [-19, -19, 0, -0.06180284349225656], [3, 10, -1, 2.4554556054496826], [6, 3, 0, 4.442164186518582], [-29, -42, -1, -0.05622681073093172], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -4, 1, 6.400622006339183], [4, 0, 0, 2.4156135388573103], [199, -92, 1, -0.4637129518497451], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 6.015604390528127], [3, 30, -1, 0.06406838270489158], [108, 259, 1, -0.08680894225478195]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 115, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 4.885594652317472], [-209, 141, 1, 0.2531360289061326], [5, 3, -1, 5.038989565188685], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, 5, -1, -0.017762216014521087], [-195, 109, 1, 0.442809936592328], [-82, -238, -1, 0.25460206049973794], [3, -3, 1, -0.04702086962263067], [-203, 93, -1, 0.4571766281348041], [-1, -3, 1, 5.83759664418108], [-41, 43, -1, 0.46317514873047577], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, -19, -1, 1.0730945298556662], [-19, -19, 0, -0.06180284349225656], [5, 11, -1, 2.476968690300857], [6, 3, 0, 4.442164186518582], [-31, -41, -1, -0.04936936012789671], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 6.462195189178301], [4, 0, 0, 2.4156135388573103], [201, -93, 1, -0.46376211926958716], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 6.1208126784478445], [4, 28, -1, 0.07078924164004807], [109, 261, 1, -0.0868951659622243]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 116, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 4.97579240868094], [-211, 142, 1, 0.2533172223657814], [6, 1, -1, 5.098715771644374], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, 4, -1, -0.012317973628058945], [-197, 110, 1, 0.4428825596145887], [-83, -240, -1, 0.25478629634318445], [5, -4, 1, -0.02940922588399203], [-205, 94, -1, 0.4572303571879601], [0, -5, 1, 5.888804835355863], [-39, 44, -1, 0.46896253573120433], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, -18, -1, 1.0871869180949445], [-19, -19, 0, -0.06180284349225656], [7, 10, -1, 2.5062688720179187], [6, 3, 0, 4.442164186518582], [-33, -42, -1, -0.046412723210320306], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 6.521921395633989], [4, 0, 0, 2.4156135388573103], [203, -94, 1, -0.4638103042342342], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 6.211010434811312], [6, 27, -1, 0.08300786762614679], [110, 263, 1, -0.0869800401688667]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 117, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 5.061802843492256], [-213, 143, 1, 0.2534952834241607], [5, -1, -1, 5.156416479094501], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 5, -1, -0.015472374845506771], [-199, 111, 1, 0.4429537587946973], [-84, -242, -1, 0.2549673432089026], [3, -3, 1, -0.04702086962263067], [-207, 95, -1, 0.4572830318484054], [1, -3, 1, 5.940013026530647], [-37, 45, -1, 0.47486478837592266], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -17, -1, 1.1005658268768361], [-19, -19, 0, -0.06180284349225656], [9, 11, -1, 2.5182060571955347], [6, 3, 0, 4.442164186518582], [-32, -40, -1, -0.04501666302498406], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 6.579622103084117], [4, 0, 0, 2.4156135388573103], [205, -95, 1, -0.46385753589070455], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 6.297020869622628], [7, 29, -1, 0.08590127505950781], [111, 265, 1, -0.08706359626341764]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 118, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 2, -1, 5.126243372696834], [-215, 144, 1, 0.25367029217832876], [6, -3, -1, 5.198791808825217], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 7, -1, -0.0241715854505272], [-201, 112, 1, 0.4430235755721058], [-85, -244, -1, 0.25514528272787257], [5, -4, 1, -0.02940922588399203], [-209, 96, -1, 0.45733468284085665], [3, -4, 1, 5.99122121770543], [-35, 46, -1, 0.4808686780844201], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-21, -16, -1, 1.1131108868828148], [-19, -19, 0, -0.06180284349225656], [10, 9, -1, 2.5424376700890985], [6, 3, 0, 4.442164186518582], [-30, -39, -1, -0.048047819206269105], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 6.650622006339183], [4, 0, 0, 2.4156135388573103], [207, -96, 1, -0.4639038422446763], [2, -2, 0, 0.5087787822945713], [-2, -5, 1, 6.361461398827206], [5, 28, -1, 0.07632971192127541], [112, 267, 1, -0.0871458646700608]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 119, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 5.186802843492256], [-217, 145, 1, 0.2538423260321943], [5, -5, -1, 5.250000000000001], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 5, -1, -0.015472374845506773], [-203, 113, 1, 0.44309204979469236], [-86, -246, -1, 0.25532019378390963], [3, -3, 1, -0.04702086962263067], [-211, 97, -1, 0.457385339708191], [5, -3, 1, 6.052794400544548], [-33, 47, -1, 0.4869593653278335], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-23, -15, -1, 1.1247570155428466], [-19, -19, 0, -0.06180284349225656], [11, 7, -1, 2.568871059547343], [6, 3, 0, 4.442164186518582], [-31, -37, -1, -0.04141182781182017], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 4, 1, 6.724413815164399], [4, 0, 0, 2.4156135388573103], [209, -97, 1, -0.4639492502157957], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 6.3708126784478445], [3, 27, -1, 0.06581726772825347], [113, 269, 1, -0.08722687488516666]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 120, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -1, -1, 5.206594555572538], [-219, 146, 1, 0.2540114598081551], [3, -6, -1, 5.301208191174784], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 4, -1, -0.010656925597320576], [-205, 114, 1, 0.4431592197943946], [-87, -248, -1, 0.25549215262762276], [5, -4, 1, -0.02940922588399203], [-213, 98, -1, 0.45743503086771], [3, -2, 1, 6.045221314450364], [-31, 48, -1, 0.49312056683593153], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-25, -14, -1, 1.1354862256090272], [-19, -19, 0, -0.06180284349225656], [10, 5, -1, 2.5852770070855944], [6, 3, 0, 4.442164186518582], [-32, -39, -1, -0.04304580472422117], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 3, 1, 6.798205623989616], [4, 0, 0, 2.4156135388573103], [211, -98, 1, -0.46399378568980126], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 6.422020869622628], [1, 26, -1, 0.05432395221674207], [114, 271, 1, -0.08730665551234203]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 121, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [9, -3, -1, 5.238011034667038], [-221, 147, 1, 0.25417776585326035], [1, -5, -1, 5.343583520905501], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, 2, -1, -0.0027516844582718813], [-207, 115, 1, 0.443225122458575], [-88, -250, -1, 0.2556612329847787], [3, -3, 1, -0.04702086962263067], [-215, 99, -1, 0.4574837836642203], [5, -1, 1, 6.107388356261363], [-29, 49, -1, 0.4993347794512749], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-27, -13, -1, 1.1453164271527374], [-19, -19, 0, -0.06180284349225656], [9, 3, -1, 2.607860624736028], [6, 3, 0, 4.442164186518582], [-34, -40, -1, -0.04028130658329724], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 4, 1, 6.871997432814832], [4, 0, 0, 2.4156135388573103], [213, -99, 1, -0.4640374735676751], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 6.4732290607974114], [2, 24, -1, 0.06143796201940977], [115, 273, 1, -0.08738523429590522]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 122, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -4, -1, 5.2694275137615385], [-223, 148, 1, 0.2543413141402039], [-1, -6, -1, 5.401284228355628], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, 3, -1, -0.007092913166362861], [-209, 116, 1, 0.44328979329739354], [-89, -252, -1, 0.2558275061593885], [5, -4, 1, -0.02940922588399203], [-217, 100, -1, 0.4575316244201406], [3, 0, 1, 6.138804835355863], [-27, 50, -1, 0.5055835547724716], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-29, -12, -1, 1.1542900921074823], [-19, -19, 0, -0.06180284349225656], [8, 1, -1, 2.6392771038305285], [6, 3, 0, 4.442164186518582], [-35, -38, -1, -0.0339419550255352], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 6.954622103084116], [4, 0, 0, 2.4156135388573103], [215, -100, 1, -0.46408033781201763], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 6.504645539891912], [4, 23, -1, 0.07561064327596029], [116, 275, 1, -0.08746263815286814]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 123, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 5.27281327830357], [-225, 149, 1, 0.2545021723634389], [-3, -5, -1, 5.461010434811317], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 1, -1, 0.0009403432267555871], [-211, 117, 1, 0.44335326650744783], [-90, -254, -1, 0.255991041131811], [3, -3, 1, -0.04702086962263067], [-219, 101, -1, 0.45757857848282507], [4, 2, 1, 6.21259664418108], [-25, 51, -1, 0.5118478149474379], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-31, -11, -1, 1.1624644794935233], [-19, -19, 0, -0.06180284349225656], [7, -1, -1, 2.6816524335612444], [6, 3, 0, 4.442164186518582], [-36, -36, -1, -0.02740501928634546], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 7.048205623989616], [4, 0, 0, 2.4156135388573103], [217, -101, 1, -0.4641224014908264], [2, -2, 0, 0.5087787822945713], [6, -8, 1, 6.524437251972194], [6, 22, -1, 0.09058095372033087], [117, 277, 1, -0.0875388932035024]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 124, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 5.280386364397754], [-227, 150, 1, 0.2546604060306864], [-5, -6, -1, 5.485571030811849], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, 2, -1, -0.0025758227142743213], [-213, 118, 1, 0.443415575031918], [-91, -256, -1, 0.2561519046521518], [5, -4, 1, -0.02940922588399203], [-221, 102, -1, 0.4576246702692839], [2, 3, 1, 6.295221314450363], [-23, 52, -1, 0.5181081967222945], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-33, -10, -1, 1.1699040799668292], [-19, -19, 0, -0.06180284349225656], [6, -3, -1, 2.732860624736028], [6, 3, 0, 4.442164186518582], [-38, -35, -1, -0.02086808354715572], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 7.141789144895115], [4, 0, 0, 2.4156135388573103], [219, -102, 1, -0.4641636868188477], [2, -2, 0, 0.5087787822945713], [5, -6, 1, 6.5325919004344755], [5, 20, -1, 0.08719518917829948], [118, 279, 1, -0.08761402480056232]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 125, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 5.385594652317471], [-229, 151, 1, 0.2548160785500888], [-6, -4, -1, 5.531416479094502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, 4, -1, -0.010290631783547551], [-215, 119, 1, 0.4434767506174392], [-92, -258, -1, 0.2563101613292167], [3, -3, 1, -0.04702086962263067], [-223, 103, -1, 0.45766992330846584], [0, 4, 1, 6.388804835355863], [-21, 53, -1, 0.5243454085238392], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-35, -9, -1, 1.176675262300794], [-19, -19, 0, -0.06180284349225656], [4, -4, -1, 2.7840688159108113], [6, 3, 0, 4.442164186518582], [-36, -36, -1, -0.02740501928634546], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 7.246997432814832], [4, 0, 0, 2.4156135388573103], [221, -103, 1, -0.4642042151966556], [2, -2, 0, 0.5087787822945713], [6, -4, 1, 6.578437348717128], [4, 18, -1, 0.08300786762614681], [119, 281, 1, -0.08768805755723251]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 126, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 5.475792408680939], [-231, 152, 1, 0.25496925131325077], [-5, -2, -1, 5.56444052920458], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, 3, -1, -0.007092913166362862], [-217, 120, 1, 0.4435368238679074], [-93, -260, -1, 0.2564658737152627], [5, -4, 1, -0.02940922588399203], [-225, 104, -1, 0.4577143602812557], [-2, 3, 1, 6.482388356261363], [-19, 54, -1, 0.5305405842555847], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-37, -8, -1, 1.1828427745233778], [-19, -19, 0, -0.06180284349225656], [3, -6, -1, 2.835277007085595], [6, 3, 0, 4.442164186518582], [-34, -35, -1, -0.0297114511926177], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -5, 1, 7.237646153194194], [4, 0, 0, 2.4156135388573103], [223, -104, 1, -0.4642440072476038], [2, -2, 0, 0.5087787822945713], [7, -2, 1, 6.627728103231175], [6, 17, -1, 0.10220572073454871], [120, 283, 1, -0.08776101537386505]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 127, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 5.52281327830357], [-233, 153, 1, 0.2551199837743878], [-6, 0, -1, 5.625000000000002], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, 2, -1, -0.002751684458271882], [-219, 121, 1, 0.44359582429540806], [-94, -262, -1, 0.25661910238677654], [3, -3, 1, -0.04702086962263067], [-227, 105, -1, 0.4577580030583304], [-3, 1, 1, 6.5875966441810805], [-17, 55, -1, 0.5366756177656156], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-39, -7, -1, 1.1884676575354267], [-19, -19, 0, -0.06180284349225656], [1, -5, -1, 2.8776523368163107], [6, 3, 0, 4.442164186518582], [-32, -34, -1, -0.03222642092225762], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 7.298205623989616], [4, 0, 0, 2.4156135388573103], [225, -105, 1, -0.46428308285278275], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 6.640604390528127], [7, 19, -1, 0.10438578907619285], [121, 285, 1, -0.08783292146356615]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 128, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -3, -1, 5.584386461142688], [-235, 154, 1, 0.2552683335257948], [-5, 2, -1, 5.685559470795424], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 0, -1, 0.004821401635912189], [-221, 122, 1, 0.44365378036844855], [-95, -264, -1, 0.256769906021494], [5, -4, 1, -0.02940922588399203], [-229, 106, -1, 0.4578008727360059], [-5, 0, 1, 6.638804835355864], [-15, 56, -1, 0.5427334635616454], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-41, -6, -1, 1.1936061589593612], [-19, -19, 0, -0.06180284349225656], [3, -4, -1, 2.8066524335612444], [6, 3, 0, 4.442164186518582], [-33, -32, -1, -0.02495667485139504], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 7.324489852345242], [4, 0, 0, 2.4156135388573103], [227, -106, 1, -0.4643214611841083], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 6.672020869622627], [9, 20, -1, 0.11550491653948754], [122, 287, 1, -0.08790379837669039]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 129, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -1, -1, 5.655386364397754], [-237, 155, 1, 0.2554143563698301], [-6, 4, -1, 5.718583520905502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -2, -1, 0.01239448773009626], [-223, 123, 1, 0.44371071955765573], [-96, -266, -1, 0.256918341471862], [3, -3, 1, -0.04702086962263067], [-231, 107, -1, 0.4578429896701975], [-4, -2, 1, 6.7125966441810805], [-13, 57, -1, 0.5486983920906963], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-43, -5, -1, 1.198309313724051], [-19, -19, 0, -0.06180284349225656], [5, -3, -1, 2.7450792507221267], [6, 3, 0, 4.442164186518582], [-35, -33, -1, -0.022725340625522384], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 7.371997432814832], [4, 0, 0, 2.4156135388573103], [229, -107, 1, -0.46435916073565553], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 6.745812678447844], [8, 22, -1, 0.10371425321711478], [123, 289, 1, -0.08797366802429582]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 130, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 5.725792408680939], [-239, 156, 1, 0.2555581063876018], [-4, 5, -1, 5.767611643738641], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -4, -1, 0.01958402849686983], [-225, 124, 1, 0.44376666837909523], [-97, -268, -1, 0.25706446383513243], [5, -4, 1, -0.02940922588399203], [-233, 108, -1, 0.45788437350861017], [-2, -3, 1, 6.795221314450364], [-11, 58, -1, 0.5545561914179524], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-45, -4, -1, 1.2026229435993951], [-19, -19, 0, -0.06180284349225656], [6, -5, -1, 2.7696398467226593], [6, 3, 0, 4.442164186518582], [-34, -35, -1, -0.0297114511926177], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -3, 1, 7.445789241640049], [4, 0, 0, 2.4156135388573103], [231, -108, 1, -0.46439619935334664], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 6.828437348717127], [10, 21, -1, 0.11893713805036933], [124, 291, 1, -0.08804255170061137]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 131, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 2, -1, 5.738011034667037], [-241, 157, 1, 0.2556996360045295], [-2, 6, -1, 5.823791808825218], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -6, -1, 0.027405019286345467], [-227, 125, 1, 0.44382165243535476], [-98, -270, -1, 0.2572083265202661], [3, -3, 1, -0.04702086962263067], [-235, 109, -1, 0.45792504322126326], [0, -4, 1, 6.888804835355864], [-9, 59, -1, 0.5602943110096904], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-47, -3, -1, 1.2065879021541404], [-19, -19, 0, -0.06180284349225656], [7, -3, -1, 2.72350934511539], [6, 3, 0, 4.442164186518582], [-33, -37, -1, -0.036489707961855376], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -1, 1, 7.516789144895115], [4, 0, 0, 2.4156135388573103], [233, -109, 1, -0.4644325942630923], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 6.922020869622627], [12, 20, -1, 0.13421605880093018], [125, 293, 1, -0.0881104701045644]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 132, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 5.725792408680939], [-243, 158, 1, 0.25583899605294536], [0, 5, -1, 5.875000000000002], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, -4, -1, 0.020299728869144953], [-229, 126, 1, 0.44387569645452446], [-99, -272, -1, 0.25734998131181375], [4, -5, 1, -0.06463251336126931], [-237, 110, -1, 0.45796501712945076], [2, -3, 1, 6.982388356261364], [-7, 60, -1, 0.5659019471260047], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-49, -2, -1, 1.2102404491574252], [-19, -19, 0, -0.06180284349225656], [8, -5, -1, 2.747972658155488], [6, 3, 0, 4.442164186518582], [-35, -38, -1, -0.0339419550255352], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 7.5871951891783], [4, 0, 0, 2.4156135388573103], [235, -110, 1, -0.4644683620974797], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 7.015604390528127], [13, 18, -1, 0.14775465997372123], [126, 295, 1, -0.08817744336041407]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 133, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 0, -1, 5.686802843492255], [-245, 159, 1, 0.2559762358318891], [2, 6, -1, 5.926208191174785], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -2, -1, 0.012772527264000376], [-231, 127, 1, 0.443928824327199], [-100, -274, -1, 0.2574894784309315], [3, -3, 1, -0.04702086962263067], [-239, 111, -1, 0.4580043129332296], [4, -2, 1, 7.0650130265306474], [-5, 61, -1, 0.5713700726996266], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-51, -1, -1, 1.213612680115893], [-19, -19, 0, -0.06180284349225656], [10, -4, -1, 2.7196282867062336], [6, 3, 0, 4.442164186518582], [-36, -40, -1, -0.03577387346463248], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 7.673205623989616], [4, 0, 0, 2.4156135388573103], [237, -111, 1, -0.4645035189210943], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 7.1208126784478445], [11, 19, -1, 0.13172946516145498], [127, 297, 1, -0.08824349103753353]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, -2], "using": [1, -2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 134, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-7, 2, -1, 5.731095609883707], [-247, 160, 1, 0.2561114031642417], [4, 5, -1, 5.982388356261363], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 0, -1, 0.004821401635912189], [-233, 128, 1, 0.4439810591416181], [-101, -276, -1, 0.25762686659367906], [4, -5, 1, -0.06463251336126931], [-241, 112, -1, 0.4580429477375222], [3, 0, 1, 7.138804835355864], [-3, 62, -1, 0.576691417261578], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-53, 0, -1, 1.2167329654327694], [-19, -19, 0, -0.06180284349225656], [11, -6, -1, 2.7385423149829373], [6, 3, 0, 4.442164186518582], [-35, -38, -1, -0.0339419550255352], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 7.737646153194194], [4, 0, 0, 2.4156135388573103], [239, -112, 1, -0.4645380802545558], [2, -2, 0, 0.5087787822945713], [-5, 0, 1, 7.172020869622628], [12, 17, -1, 0.1460322711234835], [128, 299, 1, -0.08830863216938131]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-1, 2], "using": [-1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 135, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 5.718219322586755], [-249, 161, 1, 0.25624454445133327], [5, 3, -1, 6.038989565188686], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 2, -1, -0.003547452542374867], [-235, 129, 1, 0.44403242321705316], [-102, -278, -1, 0.25776219306674025], [3, -3, 1, -0.04702086962263067], [-243, 113, -1, 0.4580809380769144], [4, 2, 1, 7.2125966441810805], [-1, 63, -1, 0.5818604043393587], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-51, 1, -1, 1.2198532507496456], [-19, -19, 0, -0.06180284349225656], [9, -5, -1, 2.7397760495193593], [6, 3, 0, 4.442164186518582], [-34, -40, -1, -0.04028130658329724], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 7.798205623989616], [4, 0, 0, 2.4156135388573103], [241, -113, 1, -0.4645720610973442], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 7.2232290607974114], [14, 18, -1, 0.15341391190933207], [129, 301, 1, -0.08837288527170077]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 136, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 3, -1, 5.789219225841821], [-251, 162, 1, 0.2563757047251563], [6, 1, -1, 6.0987157716443745], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, 1, -1, 0.0004015675492605583], [-237, 130, 1, 0.4440829381355406], [-103, -280, -1, 0.25789550372069675], [5, -4, 1, -0.02940922588399203], [-245, 114, -1, 0.45811829993922387], [5, 4, 1, 7.246193191617225], [1, 64, -1, 0.5868730547821649], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-49, 2, -1, 1.2232254817081134], [-19, -19, 0, -0.06180284349225656], [10, -7, -1, 2.756268872017919], [6, 3, 0, 4.442164186518582], [-32, -41, -1, -0.04692834217231655], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 7.891789144895116], [4, 0, 0, 2.4156135388573103], [243, -114, 1, -0.4646054759494864], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 7.328437348717129], [12, 17, -1, 0.1460322711234835], [130, 303, 1, -0.08843626835998346]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 137, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 4, -1, 5.863011034667037], [-253, 163, 1, 0.256504927698303], [5, -1, -1, 6.156416479094502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 2, -1, -0.003547452542374867], [-239, 131, 1, 0.4441326247720586], [-104, -282, -1, 0.25802684308097984], [3, -3, 1, -0.04702086962263067], [-247, 115, -1, 0.4581550487879094], [3, 5, 1, 7.302794400544548], [2, 62, -1, 0.5895187118815636], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-47, 3, -1, 1.2268780287113983], [-19, -19, 0, -0.06180284349225656], [11, -9, -1, 2.768206057195535], [6, 3, 0, 4.442164186518582], [-33, -39, -1, -0.040637357316140404], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 2, 1, 7.974413815164399], [4, 0, 0, 2.4156135388573103], [245, -115, 1, -0.46463833883216865], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 7.422020869622629], [10, 18, -1, 0.12891285759816246], [131, 305, 1, -0.08849879896623149]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 138, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 5.936802843492254], [-255, 164, 1, 0.25663225581174204], [6, -3, -1, 6.198791808825218], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 0, -1, 0.004821401635912189], [-241, 132, 1, 0.4441815033232333], [-105, -284, -1, 0.2581562543766156], [5, -4, 1, -0.02940922588399203], [-249, 116, -1, 0.45819119958338844], [2, 3, 1, 7.295221314450364], [3, 60, -1, 0.5923375867707779], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-45, 4, -1, 1.2308429872661435], [-19, -19, 0, -0.06180284349225656], [9, -10, -1, 2.792437670089099], [6, 3, 0, 4.442164186518582], [-32, -41, -1, -0.04692834217231655], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 8.048205623989617], [4, 0, 0, 2.4156135388573103], [247, -116, 1, -0.4646706633073369], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 7.515604390528129], [9, 16, -1, 0.1297549393862573], [132, 307, 1, -0.08856049415505078]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 139, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 6.0105946523174705], [-257, 165, 1, 0.25675773028054294], [5, -5, -1, 6.250000000000002], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, -2, -1, 0.012772527264000376], [-243, 133, 1, 0.444229593334659], [-106, -286, -1, 0.2582837795868753], [3, -3, 1, -0.04702086962263067], [-251, 117, -1, 0.4582267668033214], [0, 4, 1, 7.388804835355864], [4, 58, -1, 0.5953453117789052], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-43, 5, -1, 1.2351566171414876], [-19, -19, 0, -0.06180284349225656], [7, -11, -1, 2.8188710595473436], [6, 3, 0, 4.442164186518582], [-33, -39, -1, -0.040637357316140404], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -2, 1, 8.121997432814833], [4, 0, 0, 2.4156135388573103], [249, -117, 1, -0.4647024624963427], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 7.620812678447846], [8, 14, -1, 0.1308302942588988], [133, 309, 1, -0.08862137053910686]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 140, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 6.093219322586754], [-259, 166, 1, 0.2568813911376492], [3, -6, -1, 6.301208191174785], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -1, -1, 0.009008723188064878], [-245, 134, 1, 0.44427691372690853], [-107, -288, -1, 0.2584094594859335], [5, -4, 1, -0.02940922588399203], [-253, 118, -1, 0.45826176446192457], [-2, 3, 1, 7.482388356261364], [5, 56, -1, 0.5985591423992402], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-41, 6, -1, 1.2398597719061775], [-19, -19, 0, -0.06180284349225656], [5, -10, -1, 2.835277007085595], [6, 3, 0, 4.442164186518582], [-32, -41, -1, -0.04692834217231655], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 8.204622103084118], [4, 0, 0, 2.4156135388573103], [251, -118, 1, -0.46473374909768767], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 7.711010434811314], [6, 13, -1, 0.11702545890303687], [134, 311, 1, -0.08868144429397157]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 141, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 6.155386364397753], [-261, 167, 1, 0.2570032772757964], [1, -5, -1, 6.343583520905502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -3, -1, 0.017697688932863973], [-247, 135, 1, 0.44432348282030776], [-108, -290, -1, 0.25853333368563247], [3, -3, 1, -0.04702086962263067], [-255, 119, -1, 0.458296206128362], [-3, 1, 1, 7.587596644181081], [6, 54, -1, 0.6019981048813283], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-39, 7, -1, 1.244998273330112], [-19, -19, 0, -0.06180284349225656], [3, -11, -1, 2.8666934861800955], [6, 3, 0, 4.442164186518582], [-33, -43, -1, -0.048226846063372804], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 8.298205623989617], [4, 0, 0, 2.4156135388573103], [253, -119, 1, -0.4647645354039176], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 7.79702086962263], [4, 12, -1, 0.09941381516439823], [135, 313, 1, -0.08874073117238936]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 142, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -1, -1, 6.21308707184788], [-263, 168, 1, 0.25712342648766623], [-1, -6, -1, 6.401284228355629], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -1, -1, 0.009008723188064878], [-249, 136, 1, 0.44436931835854093], [-109, -292, -1, 0.258655440676446], [5, -4, 1, -0.02940922588399203], [-257, 120, -1, 0.4583301049442694], [-4, -1, 1, 7.677794400544549], [7, 52, -1, 0.605683139647729], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-37, 8, -1, 1.2506231563421608], [-19, -19, 0, -0.06180284349225656], [1, -10, -1, 2.8932060571955347], [6, 3, 0, 4.442164186518582], [-32, -45, -1, -0.054024310185047], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 8.324489852345243], [4, 0, 0, 2.4156135388573103], [255, -120, 1, -0.4647948333177134], [2, -2, 0, 0.5087787822945713], [1, 4, 1, 7.8830313044339455], [3, 14, -1, 0.0818021714257596], [136, 315, 1, -0.08879924651798883]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 143, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 6.272813278303569], [-265, 169, 1, 0.2572418755043618], [-3, -5, -1, 6.4610104348113175], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 1, -1, 0.000741399651507121], [-251, 137, 1, 0.44441443753115123], [-110, -294, -1, 0.2587758178667296], [3, -3, 1, -0.04702086962263067], [-259, 121, -1, 0.45836347364045626], [-3, -3, 1, 7.763804835355865], [8, 50, -1, 0.6096372303671961], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-35, 9, -1, 1.2567906685647448], [-19, -19, 0, -0.06180284349225656], [-1, -11, -1, 2.923497785098964], [6, 3, 0, 4.442164186518582], [-31, -43, -1, -0.05299120412194728], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 8.371997432814833], [4, 0, 0, 2.4156135388573103], [257, -121, 1, -0.46482465436722237], [2, -2, 0, 0.5087787822945713], [-1, 3, 1, 7.973229060797413], [2, 16, -1, 0.06799733606989766], [137, 317, 1, -0.08885700527846474]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 144, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -4, -1, 6.334386461142687], [-267, 170, 1, 0.25735866003228547], [-5, -6, -1, 6.48557103081185], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 3, -1, -0.007717455191869095], [-253, 138, 1, 0.44445885699499704], [-111, -296, -1, 0.2588945016203393], [5, -4, 1, -0.02940922588399203], [-261, 122, -1, 0.4583963245528315], [-2, -5, 1, 7.828245364560443], [9, 48, -1, 0.6138855035764539], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-33, 10, -1, 1.2635618508987094], [-19, -19, 0, -0.06180284349225656], [-3, -10, -1, 2.955455605449683], [6, 3, 0, 4.442164186518582], [-32, -41, -1, -0.04692834217231654], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -3, 1, 8.44578924164005], [4, 0, 0, 2.4156135388573103], [259, -122, 1, -0.4648540097206722], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 8.07843734871713], [3, 14, -1, 0.0818021714257596], [138, 319, 1, -0.0889140220182541]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 145, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 6.3855946523174705], [-269, 171, 1, 0.25747381478849535], [-6, -4, -1, 6.531416479094503], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, 1, -1, 0.0005209635831956109], [-255, 139, 1, 0.4445025928947183], [-112, -298, -1, 0.25901152729269894], [3, -3, 1, -0.04702086962263067], [-263, 123, -1, 0.45842866963759415], [-1, -3, 1, 7.837596644181081], [10, 46, -1, 0.6184552770535019], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-31, 11, -1, 1.2710014513720154], [-19, -19, 0, -0.06180284349225656], [-5, -11, -1, 2.9769686903008576], [6, 3, 0, 4.442164186518582], [-30, -42, -1, -0.05368924764197218], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -1, 1, 8.516789144895116], [4, 0, 0, 2.4156135388573103], [261, -123, 1, -0.46488291020030587], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 8.17202086962263], [4, 12, -1, 0.09941381516439823], [139, 321, 1, -0.08897031093072896]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 146, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 6.475792408680938], [-271, 172, 1, 0.2575873735346135], [-5, -2, -1, 6.564440529204581], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 3, -1, -0.007717455191869095], [-257, 140, 1, 0.4445456608822677], [-113, -300, -1, 0.25912692926538816], [5, -4, 1, -0.02940922588399203], [-265, 124, -1, 0.4584605204857282], [-2, -5, 1, 7.828245364560443], [11, 44, -1, 0.6233760263313743], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-29, 12, -1, 1.2791758387580563], [-19, -19, 0, -0.06180284349225656], [-7, -10, -1, 3.006268872017919], [6, 3, 0, 4.442164186518582], [-28, -43, -1, -0.0605420253342297], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 8.587195189178301], [4, 0, 0, 2.4156135388573103], [263, -124, 1, -0.46491136629567437], [2, -2, 0, 0.5087787822945713], [-6, -1, 1, 8.198305097978256], [6, 13, -1, 0.11702545890303687], [140, 323, 1, -0.08902588584992693]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 147, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 6.522813278303569], [-273, 173, 1, 0.2576993691093539], [-6, 0, -1, 6.625000000000003], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 5, -1, -0.015472374845506775], [-259, 141, 1, 0.444588076135555], [-114, -302, -1, 0.2592407409793216], [3, -3, 1, -0.04702086962263067], [-267, 125, -1, 0.4584918883368387], [-1, -3, 1, 7.837596644181081], [12, 42, -1, 0.6286792275341421], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-27, 13, -1, 1.2881495037128012], [-19, -19, 0, -0.06180284349225656], [-9, -11, -1, 3.018206057195535], [6, 3, 0, 4.442164186518582], [-26, -44, -1, -0.06746272241832038], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 8.673205623989617], [4, 0, 0, 2.4156135388573103], [265, -125, 1, -0.46493938817632124], [2, -2, 0, 0.5087787822945713], [-4, -2, 1, 8.245812678447846], [8, 12, -1, 0.14178914489511427], [141, 325, 1, -0.08908076026184021]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 148, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -3, -1, 6.584386461142687], [-275, 174, 1, 0.2578098334597354], [-5, 2, -1, 6.6855594707954245], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 7, -1, -0.0241715854505272], [-261, 142, 1, 0.4446298533762511], [-115, -304, -1, 0.2593529949665863], [5, -4, 1, -0.02940922588399203], [-269, 126, -1, 0.45852278409236347], [0, -5, 1, 7.888804835355865], [14, 43, -1, 0.6344816988291615], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-25, 14, -1, 1.2979797052565114], [-19, -19, 0, -0.06180284349225656], [-10, -9, -1, 3.042437670089099], [6, 3, 0, 4.442164186518582], [-25, -42, -1, -0.06695302058012621], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 4, 1, 8.759216058800932], [4, 0, 0, 2.4156135388573103], [267, -126, 1, -0.46496698570389133], [2, -2, 0, 0.5087787822945713], [-6, -3, 1, 8.245812678447846], [10, 13, -1, 0.1525628240696912], [142, 327, 1, -0.08913494731528185]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 149, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 6.6355946523174705], [-277, 175, 1, 0.2579187976710405], [-6, 4, -1, 6.7185835209055025], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 5, -1, -0.015472374845506773], [-263, 143, 1, 0.44467100688679684], [-116, -306, -1, 0.2594637228809989], [3, -3, 1, -0.04702086962263067], [-271, 127, -1, 0.45855321832819423], [1, -3, 1, 7.940013026530648], [16, 42, -1, 0.6423155112526295], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-23, 15, -1, 1.308708915322692], [-19, -19, 0, -0.06180284349225656], [-11, -7, -1, 3.0688710595473436], [6, 3, 0, 4.442164186518582], [-26, -44, -1, -0.06746272241832038], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 3, 1, 8.8494138151644], [4, 0, 0, 2.4156135388573103], [269, -127, 1, -0.46499416844369396], [2, -2, 0, 0.5087787822945713], [-4, -2, 1, 8.245812678447846], [12, 14, -1, 0.16098699800351615], [143, 329, 1, -0.0891884598323479]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 150, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 6.725792408680938], [-279, 176, 1, 0.2580262919955785], [-4, 5, -1, 6.7676116437386415], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, 7, -1, -0.022751502549231434], [-265, 144, 1, 0.4447115505266557], [-117, -308, -1, 0.25957295552744253], [5, -4, 1, -0.02940922588399203], [-273, 128, -1, 0.4585832013067351], [3, -2, 1, 8.045221314450366], [18, 43, -1, 0.6474820510125987], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-21, 16, -1, 1.3203550439827239], [-19, -19, 0, -0.06180284349225656], [-10, -5, -1, 3.085277007085595], [6, 3, 0, 4.442164186518582], [-28, -43, -1, -0.06054202533422969], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 8.954622103084118], [4, 0, 0, 2.4156135388573103], [271, -128, 1, -0.4650209456757488], [2, -2, 0, 0.5087787822945713], [-3, -4, 1, 8.319604487273063], [11, 16, -1, 0.14406263228869376], [144, 331, 1, -0.08924131031849289]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 151, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 2, -1, 6.7380110346670365], [-281, 177, 1, 0.25813234588030876], [-2, 6, -1, 6.823791808825219], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 5, -1, -0.014492369109015354], [-267, 145, 1, 0.44475149774785105], [-118, -310, -1, 0.25968072289004], [3, -3, 1, -0.04702086962263067], [-275, 129, -1, 0.45861274298843113], [5, -1, 1, 8.107388356261366], [20, 42, -1, 0.6551179752034442], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, 17, -1, 1.3329001039887025], [-19, -19, 0, -0.06180284349225656], [-11, -3, -1, 3.1166934861800955], [6, 3, 0, 4.442164186518582], [-29, -41, -1, -0.05442607081801653], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 9.048205623989617], [4, 0, 0, 2.4156135388573103], [273, -129, 1, -0.46504732640534174], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 8.370812678447846], [13, 15, -1, 0.16185668848968465], [145, 333, 1, -0.08929351097223497]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 152, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 6.725792408680938], [-283, 178, 1, 0.2582369879933743], [0, 5, -1, 6.875000000000003], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, 6, -1, -0.019473493537852278], [-269, 146, 1, 0.4447908616098243], [-119, -312, -1, 0.2597870541592161], [5, -4, 1, -0.02940922588399203], [-277, 130, -1, 0.45864185304279004], [3, 0, 1, 8.138804835355867], [22, 43, -1, 0.6596518847364446], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, 18, -1, 1.3462790127705941], [-19, -19, 0, -0.06180284349225656], [-10, -1, -1, 3.1432060571955347], [6, 3, 0, 4.442164186518582], [-31, -40, -1, -0.04747256288091578], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 9.108765094785038], [4, 0, 0, 2.4156135388573103], [275, -130, 1, -0.4650733193731152], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 8.42202086962263], [12, 17, -1, 0.14603227112348352], [146, 335, 1, -0.08934507369450666]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 153, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 6.811802843492254], [-285, 179, 1, 0.25834024624959817], [2, 6, -1, 6.926208191174786], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, 5, -1, -0.016556519814133832], [-271, 147, 1, 0.4448296547936462], [-120, -314, -1, 0.25989197775769957], [3, -3, 1, -0.04702086962263067], [-279, 131, -1, 0.45867054085892633], [4, 2, 1, 8.212596644181083], [24, 42, -1, 0.6670111314119735], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, 19, -1, 1.3603714010098724], [-19, -19, 0, -0.06180284349225656], [-11, 1, -1, 3.1734977850989634], [6, 3, 0, 4.442164186518582], [-29, -41, -1, -0.05442607081801653], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 9.173205623989617], [4, 0, 0, 2.4156135388573103], [277, -131, 1, -0.4650989330647172], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 8.473229060797413], [11, 19, -1, 0.131729465161455], [147, 337, 1, -0.0893960100976661]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 154, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 6.89781327830357], [-287, 180, 1, 0.258442147834987], [4, 5, -1, 6.982388356261364], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, 7, -1, -0.0241715854505272], [-273, 148, 1, 0.4448678896156173], [-121, -316, -1, 0.2599955213655133], [5, -4, 1, -0.02940922588399203], [-281, 132, -1, 0.45869881555564906], [2, 3, 1, 8.295221314450368], [26, 43, -1, 0.6709400847769795], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, 20, -1, 1.3750000000000013], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 3.205455605449682], [6, 3, 0, 4.442164186518582], [-31, -42, -1, -0.05120819117478335], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -5, 1, 9.237646153194195], [4, 0, 0, 2.4156135388573103], [279, -132, 1, -0.4651241757200316], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 8.57843734871713], [9, 18, -1, 0.12199743281483152], [148, 339, 1, -0.08944633151418314]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 155, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 6.988011034667037], [-289, 181, 1, 0.25854271923028727], [5, 3, -1, 7.038989565188687], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [40, 8, -1, -0.0265950774585884], [-275, 149, 1, 0.4449055780402849], [-122, -318, -1, 0.26009771194399744], [3, -3, 1, -0.04702086962263067], [-283, 133, -1, 0.45872668599111815], [0, 4, 1, 8.388804835355867], [28, 42, -1, 0.677969982048189], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, 21, -1, 1.3899385894223846], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 3.2269686903008568], [6, 3, 0, 4.442164186518582], [-29, -43, -1, -0.05797041054120516], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -6, 1, 9.298205623989617], [4, 0, 0, 2.4156135388573103], [281, -133, 1, -0.46514905534200995], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 8.64060439052813], [7, 19, -1, 0.10438578907619289], [149, 341, 1, -0.08949604900501386]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 156, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 5, -1, 6.936802843492254], [-291, 182, 1, 0.25864198623363766], [6, 1, -1, 7.098715771644375], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, 9, -1, -0.028775145800232535], [-277, 150, 1, 0.44494273169290727], [-123, -320, -1, 0.2601985757589098], [5, -4, 1, -0.02940922588399203], [-285, 134, -1, 0.4587541607720892], [-2, 3, 1, 8.482388356261366], [30, 43, -1, 0.6813378378535916], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, 22, -1, 1.4049301219405133], [-19, -19, 0, -0.06180284349225656], [-10, 7, -1, 3.2562688720179183], [6, 3, 0, 4.442164186518582], [-28, -41, -1, -0.057043304854391776], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -7, 1, 9.342498390381069], [4, 0, 0, 2.4156135388573103], [283, -134, 1, -0.4651735797051255], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 8.672020869622632], [5, 20, -1, 0.08719518917829952], [150, 343, 1, -0.08954517336767652]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 157, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-293, 183, 1, 0.25873997398235543], [5, -1, -1, 7.156416479094503], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, 11, -1, -0.03503785403894096], [-279, 151, 1, 0.4449793618713916], [-124, -322, -1, 0.26029813840264293], [3, -3, 1, -0.04702086962263067], [-287, 135, -1, 0.4587812482627679], [-3, 1, 1, 8.587596644181083], [32, 42, -1, 0.6880085396926435], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, 23, -1, 1.4197120958101392], [-19, -19, 0, -0.06180284349225656], [-8, 6, -1, 3.2614851982603774], [6, 3, 0, 4.442164186518582], [-27, -43, -1, -0.06316891250749124], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 9.329622103084118], [4, 0, 0, 2.4156135388573103], [285, -135, 1, -0.4651977563634679], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 8.703437348717133], [3, 19, -1, 0.0731295868087715], [151, 345, 1, -0.08959371514404098]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 158, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-295, 184, 1, 0.2588367069738969], [6, -3, -1, 7.198791808825219], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, 12, -1, -0.040494855103700475], [-281, 152, 1, 0.4450154795577319], [-125, -324, -1, 0.2603964248155982], [5, -4, 1, -0.02940922588399203], [-289, 136, -1, 0.4588079565932928], [-4, -1, 1, 8.67779440054455], [34, 43, -1, 0.6908679614457414], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, 24, -1, 1.4340432739549347], [-19, -19, 0, -0.06180284349225656], [-10, 5, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-28, -45, -1, -0.06381948650344067], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -4, 1, 9.400622006339184], [4, 0, 0, 2.4156135388573103], [287, -136, 1, -0.4652215926584959], [2, -2, 0, 0.5087787822945713], [7, 2, 1, 8.716313636014084], [2, 21, -1, 0.0633176574090746], [152, 347, 1, -0.08964168462784394]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 159, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-297, 185, 1, 0.25893220908602743], [5, -5, -1, 7.250000000000003], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, 11, -1, -0.03503785403894096], [-283, 153, 1, 0.4450510954289703], [-126, -326, -1, 0.2604934593067537], [3, -3, 1, -0.04702086962263067], [-291, 137, -1, 0.4588342936678649], [-3, -3, 1, 8.763804835355867], [36, 42, -1, 0.6971678351565909], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, 25, -1, 1.447725261508795], [-19, -19, 0, -0.06180284349225656], [-8, 4, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-30, -46, -1, -0.06042906939642314], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 9.462195189178301], [4, 0, 0, 2.4156135388573103], [289, -137, 1, -0.4652450957264656], [2, -2, 0, 0.5087787822945713], [5, 3, 1, 8.758031304433947], [4, 20, -1, 0.07962210308411545], [153, 349, 1, -0.0896890918719406]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 160, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-299, 186, 1, 0.25902650359623564], [3, -6, -1, 7.301208191174786], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, 9, -1, -0.027290072792470494], [-285, 154, 1, 0.4450862198677057], [-127, -328, -1, 0.2605892655734601], [5, -4, 1, -0.02940922588399203], [-293, 138, -1, 0.4588602671725404], [-1, -4, 1, 8.849815270167182], [38, 43, -1, 0.6995745317429927], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, 26, -1, 1.4606146372056426], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 3.205455605449682], [6, 3, 0, 4.442164186518582], [-28, -47, -1, -0.06689350115766085], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 9.52192139563399], [4, 0, 0, 2.4156135388573103], [291, -138, 1, -0.4652682725055492], [2, -2, 0, 0.5087787822945713], [3, 4, 1, 8.819604487273065], [6, 19, -1, 0.09688775836106729], [154, 351, 1, -0.08973594669530371]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, -1], "using": [2, -1]}, {"seat": 19, "got": [2, 1], "using": [2, 1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 161, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-301, 187, 1, 0.25911961320042404], [1, -5, -1, 7.3435835209055025], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, 10, -1, -0.02924741427490004], [-287, 155, 1, 0.44512086297217074], [-128, -330, -1, 0.26068386672049926], [3, -3, 1, -0.04702086962263067], [-295, 139, -1, 0.4588858845827035], [1, -3, 1, 8.94001302653065], [40, 42, -1, 0.705505402733533], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, 27, -1, 1.4726248998679405], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 3.2269686903008568], [6, 3, 0, 4.442164186518582], [-26, -46, -1, -0.07052754983288505], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [293, -139, 1, -0.4652911297426593], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 8.870812678447848], [7, 21, -1, 0.09941381516439823], [155, 353, 1, -0.08978225868978033]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [2, 1], "using": [2, 1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 162, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-303, 188, 1, 0.2592115600309081], [-1, -6, -1, 7.40128422835563], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, 8, -1, -0.022011634693094296], [-289, 156, 1, 0.4451550345658982], [-129, -332, -1, 0.2607772852784363], [5, -4, 1, -0.02940922588399203], [-297, 140, -1, 0.45891115317023407], [3, -2, 1, 9.045221314450368], [42, 43, -1, 0.707514136426066], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [3, 26, -1, 1.4850161450304866], [-19, -19, 0, -0.06180284349225656], [-10, 7, -1, 3.2562688720179183], [6, 3, 0, 4.442164186518582], [-28, -47, -1, -0.06689350115766085], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [295, -140, 1, -0.46531367399999357], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 8.961010434811316], [5, 20, -1, 0.08719518917829952], [156, 355, 1, -0.0898280372266158]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 163, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-305, 189, 1, 0.2593023656737526], [-3, -5, -1, 7.461010434811318], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, 6, -1, -0.01582139828401144], [-291, 157, 1, 0.44518874420699533], [-130, -334, -1, 0.26086954322129646], [3, -3, 1, -0.04702086962263067], [-299, 141, -1, 0.45893608001038444], [5, -1, 1, 9.107388356261367], [43, 41, -1, 0.7131751487304755], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [5, 25, -1, 1.4981494445272705], [-19, -19, 0, -0.06180284349225656], [-8, 6, -1, 3.2614851982603774], [6, 3, 0, 4.442164186518582], [-29, -45, -1, -0.06129521019573648], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [297, -141, 1, -0.46533591166131205], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 9.047020869622632], [3, 21, -1, 0.07078924164004813], [157, 357, 1, -0.08987329146275427]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 164, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-307, 190, 1, 0.25939205118547387], [-5, -6, -1, 7.485571030811851], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, 7, -1, -0.018226223280301348], [-293, 158, 1, 0.44522200119704547], [-131, -336, -1, 0.2609606619835941], [5, -4, 1, -0.02940922588399203], [-301, 142, -1, 0.45896067198837975], [4, 1, 1, 9.177794400544553], [44, 39, -1, 0.718962535731204], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [7, 24, -1, 1.5119002007336364], [-19, -19, 0, -0.06180284349225656], [-10, 5, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-28, -43, -1, -0.060542025334229706], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [299, -142, 1, -0.46535784893796045], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 9.133031304433947], [1, 20, -1, 0.056156749617703054], [158, 359, 1, -0.08991803034692487]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 165, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-309, 191, 1, 0.2594806371091348], [-6, -4, -1, 7.531416479094504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, 6, -1, -0.014186302288062645], [-295, 159, 1, 0.44525481458965416], [-132, -338, -1, 0.2610506624767425], [3, -3, 1, -0.04702086962263067], [-303, 143, -1, 0.45898493580575417], [3, 3, 1, 9.263804835355868], [45, 37, -1, 0.7248647883759224], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [9, 23, -1, 1.5260958050698343], [-19, -19, 0, -0.06180284349225656], [-8, 4, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-29, -45, -1, -0.06129521019573648], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [301, -143, 1, -0.4653794918746511], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 9.223229060797415], [3, 21, -1, 0.07078924164004813], [159, 361, 1, -0.08996226262552154]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 166, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-311, 192, 1, 0.25956814348985774], [-5, -2, -1, 7.564440529204582], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, 5, -1, -0.010435055467219583], [-297, 160, 1, 0.44528719319865523], [-133, -340, -1, 0.26113956510487024], [5, -4, 1, -0.02940922588399203], [-305, 144, -1, 0.45900887798643464], [1, 4, 1, 9.349815270167184], [46, 35, -1, 0.7308686780844198], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [11, 22, -1, 1.5405247742579866], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 3.205455605449682], [6, 3, 0, 4.442164186518582], [-27, -46, -1, -0.06792979354433056], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [303, -144, 1, -0.46540084635501294], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 9.328437348717133], [2, 19, -1, 0.06489730720487742], [160, 363, 1, -0.09000599684828502]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 167, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-313, 193, 1, 0.2596545898897801], [-6, 0, -1, 7.6250000000000036], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, 7, -1, -0.01688774710510691], [-299, 161, 1, 0.44531914560599384], [-134, -342, -1, 0.26122738978006804], [3, -3, 1, -0.04702086962263067], [-307, 145, -1, 0.4590325048825852], [-1, 3, 1, 9.440013026530652], [47, 33, -1, 0.7369593653278332], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [13, 21, -1, 1.554953743446139], [-19, -19, 0, -0.06180284349225656], [-8, 2, -1, 3.1980583810994956], [6, 3, 0, 4.442164186518582], [-29, -47, -1, -0.06441760612493096], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [305, -145, 1, -0.4654219181069211], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 9.422020869622632], [0, 18, -1, 0.04820562398961488], [161, 365, 1, -0.09004924137379468]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 168, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-315, 194, 1, 0.2597399954024752], [-5, 2, -1, 7.685559470795425], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, 5, -1, -0.010435055467219583], [-301, 162, 1, 0.44535068016930063], [-135, -344, -1, 0.26131415593709123], [5, -4, 1, -0.02940922588399203], [-309, 146, -1, 0.45905582268022216], [-3, 2, 1, 9.54522131445037], [48, 31, -1, 0.7431205668359313], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [15, 20, -1, 1.5691493477823368], [-19, -19, 0, -0.06180284349225656], [-10, 1, -1, 3.1749315746260875], [6, 3, 0, 4.442164186518582], [-27, -46, -1, -0.06792979354433056], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [307, -146, 1, -0.4654427127076161], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 9.51560439052813], [-2, 19, -1, 0.031513940774352295], [162, 367, 1, -0.09009200437477737]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 169, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 4, -1, 7.0105946523174705], [-317, 195, 1, 0.2598243786668616], [-6, 4, -1, 7.718583520905503], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, 4, -1, -0.006946361694806813], [-303, 163, 1, 0.4453818050291706], [-136, -346, -1, 0.2613998825475393], [3, -3, 1, -0.04702086962263067], [-311, 147, -1, 0.45907883740460953], [-5, 1, 1, 9.607388356261369], [49, 29, -1, 0.7493347794512747], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [17, 19, -1, 1.5829001039887027], [-19, -19, 0, -0.06180284349225656], [-9, 3, -1, 3.210277007085594], [6, 3, 0, 4.442164186518582], [-29, -45, -1, -0.06129521019573648], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [309, -147, 1, -0.4654632355886232], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 9.620812678447848], [-3, 21, -1, 0.025622006339181585], [163, 369, 1, -0.0901342938432403]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 170, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 6.936802843492254], [-319, 196, 1, 0.25990775788062037], [-4, 5, -1, 7.767611643738642], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, 2, -1, -0.0009635019188958234], [-305, 164, 1, 0.445412528116161], [-137, -348, -1, 0.2614845881335346], [5, -4, 1, -0.02940922588399203], [-313, 148, -1, 0.45910155492544674], [-3, 0, 1, 9.63880483535587], [50, 27, -1, 0.7555835547724714], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [19, 18, -1, 1.5960334034854866], [-19, -19, 0, -0.06180284349225656], [-10, 5, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-28, -47, -1, -0.06689350115766085], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, 2, 1, 9.592498390381069], [4, 0, 0, 2.4156135388573103], [311, -148, 1, -0.4654834920404792], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 9.711010434811316], [-1, 22, -1, 0.040976284538226534], [164, 371, 1, -0.09017611759543528]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 171, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 6.905386364397754], [-321, 197, 1, 0.259990150813142], [-2, 6, -1, 7.82379180882522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, 1, -1, 0.002029496065761686], [-307, 165, 1, 0.44544285715751986], [-138, -350, -1, 0.2615682907809196], [3, -3, 1, -0.04702086962263067], [-315, 149, -1, 0.4591239809618559], [-4, -2, 1, 9.712596644181087], [51, 25, -1, 0.7618478149474377], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [21, 17, -1, 1.6084246486480327], [-19, -19, 0, -0.06180284349225656], [-8, 4, -1, 3.2328606247360274], [6, 3, 0, 4.442164186518582], [-30, -48, -1, -0.06350117704166908], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 9.579622103084118], [4, 0, 0, 2.4156135388573103], [313, -149, 1, -0.46550348721727736], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 9.797020869622632], [-3, 21, -1, 0.02562200633918159], [165, 373, 1, -0.09021748327665993]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 172, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 6, -1, 6.963087071847881], [-323, 198, 1, 0.2600715748180201], [0, 5, -1, 7.8750000000000036], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, 0, -1, 0.004821401635912189], [-309, 166, 1, 0.44547279968365766], [-139, -352, -1, 0.2616510081519944], [5, -4, 1, -0.02940922588399203], [-317, 150, -1, 0.45914612108717895], [-2, -3, 1, 9.795221314450371], [52, 23, -1, 0.7681081967222942], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [23, 16, -1, 1.6199982733301124], [-19, -19, 0, -0.06180284349225656], [-10, 3, -1, 3.205455605449682], [6, 3, 0, 4.442164186518582], [-31, -46, -1, -0.058025730296743044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 9.650622006339184], [4, 0, 0, 2.4156135388573103], [315, -150, 1, -0.46552322614103725], [2, -2, 0, 0.5087787822945713], [2, 5, 1, 9.86146139882721], [-1, 20, -1, 0.0402544983615267], [166, 375, 1, -0.09025839836590269]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 173, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 8, -1, 6.975792408680939], [-325, 199, 1, 0.2601520468451133], [2, 6, -1, 7.926208191174787], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -1, -1, 0.007823968821080768], [-311, 167, 1, 0.44550236303437374], [-140, -354, -1, 0.26173275749781055], [3, -3, 1, -0.04702086962263067], [-319, 151, -1, 0.45916798073359255], [0, -4, 1, 9.88880483535587], [53, 21, -1, 0.7743454085238389], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [25, 15, -1, 1.6307225306214548], [-19, -19, 0, -0.06180284349225656], [-11, 5, -1, 3.2269686903008568], [6, 3, 0, 4.442164186518582], [-33, -45, -1, -0.05169991446010991], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 5, 1, 9.673205623989617], [4, 0, 0, 2.4156135388573103], [317, -151, 1, -0.46554271370590766], [2, -2, 0, 0.5087787822945713], [0, 6, 1, 9.922020869622632], [0, 18, -1, 0.04820562398961488], [167, 377, 1, -0.0902988701803372]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 174, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 6, -1, 6.963087071847881], [-327, 200, 1, 0.26023158345218844], [4, 5, -1, 7.982388356261365], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -2, -1, 0.011059575430065166], [-313, 168, 1, 0.44553155436484737], [-141, -356, -1, 0.261813555670041], [5, -4, 1, -0.02940922588399203], [-321, 152, -1, 0.4591895651965484], [2, -3, 1, 9.982388356261369], [54, 19, -1, 0.7805405842555845], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [27, 14, -1, 1.6406008114388302], [-19, -19, 0, -0.06180284349225656], [-9, 4, -1, 3.225631285284639], [6, 3, 0, 4.442164186518582], [-35, -46, -1, -0.04888723622807563], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 9.650622006339184], [4, 0, 0, 2.4156135388573103], [319, -152, 1, -0.4655619546822103], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 9.961010434811316], [1, 16, -1, 0.058139886142385286], [168, 379, 1, -0.09033890587967207]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 175, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 8, -1, 6.975792408680939], [-329, 201, 1, 0.2603102008161663], [5, 3, -1, 8.038989565188688], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -1, -1, 0.00782396882108077], [-315, 169, 1, 0.44556038065140496], [-142, -358, -1, 0.261893419132442], [3, -3, 1, -0.04702086962263067], [-323, 153, -1, 0.45921087963904744], [3, -1, 1, 10.087596644181087], [55, 17, -1, 0.7866756177656153], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [29, 13, -1, 1.64966201554271], [-19, -19, 0, -0.06180284349225656], [-10, 6, -1, 3.2450792507221258], [6, 3, 0, 4.442164186518582], [-34, -48, -1, -0.05431831528736437], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 5, 1, 9.673205623989617], [4, 0, 0, 2.4156135388573103], [321, -153, 1, -0.46558095372033087], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 10.047020869622632], [3, 15, -1, 0.07962210308411545], [169, 381, 1, -0.09037851247036072]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 176, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 6, -1, 6.963087071847881], [-331, 202, 1, 0.26038791474398176], [6, 1, -1, 8.098715771644377], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -2, -1, 0.011059575430065166], [-317, 170, 1, 0.4455888486970718], [-143, -360, -1, 0.2619723639719235], [5, -4, 1, -0.02940922588399203], [-325, 154, -1, 0.4592319290957547], [5, 0, 1, 10.13880483535587], [56, 15, -1, 0.7927334635616452], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [31, 12, -1, 1.6579516881638028], [-19, -19, 0, -0.06180284349225656], [-8, 5, -1, 3.247972658155487], [6, 3, 0, 4.442164186518582], [-32, -47, -1, -0.057268816489645574], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 9.650622006339184], [4, 0, 0, 2.4156135388573103], [323, -154, 1, -0.46559971535446437], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 10.133031304433947], [4, 17, -1, 0.08498484597624599], [170, 383, 1, -0.09041769680967739]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 177, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 6.905386364397754], [-333, 203, 1, 0.2604647406830761], [5, -1, -1, 8.156416479094505], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -4, -1, 0.01704002762201089], [-319, 171, 1, 0.44561696513691906], [-144, -362, -1, 0.26205040590924367], [3, -3, 1, -0.04702086962263067], [-327, 155, -1, 0.45925271847696164], [7, 1, 1, 10.161388453006303], [57, 13, -1, 0.798698392090696], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [33, 11, -1, 1.6655247742579868], [-19, -19, 0, -0.06180284349225656], [-10, 4, -1, 3.2196282867062322], [6, 3, 0, 4.442164186518582], [-34, -46, -1, -0.05110159042509026], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 5, 1, 9.673205623989617], [4, 0, 0, 2.4156135388573103], [325, -155, 1, -0.4656182440062211], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 10.223229060797415], [6, 16, -1, 0.10530574959956894], [171, 385, 1, -0.09045646560966374]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 178, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 6.975792408680939], [-335, 204, 1, 0.26054069373153566], [6, -3, -1, 8.19879180882522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -3, -1, 0.013654263079979505], [-321, 172, 1, 0.4456447364432134], [-145, -364, -1, 0.262127560309342], [5, -4, 1, -0.02940922588399203], [-329, 156, -1, 0.4592732525724023], [5, 2, 1, 10.199364306151292], [58, 11, -1, 0.8045561914179522], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [35, 10, -1, 1.6724401990413178], [-19, -19, 0, -0.06180284349225656], [-8, 3, -1, 3.2161689415207646], [6, 3, 0, 4.442164186518582], [-33, -48, -1, -0.05654801098726655], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 4, 1, 9.69578924164005], [4, 0, 0, 2.4156135388573103], [327, -156, 1, -0.4656365439880988], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 10.328437348717133], [7, 18, -1, 0.10723480595387387], [172, 387, 1, -0.09049482544095078]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 179, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 5, -1, 7.02281327830357], [-337, 205, 1, 0.2606157886478884], [5, -5, -1, 8.250000000000004], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -4, -1, 0.0161703371358424], [-323, 173, 1, 0.4456721689303788], [-146, -366, -1, 0.2622038421913254], [3, -3, 1, -0.04702086962263067], [-331, 157, -1, 0.4592935360549305], [4, 4, 1, 10.26380483535587], [59, 9, -1, 0.8102943110096902], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [37, 9, -1, 1.6787571122877818], [-19, -19, 0, -0.06180284349225656], [-10, 2, -1, 3.190485295005311], [6, 3, 0, 4.442164186518582], [-35, -47, -1, -0.050531825759753304], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 5, 1, 9.766789144895116], [4, 0, 0, 2.4156135388573103], [329, -157, 1, -0.4656546195068276], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 10.422020869622632], [5, 17, -1, 0.09373212491748927], [173, 389, 1, -0.09053278273646102]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 180, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 3, -1, 7.084386461142688], [-339, 206, 1, 0.26069003986057554], [3, -6, -1, 8.301208191174787], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -6, -1, 0.0221153712593171], [-325, 174, 1, 0.4456992687597779], [-147, -368, -1, 0.262279266238121], [5, -4, 1, -0.02940922588399203], [-333, 158, -1, 0.4593135734840625], [2, 5, 1, 10.328245364560448], [60, 7, -1, 0.8159019471260045], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [39, 8, -1, 1.6845324781819617], [-19, -19, 0, -0.06180284349225656], [-11, 4, -1, 3.2145774451383105], [6, 3, 0, 4.442164186518582], [-36, -49, -1, -0.05155919394585866], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 9.837195189178301], [4, 0, 0, 2.4156135388573103], [331, -158, 1, -0.4656724746665925], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 10.51560439052813], [4, 15, -1, 0.08968178281777475], [174, 391, 1, -0.09057034379499469]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 181, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 1, -1, 7.135594652317471], [-341, 207, 1, 0.2607634614771067], [1, -5, -1, 8.343583520905502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -7, -1, 0.02572090285435282], [-327, 175, 1, 0.4457260419443205], [-148, -370, -1, 0.26235384680580714], [3, -3, 1, -0.04702086962263067], [-335, 159, -1, 0.4593333693093924], [0, 4, 1, 10.38880483535587], [61, 5, -1, 0.8213700726996265], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [41, 7, -1, 1.6898196694317513], [-19, -19, 0, -0.06180284349225656], [-10, 6, -1, 3.2450792507221258], [6, 3, 0, 4.442164186518582], [-34, -48, -1, -0.05431831528736436], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 9.923205623989617], [4, 0, 0, 2.4156135388573103], [333, -159, 1, -0.46569011347213835], [2, -2, 0, 0.5087787822945713], [3, -1, 1, 10.620812678447848], [5, 13, -1, 0.10664315461578658], [175, 393, 1, -0.09060751478470491]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [-1, 2], "using": [-1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 182, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 2, -1, 7.126243372696833], [-343, 208, 1, 0.2608360672929144], [-1, -6, -1, 8.40128422835563], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -9, -1, 0.031105629991538902], [-329, 176, 1, 0.4457524943529068], [-149, -372, -1, 0.26242759793263754], [5, -4, 1, -0.02940922588399203], [-337, 160, -1, 0.45935292787388393], [-2, 3, 1, 10.482388356261369], [62, 3, -1, 0.8266914172615779], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [43, 6, -1, 1.694667765958908], [-19, -19, 0, -0.06180284349225656], [-11, 8, -1, 3.259144853091654], [6, 3, 0, 4.442164186518582], [-36, -47, -1, -0.048375635309299], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 10.009216058800932], [4, 0, 0, 2.4156135388573103], [335, -160, 1, -0.46570753983176344], [2, -2, 0, 0.5087787822945713], [4, 1, 1, 10.711010434811316], [4, 11, -1, 0.1037142532171148], [176, 395, 1, -0.09064430174646523]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 183, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, 1, -1, 7.164219225841822], [-345, 209, 1, 0.2609078707999162], [-3, -5, -1, 8.46101043481132], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -10, -1, 0.035058976787742016], [-331, 177, 1, 0.4457786317147122], [-150, -374, -1, 0.2625005333477674], [3, -3, 1, -0.04702086962263067], [-339, 161, -1, 0.45937225341704563], [-3, 1, 1, 10.587596644181087], [63, 1, -1, 0.8318604043393586], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [45, 5, -1, 1.6991213216941317], [-19, -19, 0, -0.06180284349225656], [-10, 10, -1, 3.2840688159108105], [6, 3, 0, 4.442164186518582], [-34, -48, -1, -0.05431831528736436], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 10.0994138151644], [4, 0, 0, 2.4156135388573103], [337, -161, 1, -0.465724757560205], [2, -2, 0, 0.5087787822945713], [5, 3, 1, 10.758031304433947], [6, 12, -1, 0.12199743281483152], [177, 397, 1, -0.09068071059713351]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 184, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -1, -1, 7.213087071847882], [-347, 210, 1, 0.2609788851947982], [-5, -6, -1, 8.485571030811851], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -9, -1, 0.03316577308516686], [-333, 178, 1, 0.4458044596233193], [-151, -376, -1, 0.26257266647969524], [5, -4, 1, -0.02940922588399203], [-341, 162, -1, 0.4593913500779922], [-4, -1, 1, 10.677794400544554], [64, -1, -1, 0.8368730547821648], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [47, 4, -1, 1.70322042532788], [-19, -19, 0, -0.06180284349225656], [-8, 9, -1, 3.2934200955314488], [6, 3, 0, 4.442164186518582], [-33, -50, -1, -0.05955832155689043], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 10.108765094785038], [4, 0, 0, 2.4156135388573103], [339, -162, 1, -0.46574177038142206], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 10.765604390528132], [4, 11, -1, 0.1037142532171148], [178, 399, 1, -0.09071674713271635]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 185, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 7.272813278303571], [-349, 211, 1, 0.2610491233870288], [-6, -4, -1, 8.531416479094505], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -10, -1, 0.03751109311374731], [-335, 179, 1, 0.44582998354070524], [-152, -378, -1, 0.2626440104644295], [3, -3, 1, -0.04702086962263067], [-343, 163, -1, 0.45941022189839886], [-5, -3, 1, 10.724815270167186], [62, -2, -1, 0.8395187118815635], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [49, 3, -1, 1.7070009330861469], [-19, -19, 0, -0.06180284349225656], [-6, 10, -1, 3.323058381099495], [6, 3, 0, 4.442164186518582], [-34, -48, -1, -0.05431831528736436], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-7, -3, 1, 10.112646153194195], [4, 0, 0, 2.4156135388573103], [341, -163, 1, -0.46575858193127945], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 10.87081267844785], [6, 12, -1, 0.12199743281483152], [179, 401, 1, -0.09075241703143659]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 186, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 7.280386364397755], [-351, 212, 1, 0.26111859800661336], [-5, -2, -1, 8.564440529204582], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -8, -1, 0.030578628794801915], [-337, 180, 1, 0.44585520880108814], [-153, -380, -1, 0.2627145781533915], [5, -4, 1, -0.02940922588399203], [-345, 164, -1, 0.45942887282535105], [-3, -4, 1, 10.786388453006303], [60, -3, -1, 0.8423375867707777], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [51, 2, -1, 1.7104947916386173], [-19, -19, 0, -0.06180284349225656], [-4, 9, -1, 3.342506346536982], [6, 3, 0, 4.442164186518582], [-36, -47, -1, -0.048375635309299], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -4, 1, 10.155593980250979], [4, 0, 0, 2.4156135388573103], [343, -164, 1, -0.46577519576013715], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 10.961010434811318], [4, 11, -1, 0.1037142532171148], [180, 403, 1, -0.0907877258567085]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 187, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 7.385594652317472], [-353, 213, 1, 0.26118732141159995], [-6, 0, -1, 8.625000000000004], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -7, -1, 0.02653055037693129], [-339, 181, 1, 0.44588014061464026], [-154, -382, -1, 0.2627843821210639], [3, -3, 1, -0.04702086962263067], [-347, 165, -1, 0.4594473067140955], [-1, -3, 1, 10.837596644181087], [58, -4, -1, 0.845345311778905], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [53, 1, -1, 1.7137303982476018], [-19, -19, 0, -0.06180284349225656], [-2, 10, -1, 3.37765233681631], [6, 3, 0, 4.442164186518582], [-35, -45, -1, -0.0471967313666282], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -5, 1, 10.212195189178303], [4, 0, 0, 2.4156135388573103], [345, -165, 1, -0.46579161533534885], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 11.047020869622633], [6, 10, -1, 0.1342160588009302], [181, 405, 1, -0.09082267906002278]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [2, -1], "using": [2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 188, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -4, -1, 7.334386461142689], [-355, 214, 1, 0.26125530569534433], [-5, 2, -1, 8.685559470795425], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -6, -1, 0.024213227765994955], [-341, 182, 1, 0.44590478407107226], [-155, -384, -1, 0.2628534346723942], [5, -4, 1, -0.02940922588399203], [-349, 166, -1, 0.45946552733069523], [-2, -5, 1, 10.828245364560448], [59, -2, -1, 0.8397794788952295], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [55, 0, -1, 1.7167329654327703], [-19, -19, 0, -0.06180284349225656], [0, 11, -1, 3.4090688159108105], [6, 3, 0, 4.442164186518582], [-36, -47, -1, -0.048375635309299], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [347, -166, 1, -0.46580784404367354], [2, -2, 0, 0.5087787822945713], [-5, 4, 1, 11.064632513361271], [4, 11, -1, 0.10371425321711482], [182, 407, 1, -0.09085728198374556]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 189, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 7.385594652317472], [-357, 215, 1, 0.2613225626935446], [-6, 4, -1, 8.718583520905502], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -8, -1, 0.03007217086041864], [-343, 183, 1, 0.4459291441430933], [-156, -386, -1, 0.2629217478499628], [3, -3, 1, -0.04702086962263067], [-351, 167, -1, 0.45948353835459343], [-1, -3, 1, 10.837596644181087], [60, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [53, -1, -1, 1.7197355326179389], [-19, -19, 0, -0.06180284349225656], [1, 13, -1, 3.4212874418969093], [6, 3, 0, 4.442164186518582], [-35, -49, -1, -0.05368924764197218], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -7, 1, 10.320789241640052], [4, 0, 0, 2.4156135388573103], [349, -167, 1, -0.4658238851936033], [2, -2, 0, 0.5087787822945713], [-4, 2, 1, 11.098229060797417], [6, 12, -1, 0.12199743281483154], [183, 409, 1, -0.09089153986383335]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 190, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 7.47579240868094], [-359, 216, 1, 0.26138910399105236], [-4, 5, -1, 8.767611643738642], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -9, -1, 0.03432044406967645], [-345, 184, 1, 0.44595322568975354], [-157, -388, -1, 0.26298933344092373], [5, -4, 1, -0.02940922588399203], [-353, 168, -1, 0.4595013433810892], [-2, -5, 1, 10.828245364560448], [61, -2, -1, 0.8396027873851489], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [51, -2, -1, 1.7229711392269234], [-19, -19, 0, -0.06180284349225656], [3, 12, -1, 3.448058381099495], [6, 3, 0, 4.442164186518582], [-37, -48, -1, -0.047887703623373794], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [351, -168, 1, -0.46583974201761097], [2, -2, 0, 0.5087787822945713], [-3, 0, 1, 11.172020869622633], [4, 13, -1, 0.09571320445920481], [184, 411, 1, -0.0909254578324678]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, 1], "using": [2, 1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 191, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 7.488011034667038], [-361, 217, 1, 0.2614549409284698], [-2, 6, -1, 8.82379180882522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -7, -1, 0.027405019286345464], [-347, 185, 1, 0.44597703345967193], [-158, -390, -1, 0.26305620298372706], [3, -3, 1, -0.04702086962263067], [-355, 169, -1, 0.45951894592372894], [-1, -3, 1, 10.837596644181087], [59, -3, -1, 0.8424721217709333], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [49, -3, -1, 1.7264649977793938], [-19, -19, 0, -0.06180284349225656], [5, 13, -1, 3.4675063465369824], [6, 3, 0, 4.442164186518582], [-36, -46, -1, -0.046718790031273015], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -7, 1, 10.320789241640052], [4, 0, 0, 2.4156135388573103], [353, -169, 1, -0.46585541767432104], [2, -2, 0, 0.5087787822945713], [-4, -2, 1, 11.24581267844785], [3, 11, -1, 0.09058095372033093], [185, 413, 1, -0.09095904092061244]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 192, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 7.47579240868094], [-363, 218, 1, 0.26152008460854026], [0, 5, -1, 8.875000000000004], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -5, -1, 0.020684160351188974], [-349, 186, 1, 0.4460005720941554], [-159, -392, -1, 0.26312236777463], [5, -4, 1, -0.02940922588399203], [-357, 170, -1, 0.4595363494166166], [-2, -5, 1, 10.828245364560448], [57, -4, -1, 0.8455369491854979], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [47, -4, -1, 1.7302455055376607], [-19, -19, 0, -0.06180284349225656], [4, 11, -1, 3.4645774451383105], [6, 3, 0, 4.442164186518582], [-35, -44, -1, -0.04545875895205256], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [355, -170, 1, -0.4658709152506061], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 11.328437348717134], [2, 9, -1, 0.08300786762614687], [186, 415, 1, -0.09099229406049424]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [2, -1], "using": [2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 193, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 7.488011034667038], [-365, 219, 1, 0.26158454590233904], [2, 6, -1, 8.926208191174787], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -3, -1, 0.014172681256550527], [-351, 187, 1, 0.44602384613021195], [-160, -394, -1, 0.2631878388740055], [3, -3, 1, -0.04702086962263067], [-359, 171, -1, 0.45955355721664604], [-1, -3, 1, 10.837596644181087], [55, -5, -1, 0.8488154303308417], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [45, -5, -1, 1.734344609171409], [-19, -19, 0, -0.06180284349225656], [6, 10, -1, 3.4950792507221258], [6, 3, 0, 4.442164186518582], [-33, -43, -1, -0.0482268460633728], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -7, 1, 10.320789241640052], [4, 0, 0, 2.4156135388573103], [357, -171, 1, -0.46588623776361276], [2, -2, 0, 0.5087787822945713], [-1, -5, 1, 11.390604390528134], [1, 11, -1, 0.06263459317776715], [187, 417, 1, -0.09102522208801246]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 194, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -7, -1, 7.5194275137615385], [-367, 220, 1, 0.2616483354552727], [4, 5, -1, 8.982388356261366], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -2, -1, 0.011313917911256133], [-353, 188, 1, 0.44604686000346405], [-161, -396, -1, 0.2632526271124547], [5, -4, 1, -0.02940922588399203], [-361, 172, -1, 0.4595705726056584], [-2, -5, 1, 10.828245364560448], [56, -3, -1, 0.8429044764235948], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [43, -6, -1, 1.7387981649066326], [-19, -19, 0, -0.06180284349225656], [5, 8, -1, 3.497972658155487], [6, 3, 0, 4.442164186518582], [-35, -44, -1, -0.04545875895205256], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [359, -172, 1, -0.46590138816271903], [2, -2, 0, 0.5087787822945713], [0, -3, 1, 11.422020869622635], [-1, 12, -1, 0.034973285959819966], [188, 419, 1, -0.09105782974507769]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-1, -2], "using": [-1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 195, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -5, -1, 7.561802843492255], [-369, 221, 1, 0.2617114636928934], [5, 3, -1, 9.03898956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -1, -1, 0.00794168695278838], [-355, 189, 1, 0.4460696180509636], [-162, -398, -1, 0.26331674309673075], [3, -3, 1, -0.04702086962263067], [-363, 173, -1, 0.45958739879252825], [-1, -3, 1, 10.837596644181087], [54, -4, -1, 0.8461542244734085], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [41, -7, -1, 1.7436462614337893], [-19, -19, 0, -0.06180284349225656], [4, 6, -1, 3.50265233681631], [6, 3, 0, 4.442164186518582], [-36, -42, -1, -0.039623645272444136], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -7, 1, 10.320789241640052], [4, 0, 0, 2.4156135388573103], [361, -173, 1, -0.46591636933142616], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 11.495812678447852], [0, 10, -1, 0.04820562398961491], [189, 421, 1, -0.09109012168188278]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 196, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -3, -1, 7.584386461142688], [-371, 222, 1, 0.2617739408265339], [6, 1, -1, 9.098715771644379], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, 1, -1, 0.0017611068714500355], [-357, 190, 1, 0.4460921245139149], [-163, -400, -1, 0.26338019721548106], [5, -4, 1, -0.02940922588399203], [-365, 174, -1, 0.45960403891517937], [-2, -5, 1, 10.828245364560448], [55, -2, -1, 0.8401713646974975], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [39, -8, -1, 1.748933452683579], [-19, -19, 0, -0.06180284349225656], [5, 4, -1, 3.551680459649449], [6, 3, 0, 4.442164186518582], [-35, -40, -1, -0.037999671603818654], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -6, 1, 10.271921395633992], [4, 0, 0, 2.4156135388573103], [363, -174, 1, -0.4659311840891877], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 11.578437348717136], [-2, 9, -1, 0.013403380353082937], [190, 423, 1, -0.09112210245910841]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 197, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 7.635594652317471], [-373, 223, 1, 0.2618357768587715], [5, -1, -1, 9.156416479094506], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -1, -1, 0.00794168695278838], [-359, 191, 1, 0.4461143835403069], [-164, -402, -1, 0.2634429996448132], [3, -3, 1, -0.04702086962263067], [-367, 175, -1, 0.45962049604253513], [-1, -3, 1, 10.837596644181087], [56, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [37, -9, -1, 1.7547088185777588], [-19, -19, 0, -0.06180284349225656], [3, 5, -1, 3.4950792507221258], [6, 3, 0, 4.442164186518582], [-33, -41, -1, -0.044544394550316585], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 10.32962210308412], [4, 0, 0, 2.4156135388573103], [365, -175, 1, -0.4659458351931776], [2, -2, 0, 0.5087787822945713], [5, -3, 1, 11.586010434811321], [-1, 7, -1, 0.025622006339181616], [191, 425, 1, -0.09115377655006528]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 198, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 7.725792408680939], [-375, 224, 1, 0.26189698158872554], [6, -3, -1, 9.198791808825222], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -3, -1, 0.013993250731564974], [-361, 192, 1, 0.44613639918745984], [-165, -404, -1, 0.2635051603536925], [5, -4, 1, -0.02940922588399203], [-369, 176, -1, 0.4596367731764043], [0, -5, 1, 10.88880483535587], [57, 2, -1, 0.8288043672176308], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [35, -10, -1, 1.7610257318242228], [-19, -19, 0, -0.06180284349225656], [4, 7, -1, 3.4916934861800946], [6, 3, 0, 4.442164186518582], [-35, -40, -1, -0.03799967160381865], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 10.39178914489512], [4, 0, 0, 2.4156135388573103], [367, -176, 1, -0.46596032534000037], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 11.64573664126701], [-3, 8, -1, -0.008894501620339161], [192, 427, 1, -0.09118514834277533]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 199, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 7.811802843492255], [-377, 225, 1, 0.26195756461719405], [5, -5, -1, 9.250000000000005], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -1, -1, 0.007823968821080766], [-363, 193, 1, 0.4461581754244884], [-166, -406, -1, 0.2635666891091757], [3, -3, 1, -0.04702086962263067], [-371, 177, -1, 0.45965287325330556], [1, -3, 1, 10.940013026530654], [58, 4, -1, 0.8234276105064741], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [33, -11, -1, 1.7679411566075538], [-19, -19, 0, -0.06180284349225656], [2, 6, -1, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-33, -41, -1, -0.044544394550316585], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -1, 1, 10.496997432814837], [4, 0, 0, 2.4156135388573103], [369, -177, 1, -0.46597465716734493], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 11.703437348717138], [-4, 10, -1, -0.012353846805806801], [193, 429, 1, -0.09121622214199342]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 200, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 7.897813278303571], [-379, 226, 1, 0.262017535351637], [3, -6, -1, 9.301208191174789], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -3, -1, 0.013993250731564974], [-365, 194, 1, 0.4461797161346855], [-167, -408, -1, 0.2636275954814872], [5, -4, 1, -0.02940922588399203], [-373, 178, -1, 0.4596687991462329], [3, -2, 1, 11.045221314450371], [59, 6, -1, 0.8182566641828796], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [31, -12, -1, 1.7755142427017379], [-19, -19, 0, -0.06180284349225656], [0, 5, -1, 3.4090688159108105], [6, 3, 0, 4.442164186518582], [-32, -39, -1, -0.043045804724221155], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 10.587195189178304], [4, 0, 0, 2.4156135388573103], [371, -178, 1, -0.465988833255585], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 11.765604390528138], [-5, 12, -1, -0.01462733419938629], [194, 431, 1, -0.09124700217117215]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 201, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 5, -1, 7.968219322586756], [-381, 227, 1, 0.26207690301100944], [1, -5, -1, 9.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -1, -1, 0.007823968821080766], [-367, 195, 1, 0.4462010251178286], [-168, -410, -1, 0.2636878888489432], [3, -3, 1, -0.04702086962263067], [-375, 179, -1, 0.45968455366636385], [5, -3, 1, 11.052794400544556], [60, 4, -1, 0.8237918088252163], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [29, -13, -1, 1.7838039153228307], [-19, -19, 0, -0.06180284349225656], [1, 3, -1, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-33, -37, -1, -0.03648970796185536], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 10.67320562398962], [4, 0, 0, 2.4156135388573103], [373, -179, 1, -0.46600285612932696], [2, -2, 0, 0.5087787822945713], [4, 4, 1, 11.797020869622639], [-6, 14, -1, -0.016234905214963395], [195, 433, 1, -0.09127749257437116]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 21, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 202, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 7, -1, 7.981095609883708], [-383, 228, 1, 0.2621356766304509], [-1, -6, -1, 9.401284228355632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, 0, -1, 0.004821401635912187], [-369, 196, 1, 0.44622210609241264], [-169, -412, -1, 0.2637475784027291], [5, -4, 1, -0.02940922588399203], [-377, 180, -1, 0.45970013956471295], [3, -2, 1, 11.045221314450371], [61, 2, -1, 0.8291701349002302], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [27, -14, -1, 1.7928651194267105], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-31, -38, -1, -0.04349612066143475], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 4, 1, 10.759216058800936], [4, 0, 0, 2.4156135388573103], [375, -180, 1, -0.4660167282589085], [2, -2, 0, 0.5087787822945713], [5, 6, 1, 11.811449838810791], [-5, 12, -1, -0.014627334199386291], [196, 435, 1, -0.09130769741811291]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 203, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 5, -1, 7.968219322586756], [-385, 229, 1, 0.26219386506583603], [-3, -5, -1, 9.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -2, -1, 0.010503091882821152], [-371, 197, 1, 0.44624296269781155], [-170, -414, -1, 0.2638066731515352], [3, -3, 1, -0.04702086962263067], [-379, 181, -1, 0.4597155595337326], [5, -1, 1, 11.10738835626137], [62, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [25, -15, -1, 1.8027434002440859], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -36, -1, -0.04183398847449766], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 3, 1, 10.849413815164404], [4, 0, 0, 2.4156135388573103], [377, -181, 1, -0.4660304520618487], [2, -2, 0, 0.5087787822945713], [3, 7, 1, 11.85758034041806], [-4, 10, -1, -0.012353846805806803], [197, 437, 1, -0.09133762069318677]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 204, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 4, -1, 8.039219225841823], [-387, 230, 1, 0.2622514769981904], [-4, -3, -1, 9.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -4, -1, 0.016375963562891747], [-373, 198, 1, 0.44626359849637065], [-171, -416, -1, 0.2638651819260553], [5, -4, 1, -0.02940922588399203], [-381, 182, -1, 0.4597308162088628], [3, 0, 1, 11.138804835355872], [63, -2, -1, 0.8394373027106113], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [23, -16, -1, 1.8134676575354283], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -35, -1, -0.045016663024984055], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 10.954622103084121], [4, 0, 0, 2.4156135388573103], [379, -182, 1, -0.46604402990425214], [2, -2, 0, 0.5087787822945713], [2, 5, 1, 11.861461398827217], [-3, 12, -1, 0.009216058800930226], [198, 439, 1, -0.0913672663164028]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 205, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 3, -1, 8.10079240868094], [-389, 231, 1, 0.2623085209379772], [-5, -1, -1, 9.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -5, -1, 0.01979171208028277], [-375, 199, 1, 0.44628401697543396], [-172, -418, -1, 0.26392311338335317], [3, -3, 1, -0.04702086962263067], [-383, 183, -1, 0.4597459121700323], [5, 1, 1, 11.170221314450373], [61, -3, -1, 0.8422074519321652], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [21, -17, -1, 1.825041282217508], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-26, -34, -1, -0.048501250865766087], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 11.04820562398962], [4, 0, 0, 2.4156135388573103], [381, -183, 1, -0.4660574641021684], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 11.922020869622639], [-5, 13, -1, -0.010231906636556832], [199, 441, 1, -0.0913966381322974]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 206, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 8.147813278303571], [-391, 232, 1, 0.2623650052292584], [-4, 1, -1, 9.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -4, -1, 0.016375963562891747], [-377, 200, 1, 0.44630422154930705], [-173, -420, -1, 0.26398047601110175], [5, -4, 1, -0.02940922588399203], [-385, 184, -1, 0.45976084994311206], [4, 3, 1, 11.241221217705439], [59, -4, -1, 0.8451601403172665], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [19, -18, -1, 1.837432527380054], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -35, -1, -0.045016663024984055], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 11.108765094785042], [4, 0, 0, 2.4156135388573103], [383, -184, 1, -0.46607075692290856], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 12.015604390528138], [-6, 15, -1, -0.012353846805806801], [200, 443, 1, -0.0914257399147916]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 207, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -1, -1, 8.23801103466704], [-393, 233, 1, 0.2624209380537347], [-5, 3, -1, 9.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -5, -1, 0.018746717622122766], [-379, 201, 1, 0.44632421556115875], [-174, -422, -1, 0.26403727813169836], [3, -3, 1, -0.04702086962263067], [-387, 185, -1, 0.4597756320013238], [2, 4, 1, 11.315013026530655], [60, -2, -1, 0.8396896623454573], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [17, -19, -1, 1.850565826876838], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-29, -33, -1, -0.03765886924871011], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 11.17320562398962], [4, 0, 0, 2.4156135388573103], [385, -185, 1, -0.4660839105863205], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 12.120812678447855], [-4, 16, -1, 0.009216058800930228], [201, 445, 1, -0.09145457536880415]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 208, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 8.343219322586757], [-395, 234, 1, 0.262476327434669], [-3, 4, -1, 9.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -3, -1, 0.013046224230811494], [-381, 202, 1, 0.4463440022848643], [-175, -424, -1, 0.26409352790626117], [5, -4, 1, -0.02940922588399203], [-389, 186, -1, 0.4597902607666044], [0, 3, 1, 11.388804835355872], [61, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [15, -20, -1, 1.8643165830832038], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -31, -1, -0.03549067991458921], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 11.259216058800936], [4, 0, 0, 2.4156135388573103], [387, -186, 1, -0.4660969272660242], [2, -2, 0, 0.5087787822945713], [-5, 0, 1, 12.172020869622639], [-5, 14, -1, -0.006388331727199843], [202, 447, 1, -0.09148314813182068]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 209, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 8.436802843492256], [-397, 235, 1, 0.2625311812406965], [-1, 5, -1, 9.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -4, -1, 0.015416053953385394], [-383, 203, 1, 0.4463635849267906], [-176, -426, -1, 0.2641492333385104], [3, -3, 1, -0.04702086962263067], [-391, 187, -1, 0.4598047386109283], [-2, 4, 1, 11.462596644181088], [62, 2, -1, 0.8292542104038156], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [13, -21, -1, 1.8785121874194017], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-26, -30, -1, -0.03875395478627565], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -3, 1, 11.349413815164404], [4, 0, 0, 2.4156135388573103], [389, -187, 1, -0.46610980909060895], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 12.223229060797422], [-3, 13, -1, 0.012109466234291284], [203, 449, 1, -0.09151146177542004]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 210, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -5, -1, 8.497362314287678], [-399, 236, 1, 0.26258550718952584], [1, 6, -1, 9.901284228355632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -6, -1, 0.02042579216404227], [-385, 204, 1, 0.44638296662752724], [-177, -428, -1, 0.26420440227853803], [5, -4, 1, -0.02940922588399203], [-393, 188, -1, 0.4598190678575892], [-3, 2, 1, 11.545221314450373], [63, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [11, -22, -1, 1.892941156607554], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -29, -1, -0.030196924856495923], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 11.454622103084121], [4, 0, 0, 2.4156135388573103], [391, -188, 1, -0.4661225581447932], [2, -2, 0, 0.5087787822945713], [-4, -3, 1, 12.274437251972206], [-5, 14, -1, -0.006388331727199843], [204, 451, 1, -0.09153951980675953]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 211, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 8.48801103466704], [-401, 237, 1, 0.26263931285153397], [3, 5, -1, 9.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -8, -1, 0.025244677635613187], [-387, 205, 1, 0.44640215046356413], [-178, -430, -1, 0.2642590424264697], [3, -3, 1, -0.04702086962263067], [-395, 189, -1, 0.459833250782442], [-4, 0, 1, 11.638804835355872], [64, -2, -1, 0.8393584350544842], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [9, -23, -1, 1.9073701257957063], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -28, -1, -0.021919091478339963], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -1, 1, 11.516789144895121], [4, 0, 0, 2.4156135388573103], [393, -189, 1, -0.46613517647054903], [2, -2, 0, 0.5087787822945713], [-2, -4, 1, 12.348229060797422], [-3, 15, -1, 0.01678914489511429], [205, 453, 1, -0.09156732567002025]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 212, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 8.539219225841823], [-403, 238, 1, 0.26269260565325997], [4, 3, -1, 10.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [63, -10, -1, 0.029875075056416865], [-389, 206, 1, 0.44642113944891865], [-179, -432, -1, 0.2643131613360233], [5, -4, 1, -0.02940922588399203], [-397, 190, -1, 0.459847289615108], [-5, -2, 1, 11.699364306151294], [62, -3, -1, 0.8420815050238012], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [7, -24, -1, 1.9215657301319042], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-31, -30, -1, -0.024796155548191028], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 11.587195189178306], [4, 0, 0, 2.4156135388573103], [395, -190, 1, -0.4661476660681921], [2, -2, 0, 0.5087787822945713], [0, -3, 1, 12.422020869622639], [-1, 16, -1, 0.03827136183684446], [206, 455, 1, -0.0915948827478135]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 213, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 8.61301103466704], [-405, 239, 1, 0.26274539288079907], [5, 1, -1, 10.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [65, -9, -1, 0.026719010849050324], [-391, 207, 1, 0.44643993653671266], [-180, -434, -1, 0.2643667664179659], [3, -3, 1, -0.04702086962263067], [-399, 191, -1, 0.4598611865401422], [-3, -3, 1, 11.763804835355872], [60, -4, -1, 0.8449811134601628], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [5, -25, -1, 1.9353164863382701], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-32, -32, -1, -0.027405019286345443], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 11.673205623989622], [4, 0, 0, 2.4156135388573103], [397, -191, 1, -0.46616002889743824], [2, -2, 0, 0.5087787822945713], [2, -4, 1, 12.495812678447855], [-3, 17, -1, 0.020405680096722275], [207, 457, 1, -0.09162219436254977]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 214, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 0, -1, 8.686802843492256], [-407, 240, 1, 0.26279768168310197], [6, -1, -1, 10.151284228355632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [64, -11, -1, 0.03191147091828381], [-393, 208, 1, 0.4464585446207027], [-181, -436, -1, 0.26441986494347414], [5, -4, 1, -0.02940922588399203], [-401, 192, -1, 0.4598749436981666], [-1, -4, 1, 11.849815270167188], [61, -2, -1, 0.8396027873851489], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [3, -26, -1, 1.948449785835054], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-34, -33, -1, -0.025029748741160075], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 4, 1, 11.759216058800938], [4, 0, 0, 2.4156135388573103], [399, -192, 1, -0.4661722668784285], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 12.57843734871714], [-1, 16, -1, 0.03827136183684446], [208, 459, 1, -0.09164926377777159]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 215, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 2, -1, 8.760594652317472], [-409, 241, 1, 0.26284947907518097], [5, -3, -1, 10.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -12, -1, 0.035249353423129785], [-395, 209, 1, 0.4464769665367639], [-182, -438, -1, 0.2644724640473999], [3, -3, 1, -0.04702086962263067], [-403, 193, -1, 0.45988856318696886], [1, -5, 1, 11.920221314450373], [59, -3, -1, 0.8424721217709333], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [1, -27, -1, 1.9608410309975999], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-32, -34, -1, -0.0322264209222576], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 3, 1, 11.849413815164406], [4, 0, 0, 2.4156135388573103], [401, -193, 1, -0.4661843818927228], [2, -2, 0, 0.5087787822945713], [5, -1, 1, 12.64060439052814], [1, 17, -1, 0.057556903610253216], [209, 461, 1, -0.09167609419945075]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 216, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 8.843219322586757], [-411, 242, 1, 0.2629007919412276], [3, -4, -1, 10.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -13, -1, 0.038780075735178166], [-397, 210, 1, 0.4464952050643296], [-183, -440, -1, 0.2645245707314451], [5, -4, 1, -0.02940922588399203], [-405, 194, -1, 0.45990204706256793], [2, -3, 1, 11.982388356261373], [57, -4, -1, 0.8455369491854979], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-1, -28, -1, 1.9724146556796796], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-34, -35, -1, -0.02971145119261768], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 2, 1, 11.954622103084123], [4, 0, 0, 2.4156135388573103], [403, -194, 1, -0.46619637578426426], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 12.67202086962264], [2, 19, -1, 0.06489730720487745], [210, 463, 1, -0.0917026887772517]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 217, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 8.936802843492256], [-413, 243, 1, 0.26295162703764285], [1, -5, -1, 10.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -14, -1, 0.04016683409541876], [-399, 211, 1, 0.4465132629277888], [-184, -442, -1, 0.2645761918672484], [3, -3, 1, -0.04702086962263067], [-407, 195, -1, 0.45991539734024894], [3, -1, 1, 12.08759664418109], [55, -5, -1, 0.8488154303308417], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-3, -27, -1, 1.9843446091714092], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-32, -36, -1, -0.036756298906983786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 12.048205623989622], [4, 0, 0, 2.4156135388573103], [405, -195, 1, -0.46620825036031416], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 12.745812678447857], [0, 18, -1, 0.04820562398961491], [211, 465, 1, -0.09172905060576181]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 218, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 5, -1, 8.997362314287678], [-415, 244, 1, 0.26300199099598426], [-1, -6, -1, 10.401284228355632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [63, -16, -1, 0.044404825796477726], [-401, 212, 1, 0.44653114279784134], [-185, -444, -1, 0.26462733419938655], [5, -4, 1, -0.02940922588399203], [-409, 196, -1, 0.45992861599556645], [4, 1, 1, 12.177794400544558], [53, -6, -1, 0.8523276177502414], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-5, -26, -1, 1.9969705405846003], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-33, -38, -1, -0.038594640582137484], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 12.141789144895121], [4, 0, 0, 2.4156135388573103], [407, -196, 1, -0.46622000739235986], [2, -2, 0, 0.5087787822945713], [3, 4, 1, 12.819604487273073], [-1, 16, -1, 0.03827136183684446], [212, 467, 1, -0.09175518272568929]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 219, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 8.936802843492256], [-417, 245, 1, 0.2630518903258316], [-3, -5, -1, 10.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -18, -1, 0.049791419016542576], [-403, 213, 1, 0.44654884729281374], [-186, -446, -1, 0.26467800434829286], [3, -3, 1, -0.04702086962263067], [-411, 197, -1, 0.4599417049653187], [6, 2, 1, 12.190013026530657], [51, -7, -1, 0.8560956098837086], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-7, -25, -1, 2.010183650036128], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-32, -40, -1, -0.04501666302498404], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 12.246997432814839], [4, 0, 0, 2.4156135388573103], [409, -197, 1, -0.46623164861699534], [2, -2, 0, 0.5087787822945713], [1, 5, 1, 12.89060439052814], [-2, 14, -1, 0.025622006339181613], [213, 469, 1, -0.09178108812503033]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 220, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 5, -1, 8.997362314287678], [-419, 246, 1, 0.2631013314175747], [-4, -3, -1, 10.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -17, -1, 0.048763607045634795], [-405, 214, 1, 0.4465663789799372], [-187, -448, -1, 0.26472820881309594], [5, -4, 1, -0.02940922588399203], [-413, 198, -1, 0.4599546661484936], [4, 3, 1, 12.24122121770544], [49, -8, -1, 0.8601436883015792], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-9, -24, -1, 2.0238330910427247], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -39, -1, -0.048047819206269084], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -5, 1, 12.298205623989622], [4, 0, 0, 2.4156135388573103], [411, -198, 1, -0.46624317573677615], [2, -2, 0, 0.5087787822945713], [0, 3, 1, 12.92202086962264], [-3, 12, -1, 0.009216058800930228], [214, 471, 1, -0.09180676974020571]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 221, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 8.936802843492256], [-421, 247, 1, 0.26315032054512427], [-5, -1, -1, 10.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -19, -1, 0.05440561914207005], [-407, 215, 1, 0.4465837403765868], [-188, -450, -1, 0.2647779539743813], [3, -3, 1, -0.04702086962263067], [-415, 199, -1, 0.45996750140718656], [3, 5, 1, 12.302794400544558], [47, -9, -1, 0.8644984207380522], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-11, -23, -1, 2.037732868687837], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-29, -41, -1, -0.05442607081801652], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 12.371997432814839], [4, 0, 0, 2.4156135388573103], [413, -199, 1, -0.4662545904210492], [2, -2, 0, 0.5087787822945713], [-2, 4, 1, 12.995812678447857], [-1, 11, -1, 0.03377665480146266], [215, 473, 1, -0.09183223045716848]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 222, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 5, -1, 8.997362314287678], [-423, 248, 1, 0.2631988638685502], [-4, 1, -1, 10.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -20, -1, 0.05524558465438761], [-409, 216, 1, 0.4466009339514865], [-189, -452, -1, 0.26482724609687736], [5, -4, 1, -0.02940922588399203], [-417, 200, -1, 0.45998021256749205], [1, 4, 1, 12.34981527016719], [45, -10, -1, 0.8691887047792215], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-13, -22, -1, 2.0516752623007957], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-27, -42, -1, -0.061473835197157656], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 12.454622103084123], [4, 0, 0, 2.4156135388573103], [415, -200, 1, -0.46626589430675847], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 13.078437348717141], [-3, 10, -1, 0.0018188344507437115], [216, 475, 1, -0.09185747311248288]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 223, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 8.98801103466704], [-425, 249, 1, 0.2632469674366478], [-5, 3, -1, 10.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [63, -21, -1, 0.05602959281069554], [-411, 217, 1, 0.4466179621258781], [-190, -454, -1, 0.26487609133206935], [3, -3, 1, -0.04702086962263067], [-419, 201, -1, 0.4599928014203692], [-1, 5, 1, 12.420221314450375], [43, -11, -1, 0.8742457168175427], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-15, -21, -1, 2.0654487370771437], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-28, -40, -1, -0.05520496317923799], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -1, 1, 12.516789144895123], [4, 0, 0, 2.4156135388573103], [417, -201, 1, -0.4662770889992273], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 13.17202086962264], [-1, 9, -1, 0.030593980250976267], [217, 477, 1, -0.09188250049437607]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 224, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 9.093219322586757], [-427, 250, 1, 0.2632946371894359], [-3, 4, -1, 10.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -23, -1, 0.06135814926943672], [-413, 218, 1, 0.4466348272746575], [-191, -456, -1, 0.2649244957207427], [5, -4, 1, -0.02940922588399203], [-421, 202, -1, 0.4600052697224832], [-2, 3, 1, 12.482388356261374], [44, -9, -1, 0.8664979355710722], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-17, -20, -1, 2.0788566781358186], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-29, -38, -1, -0.048656827495677096], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 12.587195189178308], [4, 0, 0, 2.4156135388573103], [419, -202, 1, -0.46628817607291834], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 13.26560439052814], [1, 10, -1, 0.06406838270489167], [218, 479, 1, -0.0919073153437627]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 19, "got": [-2, 1], "using": [-2, 1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 225, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 9.155386364397756], [-429, 251, 1, 0.263341878960587], [-1, 5, -1, 10.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -24, -1, 0.06538087243133388], [-415, 219, 1, 0.44665153172747774], [-192, -458, -1, 0.2649724651954583], [3, -3, 1, -0.04702086962263067], [-423, 203, -1, 0.46001761919702144], [-3, 1, 1, 12.587596644181092], [42, -10, -1, 0.8715878437919982], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -40, -1, -0.04998863693677872], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 12.673205623989624], [4, 0, 0, 2.4156135388573103], [421, -203, 1, -0.4662991570721713], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 13.370812678447857], [2, 8, -1, 0.08719518917829955], [219, 481, 1, -0.09193192035524406]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 226, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -1, -1, 9.213087071847884], [-431, 252, 1, 0.2633886984797933], [1, 4, -1, 10.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -23, -1, 0.06490719840401751], [-417, 220, 1, 0.44666807776982154], [-193, -460, -1, 0.26502000558296157], [5, -4, 1, -0.02940922588399203], [-425, 204, -1, 0.46002985153448817], [-4, -1, 1, 12.67779440054456], [43, -8, -1, 0.8636619714999902], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-31, -38, -1, -0.04349612066143473], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 12.737646153194202], [4, 0, 0, 2.4156135388573103], [423, -204, 1, -0.4663100335119201], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 13.42202086962264], [0, 7, -1, 0.04820562398961491], [220, 483, 1, -0.0919563181780814]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 227, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 9.272813278303573], [-433, 253, 1, 0.26343510137507004], [3, 5, -1, 10.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -22, -1, 0.06439844698898259], [-419, 221, 1, 0.44668446764404274], [-194, -462, -1, 0.2650671226065281], [3, -3, 1, -0.04702086962263067], [-427, 205, -1, 0.4600419683934744], [-3, -3, 1, 12.763804835355876], [44, -6, -1, 0.8559563667494267], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-30, -40, -1, -0.04998863693677872], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 12.798205623989624], [4, 0, 0, 2.4156135388573103], [425, -205, 1, -0.4663208068783892], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 13.473229060797424], [-1, 9, -1, 0.030593980250976267], [221, 485, 1, -0.09198051141714542]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 228, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -5, -1, 9.297373874304105], [-435, 254, 1, 0.2634810931749976], [4, 3, -1, 11.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -20, -1, 0.06033003086341211], [-421, 222, 1, 0.4467007035503787], [-195, -464, -1, 0.26511382188824645], [5, -4, 1, -0.02940922588399203], [-429, 206, -1, 0.46005397140140836], [-2, -5, 1, 12.828245364560454], [42, -7, -1, 0.8606706894983164], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-31, -38, -1, -0.04349612066143473], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 12.891789144895123], [4, 0, 0, 2.4156135388573103], [427, -206, 1, -0.46633147862977076], [2, -2, 0, 0.5087787822945713], [0, -5, 1, 13.42202086962264], [1, 10, -1, 0.06406838270489167], [222, 487, 1, -0.09200450263384168]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 229, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 9.311802843492258], [-437, 255, 1, 0.26352667931090484], [5, 1, -1, 11.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -22, -1, 0.0663945844750301], [-423, 223, 1, 0.4467167876479346], [-196, -466, -1, 0.26516010895124165], [3, -3, 1, -0.04702086962263067], [-431, 207, -1, 0.4600658621552836], [0, -4, 1, 12.888804835355876], [43, -5, -1, 0.8528101128514076], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-33, -37, -1, -0.03648970796185534], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 12.99699743281484], [4, 0, 0, 2.4156135388573103], [429, -207, 1, -0.46634205019688185], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 13.473229060797424], [3, 11, -1, 0.09058095372033094], [223, 489, 1, -0.09202829434701282]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 230, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -6, -1, 9.363011034667041], [-439, 256, 1, 0.2635718651189949], [4, -1, -1, 11.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -20, -1, 0.06033003086341211], [-425, 224, 1, 0.44673272205563974], [-197, -468, -1, 0.26520598922183986], [5, -4, 1, -0.02940922588399203], [-433, 208, -1, 0.4600776422223669], [1, -6, 1, 12.915089063711502], [44, -3, -1, 0.8452211659826394], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-35, -38, -1, -0.03394195502553517], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 13.087195189178308], [4, 0, 0, 2.4156135388573103], [431, -208, 1, -0.4663525229838044], [2, -2, 0, 0.5087787822945713], [3, -4, 1, 13.524437251972207], [1, 12, -1, 0.06143796201940985], [224, 491, 1, -0.09205188903381899]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, 1], "using": [2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 231, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -7, -1, 9.414219225841824], [-441, 257, 1, 0.26361665584241617], [5, -3, -1, 11.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -21, -1, 0.061001566722490165], [-427, 225, 1, 0.4467485088531777], [-198, -470, -1, 0.2652514680316768], [7, -3, 1, 0.013538601172791029], [-435, 209, -1, 0.46008931314088686], [3, -7, 1, 12.953245364560454], [42, -4, -1, 0.8494984945621494], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -37, -1, -0.027405019286345426], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 13.173205623989624], [4, 0, 0, 2.4156135388573103], [433, -209, 1, -0.46636289836850636], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 13.473229060797424], [0, 14, -1, 0.04820562398961491], [225, 493, 1, -0.09207528913059582]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 232, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -6, -1, 9.463087071847884], [-443, 258, 1, 0.26366105663327905], [3, -4, -1, 11.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -20, -1, 0.06033003086341211], [-429, 226, 1, 0.44676415008189047], [-199, -472, -1, 0.26529655061975144], [5, -4, 1, -0.02940922588399203], [-437, 210, -1, 0.4601008764207031], [5, -6, 1, 12.999375866167723], [43, -2, -1, 0.8417836854928762], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -35, -1, -0.020868083547155684], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 13.25921605880094], [4, 0, 0, 2.4156135388573103], [435, -210, 1, -0.466373177703446], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 13.504645539891925], [-2, 13, -1, 0.023910728815850425], [226, 495, 1, -0.09209849703369176]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 233, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -7, -1, 9.501243372696836], [-445, 259, 1, 0.26370507255462045], [1, -5, -1, 11.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -22, -1, 0.0663945844750301], [-431, 227, 1, 0.4467796477456579], [-200, -474, -1, 0.26534124213442634], [3, -3, 1, -0.04702086962263067], [-439, 211, -1, 0.4601123335439575], [6, -4, 1, 13.045221314450377], [44, 0, -1, 0.8343864611426897], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -37, -1, -0.02321769773419272], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -6, 1, 13.298205623989624], [4, 0, 0, 2.4156135388573103], [437, -211, 1, -0.46638336231615957], [2, -2, 0, 0.5087787822945713], [3, -9, 1, 13.473229060797424], [-3, 15, -1, 0.016789144895114294], [227, 497, 1, -0.09212151510028477]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 234, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -5, -1, 9.54419119975362], [-447, 260, 1, 0.2637487085823179], [-1, -4, -1, 11.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -23, -1, 0.07109966605630756], [-433, 228, 1, 0.44679500381175336], [-201, -476, -1, 0.2653855476353765], [5, -4, 1, -0.02940922588399203], [-441, 212, -1, 0.46012368596570696], [4, -3, 1, 13.036388453006309], [45, -2, -1, 0.841455362197726], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-41, -36, -1, -0.017084771771265515], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -7, 1, 13.253912857598172], [4, 0, 0, 2.4156135388573103], [439, -212, 1, -0.4663934535098325], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 13.504645539891925], [-2, 17, -1, 0.0295671884125123], [228, 499, 1, -0.09214434564917906]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 235, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -3, -1, 9.600792408680944], [-449, 261, 1, 0.26379196960695483], [-3, -5, -1, 11.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -25, -1, 0.07736004783116414], [-435, 229, 1, 0.44681022021167505], [-202, -478, -1, 0.2654294720954883], [3, -3, 1, -0.04702086962263067], [-443, 213, -1, 0.4601349351145395], [3, -1, 1, 13.087596644181092], [43, -3, -1, 0.8454723308605501], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -35, -1, -0.011138314882376113], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -5, 1, 13.266789144895123], [4, 0, 0, 2.4156135388573103], [441, -213, 1, -0.4664034525638554], [2, -2, 0, 0.5087787822945713], [6, -8, 1, 13.524437251972207], [-4, 18, -1, 0.013403380353082937], [229, 501, 1, -0.09216699096158255]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 236, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -1, -1, 9.647813278303575], [-451, 262, 1, 0.2638348604356377], [-4, -3, -1, 11.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -27, -1, 0.08104286815868803], [-437, 230, 1, 0.446825298841956], [-203, -480, -1, 0.26547302040271], [5, -4, 1, -0.02940922588399203], [-445, 214, -1, 0.4601460823931732], [4, 1, 1, 13.17779440054456], [44, -1, -1, 0.8380029963442975], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -37, -1, -0.013684976113772633], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 13.32448985234525], [4, 0, 0, 2.4156135388573103], [443, -214, 1, -0.4664133607343644], [2, -2, 0, 0.5087787822945713], [5, -6, 1, 13.532591900434488], [-2, 17, -1, 0.0295671884125123], [230, 503, 1, -0.09218945328186531]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 237, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 1, -1, 9.738011034667043], [-453, 263, 1, 0.2638773857937673], [-5, -1, -1, 11.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -28, -1, 0.08606814145965376], [-439, 231, 1, 0.4468402415649514], [-204, -482, -1, 0.26551619736185483], [3, -3, 1, -0.04702086962263067], [-447, 215, -1, 0.4601571291790391], [3, 3, 1, 13.263804835355876], [42, -2, -1, 0.8419595472368736], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -39, -1, -0.01964751271491964], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -4, 1, 13.37199743281484], [4, 0, 0, 2.4156135388573103], [445, -215, 1, -0.46642317925476723], [2, -2, 0, 0.5087787822945713], [4, -4, 1, 13.54702086962264], [0, 18, -1, 0.04820562398961491], [231, 505, 1, -0.09221173481830004]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 238, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 9.84321932258676], [-455, 264, 1, 0.26391955032676484], [-4, 1, -1, 11.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -27, -1, 0.08104286815868803], [-441, 232, 1, 0.4468550502096049], [-205, -484, -1, 0.26555900769635893], [5, -4, 1, -0.02940922588399203], [-449, 216, -1, 0.4601680768248486], [1, 4, 1, 13.349815270167191], [43, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-42, -41, -1, -0.025487582625609066], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -3, 1, 13.445789241640057], [4, 0, 0, 2.4156135388573103], [447, -216, 1, -0.46643290933625486], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 13.598229060797424], [-2, 19, -1, 0.03151394077435232], [232, 507, 1, -0.09223383774378441]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 239, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 9.93680284349226], [-457, 265, 1, 0.2639613586017553], [-5, 3, -1, 11.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -25, -1, 0.07736004783116414], [-443, 233, 1, 0.44686972657219454], [-206, -486, -1, 0.26560145604999424], [3, -3, 1, -0.04702086962263067], [-451, 217, -1, 0.46017892665914517], [-1, 3, 1, 13.440013026530659], [44, -2, -1, 0.8416158005940779], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-41, -39, -1, -0.023426974330332494], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -1, 1, 13.49699743281484], [4, 0, 0, 2.4156135388573103], [449, -217, 1, -0.46644255216829955], [2, -2, 0, 0.5087787822945713], [7, -1, 1, 13.649437251972207], [-1, 17, -1, 0.03885434436897656], [233, 509, 1, -0.09225576419654652]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 240, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 3, -1, 10.030386364397758], [-459, 266, 1, 0.2640028151092073], [-3, 4, -1, 11.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -23, -1, 0.07343926337972137], [-445, 234, 1, 0.44688427241705847], [-207, -488, -1, 0.26564354698853904], [5, -4, 1, -0.02940922588399203], [-453, 218, -1, 0.4601896799868419], [0, 5, 1, 13.388804835355876], [42, -3, -1, 0.8457353966426198], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-40, -41, -1, -0.029369795310079442], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 1, 1, 13.587195189178308], [4, 0, 0, 2.4156135388573103], [451, -218, 1, -0.46645210891913924], [2, -2, 0, 0.5087787822945713], [6, 1, 1, 13.698305097978267], [-3, 16, -1, 0.018706581555850615], [234, 511, 1, -0.09227751628083314]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 241, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 1, -1, 10.135594652317476], [-461, 267, 1, 0.26404392426453305], [-1, 5, -1, 11.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -22, -1, 0.07322019270858887], [-447, 235, 1, 0.4468986894773018], [-208, -490, -1, 0.2656852850014062], [3, -3, 1, -0.04702086962263067], [-455, 219, -1, 0.4602003380897444], [-2, 4, 1, 13.462596644181092], [43, -1, -1, 0.838087071847883], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-41, -43, -1, -0.031193706874131314], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 3, 1, 13.673205623989624], [4, 0, 0, 2.4156135388573103], [453, -219, 1, -0.4664615807362495], [2, -2, 0, 0.5087787822945713], [7, 3, 1, 13.736461398827219], [-1, 15, -1, 0.03761097167214167], [235, 513, 1, -0.09229909606758196]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 242, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 0, -1, 10.18680284349226], [-463, 268, 1, 0.264084690409648], [1, 4, -1, 11.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -24, -1, 0.07996194887781807], [-449, 236, 1, 0.44691297945548475], [-209, -492, -1, 0.2657266745032312], [5, -4, 1, -0.02940922588399203], [-457, 220, -1, 0.46021090222706007], [-3, 2, 1, 13.545221314450377], [44, 1, -1, 0.8307699259410816], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -44, -1, -0.03698109387485986], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 5, 1, 13.737646153194202], [4, 0, 0, 2.4156135388573103], [455, -220, 1, -0.4664709687468026], [2, -2, 0, 0.5087787822945713], [6, 5, 1, 13.782591900434488], [0, 13, -1, 0.0482056239896149], [236, 515, 1, -0.09232050559507775]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 243, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -1, -1, 10.238011034667043], [-465, 269, 1, 0.2641251178144917], [3, 5, -1, 11.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -25, -1, 0.0855286352444598], [-451, 237, 1, 0.44692714402429207], [-210, -494, -1, 0.26576771983542036], [3, -3, 1, -0.04702086962263067], [-459, 221, -1, 0.46022137363589366], [-4, 0, 1, 13.638804835355876], [45, -1, -1, 0.8379226556428471], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -45, -1, -0.042883346519578175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 13.798205623989624], [4, 0, 0, 2.4156135388573103], [457, -221, 1, -0.46648027405811465], [2, -2, 0, 0.5087787822945713], [5, 7, 1, 13.823305097978267], [2, 12, -1, 0.0744898523452416], [237, 517, 1, -0.09234174686959325]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 244, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 10.34321932258676], [-467, 270, 1, 0.2641652106785114], [4, 3, -1, 12.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -26, -1, 0.09137502527020214], [-453, 238, 1, 0.44694118482718576], [-211, -496, -1, 0.2658084252676613], [5, -4, 1, -0.02940922588399203], [-461, 222, -1, 0.4602317535317305], [-3, -2, 1, 13.732388356261374], [43, -2, -1, 0.8417836854928761], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -43, -1, -0.03721694868604232], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 13.891789144895123], [4, 0, 0, 2.4156135388573103], [459, -222, 1, -0.4664894977580807], [2, -2, 0, 0.5087787822945713], [3, 6, 1, 13.848229060797424], [0, 11, -1, 0.04820562398961491], [238, 519, 1, -0.0923628218660147]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 245, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 10.43680284349226], [-469, 271, 1, 0.2642049731321088], [5, 1, -1, 12.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [42, -24, -1, 0.08744607190519614], [-455, 239, 1, 0.44695510347904027], [-212, -498, -1, 0.2658487949993958], [3, -3, 1, -0.04702086962263067], [-463, 223, -1, 0.4602420431089063], [-1, -3, 1, 13.837596644181092], [44, 0, -1, 0.8343864611426896], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -44, -1, -0.04326777800162219], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 13.99699743281484], [4, 0, 0, 2.4156135388573103], [461, -223, 1, -0.46649864091559873], [2, -2, 0, 0.5087787822945713], [1, 5, 1, 13.89060439052814], [2, 12, -1, 0.0744898523452416], [239, 521, 1, -0.09238373252845333]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 246, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 10.530386364397758], [-471, 272, 1, 0.26424440923805165], [4, -1, -1, 12.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -23, -1, 0.0814805568265892], [-457, 240, 1, 0.44696890156676133], [-213, -500, -1, 0.26588883316125667], [5, -4, 1, -0.02940922588399203], [-465, 224, -1, 0.4602522435410652], [0, -5, 1, 13.888804835355876], [45, -2, -1, 0.8414553621977259], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -45, -1, -0.04079603616993612], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 14.087195189178308], [4, 0, 0, 2.4156135388573103], [463, -224, 1, -0.4665077045809826], [2, -2, 0, 0.5087787822945713], [0, 3, 1, 13.92202086962264], [1, 10, -1, 0.06406838270489167], [240, 523, 1, -0.09240448077084194]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, -1], "using": [-2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 247, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 10.635594652317476], [-473, 273, 1, 0.26428352299285085], [5, -3, -1, 12.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -24, -1, 0.0813569893490172], [-459, 241, 1, 0.44698258064988855], [-214, -502, -1, 0.26592854381646974], [3, -5, 1, -0.08601043481131534], [-467, 225, -1, 0.4602623559816061], [1, -3, 1, 13.940013026530659], [43, -3, -1, 0.84547233086055], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -43, -1, -0.03931933408862049], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 14.173205623989624], [4, 0, 0, 2.4156135388573103], [465, -225, 1, -0.4665166897863641], [2, -2, 0, 0.5087787822945713], [-2, 4, 1, 13.995812678447857], [-1, 9, -1, 0.030593980250976267], [241, 525, 1, -0.09242506847751818]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [1, 2], "using": [1, 2]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 248, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 10.725792408680944], [-475, 274, 1, 0.264322318328104], [3, -4, -1, 12.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -25, -1, 0.08124363114661068], [-461, 242, 1, 0.4469961422611832], [-215, -504, -1, 0.2659679309622214], [4, -3, 1, -0.0244372519721974], [-469, 226, -1, 0.4602723815641171], [2, -5, 1, 13.949364306151297], [44, -1, -1, 0.8380029963442974], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -45, -1, -0.045016663024984034], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -5, 1, 14.237646153194202], [4, 0, 0, 2.4156135388573103], [467, -226, 1, -0.4665255975460846], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 14.078437348717141], [-3, 8, -1, -0.008894501620339161], [242, 527, 1, -0.09244549750379413]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 249, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 10.81180284349226], [-477, 275, 1, 0.2643607991118062], [1, -5, -1, 12.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -26, -1, 0.08113926726445977], [-463, 243, 1, 0.4470095879071999], [-216, -506, -1, 0.26600699853099324], [6, -4, 1, -0.015604390528130075], [-471, 227, -1, 0.4602823214027989], [3, -3, 1, 14.013804835355876], [42, -2, -1, 0.8419595472368735], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -46, -1, -0.042517052705805164], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -7, 1, 14.27562200633919], [4, 0, 0, 2.4156135388573103], [469, -227, 1, -0.46653442885707663], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 14.17202086962264], [-5, 7, -1, -0.05051014765475837], [243, 529, 1, -0.09246576967651284]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 250, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 10.897813278303575], [-479, 276, 1, 0.2643989691496302], [-1, -4, -1, 12.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -27, -1, 0.08104286815868804], [-465, 244, 1, 0.4470229190688447], [-217, -508, -1, 0.26604575039186473], [4, -3, 1, -0.0244372519721974], [-473, 228, -1, 0.4602921765928779], [4, -1, 1, 14.099815270167191], [43, 0, -1, 0.8343864611426894], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -44, -1, -0.03698109387485986], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -5, 1, 14.298205623989624], [4, 0, 0, 2.4156135388573103], [471, -228, 1, -0.46654318469923606], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 14.26560439052814], [-3, 6, -1, -0.025586184835601742], [244, 531, 1, -0.09248588679459212]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 33, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 251, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 10.988011034667043], [-481, 277, 1, 0.26443683218617403], [-3, -5, -1, 12.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -29, -1, 0.08710959261139499], [-467, 245, 1, 0.44703613720191815], [-218, -510, -1, 0.2660841903517839], [6, -4, 1, -0.015604390528130075], [-475, 229, -1, 0.46030194821100795], [3, 1, 1, 14.190013026530659], [44, -2, -1, 0.8416158005940778], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -45, -1, -0.042883346519578175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -6, 1, 14.349413815164407], [4, 0, 0, 2.4156135388573103], [473, -229, 1, -0.466551866035784], [2, -2, 0, 0.5087787822945713], [-4, -4, 1, 14.29702086962264], [-4, 8, -1, -0.025586184835601742], [245, 533, 1, -0.09250585062955582]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 252, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 11.09321932258676], [-483, 278, 1, 0.26447439190618094], [-4, -3, -1, 12.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -28, -1, 0.08744607190519613], [-469, 246, 1, 0.4470492437376453], [-219, -512, -1, 0.26612232215680826], [4, -3, 1, -0.0244372519721974], [-477, 230, -1, 0.4603116373156623], [2, 3, 1, 14.295221314450377], [42, -3, -1, 0.8457353966426197], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -47, -1, -0.048375635309298975], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -4, 1, 14.40062200633919], [4, 0, 0, 2.4156135388573103], [475, -230, 1, -0.4665604738136205], [2, -2, 0, 0.5087787822945713], [-2, -5, 1, 14.361461398827219], [-6, 9, -1, -0.04537789691588448], [246, 535, 1, -0.09252566292605319]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 253, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 11.15538636439776], [-485, 279, 1, 0.26451165193572856], [-5, -1, -1, 12.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -29, -1, 0.09280881479732667], [-471, 247, 1, 0.44706224008319184], [-220, -514, -1, 0.26616014949331607], [6, -4, 1, -0.015604390528130075], [-479, 231, -1, 0.46032124494751625], [0, 4, 1, 14.388804835355876], [43, -1, -1, 0.8380870718478829], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -46, -1, -0.042517052705805164], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -2, 1, 14.474413815164407], [4, 0, 0, 2.4156135388573103], [477, -231, 1, -0.46656900896366815], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 14.370812678447857], [-7, 7, -1, -0.0767943760103851], [247, 537, 1, -0.09254532540236636]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 254, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 11.225792408680945], [-487, 280, 1, 0.2645486158433906], [-4, 1, -1, 12.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -27, -1, 0.08929662737792708], [-473, 248, 1, 0.4470751276221675], [-221, -516, -1, 0.26619767598918836], [4, -3, 1, -0.0244372519721974], [-481, 232, -1, 0.46033077212981893], [-2, 3, 1, 14.482388356261374], [44, 1, -1, 0.8307699259410815], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -44, -1, -0.03698109387485986], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 14.548205623989624], [4, 0, 0, 2.4156135388573103], [479, -232, 1, -0.4665774724012083], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 14.461010434811325], [-5, 8, -1, -0.04069821825506147], [248, 539, 1, -0.0925648397509064]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 255, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 11.272813278303577], [-489, 281, 1, 0.2645852871413712], [-5, 3, -1, 12.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -26, -1, 0.08382953670358816], [-475, 249, 1, 0.447087907715117], [-222, -518, -1, 0.26623490521496357], [6, -4, 1, -0.015604390528130075], [-483, 233, -1, 0.4603402198687571], [-3, 1, 1, 14.587596644181092], [45, -1, -1, 0.837922655642847], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -45, -1, -0.042883346519578175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 14.62199743281484], [4, 0, 0, 2.4156135388573103], [481, -233, 1, -0.4665858650262075], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 14.473229060797424], [-4, 6, -1, -0.04537789691588448], [249, 541, 1, -0.09258420763869837]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 256, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 11.280386364397762], [-491, 282, 1, 0.264621669286612], [-3, 4, -1, 12.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -27, -1, 0.08929662737792708], [-477, 250, 1, 0.44710058169999845], [-223, -520, -1, 0.2662718406849647], [4, -3, 1, -0.0244372519721974], [-485, 234, -1, 0.4603495891538091], [-4, -1, 1, 14.67779440054456], [43, -2, -1, 0.841783685492876], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -43, -1, -0.04147062165587341], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 14.704622103084125], [4, 0, 0, 2.4156135388573103], [483, -234, 1, -0.46659418772363714], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 14.504645539891925], [-6, 5, -1, -0.09122334519853736], [250, 543, 1, -0.09260343070785501]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 33, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 257, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 11.38559465231748], [-493, 283, 1, 0.2646577656818737], [-1, 5, -1, 12.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -28, -1, 0.08886706042349347], [-479, 251, 1, 0.44711315089265], [-224, -522, -1, 0.26630848585839983], [6, -4, 1, -0.015604390528130075], [-487, 235, -1, 0.4603588809580898], [-3, -3, 1, 14.763804835355876], [44, 0, -1, 0.8343864611426894], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-35, -41, -1, -0.039943876114126725], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 14.798205623989624], [4, 0, 0, 2.4156135388573103], [485, -235, 1, -0.46660244136378387], [2, -2, 0, 0.5087787822945713], [6, -6, 1, 14.54702086962264], [-8, 4, -1, -0.12800256718516845], [251, 545, 1, -0.09262251057604068]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 258, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 11.436802843492263], [-495, 284, 1, 0.2646935796767924], [1, 4, -1, 12.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -29, -1, 0.09434572784451929], [-481, 252, 1, 0.4471256165872454], [-225, -524, -1, 0.2663448441404376], [4, -3, 1, -0.0244372519721974], [-489, 236, -1, 0.46036809623868824], [-2, -5, 1, 14.828245364560454], [45, -2, -1, 0.8414553621977258], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-36, -39, -1, -0.03376782496034132], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 14.858765094785046], [4, 0, 0, 2.4156135388573103], [487, -236, 1, -0.4666106268025532], [2, -2, 0, 0.5087787822945713], [5, -4, 1, 14.564632513361278], [-9, 2, -1, -0.16699213237385313], [252, 547, 1, -0.09264144883692406]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 259, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -4, -1, 11.51059465231748], [-497, 285, 1, 0.2647291145689111], [3, 5, -1, 12.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -28, -1, 0.08886706042349347], [-483, 253, 1, 0.4471379800567375], [-226, -526, -1, 0.2663809188832566], [6, -4, 1, -0.015604390528130075], [-491, 237, -1, 0.46037723593699553], [0, -4, 1, 14.888804835355876], [43, -3, -1, 0.8454723308605498], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -37, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 14.923205623989624], [4, 0, 0, 2.4156135388573103], [489, -237, 1, -0.46661874488176536], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 14.598229060797424], [-8, 0, -1, -0.2017943760103851], [253, 549, 1, -0.09266024706062168]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 33, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 260, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 11.593219322586764], [-499, 286, 1, 0.26476437360468696], [4, 3, -1, 13.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -29, -1, 0.09434572784451929], [-485, 254, 1, 0.44715024255329167], [-227, -528, -1, 0.2664167133870715], [4, -3, 1, -0.0244372519721974], [-493, 238, -1, 0.4603863009790255], [2, -5, 1, 14.949364306151297], [44, -1, -1, 0.8380029963442973], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -35, -1, -0.020868083547155688], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 14.987646153194202], [4, 0, 0, 2.4156135388573103], [491, -238, 1, -0.4666267964294436], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 14.67202086962264], [-6, 1, -1, -0.1755101476547584], [254, 551, 1, -0.09267890679413093]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 33, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 261, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -3, -1, 11.600792408680949], [-501, 287, 1, 0.2647993599804765], [5, 1, -1, 13.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -31, -1, 0.1008284145494728], [-487, 255, 1, 0.4471624053087084], [-228, -530, -1, 0.2664522309011347], [6, -4, 1, -0.015604390528130075], [-495, 239, -1, 0.4603952922757275], [3, -3, 1, 15.013804835355876], [42, -2, -1, 0.8419595472368734], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-37, -33, -1, -0.01832033061083551], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, 0, 1, 15.048205623989624], [4, 0, 0, 2.4156135388573103], [493, -239, 1, -0.46663478226009597], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 14.745812678447857], [-5, 3, -1, -0.11578394119906979], [255, 553, 1, -0.09269742956175415]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 262, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, -1, -1, 11.660518615136638], [-503, 288, 1, 0.26483407684349664], [4, -1, -1, 13.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -30, -1, 0.09523807800311607], [-489, 256, 1, 0.4471744695348353], [-229, -532, -1, 0.26648747462471506], [4, -3, 1, -0.0244372519721974], [-497, 240, -1, 0.46040421072329146], [5, -4, 1, 15.031416479094514], [43, 0, -1, 0.8343864611426893], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -35, -1, -0.020868083547155684], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 15.108765094785046], [4, 0, 0, 2.4156135388573103], [495, -240, 1, -0.46664270317498974], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 14.828437348717141], [-3, 2, -1, -0.10821085510488573], [256, 555, 1, -0.09271581686551295]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 33, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 263, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-7, 1, -1, 11.709386461142698], [-505, 289, 1, 0.2648685272927645], [5, -3, -1, 13.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -31, -1, 0.09459811415863491], [-491, 257, 1, 0.4471864364239697], [-230, -534, -1, 0.26652244770805456], [6, -4, 1, -0.015604390528130075], [-499, 241, -1, 0.4604130572034456], [4, -2, 1, 15.065013026530659], [44, -2, -1, 0.8416158005940777], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-40, -36, -1, -0.019036165108058334], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 15.173205623989624], [4, 0, 0, 2.4156135388573103], [497, -241, 1, -0.4666505599624194], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 14.92202086962264], [-2, 0, 0, -0.10821085510488573], [257, 557, 1, -0.09273407018555374]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 264, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 11.760594652317481], [-507, 290, 1, 0.26490271438001606], [3, -4, -1, 13.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -33, -1, 0.10067840993499108], [-493, 258, 1, 0.44719830714925124], [-231, -536, -1, 0.26655715325330265], [4, -3, 1, -0.0244372519721974], [-501, 242, -1, 0.4604218325837467], [3, 0, 1, 15.138804835355876], [42, -3, -1, 0.8457353966426195], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-38, -37, -1, -0.025283079117095424], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 15.25921605880094], [4, 0, 0, 2.4156135388573103], [499, -242, 1, -0.46665835339796813], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 15.01560439052814], [-2, 0, 0, -0.10821085510488573], [258, 559, 1, -0.09275219098054455]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 265, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 11.718219322586766], [-509, 291, 1, 0.2649366411106031], [1, -5, -1, 13.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -35, -1, 0.10353717328028549], [-495, 259, 1, 0.4472100828650447], [-232, -538, -1, 0.26659159431542967], [6, -4, 1, -0.015604390528130075], [-503, 243, -1, 0.46043053771786396], [4, 2, 1, 15.212596644181092], [43, -1, -1, 0.8380870718478828], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-39, -39, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -6, 1, 15.298205623989624], [4, 0, 0, 2.4156135388573103], [501, -243, 1, -0.466666084244763], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 15.120812678447857], [-2, 0, 0, -0.10821085510488573], [259, 561, 1, -0.09277018068806282]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 266, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 11.760594652317481], [-511, 292, 1, 0.2649703104443703], [-1, -4, -1, 13.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -37, -1, 0.10621429363731863], [-497, 260, 1, 0.44722176470731484], [-233, -540, -1, 0.2666257739031193], [4, -3, 1, -0.0244372519721974], [-505, 244, -1, 0.4604391734458557], [2, 3, 1, 15.295221314450377], [44, 1, -1, 0.8307699259410813], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-41, -38, -1, -0.021364063412428583], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 15.358765094785046], [4, 0, 0, 2.4156135388573103], [503, -244, 1, -0.46667375325372407], [2, -2, 0, 0.5087787822945713], [-5, 0, 1, 15.17202086962264], [-2, 0, 0, -0.10821085510488573], [260, 563, 1, -0.09278804072497525]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 267, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 4, -1, 11.811802843492265], [-513, 293, 1, 0.26500372529651256], [-3, -5, -1, 13.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -36, -1, 0.10723778398547892], [-499, 261, 1, 0.4472333537939905], [-234, -542, -1, 0.2666596949796409], [6, -4, 1, -0.015604390528130075], [-507, 245, -1, 0.46044774059443944], [0, 4, 1, 15.388804835355876], [45, -1, -1, 0.8379226556428468], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-42, -40, -1, -0.023523960877188835], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 15.423205623989624], [4, 0, 0, 2.4156135388573103], [505, -245, 1, -0.46668136116380726], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 15.223229060797424], [-2, 0, 0, -0.10821085510488573], [261, 565, 1, -0.09280577248780934]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 268, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 6, -1, 11.863011034667048], [-515, 294, 1, 0.2650368885384127], [-4, -3, -1, 13.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -34, -1, 0.10136560317352712], [-501, 262, 1, 0.447244851225322], [-235, -544, -1, 0.26669336046370257], [4, -3, 1, -0.0244372519721974], [-509, 246, -1, 0.46045623997725554], [-1, 6, 1, 15.415089063711502], [43, -2, -1, 0.8417836854928759], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -41, -1, -0.021790116674245345], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -1, 1, 15.50921605880094], [4, 0, 0, 2.4156135388573103], [507, -246, 1, -0.46668890870224194], [2, -2, 0, 0.5087787822945713], [-5, -2, 1, 15.232580340418062], [-2, 0, 0, -0.10821085510488573], [262, 567, 1, -0.09282337735311685]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 269, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 11.905386364397764], [-517, 295, 1, 0.2650698029984608], [-5, -1, -1, 13.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -36, -1, 0.10413775512045874], [-503, 263, 1, 0.4472562580842286], [-236, -546, -1, 0.2667267732302842], [6, -4, 1, -0.015604390528130075], [-511, 247, -1, 0.460464672395125], [-3, 5, 1, 15.474815270167191], [44, 0, -1, 0.8343864611426893], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -43, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 1, 1, 15.599413815164407], [4, 0, 0, 2.4156135388573103], [509, -247, 1, -0.46669639658476253], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 15.29702086962264], [-2, 0, 0, -0.10821085510488573], [263, 569, 1, -0.09284085667782954]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 270, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 11.975792408680949], [-519, 296, 1, 0.2651024714628549], [-4, 1, -1, 13.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -35, -1, 0.09910914335744501], [-505, 264, 1, 0.44726757543663853], [-237, -548, -1, 0.2667599361114532], [4, -3, 1, -0.0244372519721974], [-513, 248, -1, 0.460473038636301], [-4, 3, 1, 15.536388453006309], [45, -2, -1, 0.8414553621977257], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -44, -1, -0.025616836746969327], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 15.704622103084125], [4, 0, 0, 2.4156135388573103], [511, -248, 1, -0.46670382551583456], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 15.383031304433956], [-2, 0, 0, -0.10821085510488573], [264, 571, 1, -0.09285821179960752]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 271, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 12.061802843492265], [-521, 297, 1, 0.26513489667638435], [-5, 3, -1, 13.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -33, -1, 0.09345503201272654], [-507, 265, 1, 0.4472788043318211], [-238, -550, -1, 0.26679285189716073], [6, -4, 1, -0.015604390528130075], [-515, 249, -1, 0.46048133947671405], [-3, 1, 1, 15.587596644181092], [43, -3, -1, 0.8454723308605497], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -43, -1, -0.020336118231309052], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 15.798205623989624], [4, 0, 0, 2.4156135388573103], [513, -249, 1, -0.46671119618887574], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 15.473229060797424], [-2, 0, 0, -0.10821085510488573], [265, 573, 1, -0.0928754440371799]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 272, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 12.14781327830358], [-523, 298, 1, 0.2651670813431951], [-3, 4, -1, 13.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -32, -1, 0.08868702097190556], [-509, 266, 1, 0.44728994580271053], [-239, -552, -1, 0.2668255233360214], [4, -3, 1, -0.0244372519721974], [-517, 250, -1, 0.46048957568021215], [-4, -1, 1, 15.67779440054456], [44, -1, -1, 0.8380029963442972], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -45, -1, -0.025656134262983583], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 15.858765094785046], [4, 0, 0, 2.4156135388573103], [515, -250, 1, -0.46671850928647163], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 15.578437348717141], [-2, 0, 0, -0.10821085510488573], [266, 575, 1, -0.09289255469067854]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 273, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 12.186802843492265], [-525, 299, 1, 0.2651990281275386], [-1, 5, -1, 13.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -31, -1, 0.08905364292077328], [-511, 267, 1, 0.44730100086622276], [-240, -554, -1, 0.2668579531360748], [6, -4, 1, -0.015604390528130075], [-519, 251, -1, 0.460497747998795], [-3, -3, 1, 15.763804835355876], [42, -2, -1, 0.8419595472368733], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -43, -1, -0.02378848408473744], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 15.923205623989624], [4, 0, 0, 2.4156135388573103], [517, -251, 1, -0.46672576548058636], [2, -2, 0, 0.5087787822945713], [5, -3, 1, 15.586010434811326], [-2, 0, 0, -0.10821085510488573], [267, 577, 1, -0.09290954504196455]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 274, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -1, -1, 12.206594555572547], [-527, 300, 1, 0.265230739654504], [1, 4, -1, 13.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -32, -1, 0.094005445955684], [-513, 268, 1, 0.4473119705235646], [-241, -556, -1, 0.2668901439655311], [4, -3, 1, -0.0244372519721974], [-521, 252, -1, 0.46050585717284276], [-1, -4, 1, 15.849815270167191], [43, 0, -1, 0.8343864611426892], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -41, -1, -0.021790116674245345], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 15.987646153194202], [4, 0, 0, 2.4156135388573103], [519, -252, 1, -0.4667329654327684], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 15.645736641267016], [-2, 0, 0, -0.10821085510488573], [268, 579, 1, -0.09292641635494807]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 275, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [9, -3, -1, 12.238011034667048], [-529, 301, 1, 0.2652622185107347], [3, 5, -1, 13.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -34, -1, 0.09986501867046055], [-515, 269, 1, 0.447322855760536], [-242, -558, -1, 0.26692209845349957], [6, -4, 1, -0.015604390528130075], [-523, 253, -1, 0.4605139039313398], [1, -3, 1, 15.940013026530659], [44, -2, -1, 0.8416158005940776], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -39, -1, -0.016056083786415223], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 16.048205623989624], [4, 0, 0, 2.4156135388573103], [521, -253, 1, -0.4667401097943514], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 15.703437348717143], [-2, 0, 0, -0.10821085510488573], [269, 581, 1, -0.09294316987590119]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 276, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -4, -1, 12.26942751376155], [-531, 302, 1, 0.2652934672451287], [4, 3, -1, 14.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -35, -1, 0.09910914335744503], [-517, 270, 1, 0.44733365754782517], [-243, -560, -1, 0.26695381919070177], [4, -3, 1, -0.0244372519721974], [-525, 254, -1, 0.46052188899209257], [3, -2, 1, 16.045221314450377], [42, -3, -1, 0.8457353966426194], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -38, -1, -0.010615874391231218], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 16.141789144895125], [4, 0, 0, 2.4156135388573103], [523, -254, 1, -0.46674719920665086], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 15.765604390528143], [-2, 0, 0, -0.10821085510488573], [270, 583, 1, -0.0929598068337647]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 277, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -6, -1, 12.311802843492265], [-533, 303, 1, 0.2653244883695238], [5, 1, -1, 14.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -33, -1, 0.09345503201272655], [-519, 271, 1, 0.447344376841297], [-244, -562, -1, 0.26698530873016874], [6, -4, 1, -0.015604390528130075], [-527, 255, -1, 0.4605298130619437], [4, -4, 1, 16.013804835355877], [43, -1, -1, 0.8380870718478827], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -36, -1, -0.008091248541417866], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 16.24699743281484], [4, 0, 0, 2.4156135388573103], [525, -255, 1, -0.4667542343011559], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 15.87081267844786], [-2, 0, 0, -0.10821085510488573], [271, 585, 1, -0.09297632844044794]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 278, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -7, -1, 12.35417817322298], [-535, 304, 1, 0.26535528435936845], [4, -1, -1, 14.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -35, -1, 0.09634699918199681], [-521, 272, 1, 0.44735501458227495], [-245, -564, -1, 0.26701656958792336], [4, -3, 1, -0.0244372519721974], [-529, 256, -1, 0.46053767683698016], [2, -3, 1, 15.982388356261376], [44, 1, -1, 0.8307699259410812], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -35, -1, -0.009351279620638253], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 16.33719518917831], [4, 0, 0, 2.4156135388573103], [527, -256, 1, -0.4667612156997167], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 15.961010434811328], [-2, 0, 0, -0.10821085510488573], [272, 587, 1, -0.09299273589112296]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 279, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -8, -1, 12.397813278303579], [-537, 305, 1, 0.2653858576543773], [5, -3, -1, 14.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -34, -1, 0.09166510078696063], [-523, 273, 1, 0.44736557169781643], [-246, -566, -1, 0.2670476042436479], [6, -4, 1, -0.015604390528130075], [-531, 257, -1, 0.46054548100273696], [4, -2, 1, 16.06501302653066], [45, -1, -1, 0.8379226556428467], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -36, -1, -0.008091248541417866], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -6, 1, 16.298205623989624], [4, 0, 0, 2.4156135388573103], [529, -257, 1, -0.46676814401472755], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 16.047020869622642], [-2, 0, 0, -0.10821085510488573], [273, 589, 1, -0.09300903036451229]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 280, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -7, -1, 12.436802843492263], [-539, 306, 1, 0.2654162106591734], [3, -4, -1, 14.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -36, -1, 0.09447596917640565], [-525, 274, 1, 0.4473760491009821], [-247, -568, -1, 0.267078415141337], [4, -3, 1, -0.0244372519721974], [-533, 258, -1, 0.46055322623439654], [3, 0, 1, 16.138804835355877], [43, -2, -1, 0.8417836854928757], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -38, -1, -0.014014002402754664], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 16.358765094785046], [4, 0, 0, 2.4156135388573103], [531, -258, 1, -0.46677501984930625], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 16.133031304433956], [-2, 0, 0, -0.10821085510488573], [274, 591, 1, -0.09302521302317084]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 281, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -6, -1, 12.488011034667046], [-541, 307, 1, 0.26544634574391635], [1, -5, -1, 14.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -35, -1, 0.09501915799938025], [-527, 275, 1, 0.44738644769109903], [-248, -570, -1, 0.267109004689937], [6, -4, 1, -0.015604390528130075], [-535, 259, -1, 0.4605609131969835], [4, 2, 1, 16.212596644181094], [44, 0, -1, 0.8343864611426892], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -37, -1, -0.015490704484070365], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 16.423205623989624], [4, 0, 0, 2.4156135388573103], [533, -259, 1, -0.4667818437974688], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 16.223229060797426], [-2, 0, 0, -0.10821085510488573], [275, 593, 1, -0.09304128501376224]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 282, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 12.53921922584183], [-543, 308, 1, 0.2654762652449164], [-1, -4, -1, 14.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -34, -1, 0.09042058427960441], [-529, 276, 1, 0.44739676835401765], [-249, -572, -1, 0.26713937526397113], [4, -3, 1, -0.0244372519721974], [-537, 260, -1, 0.4605685425455545], [2, 3, 1, 16.295221314450377], [45, -2, -1, 0.8414553621977255], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -35, -1, -0.009351279620638253], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -1, 1, 16.509216058800938], [4, 0, 0, 2.4156135388573103], [535, -260, 1, -0.4667886164443005], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 16.32843734871714], [-2, 0, 0, -0.10821085510488573], [276, 595, 1, -0.09305724746732912]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 283, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -3, -1, 12.600792408680947], [-545, 309, 1, 0.26550597146523663], [-3, -5, -1, 14.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -33, -1, 0.09083183644722756], [-531, 277, 1, 0.44740701196236365], [-250, -574, -1, 0.2671695292041518], [6, -4, 1, -0.015604390528130075], [-539, 261, -1, 0.46057611492538486], [0, 4, 1, 16.388804835355877], [43, -3, -1, 0.8454723308605496], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -33, -1, -0.006583192509318012], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 16.579622103084123], [4, 0, 0, 2.4156135388573103], [537, -261, 1, -0.46679533836612325], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 16.422020869622642], [-2, 0, 0, -0.10821085510488573], [277, 597, 1, -0.0930731014995584]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 284, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -1, -1, 12.647813278303579], [-547, 310, 1, 0.26553546667528144], [-4, -3, -1, 14.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -32, -1, 0.0912727077381122], [-533, 278, 1, 0.44741717937578357], [-251, -576, -1, 0.26719946881797957], [4, -3, 1, -0.0244372519721974], [-541, 262, -1, 0.46058363097214994], [-2, 3, 1, 16.482388356261378], [44, -1, -1, 0.8380029963442971], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -35, -1, -0.009351279620638253], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 16.65062200633919], [4, 0, 0, 2.4156135388573103], [539, -262, 1, -0.4668020101306589], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 16.515604390528143], [-2, 0, 0, -0.10821085510488573], [278, 599, 1, -0.09308884821104071]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 285, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 12.718219322586764], [-549, 311, 1, 0.2655647531133729], [-5, -1, -1, 14.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -31, -1, 0.09174650995791277], [-535, 279, 1, 0.447427271441185], [-252, -578, -1, 0.2672291963803296], [6, -4, 1, -0.015604390528130075], [-543, 263, -1, 0.46059109131210346], [-4, 2, 1, 16.56501302653066], [42, -2, -1, 0.8419595472368732], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -37, -1, -0.01192669205311261], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 4, 1, 16.724413815164407], [4, 0, 0, 2.4156135388573103], [541, -263, 1, -0.4668086322971892], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 16.598229060797426], [-2, 0, 0, -0.10821085510488573], [279, 601, 1, -0.09310448868752498]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 286, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 3, -1, 12.78921922584183], [-551, 312, 1, 0.265593832986315], [-4, 1, -1, 14.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -32, -1, 0.09689639005884557], [-537, 280, 1, 0.4474372889929721], [-253, -580, -1, 0.26725871413402574], [4, -3, 1, -0.0244372519721974], [-545, 264, -1, 0.4605984965622509], [-5, 0, 1, 16.638804835355877], [43, 0, -1, 0.8343864611426891], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -36, -1, -0.013339416916817379], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 3, 1, 16.798205623989624], [4, 0, 0, 2.4156135388573103], [543, -264, 1, -0.46681520541671184], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 16.672020869622642], [-2, 0, 0, -0.10821085510488573], [280, 603, 1, -0.09312002400016746]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 287, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 5, -1, 12.850792408680947], [-553, 313, 1, 0.26562270846994585], [-5, 3, -1, 14.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -31, -1, 0.0976209143851037], [-539, 281, 1, 0.44744723285327515], [-254, -582, -1, 0.2672880242904026], [6, -4, 1, -0.015604390528130075], [-547, 265, -1, 0.46060584733051996], [-4, -2, 1, 16.712596644181094], [44, -2, -1, 0.8416158005940775], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -38, -1, -0.015780252272127628], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 5, 1, 16.829622103084123], [4, 0, 0, 2.4156135388573103], [545, -265, 1, -0.46682173003209343], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 16.74581267844786], [-2, 0, 0, -0.10821085510488573], [281, 605, 1, -0.09313545520577635]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 288, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 12.897813278303579], [-555, 314, 1, 0.2656513817096786], [-3, 4, -1, 14.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -32, -1, 0.09689639005884557], [-541, 282, 1, 0.4474571038321756], [-255, -584, -1, 0.26731712902985544], [4, -3, 1, -0.0244372519721974], [-549, 266, -1, 0.4606131442159268], [-2, -3, 1, 16.795221314450377], [42, -3, -1, 0.8457353966426193], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -36, -1, -0.01333941691681738], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 6, 1, 16.87199743281484], [4, 0, 0, 2.4156135388573103], [547, -266, 1, -0.46682820667821884], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 16.82843734871714], [-2, 0, 0, -0.10821085510488573], [282, 607, 1, -0.09315078334705078]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 289, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 12.988011034667046], [-557, 315, 1, 0.26567985482103096], [-1, 5, -1, 14.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -34, -1, 0.09986501867046055], [-543, 283, 1, 0.4474669027279257], [-256, -586, -1, 0.26734603050237926], [6, -4, 1, -0.015604390528130075], [-551, 267, -1, 0.46062038780873865], [0, -4, 1, 16.888804835355877], [43, -1, -1, 0.8380870718478826], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -38, -1, -0.015780252272127628], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 16.923205623989624], [4, 0, 0, 2.4156135388573103], [549, -267, 1, -0.46683463588213747], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 16.922020869622642], [-2, 0, 0, -0.10821085510488573], [283, 609, 1, -0.09316600945281575]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 290, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 13.093219322586764], [-559, 316, 1, 0.26570812989014336], [1, 4, -1, 14.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -35, -1, 0.10509441265565667], [-545, 284, 1, 0.447476630327164], [-257, -588, -1, 0.26737473082809604], [4, -3, 1, -0.0244372519721974], [-553, 268, -1, 0.4606275786906331], [2, -3, 1, 16.982388356261378], [44, 1, -1, 0.8307699259410811], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -39, -1, -0.014327651940866992], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 16.987646153194202], [4, 0, 0, 2.4156135388573103], [551, -268, 1, -0.46684101816320606], [2, -2, 0, 0.5087787822945713], [-1, 6, 1, 16.94830509797827], [-2, 0, 0, -0.10821085510488573], [284, 611, 1, -0.09318113453825182]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 291, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 13.155386364397764], [-561, 317, 1, 0.2657362089742869], [3, 5, -1, 14.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -33, -1, 0.10224849745076858], [-547, 285, 1, 0.4474862874051253], [-258, -590, -1, 0.2674032320977715], [6, -4, 1, -0.015604390528130075], [-555, 269, -1, 0.46063471743485357], [4, -2, 1, 17.06501302653066], [45, -1, -1, 0.8379226556428466], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -41, -1, -0.016570314446395718], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 17.048205623989624], [4, 0, 0, 2.4156135388573103], [553, -269, 1, -0.4668473540332285], [2, -2, 0, 0.5087787822945713], [-2, 4, 1, 16.99581267844786], [-2, 0, 0, -0.10821085510488573], [285, 613, 1, -0.09319615960512065]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 292, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 13.225792408680949], [-563, 318, 1, 0.26576409410236074], [4, 3, -1, 15.022583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -35, -1, 0.10833918469418204], [-549, 286, 1, 0.44749587472584695], [-259, -592, -1, 0.26743153637332084], [4, -3, 1, -0.0244372519721974], [-557, 270, -1, 0.4606418046063616], [5, 0, 1, 17.138804835355877], [43, -2, -1, 0.8417836854928756], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -39, -1, -0.010999071748094044], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 17.141789144895125], [4, 0, 0, 2.4156135388573103], [555, -270, 1, -0.4668536439965929], [2, -2, 0, 0.5087787822945713], [-4, 3, 1, 17.069604487273075], [-2, 0, 0, -0.10821085510488573], [286, 615, 1, -0.0932110856419859]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 293, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -3, -1, 13.311802843492265], [-565, 319, 1, 0.2657917872753788], [5, 1, -1, 15.093583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -33, -1, 0.10552650646214774], [-551, 287, 1, 0.44750539304236997], [-260, -594, -1, 0.26745964568830444], [6, -4, 1, -0.015604390528130075], [-559, 271, -1, 0.4606488407619862], [4, 2, 1, 17.212596644181094], [44, 0, -1, 0.8343864611426891], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -41, -1, -0.013294997452971627], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 17.24699743281484], [4, 0, 0, 2.4156135388573103], [557, -271, 1, -0.46685988855040506], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 17.12081267844786], [-2, 0, 0, -0.10821085510488573], [287, 617, 1, -0.09322591362442964]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 294, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -5, -1, 13.376243372696843], [-567, 320, 1, 0.26581929046694686], [4, -1, -1, 15.16398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -32, -1, 0.10664392501359805], [-553, 288, 1, 0.4475148430969364], [-261, -596, -1, 0.26748756204841295], [4, -3, 1, -0.0244372519721974], [-561, 272, -1, 0.46065582645056935], [2, 3, 1, 17.295221314450377], [45, -2, -1, 0.8414553621977254], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -43, -1, -0.018669026328850882], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -5, 1, 17.298205623989624], [4, 0, 0, 2.4156135388573103], [559, -272, 1, -0.4668660881846196], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 17.211010434811328], [-2, 0, 0, -0.10821085510488573], [288, 619, 1, -0.09324064451526504]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 295, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 13.436802843492265], [-569, 321, 1, 0.26584660562373], [5, -3, -1, 15.211010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -33, -1, 0.10552650646214774], [-555, 289, 1, 0.44752422562118205], [-262, -598, -1, 0.2675152874319428], [6, -4, 1, -0.015604390528130075], [-563, 273, -1, 0.4606627622131087], [0, 4, 1, 17.388804835355877], [43, -3, -1, 0.8454723308605495], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -41, -1, -0.016570314446395718], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -6, 1, 17.349413815164407], [4, 0, 0, 2.4156135388573103], [561, -273, 1, -0.46687224338216815], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 17.297020869622642], [-2, 0, 0, -0.10821085510488573], [289, 621, 1, -0.09325527926474413]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 296, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 13.530386364397764], [-571, 322, 1, 0.26587373466591036], [3, -4, -1, 15.272583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -34, -1, 0.11130290193896399], [-557, 290, 1, 0.4475335413363252], [-263, -600, -1, 0.267542823790262], [4, -3, 1, -0.0244372519721974], [-565, 274, -1, 0.4606696485828974], [-2, 3, 1, 17.482388356261378], [44, -1, -1, 0.838002996344297], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -40, -1, -0.01805373966570708], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -7, 1, 17.380830294258907], [4, 0, 0, 2.4156135388573103], [563, -274, 1, -0.46687835461908456], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 17.383031304433956], [-2, 0, 0, -0.10821085510488573], [290, 623, 1, -0.09326981881076225]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 297, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 13.635594652317481], [-573, 323, 1, 0.2659006794876352], [1, -5, -1, 15.343583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -35, -1, 0.11002968955562946], [-559, 291, 1, 0.4475427909533515], [-264, -602, -1, 0.26757017304826625], [6, -4, 1, -0.015604390528130075], [-567, 275, -1, 0.4606764860856606], [-3, 1, 1, 17.587596644181094], [42, -2, -1, 0.841959547236873], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -39, -1, -0.019647512714919643], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -8, 1, 17.337195189178306], [4, 0, 0, 2.4156135388573103], [565, -275, 1, -0.4668844223646277], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 17.422020869622642], [-2, 0, 0, -0.10821085510488573], [291, 625, 1, -0.09328426407905807]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 298, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 13.725792408680949], [-575, 324, 1, 0.2659274419574567], [-1, -4, -1, 15.41398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -36, -1, 0.10885078561295869], [-561, 292, 1, 0.4475519751731945], [-265, -604, -1, 0.26759733710482586], [4, -3, 1, -0.0244372519721974], [-569, 276, -1, 0.4606832752396891], [-4, -1, 1, 17.677794400544563], [43, 0, -1, 0.834386461142689], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -37, -1, -0.013684976113772635], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 17.32448985234525], [4, 0, 0, 2.4156135388573103], [567, -276, 1, -0.4668904470814016], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 17.461010434811328], [-2, 0, 0, -0.10821085510488573], [292, 627, 1, -0.09329861598340976]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 299, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 3, -1, 13.811802843492265], [-577, 325, 1, 0.2659540239187624], [-3, -5, -1, 15.461010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -37, -1, 0.10775620216204998], [-563, 293, 1, 0.4475610946869131], [-266, -606, -1, 0.267624317833224], [6, -4, 1, -0.015604390528130075], [-571, 277, -1, 0.46069001655597075], [-5, -3, 1, 17.724815270167195], [44, -2, -1, 0.8416158005940774], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -38, -1, -0.012292985866885693], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 17.3626461531942], [4, 0, 0, 2.4156135388573103], [569, -277, 1, -0.46689642922547286], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 17.547020869622642], [-2, 0, 0, -0.10821085510488573], [293, 629, 1, -0.09331287542582775]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 300, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 4, -1, 13.89781327830358], [-579, 326, 1, 0.2659804271901968], [-4, -3, -1, 15.522583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -39, -1, 0.11024982073350255], [-565, 294, 1, 0.44757015017586427], [-267, -608, -1, 0.2676511170815856], [4, -3, 1, -0.0244372519721974], [-573, 278, -1, 0.460696710538318], [-3, -4, 1, 17.786388453006314], [42, -3, -1, 0.8457353966426192], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -40, -1, -0.014626975768947387], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 17.32448985234525], [4, 0, 0, 2.4156135388573103], [571, -278, 1, -0.466902369246486], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 17.633031304433956], [-2, 0, 0, -0.10821085510488573], [294, 631, 1, -0.09332704329674321]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 301, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 3, -1, 13.988011034667048], [-581, 327, 1, 0.26600665356607534], [-5, -1, -1, 15.593583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -40, -1, 0.1091786017159886], [-567, 295, 1, 0.44757914231187323], [-268, -610, -1, 0.26767773667329825], [6, -4, 1, -0.015604390528130075], [-575, 279, -1, 0.46070335768349396], [-1, -3, 1, 17.837596644181097], [43, -1, -1, 0.8380870718478824], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -42, -1, -0.020175679834957085], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 17.3626461531942], [4, 0, 0, 2.4156135388573103], [573, -279, 1, -0.46690826758777565], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 17.723229060797426], [-2, 0, 0, -0.10821085510488573], [295, 633, 1, -0.09334112047519343]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 302, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 2, -1, 14.093219322586766], [-583, 328, 1, 0.2660327048167888], [-4, 1, -1, 15.66398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -38, -1, 0.10382087163059743], [-569, 296, 1, 0.4475880717573993], [-269, -612, -1, 0.26770417840742405], [4, -3, 1, -0.0244372519721974], [-577, 280, -1, 0.46070995848133495], [1, -4, 1, 17.927794400544567], [44, 1, -1, 0.830769925941081], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -43, -1, -0.025575732682002097], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 17.358765094785042], [4, 0, 0, 2.4156135388573103], [575, -280, 1, -0.4669141246864773], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 17.82843734871714], [-2, 0, 0, -0.10821085510488573], [296, 635, 1, -0.09335510782900329]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 303, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 14.155386364397765], [-585, 329, 1, 0.2660585826892011], [-5, 3, -1, 15.711010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -40, -1, 0.10629044432198213], [-571, 297, 1, 0.4475969391656983], [-270, -614, -1, 0.2677304440591038], [6, -4, 1, -0.015604390528130075], [-579, 281, -1, 0.46071651341487074], [2, -6, 1, 17.940013026530664], [45, -1, -1, 0.8379226556428465], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -44, -1, -0.02386882478618786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -4, 1, 17.42320562398962], [4, 0, 0, 2.4156135388573103], [577, -281, 1, -0.466919940973635], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 17.922020869622642], [-2, 0, 0, -0.10821085510488573], [297, 637, 1, -0.0933690062149636]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 304, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 14.22579240868095], [-587, 330, 1, 0.266084288907038], [-3, 4, -1, 15.772583617650438], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -39, -1, 0.10163933376397795], [-573, 298, 1, 0.44760574518098234], [-271, -616, -1, 0.2677565353799527], [4, -3, 1, -0.0244372519721974], [-581, 282, -1, 0.4607230229604426], [3, -4, 1, 17.991221217705448], [43, -2, -1, 0.8417836854928755], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -46, -1, -0.0256937417630142], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 17.474413815164404], [4, 0, 0, 2.4156135388573103], [579, -282, 1, -0.4669257168743072], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 18.015604390528143], [-2, 0, 0, -0.10821085510488573], [298, 639, 1, -0.09338281647900566]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 305, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -3, -1, 14.311802843492266], [-589, 331, 1, 0.26610982517126913], [-1, 5, -1, 15.843583520905504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [55, -41, -1, 0.10677377671969869], [-575, 299, 1, 0.4476144904385751], [-272, -618, -1, 0.2677824540984489], [6, -4, 1, -0.015604390528130075], [-583, 283, -1, 0.4607294875878187], [4, -6, 1, 17.98238835626138], [44, 0, -1, 0.834386461142689], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -48, -1, -0.030790783828376782], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 17.525622006339187], [4, 0, 0, 2.4156135388573103], [581, -283, 1, -0.4669314528076702], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 18.12081267844786], [-2, 0, 0, -0.10821085510488573], [299, 641, 1, -0.09339653945637286]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 306, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -4, -1, 14.397813278303582], [-591, 332, 1, 0.2661351931604814], [1, 4, -1, 15.91398956518869], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -43, -1, 0.10904116224834645], [-577, 300, 1, 0.44762317556506537], [-273, -620, -1, 0.26780820192031357], [4, -3, 1, -0.0244372519721974], [-585, 284, -1, 0.46073590776030665], [6, -5, 1, 18.028233804544033], [45, -2, -1, 0.8414553621977253], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -47, -1, -0.025729765968621712], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 17.54820562398962], [4, 0, 0, 2.4156135388573103], [583, -284, 1, -0.4669371491871196], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 18.211010434811328], [-2, 0, 0, -0.10821085510488573], [300, 643, 1, -0.09341017597178883]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 307, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 14.48801103466705], [-593, 333, 1, 0.2661603945312462], [3, 5, -1, 15.961010434811321], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -44, -1, 0.10811225289489312], [-579, 301, 1, 0.44763180117845597], [-274, -622, -1, 0.267833780528884], [6, -4, 1, -0.015604390528130075], [-587, 285, -1, 0.46074228393486477], [4, -4, 1, 18.01380483535588], [43, -3, -1, 0.8454723308605494], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -45, -1, -0.020636551934095065], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 17.621997432814837], [4, 0, 0, 2.4156135388573103], [585, -285, 1, -0.46694280642036967], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 18.297020869622642], [-2, 0, 0, -0.10821085510488573], [301, 645, 1, -0.09342372683962254]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 308, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 14.593219322586767], [-595, 334, 1, 0.2661854309184785], [4, 3, -1, 16.02258361765044], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -46, -1, 0.11021627205290922], [-581, 302, 1, 0.4476403678883106], [-275, -624, -1, 0.26785919158547944], [4, -3, 1, -0.0244372519721974], [-589, 286, -1, 0.46074861656221006], [2, -3, 1, 17.98238835626138], [44, -1, -1, 0.8380029963442969], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -47, -1, -0.022484270008472973], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 4, 1, 17.695789241640053], [4, 0, 0, 2.4156135388573103], [587, -286, 1, -0.4669484249095505], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 18.383031304433956], [-2, 0, 0, -0.10821085510488573], [302, 647, 1, -0.09343719286405035]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 309, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 14.686802843492266], [-597, 335, 1, 0.2662103039357896], [5, 1, -1, 16.093583520905508], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -48, -1, 0.11220975789727358], [-583, 303, 1, 0.4476488762958973], [-276, -626, -1, 0.2678844367297593], [6, -4, 1, -0.015604390528130075], [-591, 287, -1, 0.4607549060869244], [4, -2, 1, 18.065013026530664], [42, -2, -1, 0.8419595472368729], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -49, -1, -0.024222344735859033], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 5, 1, 17.76678914489512], [4, 0, 0, 2.4156135388573103], [589, -287, 1, -0.46695400505130336], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 18.473229060797426], [-2, 0, 0, -0.10821085510488573], [303, 649, 1, -0.09345057483921468]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 310, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 14.780386364397765], [-599, 336, 1, 0.26623501517583265], [4, -1, -1, 16.163989565188693], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -47, -1, 0.10805605411788848], [-585, 304, 1, 0.44765732699432925], [-277, -628, -1, 0.26790951758007514], [4, -3, 1, -0.0244372519721974], [-593, 288, -1, 0.4607611529475589], [5, 0, 1, 18.13880483535588], [43, 0, -1, 0.8343864611426889], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-52, -47, -1, -0.019373714852399384], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 17.837195189178306], [4, 0, 0, 2.4156135388573103], [591, -288, 1, -0.46695954723687383], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 18.57843734871714], [-2, 0, 0, -0.10821085510488573], [304, 651, 1, -0.09346387354938028]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 311, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 14.885594652317483], [-601, 337, 1, 0.26625956621064134], [5, -3, -1, 16.211010434811325], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -49, -1, 0.11252743201250733], [-587, 305, 1, 0.44766572056870235], [-278, -630, -1, 0.2679344357338151], [6, -4, 1, -0.015604390528130075], [-595, 289, -1, 0.4607673575767356], [4, 2, 1, 18.212596644181097], [44, -2, -1, 0.8416158005940773], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -49, -1, -0.024222344735859033], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 17.92320562398962], [4, 0, 0, 2.4156135388573103], [593, -289, 1, -0.46696505185220355], [2, -2, 0, 0.5087787822945713], [4, -4, 1, 18.547020869622642], [-2, 0, 0, -0.10821085510488573], [305, 653, 1, -0.09347708976908706]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 312, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 14.97579240868095], [-603, 338, 1, 0.2662839585919626], [3, -4, -1, 16.272583617650444], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -48, -1, 0.11351695596087139], [-589, 306, 1, 0.4476740575962303], [-279, -632, -1, 0.26795919276774205], [4, -3, 1, -0.0244372519721974], [-597, 290, -1, 0.46077352040124725], [2, 3, 1, 18.29522131445038], [42, -3, -1, 0.8457353966426191], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -50, -1, -0.0290125903019225], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 18.009216058800934], [4, 0, 0, 2.4156135388573103], [595, -290, 1, -0.4669705192780196], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 18.598229060797426], [-2, 0, 0, -0.10821085510488573], [306, 655, 1, -0.09349022426330046]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 313, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 15.061802843492266], [-605, 339, 1, 0.2663081938515823], [1, -5, -1, 16.34358352090551], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -50, -1, 0.11539243244775998], [-591, 307, 1, 0.44768233864637674], [-280, -634, -1, 0.2679837902383253], [6, -4, 1, -0.015604390528130075], [-599, 291, -1, 0.46077964184215514], [0, 4, 1, 18.38880483535588], [43, -1, -1, 0.8380870718478823], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -48, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 18.099413815164404], [4, 0, 0, 2.4156135388573103], [597, -291, 1, -0.4669759498899222], [2, -2, 0, 0.5087787822945713], [7, -1, 1, 18.64943725197221], [-2, 0, 0, -0.10821085510488573], [307, 657, 1, -0.09350327778755882]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 314, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 15.147813278303582], [-607, 340, 1, 0.26633227350164507], [-1, -4, -1, 16.413989565188697], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -52, -1, 0.11717204613824939], [-593, 308, 1, 0.44769056428098525], [-281, -636, -1, 0.2680082296820656], [4, -3, 1, -0.0244372519721974], [-601, 292, -1, 0.4607857223148854], [-2, 3, 1, 18.48238835626138], [44, 1, -1, 0.8307699259410809], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -46, -1, -0.022380743390534103], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 18.20462210308412], [4, 0, 0, 2.4156135388573103], [599, -292, 1, -0.46698134405847097], [2, -2, 0, 0.5087787822945713], [5, 0, 1, 18.672020869622642], [-2, 0, 0, -0.10821085510488573], [308, 659, 1, -0.09351625108811823]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 315, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 15.186802843492266], [-609, 341, 1, 0.26635619903496793], [-3, -5, -1, 16.461010434811328], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -50, -1, 0.11539243244775998], [-595, 309, 1, 0.447698735054406], [-282, -638, -1, 0.2680325126158142], [6, -4, 1, -0.015604390528130075], [-603, 293, -1, 0.4607917622293224], [-3, 1, 1, 18.587596644181097], [45, -1, -1, 0.8379226556428464], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -48, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 18.29820562398962], [4, 0, 0, 2.4156135388573103], [601, -293, 1, -0.4669867021492689], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 18.723229060797426], [-2, 0, 0, -0.10821085510488573], [309, 661, 1, -0.09352914490209445]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 316, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -1, -1, 15.206594555572549], [-611, 342, 1, 0.26637997192534774], [-4, -3, -1, 16.522583617650447], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -52, -1, 0.11717204613824939], [-597, 310, 1, 0.4477068515136203], [-283, -640, -1, 0.2680566405370857], [4, -3, 1, -0.0244372519721974], [-605, 294, -1, 0.4607977619899011], [-4, -1, 1, 18.677794400544567], [43, -2, -1, 0.8417836854928754], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -46, -1, -0.025693741763014203], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 18.39178914489512], [4, 0, 0, 2.4156135388573103], [603, -294, 1, -0.46699202452304517], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 18.82843734871714], [-2, 0, 0, -0.10821085510488573], [310, 663, 1, -0.09354195995760255]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 317, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -3, -1, 15.251243372696845], [-613, 343, 1, 0.266403593627863], [-5, -1, -1, 16.593583520905515], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -51, -1, 0.11826683970893268], [-599, 311, 1, 0.4477149141983627], [-284, -642, -1, 0.26808061492436497], [6, -4, 1, -0.015604390528130075], [-607, 295, -1, 0.4608037219956973], [-3, -3, 1, 18.76380483535588], [44, 0, -1, 0.8343864611426889], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -47, -1, -0.03086436447181307], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -2, 1, 18.474413815164404], [4, 0, 0, 2.4156135388573103], [605, -295, 1, -0.46699731153573604], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 18.922020869622642], [-2, 0, 0, -0.10821085510488573], [311, 665, 1, -0.09355469697389376]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 318, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -5, -1, 15.297373874304114], [-615, 344, 1, 0.26642706557916973], [-4, 1, -1, 16.6639895651887], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -53, -1, 0.12265710302401385], [-601, 312, 1, 0.44772292364124083], [-285, -644, -1, 0.2681044372374083], [4, -3, 1, -0.0244372519721974], [-609, 296, -1, 0.4608096426405163], [-1, -4, 1, 18.849815270167195], [45, -2, -1, 0.8414553621977252], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -46, -1, -0.03276776217847596], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 0, 1, 18.54820562398962], [4, 0, 0, 2.4156135388573103], [607, -296, 1, -0.4670025635385641], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 19.015604390528143], [-2, 0, 0, -0.10821085510488573], [312, 667, 1, -0.09356735666148987]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 319, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 15.311802843492266], [-617, 345, 1, 0.2664503891977923], [-5, 3, -1, 16.71101043481133], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -52, -1, 0.11847246613598203], [-603, 313, 1, 0.4477308803678521], [-286, -646, -1, 0.2681281089175386], [6, -4, 1, -0.015604390528130075], [-611, 297, -1, 0.46081552431297923], [1, -3, 1, 18.940013026530664], [43, -3, -1, 0.8454723308605493], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -48, -1, -0.034320444069676395], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 18.621997432814837], [4, 0, 0, 2.4156135388573103], [609, -297, 1, -0.4670077808781162], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 19.12081267844786], [-2, 0, 0, -0.10821085510488573], [313, 669, 1, -0.09357993972231532]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 320, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 15.343219322586767], [-619, 346, 1, 0.2664735658844078], [-3, 4, -1, 16.77258361765045], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -54, -1, 0.12014564755536315], [-605, 314, 1, 0.4477387848968991], [-287, -648, -1, 0.2681516313879355], [4, -3, 1, -0.0244372519721974], [-613, 298, -1, 0.4608213673966083], [3, -4, 1, 18.991221217705448], [44, -1, -1, 0.8380029963442968], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -46, -1, -0.029153904309707275], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 18.70462210308412], [4, 0, 0, 2.4156135388573103], [611, -298, 1, -0.46701296389641933], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 19.211010434811328], [-2, 0, 0, -0.10821085510488573], [314, 671, 1, -0.09359244684982682]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 321, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 15.436802843492266], [-621, 347, 1, 0.2664965970221263], [-1, 5, -1, 16.84358352090552], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -52, -1, 0.11589608564970165], [-607, 315, 1, 0.4477466377403022], [-288, -650, -1, 0.2681750060539197], [6, -4, 1, -0.015604390528130075], [-615, 299, -1, 0.4608271722699101], [5, -3, 1, 19.052794400544567], [42, -2, -1, 0.8419595472368728], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -48, -1, -0.034320444069676395], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 18.79820562398962], [4, 0, 0, 2.4156135388573103], [613, -299, 1, -0.4670181129310159], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 19.297020869622642], [-2, 0, 0, -0.10821085510488573], [315, 673, 1, -0.0936048787291405]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 322, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 15.530386364397765], [-623, 348, 1, 0.26651948397676456], [1, 4, -1, 16.913989565188704], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [64, -53, -1, 0.11490197192609082], [-609, 316, 1, 0.4477544394033099], [-289, -652, -1, 0.26819823430323175], [4, -3, 1, -0.0244372519721974], [-617, 300, -1, 0.4608329393064574], [3, -2, 1, 19.045221314450384], [43, 0, -1, 0.8343864611426888], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -49, -1, -0.03242929518215669], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 18.858765094785042], [4, 0, 0, 2.4156135388573103], [615, -300, 1, -0.4670232283150367], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 19.383031304433956], [-2, 0, 0, -0.10821085510488573], [316, 675, 1, -0.09361723603715706]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 323, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 15.635594652317483], [-625, 349, 1, 0.26654222809711575], [3, 5, -1, 16.961010434811335], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [65, -51, -1, 0.11070550266192071], [-611, 317, 1, 0.44776219038460713], [-290, -654, -1, 0.2682213175063062], [6, -4, 1, -0.015604390528130075], [-619, 301, -1, 0.4608386688749693], [5, -3, 1, 19.052794400544567], [44, -2, -1, 0.8416158005940771], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -48, -1, -0.027405019286345433], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 18.92320562398962], [4, 0, 0, 2.4156135388573103], [617, -301, 1, -0.46702831037727244], [2, -2, 0, 0.5087787822945713], [1, -5, 1, 19.45343734871714], [-2, 0, 0, -0.10821085510488573], [317, 677, 1, -0.09362951944268448]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 324, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 15.72579240868095], [-627, 350, 1, 0.2665648307152133], [4, 3, -1, 17.022583617650454], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [67, -52, -1, 0.10986510332361539], [-613, 318, 1, 0.4477698911764217], [-291, -656, -1, 0.26824425701654014], [4, -3, 1, -0.0244372519721974], [-621, 302, -1, 0.46084436133938955], [3, -2, 1, 19.045221314450384], [42, -3, -1, 0.845735396642619], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -47, -1, -0.02248427000847298], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 18.9876461531942], [4, 0, 0, 2.4156135388573103], [619, -302, 1, -0.46703335944224483], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 19.51560439052814], [-2, 0, 0, -0.10821085510488573], [318, 679, 1, -0.0936417296065584]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 325, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 3, -1, 15.772813278303582], [-629, 351, 1, 0.2665872931465906], [5, 1, -1, 17.093583520905522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [68, -50, -1, 0.10572925150291287], [-615, 319, 1, 0.44777754226462824], [-292, -658, -1, 0.26826705417055713], [6, -4, 1, -0.015604390528130075], [-623, 303, -1, 0.4608500170589639], [5, -3, 1, 19.052794400544567], [43, -1, -1, 0.8380870718478822], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -49, -1, -0.027405019286345436], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 19.04820562398962], [4, 0, 0, 2.4156135388573103], [621, -303, 1, -0.4670383758302752], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 19.598229060797422], [-2, 0, 0, -0.10821085510488573], [319, 681, 1, -0.09365386718176077]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 326, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 4, -1, 15.8343864611427], [-631, 352, 1, 0.2666096166905352], [4, -1, -1, 17.163989565188707], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [67, -48, -1, 0.10376165118938935], [-617, 320, 1, 0.4477851441288507], [-293, -660, -1, 0.26828971028846593], [4, -3, 1, -0.0244372519721974], [-625, 304, -1, 0.46085563638831534], [3, -2, 1, 19.045221314450384], [44, 1, -1, 0.8307699259410808], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -48, -1, -0.02908027260406915], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 19.14178914489512], [4, 0, 0, 2.4156135388573103], [623, -304, 1, -0.4670433598575523], [2, -2, 0, 0.5087787822945713], [5, 0, 1, 19.67202086962264], [-2, 0, 0, -0.10821085510488573], [320, 683, 1, -0.09366593281353605]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 327, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 15.885594652317483], [-633, 353, 1, 0.26663180263033887], [5, -3, -1, 17.21101043481134], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [65, -49, -1, 0.10762882728480974], [-619, 321, 1, 0.44779269724256193], [-294, -662, -1, 0.26831222667411475], [6, -4, 1, -0.015604390528130075], [-627, 305, -1, 0.4608612196775186], [4, -4, 1, 19.013804835355884], [45, -1, -1, 0.8379226556428463], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -50, -1, -0.030652628530532685], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 19.246997432814837], [4, 0, 0, 2.4156135388573103], [625, -305, 1, -0.4670483118361988], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 19.745812678447855], [-2, 0, 0, -0.10821085510488573], [321, 685, 1, -0.09367792713950547]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 328, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 15.97579240868095], [-635, 354, 1, 0.2666538522335427], [3, -4, -1, 17.272583617650458], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [64, -51, -1, 0.11190602745857257], [-621, 322, 1, 0.4478002020731827], [-295, -664, -1, 0.2683346046153404], [4, -3, 1, -0.0244372519721974], [-629, 306, -1, 0.4608667672721726], [2, -3, 1, 18.982388356261385], [43, -2, -1, 0.8417836854928753], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -49, -1, -0.03242929518215669], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 19.337195189178306], [4, 0, 0, 2.4156135388573103], [627, -306, 1, -0.4670532320743366], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 19.828437348717138], [-2, 0, 0, -0.10821085510488573], [322, 687, 1, -0.09368985078977918]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 329, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 16.061802843492266], [-637, 355, 1, 0.266675766752178], [1, -5, -1, 17.343583520905526], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -50, -1, 0.11283389172956387], [-623, 323, 1, 0.4478076590821775], [-296, -666, -1, 0.2683568453842135], [6, -4, 1, -0.015604390528130075], [-631, 307, -1, 0.4608722795134717], [4, -4, 1, 19.013804835355884], [44, 0, -1, 0.8343864611426888], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -48, -1, -0.034320444069676395], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 19.42320562398962], [4, 0, 0, 2.4156135388573103], [629, -307, 1, -0.4670581208761502], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 19.92202086962264], [-2, 0, 0, -0.10821085510488573], [323, 689, 1, -0.0937017043870666]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 330, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 16.14781327830358], [-639, 356, 1, 0.26669754742300245], [-1, -4, -1, 17.41398956518871], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [64, -51, -1, 0.11190602745857257], [-625, 324, 1, 0.44781506872514937], [-297, -668, -1, 0.2683789502372786], [4, -3, 1, -0.0244372519721974], [-633, 308, -1, 0.46087775673827575], [3, -2, 1, 19.045221314450384], [45, -2, -1, 0.8414553621977251], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -46, -1, -0.03276776217847596], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -1, 1, 19.509216058800934], [4, 0, 0, 2.4156135388573103], [631, -308, 1, -0.46706297854194995], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 20.01560439052814], [-2, 0, 0, -0.10821085510488573], [324, 691, 1, -0.0937134885467847]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 331, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 2, -1, 16.135594652317483], [-641, 357, 1, 0.2667191954677322], [-3, -5, -1, 17.461010434811342], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -50, -1, 0.11283389172956387], [-627, 325, 1, 0.4478224314519327], [-298, -670, -1, 0.26840092041579017], [6, -4, 1, -0.015604390528130075], [-635, 309, -1, 0.4608831992791788], [4, -4, 1, 19.013804835355884], [43, -3, -1, 0.8454723308605492], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -44, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 1, 1, 19.599413815164404], [4, 0, 0, 2.4156135388573103], [633, -309, 1, -0.4670678053682334], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 20.120812678447855], [-2, 0, 0, -0.10821085510488573], [325, 693, 1, -0.09372520387716439]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 332, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, 0, -1, 16.186802843492266], [-643, 358, 1, 0.2667407120932698], [-4, -3, -1, 17.52258361765046], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -52, -1, 0.11717204613824939], [-629, 326, 1, 0.4478297477066841], [-299, -672, -1, 0.2684227571459445], [4, -3, 1, -0.0244372519721974], [-637, 310, -1, 0.46088860746457616], [2, -3, 1, 18.982388356261385], [44, -1, -1, 0.8380029963442966], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -42, -1, -0.025532694569721775], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 19.70462210308412], [4, 0, 0, 2.4156135388573103], [635, -310, 1, -0.4670726016477453], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 20.211010434811325], [-2, 0, 0, -0.10821085510488573], [326, 695, 1, -0.0937368509793551]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 333, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -2, -1, 16.225792408680952], [-645, 359, 1, 0.26676209849192783], [-5, -1, -1, 17.59358352090553], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -50, -1, 0.11539243244775998], [-631, 327, 1, 0.4478370179279718], [-300, -674, -1, 0.268444461639107], [6, -4, 1, -0.015604390528130075], [-639, 311, -1, 0.4608939816187307], [4, -2, 1, 19.065013026530668], [42, -2, -1, 0.8419595472368727], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -40, -1, -0.019831933192161366], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 19.79820562398962], [4, 0, 0, 2.4156135388573103], [637, -311, 1, -0.46707736766953717], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 20.29702086962264], [-2, 0, 0, -0.10821085510488573], [327, 697, 1, -0.09374843044752755]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 334, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, 0, -1, 16.186802843492266], [-647, 360, 1, 0.2667833558416486], [-4, 1, -1, 17.663989565188714], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -48, -1, 0.11092886045818565], [-633, 328, 1, 0.4478442425488631], [-301, -676, -1, 0.26846603509203576], [4, -3, 1, -0.0244372519721974], [-641, 312, -1, 0.46089932206183726], [3, 0, 1, 19.138804835355884], [43, 0, -1, 0.8343864611426887], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -42, -1, -0.02191909147833995], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 19.89178914489512], [4, 0, 0, 2.4156135388573103], [639, -312, 1, -0.4670821037190252], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 20.383031304433953], [-2, 0, 0, -0.10821085510488573], [328, 699, 1, -0.09375994286897464]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 335, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, -2, -1, 16.225792408680952], [-649, 361, 1, 0.2668044853062197], [-5, 3, -1, 17.711010434811346], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -49, -1, 0.11512673162099203], [-635, 329, 1, 0.44785142199701067], [-302, -678, -1, 0.2684874786871007], [6, -4, 1, -0.015604390528130075], [-643, 313, -1, 0.4609046291100869], [4, 2, 1, 19.2125966441811], [44, -2, -1, 0.841615800594077], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -43, -1, -0.020336118231309055], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 19.996997432814837], [4, 0, 0, 2.4156135388573103], [641, -313, 1, -0.46708681007804714], [2, -2, 0, 0.5087787822945713], [1, -3, 1, 20.473229060797422], [-2, 0, 0, -0.10821085510488573], [329, 701, 1, -0.09377138882421071]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 336, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -3, -1, 16.260594652317483], [-651, 362, 1, 0.266825488035486], [-3, 4, -1, 17.772583617650465], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [60, -51, -1, 0.11694511433896045], [-637, 330, 1, 0.4478585566947364], [-303, -680, -1, 0.26850879359249935], [4, -3, 1, -0.0244372519721974], [-645, 314, -1, 0.4609099030757285], [2, 3, 1, 19.295221314450384], [42, -3, -1, 0.8457353966426189], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -45, -1, -0.025656134262983587], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 20.087195189178306], [4, 0, 0, 2.4156135388573103], [643, -314, 1, -0.4670914870249184], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 20.578437348717138], [-2, 0, 0, -0.10821085510488573], [330, 703, 1, -0.09378276888706903]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 337, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -2, -1, 16.260594652317483], [-653, 363, 1, 0.26684636516555765], [-1, 5, -1, 17.843583520905533], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -49, -1, 0.11252743201250733], [-639, 331, 1, 0.44786564705911475], [-304, -682, -1, 0.268529980962468], [6, -4, 1, -0.015604390528130075], [-647, 315, -1, 0.4609151442671307], [0, 4, 1, 19.388804835355884], [43, -1, -1, 0.8380870718478821], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -46, -1, -0.024019254744314003], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 20.17320562398962], [4, 0, 0, 2.4156135388573103], [645, -315, 1, -0.46709613483448664], [2, -2, 0, 0.5087787822945713], [5, -3, 1, 20.58601043481132], [-2, 0, 0, -0.10821085510488573], [331, 705, 1, -0.09379408362479756]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 338, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 16.343219322586766], [-655, 364, 1, 0.26686711781901457], [1, 4, -1, 17.913989565188718], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [63, -50, -1, 0.11159168355553037], [-641, 332, 1, 0.4478726935020535], [-305, -684, -1, 0.2685510419374899], [4, -3, 1, -0.0244372519721974], [-649, 316, -1, 0.46092035298884143], [-2, 5, 1, 19.449364306151306], [44, 1, -1, 0.8307699259410807], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -47, -1, -0.022484270008472976], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 20.259216058800934], [4, 0, 0, 2.4156135388573103], [647, -316, 1, -0.46710075377818594], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 20.633031304433953], [-2, 0, 0, -0.10821085510488573], [332, 707, 1, -0.09380533359815327]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 339, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 16.436802843492266], [-657, 365, 1, 0.26688774710510665], [3, 5, -1, 17.96101043481135], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [62, -48, -1, 0.1096736388227863], [-643, 333, 1, 0.44787969643037395], [-306, -686, -1, 0.26857197764449914], [6, -4, 1, -0.015604390528130075], [-651, 317, -1, 0.46092552954164734], [-3, 3, 1, 19.513804835355884], [45, -1, -1, 0.8379226556428462], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -48, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -3, 1, 20.349413815164404], [4, 0, 0, 2.4156135388573103], [649, -317, 1, -0.46710534412408933], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 20.723229060797422], [-2, 0, 0, -0.10821085510488573], [333, 709, 1, -0.09381651936149453]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 340, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 16.530386364397767], [-659, 366, 1, 0.2669082541199515], [4, 3, -1, 18.02258361765047], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [61, -50, -1, 0.11410061874657201], [-645, 334, 1, 0.4478866562458889], [-307, -688, -1, 0.2685927891970811], [4, -3, 1, -0.0244372519721974], [-653, 318, -1, 0.46093067422263134], [-4, 1, 1, 19.5998152701672], [43, -2, -1, 0.8417836854928752], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -50, -1, -0.032325768564217885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 20.45462210308412], [4, 0, 0, 2.4156135388573103], [651, -318, 1, -0.46710990613696085], [2, -2, 0, 0.5087787822945713], [5, 2, 1, 20.73258034041806], [-2, 0, 0, -0.10821085510488573], [334, 711, 1, -0.09382764146287219]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 341, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 16.61301103466705], [-661, 367, 1, 0.2669286399467278], [5, 1, -1, 18.093583520905536], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [59, -49, -1, 0.11512673162099203], [-647, 335, 1, 0.44789357334547947], [-308, -690, -1, 0.2686134776956696], [6, -4, 1, -0.015604390528130075], [-655, 319, -1, 0.46093578732522966], [-5, -1, 1, 19.670221314450384], [44, 0, -1, 0.8343864611426887], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -49, -1, -0.0341734866385958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -3, 1, 20.462195189178303], [4, 0, 0, 2.4156135388573103], [653, -319, 1, -0.46711444007830627], [2, -2, 0, 0.5087787822945713], [3, 3, 1, 20.79702086962264], [-2, 0, 0, -0.10821085510488573], [335, 713, 1, -0.09383870044411904]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 342, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 0, -1, 16.686802843492266], [-663, 368, 1, 0.2669489056558655], [4, -1, -1, 18.16398956518872], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -47, -1, 0.11320862517823597], [-649, 336, 1, 0.44790044812117064], [-309, -692, -1, 0.2686340442277401], [4, -3, 1, -0.0244372519721974], [-657, 320, -1, 0.4609408691392876], [-3, -2, 1, 19.73238835626138], [45, -2, -1, 0.841455362197725], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -50, -1, -0.032325768564217885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -4, 1, 20.465580953720334], [4, 0, 0, 2.4156135388573103], [655, -320, 1, -0.46711894620642325], [2, -2, 0, 0.5087787822945713], [1, 4, 1, 20.883031304433953], [-2, 0, 0, -0.10821085510488573], [336, 715, 1, -0.09384969684093769]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 343, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 2, -1, 16.760594652317483], [-665, 369, 1, 0.2669690523052327], [5, -3, -1, 18.211010434811353], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -48, -1, 0.11760277564981353], [-651, 337, 1, 0.44790728096020527], [-310, -694, -1, 0.268654489868], [6, -4, 1, -0.015604390528130075], [-659, 321, -1, 0.4609459199511141], [-1, -3, 1, 19.837596644181097], [43, -3, -1, 0.8454723308605491], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -49, -1, -0.0341734866385958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [8, -2, 1, 20.509216058800934], [4, 0, 0, 2.4156135388573103], [657, -321, 1, -0.46712342477645025], [2, -2, 0, 0.5087787822945713], [-1, 3, 1, 20.973229060797422], [-2, 0, 0, -0.10821085510488573], [337, 717, 1, -0.09386063118298696]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 344, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 16.843219322586766], [-667, 370, 1, 0.26698908094031965], [3, -4, -1, 18.272583617650472], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -49, -1, 0.1164659739608276], [-653, 338, 1, 0.4479140722451168], [-311, -696, -1, 0.2686748156785751], [4, -3, 1, -0.0244372519721974], [-661, 322, -1, 0.46095094004353576], [1, -4, 1, 19.927794400544567], [44, -1, -1, 0.8380029963442965], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -50, -1, -0.032325768564217885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 20.474413815164404], [4, 0, 0, 2.4156135388573103], [659, -322, 1, -0.4671278760404147], [2, -2, 0, 0.5087787822945713], [-3, 2, 1, 21.078437348717138], [-2, 0, 0, -0.10821085510488573], [338, 719, 1, -0.0938715039939669]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 345, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 16.936802843492266], [-669, 371, 1, 0.2670089925944185], [1, -5, -1, 18.34358352090554], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [57, -51, -1, 0.12098854019184492], [-655, 339, 1, 0.44792082235380065], [-312, -698, -1, 0.2686950227091933], [6, -4, 1, -0.015604390528130075], [-663, 323, -1, 0.46095592969594945], [3, -3, 1, 20.01380483535588], [42, -2, -1, 0.8419595472368726], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -49, -1, -0.0341734866385958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 20.525622006339187], [4, 0, 0, 2.4156135388573103], [661, -323, 1, -0.4671323002472804], [2, -2, 0, 0.5087787822945713], [-4, 0, 1, 21.17202086962264], [-2, 0, 0, -0.10821085510488573], [339, 721, 1, -0.0938823157917024]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 346, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 3, -1, 17.030386364397767], [-671, 372, 1, 0.2670287882888011], [-1, -4, -1, 18.413989565188725], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [58, -49, -1, 0.1164659739608276], [-657, 340, 1, 0.44792753165958415], [-313, -700, -1, 0.2687151119973648], [4, -3, 1, -0.0244372519721974], [-665, 324, -1, 0.4609608891843743], [4, -1, 1, 20.099815270167195], [43, 0, -1, 0.8343864611426886], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -50, -1, -0.032325768564217885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 20.54820562398962], [4, 0, 0, 2.4156135388573103], [663, -324, 1, -0.4671366976429937], [2, -2, 0, 0.5087787822945713], [-3, -2, 1, 21.26560439052814], [-2, 0, 0, -0.10821085510488573], [340, 723, 1, -0.09389306708822526]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 347, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 4, -1, 17.061802843492266], [-673, 373, 1, 0.26704846903289303], [-3, -5, -1, 18.461010434811357], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [56, -48, -1, 0.11760277564981353], [-659, 341, 1, 0.44793420053129546], [-314, -702, -1, 0.26873508456855905], [6, -4, 1, -0.015604390528130075], [-667, 325, -1, 0.4609658187815023], [5, 1, 1, 20.17022131445038], [44, -2, -1, 0.8416158005940769], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -48, -1, -0.030790783828376786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, 2, 1, 20.599413815164404], [4, 0, 0, 2.4156135388573103], [665, -325, 1, -0.4671410684705293], [2, -2, 0, 0.5087787822945713], [-1, -3, 1, 21.370812678447855], [-2, 0, 0, -0.10821085510488573], [341, 725, 1, -0.0939037583898549]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 348, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 2, -1, 17.126243372696845], [-675, 374, 1, 0.2670680358244447], [-4, -3, -1, 18.522583617650476], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [54, -49, -1, 0.12210149368015645], [-661, 342, 1, 0.4479408293333313], [-315, -704, -1, 0.26875494143637907], [4, -3, 1, -0.0244372519721974], [-669, 326, -1, 0.46097071875674867], [7, 2, 1, 20.18309760174733], [42, -3, -1, 0.8457353966426188], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -49, -1, -0.02904573377147507], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 4, 1, 20.65559398025098], [4, 0, 0, 2.4156135388573103], [667, -326, 1, -0.4671454129699347], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 21.461010434811325], [-2, 0, 0, -0.10821085510488573], [342, 727, 1, -0.09391439019727793]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 349, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 1, -1, 17.135594652317483], [-677, 375, 1, 0.2670874896496996], [-5, -1, -1, 18.593583520905543], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [52, -48, -1, 0.12345859596191633], [-663, 343, 1, 0.4479474184257228], [-316, -706, -1, 0.2687746836027324], [6, -4, 1, -0.015604390528130075], [-671, 327, -1, 0.46097558937630057], [5, 3, 1, 20.224815270167195], [43, -1, -1, 0.838087071847882], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -48, -1, -0.030790783828376786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 5, 1, 20.712195189178303], [4, 0, 0, 2.4156135388573103], [669, -327, 1, -0.4671497313783746], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 21.54702086962264], [-2, 0, 0, -0.10821085510488573], [343, 729, 1, -0.09392496300562608]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 350, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 0, -1, 17.186802843492266], [-679, 376, 1, 0.2671068314835595], [-4, 1, -1, 18.66398956518873], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [53, -50, -1, 0.12518713094620862], [-665, 344, 1, 0.44795396816420135], [-317, -708, -1, 0.26879431205799903], [4, -3, 1, -0.0244372519721974], [-673, 328, -1, 0.4609804309031656], [3, 4, 1, 20.286388453006314], [44, 1, -1, 0.8307699259410806], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -47, -1, -0.03264998597173686], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 6, 1, 20.771921395633992], [4, 0, 0, 2.4156135388573103], [671, -328, 1, -0.4671540239301737], [2, -2, 0, 0.5087787822945713], [5, -4, 1, 21.56463251336128], [-2, 0, 0, -0.10821085510488573], [344, 731, 1, -0.09393547730455326]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 351, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -1, -1, 17.2093864611427], [-681, 377, 1, 0.2671260622897473], [-5, 3, -1, 18.71101043481136], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -49, -1, 0.12663872708542584], [-667, 345, 1, 0.44796047890026197], [-318, -710, -1, 0.2688138277811969], [6, -4, 1, -0.015604390528130075], [-675, 329, -1, 0.46098524359721893], [1, 3, 1, 20.337596644181097], [45, -1, -1, 0.8379226556428461], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -48, -1, -0.030790783828376786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 5, 1, 20.82962210308412], [4, 0, 0, 2.4156135388573103], [673, -329, 1, -0.467158290856859], [2, -2, 0, 0.5087787822945713], [7, -3, 1, 21.60758034041806], [-2, 0, 0, -0.10821085510488573], [345, 733, 1, -0.09394593357831074]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 352, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -3, -1, 17.260594652317483], [-683, 378, 1, 0.26714518302096624], [-3, 4, -1, 18.77258361765048], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [50, -51, -1, 0.13139714166329539], [-669, 346, 1, 0.44796695098122674], [-319, -712, -1, 0.26883323174014395], [4, -3, 1, -0.0244372519721974], [-677, 330, -1, 0.4609900277152497], [-1, 4, 1, 20.427794400544567], [43, -2, -1, 0.8417836854928751], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -47, -1, -0.03264998597173686], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 20.891789144895117], [4, 0, 0, 2.4156135388573103], [675, -330, 1, -0.46716253238720185], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 21.64573664126701], [-2, 0, 0, -0.10821085510488573], [346, 735, 1, -0.0939563323058218]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 353, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 17.311802843492266], [-685, 379, 1, 0.267164194619057], [-1, 5, -1, 18.843583520905547], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [51, -49, -1, 0.12663872708542584], [-671, 347, 1, 0.447973384750306], [-320, -714, -1, 0.26885252489161815], [6, -4, 1, -0.015604390528130075], [-679, 331, -1, 0.4609947835110072], [-3, 3, 1, 20.51380483535588], [44, 0, -1, 0.8343864611426886], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -46, -1, -0.02740501928634543], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 20.996997432814833], [4, 0, 0, 2.4156135388573103], [677, -331, 1, -0.4671667487472584], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 21.703437348717138], [-2, 0, 0, -0.10821085510488573], [347, 737, 1, -0.09396667396075452]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 354, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 17.343219322586766], [-687, 380, 1, 0.2671830980151522], [1, 4, -1, 18.913989565188732], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [49, -50, -1, 0.13142897265148937], [-673, 348, 1, 0.4479797805466595], [-321, -716, -1, 0.2688717081815139], [4, -3, 1, -0.0244372519721974], [-681, 332, -1, 0.46099951123524496], [-4, 1, 1, 20.599815270167195], [45, -2, -1, 0.8414553621977249], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -45, -1, -0.022272768547471542], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 21.087195189178303], [4, 0, 0, 2.4156135388573103], [679, -332, 1, -0.46717094016041], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 21.765604390528136], [-2, 0, 0, -0.10821085510488573], [348, 739, 1, -0.09397695901159384]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 355, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 17.436802843492266], [-689, 381, 1, 0.267201894129828], [3, 5, -1, 18.961010434811364], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -52, -1, 0.13618420730990818], [-675, 349, 1, 0.44798613870545556], [-322, -718, -1, 0.26889078254499665], [6, -4, 1, -0.015604390528130075], [-683, 333, -1, 0.46100421113576556], [-3, -1, 1, 20.690013026530664], [43, -3, -1, 0.845472330860549], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -43, -1, -0.017040027622010817], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -3, 1, 21.173205623989617], [4, 0, 0, 2.4156135388573103], [681, -333, 1, -0.4671751068474026], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 21.87081267844785], [-2, 0, 0, -0.10821085510488573], [349, 741, 1, -0.09398718792171211]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 356, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -6, -1, 17.463087071847895], [-691, 382, 1, 0.2672205838732527], [4, 3, -1, 19.022583617650483], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -51, -1, 0.138018010272041], [-677, 350, 1, 0.4479924595579299], [-323, -720, -1, 0.2689097489066542], [4, -3, 1, -0.0244372519721974], [-685, 334, -1, 0.4610088834574633], [-4, -3, 1, 20.741221217705448], [44, -1, -1, 0.8380029963442964], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -42, -1, -0.012050741087300483], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -4, 1, 21.25921605880093], [4, 0, 0, 2.4156135388573103], [683, -334, 1, -0.4671792490263854], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 21.96101043481132], [-2, 0, 0, -0.10821085510488573], [350, 743, 1, -0.09399736114943867]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 357, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -7, -1, 17.501243372696845], [-693, 383, 1, 0.2672391681453342], [5, 1, -1, 19.09358352090555], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -49, -1, 0.1365898689881626], [-679, 351, 1, 0.4479987434314429], [-324, -722, -1, 0.26892860818064596], [6, -4, 1, -0.015604390528130075], [-687, 335, -1, 0.46101352844236726], [-5, -5, 1, 20.76380483535588], [42, -2, -1, 0.8419595472368725], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -41, -1, -0.013294997452971625], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -3, 1, 21.3494138151644], [4, 0, 0, 2.4156135388573103], [685, -335, 1, -0.4671833669129491], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 22.047020869622635], [-2, 0, 0, -0.10821085510488573], [351, 745, 1, -0.09400747914812839]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 358, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -5, -1, 17.497362314287688], [-695, 384, 1, 0.26725764783586325], [4, -1, -1, 19.163989565188736], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -51, -1, 0.138018010272041], [-681, 352, 1, 0.4480049906495367], [-325, -724, -1, 0.2689473612708494], [4, -3, 1, -0.0244372519721974], [-689, 336, -1, 0.46101814632968274], [-3, -6, 1, 20.815013026530664], [43, 0, -1, 0.8343864611426884], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -42, -1, -0.012050741087300483], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -2, 1, 21.454622103084116], [4, 0, 0, 2.4156135388573103], [687, -336, 1, -0.46718746072016304], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 22.13303130443395], [-2, 0, 0, -0.10821085510488573], [352, 747, 1, -0.09401754236622872]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 359, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 17.48801103466705], [-697, 385, 1, 0.26727602382465593], [5, -3, -1, 19.211010434811367], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [44, -50, -1, 0.13996646491454096], [-683, 353, 1, 0.4480112015319897], [-326, -726, -1, 0.2689660090710041], [6, -4, 1, -0.015604390528130075], [-691, 337, -1, 0.4610227373558324], [-2, -4, 1, 20.815013026530664], [44, -2, -1, 0.8416158005940768], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -44, -1, -0.017259956007716737], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -4, 1, 21.423205623989617], [4, 0, 0, 2.4156135388573103], [689, -337, 1, -0.4671915306586123], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 22.22322906079742], [-2, 0, 0, -0.10821085510488573], [353, 749, 1, -0.09402755124734609]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 360, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 17.539219225841833], [-699, 386, 1, 0.2672942969816921], [3, -4, -1, 19.272583617650486], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -51, -1, 0.138018010272041], [-685, 354, 1, 0.44801737639487194], [-327, -728, -1, 0.2689845524648534], [4, -3, 1, -0.0244372519721974], [-693, 338, -1, 0.46102730175449663], [0, -3, 1, 20.88880483535588], [42, -3, -1, 0.8457353966426187], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -42, -1, -0.015186393300246678], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 21.4744138151644], [4, 0, 0, 2.4156135388573103], [691, -338, 1, -0.46719557693643343], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 22.328437348717134], [-2, 0, 0, -0.10821085510488573], [354, 751, 1, -0.09403750623031097]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 361, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 17.48801103466705], [-701, 387, 1, 0.26731246816725324], [1, -5, -1, 19.343583520905554], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -50, -1, 0.13306901088009954], [-687, 355, 1, 0.4480235155505985], [-328, -730, -1, 0.2690029923262837], [6, -4, 1, -0.015604390528130075], [-695, 339, -1, 0.4610318397566533], [-2, -4, 1, 20.815013026530664], [43, -1, -1, 0.8380870718478819], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -44, -1, -0.020489594503014394], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 21.525622006339184], [4, 0, 0, 2.4156135388573103], [693, -339, 1, -0.46719959975935027], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 22.422020869622635], [-2, 0, 0, -0.10821085510488573], [355, 753, 1, -0.09404740774924199]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 362, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 17.539219225841833], [-703, 388, 1, 0.2673305382320564], [-1, -4, -1, 19.41398956518874], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -51, -1, 0.138018010272041], [-689, 356, 1, 0.4480296193079821], [-329, -732, -1, 0.2690213295194615], [4, -3, 1, -0.0244372519721974], [-697, 340, -1, 0.46103635159061646], [-3, -6, 1, 20.815013026530664], [44, 1, -1, 0.8307699259410805], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -42, -1, -0.018473119309267025], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 21.548205623989617], [4, 0, 0, 2.4156135388573103], [695, -340, 1, -0.4672035993307085], [2, -2, 0, 0.5087787822945713], [2, -5, 1, 22.482580340418057], [-2, 0, 0, -0.10821085510488573], [356, 755, 1, -0.09405725623360901]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 363, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 17.61301103466705], [-705, 389, 1, 0.2673485080173873], [-3, -5, -1, 19.46101043481137], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [48, -52, -1, 0.13618420730990818], [-691, 357, 1, 0.4480356879722846], [-330, -734, -1, 0.26903956489896796], [6, -4, 1, -0.015604390528130075], [-699, 341, -1, 0.4610408374820748], [-2, -4, 1, 20.815013026530664], [45, -1, -1, 0.837922655642846], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -41, -1, -0.020007794936158913], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 21.621997432814833], [4, 0, 0, 2.4156135388573103], [697, -341, 1, -0.4672075758515101], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 22.547020869622635], [-2, 0, 0, -0.10821085510488573], [357, 757, 1, -0.09406705210829511]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 364, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 0, -1, 17.686802843492266], [-707, 390, 1, 0.26736637835523014], [-4, -3, -1, 19.52258361765049], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [47, -50, -1, 0.1347421509137847], [-693, 358, 1, 0.44804172184526864], [-331, -736, -1, 0.2690576993099314], [4, -3, 1, -0.0244372519721974], [-701, 342, -1, 0.4610452976541292], [0, -3, 1, 20.88880483535588], [43, -2, -1, 0.841783685492875], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -39, -1, -0.014327651940866992], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 21.704622103084116], [4, 0, 0, 2.4156135388573103], [699, -342, 1, -0.46721152952044714], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 22.63303130443395], [-2, 0, 0, -0.10821085510488573], [358, 759, 1, -0.09407679579365764]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 365, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 2, -1, 17.760594652317483], [-709, 391, 1, 0.26738415006839616], [-5, -1, -1, 19.593583520905558], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -48, -1, 0.13320716617794365], [-695, 359, 1, 0.4480477212252469], [-332, -738, -1, 0.26907573358815756], [6, -4, 1, -0.015604390528130075], [-703, 343, -1, 0.46104973232733004], [1, -5, 1, 20.92022131445038], [44, 0, -1, 0.8343864611426884], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -40, -1, -0.019831933192161366], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 21.798205623989617], [4, 0, 0, 2.4156135388573103], [701, -343, 1, -0.4672154605339344], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 22.703437348717134], [-2, 0, 0, -0.10821085510488573], [359, 761, 1, -0.09408648770558845]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 366, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 4, -1, 17.8343864611427], [-711, 392, 1, 0.2674018239706491], [-4, 1, -1, 19.663989565188743], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -46, -1, 0.13157028665927412], [-697, 360, 1, 0.4480536864071315], [-333, -740, -1, 0.26909366856025785], [4, -3, 1, -0.0244372519721974], [-705, 344, -1, 0.46105414171971293], [2, -3, 1, 20.982388356261378], [45, -2, -1, 0.8414553621977248], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -42, -1, -0.02191909147833995], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 21.85876509478504], [4, 0, 0, 2.4156135388573103], [703, -344, 1, -0.4672193690861424], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 22.765604390528132], [-2, 0, 0, -0.10821085510488573], [360, 763, 1, -0.09409612825557286]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 367, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 17.905386364397767], [-713, 393, 1, 0.26741940086682975], [-5, 3, -1, 19.711010434811374], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [46, -44, -1, 0.12628520713575472], [-699, 361, 1, 0.4480596176824824], [-334, -742, -1, 0.26911150504377523], [6, -4, 1, -0.015604390528130075], [-707, 345, -1, 0.4610585260468349], [4, -2, 1, 21.06501302653066], [43, -3, -1, 0.8454723308605488], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -40, -1, -0.016319149568484948], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 4, 1, 21.923205623989617], [4, 0, 0, 2.4156135388573103], [705, -345, 1, -0.46722325536902914], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 22.870812678447848], [-2, 0, 0, -0.10821085510488573], [361, 765, 1, -0.09410571785074794]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 368, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 17.975792408680952], [-715, 394, 1, 0.2674368815529772], [-3, 4, -1, 19.772583617650493], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [45, -42, -1, 0.12433547382790677], [-701, 362, 1, 0.44806551533955497], [-335, -744, -1, 0.26912924384730813], [4, -3, 1, -0.0244372519721974], [-709, 346, -1, 0.46106288552180946], [3, 0, 1, 21.138804835355877], [44, -1, -1, 0.8380029963442963], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -42, -1, -0.01847311930926703], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 2, 1, 21.987646153194195], [4, 0, 0, 2.4156135388573103], [707, -346, 1, -0.4672271195723715], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 22.961010434811318], [-2, 0, 0, -0.10821085510488573], [362, 767, 1, -0.09411525689395975]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 369, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 18.061802843492266], [-717, 395, 1, 0.2674542668164494], [-1, 5, -1, 19.84358352090556], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [43, -43, -1, 0.12982140163591224], [-703, 363, 1, 0.4480713796633463], [-336, -746, -1, 0.2691468857706325], [6, -4, 1, -0.015604390528130075], [-711, 347, -1, 0.461067220355341], [4, 2, 1, 21.212596644181094], [42, -2, -1, 0.8419595472368724], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -40, -1, -0.012976050098193154], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 0, 1, 22.048205623989617], [4, 0, 0, 2.4156135388573103], [709, -347, 1, -0.46723096188379615], [2, -2, 0, 0.5087787822945713], [-3, 5, 1, 23.00803130443395], [-2, 0, 0, -0.10821085510488573], [363, 769, 1, -0.09412474578381975]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 370, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 18.14781327830358], [-719, 396, 1, 0.2674715574360406], [1, 4, -1, 19.913989565188746], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [41, -44, -1, 0.13543630424801228], [-705, 364, 1, 0.44807721093564146], [-337, -748, -1, 0.26916443160482156], [4, -3, 1, -0.0244372519721974], [-713, 348, -1, 0.46107153075575885], [2, 3, 1, 21.295221314450377], [43, 0, -1, 0.8343864611426883], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -39, -1, -0.007833438383935739], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -2, 1, 22.141789144895117], [4, 0, 0, 2.4156135388573103], [711, -348, 1, -0.46723478248881], [2, -2, 0, 0.5087787822945713], [-4, 3, 1, 23.069604487273068], [-2, 0, 0, -0.10821085510488573], [364, 771, 1, -0.09413418491476024]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 371, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 18.186802843492266], [-721, 397, 1, 0.2674887541820979], [3, 5, -1, 19.961010434811378], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -43, -1, 0.13757890820733804], [-707, 365, 1, 0.4480830094350585], [-338, -750, -1, 0.26918188213236405], [6, -4, 1, -0.015604390528130075], [-715, 349, -1, 0.46107581692905064], [0, 4, 1, 21.388804835355877], [44, -2, -1, 0.8416158005940767], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -38, -1, -0.008981367577627453], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -3, 1, 22.246997432814833], [4, 0, 0, 2.4156135388573103], [713, -349, 1, -0.46723858157083], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 23.12081267844785], [-2, 0, 0, -0.10821085510488573], [365, 773, 1, -0.09414357467708905]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 372, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 18.225792408680952], [-723, 398, 1, 0.2675058578166349], [4, 3, -1, 20.022583617650497], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -42, -1, 0.13988108136957153], [-709, 366, 1, 0.44808877543709286], [-339, -752, -1, 0.2691992381272801], [4, -3, 1, -0.0244372519721974], [-717, 350, -1, 0.461080079078895], [-2, 5, 1, 21.4493643061513], [42, -3, -1, 0.8457353966426185], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -36, -1, -0.006434403263391883], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 22.337195189178303], [4, 0, 0, 2.4156135388573103], [715, -350, 1, -0.46724235931121233], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 23.21101043481132], [-2, 0, 0, -0.10821085510488573], [366, 775, 1, -0.09415291545704318]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 373, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 18.272813278303584], [-725, 399, 1, 0.26752286909344425], [5, 1, -1, 20.093583520905565], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -43, -1, 0.13757890820733804], [-711, 367, 1, 0.4480945092141609], [-340, -754, -1, 0.2692165003552354], [6, -4, 1, -0.015604390528130075], [-719, 351, -1, 0.4610843174066938], [-3, 3, 1, 21.513804835355877], [43, -1, -1, 0.8380870718478818], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -34, -1, -0.0037084481476006357], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -6, 1, 22.3494138151644], [4, 0, 0, 2.4156135388573103], [717, -351, 1, -0.4672461158892816], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 23.297020869622635], [-2, 0, 0, -0.10821085510488573], [367, 777, 1, -0.09416220763684184]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 374, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 18.280386364397767], [-727, 400, 1, 0.26753978875820844], [4, -1, -1, 20.16398956518875], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -44, -1, 0.14354144480848502], [-713, 368, 1, 0.4481002110356428], [-341, -756, -1, 0.26923366957365374], [4, -3, 1, -0.0244372519721974], [-721, 352, -1, 0.46108853211160417], [-4, 1, 1, 21.59981527016719], [44, 1, -1, 0.8307699259410803], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -33, -1, 0.001737972414575658], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -7, 1, 22.3808302942589], [4, 0, 0, 2.4156135388573103], [719, -352, 1, -0.46724985148235904], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 23.38303130443395], [-2, 0, 0, -0.10821085510488573], [368, 779, 1, -0.09417145159473851]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 375, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 18.311802843492266], [-729, 401, 1, 0.267556617548608], [5, -3, -1, 20.21101043481138], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -43, -1, 0.14608810603988157], [-715, 369, 1, 0.4481058811679248], [-342, -758, -1, 0.2692507465318274], [6, -4, 1, -0.015604390528130075], [-723, 353, -1, 0.4610927233905694], [-3, -1, 1, 21.69001302653066], [45, -1, -1, 0.8379226556428458], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -35, -1, -0.0011207909307187052], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -6, 1, 22.3494138151644], [4, 0, 0, 2.4156135388573103], [721, -353, 1, -0.4672535662657902], [2, -2, 0, 0.5087787822945713], [1, -5, 1, 23.453437348717134], [-2, 0, 0, -0.10821085510488573], [369, 781, 1, -0.09418064770507222]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 376, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -5, -1, 18.376243372696845], [-731, 402, 1, 0.2675733561944288], [3, -4, -1, 20.2725836176505], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -41, -1, 0.14014164915099214], [-717, 370, 1, 0.4481115198744408], [-343, -760, -1, 0.2692677319710259], [4, -3, 1, -0.0244372519721974], [-725, 354, -1, 0.46109689143834964], [-2, -3, 1, 21.795221314450377], [43, -2, -1, 0.8417836854928749], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-50, -37, -1, -0.0037979112877518885], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -7, 1, 22.3808302942589], [4, 0, 0, 2.4156135388573103], [723, -354, 1, -0.46725726041297266], [2, -2, 0, 0.5087787822945713], [2, -7, 1, 23.466313636014085], [-2, 0, 0, -0.10821085510488573], [370, 783, 1, -0.09418979633831799]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 377, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -7, -1, 18.414219225841833], [-733, 403, 1, 0.2675900054176673], [1, -5, -1, 20.343583520905568], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -43, -1, 0.14608810603988157], [-719, 371, 1, 0.4481171274157128], [-344, -762, -1, 0.2692846266246032], [6, -4, 1, -0.015604390528130075], [-727, 355, -1, 0.46110103644755224], [-1, -5, 1, 21.857388356261374], [44, 0, -1, 0.8343864611426883], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -39, -1, -0.00939648125051977], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -8, 1, 22.3371951891783], [4, 0, 0, 2.4156135388573103], [725, -355, 1, -0.467260934095383], [2, -2, 0, 0.5087787822945713], [4, -8, 1, 23.495812678447848], [-2, 0, 0, -0.10821085510488573], [371, 785, 1, -0.09419889786113676]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 378, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -8, -1, 18.45659455557255], [-735, 404, 1, 0.2676065659326342], [-1, -4, -1, 20.413989565188754], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -41, -1, 0.14014164915099214], [-721, 372, 1, 0.4481227040493914], [-345, -764, -1, 0.26930143121810285], [4, -3, 1, -0.0244372519721974], [-729, 356, -1, 0.4611051586086612], [1, -4, 1, 21.92779440054456], [45, -2, -1, 0.8414553621977247], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -41, -1, -0.014912931467823848], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -7, 1, 22.3808302942589], [4, 0, 0, 2.4156135388573103], [727, -356, 1, -0.4672645874826032], [2, -2, 0, 0.5087787822945713], [6, -7, 1, 23.534802243636534], [-2, 0, 0, -0.10821085510488573], [372, 787, 1, -0.09420795263642405]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 379, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -7, -1, 18.501243372696845], [-737, 405, 1, 0.26762303844605617], [-3, -5, -1, 20.461010434811385], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -40, -1, 0.14269768893286403], [-723, 373, 1, 0.44812825003029505], [-346, -766, -1, 0.2693181464693617], [6, -4, 1, -0.015604390528130075], [-731, 357, -1, 0.46110925811006653], [3, -3, 1, 22.013804835355874], [43, -3, -1, 0.8454723308605487], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -39, -1, -0.012642392425387814], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -8, 1, 22.3371951891783], [4, 0, 0, 2.4156135388573103], [729, -357, 1, -0.4672682207423467], [2, -2, 0, 0.5087787822945713], [7, -5, 1, 23.57330509797826], [-2, 0, 0, -0.10821085510488573], [373, 789, 1, -0.09421696102335839]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 380, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -5, -1, 18.497362314287688], [-739, 406, 1, 0.26763942365717636], [-4, -3, -1, 20.522583617650504], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -38, -1, 0.13635833737510197], [-725, 374, 1, 0.4481337656104487], [-347, -768, -1, 0.26933477308861203], [4, -3, 1, -0.0244372519721974], [-733, 358, -1, 0.46111333513809266], [4, -1, 1, 22.099815270167188], [44, -1, -1, 0.8380029963442962], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-46, -37, -1, -0.010214419388452068], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 22.32448985234524], [4, 0, 0, 2.4156135388573103], [731, -358, 1, -0.4672718340404842], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 23.598229060797415], [-2, 0, 0, -0.10821085510488573], [374, 791, 1, -0.0942259233774487]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 381, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 18.48801103466705], [-741, 407, 1, 0.2676557222578532], [-5, -1, -1, 20.59358352090557], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -37, -1, 0.12982140163591224], [-727, 375, 1, 0.4481392510391224], [-348, -770, -1, 0.2693513117785817], [6, -4, 1, -0.015604390528130075], [-735, 359, -1, 0.46111738987702716], [3, 1, 1, 22.190013026530657], [42, -2, -1, 0.8419595472368723], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -36, -1, -0.011542260571068606], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 22.36264615319419], [4, 0, 0, 2.4156135388573103], [733, -359, 1, -0.467275427541069], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 23.598229060797415], [-2, 0, 0, -0.10821085510488573], [375, 793, 1, -0.094234840050581]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 382, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 18.539219225841833], [-743, 408, 1, 0.26767193493265745], [-4, 1, -1, 20.663989565188757], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -35, -1, 0.12757993092729455], [-729, 376, 1, 0.44814470656286837], [-349, -772, -1, 0.269367763234593], [4, -3, 1, -0.0244372519721974], [-737, 360, -1, 0.46112142250914795], [2, 3, 1, 22.295221314450373], [43, 0, -1, 0.8343864611426882], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -34, -1, -0.00888651958939719], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 22.358765094785035], [4, 0, 0, 2.4156135388573103], [735, -360, 1, -0.46727900140636136], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 23.67202086962263], [-2, 0, 0, -0.10821085510488573], [376, 795, 1, -0.09424371139106447]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 383, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 18.61301103466705], [-745, 409, 1, 0.26768806235896775], [-5, 3, -1, 20.71101043481139], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -36, -1, 0.12552096358319567], [-731, 377, 1, 0.4481501324255584], [-350, -774, -1, 0.2693841281446601], [6, -4, 1, -0.015604390528130075], [-739, 361, -1, 0.4611254332147511], [0, 4, 1, 22.388804835355874], [44, -2, -1, 0.8416158005940766], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -32, -1, -0.002481056467188737], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 22.423205623989613], [4, 0, 0, 2.4156135388573103], [737, -361, 1, -0.46728255579685346], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 23.70343734871713], [-2, 0, 0, -0.10821085510488573], [377, 797, 1, -0.09425253774367678]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 384, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 0, -1, 18.686802843492266], [-747, 410, 1, 0.2677041052070651], [-3, 4, -1, 20.772583617650508], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -34, -1, 0.12310054270075577], [-733, 378, 1, 0.4481555288684198], [-351, -776, -1, 0.26940040718958463], [4, -3, 1, -0.0244372519721974], [-741, 362, -1, 0.4611294221721773], [-2, 3, 1, 22.482388356261374], [42, -3, -1, 0.8457353966426184], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -34, -1, -0.00888651958939719], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 22.440817267728253], [4, 0, 0, 2.4156135388573103], [739, -362, 1, -0.46728609087129314], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 23.76560439052813], [-2, 0, 0, -0.10821085510488573], [378, 799, 1, -0.09426131944970867]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 385, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 18.718219322586766], [-749, 411, 1, 0.2677200641402253], [-1, 5, -1, 20.843583520905575], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -33, -1, 0.1165890636061173], [-735, 379, 1, 0.4481608961300712], [-352, -778, -1, 0.2694166010430498], [6, -4, 1, -0.015604390528130075], [-743, 363, -1, 0.4611333895578385], [-3, 1, 1, 22.58759664418109], [43, -1, -1, 0.8380870718478817], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-42, -36, -1, -0.015186393300246685], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 22.483765094785035], [4, 0, 0, 2.4156135388573103], [741, -363, 1, -0.46728960678670756], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 23.870812678447844], [-2, 0, 0, -0.10821085510488573], [379, 801, 1, -0.09427005684700801]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 386, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 18.760594652317483], [-751, 412, 1, 0.2677359398148103], [1, 4, -1, 20.91398956518876], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -32, -1, 0.11830855791062254], [-737, 380, 1, 0.44816623444655795], [-353, -780, -1, 0.26943271037171335], [4, -3, 1, -0.0244372519721974], [-745, 364, -1, 0.461137335546244], [-5, 0, 1, 22.638804835355874], [44, 1, -1, 0.8307699259410802], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -35, -1, -0.00935127962063826], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 22.521921395633985], [4, 0, 0, 2.4156135388573103], [743, -364, 1, -0.4672931036984265], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 23.961010434811314], [-2, 0, 0, -0.10821085510488573], [380, 803, 1, -0.094278750270023]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 387, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 4, -1, 18.811802843492266], [-753, 413, 1, 0.26775173288035775], [3, 5, -1, 20.961010434811392], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -30, -1, 0.11118296605880965], [-739, 381, 1, 0.4481715440513866], [-354, -782, -1, 0.2694487358352986], [6, -4, 1, -0.015604390528130075], [-747, 365, -1, 0.4611412603100257], [-3, -1, 1, 22.690013026530657], [45, -1, -1, 0.8379226556428457], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -33, -1, -0.006583192509318019], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 22.579622103084112], [4, 0, 0, 2.4156135388573103], [745, -365, 1, -0.4672965817601053], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 24.047020869622628], [-2, 0, 0, -0.10821085510488573], [381, 805, 1, -0.09428740004984493]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 388, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 3, -1, 18.843219322586766], [-755, 414, 1, 0.2677674439796698], [4, 3, -1, 21.02258361765051], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -29, -1, 0.11274744147022706], [-741, 382, 1, 0.4481768251755587], [-355, -784, -1, 0.26946467808668456], [4, -3, 1, -0.0244372519721974], [-749, 366, -1, 0.4611451640199637], [-2, -3, 1, 22.795221314450373], [43, -2, -1, 0.8417836854928747], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-44, -31, -1, -8.956383021452644e-05], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 2, 1, 22.64178914489511], [4, 0, 0, 2.4156135388573103], [747, -366, 1, -0.46730004112374707], [2, -2, 0, 0.5087787822945713], [-5, 4, 1, 24.064632513361268], [-2, 0, 0, -0.10821085510488573], [382, 807, 1, -0.09429600651425006]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 389, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 4, -1, 18.936802843492266], [-757, 415, 1, 0.26778307374889987], [5, 1, -1, 21.09358352090558], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -31, -1, 0.11581459311043749], [-743, 383, 1, 0.4481820780476046], [-356, -786, -1, 0.2694805377719944], [6, -4, 1, -0.015604390528130075], [-751, 367, -1, 0.4611490468450106], [0, -4, 1, 22.888804835355874], [44, 0, -1, 0.8343864611426882], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-43, -29, -1, 0.003160371968514347], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 3, 1, 22.746997432814826], [4, 0, 0, 2.4156135388573103], [749, -367, 1, -0.46730348193972515], [2, -2, 0, 0.5087787822945713], [-6, 2, 1, 24.120812678447844], [-2, 0, 0, -0.10821085510488573], [383, 809, 1, -0.09430456998774109]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 390, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, 3, -1, 19.030386364397767], [-759, 416, 1, 0.2677986228176386], [4, -1, -1, 21.163989565188764], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -32, -1, 0.12269981771517612], [-745, 384, 1, 0.4481873028936164], [-357, -788, -1, 0.2694963155306824], [4, -3, 1, -0.0244372519721974], [-753, 368, -1, 0.4611529089523164], [2, -3, 1, 22.982388356261374], [45, -2, -1, 0.8414553621977245], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-45, -28, -1, 0.009009447930749854], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 22.837195189178296], [4, 0, 0, 2.4156135388573103], [751, -368, 1, -0.46730690435680483], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 24.133031304433942], [-2, 0, 0, -0.10821085510488573], [384, 811, 1, -0.09431309079158787]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 391, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 2, -1, 19.11301103466705], [-761, 417, 1, 0.26781409180899773], [5, -3, -1, 21.211010434811396], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -31, -1, 0.11581459311043749], [-747, 385, 1, 0.4481924999372802], [-358, -790, -1, 0.26951201199561975], [6, -4, 1, -0.015604390528130075], [-755, 369, -1, 0.461156750507252], [4, -2, 1, 23.065013026530657], [43, -3, -1, 0.8454723308605486], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -29, -1, 0.009607567552240064], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 5, 1, 22.884216058800927], [4, 0, 0, 2.4156135388573103], [753, -369, 1, -0.46731030852216465], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 24.22322906079741], [-2, 0, 0, -0.10821085510488573], [385, 813, 1, -0.09432156924386756]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 392, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 1, -1, 19.16051861513664], [-763, 418, 1, 0.26782948133969386], [3, -4, -1, 21.272583617650515], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -32, -1, 0.1141806161980365], [-749, 386, 1, 0.4481976693999081], [-359, -792, -1, 0.2695276277931793], [4, -3, 1, -0.0244372519721974], [-757, 370, -1, 0.4611605716734331], [6, -3, 1, 23.065013026530657], [44, -1, -1, 0.8380029963442961], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -30, -1, 0.010159315853699087], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 3, 1, 22.945789241640046], [4, 0, 0, 2.4156135388573103], [755, -370, 1, -0.46731369458141764], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 24.328437348717127], [-2, 0, 0, -0.10821085510488573], [386, 815, 1, -0.09433000565950424]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 393, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [8, 0, -1, 19.186802843492266], [-765, 419, 1, 0.26784479202012973], [1, -5, -1, 21.343583520905582], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -33, -1, 0.12073671296040232], [-751, 387, 1, 0.44820281150046964], [-360, -794, -1, 0.2695431635433183], [6, -4, 1, -0.015604390528130075], [-759, 371, -1, 0.4611643726127434], [8, -2, 1, 23.099815270167188], [42, -2, -1, 0.8419595472368722], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-48, -32, -1, 0.004011459808155178], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 1, 1, 23.016789144895114], [4, 0, 0, 2.4156135388573103], [757, -371, 1, -0.467317062678632], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 24.422020869622628], [-2, 0, 0, -0.10821085510488573], [387, 817, 1, -0.09433840035030777]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 394, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [9, -2, -1, 19.221605087128797], [-767, 420, 1, 0.2678600244544748], [-1, -4, -1, 21.413989565188768], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -35, -1, 0.12757993092729453], [-753, 388, 1, 0.4482079264556227], [-361, -796, -1, 0.2695586198596606], [4, -3, 1, -0.0244372519721974], [-761, 372, -1, 0.4611681534853572], [7, 0, 1, 23.138804835355874], [43, 0, -1, 0.8343864611426881], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-47, -34, -1, -0.002077622748023777], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -1, 1, 23.0871951891783], [4, 0, 0, 2.4156135388573103], [759, -372, 1, -0.46732041295635157], [2, -2, 0, 0.5087787822945713], [2, -5, 1, 24.48258034041805], [-2, 0, 0, -0.10821085510488573], [388, 819, 1, -0.09434675362501233]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 395, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [7, -1, -1, 19.2093864611427], [-769, 421, 1, 0.2678751792407451], [-3, -5, -1, 21.4610104348114], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -33, -1, 0.1251417229750892], [-755, 389, 1, 0.44821301447974377], [-362, -798, -1, 0.2695739973495771], [6, -4, 1, -0.015604390528130075], [-763, 373, -1, 0.4611719144497623], [5, 1, 1, 23.170221314450373], [44, -2, -1, 0.8416158005940765], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-49, -35, -1, -0.0011207909307187078], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -3, 1, 23.13421605880093], [4, 0, 0, 2.4156135388573103], [761, -373, 1, -0.46732374555561595], [2, -2, 0, 0.5087787822945713], [3, -3, 1, 24.547020869622628], [-2, 0, 0, -0.10821085510488573], [389, 821, 1, -0.09435506578931407]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 396, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, -3, -1, 19.260594652317483], [-771, 422, 1, 0.2678902569708806], [-4, -3, -1, 21.52258361765052], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -34, -1, 0.12310054270075572], [-757, 390, 1, 0.44821807578495837], [-363, -800, -1, 0.2695892966142653], [4, -3, 1, -0.0244372519721974], [-765, 374, -1, 0.4611756556627818], [3, 2, 1, 23.23238835626137], [42, -3, -1, 0.8457353966426183], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-51, -36, -1, -0.00023166642021410055], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -4, 1, 23.19578924164005], [4, 0, 0, 2.4156135388573103], [763, -374, 1, -0.4673270606159802], [2, -2, 0, 0.5087787822945713], [5, -4, 1, 24.564632513361268], [-2, 0, 0, -0.10821085510488573], [390, 823, 1, -0.09436333714590857]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 397, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -4, -1, 19.311802843492266], [-773, 423, 1, 0.26790525823082273], [-5, -1, -1, 21.593583520905586], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -33, -1, 0.1251417229750892], [-759, 391, 1, 0.44822311058116976], [-364, -802, -1, 0.26960451824882725], [6, -4, 1, -0.015604390528130075], [-767, 375, -1, 0.46117937727959607], [1, 3, 1, 23.337596644181087], [43, -1, -1, 0.8380870718478816], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-53, -37, -1, 0.0005966417901610493], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, -5, 1, 23.266789144895117], [4, 0, 0, 2.4156135388573103], [765, -375, 1, -0.46733035827553454], [2, -2, 0, 0.5087787822945713], [7, -3, 1, 24.60758034041805], [-2, 0, 0, -0.10821085510488573], [391, 825, 1, -0.0943715679945274]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 398, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [2, -3, -1, 19.343219322586766], [-775, 424, 1, 0.2679201836005898], [-4, 1, -1, 21.66398956518877], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -34, -1, 0.12310054270075572], [-761, 392, 1, 0.4482281190760887], [-365, -804, -1, 0.26961966284234695], [4, -3, 1, -0.0244372519721974], [-769, 376, -1, 0.46118307945376424], [-1, 4, 1, 23.427794400544556], [44, 1, -1, 0.8307699259410801], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -38, -1, 0.0013701265138870837], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -4, 1, 23.337195189178303], [4, 0, 0, 2.4156135388573103], [767, -376, 1, -0.46733363867092315], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 24.645736641267], [-2, 0, 0, -0.10821085510488573], [392, 827, 1, -0.09437975863197436]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 399, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -4, -1, 19.436802843492266], [-777, 425, 1, 0.2679350336543517], [-5, 3, -1, 21.711010434811403], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -32, -1, 0.11621281148650175], [-763, 393, 1, 0.44823310147526163], [-366, -806, -1, 0.2696347309779658], [6, -4, 1, -0.015604390528130075], [-771, 377, -1, 0.4611867623372451], [-3, 5, 1, 23.474815270167188], [45, -1, -1, 0.8379226556428456], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -37, -1, 0.0059601984535585795], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 23.423205623989617], [4, 0, 0, 2.4156135388573103], [769, -377, 1, -0.46733690193736344], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 24.703437348717127], [-2, 0, 0, -0.10821085510488573], [393, 829, 1, -0.09438790935216124]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 400, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -3, -1, 19.530386364397767], [-779, 426, 1, 0.2679498089605036], [-3, 4, -1, 21.772583617650522], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [39, -30, -1, 0.10917860171598857], [-765, 394, 1, 0.4482380579820987], [-367, -808, -1, 0.26964972323295766], [4, -3, 1, -0.0244372519721974], [-773, 378, -1, 0.46119042608041805], [-4, 3, 1, 23.536388453006307], [43, -2, -1, 0.8417836854928746], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -36, -1, 0.005354507616183642], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 23.440817267728256], [4, 0, 0, 2.4156135388573103], [771, -378, 1, -0.4673401482086644], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 24.765604390528125], [-2, 0, 0, -0.10821085510488573], [394, 831, 1, -0.09439602044614272]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 401, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 19.635594652317483], [-781, 427, 1, 0.267964510081738], [-1, 5, -1, 21.84358352090559], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -31, -1, 0.11581459311043746], [-767, 395, 1, 0.4482429887979017], [-368, -810, -1, 0.2696646401788022], [6, -4, 1, -0.015604390528130075], [-775, 379, -1, 0.46119407083210373], [-3, 1, 1, 23.58759664418109], [44, 0, -1, 0.8343864611426881], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -37, -1, 0.0059601984535585795], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 23.48376509478504], [4, 0, 0, 2.4156135388573103], [773, -379, 1, -0.4673433776172448], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 24.87081267844784], [-2, 0, 0, -0.10821085510488573], [395, 833, 1, -0.09440409220215122]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 402, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 19.725792408680952], [-783, 428, 1, 0.26797913757511627], [1, 4, -1, 21.913989565188775], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -29, -1, 0.10856959342658051], [-769, 396, 1, 0.44824789412189125], [-369, -812, -1, 0.26967948238125744], [4, -3, 1, -0.0244372519721974], [-777, 380, -1, 0.46119769673958383], [-4, -1, 1, 23.67779440054456], [45, -2, -1, 0.8414553621977244], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -36, -1, 0.005354507616183642], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 23.52192139563399], [4, 0, 0, 2.4156135388573103], [775, -380, 1, -0.4673465902941516], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 24.96101043481131], [-2, 0, 0, -0.10821085510488573], [396, 835, 1, -0.09441212490563096]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 403, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 3, -1, 19.772813278303584], [-785, 429, 1, 0.26799369199213885], [3, 5, -1, 21.961010434811406], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -30, -1, 0.11539243244775996], [-771, 397, 1, 0.4482527741512335], [-370, -814, -1, 0.26969425040043116], [6, -4, 1, -0.015604390528130075], [-779, 381, -1, 0.461201303948621], [-3, -3, 1, 23.763804835355874], [43, -3, -1, 0.8454723308605485], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -38, -1, 0.0027069403090172876], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 23.579622103084116], [4, 0, 0, 2.4156135388573103], [777, -381, 1, -0.4673497863690772], [2, -2, 0, 0.5087787822945713], [-3, 5, 1, 25.008031304433942], [-2, 0, 0, -0.10821085510488573], [397, 837, 1, -0.09442011883927148]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 404, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 19.780386364397767], [-787, 430, 1, 0.2680081738788142], [4, 3, -1, 22.022583617650525], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -28, -1, 0.11220975789727357], [-773, 398, 1, 0.4482576290810667], [-371, -816, -1, 0.2697089447908512], [4, -3, 1, -0.0244372519721974], [-781, 382, -1, 0.4612048926034788], [-1, -4, 1, 23.849815270167188], [44, -1, -1, 0.838002996344296], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -40, -1, -0.0024810564671887366], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 2, 1, 23.641789144895114], [4, 0, 0, 2.4156135388573103], [779, -382, 1, -0.4673529659703772], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 25.015604390528125], [-2, 0, 0, -0.10821085510488573], [398, 839, 1, -0.09442807428304097]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 405, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 19.885594652317483], [-789, 431, 1, 0.2680225837757275], [5, 1, -1, 22.093583520905593], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -26, -1, 0.10872517005649152], [-775, 399, 1, 0.44826245910452694], [-372, -818, -1, 0.26972356610153486], [6, -4, 1, -0.015604390528130075], [-783, 383, -1, 0.46120846284694017], [1, -3, 1, 23.940013026530657], [42, -2, -1, 0.841959547236872], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -41, -1, -0.0016477921274557], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 3, 1, 23.74699743281483], [4, 0, 0, 2.4156135388573103], [781, -383, 1, -0.4673561292250874], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 25.12081267844784], [-2, 0, 0, -0.10821085510488573], [399, 841, 1, -0.09443599151421872]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 406, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 19.975792408680952], [-791, 432, 1, 0.2680369222181072], [4, -1, -1, 22.16398956518878], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -24, -1, 0.10489743881675556], [-777, 400, 1, 0.44826726441277415], [-373, -820, -1, 0.2697381148760569], [4, -3, 1, -0.0244372519721974], [-785, 384, -1, 0.4612120148203271], [3, -2, 1, 24.045221314450373], [43, 0, -1, 0.834386461142688], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -39, -1, 0.0033798958887369477], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 23.8371951891783], [4, 0, 0, 2.4156135388573103], [783, -384, 1, -0.46735927625894086], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 25.21101043481131], [-2, 0, 0, -0.10821085510488573], [400, 843, 1, -0.0944438708074276]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 407, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 20.061802843492266], [-793, 433, 1, 0.26805118973589154], [5, -3, -1, 22.21101043481141], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -26, -1, 0.11341545409766082], [-779, 401, 1, 0.4482720451950169], [-374, -822, -1, 0.26975259165261706], [6, -4, 1, -0.015604390528130075], [-787, 385, -1, 0.4612155486635189], [4, -4, 1, 24.013804835355874], [44, -2, -1, 0.8416158005940764], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -37, -1, 0.008448893689393045], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 23.923205623989613], [4, 0, 0, 2.4156135388573103], [785, -385, 1, -0.4673624071963845], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 25.297020869622624], [-2, 0, 0, -0.10821085510488573], [401, 845, 1, -0.09445171243466544]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 408, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 20.14781327830358], [-795, 434, 1, 0.2680653868537935], [3, -4, -1, 22.27258361765053], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [31, -24, -1, 0.10967363882278629], [-781, 402, 1, 0.44827680163853767], [-375, -824, -1, 0.26976699696410616], [4, -3, 1, -0.0244372519721974], [-789, 386, -1, 0.4612190645149704], [2, -3, 1, 23.982388356261374], [42, -3, -1, 0.8457353966426182], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -36, -1, 0.012740614744468415], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 24.009216058800927], [4, 0, 0, 2.4156135388573103], [787, -386, 1, -0.4673655221605954], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 25.38303130443394], [-2, 0, 0, -0.10821085510488573], [402, 847, 1, -0.0944595166653366]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 409, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 20.186802843492266], [-797, 435, 1, 0.26807951409136516], [1, -5, -1, 22.343583520905597], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -25, -1, 0.11805363830519322], [-783, 403, 1, 0.4482815339287169], [-376, -826, -1, 0.2697813313381714], [6, -4, 1, -0.015604390528130075], [-791, 387, -1, 0.46122256251173066], [4, -4, 1, 24.013804835355874], [43, -1, -1, 0.8380870718478814], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -38, -1, 0.0077409709929822535], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 24.099413815164397], [4, 0, 0, 2.4156135388573103], [789, -387, 1, -0.4673686212734972], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 25.422020869622624], [-2, 0, 0, -0.10821085510488573], [403, 849, 1, -0.0944672837662827]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 410, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 20.225792408680952], [-799, 436, 1, 0.2680935719630612], [-1, -4, -1, 22.413989565188782], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [30, -23, -1, 0.10892190041747157], [-785, 404, 1, 0.4482862422490573], [-377, -828, -1, 0.2697955952972806], [4, -3, 1, -0.0244372519721974], [-793, 388, -1, 0.46122604278946006], [3, -2, 1, 24.045221314450373], [44, 1, -1, 0.83076992594108], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -36, -1, 0.012740614744468415], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 24.204622103084112], [4, 0, 0, 2.4156135388573103], [791, -388, 1, -0.46737170465577577], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 25.46101043481131], [-2, 0, 0, -0.10821085510488573], [404, 851, 1, -0.094475014001813]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 411, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 20.186802843492266], [-801, 437, 1, 0.2681075609783006], [-3, -5, -1, 22.461010434811413], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -21, -1, 0.10457063241140577], [-787, 405, 1, 0.44829092678120736], [-378, -830, -1, 0.26980978935878563], [6, -4, 1, -0.015604390528130075], [-795, 389, -1, 0.4612295054824483], [4, -4, 1, 24.013804835355874], [45, -1, -1, 0.8379226556428455], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -34, -1, 0.017762216014521146], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 24.298205623989613], [4, 0, 0, 2.4156135388573103], [793, -389, 1, -0.46737477242689496], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 25.473229060797408], [-2, 0, 0, -0.10821085510488573], [405, 853, 1, -0.0944827076337344]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 412, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 20.225792408680952], [-803, 438, 1, 0.2681214816415286], [-4, -3, -1, 22.522583617650533], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [31, -22, -1, 0.10305046243332625], [-789, 406, 1, 0.44829558770498507], [-379, -832, -1, 0.26982391403498496], [4, -3, 1, -0.0244372519721974], [-797, 390, -1, 0.4612329507236314], [3, -2, 1, 24.045221314450373], [43, -2, -1, 0.8417836854928745], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -35, -1, 0.017947351576335133], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 24.32448985234524], [4, 0, 0, 2.4156135388573103], [795, -390, 1, -0.467377824705112], [2, -2, 0, 0.5087787822945713], [3, -4, 1, 25.52443725197219], [-2, 0, 0, -0.10821085510488573], [406, 855, 1, -0.09449036492138096]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 413, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -3, -1, 20.311802843492266], [-805, 439, 1, 0.26813533445227716], [-5, -1, -1, 22.5935835209056], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [30, -24, -1, 0.11220975789727357], [-791, 407, 1, 0.4483002251984006], [-380, -834, -1, 0.269837969833185], [6, -4, 1, -0.015604390528130075], [-799, 391, -1, 0.461236378644609], [4, -4, 1, 24.013804835355874], [44, 0, -1, 0.834386461142688], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -33, -1, 0.020800604703269387], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 24.36264615319419], [4, 0, 0, 2.4156135388573103], [797, -391, 1, -0.46738086160749287], [2, -2, 0, 0.5087787822945713], [4, -2, 1, 25.598229060797408], [-2, 0, 0, -0.10821085510488573], [407, 857, 1, -0.09449798612164301]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 414, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -4, -1, 20.39781327830358], [-807, 440, 1, 0.2681491199052244], [-4, 1, -1, 22.663989565188785], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -25, -1, 0.11037343619842517], [-793, 408, 1, 0.448304839437679], [-381, -836, -1, 0.2698519572557607], [4, -3, 1, -0.0244372519721974], [-801, 392, -1, 0.46123978937566074], [3, -2, 1, 24.045221314450373], [45, -2, -1, 0.8414553621977243], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -31, -1, 0.025805015284320307], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -6, 1, 24.32448985234524], [4, 0, 0, 2.4156135388573103], [799, -392, 1, -0.4673838832499269], [2, -2, 0, 0.5087787822945713], [3, 0, 1, 25.672020869622624], [-2, 0, 0, -0.10821085510488573], [408, 859, 1, -0.09450557148899592]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 415, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 20.48801103466705], [-809, 441, 1, 0.2681628384902535], [-5, 3, -1, 22.711010434811417], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -24, -1, 0.10264804876978086], [-795, 409, 1, 0.4483094305972826], [-382, -838, -1, 0.2698658768002157], [6, -4, 1, -0.015604390528130075], [-803, 393, -1, 0.4612431830457631], [5, -3, 1, 24.052794400544556], [43, -3, -1, 0.8454723308605484], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -29, -1, 0.028935422627311806], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -7, 1, 24.36264615319419], [4, 0, 0, 2.4156135388573103], [801, -393, 1, -0.467386889747142], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 25.74581267844784], [-2, 0, 0, -0.10821085510488573], [409, 861, 1, -0.09451312127552833]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 416, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 20.593219322586766], [-811, 442, 1, 0.2681764906925108], [-3, 4, -1, 22.772583617650536], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -25, -1, 0.10142648876470074], [-797, 410, 1, 0.4483139988499331], [-383, -840, -1, 0.26987972895924056], [4, -3, 1, -0.0244372519721974], [-805, 394, -1, 0.46124655978260554], [3, -2, 1, 24.045221314450373], [44, -1, -1, 0.8380029963442959], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -31, -1, 0.02380317188843792], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -5, 1, 24.358765094785035], [4, 0, 0, 2.4156135388573103], [803, -394, 1, -0.4673898812127186], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 25.828437348717124], [-2, 0, 0, -0.10821085510488573], [410, 863, 1, -0.09452063573097012]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 417, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 20.686802843492266], [-813, 443, 1, 0.2681900769924626], [-1, 5, -1, 22.843583520905604], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -24, -1, 0.10264804876978086], [-799, 411, 1, 0.44831854436663293], [-384, -842, -1, 0.26989351422077135], [6, -4, 1, -0.015604390528130075], [-807, 395, -1, 0.4612499197126064], [5, -3, 1, 24.052794400544556], [42, -2, -1, 0.8419595472368719], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -33, -1, 0.01867092114956403], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, -3, 1, 24.423205623989613], [4, 0, 0, 2.4156135388573103], [805, -395, 1, -0.46739285775910455], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 25.922020869622624], [-2, 0, 0, -0.10821085510488573], [411, 865, 1, -0.0945281151027199]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 418, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 20.780386364397767], [-815, 444, 1, 0.26820359786595166], [1, 4, -1, 22.91398956518879], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -22, -1, 0.09840492254141162], [-801, 412, 1, 0.4483230673166869], [-385, -844, -1, 0.2699072330680466], [4, -3, 1, -0.0244372519721974], [-809, 396, -1, 0.4612532629609289], [3, -2, 1, 24.045221314450373], [43, 0, -1, 0.8343864611426879], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -35, -1, 0.013549321926073254], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [807, -396, 1, -0.4673958194976287], [2, -2, 0, 0.5087787822945713], [-2, 5, 1, 25.982580340418046], [-2, 0, 0, -0.10821085510488573], [412, 867, 1, -0.09453555963587221]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 419, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 4, -1, 20.86301103466705], [-817, 445, 1, 0.2682170537842524], [3, 5, -1, 22.96101043481142], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -23, -1, 0.09735093170413668], [-803, 413, 1, 0.44832756786772293], [-386, -846, -1, 0.2699208859796637], [6, -4, 1, -0.015604390528130075], [-811, 397, -1, 0.46125658965149646], [5, -3, 1, 24.052794400544556], [44, -2, -1, 0.8416158005940763], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -33, -1, 0.016430406573419522], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [809, -397, 1, -0.4673987665385152], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 26.047020869622624], [-2, 0, 0, -0.10821085510488573], [413, 869, 1, -0.09454296957324411]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 420, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 20.936802843492266], [-819, 446, 1, 0.268230445214126], [4, 3, -1, 23.02258361765054], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -21, -1, 0.0888670604234935], [-805, 414, 1, 0.448332046185713], [-387, -848, -1, 0.2699344734296345], [4, -3, 1, -0.0244372519721974], [-813, 398, -1, 0.46125989990700805], [3, -2, 1, 24.045221314450373], [42, -3, -1, 0.8457353966426181], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -32, -1, 0.01617829440555421], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [811, -398, 1, -0.4674016989908968], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 26.13303130443394], [-2, 0, 0, -0.10821085510488573], [414, 871, 1, -0.09455034515540178]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 421, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 5, -1, 20.968219322586766], [-821, 447, 1, 0.26824377261787374], [5, 1, -1, 23.093583520905607], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -23, -1, 0.09333800634036687], [-807, 415, 1, 0.4483365024349934], [-388, -850, -1, 0.26994799588744], [6, -4, 1, -0.015604390528130075], [-815, 399, -1, 0.4612631938489535], [5, -3, 1, 24.052794400544556], [43, -1, -1, 0.8380870718478813], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -34, -1, 0.013208519570964718], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [813, -399, 1, -0.46740461696282853], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 26.223229060797408], [-2, 0, 0, -0.10821085510488573], [415, 873, 1, -0.09455768662068642]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 422, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 4, -1, 21.039219225841833], [-823, 448, 1, 0.2682570364533906], [4, -1, -1, 23.163989565188793], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -24, -1, 0.10048526082703337], [-809, 416, 1, 0.44834093677828496], [-389, -852, -1, 0.26996145381808445], [4, -3, 1, -0.0244372519721974], [-817, 400, -1, 0.46126647159762807], [3, -2, 1, 24.045221314450373], [44, 1, -1, 0.8307699259410799], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -33, -1, 0.012844321252222499], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [815, -400, 1, -0.4674075205613011], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 26.328437348717124], [-2, 0, 0, -0.10821085510488573], [416, 875, 1, -0.09456499420523995]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 423, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 2, -1, 21.11301103466705], [-825, 449, 1, 0.26827023717421733], [5, -3, -1, 23.211010434811424], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -26, -1, 0.10437043762001857], [-811, 417, 1, 0.44834534937671255], [-390, -854, -1, 0.2699748476821484], [6, -4, 1, -0.015604390528130075], [-819, 401, -1, 0.46126973327214726], [4, -4, 1, 24.013804835355874], [45, -1, -1, 0.8379226556428454], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-55, -35, -1, 0.007397224350186532], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [817, -401, 1, -0.4674104098922535], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 26.422020869622624], [-2, 0, 0, -0.10821085510488573], [417, 877, 1, -0.09457226814303024]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 424, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 0, -1, 21.186802843492266], [-827, 450, 1, 0.2682833752295921], [3, -4, -1, 23.272583617650543], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -27, -1, 0.10314027898309848], [-813, 418, 1, 0.44834974038982495], [-391, -856, -1, 0.26998817793584134], [4, -3, 1, -0.0244372519721974], [-821, 402, -1, 0.46127297899046116], [6, -3, 1, 24.065013026530657], [43, -2, -1, 0.8417836854928744], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -33, -1, 0.012844321252222499], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [819, -402, 1, -0.46741328506058655], [2, -2, 0, 0.5087787822945713], [1, -6, 1, 26.448305097978253], [-2, 0, 0, -0.10821085510488573], [418, 879, 1, -0.0945795086658762]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 425, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, 1, -1, 21.155386364397767], [-829, 451, 1, 0.2682964510645015], [1, -5, -1, 23.34358352090561], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -28, -1, 0.11002968955562946], [-815, 419, 1, 0.44835410997561403], [-392, -858, -1, 0.2700014450310533], [6, -4, 1, -0.015604390528130075], [-823, 403, -1, 0.46127620886936876], [7, -1, 1, 24.11622121770544], [44, 0, -1, 0.8343864611426879], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -32, -1, 0.017354475805569314], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [821, -403, 1, -0.46741614617017496], [2, -2, 0, 0.5087787822945713], [3, -7, 1, 26.486461398827203], [-2, 0, 0, -0.10821085510488573], [419, 881, 1, -0.09458671600347224]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 426, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 21.225792408680952], [-831, 452, 1, 0.2683094651197306], [-1, -4, -1, 23.413989565188796], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -26, -1, 0.10230978159987368], [-817, 420, 1, 0.4483584582905335], [-393, -860, -1, 0.2700146494154057], [4, -3, 1, -0.0244372519721974], [-825, 404, -1, 0.4612794230245318], [5, 0, 1, 24.138804835355874], [45, -2, -1, 0.8414553621977242], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -30, -1, 0.022727817015796382], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [823, -404, 1, -0.46741899332388026], [2, -2, 0, 0.5087787822945713], [5, -8, 1, 26.5109247118673], [-2, 0, 0, -0.10821085510488573], [420, 883, 1, -0.09459389038341268]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 427, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 21.272813278303584], [-833, 453, 1, 0.26832241783191235], [-3, -5, -1, 23.461010434811428], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [38, -28, -1, 0.10588904556878968], [-819, 421, 1, 0.44836278548951763], [-394, -862, -1, 0.270027791532302], [6, -4, 1, -0.015604390528130075], [-827, 405, -1, 0.4612826215704886], [4, 2, 1, 24.21259664418109], [43, -3, -1, 0.8454723308605483], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -31, -1, 0.022762958314207892], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [825, -405, 1, -0.46742182662356296], [2, -2, 0, 0.5087787822945713], [7, -7, 1, 26.547020869622624], [-2, 0, 0, -0.10821085510488573], [421, 885, 1, -0.09460103203121561]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 428, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 21.280386364397767], [-835, 454, 1, 0.2683353096335764], [-4, -3, -1, 23.522583617650547], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [37, -26, -1, 0.10230978159987368], [-821, 422, 1, 0.4483670917259997], [-395, -864, -1, 0.27004087182097686], [4, -3, 1, -0.0244372519721974], [-829, 406, -1, 0.4612858046206681], [2, 3, 1, 24.295221314450373], [44, -1, -1, 0.8380029963442958], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -32, -1, 0.02279587557187544], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, -4, 1, 24.440817267728253], [4, 0, 0, 2.4156135388573103], [827, -406, 1, -0.46742464617009466], [2, -2, 0, 0.5087787822945713], [9, -6, 1, 26.578437348717124], [-2, 0, 0, -0.10821085510488573], [422, 887, 1, -0.09460814117034655]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 429, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 21.385594652317483], [-837, 455, 1, 0.26834814095319726], [-5, -1, -1, 23.593583520905614], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [36, -28, -1, 0.11002968955562946], [-823, 423, 1, 0.4483713771519303], [-396, -866, -1, 0.2700538907165452], [6, -4, 1, -0.015604390528130075], [-831, 407, -1, 0.4612889722874025], [0, 4, 1, 24.388804835355874], [42, -2, -1, 0.8419595472368718], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -34, -1, 0.017762216014521146], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -3, 1, 24.483765094785035], [4, 0, 0, 2.4156135388573103], [829, -407, 1, -0.46742745206337016], [2, -2, 0, 0.5087787822945713], [8, -4, 1, 26.598229060797408], [-2, 0, 0, -0.10821085510488573], [423, 889, 1, -0.09461521802224182]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 430, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 21.475792408680952], [-839, 456, 1, 0.26836091221524166], [-4, 1, -1, 23.6639895651888], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [35, -30, -1, 0.11760277564981352], [-825, 424, 1, 0.44837564191779483], [-397, -868, -1, 0.27006684865005026], [4, -3, 1, -0.0244372519721974], [-833, 408, -1, 0.4612921246819411], [-2, 3, 1, 24.482388356261374], [43, 0, -1, 0.8343864611426878], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -32, -1, 0.020703143023417758], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -1, 1, 24.521921395633985], [4, 0, 0, 2.4156135388573103], [831, -408, 1, -0.4674302444023192], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 26.598229060797408], [-2, 0, 0, -0.10821085510488573], [424, 891, 1, -0.09462226280633128]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 431, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -3, -1, 21.561802843492266], [-841, 457, 1, 0.268373623840215], [-5, 3, -1, 23.71101043481143], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -32, -1, 0.12500000000000003], [-827, 425, 1, 0.4483798861726315], [-398, -870, -1, 0.27007974604851126], [6, -4, 1, -0.015604390528130075], [-835, 409, -1, 0.4612952619144631], [-3, 1, 1, 24.58759664418109], [44, -2, -1, 0.8416158005940761], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -31, -1, 0.02059914285758971], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 1, 1, 24.579622103084112], [4, 0, 0, 2.4156135388573103], [833, -409, 1, -0.46743302328491787], [2, -2, 0, 0.5087787822945713], [7, -1, 1, 26.64943725197219], [-2, 0, 0, -0.10821085510488573], [425, 893, 1, -0.09462927574006125]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 432, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, -2, -1, 21.626243372696845], [-843, 458, 1, 0.26838627624470784], [-3, 4, -1, 23.77258361765055], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -31, -1, 0.12729534483258126], [-829, 426, 1, 0.4483841100640484], [-399, -872, -1, 0.27009258333496994], [4, -3, 1, -0.0244372519721974], [-837, 410, -1, 0.46129838409409024], [-5, 0, 1, 24.638804835355874], [42, -3, -1, 0.845735396642618], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -30, -1, 0.024850228776207784], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 3, 1, 24.65062200633918], [4, 0, 0, 2.4156135388573103], [835, -410, 1, -0.4674357888082005], [2, -2, 0, 0.5087787822945713], [5, 0, 1, 26.672020869622624], [-2, 0, 0, -0.10821085510488573], [426, 895, 1, -0.09463625703891675]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 433, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 21.686802843492266], [-845, 459, 1, 0.2683988698414411], [-1, 5, -1, 23.843583520905618], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -29, -1, 0.11956755167354755], [-831, 427, 1, 0.44838831373824056], [-400, -874, -1, 0.2701053609285371], [6, -4, 1, -0.015604390528130075], [-839, 411, -1, 0.4613014913288999], [-4, -2, 1, 24.71259664418109], [43, -1, -1, 0.8380870718478812], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -31, -1, 0.02059914285758971], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 4, 1, 24.724413815164397], [4, 0, 0, 2.4156135388573103], [837, -411, 1, -0.46743854106827065], [2, -2, 0, 0.5087787822945713], [4, 2, 1, 26.74581267844784], [-2, 0, 0, -0.10821085510488573], [427, 897, 1, -0.09464320691644357]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 434, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 21.780386364397767], [-847, 460, 1, 0.268411405039311], [1, 4, -1, 23.913989565188803], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -31, -1, 0.12729534483258126], [-833, 428, 1, 0.44839249734000736], [-401, -876, -1, 0.2701180792444379], [4, -3, 1, -0.0244372519721974], [-841, 412, -1, 0.4613045837259372], [-2, -3, 1, 24.795221314450373], [44, 1, -1, 0.8307699259410798], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -30, -1, 0.024850228776207784], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 5, 1, 24.798205623989613], [4, 0, 0, 2.4156135388573103], [839, -412, 1, -0.4674412801603122], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 26.828437348717124], [-2, 0, 0, -0.10821085510488573], [428, 899, 1, -0.0946501255842701]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 435, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 21.686802843492266], [-849, 461, 1, 0.26842388224343305], [3, 5, -1, 23.961010434811435], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [34, -30, -1, 0.11988713948314178], [-835, 429, 1, 0.44839666101276837], [-402, -878, -1, 0.27013073869405685], [6, -4, 1, -0.015604390528130075], [-843, 413, -1, 0.4613076613912273], [0, -4, 1, 24.888804835355874], [45, -1, -1, 0.8379226556428453], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -28, -1, 0.028103609941154524], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 6, 1, 24.849413815164397], [4, 0, 0, 2.4156135388573103], [841, -413, 1, -0.4674440061786006], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 26.922020869622624], [-2, 0, 0, -0.10821085510488573], [429, 901, 1, -0.09465701325212875]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 436, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 21.780386364397767], [-851, 462, 1, 0.2684363018551859], [4, 3, -1, 24.022583617650554], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -32, -1, 0.12737305720096181], [-837, 430, 1, 0.4484008048985803], [-403, -880, -1, 0.2701433396849819], [4, -3, 1, -0.0244372519721974], [-845, 414, -1, 0.46131072442978793], [2, -3, 1, 24.982388356261374], [43, -2, -1, 0.8417836854928743], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -27, -1, 0.028253897850301787], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 5, 1, 24.905593980250973], [4, 0, 0, 2.4156135388573103], [843, -414, 1, -0.4674467192165134], [2, -2, 0, 0.5087787822945713], [-2, 3, 1, 27.015604390528125], [-2, 0, 0, -0.10821085510488573], [430, 903, 1, -0.09466387012787704]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 437, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 21.885594652317483], [-853, 463, 1, 0.26844866427225395], [5, 1, -1, 24.09358352090562], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [32, -34, -1, 0.1346428032718244], [-839, 431, 1, 0.44840492913815305], [-404, -882, -1, 0.2701558826210486], [6, -4, 1, -0.015604390528130075], [-847, 415, -1, 0.46131377294564074], [4, -2, 1, 25.065013026530657], [44, 0, -1, 0.8343864611426878], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -25, -1, 0.033806722214058636], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, 4, 1, 24.954622103084112], [4, 0, 0, 2.4156135388573103], [845, -415, 1, -0.467449419366541], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 27.12081267844784], [-2, 0, 0, -0.10821085510488573], [431, 905, 1, -0.09467069641751866]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 438, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 21.975792408680952], [-855, 464, 1, 0.26846096988867024], [4, -1, -1, 24.163989565188807], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [33, -36, -1, 0.1367368264192432], [-841, 432, 1, 0.44840903387086545], [-405, -884, -1, 0.27016836790238263], [4, -3, 1, -0.0244372519721974], [-849, 416, -1, 0.4613168070418234], [5, 0, 1, 25.138804835355874], [45, -2, -1, 0.8414553621977241], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -26, -1, 0.033469609400298285], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 5, 1, 24.905593980250973], [4, 0, 0, 2.4156135388573103], [847, -416, 1, -0.46745210672029724], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 27.21101043481131], [-2, 0, 0, -0.10821085510488573], [432, 907, 1, -0.094677492325224]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 439, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 22.061802843492266], [-857, 465, 1, 0.26847321909485766], [5, -3, -1, 24.21101043481144], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [31, -35, -1, 0.13945537179957096], [-843, 433, 1, 0.44841311923478105], [-406, -886, -1, 0.27018079592544253], [6, -4, 1, -0.015604390528130075], [-851, 417, -1, 0.46131982682040135], [4, 2, 1, 25.21259664418109], [43, -3, -1, 0.8454723308605482], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -27, -1, 0.03315445150907626], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 3, 1, 24.962195189178296], [4, 0, 0, 2.4156135388573103], [849, -417, 1, -0.4674547813685298], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 27.297020869622624], [-2, 0, 0, -0.10821085510488573], [433, 909, 1, -0.09468425805335054]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 440, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 22.14781327830358], [-859, 466, 1, 0.2684854122776707], [3, -4, -1, 24.272583617650557], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -34, -1, 0.14242632526898624], [-845, 434, 1, 0.4484171853666638], [-407, -888, -1, 0.2701931670830618], [4, -3, 1, -0.0244372519721974], [-853, 418, -1, 0.46132283238247884], [2, 3, 1, 25.295221314450373], [44, -1, -1, 0.8380029963442956], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -26, -1, 0.033469609400298285], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-6, 1, 1, 25.021921395633985], [4, 0, 0, 2.4156135388573103], [851, -418, 1, -0.46745744340113016], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 27.38303130443394], [-2, 0, 0, -0.10821085510488573], [434, 911, 1, -0.09469099380246289]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 441, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 22.186802843492266], [-861, 467, 1, 0.26849754982043583], [1, -5, -1, 24.343583520905625], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [28, -32, -1, 0.1404160539533854], [-847, 435, 1, 0.44842123240199283], [-408, -890, -1, 0.2702054817644897], [6, -4, 1, -0.015604390528130075], [-855, 419, -1, 0.46132582382821063], [0, 4, 1, 25.388804835355874], [42, -2, -1, 0.8419595472368717], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -24, -1, 0.03881370344468714], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -1, 1, 25.079622103084112], [4, 0, 0, 2.4156135388573103], [853, -419, 1, -0.4674600929071439], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 27.422020869622624], [-2, 0, 0, -0.10821085510488573], [435, 913, 1, -0.09469769977135256]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 442, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 22.225792408680952], [-863, 468, 1, 0.26850963210299167], [-1, -4, -1, 24.41398956518881], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -31, -1, 0.14374671762212277], [-849, 436, 1, 0.4484252604749781], [-409, -892, -1, 0.27021774035543256], [4, -3, 1, -0.0244372519721974], [-857, 420, -1, 0.46132880125681286], [-2, 3, 1, 25.482388356261374], [43, 0, -1, 0.8343864611426877], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -26, -1, 0.03530091982101072], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -3, 1, 25.15062200633918], [4, 0, 0, 2.4156135388573103], [855, -420, 1, -0.4674627299747806], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 27.46101043481131], [-2, 0, 0, -0.10821085510488573], [436, 915, 1, -0.09470437615705764]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 443, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 22.272813278303584], [-865, 469, 1, 0.2685216595017285], [-3, -5, -1, 24.461010434811442], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [27, -29, -1, 0.13550309188282117], [-851, 437, 1, 0.44842926971857483], [-410, -894, -1, 0.27022994323809363], [6, -4, 1, -0.015604390528130075], [-859, 421, -1, 0.46133176476657395], [-3, 1, 1, 25.58759664418109], [44, -2, -1, 0.841615800594076], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -28, -1, 0.030082343863830324], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -4, 1, 25.224413815164397], [4, 0, 0, 2.4156135388573103], [857, -421, 1, -0.46746535469142353], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 27.473229060797408], [-2, 0, 0, -0.10821085510488573], [437, 917, 1, -0.094711023154882]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 444, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 22.280386364397767], [-867, 470, 1, 0.26853363238962746], [-4, -3, -1, 24.52258361765056], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [25, -30, -1, 0.14425037082406444], [-853, 438, 1, 0.4484332602644981], [-411, -896, -1, 0.27024209079121286], [4, -3, 1, -0.0244372519721974], [-861, 422, -1, 0.4613347144548658], [-4, -1, 1, 25.67779440054456], [42, -3, -1, 0.8457353966426179], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -27, -1, 0.0302956881637819], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -3, 1, 25.298205623989613], [4, 0, 0, 2.4156135388573103], [859, -422, 1, -0.46746796714363936], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 27.504645539891907], [-2, 0, 0, -0.10821085510488573], [438, 919, 1, -0.09471764095841424]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 445, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 22.385594652317483], [-869, 471, 1, 0.26854555113629874], [-5, -1, -1, 24.59358352090563], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -31, -1, 0.15322964891780297], [-855, 439, 1, 0.44843723224323756], [-412, -898, -1, 0.27025418339010615], [6, -4, 1, -0.015604390528130075], [-863, 423, -1, 0.46133765041815394], [-3, -3, 1, 25.763804835355874], [43, -1, -1, 0.8380870718478811], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -26, -1, 0.034397824205911115], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, -5, 1, 25.329622103084112], [4, 0, 0, 2.4156135388573103], [861, -423, 1, -0.4674705674171878], [2, -2, 0, 0.5087787822945713], [6, -6, 1, 27.547020869622624], [-2, 0, 0, -0.10821085510488573], [439, 921, 1, -0.09472422975954668]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 446, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 22.436802843492266], [-871, 472, 1, 0.26855741610802003], [-4, 1, -1, 24.663989565188814], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -33, -1, 0.1612378807304128], [-857, 440, 1, 0.4484411857840714], [-413, -900, -1, 0.2702662214067037], [4, -3, 1, -0.0244372519721974], [-865, 424, -1, 0.4613405727520085], [-2, -5, 1, 25.828245364560452], [44, 1, -1, 0.8307699259410797], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -27, -1, 0.03405702185080258], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 25.39178914489511], [4, 0, 0, 2.4156135388573103], [863, -424, 1, -0.4674731555970307], [2, -2, 0, 0.5087787822945713], [5, -4, 1, 27.564632513361264], [-2, 0, 0, -0.10821085510488573], [440, 923, 1, -0.09473078974849372]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 447, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -4, -1, 22.510594652317483], [-873, 473, 1, 0.2685692276677735], [-5, 3, -1, 24.711010434811445], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -31, -1, 0.15322964891780297], [-859, 441, 1, 0.4484451210150805], [-414, -902, -1, 0.27027820520958834], [6, -4, 1, -0.015604390528130075], [-867, 425, -1, 0.4613434815511143], [0, -6, 1, 25.888804835355874], [45, -1, -1, 0.8379226556428452], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -25, -1, 0.03747154976722684], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -4, 1, 25.42320562398961], [4, 0, 0, 2.4156135388573103], [865, -425, 1, -0.4674757317673415], [2, -2, 0, 0.5087787822945713], [7, -3, 1, 27.607580340418046], [-2, 0, 0, -0.10821085510488573], [441, 925, 1, -0.09473732111381022]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 448, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 22.593219322586766], [-875, 474, 1, 0.26858098617528314], [-3, 4, -1, 24.772583617650564], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -30, -1, 0.1576213455288048], [-861, 442, 1, 0.4484490380631623], [-415, -904, -1, 0.2702901351640327], [4, -3, 1, -0.0244372519721974], [-869, 426, -1, 0.46134637690928115], [1, -4, 1, 25.92779440054456], [43, -2, -1, 0.8417836854928742], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -23, -1, 0.04268617883367777], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 25.474413815164393], [4, 0, 0, 2.4156135388573103], [867, -426, 1, -0.46747829601151436], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 27.645736641266996], [-2, 0, 0, -0.10821085510488573], [442, 927, 1, -0.09474382404240957]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 449, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 22.686802843492266], [-877, 475, 1, 0.2685926919870509], [-1, 5, -1, 24.843583520905632], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [19, -29, -1, 0.1625110931137473], [-863, 443, 1, 0.44845293705404404], [-416, -906, -1, 0.270302011632037], [6, -4, 1, -0.015604390528130075], [-871, 427, -1, 0.461349258919454], [3, -3, 1, 26.013804835355874], [44, 0, -1, 0.8343864611426877], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -24, -1, 0.038813703444687146], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 25.525622006339177], [4, 0, 0, 2.4156135388573103], [869, -427, 1, -0.46748084841217313], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 27.703437348717124], [-2, 0, 0, -0.10821085510488573], [443, 929, 1, -0.09475029871958138]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 450, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 22.780386364397767], [-879, 476, 1, 0.26860434545639283], [1, 4, -1, 24.913989565188817], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -28, -1, 0.15240501928634545], [-865, 444, 1, 0.44845681811229704], [-417, -908, -1, 0.27031383497236455], [4, -3, 1, -0.0244372519721974], [-873, 428, -1, 0.4613521276737228], [5, -4, 1, 26.031416479094514], [45, -2, -1, 0.841455362197724], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -23, -1, 0.04268617883367777], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 25.54820562398961], [4, 0, 0, 2.4156135388573103], [871, -428, 1, -0.4674833890511802], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 27.76560439052812], [-2, 0, 0, -0.10821085510488573], [444, 931, 1, -0.09475674532900932]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 451, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 4, -1, 22.86301103466705], [-881, 477, 1, 0.26861594693347474], [3, 5, -1, 24.96101043481145], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -27, -1, 0.14252673846897013], [-867, 445, 1, 0.4484606813613489], [-418, -910, -1, 0.27032560554057894], [6, -4, 1, -0.015604390528130075], [-875, 429, -1, 0.4613549832633322], [3, -3, 1, 26.013804835355874], [43, -3, -1, 0.8454723308605481], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-66, -24, -1, 0.04208635148615467], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 25.621997432814826], [4, 0, 0, 2.4156135388573103], [873, -429, 1, -0.46748591800964523], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 27.870812678447837], [-2, 0, 0, -0.10821085510488573], [445, 933, 1, -0.09476316405278822]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 452, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 22.936802843492266], [-883, 478, 1, 0.26862749676534686], [4, 3, -1, 25.022583617650568], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -25, -1, 0.13306901088009945], [-869, 446, 1, 0.4484645269234976], [-419, -912, -1, 0.2703373236890787], [4, -3, 1, -0.0244372519721974], [-877, 430, -1, 0.4613578257786916], [4, -1, 1, 26.099815270167188], [44, -1, -1, 0.8380029963442955], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -25, -1, 0.041523305687363364], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, 1, 1, 25.574489852345238], [4, 0, 0, 2.4156135388573103], [875, -430, 1, -0.4674884353679338], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 27.961010434811307], [-2, 0, 0, -0.10821085510488573], [446, 935, 1, -0.0947695550714414]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 453, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 22.905386364397767], [-885, 479, 1, 0.26863899529597873], [5, 1, -1, 25.093583520905636], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -27, -1, 0.14252673846897013], [-871, 447, 1, 0.44846835491992365], [-420, -914, -1, 0.2703489897671332], [6, -4, 1, -0.015604390528130075], [-879, 431, -1, 0.46136065530938436], [6, 0, 1, 26.138804835355874], [42, -2, -1, 0.8419595472368716], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -27, -1, 0.038232141076590204], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 3, 1, 25.634216058800927], [4, 0, 0, 2.4156135388573103], [877, -431, 1, -0.46749094120567597], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 28.04702086962262], [-2, 0, 0, -0.10821085510488573], [447, 937, 1, -0.09477591856393744]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 454, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 22.975792408680952], [-887, 480, 1, 0.2686504428662932], [4, -1, -1, 25.16398956518882], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -29, -1, 0.15153055037693128], [-873, 448, 1, 0.4484721654707033], [-421, -916, -1, 0.2703606041209165], [4, -3, 1, -0.0244372519721974], [-881, 432, -1, 0.46136347194417715], [5, 2, 1, 26.199364306151296], [43, 0, -1, 0.8343864611426876], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -25, -1, 0.041523305687363364], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 4, 1, 25.695789241640046], [4, 0, 0, 2.4156135388573103], [879, -432, 1, -0.4674934356017747], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 28.133031304433935], [-2, 0, 0, -0.10821085510488573], [448, 939, 1, -0.09478225470770697]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 455, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 5, -1, 23.022813278303584], [-889, 481, 1, 0.26866183981419983], [5, -3, -1, 25.211010434811453], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [20, -30, -1, 0.16123788073041279], [-875, 449, 1, 0.4484759586948207], [-422, -918, -1, 0.27037216709354234], [6, -4, 1, -0.015604390528130075], [-883, 433, -1, 0.4613662757710296], [4, 4, 1, 26.263804835355874], [44, -2, -1, 0.8416158005940759], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -24, -1, 0.04502652400240118], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 5, 1, 25.766789144895114], [4, 0, 0, 2.4156135388573103], [881, -433, 1, -0.467495918634414], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 28.223229060797404], [-2, 0, 0, -0.10821085510488573], [449, 941, 1, -0.09478856367865918]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 456, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 3, -1, 23.084386461142703], [-891, 482, 1, 0.2686731864746285], [3, -4, -1, 25.27258361765057], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -28, -1, 0.15240501928634545], [-877, 450, 1, 0.44847973471018077], [-423, -920, -1, 0.2703836790250974], [4, -3, 1, -0.0244372519721974], [-885, 434, -1, 0.46136906687710316], [2, 5, 1, 26.328245364560452], [42, -3, -1, 0.8457353966426178], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-72, -23, -1, 0.048384445418163065], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 25.8371951891783], [4, 0, 0, 2.4156135388573103], [883, -434, 1, -0.4674983903810671], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 28.32843734871712], [-2, 0, 0, -0.10821085510488573], [450, 943, 1, -0.09479484565119795]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 457, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 1, -1, 23.135594652317486], [-893, 483, 1, 0.268684483179562], [1, -5, -1, 25.34358352090564], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -26, -1, 0.1430537396657071], [-879, 451, 1, 0.4484834936336209], [-424, -922, -1, 0.2703951402526745], [6, -4, 1, -0.015604390528130075], [-887, 435, -1, 0.46137184534877024], [0, 4, 1, 26.388804835355874], [43, -1, -1, 0.838087071847881], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -22, -1, 0.04913056842675958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 25.923205623989613], [4, 0, 0, 2.4156135388573103], [885, -435, 1, -0.46750085091850474], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 28.42202086962262], [-2, 0, 0, -0.10821085510488573], [451, 945, 1, -0.09480110079823811]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 458, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 23.225792408680956], [-895, 484, 1, 0.26869573025806814], [-1, -4, -1, 25.413989565188825], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -24, -1, 0.13320716617794356], [-881, 452, 1, 0.4484872355809232], [-425, -924, -1, 0.270406551110406], [4, -3, 1, -0.0244372519721974], [-889, 436, -1, 0.461374611271623], [-2, 3, 1, 26.482388356261374], [44, 1, -1, 0.8307699259410796], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-72, -21, -1, 0.05242774541278806], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 26.009216058800927], [4, 0, 0, 2.4156135388573103], [887, -436, 1, -0.46750330032280285], [2, -2, 0, 0.5087787822945713], [2, -5, 1, 28.482580340418043], [-2, 0, 0, -0.10821085510488573], [452, 947, 1, -0.0948073292912211]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 459, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 23.272813278303587], [-897, 485, 1, 0.26870692803633195], [-3, -5, -1, 25.461010434811456], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -26, -1, 0.1361842073099081], [-883, 453, 1, 0.44849096066682653], [-426, -926, -1, 0.27041791192949555], [6, -4, 1, -0.015604390528130075], [-891, 437, -1, 0.4613773647304822], [-3, 1, 1, 26.58759664418109], [45, -1, -1, 0.8379226556428451], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -20, -1, 0.053302214322202175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 26.099413815164397], [4, 0, 0, 2.4156135388573103], [889, -437, 1, -0.4675057386693505], [2, -2, 0, 0.5087787822945713], [4, -4, 1, 28.54702086962262], [-2, 0, 0, -0.10821085510488573], [453, 949, 1, -0.09481353130013082]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 460, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -4, -1, 23.334386461142707], [-899, 486, 1, 0.2687180768376872], [-4, -3, -1, 25.522583617650575], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -25, -1, 0.126701116319036], [-885, 454, 1, 0.44849466900503815], [-427, -928, -1, 0.2704292230382505], [4, -3, 1, -0.0244372519721974], [-893, 438, -1, 0.461380105809406], [-4, -1, 1, 26.67779440054456], [43, -2, -1, 0.8417836854928741], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -22, -1, 0.04847166952877195], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, -2, 1, 26.108765094785035], [4, 0, 0, 2.4156135388573103], [891, -438, 1, -0.4675081660328578], [2, -2, 0, 0.5087787822945713], [6, -3, 1, 28.598229060797404], [-2, 0, 0, -0.10821085510488573], [454, 951, 1, -0.09481970699350888]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 461, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 23.38559465231749], [-901, 487, 1, 0.26872917698264714], [-5, -1, -1, 25.593583520905643], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -24, -1, 0.1298214016359122], [-887, 455, 1, 0.44849836070824517], [-428, -930, -1, 0.27044048476211363], [6, -4, 1, -0.015604390528130075], [-895, 439, -1, 0.4613828345916985], [-5, -3, 1, 26.72481527016719], [44, 0, -1, 0.8343864611426876], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -20, -1, 0.053302214322202175], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -4, 1, 26.173205623989613], [4, 0, 0, 2.4156135388573103], [893, -439, 1, -0.46751058248736305], [2, -2, 0, 0.5087787822945713], [7, -1, 1, 28.649437251972188], [-2, 0, 0, -0.10821085510488573], [455, 953, 1, -0.09482585653847003]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 462, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -4, -1, 23.47579240868096], [-903, 488, 1, 0.26874022878893566], [-4, 1, -1, 25.663989565188828], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -23, -1, 0.12008936928928869], [-889, 456, 1, 0.448502035888126], [-429, -932, -1, 0.27045169742369385], [4, -3, 1, -0.0244372519721974], [-897, 440, -1, 0.46138555115991786], [-3, -4, 1, 26.78638845300631], [45, -2, -1, 0.8414553621977239], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -21, -1, 0.04992298403902878], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -5, 1, 26.23764615319419], [4, 0, 0, 2.4156135388573103], [895, -440, 1, -0.4675129881062408], [2, -2, 0, 0.5087787822945713], [5, 0, 1, 28.67202086962262], [-2, 0, 0, -0.10821085510488573], [456, 955, 1, -0.09483198010071715]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 463, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -5, -1, 23.52281327830359], [-905, 489, 1, 0.268751232571517], [-5, 3, -1, 25.71101043481146], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [25, -21, -1, 0.11601656628005023], [-891, 457, 1, 0.4485056946553617], [-430, -934, -1, 0.2704628613427973], [6, -4, 1, -0.015604390528130075], [-899, 441, -1, 0.46138825559588503], [-1, -5, 1, 26.857388356261378], [43, -3, -1, 0.845472330860548], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-67, -19, -1, 0.053616128990259554], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 26.298205623989613], [4, 0, 0, 2.4156135388573103], [897, -441, 1, -0.467515382962209], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 28.723229060797404], [-2, 0, 0, -0.10821085510488573], [457, 957, 1, -0.09483807784455614]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 464, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -3, -1, 23.58438646114271], [-907, 490, 1, 0.2687621886426262], [-3, 4, -1, 25.77258361765058], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -19, -1, 0.11139774992719426], [-893, 458, 1, 0.4485093371196472], [-431, -936, -1, 0.2704739768364575], [4, -3, 1, -0.0244372519721974], [-901, 442, -1, 0.46139094798069163], [0, -3, 1, 26.888804835355877], [44, -1, -1, 0.8380029963442954], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -21, -1, 0.04992298403902878], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 26.391789144895114], [4, 0, 0, 2.4156135388573103], [899, -442, 1, -0.46751776712733645], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 28.82843734871712], [-2, 0, 0, -0.10821085510488573], [458, 959, 1, -0.09484414993291067]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 465, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -1, -1, 23.635594652317494], [-909, 491, 1, 0.26877309731179805], [-1, 5, -1, 25.843583520905646], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -21, -1, 0.12259206218452386], [-895, 459, 1, 0.4485129633897018], [-432, -938, -1, 0.2704850442189656], [6, -4, 1, -0.015604390528130075], [-903, 443, -1, 0.4613936283947085], [-1, -5, 1, 26.857388356261378], [42, -2, -1, 0.8419595472368715], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -22, -1, 0.04913056842675958], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -2, 1, 26.474413815164397], [4, 0, 0, 2.4156135388573103], [901, -443, 1, -0.46752014067304976], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 28.92202086962262], [-2, 0, 0, -0.10821085510488573], [459, 961, 1, -0.0948501965273365]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 466, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 1, -1, 23.725792408680963], [-911, 492, 1, 0.2687839588858967], [1, 4, -1, 25.91398956518883], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -22, -1, 0.13352201234110564], [-897, 460, 1, 0.4485165735732804], [-433, -940, -1, 0.27049606380189967], [4, -3, 1, -0.0244372519721974], [-905, 444, -1, 0.46139629691759304], [0, -3, 1, 26.888804835355877], [43, 0, -1, 0.8343864611426874], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -24, -1, 0.044319958419735926], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 0, 1, 26.548205623989613], [4, 0, 0, 2.4156135388573103], [903, -444, 1, -0.4675225036701409], [2, -2, 0, 0.5087787822945713], [-2, 5, 1, 28.982580340418043], [-2, 0, 0, -0.10821085510488573], [460, 963, 1, -0.09485621778803605]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 467, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 3, -1, 23.772813278303595], [-913, 493, 1, 0.26879477366914406], [3, 5, -1, 25.961010434811463], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -20, -1, 0.12224831554172814], [-899, 461, 1, 0.44852016777718423], [-434, -942, -1, 0.27050703589415415], [6, -4, 1, -0.015604390528130075], [-907, 445, -1, 0.46139895362829775], [1, -5, 1, 26.920221314450377], [44, -2, -1, 0.8416158005940758], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-71, -23, -1, 0.047735527955560506], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 26.62199743281483], [4, 0, 0, 2.4156135388573103], [905, -445, 1, -0.46752485618877393], [2, -2, 0, 0.5087787822945713], [-4, 4, 1, 29.04702086962262], [-2, 0, 0, -0.10821085510488573], [461, 965, 1, -0.09486221387387238]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 468, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 4, -1, 23.834386461142714], [-915, 494, 1, 0.2688055419631482], [4, 3, -1, 26.022583617650582], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -21, -1, 0.119226749318439], [-901, 462, 1, 0.44852374610727097], [-435, -944, -1, 0.2705179608019685], [4, -3, 1, -0.0244372519721974], [-909, 446, -1, 0.46140159860507757], [2, -3, 1, 26.982388356261374], [42, -3, -1, 0.8457353966426177], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-72, -25, -1, 0.04440570999715571], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 4, 1, 26.695789241640046], [4, 0, 0, 2.4156135388573103], [907, -446, 1, -0.46752719829849204], [2, -2, 0, 0.5087787822945713], [-5, 2, 1, 29.1114613988272], [-2, 0, 0, -0.10821085510488573], [462, 967, 1, -0.09486818494238317]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 469, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 3, -1, 23.885594652317497], [-917, 495, 1, 0.26881626406693165], [5, 1, -1, 26.09358352090565], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -20, -1, 0.10917860171598857], [-903, 463, 1, 0.44852730866846563], [-436, -946, -1, 0.27052883882895556], [6, -4, 1, -0.015604390528130075], [-911, 447, -1, 0.4614042319254978], [4, -2, 1, 27.065013026530657], [43, -1, -1, 0.8380870718478809], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -26, -1, 0.04099377178633128], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [1, 5, 1, 26.766789144895114], [4, 0, 0, 2.4156135388573103], [909, -447, 1, -0.4675295300682244], [2, -2, 0, 0.5087787822945713], [-3, 1, 1, 29.120812678447837], [-2, 0, 0, -0.10821085510488573], [463, 969, 1, -0.09487413114979451]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 470, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 23.975792408680967], [-919, 496, 1, 0.2688269402769585], [4, -1, -1, 26.163989565188835], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [25, -18, -1, 0.10413775512045872], [-905, 464, 1, 0.44853085556477024], [-437, -948, -1, 0.2705396702761299], [4, -3, 1, -0.0244372519721974], [-913, 448, -1, 0.46140685366644163], [5, 0, 1, 27.138804835355874], [44, 1, -1, 0.8307699259410795], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -25, -1, 0.04152330568736336], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-1, 4, 1, 26.8371951891783], [4, 0, 0, 2.4156135388573103], [911, -448, 1, -0.4675318515662929], [2, -2, 0, 0.5087787822945713], [-4, -1, 1, 29.211010434811307], [-2, 0, 0, -0.10821085510488573], [464, 971, 1, -0.09488005265103469]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [-2, 1], "using": [-2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 471, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 24.06180284349228], [-921, 497, 1, 0.26883757088716237], [5, -3, -1, 26.211010434811467], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -17, -1, 0.10612483049716738], [-907, 465, 1, 0.44853438689927455], [-438, -950, -1, 0.2705504554419356], [6, -4, 1, -0.015604390528130075], [-915, 449, -1, 0.4614094639041176], [4, 2, 1, 27.21259664418109], [45, -1, -1, 0.837922655642845], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-66, -24, -1, 0.042086351486154666], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 26.923205623989613], [4, 0, 0, 2.4156135388573103], [913, -449, 1, -0.4675341628604188], [2, -2, 0, 0.5087787822945713], [-3, -3, 1, 29.29702086962262], [-2, 0, 0, -0.10821085510488573], [465, 973, 1, -0.09488594959974733]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 472, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 24.147813278303595], [-923, 498, 1, 0.2688481561889726], [3, -4, -1, 26.272583617650586], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -19, -1, 0.11819663462169437], [-909, 466, 1, 0.4485379027741657], [-439, -952, -1, 0.2705611946222731], [4, -3, 1, -0.0244372519721974], [-917, 450, -1, 0.461412062714067], [2, 3, 1, 27.295221314450373], [43, -2, -1, 0.841783685492874], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-64, -25, -1, 0.03832592712530551], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 27.009216058800927], [4, 0, 0, 2.4156135388573103], [915, -450, 1, -0.4675364640177295], [2, -2, 0, 0.5087787822945713], [-1, -4, 1, 29.383031304433935], [-2, 0, 0, -0.10821085510488573], [466, 975, 1, -0.09489182214830497]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 473, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 24.18680284349228], [-925, 499, 1, 0.26885869647134153], [1, -5, -1, 26.343583520905653], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -17, -1, 0.11312971842064963], [-911, 467, 1, 0.44854140329073805], [-440, -954, -1, 0.27057188811052685], [6, -4, 1, -0.015604390528130075], [-919, 451, -1, 0.461414650171171], [0, 4, 1, 27.388804835355874], [44, 0, -1, 0.8343864611426874], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -26, -1, 0.03439782420591111], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 27.099413815164397], [4, 0, 0, 2.4156135388573103], [917, -451, 1, -0.46753875510476484], [2, -2, 0, 0.5087787822945713], [0, -6, 1, 29.42202086962262], [-2, 0, 0, -0.10821085510488573], [467, 977, 1, -0.09489767044782192]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 474, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 24.225792408680967], [-927, 500, 1, 0.26886919202077025], [-1, -4, -1, 26.41398956518884], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [19, -18, -1, 0.12552096358319562], [-913, 468, 1, 0.448544888549403], [-441, -956, -1, 0.2705825361975917], [4, -3, 1, -0.0244372519721974], [-921, 452, -1, 0.4614172263496581], [-2, 3, 1, 27.482388356261374], [45, -2, -1, 0.8414553621977238], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -28, -1, 0.029106373091205624], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 27.204622103084112], [4, 0, 0, 2.4156135388573103], [919, -452, 1, -0.46754103618748344], [2, -2, 0, 0.5087787822945713], [1, -4, 1, 29.461010434811307], [-2, 0, 0, -0.10821085510488573], [468, 979, 1, -0.09490349464816752]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 475, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [5, -3, -1, 24.272813278303598], [-929, 501, 1, 0.2688796431213349], [-3, -5, -1, 26.46101043481147], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [17, -19, -1, 0.13865426307997952], [-915, 469, 1, 0.4485483586496986], [-442, -958, -1, 0.27059313917189903], [6, -4, 1, -0.015604390528130075], [-923, 453, -1, 0.46141979132311123], [-3, 1, 1, 27.58759664418109], [43, -3, -1, 0.8454723308605478], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -29, -1, 0.02488584187543253], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 27.298205623989613], [4, 0, 0, 2.4156135388573103], [921, -453, 1, -0.4675433073312693], [2, -2, 0, 0.5087787822945713], [2, -6, 1, 29.473229060797404], [-2, 0, 0, -0.10821085510488573], [469, 981, 1, -0.09490929489797868]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 476, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -2, -1, 24.28038636439778], [-931, 502, 1, 0.26889005005471195], [-4, -3, -1, 26.52258361765059], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [18, -21, -1, 0.1420400276220109], [-917, 470, 1, 0.448551813690299], [-443, -960, -1, 0.2706036973194433], [4, -3, 1, -0.0244372519721974], [-925, 454, -1, 0.46142234516447445], [-4, -1, 1, 27.67779440054456], [44, -1, -1, 0.8380029963442953], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -30, -1, 0.02048792348848786], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 27.391789144895114], [4, 0, 0, 2.4156135388573103], [923, -454, 1, -0.4675455686009378], [2, -2, 0, 0.5087787822945713], [4, -7, 1, 29.504645539891904], [-2, 0, 0, -0.10821085510488573], [470, 983, 1, -0.09491507134467261]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 477, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -3, -1, 24.385594652317497], [-933, 503, 1, 0.2689004131002039], [-5, -1, -1, 26.593583520905657], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [19, -23, -1, 0.14493343505537193], [-919, 471, 1, 0.4485552537690239], [-444, -962, -1, 0.27061421092380716], [6, -4, 1, -0.015604390528130075], [-927, 455, -1, 0.4614248879460601], [-3, -3, 1, 27.763804835355874], [42, -2, -1, 0.8419595472368714], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -28, -1, 0.023803171888437905], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -2, 1, 27.474413815164397], [4, 0, 0, 2.4156135388573103], [925, -455, 1, -0.46754782006074214], [2, -2, 0, 0.5087787822945713], [6, -6, 1, 29.54702086962262], [-2, 0, 0, -0.10821085510488573], [471, 985, 1, -0.09492082413445926]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 478, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, -5, -1, 24.43680284349228], [-935, 504, 1, 0.2689107325347636], [-4, 1, -1, 26.663989565188842], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [18, -25, -1, 0.15550504815136565], [-921, 472, 1, 0.4485586789828474], [-445, -964, -1, 0.27062468026618725], [4, -3, 1, -0.0244372519721974], [-929, 456, -1, 0.46142741973955576], [-2, -5, 1, 27.828245364560452], [43, 0, -1, 0.8343864611426873], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -27, -1, 0.028253897850301777], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [3, 0, 1, 27.548205623989613], [4, 0, 0, 2.4156135388573103], [927, -456, 1, -0.4675500617743791], [2, -2, 0, 0.5087787822945713], [7, -4, 1, 29.589396199353338], [-2, 0, 0, -0.10821085510488573], [472, 987, 1, -0.09492655341235381]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, 2], "using": [1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 479, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, -4, -1, 24.510594652317497], [-937, 505, 1, 0.26892100863301943], [-5, 3, -1, 26.711010434811474], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [19, -27, -1, 0.15722642092225764], [-923, 473, 1, 0.44856208942790765], [-446, -966, -1, 0.27063510562541904], [6, -4, 1, -0.015604390528130075], [-931, 457, -1, 0.4614299406160304], [0, -4, 1, 27.888804835355874], [44, -2, -1, 0.8416158005940757], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -25, -1, 0.03181140370104779], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 27.62199743281483], [4, 0, 0, 2.4156135388573103], [929, -457, 1, -0.4675522938049952], [2, -2, 0, 0.5087787822945713], [8, -2, 1, 29.63303130443394], [-2, 0, 0, -0.10821085510488573], [473, 989, 1, -0.09493225932218868]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 480, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -2, -1, 24.59321932258678], [-939, 506, 1, 0.26893124166729954], [-3, 4, -1, 26.772583617650593], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [20, -25, -1, 0.1474330453745508], [-925, 474, 1, 0.44856548519951556], [-447, -968, -1, 0.27064548727800136], [4, -3, 1, -0.0244372519721974], [-933, 458, -1, 0.46143245064594174], [2, -3, 1, 27.982388356261374], [42, -3, -1, 0.8457353966426175], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -23, -1, 0.037509183945549245], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 27.704622103084112], [4, 0, 0, 2.4156135388573103], [931, -458, 1, -0.46755451621519273], [2, -2, 0, 0.5087787822945713], [6, -1, 1, 29.645736641266996], [-2, 0, 0, -0.10821085510488573], [474, 991, 1, -0.09493794200662556]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 481, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 0, -1, 24.68680284349228], [-941, 507, 1, 0.2689414319076557], [-1, 5, -1, 26.84358352090566], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -26, -1, 0.14305373966570709], [-927, 475, 1, 0.4485688663921636], [-448, -970, -1, 0.2706558254981214], [6, -4, 1, -0.015604390528130075], [-935, 459, -1, 0.4614349498991425], [4, -4, 1, 28.013804835355874], [43, -1, -1, 0.8380870718478808], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-59, -21, -1, 0.043171975460733675], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 27.798205623989613], [4, 0, 0, 2.4156135388573103], [933, -459, 1, -0.46755672906703544], [2, -2, 0, 0.5087787822945713], [5, 1, 1, 29.703437348717124], [-2, 0, 0, -0.10821085510488573], [475, 993, 1, -0.09494360160716747]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, -1], "using": [2, -1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 482, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 2, -1, 24.78038636439778], [-943, 508, 1, 0.2689515796218869], [1, 4, -1, 26.913989565188846], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [20, -27, -1, 0.15335235894984223], [-929, 476, 1, 0.44857223309953465], [-449, -972, -1, 0.270666120557678], [4, -3, 1, -0.0244372519721974], [-937, 460, -1, 0.4614374384448868], [2, -3, 1, 27.982388356261374], [44, 1, -1, 0.8307699259410793], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-57, -22, -1, 0.03897042908885002], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 5, 1, 27.858765094785035], [4, 0, 0, 2.4156135388573103], [935, -460, 1, -0.4675589324220544], [2, -2, 0, 0.5087787822945713], [3, 2, 1, 29.76560439052812], [-2, 0, 0, -0.10821085510488573], [476, 995, 1, -0.09494923826417027]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 483, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-2, 4, -1, 24.863011034667064], [-945, 509, 1, 0.26896168507556345], [3, 5, -1, 26.961010434811477], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [21, -25, -1, 0.1436262369917741], [-931, 477, 1, 0.44857558541451087], [-450, -974, -1, 0.2706763727263064], [6, -4, 1, -0.015604390528130075], [-939, 461, -1, 0.4614399163518368], [4, -2, 1, 28.065013026530657], [45, -1, -1, 0.8379226556428448], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-56, -20, -1, 0.043001024996839846], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 3, 1, 27.923205623989613], [4, 0, 0, 2.4156135388573103], [937, -461, 1, -0.4675611263412536], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 29.870812678447837], [-2, 0, 0, -0.10821085510488573], [477, 997, 1, -0.09495485211685442]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 484, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [0, 3, -1, 24.93680284349228], [-947, 510, 1, 0.26897174853204936], [4, 3, -1, 27.022583617650596], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -23, -1, 0.13335759613606968], [-933, 478, 1, 0.4485789234291818], [-451, -976, -1, 0.2706865822714007], [4, -3, 1, -0.0244372519721974], [-941, 462, -1, 0.4614423836880685], [3, 0, 1, 28.138804835355874], [43, -2, -1, 0.8417836854928739], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-58, -19, -1, 0.04721141917032871], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, 1, 1, 28.009216058800927], [4, 0, 0, 2.4156135388573103], [939, -462, 1, -0.46756331088511577], [2, -2, 0, 0.5087787822945713], [3, 4, 1, 29.819604487273054], [-2, 0, 0, -0.10821085510488573], [478, 999, 1, -0.0949604433033164]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 485, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, 5, -1, 24.90538636439778], [-949, 511, 1, 0.2689817702525255], [5, 1, -1, 27.093583520905664], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -24, -1, 0.12982140163591216], [-935, 479, 1, 0.4485822472348531], [-452, -978, -1, 0.27069674945813804], [6, -4, 1, -0.015604390528130075], [-943, 463, -1, 0.46144484052107876], [4, -2, 1, 28.065013026530657], [44, 0, -1, 0.8343864611426873], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-60, -18, -1, 0.05120819117478343], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, -1, 1, 28.099413815164397], [4, 0, 0, 2.4156135388573103], [941, -463, 1, -0.4675654861136079], [2, -2, 0, 0.5087787822945713], [1, 3, 1, 29.870812678447837], [-2, 0, 0, -0.10821085510488573], [479, 1001, 1, -0.09496601196053997]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, -2], "using": [-1, -2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 486, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, 4, -1, 24.975792408680967], [-951, 512, 1, 0.26899175049601226], [4, -1, -1, 27.16398956518885], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -23, -1, 0.12008936928928866], [-937, 480, 1, 0.44858555692205504], [-453, -980, -1, 0.2707068745495009], [4, -3, 1, -0.0244372519721974], [-945, 464, -1, 0.4614472869177907], [5, 0, 1, 28.138804835355874], [45, -2, -1, 0.8414553621977237], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -19, -1, 0.05026784794802779], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 28.204622103084112], [4, 0, 0, 2.4156135388573103], [943, -464, 1, -0.46756765208618645], [2, -2, 0, 0.5087787822945713], [-1, 4, 1, 29.961010434811307], [-2, 0, 0, -0.10821085510488573], [480, 1003, 1, -0.09497155822440748]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 487, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, 3, -1, 25.06180284349228], [-953, 513, 1, 0.2690016895193917], [5, -3, -1, 27.21101043481148], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [27, -25, -1, 0.12370307340878492], [-939, 481, 1, 0.4485888525805501], [-454, -982, -1, 0.2707169578063], [6, -4, 1, -0.015604390528130075], [-947, 465, -1, 0.46144972294456027], [4, 2, 1, 28.21259664418109], [43, -3, -1, 0.8454723308605477], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -21, -1, 0.0463867895388712], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, -4, 1, 28.298205623989613], [4, 0, 0, 2.4156135388573103], [945, -465, 1, -0.4675698088618031], [2, -2, 0, 0.5087787822945713], [-3, 3, 1, 30.04702086962262], [-2, 0, 0, -0.10821085510488573], [481, 1005, 1, -0.09497708222971077]], "moves": [{"seat": 3, "got": [1, -2], "using": [1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, -2], "using": [-1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 488, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, 1, -1, 25.147813278303595], [-955, 514, 1, 0.2690115875774296], [3, -4, -1, 27.2725836176506], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [26, -23, -1, 0.12008936928928866], [-941, 482, 1, 0.4485921342993417], [-455, -984, -1, 0.27072699948719675], [4, -3, 1, -0.0244372519721974], [-949, 466, -1, 0.46145214866718215], [2, 3, 1, 28.295221314450373], [44, -1, -1, 0.8380029963442952], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -23, -1, 0.04105823308013007], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, -3, 1, 28.391789144895114], [4, 0, 0, 2.4156135388573103], [947, -466, 1, -0.46757195649891004], [2, -2, 0, 0.5087787822945713], [-4, 1, 1, 30.133031304433935], [-2, 0, 0, -0.10821085510488573], [482, 1007, 1, -0.09498258411016214]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 489, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [6, 0, -1, 25.18680284349228], [-957, 515, 1, 0.2690214449227972], [1, -5, -1, 27.343583520905668], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [24, -24, -1, 0.12982140163591216], [-943, 483, 1, 0.44859540216668187], [-456, -986, -1, 0.270736999848725], [6, -4, 1, -0.015604390528130075], [-951, 467, -1, 0.46145456415089536], [0, 4, 1, 28.388804835355874], [42, -2, -1, 0.8419595472368713], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-61, -25, -1, 0.03569057058356356], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, -4, 1, 28.423205623989613], [4, 0, 0, 2.4156135388573103], [949, -467, 1, -0.467574095055465], [2, -2, 0, 0.5087787822945713], [-3, -1, 1, 30.223229060797404], [-2, 0, 0, -0.10821085510488573], [483, 1009, 1, -0.0949880639984052]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, 1], "using": [-2, 1]}, {"seat": 9, "got": [-1, 2], "using": [-1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, -1], "using": [-2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [2, 1], "using": [2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [1, -2], "using": [1, -2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 490, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [4, -1, -1, 25.225792408680967], [-959, 516, 1, 0.2690312618060928], [-1, -4, -1, 27.413989565188853], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -22, -1, 0.12628520713575464], [-945, 484, 1, 0.44859865627007944], [-457, -988, -1, 0.2707469591453133], [4, -3, 1, -0.0244372519721974], [-953, 468, -1, 0.4614569694603896], [-2, 3, 1, 28.482388356261374], [43, 0, -1, 0.8343864611426872], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-62, -27, -1, 0.03222734582226287], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [6, -3, 1, 28.474413815164397], [4, 0, 0, 2.4156135388573103], [951, -468, 1, -0.4675762245889368], [2, -2, 0, 0.5087787822945713], [-2, -3, 1, 30.32843734871712], [-2, 0, 0, -0.10821085510488573], [484, 1011, 1, -0.09499352202602548]], "moves": [{"seat": 3, "got": [-1, -2], "using": [-1, -2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-2, -1], "using": [-2, -1]}, {"seat": 9, "got": [-1, -2], "using": [-1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [1, 2], "using": [1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 491, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [3, -3, -1, 25.31180284349228], [-961, 517, 1, 0.2690410384758627], [-3, -5, -1, 27.461010434811485], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [22, -24, -1, 0.13673682641924317], [-947, 485, 1, 0.44860189669630746], [-458, -990, -1, 0.2707568776293061], [6, -4, 1, -0.015604390528130075], [-955, 469, -1, 0.4614593646598106], [-3, 1, 1, 28.58759664418109], [44, -2, -1, 0.8416158005940756], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-63, -25, -1, 0.03747154976722683], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [7, -1, 1, 28.52562200633918], [4, 0, 0, 2.4156135388573103], [953, -469, 1, -0.46757834515631025], [2, -2, 0, 0.5087787822945713], [0, -4, 1, 30.42202086962262], [-2, 0, 0, -0.10821085510488573], [485, 1013, 1, -0.09499895832356092]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, -2], "using": [-1, -2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, 1], "using": [2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 492, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [1, -4, -1, 25.397813278303595], [-963, 518, 1, 0.2690507751786223], [-4, -3, -1, 27.522583617650604], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [23, -26, -1, 0.13955343398253567], [-949, 486, 1, 0.4486051235314112], [-459, -992, -1, 0.2707667555509851], [4, -3, 1, -0.0244372519721974], [-957, 470, -1, 0.4614617498127661], [-4, -1, 1, 28.67779440054456], [42, -3, -1, 0.8457353966426174], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-65, -24, -1, 0.041301376627689276], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [5, 0, 1, 28.548205623989613], [4, 0, 0, 2.4156135388573103], [955, -470, 1, -0.46758045681409144], [2, -2, 0, 0.5087787822945713], [2, -3, 1, 30.51560439052812], [-2, 0, 0, -0.10821085510488573], [486, 1015, 1, -0.09500437302051226]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, -2], "using": [1, -2]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-2, 1], "using": [-2, 1]}, {"seat": 28, "got": [-1, 2], "using": [-1, 2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 493, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-1, -3, -1, 25.488011034667064], [-965, 519, 1, 0.26906047215887696], [-5, -1, -1, 27.59358352090567], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [25, -25, -1, 0.12982140163591216], [-951, 487, 1, 0.4486083368607159], [-460, -994, -1, 0.27077659315859043], [6, -4, 1, -0.015604390528130075], [-959, 471, -1, 0.4614641249823313], [-3, -3, 1, 28.763804835355874], [43, -1, -1, 0.8380870718478807], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-67, -23, -1, 0.044965801020573855], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [4, 2, 1, 28.62199743281483], [4, 0, 0, 2.4156135388573103], [957, -471, 1, -0.4675825596183125], [2, -2, 0, 0.5087787822945713], [4, -4, 1, 30.54702086962262], [-2, 0, 0, -0.10821085510488573], [487, 1017, 1, -0.0950097662453535]], "moves": [{"seat": 3, "got": [-2, -1], "using": [-2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, 2], "using": [1, 2]}, {"seat": 9, "got": [2, -1], "using": [2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 494, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, -4, -1, 25.539219225841848], [-967, 520, 1, 0.2690701296591421], [-4, 1, -1, 27.663989565188857], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [27, -26, -1, 0.1268188344507436], [-953, 488, 1, 0.44861153676883375], [-461, -996, -1, 0.2707863906983414], [4, -3, 1, -0.0244372519721974], [-961, 472, -1, 0.4614664902310547], [-1, -4, 1, 28.849815270167188], [44, 1, -1, 0.8307699259410792], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -25, -1, 0.04152330568736334], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [2, 3, 1, 28.704622103084112], [4, 0, 0, 2.4156135388573103], [959, -472, 1, -0.4675846536245369], [2, -2, 0, 0.5087787822945713], [3, -2, 1, 30.57843734871712], [-2, 0, 0, -0.10821085510488573], [488, 1019, 1, -0.09501513812554173]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [-1, 2], "using": [-1, 2]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, -1], "using": [2, -1]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-1, 2], "using": [-1, 2]}, {"seat": 28, "got": [-2, 1], "using": [-2, 1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [2, -1], "using": [2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 495, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, -2, -1, 25.613011034667064], [-969, 521, 1, 0.26907974791996364], [-5, 3, -1, 27.711010434811488], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [28, -24, -1, 0.11760277564981347], [-955, 489, 1, 0.44861472333967195], [-462, -998, -1, 0.2707961484144567], [6, -4, 1, -0.015604390528130075], [-963, 473, -1, 0.461468845620963], [1, -5, 1, 28.920221314450373], [45, -1, -1, 0.8379226556428447], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -23, -1, 0.046386789538871195], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [0, 4, 1, 28.798205623989613], [4, 0, 0, 2.4156135388573103], [961, -473, 1, -0.4675867388878639], [2, -2, 0, 0.5087787822945713], [5, -3, 1, 30.586010434811303], [-2, 0, 0, -0.10821085510488573], [489, 1021, 1, -0.09502048878752756]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, 2], "using": [1, 2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [1, 2], "using": [1, 2]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 496, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 0, -1, 25.68680284349228], [-971, 522, 1, 0.2690893271799379], [-3, 4, -1, 27.772583617650607], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -22, -1, 0.10811225289489307], [-957, 490, 1, 0.4486178966564395], [-463, -1000, -1, 0.2708058665491752], [4, -3, 1, -0.0244372519721974], [-965, 474, -1, 0.46147119121356733], [2, -3, 1, 28.98238835626137], [43, -2, -1, 0.8417836854928737], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -21, -1, 0.04992298403902876], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, 3, 1, 28.891789144895114], [4, 0, 0, 2.4156135388573103], [963, -474, 1, -0.4675888154629338], [2, -2, 0, 0.5087787822945713], [4, -1, 1, 30.633031304433935], [-2, 0, 0, -0.10821085510488573], [490, 1023, 1, -0.09502581835676467]], "moves": [{"seat": 3, "got": [-2, 1], "using": [-2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [-2, -1], "using": [-2, -1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [1, 2], "using": [1, 2]}, {"seat": 28, "got": [-1, -2], "using": [-1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 497, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-5, 1, -1, 25.71821932258678], [-973, 523, 1, 0.2690988676757313], [-1, 5, -1, 27.843583520905675], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [27, -23, -1, 0.11711606480285422], [-959, 491, 1, 0.44862105680165487], [-464, -1002, -1, 0.2708155453427755], [6, -4, 1, -0.015604390528130075], [-967, 475, -1, 0.46147352706986805], [4, -2, 1, 29.065013026530654], [44, 0, -1, 0.8343864611426872], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-67, -19, -1, 0.05361612899025954], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-3, 1, 1, 28.99699743281483], [4, 0, 0, 2.4156135388573103], [965, -475, 1, -0.4675908834039325], [2, -2, 0, 0.5087787822945713], [3, 1, 1, 30.723229060797404], [-2, 0, 0, -0.10821085510488573], [491, 1025, 1, -0.09503112695771987]], "moves": [{"seat": 3, "got": [-1, 2], "using": [-1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, -1], "using": [2, -1]}, {"seat": 9, "got": [2, 1], "using": [2, 1]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-1, 2], "using": [-1, 2]}, {"seat": 15, "got": [1, -2], "using": [1, -2]}, {"seat": 23, "got": [-2, -1], "using": [-2, -1]}, {"seat": 28, "got": [-2, -1], "using": [-2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 498, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-6, 3, -1, 25.760594652317497], [-975, 524, 1, 0.2691083696420999], [1, 4, -1, 27.91398956518886], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [29, -22, -1, 0.10811225289489307], [-961, 492, 1, 0.44862420385715285], [-465, -1004, -1, 0.27082518503359604], [4, -3, 1, -0.0244372519721974], [-969, 476, -1, 0.46147585325035995], [3, 0, 1, 29.13880483535587], [45, -2, -1, 0.8414553621977235], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-69, -20, -1, 0.05269359417960758], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-5, 0, 1, 29.048205623989613], [4, 0, 0, 2.4156135388573103], [967, -476, 1, -0.46759294276459623], [2, -2, 0, 0.5087787822945713], [2, 3, 1, 30.82843734871712], [-2, 0, 0, -0.10821085510488573], [492, 1027, 1, -0.09503641471388265]], "moves": [{"seat": 3, "got": [2, 1], "using": [2, 1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [2, 1], "using": [2, 1]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [2, 1], "using": [2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [-1, -2], "using": [-1, -2]}, {"seat": 28, "got": [1, -2], "using": [1, -2]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, 1], "using": [-2, 1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 499, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-4, 4, -1, 25.81180284349228], [-977, 525, 1, 0.26911783331190825], [3, 5, -1, 27.96101043481149], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [30, -24, -1, 0.11220975789727353], [-963, 493, 1, 0.44862733790409176], [-466, -1006, -1, 0.2708347858580543], [6, -4, 1, -0.015604390528130075], [-971, 477, -1, 0.4614781698150381], [5, 1, 1, 29.17022131445037], [43, -3, -1, 0.8454723308605476], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-70, -22, -1, 0.049130568426759565], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-4, -2, 1, 29.12199743281483], [4, 0, 0, 2.4156135388573103], [969, -477, 1, -0.46759499359821627], [2, -2, 0, 0.5087787822945713], [0, 4, 1, 30.92202086962262], [-2, 0, 0, -0.10821085510488573], [493, 1029, 1, -0.09504168174777486]], "moves": [{"seat": 3, "got": [1, 2], "using": [1, 2]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [-2, 1], "using": [-2, 1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [1, 2], "using": [1, 2]}, {"seat": 23, "got": [2, 1], "using": [2, 1]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-1, 2], "using": [-1, 2]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}, {"round": 500, "state": [[1, 40, 0, -0.0008433566798992879], [1, 40, 0, 0.02928898961121865], [-3, 6, -1, 25.863011034667064], [-979, 526, 1, 0.2691272589161491], [4, 3, -1, 28.02258361765061], [6, 3, 0, 1.9761968281115627], [4, 0, 0, 2.063197156507744], [38, -6, 0, -0.058190997386388194], [31, -26, -1, 0.1158960856497016], [-965, 494, 1, 0.44863045902296045], [-467, -1008, -1, 0.2708443480506665], [4, -3, 1, -0.0244372519721974], [-973, 478, -1, 0.46148047682340226], [3, 2, 1, 29.232388356261367], [44, -1, -1, 0.8380029963442951], [38, -6, 0, 0.16797591157088929], [3, -25, 0, 0.004924652143147704], [3, -25, 0, 0.023829105559887015], [-19, -19, 0, 2.0917329654327705], [-19, -19, 0, -0.06180284349225656], [-1, 2, 0, 3.460277007085594], [6, 3, 0, 4.442164186518582], [-68, -21, -1, 0.04992298403902876], [-19, -19, 0, 0.06180284349225655], [-39, -4, 0, 0.01700033016326223], [-39, -4, 0, 0.01144530276805715], [1, 0, 0, 0.5314164790945006], [-2, -3, 1, 29.204622103084112], [4, 0, 0, 2.4156135388573103], [971, -478, 1, -0.46759703595764346], [2, -2, 0, 0.5087787822945713], [-1, 6, 1, 30.94830509797825], [-2, 0, 0, -0.10821085510488573], [494, 1031, 1, -0.09504692818095999]], "moves": [{"seat": 3, "got": [2, -1], "using": [2, -1]}, {"seat": 4, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 5, "got": [1, -2], "using": [1, -2]}, {"seat": 9, "got": [1, -2], "using": [1, -2]}, {"seat": 10, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 11, "got": "", "error": "process already exited", "using": [-1, -2]}, {"seat": 12, "got": [2, -1], "using": [2, -1]}, {"seat": 13, "got": "", "error": "process already exited", "using": [-2, 1]}, {"seat": 14, "got": [-2, 1], "using": [-2, 1]}, {"seat": 15, "got": [-2, -1], "using": [-2, -1]}, {"seat": 23, "got": [1, -2], "using": [1, -2]}, {"seat": 28, "got": [2, -1], "using": [2, -1]}, {"seat": 30, "got": "", "error": "process already exited", "using": [2, -1]}, {"seat": 32, "got": [-2, -1], "using": [-2, -1]}, {"seat": 34, "got": [1, 2], "using": [1, 2]}]}]} \ No newline at end of file