summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-08-07 14:37:36 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-08-07 14:37:36 +0200
commitd4539771bca817add851ef484de4773cbbe43f79 (patch)
tree371556db78894f666425d8d28a67b23f89aed196
parent096091af6a3a4d16da133037321c81a51e1bb4b2 (diff)
Assertions to test that my lava logic is right
-rw-r--r--Cargo.toml8
-rw-r--r--src/game.rs64
-rw-r--r--src/strategy.rs8
-rw-r--r--src/strategy/mcts.rs10
-rw-r--r--src/strategy/minimax.rs2
-rw-r--r--tests/official-runner-matching.rs13
-rw-r--r--tests/replays/2019.06.28.21.39.08/A-init.json1
-rw-r--r--tests/replays/2019.06.28.21.39.08/A-log.csv346
-rw-r--r--tests/replays/2019.06.28.21.39.08/B-init.json1
-rw-r--r--tests/replays/2019.06.28.21.39.08/B-log.csv346
-rw-r--r--tests/replays/2019.07.08.21.54.09/A-init.json1
-rw-r--r--tests/replays/2019.07.08.21.54.09/A-log.csv334
-rw-r--r--tests/replays/2019.07.08.21.54.09/B-init.json1
-rw-r--r--tests/replays/2019.07.08.21.54.09/B-log.csv334
-rw-r--r--tests/replays/2019.08.07.14.25.37/A-init.json1
-rw-r--r--tests/replays/2019.08.07.14.25.37/A-log.csv274
-rw-r--r--tests/replays/2019.08.07.14.25.37/B-init.json1
-rw-r--r--tests/replays/2019.08.07.14.25.37/B-log.csv274
18 files changed, 619 insertions, 1400 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a0de929..4e5f811 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,7 +11,7 @@ num-traits = "0.2.6"
arrayvec = "0.4.10"
fnv = "1.0.6"
-# [profile.release]
-# debug = true
-# debug-assertions = true
-# overflow-checks = true \ No newline at end of file
+[profile.release]
+debug = true
+debug-assertions = true
+overflow-checks = true \ No newline at end of file
diff --git a/src/game.rs b/src/game.rs
index c47d4b8..5f6ab33 100644
--- a/src/game.rs
+++ b/src/game.rs
@@ -178,8 +178,53 @@ impl GameBoard {
.collect();
for cell in json.map.iter().flatten() {
+ let point = Point2d::new(cell.x, cell.y);
+
+ if cfg!(debug_assertions) {
+ // This checks if my lava map is the same as the game
+ // engine's lava map. It's off by one because the game
+ // engine will update its one at the beginning of
+ // processing the round.
+ let lava = LAVA_MAP[self.round as usize];
+
+ let lava_at = lava.at(point);
+ // NB: Map hasn't been updated yet, so it can be used to tell previous state.
+ match (&cell.cell_type, self.map.at(point)) {
+ (json::CellType::Air, Some(false)) => assert!(
+ lava_at == Some(false),
+ "Lava at {:?} expected Some(false), but found {:?}",
+ point,
+ lava_at
+ ),
+ (json::CellType::Air, _) => assert!(
+ lava_at.is_some(),
+ "Lava at {:?} expected Some(_), but found {:?}",
+ point,
+ lava_at
+ ),
+ (json::CellType::Lava, _) => assert!(
+ lava_at == Some(true),
+ "Lava at {:?} expected Some(true), but found {:?}",
+ point,
+ lava_at
+ ),
+ (json::CellType::DeepSpace, _) => assert!(
+ lava_at == None,
+ "Lava at {:?} expected None, but found {:?}",
+ point,
+ lava_at
+ ),
+ (json::CellType::Dirt, _) => assert!(
+ lava_at.is_some(),
+ "Lava at {:?} expected Some(_), but found {:?}",
+ point,
+ lava_at
+ ),
+ };
+ }
+
if cell.cell_type == json::CellType::Air {
- self.map.clear(Point2d::new(cell.x, cell.y))
+ self.map.clear(point)
}
}
@@ -198,23 +243,6 @@ impl GameBoard {
.flat_map(|p| p.worms.iter())
.map(|w| w.position)
.collect();
-
- if cfg!(debug_assertions) {
- // This checks if my lava map is the same as the game
- // engine's lava map. It's off by one because the game
- // engine will update its one at the beginning of
- // processing the round.
- let lava = LAVA_MAP[self.round as usize - 1];
- for cell in json.map.iter().flatten() {
- let lava_at = lava.at(Point2d::new(cell.x, cell.y));
- match cell.cell_type {
- json::CellType::Air => assert!(lava_at == Some(false)),
- json::CellType::Lava => assert!(lava_at == Some(true)),
- json::CellType::DeepSpace => assert!(lava_at == None),
- json::CellType::Dirt => assert!(lava_at.is_some()),
- };
- }
- }
}
pub fn simulate(&mut self, moves: [Command; 2]) {
diff --git a/src/strategy.rs b/src/strategy.rs
index b6069a1..f16a4a0 100644
--- a/src/strategy.rs
+++ b/src/strategy.rs
@@ -1,5 +1,5 @@
-//mod mcts;
-//pub use mcts::{choose_move, Node};
+mod mcts;
+pub use mcts::{choose_move, Node};
-mod minimax;
-pub use minimax::{choose_move, Node};
+//mod minimax;
+//pub use minimax::{choose_move, Node};
diff --git a/src/strategy/mcts.rs b/src/strategy/mcts.rs
index 5a43c6e..b7478b8 100644
--- a/src/strategy/mcts.rs
+++ b/src/strategy/mcts.rs
@@ -41,9 +41,9 @@ pub fn choose_move(
let _ = mcts(&mut root_node);
}
- //eprintln!("Number of simulations: {}", root_node.score_sum.visit_count);
+ eprintln!("Number of simulations: {}", root_node.score_sum.visit_count);
for (command, score_sum) in &root_node.player_score_sums[0] {
- //eprintln!(
+ eprintln!(
"{} = {} ({} visits)",
command,
score_sum.avg().val,
@@ -164,8 +164,8 @@ fn mcts(node: &mut Node) -> Score {
}
fn mcts_move_combo(state: &GameBoard) -> Vec<[Command; 2]> {
- let player_moves = self.valid_moves(0);
- let opponent_moves = self.valid_moves(1);
+ let player_moves = state.valid_moves(0);
+ let opponent_moves = state.valid_moves(1);
debug_assert!(!player_moves.is_empty(), "No player moves");
debug_assert!(!opponent_moves.is_empty(), "No opponent moves");
@@ -228,5 +228,3 @@ fn update(node: &mut Node, commands: [Command; 2], score: Score) {
.or_insert_with(ScoreSum::new) += score;
node.score_sum += score;
}
-
-
diff --git a/src/strategy/minimax.rs b/src/strategy/minimax.rs
index 4b10014..be0c485 100644
--- a/src/strategy/minimax.rs
+++ b/src/strategy/minimax.rs
@@ -289,7 +289,7 @@ fn pruned_moves(state: &GameBoard, player_index: usize) -> Vec<Command> {
.filter(|command| {
//NB: These rules should pass for doing nothing, otherwise
// we need some other mechanism for sticking in a do
- // nothing option
+ // nothing option. Unfortunately, sitting in lava is a situation where this prunes all moves currently :(
let idle_opponent_state = sim_with_idle_opponent(*command);
let hurt_self = idle_opponent_state.players[player_index].health() < my_starting_health;
diff --git a/tests/official-runner-matching.rs b/tests/official-runner-matching.rs
index 5389558..fb9fb8c 100644
--- a/tests/official-runner-matching.rs
+++ b/tests/official-runner-matching.rs
@@ -179,6 +179,13 @@ fn read_move(csv_line: &[String], expected_worm_id: i32) -> Command {
action: Action::Bomb(Point2d::new(x, y)),
}
}
+ "snowball" => {
+ let (x, y) = read_xy_pair(&csv_line[2]);
+ Command {
+ worm: select,
+ action: Action::Snowball(Point2d::new(x, y)),
+ }
+ }
"nothing" | "invalid" => Command {
worm: select,
action: Action::DoNothing,
@@ -212,18 +219,18 @@ fn read_xy_pair(input: &str) -> (i8, i8) {
let mut char_iter = input.chars();
let _ = char_iter
.by_ref()
- .take_while(|c| *c != '(')
+ .take_while(|c| *c != ' ')
.collect::<String>();
let x = char_iter
.by_ref()
- .take_while(|c| *c != ',')
+ .take_while(|c| *c != ' ')
.collect::<String>()
.trim()
.parse::<i8>()
.unwrap();
let y = char_iter
.by_ref()
- .take_while(|c| *c != ')')
+ .take_while(|c| *c != ' ')
.collect::<String>()
.trim()
.parse::<i8>()
diff --git a/tests/replays/2019.06.28.21.39.08/A-init.json b/tests/replays/2019.06.28.21.39.08/A-init.json
deleted file mode 100644
index bbf1bfb..0000000
--- a/tests/replays/2019.06.28.21.39.08/A-init.json
+++ /dev/null
@@ -1 +0,0 @@
-{"currentRound":1,"maxRounds":400,"pushbackDamage":20,"mapSize":33,"currentWormId":1,"consecutiveDoNothingCount":0,"myPlayer":{"id":1,"score":133,"health":400,"currentWormId":1,"remainingWormSelections":5,"worms":[{"id":1,"health":150,"position":{"x":24,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":2,"health":150,"position":{"x":1,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":3,"health":100,"position":{"x":24,"y":4},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"profession":"Agent"}]},"opponents":[{"id":2,"score":133,"currentWormId":1,"remainingWormSelections":5,"worms":[{"id":1,"health":150,"position":{"x":31,"y":16},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":2,"health":150,"position":{"x":8,"y":28},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":3,"health":100,"position":{"x":8,"y":4},"diggingRange":1,"movementRange":1,"profession":"Agent"}]}],"map":[[{"x":0,"y":0,"type":"DEEP_SPACE"},{"x":1,"y":0,"type":"DEEP_SPACE"},{"x":2,"y":0,"type":"DEEP_SPACE"},{"x":3,"y":0,"type":"DEEP_SPACE"},{"x":4,"y":0,"type":"DEEP_SPACE"},{"x":5,"y":0,"type":"DEEP_SPACE"},{"x":6,"y":0,"type":"DEEP_SPACE"},{"x":7,"y":0,"type":"DEEP_SPACE"},{"x":8,"y":0,"type":"DEEP_SPACE"},{"x":9,"y":0,"type":"DEEP_SPACE"},{"x":10,"y":0,"type":"DEEP_SPACE"},{"x":11,"y":0,"type":"AIR"},{"x":12,"y":0,"type":"AIR"},{"x":13,"y":0,"type":"DIRT"},{"x":14,"y":0,"type":"AIR"},{"x":15,"y":0,"type":"AIR"},{"x":16,"y":0,"type":"AIR"},{"x":17,"y":0,"type":"AIR"},{"x":18,"y":0,"type":"AIR"},{"x":19,"y":0,"type":"DIRT"},{"x":20,"y":0,"type":"AIR"},{"x":21,"y":0,"type":"AIR"},{"x":22,"y":0,"type":"DEEP_SPACE"},{"x":23,"y":0,"type":"DEEP_SPACE"},{"x":24,"y":0,"type":"DEEP_SPACE"},{"x":25,"y":0,"type":"DEEP_SPACE"},{"x":26,"y":0,"type":"DEEP_SPACE"},{"x":27,"y":0,"type":"DEEP_SPACE"},{"x":28,"y":0,"type":"DEEP_SPACE"},{"x":29,"y":0,"type":"DEEP_SPACE"},{"x":30,"y":0,"type":"DEEP_SPACE"},{"x":31,"y":0,"type":"DEEP_SPACE"},{"x":32,"y":0,"type":"DEEP_SPACE"}],[{"x":0,"y":1,"type":"DEEP_SPACE"},{"x":1,"y":1,"type":"DEEP_SPACE"},{"x":2,"y":1,"type":"DEEP_SPACE"},{"x":3,"y":1,"type":"DEEP_SPACE"},{"x":4,"y":1,"type":"DEEP_SPACE"},{"x":5,"y":1,"type":"DEEP_SPACE"},{"x":6,"y":1,"type":"DEEP_SPACE"},{"x":7,"y":1,"type":"DEEP_SPACE"},{"x":8,"y":1,"type":"AIR"},{"x":9,"y":1,"type":"AIR"},{"x":10,"y":1,"type":"DIRT"},{"x":11,"y":1,"type":"AIR"},{"x":12,"y":1,"type":"AIR"},{"x":13,"y":1,"type":"DIRT"},{"x":14,"y":1,"type":"AIR"},{"x":15,"y":1,"type":"AIR"},{"x":16,"y":1,"type":"AIR"},{"x":17,"y":1,"type":"AIR"},{"x":18,"y":1,"type":"AIR"},{"x":19,"y":1,"type":"DIRT"},{"x":20,"y":1,"type":"AIR"},{"x":21,"y":1,"type":"AIR"},{"x":22,"y":1,"type":"DIRT"},{"x":23,"y":1,"type":"AIR"},{"x":24,"y":1,"type":"AIR"},{"x":25,"y":1,"type":"DEEP_SPACE"},{"x":26,"y":1,"type":"DEEP_SPACE"},{"x":27,"y":1,"type":"DEEP_SPACE"},{"x":28,"y":1,"type":"DEEP_SPACE"},{"x":29,"y":1,"type":"DEEP_SPACE"},{"x":30,"y":1,"type":"DEEP_SPACE"},{"x":31,"y":1,"type":"DEEP_SPACE"},{"x":32,"y":1,"type":"DEEP_SPACE"}],[{"x":0,"y":2,"type":"DEEP_SPACE"},{"x":1,"y":2,"type":"DEEP_SPACE"},{"x":2,"y":2,"type":"DEEP_SPACE"},{"x":3,"y":2,"type":"DEEP_SPACE"},{"x":4,"y":2,"type":"DEEP_SPACE"},{"x":5,"y":2,"type":"DEEP_SPACE"},{"x":6,"y":2,"type":"DEEP_SPACE"},{"x":7,"y":2,"type":"DIRT"},{"x":8,"y":2,"type":"DIRT"},{"x":9,"y":2,"type":"DIRT"},{"x":10,"y":2,"type":"DIRT"},{"x":11,"y":2,"type":"AIR"},{"x":12,"y":2,"type":"DIRT"},{"x":13,"y":2,"type":"DIRT"},{"x":14,"y":2,"type":"DIRT"},{"x":15,"y":2,"type":"AIR"},{"x":16,"y":2,"type":"AIR"},{"x":17,"y":2,"type":"AIR"},{"x":18,"y":2,"type":"DIRT"},{"x":19,"y":2,"type":"DIRT"},{"x":20,"y":2,"type":"DIRT"},{"x":21,"y":2,"type":"AIR"},{"x":22,"y":2,"type":"DIRT"},{"x":23,"y":2,"type":"DIRT"},{"x":24,"y":2,"type":"DIRT"},{"x":25,"y":2,"type":"DIRT"},{"x":26,"y":2,"type":"DEEP_SPACE"},{"x":27,"y":2,"type":"DEEP_SPACE"},{"x":28,"y":2,"type":"DEEP_SPACE"},{"x":29,"y":2,"type":"DEEP_SPACE"},{"x":30,"y":2,"type":"DEEP_SPACE"},{"x":31,"y":2,"type":"DEEP_SPACE"},{"x":32,"y":2,"type":"DEEP_SPACE"}],[{"x":0,"y":3,"type":"DEEP_SPACE"},{"x":1,"y":3,"type":"DEEP_SPACE"},{"x":2,"y":3,"type":"DEEP_SPACE"},{"x":3,"y":3,"type":"DEEP_SPACE"},{"x":4,"y":3,"type":"DEEP_SPACE"},{"x":5,"y":3,"type":"DEEP_SPACE"},{"x":6,"y":3,"type":"DIRT"},{"x":7,"y":3,"type":"AIR"},{"x":8,"y":3,"type":"AIR"},{"x":9,"y":3,"type":"AIR"},{"x":10,"y":3,"type":"DIRT"},{"x":11,"y":3,"type":"DIRT"},{"x":12,"y":3,"type":"DIRT"},{"x":13,"y":3,"type":"DIRT"},{"x":14,"y":3,"type":"DIRT"},{"x":15,"y":3,"type":"AIR"},{"x":16,"y":3,"type":"AIR"},{"x":17,"y":3,"type":"AIR"},{"x":18,"y":3,"type":"DIRT"},{"x":19,"y":3,"type":"DIRT"},{"x":20,"y":3,"type":"DIRT"},{"x":21,"y":3,"type":"DIRT"},{"x":22,"y":3,"type":"DIRT"},{"x":23,"y":3,"type":"AIR"},{"x":24,"y":3,"type":"AIR"},{"x":25,"y":3,"type":"AIR"},{"x":26,"y":3,"type":"DIRT"},{"x":27,"y":3,"type":"DEEP_SPACE"},{"x":28,"y":3,"type":"DEEP_SPACE"},{"x":29,"y":3,"type":"DEEP_SPACE"},{"x":30,"y":3,"type":"DEEP_SPACE"},{"x":31,"y":3,"type":"DEEP_SPACE"},{"x":32,"y":3,"type":"DEEP_SPACE"}],[{"x":0,"y":4,"type":"DEEP_SPACE"},{"x":1,"y":4,"type":"DEEP_SPACE"},{"x":2,"y":4,"type":"DEEP_SPACE"},{"x":3,"y":4,"type":"DEEP_SPACE"},{"x":4,"y":4,"type":"AIR"},{"x":5,"y":4,"type":"AIR"},{"x":6,"y":4,"type":"DIRT"},{"x":7,"y":4,"type":"AIR"},{"x":8,"y":4,"type":"AIR","occupier":{"id":3,"playerId":2,"health":100,"position":{"x":8,"y":4},"diggingRange":1,"movementRange":1,"profession":"Agent"}},{"x":9,"y":4,"type":"AIR"},{"x":10,"y":4,"type":"DIRT"},{"x":11,"y":4,"type":"DIRT"},{"x":12,"y":4,"type":"AIR"},{"x":13,"y":4,"type":"AIR"},{"x":14,"y":4,"type":"AIR"},{"x":15,"y":4,"type":"AIR"},{"x":16,"y":4,"type":"AIR"},{"x":17,"y":4,"type":"AIR"},{"x":18,"y":4,"type":"AIR"},{"x":19,"y":4,"type":"AIR"},{"x":20,"y":4,"type":"AIR"},{"x":21,"y":4,"type":"DIRT"},{"x":22,"y":4,"type":"DIRT"},{"x":23,"y":4,"type":"AIR"},{"x":24,"y":4,"type":"AIR","occupier":{"id":3,"playerId":1,"health":100,"position":{"x":24,"y":4},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"profession":"Agent"}},{"x":25,"y":4,"type":"AIR"},{"x":26,"y":4,"type":"DIRT"},{"x":27,"y":4,"type":"AIR"},{"x":28,"y":4,"type":"AIR"},{"x":29,"y":4,"type":"DEEP_SPACE"},{"x":30,"y":4,"type":"DEEP_SPACE"},{"x":31,"y":4,"type":"DEEP_SPACE"},{"x":32,"y":4,"type":"DEEP_SPACE"}],[{"x":0,"y":5,"type":"DEEP_SPACE"},{"x":1,"y":5,"type":"DEEP_SPACE"},{"x":2,"y":5,"type":"DEEP_SPACE"},{"x":3,"y":5,"type":"DEEP_SPACE"},{"x":4,"y":5,"type":"AIR"},{"x":5,"y":5,"type":"AIR"},{"x":6,"y":5,"type":"DIRT"},{"x":7,"y":5,"type":"AIR"},{"x":8,"y":5,"type":"AIR"},{"x":9,"y":5,"type":"AIR"},{"x":10,"y":5,"type":"DIRT"},{"x":11,"y":5,"type":"DIRT"},{"x":12,"y":5,"type":"AIR"},{"x":13,"y":5,"type":"AIR"},{"x":14,"y":5,"type":"AIR"},{"x":15,"y":5,"type":"AIR"},{"x":16,"y":5,"type":"AIR"},{"x":17,"y":5,"type":"AIR"},{"x":18,"y":5,"type":"AIR"},{"x":19,"y":5,"type":"AIR"},{"x":20,"y":5,"type":"AIR"},{"x":21,"y":5,"type":"DIRT"},{"x":22,"y":5,"type":"DIRT"},{"x":23,"y":5,"type":"AIR"},{"x":24,"y":5,"type":"AIR"},{"x":25,"y":5,"type":"AIR"},{"x":26,"y":5,"type":"DIRT"},{"x":27,"y":5,"type":"AIR"},{"x":28,"y":5,"type":"AIR"},{"x":29,"y":5,"type":"DEEP_SPACE"},{"x":30,"y":5,"type":"DEEP_SPACE"},{"x":31,"y":5,"type":"DEEP_SPACE"},{"x":32,"y":5,"type":"DEEP_SPACE"}],[{"x":0,"y":6,"type":"DEEP_SPACE"},{"x":1,"y":6,"type":"DEEP_SPACE"},{"x":2,"y":6,"type":"DEEP_SPACE"},{"x":3,"y":6,"type":"AIR"},{"x":4,"y":6,"type":"AIR"},{"x":5,"y":6,"type":"AIR"},{"x":6,"y":6,"type":"DIRT"},{"x":7,"y":6,"type":"DIRT"},{"x":8,"y":6,"type":"DIRT"},{"x":9,"y":6,"type":"DIRT"},{"x":10,"y":6,"type":"DIRT"},{"x":11,"y":6,"type":"DIRT"},{"x":12,"y":6,"type":"AIR"},{"x":13,"y":6,"type":"DIRT"},{"x":14,"y":6,"type":"DIRT"},{"x":15,"y":6,"type":"DIRT"},{"x":16,"y":6,"type":"AIR"},{"x":17,"y":6,"type":"DIRT"},{"x":18,"y":6,"type":"DIRT"},{"x":19,"y":6,"type":"DIRT"},{"x":20,"y":6,"type":"AIR"},{"x":21,"y":6,"type":"DIRT"},{"x":22,"y":6,"type":"DIRT"},{"x":23,"y":6,"type":"DIRT"},{"x":24,"y":6,"type":"DIRT"},{"x":25,"y":6,"type":"DIRT"},{"x":26,"y":6,"type":"DIRT"},{"x":27,"y":6,"type":"AIR"},{"x":28,"y":6,"type":"AIR"},{"x":29,"y":6,"type":"AIR"},{"x":30,"y":6,"type":"DEEP_SPACE"},{"x":31,"y":6,"type":"DEEP_SPACE"},{"x":32,"y":6,"type":"DEEP_SPACE"}],[{"x":0,"y":7,"type":"DEEP_SPACE"},{"x":1,"y":7,"type":"DEEP_SPACE"},{"x":2,"y":7,"type":"AIR"},{"x":3,"y":7,"type":"AIR"},{"x":4,"y":7,"type":"DIRT"},{"x":5,"y":7,"type":"DIRT"},{"x":6,"y":7,"type":"DIRT"},{"x":7,"y":7,"type":"AIR"},{"x":8,"y":7,"type":"AIR"},{"x":9,"y":7,"type":"AIR"},{"x":10,"y":7,"type":"DIRT"},{"x":11,"y":7,"type":"DIRT"},{"x":12,"y":7,"type":"DIRT"},{"x":13,"y":7,"type":"DIRT"},{"x":14,"y":7,"type":"DIRT"},{"x":15,"y":7,"type":"AIR"},{"x":16,"y":7,"type":"DIRT"},{"x":17,"y":7,"type":"AIR"},{"x":18,"y":7,"type":"DIRT"},{"x":19,"y":7,"type":"DIRT"},{"x":20,"y":7,"type":"DIRT"},{"x":21,"y":7,"type":"DIRT"},{"x":22,"y":7,"type":"DIRT"},{"x":23,"y":7,"type":"AIR"},{"x":24,"y":7,"type":"AIR"},{"x":25,"y":7,"type":"AIR"},{"x":26,"y":7,"type":"DIRT"},{"x":27,"y":7,"type":"DIRT"},{"x":28,"y":7,"type":"DIRT"},{"x":29,"y":7,"type":"AIR"},{"x":30,"y":7,"type":"AIR"},{"x":31,"y":7,"type":"DEEP_SPACE"},{"x":32,"y":7,"type":"DEEP_SPACE"}],[{"x":0,"y":8,"type":"DEEP_SPACE"},{"x":1,"y":8,"type":"AIR"},{"x":2,"y":8,"type":"DIRT"},{"x":3,"y":8,"type":"DIRT"},{"x":4,"y":8,"type":"DIRT"},{"x":5,"y":8,"type":"DIRT"},{"x":6,"y":8,"type":"DIRT"},{"x":7,"y":8,"type":"AIR"},{"x":8,"y":8,"type":"AIR"},{"x":9,"y":8,"type":"AIR"},{"x":10,"y":8,"type":"DIRT"},{"x":11,"y":8,"type":"DIRT"},{"x":12,"y":8,"type":"DIRT"},{"x":13,"y":8,"type":"DIRT"},{"x":14,"y":8,"type":"AIR"},{"x":15,"y":8,"type":"AIR"},{"x":16,"y":8,"type":"DIRT"},{"x":17,"y":8,"type":"AIR"},{"x":18,"y":8,"type":"AIR"},{"x":19,"y":8,"type":"DIRT"},{"x":20,"y":8,"type":"DIRT"},{"x":21,"y":8,"type":"DIRT"},{"x":22,"y":8,"type":"DIRT"},{"x":23,"y":8,"type":"AIR"},{"x":24,"y":8,"type":"AIR"},{"x":25,"y":8,"type":"AIR"},{"x":26,"y":8,"type":"DIRT"},{"x":27,"y":8,"type":"DIRT"},{"x":28,"y":8,"type":"DIRT"},{"x":29,"y":8,"type":"DIRT"},{"x":30,"y":8,"type":"DIRT"},{"x":31,"y":8,"type":"AIR"},{"x":32,"y":8,"type":"DEEP_SPACE"}],[{"x":0,"y":9,"type":"DEEP_SPACE"},{"x":1,"y":9,"type":"DIRT"},{"x":2,"y":9,"type":"DIRT"},{"x":3,"y":9,"type":"DIRT"},{"x":4,"y":9,"type":"DIRT"},{"x":5,"y":9,"type":"DIRT"},{"x":6,"y":9,"type":"DIRT"},{"x":7,"y":9,"type":"AIR"},{"x":8,"y":9,"type":"DIRT"},{"x":9,"y":9,"type":"DIRT"},{"x":10,"y":9,"type":"DIRT"},{"x":11,"y":9,"type":"DIRT"},{"x":12,"y":9,"type":"DIRT"},{"x":13,"y":9,"type":"DIRT"},{"x":14,"y":9,"type":"AIR"},{"x":15,"y":9,"type":"AIR"},{"x":16,"y":9,"type":"AIR"},{"x":17,"y":9,"type":"AIR"},{"x":18,"y":9,"type":"AIR"},{"x":19,"y":9,"type":"DIRT"},{"x":20,"y":9,"type":"DIRT"},{"x":21,"y":9,"type":"DIRT"},{"x":22,"y":9,"type":"DIRT"},{"x":23,"y":9,"type":"DIRT"},{"x":24,"y":9,"type":"DIRT"},{"x":25,"y":9,"type":"AIR"},{"x":26,"y":9,"type":"DIRT"},{"x":27,"y":9,"type":"DIRT"},{"x":28,"y":9,"type":"DIRT"},{"x":29,"y":9,"type":"DIRT"},{"x":30,"y":9,"type":"DIRT"},{"x":31,"y":9,"type":"DIRT"},{"x":32,"y":9,"type":"DEEP_SPACE"}],[{"x":0,"y":10,"type":"DEEP_SPACE"},{"x":1,"y":10,"type":"DIRT"},{"x":2,"y":10,"type":"DIRT"},{"x":3,"y":10,"type":"AIR"},{"x":4,"y":10,"type":"AIR"},{"x":5,"y":10,"type":"DIRT"},{"x":6,"y":10,"type":"DIRT"},{"x":7,"y":10,"type":"AIR"},{"x":8,"y":10,"type":"AIR"},{"x":9,"y":10,"type":"DIRT"},{"x":10,"y":10,"type":"DIRT"},{"x":11,"y":10,"type":"DIRT"},{"x":12,"y":10,"type":"DIRT"},{"x":13,"y":10,"type":"AIR"},{"x":14,"y":10,"type":"AIR"},{"x":15,"y":10,"type":"AIR"},{"x":16,"y":10,"type":"AIR"},{"x":17,"y":10,"type":"AIR"},{"x":18,"y":10,"type":"AIR"},{"x":19,"y":10,"type":"AIR"},{"x":20,"y":10,"type":"DIRT"},{"x":21,"y":10,"type":"DIRT"},{"x":22,"y":10,"type":"DIRT"},{"x":23,"y":10,"type":"DIRT"},{"x":24,"y":10,"type":"AIR"},{"x":25,"y":10,"type":"AIR"},{"x":26,"y":10,"type":"DIRT"},{"x":27,"y":10,"type":"DIRT"},{"x":28,"y":10,"type":"AIR"},{"x":29,"y":10,"type":"AIR"},{"x":30,"y":10,"type":"DIRT"},{"x":31,"y":10,"type":"DIRT"},{"x":32,"y":10,"type":"DEEP_SPACE"}],[{"x":0,"y":11,"type":"DIRT"},{"x":1,"y":11,"type":"DIRT"},{"x":2,"y":11,"type":"DIRT"},{"x":3,"y":11,"type":"AIR"},{"x":4,"y":11,"type":"DIRT"},{"x":5,"y":11,"type":"DIRT"},{"x":6,"y":11,"type":"DIRT"},{"x":7,"y":11,"type":"AIR"},{"x":8,"y":11,"type":"AIR"},{"x":9,"y":11,"type":"DIRT"},{"x":10,"y":11,"type":"AIR"},{"x":11,"y":11,"type":"DIRT"},{"x":12,"y":11,"type":"DIRT"},{"x":13,"y":11,"type":"AIR"},{"x":14,"y":11,"type":"DIRT"},{"x":15,"y":11,"type":"DIRT"},{"x":16,"y":11,"type":"AIR"},{"x":17,"y":11,"type":"DIRT"},{"x":18,"y":11,"type":"DIRT"},{"x":19,"y":11,"type":"AIR"},{"x":20,"y":11,"type":"DIRT"},{"x":21,"y":11,"type":"DIRT"},{"x":22,"y":11,"type":"AIR"},{"x":23,"y":11,"type":"DIRT"},{"x":24,"y":11,"type":"AIR"},{"x":25,"y":11,"type":"AIR"},{"x":26,"y":11,"type":"DIRT"},{"x":27,"y":11,"type":"DIRT"},{"x":28,"y":11,"type":"DIRT"},{"x":29,"y":11,"type":"AIR"},{"x":30,"y":11,"type":"DIRT"},{"x":31,"y":11,"type":"DIRT"},{"x":32,"y":11,"type":"DIRT"}],[{"x":0,"y":12,"type":"AIR"},{"x":1,"y":12,"type":"DIRT"},{"x":2,"y":12,"type":"DIRT"},{"x":3,"y":12,"type":"DIRT"},{"x":4,"y":12,"type":"DIRT"},{"x":5,"y":12,"type":"AIR"},{"x":6,"y":12,"type":"AIR"},{"x":7,"y":12,"type":"AIR"},{"x":8,"y":12,"type":"DIRT"},{"x":9,"y":12,"type":"DIRT"},{"x":10,"y":12,"type":"AIR"},{"x":11,"y":12,"type":"AIR"},{"x":12,"y":12,"type":"AIR"},{"x":13,"y":12,"type":"AIR"},{"x":14,"y":12,"type":"AIR"},{"x":15,"y":12,"type":"DIRT"},{"x":16,"y":12,"type":"DIRT"},{"x":17,"y":12,"type":"DIRT"},{"x":18,"y":12,"type":"AIR"},{"x":19,"y":12,"type":"AIR"},{"x":20,"y":12,"type":"AIR"},{"x":21,"y":12,"type":"AIR"},{"x":22,"y":12,"type":"AIR"},{"x":23,"y":12,"type":"DIRT"},{"x":24,"y":12,"type":"DIRT"},{"x":25,"y":12,"type":"AIR"},{"x":26,"y":12,"type":"AIR"},{"x":27,"y":12,"type":"AIR"},{"x":28,"y":12,"type":"DIRT"},{"x":29,"y":12,"type":"DIRT"},{"x":30,"y":12,"type":"DIRT"},{"x":31,"y":12,"type":"DIRT"},{"x":32,"y":12,"type":"AIR"}],[{"x":0,"y":13,"type":"AIR"},{"x":1,"y":13,"type":"AIR"},{"x":2,"y":13,"type":"AIR"},{"x":3,"y":13,"type":"DIRT"},{"x":4,"y":13,"type":"DIRT"},{"x":5,"y":13,"type":"DIRT"},{"x":6,"y":13,"type":"AIR"},{"x":7,"y":13,"type":"AIR"},{"x":8,"y":13,"type":"DIRT"},{"x":9,"y":13,"type":"DIRT"},{"x":10,"y":13,"type":"AIR"},{"x":11,"y":13,"type":"AIR"},{"x":12,"y":13,"type":"AIR"},{"x":13,"y":13,"type":"AIR"},{"x":14,"y":13,"type":"AIR"},{"x":15,"y":13,"type":"AIR"},{"x":16,"y":13,"type":"AIR"},{"x":17,"y":13,"type":"AIR"},{"x":18,"y":13,"type":"AIR"},{"x":19,"y":13,"type":"AIR"},{"x":20,"y":13,"type":"AIR"},{"x":21,"y":13,"type":"AIR"},{"x":22,"y":13,"type":"AIR"},{"x":23,"y":13,"type":"DIRT"},{"x":24,"y":13,"type":"DIRT"},{"x":25,"y":13,"type":"AIR"},{"x":26,"y":13,"type":"AIR"},{"x":27,"y":13,"type":"DIRT"},{"x":28,"y":13,"type":"DIRT"},{"x":29,"y":13,"type":"DIRT"},{"x":30,"y":13,"type":"AIR"},{"x":31,"y":13,"type":"AIR"},{"x":32,"y":13,"type":"AIR"}],[{"x":0,"y":14,"type":"DIRT"},{"x":1,"y":14,"type":"DIRT"},{"x":2,"y":14,"type":"DIRT"},{"x":3,"y":14,"type":"DIRT"},{"x":4,"y":14,"type":"DIRT"},{"x":5,"y":14,"type":"DIRT"},{"x":6,"y":14,"type":"DIRT"},{"x":7,"y":14,"type":"DIRT"},{"x":8,"y":14,"type":"DIRT"},{"x":9,"y":14,"type":"AIR"},{"x":10,"y":14,"type":"AIR"},{"x":11,"y":14,"type":"DIRT"},{"x":12,"y":14,"type":"DIRT"},{"x":13,"y":14,"type":"DIRT"},{"x":14,"y":14,"type":"DIRT"},{"x":15,"y":14,"type":"AIR"},{"x":16,"y":14,"type":"AIR"},{"x":17,"y":14,"type":"AIR"},{"x":18,"y":14,"type":"DIRT"},{"x":19,"y":14,"type":"DIRT"},{"x":20,"y":14,"type":"DIRT"},{"x":21,"y":14,"type":"DIRT"},{"x":22,"y":14,"type":"AIR"},{"x":23,"y":14,"type":"AIR"},{"x":24,"y":14,"type":"DIRT"},{"x":25,"y":14,"type":"DIRT"},{"x":26,"y":14,"type":"DIRT"},{"x":27,"y":14,"type":"DIRT"},{"x":28,"y":14,"type":"DIRT"},{"x":29,"y":14,"type":"DIRT"},{"x":30,"y":14,"type":"DIRT"},{"x":31,"y":14,"type":"DIRT"},{"x":32,"y":14,"type":"DIRT"}],[{"x":0,"y":15,"type":"AIR"},{"x":1,"y":15,"type":"AIR"},{"x":2,"y":15,"type":"AIR"},{"x":3,"y":15,"type":"DIRT"},{"x":4,"y":15,"type":"DIRT"},{"x":5,"y":15,"type":"AIR"},{"x":6,"y":15,"type":"AIR"},{"x":7,"y":15,"type":"DIRT"},{"x":8,"y":15,"type":"AIR"},{"x":9,"y":15,"type":"AIR"},{"x":10,"y":15,"type":"DIRT"},{"x":11,"y":15,"type":"DIRT"},{"x":12,"y":15,"type":"AIR"},{"x":13,"y":15,"type":"AIR"},{"x":14,"y":15,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":15,"y":15,"type":"DIRT"},{"x":16,"y":15,"type":"DIRT"},{"x":17,"y":15,"type":"DIRT"},{"x":18,"y":15,"type":"DIRT"},{"x":19,"y":15,"type":"AIR"},{"x":20,"y":15,"type":"AIR"},{"x":21,"y":15,"type":"DIRT"},{"x":22,"y":15,"type":"DIRT"},{"x":23,"y":15,"type":"AIR"},{"x":24,"y":15,"type":"AIR"},{"x":25,"y":15,"type":"DIRT"},{"x":26,"y":15,"type":"AIR"},{"x":27,"y":15,"type":"AIR"},{"x":28,"y":15,"type":"DIRT"},{"x":29,"y":15,"type":"DIRT"},{"x":30,"y":15,"type":"AIR"},{"x":31,"y":15,"type":"AIR"},{"x":32,"y":15,"type":"AIR"}],[{"x":0,"y":16,"type":"AIR"},{"x":1,"y":16,"type":"AIR","occupier":{"id":2,"playerId":1,"health":150,"position":{"x":1,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":2,"y":16,"type":"AIR"},{"x":3,"y":16,"type":"DIRT"},{"x":4,"y":16,"type":"DIRT"},{"x":5,"y":16,"type":"AIR"},{"x":6,"y":16,"type":"AIR"},{"x":7,"y":16,"type":"AIR"},{"x":8,"y":16,"type":"AIR"},{"x":9,"y":16,"type":"AIR"},{"x":10,"y":16,"type":"DIRT"},{"x":11,"y":16,"type":"DIRT"},{"x":12,"y":16,"type":"AIR"},{"x":13,"y":16,"type":"AIR"},{"x":14,"y":16,"type":"AIR"},{"x":15,"y":16,"type":"DIRT"},{"x":16,"y":16,"type":"DIRT"},{"x":17,"y":16,"type":"DIRT"},{"x":18,"y":16,"type":"AIR"},{"x":19,"y":16,"type":"AIR"},{"x":20,"y":16,"type":"AIR"},{"x":21,"y":16,"type":"DIRT"},{"x":22,"y":16,"type":"DIRT"},{"x":23,"y":16,"type":"AIR"},{"x":24,"y":16,"type":"AIR"},{"x":25,"y":16,"type":"AIR"},{"x":26,"y":16,"type":"AIR"},{"x":27,"y":16,"type":"AIR"},{"x":28,"y":16,"type":"DIRT"},{"x":29,"y":16,"type":"DIRT"},{"x":30,"y":16,"type":"AIR"},{"x":31,"y":16,"type":"AIR","occupier":{"id":1,"playerId":2,"health":150,"position":{"x":31,"y":16},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":32,"y":16,"type":"AIR"}],[{"x":0,"y":17,"type":"AIR"},{"x":1,"y":17,"type":"AIR"},{"x":2,"y":17,"type":"AIR"},{"x":3,"y":17,"type":"DIRT"},{"x":4,"y":17,"type":"AIR"},{"x":5,"y":17,"type":"AIR"},{"x":6,"y":17,"type":"AIR"},{"x":7,"y":17,"type":"AIR"},{"x":8,"y":17,"type":"AIR"},{"x":9,"y":17,"type":"AIR"},{"x":10,"y":17,"type":"AIR"},{"x":11,"y":17,"type":"DIRT"},{"x":12,"y":17,"type":"DIRT"},{"x":13,"y":17,"type":"DIRT"},{"x":14,"y":17,"type":"AIR"},{"x":15,"y":17,"type":"DIRT"},{"x":16,"y":17,"type":"AIR"},{"x":17,"y":17,"type":"DIRT"},{"x":18,"y":17,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":19,"y":17,"type":"DIRT"},{"x":20,"y":17,"type":"DIRT"},{"x":21,"y":17,"type":"DIRT"},{"x":22,"y":17,"type":"AIR"},{"x":23,"y":17,"type":"AIR"},{"x":24,"y":17,"type":"AIR"},{"x":25,"y":17,"type":"AIR"},{"x":26,"y":17,"type":"AIR"},{"x":27,"y":17,"type":"AIR"},{"x":28,"y":17,"type":"AIR"},{"x":29,"y":17,"type":"DIRT"},{"x":30,"y":17,"type":"AIR"},{"x":31,"y":17,"type":"AIR"},{"x":32,"y":17,"type":"AIR"}],[{"x":0,"y":18,"type":"DIRT"},{"x":1,"y":18,"type":"DIRT"},{"x":2,"y":18,"type":"DIRT"},{"x":3,"y":18,"type":"DIRT"},{"x":4,"y":18,"type":"AIR"},{"x":5,"y":18,"type":"DIRT"},{"x":6,"y":18,"type":"DIRT"},{"x":7,"y":18,"type":"DIRT"},{"x":8,"y":18,"type":"DIRT"},{"x":9,"y":18,"type":"AIR"},{"x":10,"y":18,"type":"AIR"},{"x":11,"y":18,"type":"DIRT"},{"x":12,"y":18,"type":"DIRT"},{"x":13,"y":18,"type":"DIRT"},{"x":14,"y":18,"type":"AIR"},{"x":15,"y":18,"type":"AIR"},{"x":16,"y":18,"type":"AIR"},{"x":17,"y":18,"type":"AIR"},{"x":18,"y":18,"type":"AIR"},{"x":19,"y":18,"type":"DIRT"},{"x":20,"y":18,"type":"DIRT"},{"x":21,"y":18,"type":"DIRT"},{"x":22,"y":18,"type":"AIR"},{"x":23,"y":18,"type":"AIR"},{"x":24,"y":18,"type":"DIRT"},{"x":25,"y":18,"type":"DIRT"},{"x":26,"y":18,"type":"DIRT"},{"x":27,"y":18,"type":"DIRT"},{"x":28,"y":18,"type":"AIR"},{"x":29,"y":18,"type":"DIRT"},{"x":30,"y":18,"type":"DIRT"},{"x":31,"y":18,"type":"DIRT"},{"x":32,"y":18,"type":"DIRT"}],[{"x":0,"y":19,"type":"DIRT"},{"x":1,"y":19,"type":"DIRT"},{"x":2,"y":19,"type":"DIRT"},{"x":3,"y":19,"type":"DIRT"},{"x":4,"y":19,"type":"DIRT"},{"x":5,"y":19,"type":"DIRT"},{"x":6,"y":19,"type":"DIRT"},{"x":7,"y":19,"type":"DIRT"},{"x":8,"y":19,"type":"DIRT"},{"x":9,"y":19,"type":"DIRT"},{"x":10,"y":19,"type":"DIRT"},{"x":11,"y":19,"type":"DIRT"},{"x":12,"y":19,"type":"DIRT"},{"x":13,"y":19,"type":"DIRT"},{"x":14,"y":19,"type":"AIR"},{"x":15,"y":19,"type":"AIR"},{"x":16,"y":19,"type":"DIRT"},{"x":17,"y":19,"type":"AIR"},{"x":18,"y":19,"type":"AIR"},{"x":19,"y":19,"type":"DIRT"},{"x":20,"y":19,"type":"DIRT"},{"x":21,"y":19,"type":"DIRT"},{"x":22,"y":19,"type":"DIRT"},{"x":23,"y":19,"type":"DIRT"},{"x":24,"y":19,"type":"DIRT"},{"x":25,"y":19,"type":"DIRT"},{"x":26,"y":19,"type":"DIRT"},{"x":27,"y":19,"type":"DIRT"},{"x":28,"y":19,"type":"DIRT"},{"x":29,"y":19,"type":"DIRT"},{"x":30,"y":19,"type":"DIRT"},{"x":31,"y":19,"type":"DIRT"},{"x":32,"y":19,"type":"DIRT"}],[{"x":0,"y":20,"type":"DIRT"},{"x":1,"y":20,"type":"DIRT"},{"x":2,"y":20,"type":"DIRT"},{"x":3,"y":20,"type":"AIR"},{"x":4,"y":20,"type":"AIR"},{"x":5,"y":20,"type":"AIR"},{"x":6,"y":20,"type":"AIR"},{"x":7,"y":20,"type":"DIRT"},{"x":8,"y":20,"type":"DIRT"},{"x":9,"y":20,"type":"DIRT"},{"x":10,"y":20,"type":"DIRT"},{"x":11,"y":20,"type":"AIR"},{"x":12,"y":20,"type":"AIR"},{"x":13,"y":20,"type":"DIRT"},{"x":14,"y":20,"type":"DIRT"},{"x":15,"y":20,"type":"DIRT"},{"x":16,"y":20,"type":"DIRT"},{"x":17,"y":20,"type":"DIRT"},{"x":18,"y":20,"type":"DIRT"},{"x":19,"y":20,"type":"DIRT"},{"x":20,"y":20,"type":"AIR"},{"x":21,"y":20,"type":"AIR"},{"x":22,"y":20,"type":"DIRT"},{"x":23,"y":20,"type":"DIRT"},{"x":24,"y":20,"type":"DIRT"},{"x":25,"y":20,"type":"DIRT"},{"x":26,"y":20,"type":"AIR"},{"x":27,"y":20,"type":"AIR"},{"x":28,"y":20,"type":"AIR"},{"x":29,"y":20,"type":"AIR"},{"x":30,"y":20,"type":"DIRT"},{"x":31,"y":20,"type":"DIRT"},{"x":32,"y":20,"type":"DIRT"}],[{"x":0,"y":21,"type":"DIRT"},{"x":1,"y":21,"type":"AIR"},{"x":2,"y":21,"type":"AIR"},{"x":3,"y":21,"type":"AIR"},{"x":4,"y":21,"type":"AIR"},{"x":5,"y":21,"type":"DIRT"},{"x":6,"y":21,"type":"AIR"},{"x":7,"y":21,"type":"AIR"},{"x":8,"y":21,"type":"AIR"},{"x":9,"y":21,"type":"AIR"},{"x":10,"y":21,"type":"AIR"},{"x":11,"y":21,"type":"AIR"},{"x":12,"y":21,"type":"DIRT"},{"x":13,"y":21,"type":"AIR"},{"x":14,"y":21,"type":"AIR"},{"x":15,"y":21,"type":"AIR"},{"x":16,"y":21,"type":"DIRT"},{"x":17,"y":21,"type":"AIR"},{"x":18,"y":21,"type":"AIR"},{"x":19,"y":21,"type":"AIR"},{"x":20,"y":21,"type":"DIRT"},{"x":21,"y":21,"type":"AIR"},{"x":22,"y":21,"type":"AIR"},{"x":23,"y":21,"type":"AIR"},{"x":24,"y":21,"type":"AIR"},{"x":25,"y":21,"type":"AIR"},{"x":26,"y":21,"type":"AIR"},{"x":27,"y":21,"type":"DIRT"},{"x":28,"y":21,"type":"AIR"},{"x":29,"y":21,"type":"AIR"},{"x":30,"y":21,"type":"AIR"},{"x":31,"y":21,"type":"AIR"},{"x":32,"y":21,"type":"DIRT"}],[{"x":0,"y":22,"type":"DEEP_SPACE"},{"x":1,"y":22,"type":"AIR"},{"x":2,"y":22,"type":"AIR"},{"x":3,"y":22,"type":"AIR"},{"x":4,"y":22,"type":"AIR"},{"x":5,"y":22,"type":"AIR"},{"x":6,"y":22,"type":"DIRT"},{"x":7,"y":22,"type":"DIRT"},{"x":8,"y":22,"type":"AIR"},{"x":9,"y":22,"type":"AIR"},{"x":10,"y":22,"type":"AIR"},{"x":11,"y":22,"type":"DIRT"},{"x":12,"y":22,"type":"DIRT"},{"x":13,"y":22,"type":"AIR"},{"x":14,"y":22,"type":"AIR"},{"x":15,"y":22,"type":"DIRT"},{"x":16,"y":22,"type":"AIR"},{"x":17,"y":22,"type":"DIRT"},{"x":18,"y":22,"type":"AIR"},{"x":19,"y":22,"type":"AIR"},{"x":20,"y":22,"type":"DIRT"},{"x":21,"y":22,"type":"DIRT"},{"x":22,"y":22,"type":"AIR"},{"x":23,"y":22,"type":"AIR"},{"x":24,"y":22,"type":"AIR"},{"x":25,"y":22,"type":"DIRT"},{"x":26,"y":22,"type":"DIRT"},{"x":27,"y":22,"type":"AIR"},{"x":28,"y":22,"type":"AIR"},{"x":29,"y":22,"type":"AIR"},{"x":30,"y":22,"type":"AIR"},{"x":31,"y":22,"type":"AIR"},{"x":32,"y":22,"type":"DEEP_SPACE"}],[{"x":0,"y":23,"type":"DEEP_SPACE"},{"x":1,"y":23,"type":"AIR"},{"x":2,"y":23,"type":"DIRT"},{"x":3,"y":23,"type":"DIRT"},{"x":4,"y":23,"type":"AIR"},{"x":5,"y":23,"type":"AIR"},{"x":6,"y":23,"type":"DIRT"},{"x":7,"y":23,"type":"DIRT"},{"x":8,"y":23,"type":"AIR"},{"x":9,"y":23,"type":"AIR"},{"x":10,"y":23,"type":"AIR"},{"x":11,"y":23,"type":"AIR"},{"x":12,"y":23,"type":"AIR"},{"x":13,"y":23,"type":"AIR"},{"x":14,"y":23,"type":"DIRT"},{"x":15,"y":23,"type":"DIRT"},{"x":16,"y":23,"type":"DIRT"},{"x":17,"y":23,"type":"DIRT"},{"x":18,"y":23,"type":"DIRT"},{"x":19,"y":23,"type":"AIR"},{"x":20,"y":23,"type":"AIR"},{"x":21,"y":23,"type":"AIR"},{"x":22,"y":23,"type":"AIR"},{"x":23,"y":23,"type":"AIR"},{"x":24,"y":23,"type":"AIR"},{"x":25,"y":23,"type":"DIRT"},{"x":26,"y":23,"type":"DIRT"},{"x":27,"y":23,"type":"AIR"},{"x":28,"y":23,"type":"AIR"},{"x":29,"y":23,"type":"DIRT"},{"x":30,"y":23,"type":"DIRT"},{"x":31,"y":23,"type":"AIR"},{"x":32,"y":23,"type":"DEEP_SPACE"}],[{"x":0,"y":24,"type":"DEEP_SPACE"},{"x":1,"y":24,"type":"AIR"},{"x":2,"y":24,"type":"AIR"},{"x":3,"y":24,"type":"DIRT"},{"x":4,"y":24,"type":"AIR"},{"x":5,"y":24,"type":"AIR"},{"x":6,"y":24,"type":"DIRT"},{"x":7,"y":24,"type":"DIRT"},{"x":8,"y":24,"type":"DIRT"},{"x":9,"y":24,"type":"DIRT"},{"x":10,"y":24,"type":"DIRT"},{"x":11,"y":24,"type":"AIR"},{"x":12,"y":24,"type":"AIR"},{"x":13,"y":24,"type":"AIR"},{"x":14,"y":24,"type":"DIRT"},{"x":15,"y":24,"type":"DIRT"},{"x":16,"y":24,"type":"DIRT"},{"x":17,"y":24,"type":"DIRT"},{"x":18,"y":24,"type":"DIRT"},{"x":19,"y":24,"type":"AIR"},{"x":20,"y":24,"type":"AIR"},{"x":21,"y":24,"type":"AIR"},{"x":22,"y":24,"type":"DIRT"},{"x":23,"y":24,"type":"DIRT"},{"x":24,"y":24,"type":"DIRT"},{"x":25,"y":24,"type":"DIRT"},{"x":26,"y":24,"type":"DIRT"},{"x":27,"y":24,"type":"AIR"},{"x":28,"y":24,"type":"AIR"},{"x":29,"y":24,"type":"DIRT"},{"x":30,"y":24,"type":"AIR"},{"x":31,"y":24,"type":"AIR"},{"x":32,"y":24,"type":"DEEP_SPACE"}],[{"x":0,"y":25,"type":"DEEP_SPACE"},{"x":1,"y":25,"type":"DEEP_SPACE"},{"x":2,"y":25,"type":"AIR"},{"x":3,"y":25,"type":"AIR"},{"x":4,"y":25,"type":"AIR"},{"x":5,"y":25,"type":"AIR"},{"x":6,"y":25,"type":"AIR"},{"x":7,"y":25,"type":"AIR"},{"x":8,"y":25,"type":"AIR"},{"x":9,"y":25,"type":"AIR"},{"x":10,"y":25,"type":"DIRT"},{"x":11,"y":25,"type":"DIRT"},{"x":12,"y":25,"type":"AIR"},{"x":13,"y":25,"type":"AIR"},{"x":14,"y":25,"type":"AIR"},{"x":15,"y":25,"type":"DIRT"},{"x":16,"y":25,"type":"DIRT"},{"x":17,"y":25,"type":"DIRT"},{"x":18,"y":25,"type":"AIR"},{"x":19,"y":25,"type":"AIR"},{"x":20,"y":25,"type":"AIR"},{"x":21,"y":25,"type":"DIRT"},{"x":22,"y":25,"type":"DIRT"},{"x":23,"y":25,"type":"AIR"},{"x":24,"y":25,"type":"AIR"},{"x":25,"y":25,"type":"AIR"},{"x":26,"y":25,"type":"AIR"},{"x":27,"y":25,"type":"AIR"},{"x":28,"y":25,"type":"AIR"},{"x":29,"y":25,"type":"AIR"},{"x":30,"y":25,"type":"AIR"},{"x":31,"y":25,"type":"DEEP_SPACE"},{"x":32,"y":25,"type":"DEEP_SPACE"}],[{"x":0,"y":26,"type":"DEEP_SPACE"},{"x":1,"y":26,"type":"DEEP_SPACE"},{"x":2,"y":26,"type":"DEEP_SPACE"},{"x":3,"y":26,"type":"AIR"},{"x":4,"y":26,"type":"AIR"},{"x":5,"y":26,"type":"AIR"},{"x":6,"y":26,"type":"DIRT"},{"x":7,"y":26,"type":"DIRT"},{"x":8,"y":26,"type":"DIRT"},{"x":9,"y":26,"type":"DIRT"},{"x":10,"y":26,"type":"DIRT"},{"x":11,"y":26,"type":"DIRT"},{"x":12,"y":26,"type":"DIRT"},{"x":13,"y":26,"type":"AIR"},{"x":14,"y":26,"type":"AIR"},{"x":15,"y":26,"type":"DIRT"},{"x":16,"y":26,"type":"DIRT"},{"x":17,"y":26,"type":"DIRT"},{"x":18,"y":26,"type":"AIR"},{"x":19,"y":26,"type":"AIR"},{"x":20,"y":26,"type":"DIRT"},{"x":21,"y":26,"type":"DIRT"},{"x":22,"y":26,"type":"DIRT"},{"x":23,"y":26,"type":"DIRT"},{"x":24,"y":26,"type":"DIRT"},{"x":25,"y":26,"type":"DIRT"},{"x":26,"y":26,"type":"DIRT"},{"x":27,"y":26,"type":"AIR"},{"x":28,"y":26,"type":"AIR"},{"x":29,"y":26,"type":"AIR"},{"x":30,"y":26,"type":"DEEP_SPACE"},{"x":31,"y":26,"type":"DEEP_SPACE"},{"x":32,"y":26,"type":"DEEP_SPACE"}],[{"x":0,"y":27,"type":"DEEP_SPACE"},{"x":1,"y":27,"type":"DEEP_SPACE"},{"x":2,"y":27,"type":"DEEP_SPACE"},{"x":3,"y":27,"type":"DEEP_SPACE"},{"x":4,"y":27,"type":"DIRT"},{"x":5,"y":27,"type":"DIRT"},{"x":6,"y":27,"type":"DIRT"},{"x":7,"y":27,"type":"AIR"},{"x":8,"y":27,"type":"AIR"},{"x":9,"y":27,"type":"AIR"},{"x":10,"y":27,"type":"DIRT"},{"x":11,"y":27,"type":"DIRT"},{"x":12,"y":27,"type":"DIRT"},{"x":13,"y":27,"type":"DIRT"},{"x":14,"y":27,"type":"AIR"},{"x":15,"y":27,"type":"AIR"},{"x":16,"y":27,"type":"DIRT"},{"x":17,"y":27,"type":"AIR"},{"x":18,"y":27,"type":"AIR"},{"x":19,"y":27,"type":"DIRT"},{"x":20,"y":27,"type":"DIRT"},{"x":21,"y":27,"type":"DIRT"},{"x":22,"y":27,"type":"DIRT"},{"x":23,"y":27,"type":"AIR"},{"x":24,"y":27,"type":"AIR"},{"x":25,"y":27,"type":"AIR"},{"x":26,"y":27,"type":"DIRT"},{"x":27,"y":27,"type":"DIRT"},{"x":28,"y":27,"type":"DIRT"},{"x":29,"y":27,"type":"DEEP_SPACE"},{"x":30,"y":27,"type":"DEEP_SPACE"},{"x":31,"y":27,"type":"DEEP_SPACE"},{"x":32,"y":27,"type":"DEEP_SPACE"}],[{"x":0,"y":28,"type":"DEEP_SPACE"},{"x":1,"y":28,"type":"DEEP_SPACE"},{"x":2,"y":28,"type":"DEEP_SPACE"},{"x":3,"y":28,"type":"DEEP_SPACE"},{"x":4,"y":28,"type":"AIR"},{"x":5,"y":28,"type":"DIRT"},{"x":6,"y":28,"type":"DIRT"},{"x":7,"y":28,"type":"AIR"},{"x":8,"y":28,"type":"AIR","occupier":{"id":2,"playerId":2,"health":150,"position":{"x":8,"y":28},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":9,"y":28,"type":"AIR"},{"x":10,"y":28,"type":"DIRT"},{"x":11,"y":28,"type":"DIRT"},{"x":12,"y":28,"type":"AIR"},{"x":13,"y":28,"type":"AIR"},{"x":14,"y":28,"type":"AIR"},{"x":15,"y":28,"type":"AIR"},{"x":16,"y":28,"type":"AIR"},{"x":17,"y":28,"type":"AIR"},{"x":18,"y":28,"type":"AIR"},{"x":19,"y":28,"type":"AIR"},{"x":20,"y":28,"type":"AIR"},{"x":21,"y":28,"type":"DIRT"},{"x":22,"y":28,"type":"DIRT"},{"x":23,"y":28,"type":"AIR"},{"x":24,"y":28,"type":"AIR","occupier":{"id":1,"playerId":1,"health":150,"position":{"x":24,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":25,"y":28,"type":"AIR"},{"x":26,"y":28,"type":"DIRT"},{"x":27,"y":28,"type":"DIRT"},{"x":28,"y":28,"type":"AIR"},{"x":29,"y":28,"type":"DEEP_SPACE"},{"x":30,"y":28,"type":"DEEP_SPACE"},{"x":31,"y":28,"type":"DEEP_SPACE"},{"x":32,"y":28,"type":"DEEP_SPACE"}],[{"x":0,"y":29,"type":"DEEP_SPACE"},{"x":1,"y":29,"type":"DEEP_SPACE"},{"x":2,"y":29,"type":"DEEP_SPACE"},{"x":3,"y":29,"type":"DEEP_SPACE"},{"x":4,"y":29,"type":"DEEP_SPACE"},{"x":5,"y":29,"type":"DEEP_SPACE"},{"x":6,"y":29,"type":"DIRT"},{"x":7,"y":29,"type":"AIR"},{"x":8,"y":29,"type":"AIR"},{"x":9,"y":29,"type":"AIR"},{"x":10,"y":29,"type":"DIRT"},{"x":11,"y":29,"type":"AIR"},{"x":12,"y":29,"type":"AIR"},{"x":13,"y":29,"type":"AIR"},{"x":14,"y":29,"type":"AIR"},{"x":15,"y":29,"type":"DIRT"},{"x":16,"y":29,"type":"AIR"},{"x":17,"y":29,"type":"DIRT"},{"x":18,"y":29,"type":"AIR"},{"x":19,"y":29,"type":"AIR"},{"x":20,"y":29,"type":"AIR"},{"x":21,"y":29,"type":"AIR"},{"x":22,"y":29,"type":"DIRT"},{"x":23,"y":29,"type":"AIR"},{"x":24,"y":29,"type":"AIR"},{"x":25,"y":29,"type":"AIR"},{"x":26,"y":29,"type":"DIRT"},{"x":27,"y":29,"type":"DEEP_SPACE"},{"x":28,"y":29,"type":"DEEP_SPACE"},{"x":29,"y":29,"type":"DEEP_SPACE"},{"x":30,"y":29,"type":"DEEP_SPACE"},{"x":31,"y":29,"type":"DEEP_SPACE"},{"x":32,"y":29,"type":"DEEP_SPACE"}],[{"x":0,"y":30,"type":"DEEP_SPACE"},{"x":1,"y":30,"type":"DEEP_SPACE"},{"x":2,"y":30,"type":"DEEP_SPACE"},{"x":3,"y":30,"type":"DEEP_SPACE"},{"x":4,"y":30,"type":"DEEP_SPACE"},{"x":5,"y":30,"type":"DEEP_SPACE"},{"x":6,"y":30,"type":"DEEP_SPACE"},{"x":7,"y":30,"type":"DIRT"},{"x":8,"y":30,"type":"DIRT"},{"x":9,"y":30,"type":"DIRT"},{"x":10,"y":30,"type":"DIRT"},{"x":11,"y":30,"type":"DIRT"},{"x":12,"y":30,"type":"DIRT"},{"x":13,"y":30,"type":"DIRT"},{"x":14,"y":30,"type":"AIR"},{"x":15,"y":30,"type":"DIRT"},{"x":16,"y":30,"type":"DIRT"},{"x":17,"y":30,"type":"DIRT"},{"x":18,"y":30,"type":"AIR"},{"x":19,"y":30,"type":"DIRT"},{"x":20,"y":30,"type":"DIRT"},{"x":21,"y":30,"type":"DIRT"},{"x":22,"y":30,"type":"DIRT"},{"x":23,"y":30,"type":"DIRT"},{"x":24,"y":30,"type":"DIRT"},{"x":25,"y":30,"type":"DIRT"},{"x":26,"y":30,"type":"DEEP_SPACE"},{"x":27,"y":30,"type":"DEEP_SPACE"},{"x":28,"y":30,"type":"DEEP_SPACE"},{"x":29,"y":30,"type":"DEEP_SPACE"},{"x":30,"y":30,"type":"DEEP_SPACE"},{"x":31,"y":30,"type":"DEEP_SPACE"},{"x":32,"y":30,"type":"DEEP_SPACE"}],[{"x":0,"y":31,"type":"DEEP_SPACE"},{"x":1,"y":31,"type":"DEEP_SPACE"},{"x":2,"y":31,"type":"DEEP_SPACE"},{"x":3,"y":31,"type":"DEEP_SPACE"},{"x":4,"y":31,"type":"DEEP_SPACE"},{"x":5,"y":31,"type":"DEEP_SPACE"},{"x":6,"y":31,"type":"DEEP_SPACE"},{"x":7,"y":31,"type":"DEEP_SPACE"},{"x":8,"y":31,"type":"DIRT"},{"x":9,"y":31,"type":"DIRT"},{"x":10,"y":31,"type":"DIRT"},{"x":11,"y":31,"type":"DIRT"},{"x":12,"y":31,"type":"DIRT"},{"x":13,"y":31,"type":"DIRT"},{"x":14,"y":31,"type":"DIRT"},{"x":15,"y":31,"type":"DIRT"},{"x":16,"y":31,"type":"DIRT"},{"x":17,"y":31,"type":"DIRT"},{"x":18,"y":31,"type":"DIRT"},{"x":19,"y":31,"type":"DIRT"},{"x":20,"y":31,"type":"DIRT"},{"x":21,"y":31,"type":"DIRT"},{"x":22,"y":31,"type":"DIRT"},{"x":23,"y":31,"type":"DIRT"},{"x":24,"y":31,"type":"DIRT"},{"x":25,"y":31,"type":"DEEP_SPACE"},{"x":26,"y":31,"type":"DEEP_SPACE"},{"x":27,"y":31,"type":"DEEP_SPACE"},{"x":28,"y":31,"type":"DEEP_SPACE"},{"x":29,"y":31,"type":"DEEP_SPACE"},{"x":30,"y":31,"type":"DEEP_SPACE"},{"x":31,"y":31,"type":"DEEP_SPACE"},{"x":32,"y":31,"type":"DEEP_SPACE"}],[{"x":0,"y":32,"type":"DEEP_SPACE"},{"x":1,"y":32,"type":"DEEP_SPACE"},{"x":2,"y":32,"type":"DEEP_SPACE"},{"x":3,"y":32,"type":"DEEP_SPACE"},{"x":4,"y":32,"type":"DEEP_SPACE"},{"x":5,"y":32,"type":"DEEP_SPACE"},{"x":6,"y":32,"type":"DEEP_SPACE"},{"x":7,"y":32,"type":"DEEP_SPACE"},{"x":8,"y":32,"type":"DEEP_SPACE"},{"x":9,"y":32,"type":"DEEP_SPACE"},{"x":10,"y":32,"type":"DEEP_SPACE"},{"x":11,"y":32,"type":"DIRT"},{"x":12,"y":32,"type":"DIRT"},{"x":13,"y":32,"type":"AIR"},{"x":14,"y":32,"type":"AIR"},{"x":15,"y":32,"type":"AIR"},{"x":16,"y":32,"type":"AIR"},{"x":17,"y":32,"type":"AIR"},{"x":18,"y":32,"type":"AIR"},{"x":19,"y":32,"type":"AIR"},{"x":20,"y":32,"type":"DIRT"},{"x":21,"y":32,"type":"DIRT"},{"x":22,"y":32,"type":"DEEP_SPACE"},{"x":23,"y":32,"type":"DEEP_SPACE"},{"x":24,"y":32,"type":"DEEP_SPACE"},{"x":25,"y":32,"type":"DEEP_SPACE"},{"x":26,"y":32,"type":"DEEP_SPACE"},{"x":27,"y":32,"type":"DEEP_SPACE"},{"x":28,"y":32,"type":"DEEP_SPACE"},{"x":29,"y":32,"type":"DEEP_SPACE"},{"x":30,"y":32,"type":"DEEP_SPACE"},{"x":31,"y":32,"type":"DEEP_SPACE"},{"x":32,"y":32,"type":"DEEP_SPACE"}]]} \ No newline at end of file
diff --git a/tests/replays/2019.06.28.21.39.08/A-log.csv b/tests/replays/2019.06.28.21.39.08/A-log.csv
deleted file mode 100644
index a4b4e1f..0000000
--- a/tests/replays/2019.06.28.21.39.08/A-log.csv
+++ /dev/null
@@ -1,346 +0,0 @@
-Round,LastCommandType,LastCommand,ActiveWorm,Score,Health,Worm1 Health,Worm1 x,Worm1 y,Worm2 Health,Worm2 x,Worm2 y,Worm3 Health,Worm3 x,Worm3 y
-1,null,"null",1,133,400,150,24,28,150,1,16,100,24,4
-2,banana,"banana (21, 9)",3,224,400,150,24,28,150,1,16,100,24,4
-3,banana,"banana (27, 8)",3,301,400,150,24,28,150,1,16,100,24,4
-4,banana,"banana (23, 8)",3,329,400,150,24,28,150,1,16,100,24,4
-5,move,"move (23, 29)",1,334,400,150,23,29,150,1,16,100,24,4
-6,move,"move (0, 15)",2,339,400,150,23,29,150,0,15,100,24,4
-7,move,"move (0, 16)",2,344,400,150,23,29,150,0,16,100,24,4
-8,move,"move (25, 5)",3,349,400,150,23,29,150,0,16,100,25,5
-9,dig,"dig (25, 6)",3,356,400,150,23,29,150,0,16,100,25,5
-10,move,"move (23, 28)",1,361,400,150,23,28,150,0,16,100,25,5
-11,move,"move (1, 17)",2,366,400,150,23,28,150,1,17,100,25,5
-12,move,"move (25, 4)",3,371,400,150,23,28,150,1,17,100,25,4
-13,dig,"dig (22, 29)",1,378,400,150,23,28,150,1,17,100,25,4
-14,shoot,"shoot S",2,380,400,150,23,28,150,1,17,100,25,4
-15,nothing,"nothing "Player chose to do nothing"",3,380,400,150,23,28,150,1,17,100,25,4
-16,shoot,"shoot S",1,382,400,150,23,28,150,1,17,100,25,4
-17,dig,"dig (1, 18)",2,389,400,150,23,28,150,1,17,100,25,4
-18,move,"move (24, 5)",3,394,400,150,23,28,150,1,17,100,24,5
-19,dig,"dig (22, 28)",1,401,400,150,23,28,150,1,17,100,24,5
-20,move,"move (2, 17)",2,406,400,150,23,28,150,2,17,100,24,5
-21,move,"move (23, 6)",3,411,400,150,23,28,150,2,17,100,23,6
-22,move,"move (23, 27)",1,416,400,150,23,27,150,2,17,100,23,6
-23,move,"move (1, 18)",2,421,400,150,23,27,150,1,18,100,23,6
-24,move,"move (23, 7)",3,426,400,150,23,27,150,1,18,100,23,7
-25,shoot,"shoot NE",1,428,400,150,23,27,150,1,18,100,23,7
-26,dig,"dig (1, 19)",2,435,400,150,23,27,150,1,18,100,23,7
-27,shoot,"shoot SW",3,437,400,150,23,27,150,1,18,100,23,7
-28,dig,"dig (23, 26)",1,444,400,150,23,27,150,1,18,100,23,7
-29,dig,"dig (2, 19)",2,451,400,150,23,27,150,1,18,100,23,7
-30,move,"move (22, 7)",3,456,400,150,23,27,150,1,18,100,22,7
-31,move,"move (22, 28)",1,461,400,150,22,28,150,1,18,100,22,7
-32,move,"move (2, 19)",2,466,400,150,22,28,150,2,19,100,22,7
-33,dig,"dig (21, 6)",3,473,400,150,22,28,150,2,19,100,22,7
-34,shoot,"shoot S",1,475,400,150,22,28,150,2,19,100,22,7
-35,dig,"dig (2, 18)",2,482,400,150,22,28,150,2,19,100,22,7
-36,move,"move (23, 7)",3,487,400,150,22,28,150,2,19,100,23,7
-37,dig,"dig (21, 27)",1,494,400,150,22,28,150,2,19,100,23,7
-38,dig,"dig (3, 18)",2,501,400,150,22,28,150,2,19,100,23,7
-39,dig,"dig (24, 6)",3,508,400,150,22,28,150,2,19,100,23,7
-40,move,"move (22, 29)",1,513,400,150,22,29,150,2,19,100,23,7
-41,dig,"dig (1, 20)",2,520,400,150,22,29,150,2,19,100,23,7
-42,nothing,"nothing "Player chose to do nothing"",3,520,400,150,22,29,150,2,19,100,23,7
-43,move,"move (23, 29)",1,525,400,150,23,29,150,2,19,100,23,7
-44,move,"move (2, 18)",2,530,400,150,23,29,150,2,18,100,23,7
-45,shoot,"shoot NE",3,532,400,150,23,29,150,2,18,100,23,7
-46,move,"move (24, 28)",1,537,400,150,24,28,150,2,18,100,23,7
-47,dig,"dig (3, 19)",2,544,400,150,24,28,150,2,18,100,23,7
-48,shoot,"shoot SW",3,546,400,150,24,28,150,2,18,100,23,7
-49,shoot,"shoot SE",1,548,400,150,24,28,150,2,18,100,23,7
-50,move,"move (1, 19)",2,553,400,150,24,28,150,1,19,100,23,7
-51,shoot,"shoot E",3,555,400,150,24,28,150,1,19,100,23,7
-52,move,"move (23, 28)",1,560,400,150,23,28,150,1,19,100,23,7
-53,shoot,"shoot S",2,562,400,150,23,28,150,1,19,100,23,7
-54,shoot,"shoot SW",3,564,400,150,23,28,150,1,19,100,23,7
-55,shoot,"shoot S",1,566,400,150,23,28,150,1,19,100,23,7
-56,move,"move (2, 18)",2,571,400,150,23,28,150,2,18,100,23,7
-57,move,"move (22, 7)",3,576,400,150,23,28,150,2,18,100,22,7
-58,move,"move (22, 29)",1,581,400,150,22,29,150,2,18,100,22,7
-59,dig,"dig (3, 17)",2,588,400,150,22,29,150,2,18,100,22,7
-60,move,"move (22, 8)",3,593,400,150,22,29,150,2,18,100,22,8
-61,move,"move (21, 29)",1,598,400,150,21,29,150,2,18,100,22,8
-62,shoot,"shoot N",2,600,400,150,21,29,150,2,18,100,22,8
-63,move,"move (21, 9)",3,605,400,150,21,29,150,2,18,100,21,9
-64,move,"move (20, 28)",1,610,400,150,20,28,150,2,18,100,21,9
-65,shoot,"shoot SE",2,612,400,150,20,28,150,2,18,100,21,9
-66,move,"move (22, 9)",3,617,400,150,20,28,150,2,18,100,22,9
-67,move,"move (21, 27)",1,622,400,150,21,27,150,2,18,100,22,9
-68,shoot,"shoot W",2,624,400,150,21,27,150,2,18,100,22,9
-69,move,"move (21, 8)",3,629,400,150,21,27,150,2,18,100,21,8
-70,dig,"dig (22, 26)",1,636,400,150,21,27,150,2,18,100,21,8
-71,shoot,"shoot W",2,638,400,150,21,27,150,2,18,100,21,8
-72,move,"move (22, 9)",3,643,400,150,21,27,150,2,18,100,22,9
-73,shoot,"shoot SW",1,645,400,150,21,27,150,2,18,100,22,9
-74,move,"move (3, 18)",2,650,400,150,21,27,150,3,18,100,22,9
-75,shoot,"shoot S",3,652,400,150,21,27,150,3,18,100,22,9
-76,dig,"dig (21, 26)",1,659,400,150,21,27,150,3,18,100,22,9
-77,move,"move (3, 19)",2,664,400,150,21,27,150,3,19,100,22,9
-78,move,"move (23, 9)",3,669,400,150,21,27,150,3,19,100,23,9
-79,shoot,"shoot NW",1,671,400,150,21,27,150,3,19,100,23,9
-80,shoot,"shoot W",2,673,400,150,21,27,150,3,19,100,23,9
-81,shoot,"shoot S",3,675,400,150,21,27,150,3,19,100,23,9
-82,shoot,"shoot SE",1,677,400,150,21,27,150,3,19,100,23,9
-83,move,"move (4, 20)",2,682,400,150,21,27,150,4,20,100,23,9
-84,move,"move (22, 8)",3,687,400,150,21,27,150,4,20,100,22,8
-85,shoot,"shoot E",1,689,400,150,21,27,150,4,20,100,22,8
-86,dig,"dig (4, 19)",2,696,400,150,21,27,150,4,20,100,22,8
-87,shoot,"shoot N",3,698,400,150,21,27,150,4,20,100,22,8
-88,move,"move (20, 28)",1,703,400,150,20,28,150,4,20,100,22,8
-89,shoot,"shoot W",2,705,400,150,20,28,150,4,20,100,22,8
-90,move,"move (22, 9)",3,710,400,150,20,28,150,4,20,100,22,9
-91,move,"move (20, 29)",1,715,400,150,20,29,150,4,20,100,22,9
-92,shoot,"shoot NW",2,717,400,150,20,29,150,4,20,100,22,9
-93,nothing,"nothing "Player chose to do nothing"",3,717,400,150,20,29,150,4,20,100,22,9
-94,move,"move (21, 29)",1,722,400,150,21,29,150,4,20,100,22,9
-95,move,"move (5, 20)",2,727,400,150,21,29,150,5,20,100,22,9
-96,move,"move (22, 8)",3,732,400,150,21,29,150,5,20,100,22,8
-97,dig,"dig (21, 30)",1,739,400,150,21,29,150,5,20,100,22,8
-98,dig,"dig (6, 19)",2,746,400,150,21,29,150,5,20,100,22,8
-99,move,"move (21, 7)",3,751,400,150,21,29,150,5,20,100,21,7
-100,move,"move (22, 28)",1,756,400,150,22,28,150,5,20,100,21,7
-101,move,"move (6, 20)",2,758,392,142,22,28,150,6,20,100,21,7
-102,move,"move (20, 6)",3,763,392,142,22,28,150,6,20,100,20,6
-103,move,"move (21, 29)",1,768,392,142,21,29,150,6,20,100,20,6
-104,dig,"dig (7, 19)",2,775,392,142,21,29,150,6,20,100,20,6
-105,shoot,"shoot NW",3,777,392,142,21,29,150,6,20,100,20,6
-106,dig,"dig (22, 30)",1,784,392,142,21,29,150,6,20,100,20,6
-107,dig,"dig (5, 19)",2,789,384,134,21,29,150,6,20,100,20,6
-108,shoot,"shoot N",3,791,384,134,21,29,150,6,20,100,20,6
-109,shoot,"shoot SE",1,793,384,134,21,29,150,6,20,100,20,6
-110,shoot,"shoot E",2,795,384,134,21,29,150,6,20,100,20,6
-111,shoot,"shoot SE",3,797,384,134,21,29,150,6,20,100,20,6
-112,move,"move (22, 28)",1,802,384,134,22,28,150,6,20,100,20,6
-113,dig,"dig (5, 21)",2,806,376,126,22,28,150,6,20,100,20,6
-114,dig,"dig (20, 7)",3,813,376,126,22,28,150,6,20,100,20,6
-115,shoot,"shoot W",1,826,368,118,22,28,150,6,20,100,20,6
-116,shoot,"shoot SW",2,826,360,110,22,28,150,6,20,100,20,6
-117,dig,"dig (21, 5)",3,833,360,110,22,28,150,6,20,100,20,6
-118,shoot,"shoot N",1,846,352,102,22,28,150,6,20,100,20,6
-119,move,"move (5, 21)",2,848,344,94,22,28,150,5,21,100,20,6
-120,dig,"dig (19, 7)",3,855,344,94,22,28,150,5,21,100,20,6
-121,move,"move (23, 27)",1,860,344,94,23,27,150,5,21,100,20,6
-122,shoot,"shoot E",2,860,336,86,23,27,150,5,21,100,20,6
-123,shoot,"shoot NE",3,859,328,78,23,27,150,5,21,100,20,6
-124,move,"move (24, 27)",1,864,328,78,24,27,150,5,21,100,20,6
-125,move,"move (4, 22)",2,866,320,70,24,27,150,4,22,100,20,6
-126,move,"move (21, 5)",3,869,312,62,24,27,150,4,22,100,21,5
-127,move,"move (25, 28)",1,874,312,62,25,28,150,4,22,100,21,5
-128,shoot,"shoot NW",2,876,312,62,25,28,150,4,22,100,21,5
-129,dig,"dig (22, 5)",3,880,304,54,25,28,150,4,22,100,21,5
-130,move,"move (24, 27)",1,885,304,54,24,27,150,4,22,100,21,5
-131,dig,"dig (3, 23)",2,889,296,46,24,27,150,4,22,100,21,5
-132,move,"move (20, 5)",3,892,288,38,24,27,150,4,22,100,20,5
-133,move,"move (25, 28)",1,897,288,38,25,28,150,4,22,100,20,5
-134,shoot,"shoot S",2,896,280,30,25,28,150,4,22,100,20,5
-135,move,"move (19, 5)",3,898,272,22,25,28,150,4,22,100,19,5
-136,shoot,"shoot W",1,914,272,22,25,28,150,4,22,100,19,5
-137,nothing,"nothing "Player chose to do nothing"",2,912,264,14,25,28,150,4,22,100,19,5
-138,move,"move (18, 5)",3,914,256,6,25,28,150,4,22,100,18,5
-139,move,"move (24, 27)",1,919,256,6,24,27,150,4,22,100,18,5
-140,move,"move (5, 21)",2,922,250,-2,24,27,150,5,21,100,18,5
-141,shoot,"shoot E",3,924,250,-2,24,27,150,5,21,100,18,5
-142,shoot,"shoot S",2,926,250,-2,24,27,150,5,21,100,18,5
-143,dig,"dig (19, 6)",3,933,250,-2,24,27,150,5,21,100,18,5
-144,move,"move (6, 20)",2,938,250,-2,24,27,150,6,20,100,18,5
-145,dig,"dig (18, 6)",3,945,250,-2,24,27,150,6,20,100,18,5
-146,dig,"dig (7, 20)",2,952,250,-2,24,27,150,6,20,100,18,5
-147,move,"move (19, 4)",3,957,250,-2,24,27,150,6,20,100,19,4
-148,move,"move (7, 20)",2,962,250,-2,24,27,150,7,20,100,19,4
-149,move,"move (18, 5)",3,967,250,-2,24,27,150,7,20,100,18,5
-150,move,"move (7, 21)",2,972,250,-2,24,27,150,7,21,100,18,5
-151,move,"move (19, 5)",3,977,250,-2,24,27,150,7,21,100,19,5
-152,shoot,"shoot SW",2,979,250,-2,24,27,150,7,21,100,19,5
-153,move,"move (19, 4)",3,984,250,-2,24,27,150,7,21,100,19,4
-154,move,"move (8, 21)",2,989,250,-2,24,27,150,8,21,100,19,4
-155,dig,"dig (20, 3)",3,996,250,-2,24,27,150,8,21,100,19,4
-156,move,"move (9, 21)",2,1001,250,-2,24,27,150,9,21,100,19,4
-157,dig,"dig (18, 3)",3,1008,250,-2,24,27,150,9,21,100,19,4
-158,move,"move (9, 22)",2,1013,250,-2,24,27,150,9,22,100,19,4
-159,move,"move (18, 4)",3,1018,250,-2,24,27,150,9,22,100,18,4
-160,shoot,"shoot NE",2,1020,250,-2,24,27,150,9,22,100,18,4
-161,move,"move (17, 3)",3,1025,250,-2,24,27,150,9,22,100,17,3
-162,move,"move (8, 21)",2,1030,250,-2,24,27,150,8,21,100,17,3
-163,shoot,"shoot SE",3,1032,250,-2,24,27,150,8,21,100,17,3
-164,move,"move (9, 21)",2,1037,250,-2,24,27,150,9,21,100,17,3
-165,move,"move (18, 4)",3,1042,250,-2,24,27,150,9,21,100,18,4
-166,shoot,"shoot E",2,1044,250,-2,24,27,150,9,21,100,18,4
-167,move,"move (17, 5)",3,1049,250,-2,24,27,150,9,21,100,17,5
-168,dig,"dig (9, 20)",2,1056,250,-2,24,27,150,9,21,100,17,5
-169,dig,"dig (17, 6)",3,1063,250,-2,24,27,150,9,21,100,17,5
-170,shoot,"shoot W",2,1065,250,-2,24,27,150,9,21,100,17,5
-171,move,"move (17, 6)",3,1070,250,-2,24,27,150,9,21,100,17,6
-172,move,"move (10, 21)",2,1075,250,-2,24,27,150,10,21,100,17,6
-173,move,"move (17, 5)",3,1080,250,-2,24,27,150,10,21,100,17,5
-174,move,"move (9, 21)",2,1085,250,-2,24,27,150,9,21,100,17,5
-175,move,"move (18, 5)",3,1090,250,-2,24,27,150,9,21,100,18,5
-176,dig,"dig (8, 20)",2,1097,250,-2,24,27,150,9,21,100,18,5
-177,shoot,"shoot NW",3,1099,250,-2,24,27,150,9,21,100,18,5
-178,move,"move (10, 21)",2,1104,250,-2,24,27,150,10,21,100,18,5
-179,move,"move (17, 6)",3,1109,250,-2,24,27,150,10,21,100,17,6
-180,move,"move (9, 20)",2,1114,250,-2,24,27,150,9,20,100,17,6
-181,dig,"dig (18, 7)",3,1121,250,-2,24,27,150,9,20,100,17,6
-182,move,"move (10, 21)",2,1126,250,-2,24,27,150,10,21,100,17,6
-183,dig,"dig (16, 7)",3,1130,242,-2,24,27,142,10,21,100,17,6
-184,move,"move (11, 20)",2,1135,242,-2,24,27,142,11,20,100,17,6
-185,move,"move (16, 7)",3,1140,242,-2,24,27,142,11,20,100,16,7
-186,move,"move (12, 21)",2,1145,242,-2,24,27,142,12,21,100,16,7
-187,move,"move (15, 8)",3,1148,234,-2,24,27,134,12,21,100,15,8
-188,shoot,"shoot N",2,1164,234,-2,24,27,134,12,21,100,15,8
-189,shoot,"shoot S",3,1163,226,-2,24,27,126,12,21,100,15,8
-190,shoot,"shoot N",2,1179,226,-2,24,27,126,12,21,100,15,8
-191,shoot,"shoot NW",3,1178,218,-2,24,27,118,12,21,100,15,8
-192,shoot,"shoot E",2,1192,210,-2,24,27,110,12,21,100,15,8
-193,move,"move (15, 9)",3,1197,210,-2,24,27,110,12,21,100,15,9
-194,shoot,"shoot E",2,1210,202,-2,24,27,102,12,21,100,15,9
-195,move,"move (14, 9)",3,1212,194,-2,24,27,94,12,21,100,14,9
-196,shoot,"shoot E",2,1228,194,-2,24,27,94,12,21,100,14,9
-197,shoot,"shoot NW",3,1228,186,-2,24,27,86,12,21,100,14,9
-198,move,"move (11, 21)",2,1233,186,-2,24,27,86,11,21,100,14,9
-199,move,"move (13, 9)",3,1235,178,-2,24,27,78,11,21,100,13,9
-200,move,"move (10, 22)",2,1240,178,-2,24,27,78,10,22,100,13,9
-201,move,"move (12, 8)",3,1242,170,-2,24,27,70,10,22,100,12,8
-202,shoot,"shoot NE",2,1258,170,-2,24,27,70,10,22,100,12,8
-203,dig,"dig (11, 9)",3,1265,170,-2,24,27,70,10,22,100,12,8
-204,move,"move (11, 21)",2,1268,162,-2,24,27,62,11,21,100,12,8
-205,shoot,"shoot E",3,1267,154,-2,24,27,54,11,21,100,12,8
-206,move,"move (10, 22)",2,1272,154,-2,24,27,54,10,22,100,12,8
-207,shoot,"shoot NW",3,1271,146,-2,24,27,46,10,22,100,12,8
-208,move,"move (11, 23)",2,1276,146,-2,24,27,46,11,23,100,12,8
-209,shoot,"shoot N",3,1278,146,-2,24,27,46,11,23,100,12,8
-210,move,"move (12, 24)",2,1283,146,-2,24,27,46,12,24,100,12,8
-211,dig,"dig (12, 9)",3,1288,138,-2,24,27,38,12,24,100,12,8
-212,move,"move (11, 25)",2,1290,130,-2,24,27,30,11,25,100,12,8
-213,dig,"dig (13, 8)",3,1294,122,-2,24,27,22,11,25,100,12,8
-214,move,"move (12, 24)",2,1299,122,-2,24,27,22,12,24,100,12,8
-215,move,"move (11, 9)",3,1302,114,-2,24,27,14,12,24,100,11,9
-216,move,"move (11, 25)",2,1307,114,-2,24,27,14,11,25,100,11,9
-217,dig,"dig (11, 10)",3,1311,106,-2,24,27,6,11,25,100,11,9
-218,move,"move (10, 26)",2,1316,106,-2,24,27,6,10,26,100,11,9
-219,dig,"dig (10, 8)",3,1323,106,-2,24,27,6,10,26,100,11,9
-220,move,"move (9, 25)",2,1328,106,-2,24,27,6,9,25,100,11,9
-221,dig,"dig (10, 9)",3,1335,106,-2,24,27,6,9,25,100,11,9
-222,move,"move (10, 26)",2,1340,106,-2,24,27,6,10,26,100,11,9
-223,shoot,"shoot SE",3,1342,106,-2,24,27,6,10,26,100,11,9
-224,move,"move (9, 27)",2,1345,100,-2,24,27,-2,9,27,100,11,9
-225,move,"move (10, 9)",3,1350,100,-2,24,27,-2,9,27,100,10,9
-226,shoot,"shoot N",3,1352,100,-2,24,27,-2,9,27,100,10,9
-227,dig,"dig (9, 10)",3,1359,100,-2,24,27,-2,9,27,100,10,9
-228,move,"move (11, 9)",3,1364,100,-2,24,27,-2,9,27,100,11,9
-229,dig,"dig (11, 8)",3,1371,100,-2,24,27,-2,9,27,100,11,9
-230,move,"move (10, 9)",3,1376,100,-2,24,27,-2,9,27,100,10,9
-231,move,"move (9, 8)",3,1381,100,-2,24,27,-2,9,27,100,9,8
-232,move,"move (8, 8)",3,1386,100,-2,24,27,-2,9,27,100,8,8
-233,move,"move (7, 9)",3,1391,100,-2,24,27,-2,9,27,100,7,9
-234,move,"move (7, 10)",3,1396,100,-2,24,27,-2,9,27,100,7,10
-235,dig,"dig (6, 11)",3,1403,100,-2,24,27,-2,9,27,100,7,10
-236,move,"move (6, 11)",3,1408,100,-2,24,27,-2,9,27,100,6,11
-237,move,"move (5, 12)",3,1413,100,-2,24,27,-2,9,27,100,5,12
-238,dig,"dig (4, 11)",3,1420,100,-2,24,27,-2,9,27,100,5,12
-239,move,"move (4, 11)",3,1425,100,-2,24,27,-2,9,27,100,4,11
-240,move,"move (3, 11)",3,1430,100,-2,24,27,-2,9,27,100,3,11
-241,dig,"dig (2, 10)",3,1437,100,-2,24,27,-2,9,27,100,3,11
-242,move,"move (4, 11)",3,1442,100,-2,24,27,-2,9,27,100,4,11
-243,dig,"dig (3, 12)",3,1449,100,-2,24,27,-2,9,27,100,4,11
-244,dig,"dig (5, 10)",3,1456,100,-2,24,27,-2,9,27,100,4,11
-245,move,"move (5, 12)",3,1461,100,-2,24,27,-2,9,27,100,5,12
-246,dig,"dig (5, 13)",3,1468,100,-2,24,27,-2,9,27,100,5,12
-247,move,"move (5, 13)",3,1473,100,-2,24,27,-2,9,27,100,5,13
-248,move,"move (6, 12)",3,1478,100,-2,24,27,-2,9,27,100,6,12
-249,move,"move (5, 13)",3,1483,100,-2,24,27,-2,9,27,100,5,13
-250,move,"move (6, 12)",3,1488,100,-2,24,27,-2,9,27,100,6,12
-251,move,"move (5, 13)",3,1493,100,-2,24,27,-2,9,27,100,5,13
-252,move,"move (6, 12)",3,1498,100,-2,24,27,-2,9,27,100,6,12
-253,move,"move (5, 13)",3,1503,100,-2,24,27,-2,9,27,100,5,13
-254,move,"move (6, 12)",3,1508,100,-2,24,27,-2,9,27,100,6,12
-255,move,"move (6, 13)",3,1513,100,-2,24,27,-2,9,27,100,6,13
-256,move,"move (7, 13)",3,1518,100,-2,24,27,-2,9,27,100,7,13
-257,move,"move (6, 12)",3,1523,100,-2,24,27,-2,9,27,100,6,12
-258,shoot,"shoot S",3,1536,92,-2,24,27,-2,9,27,92,6,12
-259,move,"move (5, 13)",3,1541,92,-2,24,27,-2,9,27,92,5,13
-260,move,"move (6, 14)",3,1546,92,-2,24,27,-2,9,27,92,6,14
-261,shoot,"shoot S",3,1560,84,-2,24,27,-2,9,27,84,6,14
-262,move,"move (6, 13)",3,1565,84,-2,24,27,-2,9,27,84,6,13
-263,shoot,"shoot S",3,1581,84,-2,24,27,-2,9,27,84,6,13
-264,shoot,"shoot S",3,1597,84,-2,24,27,-2,9,27,84,6,13
-265,shoot,"shoot S",3,1613,84,-2,24,27,-2,9,27,84,6,13
-266,shoot,"shoot S",3,1626,76,-2,24,27,-2,9,27,76,6,13
-267,shoot,"shoot S",3,1642,76,-2,24,27,-2,9,27,76,6,13
-268,move,"move (5, 14)",3,1647,76,-2,24,27,-2,9,27,76,5,14
-269,move,"move (6, 13)",3,1652,76,-2,24,27,-2,9,27,76,6,13
-270,shoot,"shoot S",3,1668,76,-2,24,27,-2,9,27,76,6,13
-271,move,"move (5, 13)",3,1673,76,-2,24,27,-2,9,27,76,5,13
-272,move,"move (6, 12)",3,1678,76,-2,24,27,-2,9,27,76,6,12
-273,move,"move (6, 13)",3,1683,76,-2,24,27,-2,9,27,76,6,13
-274,shoot,"shoot S",3,1699,76,-2,24,27,-2,9,27,76,6,13
-275,shoot,"shoot S",3,1712,68,-2,24,27,-2,9,27,68,6,13
-276,shoot,"shoot S",3,1728,68,-2,24,27,-2,9,27,68,6,13
-277,shoot,"shoot S",3,1744,68,-2,24,27,-2,9,27,68,6,13
-278,move,"move (7, 14)",3,1749,68,-2,24,27,-2,9,27,68,7,14
-279,shoot,"shoot SW",3,1765,68,-2,24,27,-2,9,27,68,7,14
-280,shoot,"shoot S",3,1779,60,-2,24,27,-2,9,27,60,7,14
-281,move,"move (6, 13)",3,1784,60,-2,24,27,-2,9,27,60,6,13
-282,move,"move (7, 14)",3,1789,60,-2,24,27,-2,9,27,60,7,14
-283,move,"move (6, 13)",3,1794,60,-2,24,27,-2,9,27,60,6,13
-284,shoot,"shoot S",3,1807,52,-2,24,27,-2,9,27,52,6,13
-285,move,"move (7, 14)",3,1812,52,-2,24,27,-2,9,27,52,7,14
-286,move,"move (7, 15)",3,1817,52,-2,24,27,-2,9,27,52,7,15
-287,move,"move (8, 16)",3,1819,44,-2,24,27,-2,9,27,44,8,16
-288,move,"move (9, 17)",3,1824,44,-2,24,27,-2,9,27,44,9,17
-289,move,"move (10, 18)",3,1829,44,-2,24,27,-2,9,27,44,10,18
-290,move,"move (9, 19)",3,1834,44,-2,24,27,-2,9,27,44,9,19
-291,move,"move (8, 19)",3,1839,44,-2,24,27,-2,9,27,44,8,19
-292,move,"move (9, 18)",3,1844,44,-2,24,27,-2,9,27,44,9,18
-293,move,"move (8, 19)",3,1849,44,-2,24,27,-2,9,27,44,8,19
-294,move,"move (9, 18)",3,1854,44,-2,24,27,-2,9,27,44,9,18
-295,move,"move (8, 19)",3,1859,44,-2,24,27,-2,9,27,44,8,19
-296,shoot,"shoot N",3,1875,44,-2,24,27,-2,9,27,44,8,19
-297,move,"move (9, 18)",3,1880,44,-2,24,27,-2,9,27,44,9,18
-298,move,"move (9, 17)",3,1885,44,-2,24,27,-2,9,27,44,9,17
-299,move,"move (8, 16)",3,1888,36,-2,24,27,-2,9,27,36,8,16
-300,move,"move (9, 15)",3,1893,36,-2,24,27,-2,9,27,36,9,15
-301,move,"move (9, 14)",3,1898,36,-2,24,27,-2,9,27,36,9,14
-302,move,"move (10, 13)",3,1903,36,-2,24,27,-2,9,27,36,10,13
-303,move,"move (9, 14)",3,1908,36,-2,24,27,-2,9,27,36,9,14
-304,move,"move (8, 14)",3,1913,36,-2,24,27,-2,9,27,36,8,14
-305,move,"move (9, 14)",3,1918,36,-2,24,27,-2,9,27,36,9,14
-306,move,"move (8, 14)",3,1923,36,-2,24,27,-2,9,27,36,8,14
-307,move,"move (7, 14)",3,1928,36,-2,24,27,-2,9,27,36,7,14
-308,shoot,"shoot SE",3,1941,28,-2,24,27,-2,9,27,28,7,14
-309,move,"move (6, 13)",3,1946,28,-2,24,27,-2,9,27,28,6,13
-310,move,"move (5, 13)",3,1951,28,-2,24,27,-2,9,27,28,5,13
-311,move,"move (6, 12)",3,1956,28,-2,24,27,-2,9,27,28,6,12
-312,move,"move (5, 12)",3,1961,28,-2,24,27,-2,9,27,28,5,12
-313,move,"move (6, 12)",3,1966,28,-2,24,27,-2,9,27,28,6,12
-314,shoot,"shoot SE",3,1982,28,-2,24,27,-2,9,27,28,6,12
-315,move,"move (5, 12)",3,1987,28,-2,24,27,-2,9,27,28,5,12
-316,move,"move (5, 13)",3,1992,28,-2,24,27,-2,9,27,28,5,13
-317,move,"move (5, 14)",3,1997,28,-2,24,27,-2,9,27,28,5,14
-318,move,"move (4, 14)",3,2002,28,-2,24,27,-2,9,27,28,4,14
-319,move,"move (5, 13)",3,2007,28,-2,24,27,-2,9,27,28,5,13
-320,move,"move (4, 14)",3,2012,28,-2,24,27,-2,9,27,28,4,14
-321,move,"move (5, 15)",3,2017,28,-2,24,27,-2,9,27,28,5,15
-322,move,"move (4, 14)",3,2022,28,-2,24,27,-2,9,27,28,4,14
-323,move,"move (5, 14)",3,2024,20,-2,24,27,-2,9,27,20,5,14
-324,move,"move (5, 15)",3,2029,20,-2,24,27,-2,9,27,20,5,15
-325,move,"move (4, 16)",3,2034,20,-2,24,27,-2,9,27,20,4,16
-326,move,"move (3, 17)",3,2037,12,-2,24,27,-2,9,27,12,3,17
-327,move,"move (4, 18)",3,2042,12,-2,24,27,-2,9,27,12,4,18
-328,move,"move (3, 19)",3,2047,12,-2,24,27,-2,9,27,12,3,19
-329,move,"move (2, 19)",3,2052,12,-2,24,27,-2,9,27,12,2,19
-330,move,"move (3, 19)",3,2057,12,-2,24,27,-2,9,27,12,3,19
-331,move,"move (4, 20)",3,2062,12,-2,24,27,-2,9,27,12,4,20
-332,move,"move (4, 21)",3,2067,12,-2,24,27,-2,9,27,12,4,21
-333,move,"move (3, 20)",3,2072,12,-2,24,27,-2,9,27,12,3,20
-334,move,"move (2, 21)",3,2077,12,-2,24,27,-2,9,27,12,2,21
-335,move,"move (2, 22)",3,2082,12,-2,24,27,-2,9,27,12,2,22
-336,move,"move (1, 22)",3,2087,12,-2,24,27,-2,9,27,12,1,22
-337,move,"move (2, 21)",3,2092,12,-2,24,27,-2,9,27,12,2,21
-338,move,"move (2, 22)",3,2097,12,-2,24,27,-2,9,27,12,2,22
-339,move,"move (3, 22)",3,2102,12,-2,24,27,-2,9,27,12,3,22
-340,move,"move (4, 22)",3,2107,12,-2,24,27,-2,9,27,12,4,22
-341,move,"move (3, 21)",3,2112,12,-2,24,27,-2,9,27,12,3,21
-342,move,"move (2, 21)",3,2117,12,-2,24,27,-2,9,27,12,2,21
-343,move,"move (1, 22)",3,2119,4,-2,24,27,-2,9,27,4,1,22
-344,move,"move (2, 21)",3,2124,4,-2,24,27,-2,9,27,4,2,21
-345,move,"move (3, 21)",3,2129,4,-2,24,27,-2,9,27,4,3,21
diff --git a/tests/replays/2019.06.28.21.39.08/B-init.json b/tests/replays/2019.06.28.21.39.08/B-init.json
deleted file mode 100644
index ee2d57c..0000000
--- a/tests/replays/2019.06.28.21.39.08/B-init.json
+++ /dev/null
@@ -1 +0,0 @@
-{"currentRound":1,"maxRounds":400,"pushbackDamage":20,"mapSize":33,"currentWormId":1,"consecutiveDoNothingCount":0,"myPlayer":{"id":2,"score":133,"health":400,"currentWormId":1,"remainingWormSelections":5,"worms":[{"id":1,"health":150,"position":{"x":31,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":2,"health":150,"position":{"x":8,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":3,"health":100,"position":{"x":8,"y":4},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"profession":"Agent"}]},"opponents":[{"id":1,"score":133,"currentWormId":1,"remainingWormSelections":5,"worms":[{"id":1,"health":150,"position":{"x":24,"y":28},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":2,"health":150,"position":{"x":1,"y":16},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":3,"health":100,"position":{"x":24,"y":4},"diggingRange":1,"movementRange":1,"profession":"Agent"}]}],"map":[[{"x":0,"y":0,"type":"DEEP_SPACE"},{"x":1,"y":0,"type":"DEEP_SPACE"},{"x":2,"y":0,"type":"DEEP_SPACE"},{"x":3,"y":0,"type":"DEEP_SPACE"},{"x":4,"y":0,"type":"DEEP_SPACE"},{"x":5,"y":0,"type":"DEEP_SPACE"},{"x":6,"y":0,"type":"DEEP_SPACE"},{"x":7,"y":0,"type":"DEEP_SPACE"},{"x":8,"y":0,"type":"DEEP_SPACE"},{"x":9,"y":0,"type":"DEEP_SPACE"},{"x":10,"y":0,"type":"DEEP_SPACE"},{"x":11,"y":0,"type":"AIR"},{"x":12,"y":0,"type":"AIR"},{"x":13,"y":0,"type":"DIRT"},{"x":14,"y":0,"type":"AIR"},{"x":15,"y":0,"type":"AIR"},{"x":16,"y":0,"type":"AIR"},{"x":17,"y":0,"type":"AIR"},{"x":18,"y":0,"type":"AIR"},{"x":19,"y":0,"type":"DIRT"},{"x":20,"y":0,"type":"AIR"},{"x":21,"y":0,"type":"AIR"},{"x":22,"y":0,"type":"DEEP_SPACE"},{"x":23,"y":0,"type":"DEEP_SPACE"},{"x":24,"y":0,"type":"DEEP_SPACE"},{"x":25,"y":0,"type":"DEEP_SPACE"},{"x":26,"y":0,"type":"DEEP_SPACE"},{"x":27,"y":0,"type":"DEEP_SPACE"},{"x":28,"y":0,"type":"DEEP_SPACE"},{"x":29,"y":0,"type":"DEEP_SPACE"},{"x":30,"y":0,"type":"DEEP_SPACE"},{"x":31,"y":0,"type":"DEEP_SPACE"},{"x":32,"y":0,"type":"DEEP_SPACE"}],[{"x":0,"y":1,"type":"DEEP_SPACE"},{"x":1,"y":1,"type":"DEEP_SPACE"},{"x":2,"y":1,"type":"DEEP_SPACE"},{"x":3,"y":1,"type":"DEEP_SPACE"},{"x":4,"y":1,"type":"DEEP_SPACE"},{"x":5,"y":1,"type":"DEEP_SPACE"},{"x":6,"y":1,"type":"DEEP_SPACE"},{"x":7,"y":1,"type":"DEEP_SPACE"},{"x":8,"y":1,"type":"AIR"},{"x":9,"y":1,"type":"AIR"},{"x":10,"y":1,"type":"DIRT"},{"x":11,"y":1,"type":"AIR"},{"x":12,"y":1,"type":"AIR"},{"x":13,"y":1,"type":"DIRT"},{"x":14,"y":1,"type":"AIR"},{"x":15,"y":1,"type":"AIR"},{"x":16,"y":1,"type":"AIR"},{"x":17,"y":1,"type":"AIR"},{"x":18,"y":1,"type":"AIR"},{"x":19,"y":1,"type":"DIRT"},{"x":20,"y":1,"type":"AIR"},{"x":21,"y":1,"type":"AIR"},{"x":22,"y":1,"type":"DIRT"},{"x":23,"y":1,"type":"AIR"},{"x":24,"y":1,"type":"AIR"},{"x":25,"y":1,"type":"DEEP_SPACE"},{"x":26,"y":1,"type":"DEEP_SPACE"},{"x":27,"y":1,"type":"DEEP_SPACE"},{"x":28,"y":1,"type":"DEEP_SPACE"},{"x":29,"y":1,"type":"DEEP_SPACE"},{"x":30,"y":1,"type":"DEEP_SPACE"},{"x":31,"y":1,"type":"DEEP_SPACE"},{"x":32,"y":1,"type":"DEEP_SPACE"}],[{"x":0,"y":2,"type":"DEEP_SPACE"},{"x":1,"y":2,"type":"DEEP_SPACE"},{"x":2,"y":2,"type":"DEEP_SPACE"},{"x":3,"y":2,"type":"DEEP_SPACE"},{"x":4,"y":2,"type":"DEEP_SPACE"},{"x":5,"y":2,"type":"DEEP_SPACE"},{"x":6,"y":2,"type":"DEEP_SPACE"},{"x":7,"y":2,"type":"DIRT"},{"x":8,"y":2,"type":"DIRT"},{"x":9,"y":2,"type":"DIRT"},{"x":10,"y":2,"type":"DIRT"},{"x":11,"y":2,"type":"AIR"},{"x":12,"y":2,"type":"DIRT"},{"x":13,"y":2,"type":"DIRT"},{"x":14,"y":2,"type":"DIRT"},{"x":15,"y":2,"type":"AIR"},{"x":16,"y":2,"type":"AIR"},{"x":17,"y":2,"type":"AIR"},{"x":18,"y":2,"type":"DIRT"},{"x":19,"y":2,"type":"DIRT"},{"x":20,"y":2,"type":"DIRT"},{"x":21,"y":2,"type":"AIR"},{"x":22,"y":2,"type":"DIRT"},{"x":23,"y":2,"type":"DIRT"},{"x":24,"y":2,"type":"DIRT"},{"x":25,"y":2,"type":"DIRT"},{"x":26,"y":2,"type":"DEEP_SPACE"},{"x":27,"y":2,"type":"DEEP_SPACE"},{"x":28,"y":2,"type":"DEEP_SPACE"},{"x":29,"y":2,"type":"DEEP_SPACE"},{"x":30,"y":2,"type":"DEEP_SPACE"},{"x":31,"y":2,"type":"DEEP_SPACE"},{"x":32,"y":2,"type":"DEEP_SPACE"}],[{"x":0,"y":3,"type":"DEEP_SPACE"},{"x":1,"y":3,"type":"DEEP_SPACE"},{"x":2,"y":3,"type":"DEEP_SPACE"},{"x":3,"y":3,"type":"DEEP_SPACE"},{"x":4,"y":3,"type":"DEEP_SPACE"},{"x":5,"y":3,"type":"DEEP_SPACE"},{"x":6,"y":3,"type":"DIRT"},{"x":7,"y":3,"type":"AIR"},{"x":8,"y":3,"type":"AIR"},{"x":9,"y":3,"type":"AIR"},{"x":10,"y":3,"type":"DIRT"},{"x":11,"y":3,"type":"DIRT"},{"x":12,"y":3,"type":"DIRT"},{"x":13,"y":3,"type":"DIRT"},{"x":14,"y":3,"type":"DIRT"},{"x":15,"y":3,"type":"AIR"},{"x":16,"y":3,"type":"AIR"},{"x":17,"y":3,"type":"AIR"},{"x":18,"y":3,"type":"DIRT"},{"x":19,"y":3,"type":"DIRT"},{"x":20,"y":3,"type":"DIRT"},{"x":21,"y":3,"type":"DIRT"},{"x":22,"y":3,"type":"DIRT"},{"x":23,"y":3,"type":"AIR"},{"x":24,"y":3,"type":"AIR"},{"x":25,"y":3,"type":"AIR"},{"x":26,"y":3,"type":"DIRT"},{"x":27,"y":3,"type":"DEEP_SPACE"},{"x":28,"y":3,"type":"DEEP_SPACE"},{"x":29,"y":3,"type":"DEEP_SPACE"},{"x":30,"y":3,"type":"DEEP_SPACE"},{"x":31,"y":3,"type":"DEEP_SPACE"},{"x":32,"y":3,"type":"DEEP_SPACE"}],[{"x":0,"y":4,"type":"DEEP_SPACE"},{"x":1,"y":4,"type":"DEEP_SPACE"},{"x":2,"y":4,"type":"DEEP_SPACE"},{"x":3,"y":4,"type":"DEEP_SPACE"},{"x":4,"y":4,"type":"AIR"},{"x":5,"y":4,"type":"AIR"},{"x":6,"y":4,"type":"DIRT"},{"x":7,"y":4,"type":"AIR"},{"x":8,"y":4,"type":"AIR","occupier":{"id":3,"playerId":2,"health":100,"position":{"x":8,"y":4},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"profession":"Agent"}},{"x":9,"y":4,"type":"AIR"},{"x":10,"y":4,"type":"DIRT"},{"x":11,"y":4,"type":"DIRT"},{"x":12,"y":4,"type":"AIR"},{"x":13,"y":4,"type":"AIR"},{"x":14,"y":4,"type":"AIR"},{"x":15,"y":4,"type":"AIR"},{"x":16,"y":4,"type":"AIR"},{"x":17,"y":4,"type":"AIR"},{"x":18,"y":4,"type":"AIR"},{"x":19,"y":4,"type":"AIR"},{"x":20,"y":4,"type":"AIR"},{"x":21,"y":4,"type":"DIRT"},{"x":22,"y":4,"type":"DIRT"},{"x":23,"y":4,"type":"AIR"},{"x":24,"y":4,"type":"AIR","occupier":{"id":3,"playerId":1,"health":100,"position":{"x":24,"y":4},"diggingRange":1,"movementRange":1,"profession":"Agent"}},{"x":25,"y":4,"type":"AIR"},{"x":26,"y":4,"type":"DIRT"},{"x":27,"y":4,"type":"AIR"},{"x":28,"y":4,"type":"AIR"},{"x":29,"y":4,"type":"DEEP_SPACE"},{"x":30,"y":4,"type":"DEEP_SPACE"},{"x":31,"y":4,"type":"DEEP_SPACE"},{"x":32,"y":4,"type":"DEEP_SPACE"}],[{"x":0,"y":5,"type":"DEEP_SPACE"},{"x":1,"y":5,"type":"DEEP_SPACE"},{"x":2,"y":5,"type":"DEEP_SPACE"},{"x":3,"y":5,"type":"DEEP_SPACE"},{"x":4,"y":5,"type":"AIR"},{"x":5,"y":5,"type":"AIR"},{"x":6,"y":5,"type":"DIRT"},{"x":7,"y":5,"type":"AIR"},{"x":8,"y":5,"type":"AIR"},{"x":9,"y":5,"type":"AIR"},{"x":10,"y":5,"type":"DIRT"},{"x":11,"y":5,"type":"DIRT"},{"x":12,"y":5,"type":"AIR"},{"x":13,"y":5,"type":"AIR"},{"x":14,"y":5,"type":"AIR"},{"x":15,"y":5,"type":"AIR"},{"x":16,"y":5,"type":"AIR"},{"x":17,"y":5,"type":"AIR"},{"x":18,"y":5,"type":"AIR"},{"x":19,"y":5,"type":"AIR"},{"x":20,"y":5,"type":"AIR"},{"x":21,"y":5,"type":"DIRT"},{"x":22,"y":5,"type":"DIRT"},{"x":23,"y":5,"type":"AIR"},{"x":24,"y":5,"type":"AIR"},{"x":25,"y":5,"type":"AIR"},{"x":26,"y":5,"type":"DIRT"},{"x":27,"y":5,"type":"AIR"},{"x":28,"y":5,"type":"AIR"},{"x":29,"y":5,"type":"DEEP_SPACE"},{"x":30,"y":5,"type":"DEEP_SPACE"},{"x":31,"y":5,"type":"DEEP_SPACE"},{"x":32,"y":5,"type":"DEEP_SPACE"}],[{"x":0,"y":6,"type":"DEEP_SPACE"},{"x":1,"y":6,"type":"DEEP_SPACE"},{"x":2,"y":6,"type":"DEEP_SPACE"},{"x":3,"y":6,"type":"AIR"},{"x":4,"y":6,"type":"AIR"},{"x":5,"y":6,"type":"AIR"},{"x":6,"y":6,"type":"DIRT"},{"x":7,"y":6,"type":"DIRT"},{"x":8,"y":6,"type":"DIRT"},{"x":9,"y":6,"type":"DIRT"},{"x":10,"y":6,"type":"DIRT"},{"x":11,"y":6,"type":"DIRT"},{"x":12,"y":6,"type":"AIR"},{"x":13,"y":6,"type":"DIRT"},{"x":14,"y":6,"type":"DIRT"},{"x":15,"y":6,"type":"DIRT"},{"x":16,"y":6,"type":"AIR"},{"x":17,"y":6,"type":"DIRT"},{"x":18,"y":6,"type":"DIRT"},{"x":19,"y":6,"type":"DIRT"},{"x":20,"y":6,"type":"AIR"},{"x":21,"y":6,"type":"DIRT"},{"x":22,"y":6,"type":"DIRT"},{"x":23,"y":6,"type":"DIRT"},{"x":24,"y":6,"type":"DIRT"},{"x":25,"y":6,"type":"DIRT"},{"x":26,"y":6,"type":"DIRT"},{"x":27,"y":6,"type":"AIR"},{"x":28,"y":6,"type":"AIR"},{"x":29,"y":6,"type":"AIR"},{"x":30,"y":6,"type":"DEEP_SPACE"},{"x":31,"y":6,"type":"DEEP_SPACE"},{"x":32,"y":6,"type":"DEEP_SPACE"}],[{"x":0,"y":7,"type":"DEEP_SPACE"},{"x":1,"y":7,"type":"DEEP_SPACE"},{"x":2,"y":7,"type":"AIR"},{"x":3,"y":7,"type":"AIR"},{"x":4,"y":7,"type":"DIRT"},{"x":5,"y":7,"type":"DIRT"},{"x":6,"y":7,"type":"DIRT"},{"x":7,"y":7,"type":"AIR"},{"x":8,"y":7,"type":"AIR"},{"x":9,"y":7,"type":"AIR"},{"x":10,"y":7,"type":"DIRT"},{"x":11,"y":7,"type":"DIRT"},{"x":12,"y":7,"type":"DIRT"},{"x":13,"y":7,"type":"DIRT"},{"x":14,"y":7,"type":"DIRT"},{"x":15,"y":7,"type":"AIR"},{"x":16,"y":7,"type":"DIRT"},{"x":17,"y":7,"type":"AIR"},{"x":18,"y":7,"type":"DIRT"},{"x":19,"y":7,"type":"DIRT"},{"x":20,"y":7,"type":"DIRT"},{"x":21,"y":7,"type":"DIRT"},{"x":22,"y":7,"type":"DIRT"},{"x":23,"y":7,"type":"AIR"},{"x":24,"y":7,"type":"AIR"},{"x":25,"y":7,"type":"AIR"},{"x":26,"y":7,"type":"DIRT"},{"x":27,"y":7,"type":"DIRT"},{"x":28,"y":7,"type":"DIRT"},{"x":29,"y":7,"type":"AIR"},{"x":30,"y":7,"type":"AIR"},{"x":31,"y":7,"type":"DEEP_SPACE"},{"x":32,"y":7,"type":"DEEP_SPACE"}],[{"x":0,"y":8,"type":"DEEP_SPACE"},{"x":1,"y":8,"type":"AIR"},{"x":2,"y":8,"type":"DIRT"},{"x":3,"y":8,"type":"DIRT"},{"x":4,"y":8,"type":"DIRT"},{"x":5,"y":8,"type":"DIRT"},{"x":6,"y":8,"type":"DIRT"},{"x":7,"y":8,"type":"AIR"},{"x":8,"y":8,"type":"AIR"},{"x":9,"y":8,"type":"AIR"},{"x":10,"y":8,"type":"DIRT"},{"x":11,"y":8,"type":"DIRT"},{"x":12,"y":8,"type":"DIRT"},{"x":13,"y":8,"type":"DIRT"},{"x":14,"y":8,"type":"AIR"},{"x":15,"y":8,"type":"AIR"},{"x":16,"y":8,"type":"DIRT"},{"x":17,"y":8,"type":"AIR"},{"x":18,"y":8,"type":"AIR"},{"x":19,"y":8,"type":"DIRT"},{"x":20,"y":8,"type":"DIRT"},{"x":21,"y":8,"type":"DIRT"},{"x":22,"y":8,"type":"DIRT"},{"x":23,"y":8,"type":"AIR"},{"x":24,"y":8,"type":"AIR"},{"x":25,"y":8,"type":"AIR"},{"x":26,"y":8,"type":"DIRT"},{"x":27,"y":8,"type":"DIRT"},{"x":28,"y":8,"type":"DIRT"},{"x":29,"y":8,"type":"DIRT"},{"x":30,"y":8,"type":"DIRT"},{"x":31,"y":8,"type":"AIR"},{"x":32,"y":8,"type":"DEEP_SPACE"}],[{"x":0,"y":9,"type":"DEEP_SPACE"},{"x":1,"y":9,"type":"DIRT"},{"x":2,"y":9,"type":"DIRT"},{"x":3,"y":9,"type":"DIRT"},{"x":4,"y":9,"type":"DIRT"},{"x":5,"y":9,"type":"DIRT"},{"x":6,"y":9,"type":"DIRT"},{"x":7,"y":9,"type":"AIR"},{"x":8,"y":9,"type":"DIRT"},{"x":9,"y":9,"type":"DIRT"},{"x":10,"y":9,"type":"DIRT"},{"x":11,"y":9,"type":"DIRT"},{"x":12,"y":9,"type":"DIRT"},{"x":13,"y":9,"type":"DIRT"},{"x":14,"y":9,"type":"AIR"},{"x":15,"y":9,"type":"AIR"},{"x":16,"y":9,"type":"AIR"},{"x":17,"y":9,"type":"AIR"},{"x":18,"y":9,"type":"AIR"},{"x":19,"y":9,"type":"DIRT"},{"x":20,"y":9,"type":"DIRT"},{"x":21,"y":9,"type":"DIRT"},{"x":22,"y":9,"type":"DIRT"},{"x":23,"y":9,"type":"DIRT"},{"x":24,"y":9,"type":"DIRT"},{"x":25,"y":9,"type":"AIR"},{"x":26,"y":9,"type":"DIRT"},{"x":27,"y":9,"type":"DIRT"},{"x":28,"y":9,"type":"DIRT"},{"x":29,"y":9,"type":"DIRT"},{"x":30,"y":9,"type":"DIRT"},{"x":31,"y":9,"type":"DIRT"},{"x":32,"y":9,"type":"DEEP_SPACE"}],[{"x":0,"y":10,"type":"DEEP_SPACE"},{"x":1,"y":10,"type":"DIRT"},{"x":2,"y":10,"type":"DIRT"},{"x":3,"y":10,"type":"AIR"},{"x":4,"y":10,"type":"AIR"},{"x":5,"y":10,"type":"DIRT"},{"x":6,"y":10,"type":"DIRT"},{"x":7,"y":10,"type":"AIR"},{"x":8,"y":10,"type":"AIR"},{"x":9,"y":10,"type":"DIRT"},{"x":10,"y":10,"type":"DIRT"},{"x":11,"y":10,"type":"DIRT"},{"x":12,"y":10,"type":"DIRT"},{"x":13,"y":10,"type":"AIR"},{"x":14,"y":10,"type":"AIR"},{"x":15,"y":10,"type":"AIR"},{"x":16,"y":10,"type":"AIR"},{"x":17,"y":10,"type":"AIR"},{"x":18,"y":10,"type":"AIR"},{"x":19,"y":10,"type":"AIR"},{"x":20,"y":10,"type":"DIRT"},{"x":21,"y":10,"type":"DIRT"},{"x":22,"y":10,"type":"DIRT"},{"x":23,"y":10,"type":"DIRT"},{"x":24,"y":10,"type":"AIR"},{"x":25,"y":10,"type":"AIR"},{"x":26,"y":10,"type":"DIRT"},{"x":27,"y":10,"type":"DIRT"},{"x":28,"y":10,"type":"AIR"},{"x":29,"y":10,"type":"AIR"},{"x":30,"y":10,"type":"DIRT"},{"x":31,"y":10,"type":"DIRT"},{"x":32,"y":10,"type":"DEEP_SPACE"}],[{"x":0,"y":11,"type":"DIRT"},{"x":1,"y":11,"type":"DIRT"},{"x":2,"y":11,"type":"DIRT"},{"x":3,"y":11,"type":"AIR"},{"x":4,"y":11,"type":"DIRT"},{"x":5,"y":11,"type":"DIRT"},{"x":6,"y":11,"type":"DIRT"},{"x":7,"y":11,"type":"AIR"},{"x":8,"y":11,"type":"AIR"},{"x":9,"y":11,"type":"DIRT"},{"x":10,"y":11,"type":"AIR"},{"x":11,"y":11,"type":"DIRT"},{"x":12,"y":11,"type":"DIRT"},{"x":13,"y":11,"type":"AIR"},{"x":14,"y":11,"type":"DIRT"},{"x":15,"y":11,"type":"DIRT"},{"x":16,"y":11,"type":"AIR"},{"x":17,"y":11,"type":"DIRT"},{"x":18,"y":11,"type":"DIRT"},{"x":19,"y":11,"type":"AIR"},{"x":20,"y":11,"type":"DIRT"},{"x":21,"y":11,"type":"DIRT"},{"x":22,"y":11,"type":"AIR"},{"x":23,"y":11,"type":"DIRT"},{"x":24,"y":11,"type":"AIR"},{"x":25,"y":11,"type":"AIR"},{"x":26,"y":11,"type":"DIRT"},{"x":27,"y":11,"type":"DIRT"},{"x":28,"y":11,"type":"DIRT"},{"x":29,"y":11,"type":"AIR"},{"x":30,"y":11,"type":"DIRT"},{"x":31,"y":11,"type":"DIRT"},{"x":32,"y":11,"type":"DIRT"}],[{"x":0,"y":12,"type":"AIR"},{"x":1,"y":12,"type":"DIRT"},{"x":2,"y":12,"type":"DIRT"},{"x":3,"y":12,"type":"DIRT"},{"x":4,"y":12,"type":"DIRT"},{"x":5,"y":12,"type":"AIR"},{"x":6,"y":12,"type":"AIR"},{"x":7,"y":12,"type":"AIR"},{"x":8,"y":12,"type":"DIRT"},{"x":9,"y":12,"type":"DIRT"},{"x":10,"y":12,"type":"AIR"},{"x":11,"y":12,"type":"AIR"},{"x":12,"y":12,"type":"AIR"},{"x":13,"y":12,"type":"AIR"},{"x":14,"y":12,"type":"AIR"},{"x":15,"y":12,"type":"DIRT"},{"x":16,"y":12,"type":"DIRT"},{"x":17,"y":12,"type":"DIRT"},{"x":18,"y":12,"type":"AIR"},{"x":19,"y":12,"type":"AIR"},{"x":20,"y":12,"type":"AIR"},{"x":21,"y":12,"type":"AIR"},{"x":22,"y":12,"type":"AIR"},{"x":23,"y":12,"type":"DIRT"},{"x":24,"y":12,"type":"DIRT"},{"x":25,"y":12,"type":"AIR"},{"x":26,"y":12,"type":"AIR"},{"x":27,"y":12,"type":"AIR"},{"x":28,"y":12,"type":"DIRT"},{"x":29,"y":12,"type":"DIRT"},{"x":30,"y":12,"type":"DIRT"},{"x":31,"y":12,"type":"DIRT"},{"x":32,"y":12,"type":"AIR"}],[{"x":0,"y":13,"type":"AIR"},{"x":1,"y":13,"type":"AIR"},{"x":2,"y":13,"type":"AIR"},{"x":3,"y":13,"type":"DIRT"},{"x":4,"y":13,"type":"DIRT"},{"x":5,"y":13,"type":"DIRT"},{"x":6,"y":13,"type":"AIR"},{"x":7,"y":13,"type":"AIR"},{"x":8,"y":13,"type":"DIRT"},{"x":9,"y":13,"type":"DIRT"},{"x":10,"y":13,"type":"AIR"},{"x":11,"y":13,"type":"AIR"},{"x":12,"y":13,"type":"AIR"},{"x":13,"y":13,"type":"AIR"},{"x":14,"y":13,"type":"AIR"},{"x":15,"y":13,"type":"AIR"},{"x":16,"y":13,"type":"AIR"},{"x":17,"y":13,"type":"AIR"},{"x":18,"y":13,"type":"AIR"},{"x":19,"y":13,"type":"AIR"},{"x":20,"y":13,"type":"AIR"},{"x":21,"y":13,"type":"AIR"},{"x":22,"y":13,"type":"AIR"},{"x":23,"y":13,"type":"DIRT"},{"x":24,"y":13,"type":"DIRT"},{"x":25,"y":13,"type":"AIR"},{"x":26,"y":13,"type":"AIR"},{"x":27,"y":13,"type":"DIRT"},{"x":28,"y":13,"type":"DIRT"},{"x":29,"y":13,"type":"DIRT"},{"x":30,"y":13,"type":"AIR"},{"x":31,"y":13,"type":"AIR"},{"x":32,"y":13,"type":"AIR"}],[{"x":0,"y":14,"type":"DIRT"},{"x":1,"y":14,"type":"DIRT"},{"x":2,"y":14,"type":"DIRT"},{"x":3,"y":14,"type":"DIRT"},{"x":4,"y":14,"type":"DIRT"},{"x":5,"y":14,"type":"DIRT"},{"x":6,"y":14,"type":"DIRT"},{"x":7,"y":14,"type":"DIRT"},{"x":8,"y":14,"type":"DIRT"},{"x":9,"y":14,"type":"AIR"},{"x":10,"y":14,"type":"AIR"},{"x":11,"y":14,"type":"DIRT"},{"x":12,"y":14,"type":"DIRT"},{"x":13,"y":14,"type":"DIRT"},{"x":14,"y":14,"type":"DIRT"},{"x":15,"y":14,"type":"AIR"},{"x":16,"y":14,"type":"AIR"},{"x":17,"y":14,"type":"AIR"},{"x":18,"y":14,"type":"DIRT"},{"x":19,"y":14,"type":"DIRT"},{"x":20,"y":14,"type":"DIRT"},{"x":21,"y":14,"type":"DIRT"},{"x":22,"y":14,"type":"AIR"},{"x":23,"y":14,"type":"AIR"},{"x":24,"y":14,"type":"DIRT"},{"x":25,"y":14,"type":"DIRT"},{"x":26,"y":14,"type":"DIRT"},{"x":27,"y":14,"type":"DIRT"},{"x":28,"y":14,"type":"DIRT"},{"x":29,"y":14,"type":"DIRT"},{"x":30,"y":14,"type":"DIRT"},{"x":31,"y":14,"type":"DIRT"},{"x":32,"y":14,"type":"DIRT"}],[{"x":0,"y":15,"type":"AIR"},{"x":1,"y":15,"type":"AIR"},{"x":2,"y":15,"type":"AIR"},{"x":3,"y":15,"type":"DIRT"},{"x":4,"y":15,"type":"DIRT"},{"x":5,"y":15,"type":"AIR"},{"x":6,"y":15,"type":"AIR"},{"x":7,"y":15,"type":"DIRT"},{"x":8,"y":15,"type":"AIR"},{"x":9,"y":15,"type":"AIR"},{"x":10,"y":15,"type":"DIRT"},{"x":11,"y":15,"type":"DIRT"},{"x":12,"y":15,"type":"AIR"},{"x":13,"y":15,"type":"AIR"},{"x":14,"y":15,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":15,"y":15,"type":"DIRT"},{"x":16,"y":15,"type":"DIRT"},{"x":17,"y":15,"type":"DIRT"},{"x":18,"y":15,"type":"DIRT"},{"x":19,"y":15,"type":"AIR"},{"x":20,"y":15,"type":"AIR"},{"x":21,"y":15,"type":"DIRT"},{"x":22,"y":15,"type":"DIRT"},{"x":23,"y":15,"type":"AIR"},{"x":24,"y":15,"type":"AIR"},{"x":25,"y":15,"type":"DIRT"},{"x":26,"y":15,"type":"AIR"},{"x":27,"y":15,"type":"AIR"},{"x":28,"y":15,"type":"DIRT"},{"x":29,"y":15,"type":"DIRT"},{"x":30,"y":15,"type":"AIR"},{"x":31,"y":15,"type":"AIR"},{"x":32,"y":15,"type":"AIR"}],[{"x":0,"y":16,"type":"AIR"},{"x":1,"y":16,"type":"AIR","occupier":{"id":2,"playerId":1,"health":150,"position":{"x":1,"y":16},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":2,"y":16,"type":"AIR"},{"x":3,"y":16,"type":"DIRT"},{"x":4,"y":16,"type":"DIRT"},{"x":5,"y":16,"type":"AIR"},{"x":6,"y":16,"type":"AIR"},{"x":7,"y":16,"type":"AIR"},{"x":8,"y":16,"type":"AIR"},{"x":9,"y":16,"type":"AIR"},{"x":10,"y":16,"type":"DIRT"},{"x":11,"y":16,"type":"DIRT"},{"x":12,"y":16,"type":"AIR"},{"x":13,"y":16,"type":"AIR"},{"x":14,"y":16,"type":"AIR"},{"x":15,"y":16,"type":"DIRT"},{"x":16,"y":16,"type":"DIRT"},{"x":17,"y":16,"type":"DIRT"},{"x":18,"y":16,"type":"AIR"},{"x":19,"y":16,"type":"AIR"},{"x":20,"y":16,"type":"AIR"},{"x":21,"y":16,"type":"DIRT"},{"x":22,"y":16,"type":"DIRT"},{"x":23,"y":16,"type":"AIR"},{"x":24,"y":16,"type":"AIR"},{"x":25,"y":16,"type":"AIR"},{"x":26,"y":16,"type":"AIR"},{"x":27,"y":16,"type":"AIR"},{"x":28,"y":16,"type":"DIRT"},{"x":29,"y":16,"type":"DIRT"},{"x":30,"y":16,"type":"AIR"},{"x":31,"y":16,"type":"AIR","occupier":{"id":1,"playerId":2,"health":150,"position":{"x":31,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":32,"y":16,"type":"AIR"}],[{"x":0,"y":17,"type":"AIR"},{"x":1,"y":17,"type":"AIR"},{"x":2,"y":17,"type":"AIR"},{"x":3,"y":17,"type":"DIRT"},{"x":4,"y":17,"type":"AIR"},{"x":5,"y":17,"type":"AIR"},{"x":6,"y":17,"type":"AIR"},{"x":7,"y":17,"type":"AIR"},{"x":8,"y":17,"type":"AIR"},{"x":9,"y":17,"type":"AIR"},{"x":10,"y":17,"type":"AIR"},{"x":11,"y":17,"type":"DIRT"},{"x":12,"y":17,"type":"DIRT"},{"x":13,"y":17,"type":"DIRT"},{"x":14,"y":17,"type":"AIR"},{"x":15,"y":17,"type":"DIRT"},{"x":16,"y":17,"type":"AIR"},{"x":17,"y":17,"type":"DIRT"},{"x":18,"y":17,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":19,"y":17,"type":"DIRT"},{"x":20,"y":17,"type":"DIRT"},{"x":21,"y":17,"type":"DIRT"},{"x":22,"y":17,"type":"AIR"},{"x":23,"y":17,"type":"AIR"},{"x":24,"y":17,"type":"AIR"},{"x":25,"y":17,"type":"AIR"},{"x":26,"y":17,"type":"AIR"},{"x":27,"y":17,"type":"AIR"},{"x":28,"y":17,"type":"AIR"},{"x":29,"y":17,"type":"DIRT"},{"x":30,"y":17,"type":"AIR"},{"x":31,"y":17,"type":"AIR"},{"x":32,"y":17,"type":"AIR"}],[{"x":0,"y":18,"type":"DIRT"},{"x":1,"y":18,"type":"DIRT"},{"x":2,"y":18,"type":"DIRT"},{"x":3,"y":18,"type":"DIRT"},{"x":4,"y":18,"type":"AIR"},{"x":5,"y":18,"type":"DIRT"},{"x":6,"y":18,"type":"DIRT"},{"x":7,"y":18,"type":"DIRT"},{"x":8,"y":18,"type":"DIRT"},{"x":9,"y":18,"type":"AIR"},{"x":10,"y":18,"type":"AIR"},{"x":11,"y":18,"type":"DIRT"},{"x":12,"y":18,"type":"DIRT"},{"x":13,"y":18,"type":"DIRT"},{"x":14,"y":18,"type":"AIR"},{"x":15,"y":18,"type":"AIR"},{"x":16,"y":18,"type":"AIR"},{"x":17,"y":18,"type":"AIR"},{"x":18,"y":18,"type":"AIR"},{"x":19,"y":18,"type":"DIRT"},{"x":20,"y":18,"type":"DIRT"},{"x":21,"y":18,"type":"DIRT"},{"x":22,"y":18,"type":"AIR"},{"x":23,"y":18,"type":"AIR"},{"x":24,"y":18,"type":"DIRT"},{"x":25,"y":18,"type":"DIRT"},{"x":26,"y":18,"type":"DIRT"},{"x":27,"y":18,"type":"DIRT"},{"x":28,"y":18,"type":"AIR"},{"x":29,"y":18,"type":"DIRT"},{"x":30,"y":18,"type":"DIRT"},{"x":31,"y":18,"type":"DIRT"},{"x":32,"y":18,"type":"DIRT"}],[{"x":0,"y":19,"type":"DIRT"},{"x":1,"y":19,"type":"DIRT"},{"x":2,"y":19,"type":"DIRT"},{"x":3,"y":19,"type":"DIRT"},{"x":4,"y":19,"type":"DIRT"},{"x":5,"y":19,"type":"DIRT"},{"x":6,"y":19,"type":"DIRT"},{"x":7,"y":19,"type":"DIRT"},{"x":8,"y":19,"type":"DIRT"},{"x":9,"y":19,"type":"DIRT"},{"x":10,"y":19,"type":"DIRT"},{"x":11,"y":19,"type":"DIRT"},{"x":12,"y":19,"type":"DIRT"},{"x":13,"y":19,"type":"DIRT"},{"x":14,"y":19,"type":"AIR"},{"x":15,"y":19,"type":"AIR"},{"x":16,"y":19,"type":"DIRT"},{"x":17,"y":19,"type":"AIR"},{"x":18,"y":19,"type":"AIR"},{"x":19,"y":19,"type":"DIRT"},{"x":20,"y":19,"type":"DIRT"},{"x":21,"y":19,"type":"DIRT"},{"x":22,"y":19,"type":"DIRT"},{"x":23,"y":19,"type":"DIRT"},{"x":24,"y":19,"type":"DIRT"},{"x":25,"y":19,"type":"DIRT"},{"x":26,"y":19,"type":"DIRT"},{"x":27,"y":19,"type":"DIRT"},{"x":28,"y":19,"type":"DIRT"},{"x":29,"y":19,"type":"DIRT"},{"x":30,"y":19,"type":"DIRT"},{"x":31,"y":19,"type":"DIRT"},{"x":32,"y":19,"type":"DIRT"}],[{"x":0,"y":20,"type":"DIRT"},{"x":1,"y":20,"type":"DIRT"},{"x":2,"y":20,"type":"DIRT"},{"x":3,"y":20,"type":"AIR"},{"x":4,"y":20,"type":"AIR"},{"x":5,"y":20,"type":"AIR"},{"x":6,"y":20,"type":"AIR"},{"x":7,"y":20,"type":"DIRT"},{"x":8,"y":20,"type":"DIRT"},{"x":9,"y":20,"type":"DIRT"},{"x":10,"y":20,"type":"DIRT"},{"x":11,"y":20,"type":"AIR"},{"x":12,"y":20,"type":"AIR"},{"x":13,"y":20,"type":"DIRT"},{"x":14,"y":20,"type":"DIRT"},{"x":15,"y":20,"type":"DIRT"},{"x":16,"y":20,"type":"DIRT"},{"x":17,"y":20,"type":"DIRT"},{"x":18,"y":20,"type":"DIRT"},{"x":19,"y":20,"type":"DIRT"},{"x":20,"y":20,"type":"AIR"},{"x":21,"y":20,"type":"AIR"},{"x":22,"y":20,"type":"DIRT"},{"x":23,"y":20,"type":"DIRT"},{"x":24,"y":20,"type":"DIRT"},{"x":25,"y":20,"type":"DIRT"},{"x":26,"y":20,"type":"AIR"},{"x":27,"y":20,"type":"AIR"},{"x":28,"y":20,"type":"AIR"},{"x":29,"y":20,"type":"AIR"},{"x":30,"y":20,"type":"DIRT"},{"x":31,"y":20,"type":"DIRT"},{"x":32,"y":20,"type":"DIRT"}],[{"x":0,"y":21,"type":"DIRT"},{"x":1,"y":21,"type":"AIR"},{"x":2,"y":21,"type":"AIR"},{"x":3,"y":21,"type":"AIR"},{"x":4,"y":21,"type":"AIR"},{"x":5,"y":21,"type":"DIRT"},{"x":6,"y":21,"type":"AIR"},{"x":7,"y":21,"type":"AIR"},{"x":8,"y":21,"type":"AIR"},{"x":9,"y":21,"type":"AIR"},{"x":10,"y":21,"type":"AIR"},{"x":11,"y":21,"type":"AIR"},{"x":12,"y":21,"type":"DIRT"},{"x":13,"y":21,"type":"AIR"},{"x":14,"y":21,"type":"AIR"},{"x":15,"y":21,"type":"AIR"},{"x":16,"y":21,"type":"DIRT"},{"x":17,"y":21,"type":"AIR"},{"x":18,"y":21,"type":"AIR"},{"x":19,"y":21,"type":"AIR"},{"x":20,"y":21,"type":"DIRT"},{"x":21,"y":21,"type":"AIR"},{"x":22,"y":21,"type":"AIR"},{"x":23,"y":21,"type":"AIR"},{"x":24,"y":21,"type":"AIR"},{"x":25,"y":21,"type":"AIR"},{"x":26,"y":21,"type":"AIR"},{"x":27,"y":21,"type":"DIRT"},{"x":28,"y":21,"type":"AIR"},{"x":29,"y":21,"type":"AIR"},{"x":30,"y":21,"type":"AIR"},{"x":31,"y":21,"type":"AIR"},{"x":32,"y":21,"type":"DIRT"}],[{"x":0,"y":22,"type":"DEEP_SPACE"},{"x":1,"y":22,"type":"AIR"},{"x":2,"y":22,"type":"AIR"},{"x":3,"y":22,"type":"AIR"},{"x":4,"y":22,"type":"AIR"},{"x":5,"y":22,"type":"AIR"},{"x":6,"y":22,"type":"DIRT"},{"x":7,"y":22,"type":"DIRT"},{"x":8,"y":22,"type":"AIR"},{"x":9,"y":22,"type":"AIR"},{"x":10,"y":22,"type":"AIR"},{"x":11,"y":22,"type":"DIRT"},{"x":12,"y":22,"type":"DIRT"},{"x":13,"y":22,"type":"AIR"},{"x":14,"y":22,"type":"AIR"},{"x":15,"y":22,"type":"DIRT"},{"x":16,"y":22,"type":"AIR"},{"x":17,"y":22,"type":"DIRT"},{"x":18,"y":22,"type":"AIR"},{"x":19,"y":22,"type":"AIR"},{"x":20,"y":22,"type":"DIRT"},{"x":21,"y":22,"type":"DIRT"},{"x":22,"y":22,"type":"AIR"},{"x":23,"y":22,"type":"AIR"},{"x":24,"y":22,"type":"AIR"},{"x":25,"y":22,"type":"DIRT"},{"x":26,"y":22,"type":"DIRT"},{"x":27,"y":22,"type":"AIR"},{"x":28,"y":22,"type":"AIR"},{"x":29,"y":22,"type":"AIR"},{"x":30,"y":22,"type":"AIR"},{"x":31,"y":22,"type":"AIR"},{"x":32,"y":22,"type":"DEEP_SPACE"}],[{"x":0,"y":23,"type":"DEEP_SPACE"},{"x":1,"y":23,"type":"AIR"},{"x":2,"y":23,"type":"DIRT"},{"x":3,"y":23,"type":"DIRT"},{"x":4,"y":23,"type":"AIR"},{"x":5,"y":23,"type":"AIR"},{"x":6,"y":23,"type":"DIRT"},{"x":7,"y":23,"type":"DIRT"},{"x":8,"y":23,"type":"AIR"},{"x":9,"y":23,"type":"AIR"},{"x":10,"y":23,"type":"AIR"},{"x":11,"y":23,"type":"AIR"},{"x":12,"y":23,"type":"AIR"},{"x":13,"y":23,"type":"AIR"},{"x":14,"y":23,"type":"DIRT"},{"x":15,"y":23,"type":"DIRT"},{"x":16,"y":23,"type":"DIRT"},{"x":17,"y":23,"type":"DIRT"},{"x":18,"y":23,"type":"DIRT"},{"x":19,"y":23,"type":"AIR"},{"x":20,"y":23,"type":"AIR"},{"x":21,"y":23,"type":"AIR"},{"x":22,"y":23,"type":"AIR"},{"x":23,"y":23,"type":"AIR"},{"x":24,"y":23,"type":"AIR"},{"x":25,"y":23,"type":"DIRT"},{"x":26,"y":23,"type":"DIRT"},{"x":27,"y":23,"type":"AIR"},{"x":28,"y":23,"type":"AIR"},{"x":29,"y":23,"type":"DIRT"},{"x":30,"y":23,"type":"DIRT"},{"x":31,"y":23,"type":"AIR"},{"x":32,"y":23,"type":"DEEP_SPACE"}],[{"x":0,"y":24,"type":"DEEP_SPACE"},{"x":1,"y":24,"type":"AIR"},{"x":2,"y":24,"type":"AIR"},{"x":3,"y":24,"type":"DIRT"},{"x":4,"y":24,"type":"AIR"},{"x":5,"y":24,"type":"AIR"},{"x":6,"y":24,"type":"DIRT"},{"x":7,"y":24,"type":"DIRT"},{"x":8,"y":24,"type":"DIRT"},{"x":9,"y":24,"type":"DIRT"},{"x":10,"y":24,"type":"DIRT"},{"x":11,"y":24,"type":"AIR"},{"x":12,"y":24,"type":"AIR"},{"x":13,"y":24,"type":"AIR"},{"x":14,"y":24,"type":"DIRT"},{"x":15,"y":24,"type":"DIRT"},{"x":16,"y":24,"type":"DIRT"},{"x":17,"y":24,"type":"DIRT"},{"x":18,"y":24,"type":"DIRT"},{"x":19,"y":24,"type":"AIR"},{"x":20,"y":24,"type":"AIR"},{"x":21,"y":24,"type":"AIR"},{"x":22,"y":24,"type":"DIRT"},{"x":23,"y":24,"type":"DIRT"},{"x":24,"y":24,"type":"DIRT"},{"x":25,"y":24,"type":"DIRT"},{"x":26,"y":24,"type":"DIRT"},{"x":27,"y":24,"type":"AIR"},{"x":28,"y":24,"type":"AIR"},{"x":29,"y":24,"type":"DIRT"},{"x":30,"y":24,"type":"AIR"},{"x":31,"y":24,"type":"AIR"},{"x":32,"y":24,"type":"DEEP_SPACE"}],[{"x":0,"y":25,"type":"DEEP_SPACE"},{"x":1,"y":25,"type":"DEEP_SPACE"},{"x":2,"y":25,"type":"AIR"},{"x":3,"y":25,"type":"AIR"},{"x":4,"y":25,"type":"AIR"},{"x":5,"y":25,"type":"AIR"},{"x":6,"y":25,"type":"AIR"},{"x":7,"y":25,"type":"AIR"},{"x":8,"y":25,"type":"AIR"},{"x":9,"y":25,"type":"AIR"},{"x":10,"y":25,"type":"DIRT"},{"x":11,"y":25,"type":"DIRT"},{"x":12,"y":25,"type":"AIR"},{"x":13,"y":25,"type":"AIR"},{"x":14,"y":25,"type":"AIR"},{"x":15,"y":25,"type":"DIRT"},{"x":16,"y":25,"type":"DIRT"},{"x":17,"y":25,"type":"DIRT"},{"x":18,"y":25,"type":"AIR"},{"x":19,"y":25,"type":"AIR"},{"x":20,"y":25,"type":"AIR"},{"x":21,"y":25,"type":"DIRT"},{"x":22,"y":25,"type":"DIRT"},{"x":23,"y":25,"type":"AIR"},{"x":24,"y":25,"type":"AIR"},{"x":25,"y":25,"type":"AIR"},{"x":26,"y":25,"type":"AIR"},{"x":27,"y":25,"type":"AIR"},{"x":28,"y":25,"type":"AIR"},{"x":29,"y":25,"type":"AIR"},{"x":30,"y":25,"type":"AIR"},{"x":31,"y":25,"type":"DEEP_SPACE"},{"x":32,"y":25,"type":"DEEP_SPACE"}],[{"x":0,"y":26,"type":"DEEP_SPACE"},{"x":1,"y":26,"type":"DEEP_SPACE"},{"x":2,"y":26,"type":"DEEP_SPACE"},{"x":3,"y":26,"type":"AIR"},{"x":4,"y":26,"type":"AIR"},{"x":5,"y":26,"type":"AIR"},{"x":6,"y":26,"type":"DIRT"},{"x":7,"y":26,"type":"DIRT"},{"x":8,"y":26,"type":"DIRT"},{"x":9,"y":26,"type":"DIRT"},{"x":10,"y":26,"type":"DIRT"},{"x":11,"y":26,"type":"DIRT"},{"x":12,"y":26,"type":"DIRT"},{"x":13,"y":26,"type":"AIR"},{"x":14,"y":26,"type":"AIR"},{"x":15,"y":26,"type":"DIRT"},{"x":16,"y":26,"type":"DIRT"},{"x":17,"y":26,"type":"DIRT"},{"x":18,"y":26,"type":"AIR"},{"x":19,"y":26,"type":"AIR"},{"x":20,"y":26,"type":"DIRT"},{"x":21,"y":26,"type":"DIRT"},{"x":22,"y":26,"type":"DIRT"},{"x":23,"y":26,"type":"DIRT"},{"x":24,"y":26,"type":"DIRT"},{"x":25,"y":26,"type":"DIRT"},{"x":26,"y":26,"type":"DIRT"},{"x":27,"y":26,"type":"AIR"},{"x":28,"y":26,"type":"AIR"},{"x":29,"y":26,"type":"AIR"},{"x":30,"y":26,"type":"DEEP_SPACE"},{"x":31,"y":26,"type":"DEEP_SPACE"},{"x":32,"y":26,"type":"DEEP_SPACE"}],[{"x":0,"y":27,"type":"DEEP_SPACE"},{"x":1,"y":27,"type":"DEEP_SPACE"},{"x":2,"y":27,"type":"DEEP_SPACE"},{"x":3,"y":27,"type":"DEEP_SPACE"},{"x":4,"y":27,"type":"DIRT"},{"x":5,"y":27,"type":"DIRT"},{"x":6,"y":27,"type":"DIRT"},{"x":7,"y":27,"type":"AIR"},{"x":8,"y":27,"type":"AIR"},{"x":9,"y":27,"type":"AIR"},{"x":10,"y":27,"type":"DIRT"},{"x":11,"y":27,"type":"DIRT"},{"x":12,"y":27,"type":"DIRT"},{"x":13,"y":27,"type":"DIRT"},{"x":14,"y":27,"type":"AIR"},{"x":15,"y":27,"type":"AIR"},{"x":16,"y":27,"type":"DIRT"},{"x":17,"y":27,"type":"AIR"},{"x":18,"y":27,"type":"AIR"},{"x":19,"y":27,"type":"DIRT"},{"x":20,"y":27,"type":"DIRT"},{"x":21,"y":27,"type":"DIRT"},{"x":22,"y":27,"type":"DIRT"},{"x":23,"y":27,"type":"AIR"},{"x":24,"y":27,"type":"AIR"},{"x":25,"y":27,"type":"AIR"},{"x":26,"y":27,"type":"DIRT"},{"x":27,"y":27,"type":"DIRT"},{"x":28,"y":27,"type":"DIRT"},{"x":29,"y":27,"type":"DEEP_SPACE"},{"x":30,"y":27,"type":"DEEP_SPACE"},{"x":31,"y":27,"type":"DEEP_SPACE"},{"x":32,"y":27,"type":"DEEP_SPACE"}],[{"x":0,"y":28,"type":"DEEP_SPACE"},{"x":1,"y":28,"type":"DEEP_SPACE"},{"x":2,"y":28,"type":"DEEP_SPACE"},{"x":3,"y":28,"type":"DEEP_SPACE"},{"x":4,"y":28,"type":"AIR"},{"x":5,"y":28,"type":"DIRT"},{"x":6,"y":28,"type":"DIRT"},{"x":7,"y":28,"type":"AIR"},{"x":8,"y":28,"type":"AIR","occupier":{"id":2,"playerId":2,"health":150,"position":{"x":8,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":9,"y":28,"type":"AIR"},{"x":10,"y":28,"type":"DIRT"},{"x":11,"y":28,"type":"DIRT"},{"x":12,"y":28,"type":"AIR"},{"x":13,"y":28,"type":"AIR"},{"x":14,"y":28,"type":"AIR"},{"x":15,"y":28,"type":"AIR"},{"x":16,"y":28,"type":"AIR"},{"x":17,"y":28,"type":"AIR"},{"x":18,"y":28,"type":"AIR"},{"x":19,"y":28,"type":"AIR"},{"x":20,"y":28,"type":"AIR"},{"x":21,"y":28,"type":"DIRT"},{"x":22,"y":28,"type":"DIRT"},{"x":23,"y":28,"type":"AIR"},{"x":24,"y":28,"type":"AIR","occupier":{"id":1,"playerId":1,"health":150,"position":{"x":24,"y":28},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":25,"y":28,"type":"AIR"},{"x":26,"y":28,"type":"DIRT"},{"x":27,"y":28,"type":"DIRT"},{"x":28,"y":28,"type":"AIR"},{"x":29,"y":28,"type":"DEEP_SPACE"},{"x":30,"y":28,"type":"DEEP_SPACE"},{"x":31,"y":28,"type":"DEEP_SPACE"},{"x":32,"y":28,"type":"DEEP_SPACE"}],[{"x":0,"y":29,"type":"DEEP_SPACE"},{"x":1,"y":29,"type":"DEEP_SPACE"},{"x":2,"y":29,"type":"DEEP_SPACE"},{"x":3,"y":29,"type":"DEEP_SPACE"},{"x":4,"y":29,"type":"DEEP_SPACE"},{"x":5,"y":29,"type":"DEEP_SPACE"},{"x":6,"y":29,"type":"DIRT"},{"x":7,"y":29,"type":"AIR"},{"x":8,"y":29,"type":"AIR"},{"x":9,"y":29,"type":"AIR"},{"x":10,"y":29,"type":"DIRT"},{"x":11,"y":29,"type":"AIR"},{"x":12,"y":29,"type":"AIR"},{"x":13,"y":29,"type":"AIR"},{"x":14,"y":29,"type":"AIR"},{"x":15,"y":29,"type":"DIRT"},{"x":16,"y":29,"type":"AIR"},{"x":17,"y":29,"type":"DIRT"},{"x":18,"y":29,"type":"AIR"},{"x":19,"y":29,"type":"AIR"},{"x":20,"y":29,"type":"AIR"},{"x":21,"y":29,"type":"AIR"},{"x":22,"y":29,"type":"DIRT"},{"x":23,"y":29,"type":"AIR"},{"x":24,"y":29,"type":"AIR"},{"x":25,"y":29,"type":"AIR"},{"x":26,"y":29,"type":"DIRT"},{"x":27,"y":29,"type":"DEEP_SPACE"},{"x":28,"y":29,"type":"DEEP_SPACE"},{"x":29,"y":29,"type":"DEEP_SPACE"},{"x":30,"y":29,"type":"DEEP_SPACE"},{"x":31,"y":29,"type":"DEEP_SPACE"},{"x":32,"y":29,"type":"DEEP_SPACE"}],[{"x":0,"y":30,"type":"DEEP_SPACE"},{"x":1,"y":30,"type":"DEEP_SPACE"},{"x":2,"y":30,"type":"DEEP_SPACE"},{"x":3,"y":30,"type":"DEEP_SPACE"},{"x":4,"y":30,"type":"DEEP_SPACE"},{"x":5,"y":30,"type":"DEEP_SPACE"},{"x":6,"y":30,"type":"DEEP_SPACE"},{"x":7,"y":30,"type":"DIRT"},{"x":8,"y":30,"type":"DIRT"},{"x":9,"y":30,"type":"DIRT"},{"x":10,"y":30,"type":"DIRT"},{"x":11,"y":30,"type":"DIRT"},{"x":12,"y":30,"type":"DIRT"},{"x":13,"y":30,"type":"DIRT"},{"x":14,"y":30,"type":"AIR"},{"x":15,"y":30,"type":"DIRT"},{"x":16,"y":30,"type":"DIRT"},{"x":17,"y":30,"type":"DIRT"},{"x":18,"y":30,"type":"AIR"},{"x":19,"y":30,"type":"DIRT"},{"x":20,"y":30,"type":"DIRT"},{"x":21,"y":30,"type":"DIRT"},{"x":22,"y":30,"type":"DIRT"},{"x":23,"y":30,"type":"DIRT"},{"x":24,"y":30,"type":"DIRT"},{"x":25,"y":30,"type":"DIRT"},{"x":26,"y":30,"type":"DEEP_SPACE"},{"x":27,"y":30,"type":"DEEP_SPACE"},{"x":28,"y":30,"type":"DEEP_SPACE"},{"x":29,"y":30,"type":"DEEP_SPACE"},{"x":30,"y":30,"type":"DEEP_SPACE"},{"x":31,"y":30,"type":"DEEP_SPACE"},{"x":32,"y":30,"type":"DEEP_SPACE"}],[{"x":0,"y":31,"type":"DEEP_SPACE"},{"x":1,"y":31,"type":"DEEP_SPACE"},{"x":2,"y":31,"type":"DEEP_SPACE"},{"x":3,"y":31,"type":"DEEP_SPACE"},{"x":4,"y":31,"type":"DEEP_SPACE"},{"x":5,"y":31,"type":"DEEP_SPACE"},{"x":6,"y":31,"type":"DEEP_SPACE"},{"x":7,"y":31,"type":"DEEP_SPACE"},{"x":8,"y":31,"type":"DIRT"},{"x":9,"y":31,"type":"DIRT"},{"x":10,"y":31,"type":"DIRT"},{"x":11,"y":31,"type":"DIRT"},{"x":12,"y":31,"type":"DIRT"},{"x":13,"y":31,"type":"DIRT"},{"x":14,"y":31,"type":"DIRT"},{"x":15,"y":31,"type":"DIRT"},{"x":16,"y":31,"type":"DIRT"},{"x":17,"y":31,"type":"DIRT"},{"x":18,"y":31,"type":"DIRT"},{"x":19,"y":31,"type":"DIRT"},{"x":20,"y":31,"type":"DIRT"},{"x":21,"y":31,"type":"DIRT"},{"x":22,"y":31,"type":"DIRT"},{"x":23,"y":31,"type":"DIRT"},{"x":24,"y":31,"type":"DIRT"},{"x":25,"y":31,"type":"DEEP_SPACE"},{"x":26,"y":31,"type":"DEEP_SPACE"},{"x":27,"y":31,"type":"DEEP_SPACE"},{"x":28,"y":31,"type":"DEEP_SPACE"},{"x":29,"y":31,"type":"DEEP_SPACE"},{"x":30,"y":31,"type":"DEEP_SPACE"},{"x":31,"y":31,"type":"DEEP_SPACE"},{"x":32,"y":31,"type":"DEEP_SPACE"}],[{"x":0,"y":32,"type":"DEEP_SPACE"},{"x":1,"y":32,"type":"DEEP_SPACE"},{"x":2,"y":32,"type":"DEEP_SPACE"},{"x":3,"y":32,"type":"DEEP_SPACE"},{"x":4,"y":32,"type":"DEEP_SPACE"},{"x":5,"y":32,"type":"DEEP_SPACE"},{"x":6,"y":32,"type":"DEEP_SPACE"},{"x":7,"y":32,"type":"DEEP_SPACE"},{"x":8,"y":32,"type":"DEEP_SPACE"},{"x":9,"y":32,"type":"DEEP_SPACE"},{"x":10,"y":32,"type":"DEEP_SPACE"},{"x":11,"y":32,"type":"DIRT"},{"x":12,"y":32,"type":"DIRT"},{"x":13,"y":32,"type":"AIR"},{"x":14,"y":32,"type":"AIR"},{"x":15,"y":32,"type":"AIR"},{"x":16,"y":32,"type":"AIR"},{"x":17,"y":32,"type":"AIR"},{"x":18,"y":32,"type":"AIR"},{"x":19,"y":32,"type":"AIR"},{"x":20,"y":32,"type":"DIRT"},{"x":21,"y":32,"type":"DIRT"},{"x":22,"y":32,"type":"DEEP_SPACE"},{"x":23,"y":32,"type":"DEEP_SPACE"},{"x":24,"y":32,"type":"DEEP_SPACE"},{"x":25,"y":32,"type":"DEEP_SPACE"},{"x":26,"y":32,"type":"DEEP_SPACE"},{"x":27,"y":32,"type":"DEEP_SPACE"},{"x":28,"y":32,"type":"DEEP_SPACE"},{"x":29,"y":32,"type":"DEEP_SPACE"},{"x":30,"y":32,"type":"DEEP_SPACE"},{"x":31,"y":32,"type":"DEEP_SPACE"},{"x":32,"y":32,"type":"DEEP_SPACE"}]]} \ No newline at end of file
diff --git a/tests/replays/2019.06.28.21.39.08/B-log.csv b/tests/replays/2019.06.28.21.39.08/B-log.csv
deleted file mode 100644
index 355af7e..0000000
--- a/tests/replays/2019.06.28.21.39.08/B-log.csv
+++ /dev/null
@@ -1,346 +0,0 @@
-Round,LastCommandType,LastCommand,ActiveWorm,Score,Health,Worm1 Health,Worm1 x,Worm1 y,Worm2 Health,Worm2 x,Worm2 y,Worm3 Health,Worm3 x,Worm3 y
-1,null,"null",1,133,400,150,31,16,150,8,28,100,8,4
-2,move,"move (30, 17)",1,138,400,150,30,17,150,8,28,100,8,4
-3,move,"move (9, 27)",2,143,400,150,30,17,150,9,27,100,8,4
-4,move,"move (9, 5)",3,148,400,150,30,17,150,9,27,100,9,5
-5,dig,"dig (29, 17)",1,155,400,150,30,17,150,9,27,100,9,5
-6,dig,"dig (10, 26)",2,162,400,150,30,17,150,9,27,100,9,5
-7,dig,"dig (10, 6)",3,169,400,150,30,17,150,9,27,100,9,5
-8,move,"move (29, 17)",1,174,400,150,29,17,150,9,27,100,9,5
-9,move,"move (10, 26)",2,179,400,150,29,17,150,10,26,100,9,5
-10,move,"move (10, 6)",3,184,400,150,29,17,150,10,26,100,10,6
-11,move,"move (28, 17)",1,189,400,150,28,17,150,10,26,100,10,6
-12,dig,"dig (11, 25)",2,196,400,150,28,17,150,10,26,100,10,6
-13,dig,"dig (11, 7)",3,203,400,150,28,17,150,10,26,100,10,6
-14,move,"move (27, 17)",1,208,400,150,27,17,150,10,26,100,10,6
-15,move,"move (11, 25)",2,213,400,150,27,17,150,11,25,100,10,6
-16,move,"move (11, 7)",3,218,400,150,27,17,150,11,25,100,11,7
-17,move,"move (26, 17)",1,223,400,150,26,17,150,11,25,100,11,7
-18,move,"move (12, 24)",2,228,400,150,26,17,150,12,24,100,11,7
-19,dig,"dig (12, 8)",3,235,400,150,26,17,150,12,24,100,11,7
-20,move,"move (25, 17)",1,240,400,150,25,17,150,12,24,100,11,7
-21,move,"move (13, 23)",2,245,400,150,25,17,150,13,23,100,11,7
-22,move,"move (12, 8)",3,250,400,150,25,17,150,13,23,100,12,8
-23,move,"move (24, 17)",1,255,400,150,24,17,150,13,23,100,12,8
-24,move,"move (14, 22)",2,260,400,150,24,17,150,14,22,100,12,8
-25,dig,"dig (13, 9)",3,267,400,150,24,17,150,14,22,100,12,8
-26,move,"move (23, 17)",1,272,400,150,23,17,150,14,22,100,12,8
-27,move,"move (15, 21)",2,277,400,150,23,17,150,15,21,100,12,8
-28,move,"move (13, 9)",3,282,400,150,23,17,150,15,21,100,13,9
-29,move,"move (22, 17)",1,287,400,150,22,17,150,15,21,100,13,9
-30,dig,"dig (16, 20)",2,294,400,150,22,17,150,15,21,100,13,9
-31,move,"move (14, 10)",3,299,400,150,22,17,150,15,21,100,14,10
-32,dig,"dig (21, 17)",1,306,400,150,22,17,150,15,21,100,14,10
-33,move,"move (16, 20)",2,311,400,150,22,17,150,16,20,100,14,10
-34,dig,"dig (14, 11)",3,318,400,150,22,17,150,16,20,100,14,10
-35,move,"move (21, 17)",1,323,400,150,21,17,150,16,20,100,14,10
-36,move,"move (17, 19)",2,328,400,150,21,17,150,17,19,100,14,10
-37,move,"move (14, 11)",3,333,400,150,21,17,150,17,19,100,14,11
-38,dig,"dig (20, 17)",1,340,400,150,21,17,150,17,19,100,14,11
-39,move,"move (18, 18)",2,345,400,150,21,17,150,18,18,100,14,11
-40,move,"move (14, 12)",3,350,400,150,21,17,150,18,18,100,14,12
-41,move,"move (20, 17)",1,355,400,150,20,17,150,18,18,100,14,12
-42,move,"move (18, 17)",2,363,410,150,20,17,160,18,17,100,14,12
-43,move,"move (14, 13)",3,368,410,150,20,17,160,18,17,100,14,13
-44,move,"move (19, 16)",1,373,410,150,19,16,160,18,17,100,14,13
-45,dig,"dig (17, 16)",2,380,410,150,19,16,160,18,17,100,14,13
-46,dig,"dig (14, 14)",3,387,410,150,19,16,160,18,17,100,14,13
-47,dig,"dig (18, 15)",1,394,410,150,19,16,160,18,17,100,14,13
-48,move,"move (17, 16)",2,399,410,150,19,16,160,17,16,100,14,13
-49,move,"move (14, 14)",3,404,410,150,19,16,160,17,16,100,14,14
-50,move,"move (18, 15)",1,409,410,150,18,15,160,17,16,100,14,14
-51,dig,"dig (16, 15)",2,416,410,150,18,15,160,17,16,100,14,14
-52,move,"move (14, 15)",3,425,420,150,18,15,160,17,16,110,14,15
-53,move,"move (19, 16)",1,430,420,150,19,16,160,17,16,110,14,15
-54,move,"move (18, 17)",2,435,420,150,19,16,160,18,17,110,14,15
-55,dig,"dig (15, 16)",3,442,420,150,19,16,160,18,17,110,14,15
-56,move,"move (20, 17)",1,447,420,150,20,17,160,18,17,110,14,15
-57,dig,"dig (19, 18)",2,454,420,150,20,17,160,18,17,110,14,15
-58,move,"move (15, 16)",3,459,420,150,20,17,160,18,17,110,15,16
-59,dig,"dig (21, 18)",1,466,420,150,20,17,160,18,17,110,15,16
-60,move,"move (19, 18)",2,471,420,150,20,17,160,19,18,110,15,16
-61,move,"move (16, 17)",3,476,420,150,20,17,160,19,18,110,16,17
-62,move,"move (21, 18)",1,481,420,150,21,18,160,19,18,110,16,17
-63,dig,"dig (20, 19)",2,488,420,150,21,18,160,19,18,110,16,17
-64,move,"move (17, 18)",3,493,420,150,21,18,160,19,18,110,17,18
-65,move,"move (20, 19)",1,498,420,150,20,19,160,19,18,110,17,18
-66,move,"move (20, 17)",2,503,420,150,20,19,160,20,17,110,17,18
-67,move,"move (18, 19)",3,508,420,150,20,19,160,20,17,110,18,19
-68,move,"move (21, 20)",1,513,420,150,21,20,160,20,17,110,18,19
-69,move,"move (21, 18)",2,518,420,150,21,20,160,21,18,110,18,19
-70,dig,"dig (19, 20)",3,525,420,150,21,20,160,21,18,110,18,19
-71,move,"move (21, 21)",1,530,420,150,21,21,160,21,18,110,18,19
-72,dig,"dig (21, 19)",2,537,420,150,21,21,160,21,18,110,18,19
-73,move,"move (19, 20)",3,542,420,150,21,21,160,21,18,110,19,20
-74,dig,"dig (21, 22)",1,549,420,150,21,21,160,21,18,110,19,20
-75,move,"move (21, 19)",2,554,420,150,21,21,160,21,19,110,19,20
-76,dig,"dig (20, 21)",3,561,420,150,21,21,160,21,19,110,19,20
-77,move,"move (21, 22)",1,566,420,150,21,22,160,21,19,110,19,20
-78,move,"move (21, 20)",2,571,420,150,21,22,160,21,20,110,19,20
-79,move,"move (20, 21)",3,576,420,150,21,22,160,21,20,110,20,21
-80,move,"move (21, 23)",1,581,420,150,21,23,160,21,20,110,20,21
-81,move,"move (21, 21)",2,586,420,150,21,23,160,21,21,110,20,21
-82,move,"move (21, 22)",3,591,420,150,21,23,160,21,21,110,21,22
-83,move,"move (21, 24)",1,596,420,150,21,24,160,21,21,110,21,22
-84,move,"move (20, 20)",2,601,420,150,21,24,160,20,20,110,21,22
-85,move,"move (21, 23)",3,606,420,150,21,24,160,20,20,110,21,23
-86,dig,"dig (21, 25)",1,613,420,150,21,24,160,20,20,110,21,23
-87,move,"move (21, 21)",2,618,420,150,21,24,160,21,21,110,21,23
-88,dig,"dig (20, 22)",3,625,420,150,21,24,160,21,21,110,21,23
-89,move,"move (20, 25)",1,630,420,150,20,25,160,21,21,110,21,23
-90,move,"move (20, 22)",2,635,420,150,20,25,160,20,22,110,21,23
-91,move,"move (20, 24)",3,640,420,150,20,25,160,20,22,110,20,24
-92,dig,"dig (20, 26)",1,647,420,150,20,25,160,20,22,110,20,24
-93,move,"move (20, 23)",2,652,420,150,20,25,160,20,23,110,20,24
-94,move,"move (19, 24)",3,657,420,150,20,25,160,20,23,110,19,24
-95,move,"move (21, 26)",1,662,420,150,21,26,160,20,23,110,19,24
-96,move,"move (21, 24)",2,667,420,150,21,26,160,21,24,110,19,24
-97,move,"move (20, 25)",3,672,420,150,21,26,160,21,24,110,20,25
-98,move,"move (21, 27)",1,677,420,150,21,27,160,21,24,110,20,25
-99,move,"move (21, 25)",2,682,420,150,21,27,160,21,25,110,20,25
-100,move,"move (21, 26)",3,687,420,150,21,27,160,21,25,110,21,26
-101,shoot,"shoot SE",1,703,420,150,21,27,160,21,25,110,21,26
-102,move,"move (22, 26)",2,708,420,150,21,27,160,22,26,110,21,26
-103,dig,"dig (22, 27)",3,715,420,150,21,27,160,22,26,110,21,26
-104,dig,"dig (21, 28)",1,722,420,150,21,27,160,22,26,110,21,26
-105,move,"move (23, 26)",2,727,420,150,21,27,160,23,26,110,21,26
-106,move,"move (22, 27)",3,732,420,150,21,27,160,23,26,110,22,27
-107,shoot,"shoot S",1,748,420,150,21,27,160,23,26,110,22,27
-108,dig,"dig (22, 25)",2,755,420,150,21,27,160,23,26,110,22,27
-109,move,"move (21, 28)",3,760,420,150,21,27,160,23,26,110,21,28
-110,move,"move (22, 27)",1,765,420,150,22,27,160,23,26,110,21,28
-111,move,"move (22, 25)",2,770,420,150,22,27,160,22,25,110,21,28
-112,shoot,"shoot S",3,772,420,150,22,27,160,22,25,110,21,28
-113,shoot,"shoot S",1,788,420,150,22,27,160,22,25,110,21,28
-114,move,"move (22, 26)",2,793,420,150,22,27,160,22,26,110,21,28
-115,shoot,"shoot E",3,806,412,150,22,27,160,22,26,102,21,28
-116,shoot,"shoot S",1,822,412,150,22,27,160,22,26,102,21,28
-117,invalid,"invalid",2,818,412,150,22,27,160,22,26,102,21,28
-118,shoot,"shoot E",3,831,404,142,22,27,160,22,26,102,21,28
-119,shoot,"shoot S",1,847,404,142,22,27,160,22,26,102,21,28
-120,move,"move (23, 26)",2,852,404,142,22,27,160,23,26,102,21,28
-121,shoot,"shoot E",3,854,404,142,22,27,160,23,26,102,21,28
-122,shoot,"shoot E",1,870,404,142,22,27,160,23,26,102,21,28
-123,shoot,"shoot S",2,886,404,142,22,27,160,23,26,102,21,28
-124,move,"move (22, 29)",3,891,404,142,22,27,160,23,26,102,22,29
-125,shoot,"shoot E",1,907,404,142,22,27,160,23,26,102,22,29
-126,shoot,"shoot SE",2,923,404,142,22,27,160,23,26,102,22,29
-127,shoot,"shoot NE",3,925,404,142,22,27,160,23,26,102,22,29
-128,move,"move (23, 28)",1,930,404,142,23,28,160,23,26,102,22,29
-129,shoot,"shoot SE",2,946,404,142,23,28,160,23,26,102,22,29
-130,move,"move (21, 28)",3,951,404,142,23,28,160,23,26,102,21,28
-131,shoot,"shoot NE",1,967,404,142,23,28,160,23,26,102,21,28
-132,shoot,"shoot SE",2,983,404,142,23,28,160,23,26,102,21,28
-133,move,"move (22, 27)",3,988,404,142,23,28,160,23,26,102,22,27
-134,shoot,"shoot E",1,1004,404,142,23,28,160,23,26,102,22,27
-135,shoot,"shoot SE",2,1020,404,142,23,28,160,23,26,102,22,27
-136,move,"move (21, 27)",3,1023,396,134,23,28,160,23,26,102,21,27
-137,shoot,"shoot E",1,1039,396,134,23,28,160,23,26,102,21,27
-138,shoot,"shoot SE",2,1055,396,134,23,28,160,23,26,102,21,27
-139,move,"move (22, 28)",3,1060,396,134,23,28,160,23,26,102,22,28
-140,shoot,"shoot NE",1,1116,396,134,23,28,160,23,26,102,22,28
-141,move,"move (22, 25)",2,1121,396,134,23,28,160,22,25,102,22,28
-142,move,"move (21, 27)",3,1126,396,134,23,28,160,22,25,102,21,27
-143,move,"move (22, 27)",1,1131,396,134,22,27,160,22,25,102,21,27
-144,move,"move (21, 24)",2,1136,396,134,22,27,160,21,24,102,21,27
-145,move,"move (20, 26)",3,1141,396,134,22,27,160,21,24,102,20,26
-146,move,"move (21, 26)",1,1146,396,134,21,26,160,21,24,102,20,26
-147,move,"move (20, 23)",2,1151,396,134,21,26,160,20,23,102,20,26
-148,move,"move (19, 25)",3,1156,396,134,21,26,160,20,23,102,19,25
-149,move,"move (20, 25)",1,1161,396,134,20,25,160,20,23,102,19,25
-150,move,"move (19, 22)",2,1166,396,134,20,25,160,19,22,102,19,25
-151,dig,"dig (18, 24)",3,1173,396,134,20,25,160,19,22,102,19,25
-152,move,"move (19, 24)",1,1178,396,134,19,24,160,19,22,102,19,25
-153,move,"move (18, 21)",2,1183,396,134,19,24,160,18,21,102,19,25
-154,move,"move (18, 24)",3,1188,396,134,19,24,160,18,21,102,18,24
-155,dig,"dig (18, 23)",1,1195,396,134,19,24,160,18,21,102,18,24
-156,move,"move (19, 22)",2,1200,396,134,19,24,160,19,22,102,18,24
-157,dig,"dig (17, 23)",3,1207,396,134,19,24,160,19,22,102,18,24
-158,move,"move (18, 23)",1,1212,396,134,18,23,160,19,22,102,18,24
-159,move,"move (18, 22)",2,1217,396,134,18,23,160,18,22,102,18,24
-160,move,"move (17, 23)",3,1222,396,134,18,23,160,18,22,102,17,23
-161,dig,"dig (17, 22)",1,1229,396,134,18,23,160,18,22,102,17,23
-162,move,"move (17, 22)",2,1234,396,134,18,23,160,17,22,102,17,23
-163,move,"move (16, 22)",3,1239,396,134,18,23,160,17,22,102,16,22
-164,dig,"dig (17, 24)",1,1246,396,134,18,23,160,17,22,102,16,22
-165,dig,"dig (16, 21)",2,1253,396,134,18,23,160,17,22,102,16,22
-166,move,"move (15, 21)",3,1258,396,134,18,23,160,17,22,102,15,21
-167,move,"move (18, 24)",1,1263,396,134,18,24,160,17,22,102,15,21
-168,move,"move (16, 21)",2,1268,396,134,18,24,160,16,21,102,15,21
-169,move,"move (16, 22)",3,1273,396,134,18,24,160,16,21,102,16,22
-170,move,"move (17, 23)",1,1278,396,134,17,23,160,16,21,102,16,22
-171,move,"move (15, 21)",2,1283,396,134,17,23,160,15,21,102,16,22
-172,dig,"dig (16, 23)",3,1290,396,134,17,23,160,15,21,102,16,22
-173,invalid,"invalid",1,1286,396,134,17,23,160,15,21,102,16,22
-174,move,"move (14, 21)",2,1291,396,134,17,23,160,14,21,102,16,22
-175,move,"move (15, 21)",3,1296,396,134,17,23,160,14,21,102,15,21
-176,move,"move (16, 22)",1,1301,396,134,16,22,160,14,21,102,15,21
-177,move,"move (13, 21)",2,1306,396,134,16,22,160,13,21,102,15,21
-178,move,"move (14, 21)",3,1311,396,134,16,22,160,13,21,102,14,21
-179,move,"move (15, 21)",1,1316,396,134,15,21,160,13,21,102,14,21
-180,dig,"dig (12, 21)",2,1323,396,134,15,21,160,13,21,102,14,21
-181,dig,"dig (13, 20)",3,1330,396,134,15,21,160,13,21,102,14,21
-182,dig,"dig (14, 20)",1,1337,396,134,15,21,160,13,21,102,14,21
-183,shoot,"shoot W",2,1353,396,134,15,21,160,13,21,102,14,21
-184,invalid,"invalid",3,1349,396,134,15,21,160,13,21,102,14,21
-185,move,"move (14, 20)",1,1354,396,134,14,20,160,13,21,102,14,21
-186,move,"move (12, 20)",2,1359,396,134,14,20,160,12,20,102,14,21
-187,shoot,"shoot W",3,1375,396,134,14,20,160,12,20,102,14,21
-188,move,"move (13, 21)",1,1377,388,134,13,21,152,12,20,102,14,21
-189,shoot,"shoot S",2,1393,388,134,13,21,152,12,20,102,14,21
-190,move,"move (14, 22)",3,1395,380,134,13,21,144,12,20,102,14,22
-191,shoot,"shoot W",1,1411,380,134,13,21,144,12,20,102,14,22
-192,shoot,"shoot S",2,1425,372,126,13,21,144,12,20,102,14,22
-193,move,"move (13, 23)",3,1430,372,126,13,21,144,12,20,102,13,23
-194,shoot,"shoot W",1,1443,364,118,13,21,144,12,20,102,13,23
-195,shoot,"shoot S",2,1459,364,118,13,21,144,12,20,102,13,23
-196,dig,"dig (12, 22)",3,1463,356,110,13,21,144,12,20,102,13,23
-197,shoot,"shoot W",1,1479,356,110,13,21,144,12,20,102,13,23
-198,shoot,"shoot S",2,1481,356,110,13,21,144,12,20,102,13,23
-199,shoot,"shoot NW",3,1497,356,110,13,21,144,12,20,102,13,23
-200,shoot,"shoot W",1,1499,356,110,13,21,144,12,20,102,13,23
-201,shoot,"shoot SW",2,1515,356,110,13,21,144,12,20,102,13,23
-202,move,"move (12, 22)",3,1518,348,110,13,21,136,12,20,102,12,22
-203,move,"move (14, 20)",1,1523,348,110,14,20,136,12,20,102,12,22
-204,shoot,"shoot SW",2,1539,348,110,14,20,136,12,20,102,12,22
-205,shoot,"shoot NW",3,1555,348,110,14,20,136,12,20,102,12,22
-206,move,"move (13, 21)",1,1560,348,110,13,21,136,12,20,102,12,22
-207,shoot,"shoot SW",2,1576,348,110,13,21,136,12,20,102,12,22
-208,dig,"dig (11, 22)",3,1583,348,110,13,21,136,12,20,102,12,22
-209,move,"move (14, 22)",1,1588,348,110,14,22,136,12,20,102,12,22
-210,move,"move (11, 21)",2,1593,348,110,14,22,136,11,21,102,12,22
-211,shoot,"shoot S",3,1609,348,110,14,22,136,11,21,102,12,22
-212,shoot,"shoot SW",1,1625,348,110,14,22,136,11,21,102,12,22
-213,shoot,"shoot S",2,1641,348,110,14,22,136,11,21,102,12,22
-214,move,"move (11, 23)",3,1646,348,110,14,22,136,11,21,102,11,23
-215,shoot,"shoot SW",1,1662,348,110,14,22,136,11,21,102,11,23
-216,move,"move (12, 22)",2,1667,348,110,14,22,136,12,22,102,11,23
-217,shoot,"shoot S",3,1683,348,110,14,22,136,12,22,102,11,23
-218,move,"move (13, 23)",1,1688,348,110,13,23,136,12,22,102,11,23
-219,invalid,"invalid",2,1684,348,110,13,23,136,12,22,102,11,23
-220,dig,"dig (10, 24)",3,1691,348,110,13,23,136,12,22,102,11,23
-221,move,"move (12, 24)",1,1696,348,110,12,24,136,12,22,102,11,23
-222,move,"move (12, 23)",2,1701,348,110,12,24,136,12,23,102,11,23
-223,move,"move (10, 24)",3,1706,348,110,12,24,136,12,23,102,10,24
-224,shoot,"shoot SW",1,1762,348,110,12,24,136,12,23,102,10,24
-225,move,"move (11, 22)",2,1767,348,110,12,24,136,11,22,102,10,24
-226,move,"move (10, 23)",3,1772,348,110,12,24,136,11,22,102,10,23
-227,move,"move (11, 23)",1,1777,348,110,11,23,136,11,22,102,10,23
-228,move,"move (10, 21)",2,1782,348,110,11,23,136,10,21,102,10,23
-229,move,"move (11, 22)",3,1787,348,110,11,23,136,10,21,102,11,22
-230,move,"move (10, 22)",1,1792,348,110,10,22,136,10,21,102,11,22
-231,dig,"dig (10, 20)",2,1799,348,110,10,22,136,10,21,102,11,22
-232,move,"move (12, 23)",3,1804,348,110,10,22,136,10,21,102,12,23
-233,move,"move (9, 21)",1,1809,348,110,9,21,136,10,21,102,12,23
-234,move,"move (9, 20)",2,1814,348,110,9,21,136,9,20,102,12,23
-235,move,"move (11, 22)",3,1819,348,110,9,21,136,9,20,102,11,22
-236,move,"move (8, 20)",1,1824,348,110,8,20,136,9,20,102,11,22
-237,dig,"dig (8, 19)",2,1831,348,110,8,20,136,9,20,102,11,22
-238,move,"move (10, 21)",3,1836,348,110,8,20,136,9,20,102,10,21
-239,move,"move (7, 19)",1,1841,348,110,7,19,136,9,20,102,10,21
-240,move,"move (8, 19)",2,1846,348,110,7,19,136,8,19,102,10,21
-241,move,"move (9, 20)",3,1851,348,110,7,19,136,8,19,102,9,20
-242,dig,"dig (6, 18)",1,1858,348,110,7,19,136,8,19,102,9,20
-243,dig,"dig (7, 18)",2,1865,348,110,7,19,136,8,19,102,9,20
-244,dig,"dig (9, 19)",3,1872,348,110,7,19,136,8,19,102,9,20
-245,move,"move (6, 18)",1,1877,348,110,6,18,136,8,19,102,9,20
-246,move,"move (7, 18)",2,1882,348,110,6,18,136,7,18,102,9,20
-247,move,"move (8, 19)",3,1887,348,110,6,18,136,7,18,102,8,19
-248,move,"move (5, 17)",1,1892,348,110,5,17,136,7,18,102,8,19
-249,move,"move (6, 17)",2,1897,348,110,5,17,136,6,17,102,8,19
-250,move,"move (7, 18)",3,1902,348,110,5,17,136,6,17,102,7,18
-251,move,"move (6, 16)",1,1907,348,110,6,16,136,6,17,102,7,18
-252,move,"move (5, 16)",2,1912,348,110,6,16,136,5,16,102,7,18
-253,move,"move (6, 17)",3,1917,348,110,6,16,136,5,16,102,6,17
-254,move,"move (5, 15)",1,1922,348,110,5,15,136,5,16,102,6,17
-255,move,"move (6, 15)",2,1927,348,110,5,15,136,6,15,102,6,17
-256,move,"move (6, 16)",3,1932,348,110,5,15,136,6,15,102,6,16
-257,dig,"dig (6, 14)",1,1939,348,110,5,15,136,6,15,102,6,16
-258,shoot,"shoot N",2,1952,340,110,5,15,128,6,15,102,6,16
-259,invalid,"invalid",3,1948,340,110,5,15,128,6,15,102,6,16
-260,dig,"dig (5, 14)",1,1955,340,110,5,15,128,6,15,102,6,16
-261,shoot,"shoot N",2,1968,332,110,5,15,120,6,15,102,6,16
-262,move,"move (5, 17)",3,1973,332,110,5,15,120,6,15,102,5,17
-263,move,"move (6, 14)",1,1976,324,102,6,14,120,6,15,102,5,17
-264,dig,"dig (7, 14)",2,1980,316,94,6,14,120,6,15,102,5,17
-265,move,"move (6, 16)",3,1982,308,86,6,14,120,6,15,102,6,16
-266,shoot,"shoot N",1,1996,300,78,6,14,120,6,15,102,6,16
-267,invalid,"invalid",2,1989,292,70,6,14,120,6,15,102,6,16
-268,move,"move (5, 15)",3,1994,292,70,6,14,120,6,15,102,5,15
-269,shoot,"shoot W",1,1996,292,70,6,14,120,6,15,102,5,15
-270,move,"move (6, 16)",2,1998,284,62,6,14,120,6,16,102,5,15
-271,dig,"dig (4, 16)",3,2005,284,62,6,14,120,6,16,102,5,15
-272,shoot,"shoot NW",1,2007,284,62,6,14,120,6,16,102,5,15
-273,move,"move (6, 15)",2,2012,284,62,6,14,120,6,15,102,5,15
-274,dig,"dig (4, 14)",3,2017,276,54,6,14,120,6,15,102,5,15
-275,shoot,"shoot N",1,2030,268,46,6,14,120,6,15,102,5,15
-276,move,"move (7, 16)",2,2032,260,38,6,14,120,7,16,102,5,15
-277,move,"move (6, 15)",3,2035,252,30,6,14,120,7,16,102,6,15
-278,shoot,"shoot N",1,2037,252,30,6,14,120,7,16,102,6,15
-279,dig,"dig (7, 15)",2,2041,244,30,6,14,120,7,16,94,6,15
-280,shoot,"shoot NE",3,2054,236,30,6,14,112,7,16,94,6,15
-281,shoot,"shoot E",1,2056,236,30,6,14,112,7,16,94,6,15
-282,move,"move (7, 17)",2,2061,236,30,6,14,112,7,17,94,6,15
-283,shoot,"shoot NE",3,2063,236,30,6,14,112,7,17,94,6,15
-284,shoot,"shoot N",1,2077,228,22,6,14,112,7,17,94,6,15
-285,move,"move (6, 16)",2,2082,228,22,6,14,112,6,16,94,6,15
-286,shoot,"shoot NE",3,2084,228,22,6,14,112,6,16,94,6,15
-287,shoot,"shoot SE",1,2100,228,22,6,14,112,6,16,94,6,15
-288,shoot,"shoot E",2,2102,228,22,6,14,112,6,16,94,6,15
-289,move,"move (7, 16)",3,2107,228,22,6,14,112,6,16,94,7,16
-290,move,"move (7, 15)",1,2112,228,22,7,15,112,6,16,94,7,16
-291,move,"move (7, 17)",2,2117,228,22,7,15,112,7,17,94,7,16
-292,move,"move (8, 17)",3,2122,228,22,7,15,112,7,17,94,8,17
-293,move,"move (8, 16)",1,2127,228,22,8,16,112,7,17,94,8,17
-294,dig,"dig (8, 18)",2,2134,228,22,8,16,112,7,17,94,8,17
-295,shoot,"shoot SE",3,2136,228,22,8,16,112,7,17,94,8,17
-296,move,"move (7, 15)",1,2138,220,22,7,15,112,7,17,86,8,17
-297,move,"move (8, 18)",2,2143,220,22,7,15,112,8,18,86,8,17
-298,shoot,"shoot SE",3,2145,220,22,7,15,112,8,18,86,8,17
-299,shoot,"shoot SE",1,2161,220,22,7,15,112,8,18,86,8,17
-300,move,"move (7, 17)",2,2166,220,22,7,15,112,7,17,86,8,17
-301,move,"move (9, 16)",3,2171,220,22,7,15,112,7,17,86,9,16
-302,dig,"dig (8, 14)",1,2178,220,22,7,15,112,7,17,86,9,16
-303,move,"move (8, 16)",2,2183,220,22,7,15,112,8,16,86,9,16
-304,shoot,"shoot N",3,2185,220,22,7,15,112,8,16,86,9,16
-305,shoot,"shoot NE",1,2187,220,22,7,15,112,8,16,86,9,16
-306,move,"move (9, 15)",2,2192,220,22,7,15,112,9,15,86,9,16
-307,move,"move (8, 15)",3,2197,220,22,7,15,112,9,15,86,8,15
-308,shoot,"shoot N",1,2210,212,22,7,15,112,9,15,78,8,15
-309,move,"move (8, 14)",2,2215,212,22,7,15,112,8,14,78,8,15
-310,shoot,"shoot NW",3,2217,212,22,7,15,112,8,14,78,8,15
-311,shoot,"shoot NW",1,2219,212,22,7,15,112,8,14,78,8,15
-312,shoot,"shoot NW",2,2221,212,22,7,15,112,8,14,78,8,15
-313,move,"move (7, 14)",3,2226,212,22,7,15,112,8,14,78,7,14
-314,move,"move (6, 14)",1,2229,204,22,6,14,104,8,14,78,7,14
-315,shoot,"shoot NW",2,2231,204,22,6,14,104,8,14,78,7,14
-316,shoot,"shoot NW",3,2233,204,22,6,14,104,8,14,78,7,14
-317,shoot,"shoot NW",1,2235,204,22,6,14,104,8,14,78,7,14
-318,move,"move (9, 14)",2,2240,204,22,6,14,104,9,14,78,7,14
-319,dig,"dig (8, 13)",3,2247,204,22,6,14,104,9,14,78,7,14
-320,shoot,"shoot NW",1,2249,204,22,6,14,104,9,14,78,7,14
-321,move,"move (8, 14)",2,2254,204,22,6,14,104,8,14,78,7,14
-322,move,"move (6, 15)",3,2259,204,22,6,14,104,8,14,78,6,15
-323,shoot,"shoot W",1,2275,204,22,6,14,104,8,14,78,6,15
-324,move,"move (7, 14)",2,2280,204,22,6,14,104,7,14,78,6,15
-325,shoot,"shoot W",3,2282,204,22,6,14,104,7,14,78,6,15
-326,shoot,"shoot SW",1,2298,204,22,6,14,104,7,14,78,6,15
-327,move,"move (7, 13)",2,2303,204,22,6,14,104,7,13,78,6,15
-328,move,"move (5, 16)",3,2308,204,22,6,14,104,7,13,78,5,16
-329,move,"move (5, 15)",1,2313,204,22,5,15,104,7,13,78,5,16
-330,move,"move (6, 14)",2,2318,204,22,5,15,104,6,14,78,5,16
-331,move,"move (4, 17)",3,2323,204,22,5,15,104,6,14,78,4,17
-332,move,"move (4, 16)",1,2328,204,22,4,16,104,6,14,78,4,17
-333,move,"move (5, 15)",2,2333,204,22,4,16,104,5,15,78,4,17
-334,move,"move (3, 18)",3,2338,204,22,4,16,104,5,15,78,3,18
-335,move,"move (3, 17)",1,2343,204,22,3,17,104,5,15,78,3,18
-336,move,"move (4, 16)",2,2348,204,22,3,17,104,4,16,78,3,18
-337,move,"move (2, 19)",3,2353,204,22,3,17,104,4,16,78,2,19
-338,move,"move (2, 18)",1,2358,204,22,2,18,104,4,16,78,2,19
-339,move,"move (3, 17)",2,2363,204,22,2,18,104,3,17,78,2,19
-340,move,"move (3, 20)",3,2368,204,22,2,18,104,3,17,78,3,20
-341,move,"move (3, 19)",1,2373,204,22,3,19,104,3,17,78,3,20
-342,move,"move (3, 18)",2,2378,204,22,3,19,104,3,18,78,3,20
-343,shoot,"shoot SW",3,2394,204,22,3,19,104,3,18,78,3,20
-344,dig,"dig (2, 20)",1,2401,204,22,3,19,104,3,18,78,3,20
-345,move,"move (2, 19)",2,2406,204,22,3,19,104,2,19,78,3,20
diff --git a/tests/replays/2019.07.08.21.54.09/A-init.json b/tests/replays/2019.07.08.21.54.09/A-init.json
deleted file mode 100644
index 8aa345c..0000000
--- a/tests/replays/2019.07.08.21.54.09/A-init.json
+++ /dev/null
@@ -1 +0,0 @@
-{"currentRound":1,"maxRounds":400,"pushbackDamage":20,"mapSize":33,"currentWormId":1,"consecutiveDoNothingCount":0,"myPlayer":{"id":1,"score":133,"health":400,"currentWormId":1,"remainingWormSelections":5,"worms":[{"id":1,"health":150,"position":{"x":24,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":2,"health":150,"position":{"x":1,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":3,"health":100,"position":{"x":24,"y":4},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"profession":"Agent"}]},"opponents":[{"id":2,"score":133,"currentWormId":1,"remainingWormSelections":5,"worms":[{"id":1,"health":150,"position":{"x":31,"y":16},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":2,"health":150,"position":{"x":8,"y":28},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":3,"health":100,"position":{"x":8,"y":4},"diggingRange":1,"movementRange":1,"profession":"Agent"}]}],"map":[[{"x":0,"y":0,"type":"DEEP_SPACE"},{"x":1,"y":0,"type":"DEEP_SPACE"},{"x":2,"y":0,"type":"DEEP_SPACE"},{"x":3,"y":0,"type":"DEEP_SPACE"},{"x":4,"y":0,"type":"DEEP_SPACE"},{"x":5,"y":0,"type":"DEEP_SPACE"},{"x":6,"y":0,"type":"DEEP_SPACE"},{"x":7,"y":0,"type":"DEEP_SPACE"},{"x":8,"y":0,"type":"DEEP_SPACE"},{"x":9,"y":0,"type":"DEEP_SPACE"},{"x":10,"y":0,"type":"DEEP_SPACE"},{"x":11,"y":0,"type":"DIRT"},{"x":12,"y":0,"type":"DIRT"},{"x":13,"y":0,"type":"DIRT"},{"x":14,"y":0,"type":"AIR"},{"x":15,"y":0,"type":"AIR"},{"x":16,"y":0,"type":"AIR"},{"x":17,"y":0,"type":"AIR"},{"x":18,"y":0,"type":"AIR"},{"x":19,"y":0,"type":"DIRT"},{"x":20,"y":0,"type":"DIRT"},{"x":21,"y":0,"type":"DIRT"},{"x":22,"y":0,"type":"DEEP_SPACE"},{"x":23,"y":0,"type":"DEEP_SPACE"},{"x":24,"y":0,"type":"DEEP_SPACE"},{"x":25,"y":0,"type":"DEEP_SPACE"},{"x":26,"y":0,"type":"DEEP_SPACE"},{"x":27,"y":0,"type":"DEEP_SPACE"},{"x":28,"y":0,"type":"DEEP_SPACE"},{"x":29,"y":0,"type":"DEEP_SPACE"},{"x":30,"y":0,"type":"DEEP_SPACE"},{"x":31,"y":0,"type":"DEEP_SPACE"},{"x":32,"y":0,"type":"DEEP_SPACE"}],[{"x":0,"y":1,"type":"DEEP_SPACE"},{"x":1,"y":1,"type":"DEEP_SPACE"},{"x":2,"y":1,"type":"DEEP_SPACE"},{"x":3,"y":1,"type":"DEEP_SPACE"},{"x":4,"y":1,"type":"DEEP_SPACE"},{"x":5,"y":1,"type":"DEEP_SPACE"},{"x":6,"y":1,"type":"DEEP_SPACE"},{"x":7,"y":1,"type":"DEEP_SPACE"},{"x":8,"y":1,"type":"AIR"},{"x":9,"y":1,"type":"AIR"},{"x":10,"y":1,"type":"DIRT"},{"x":11,"y":1,"type":"DIRT"},{"x":12,"y":1,"type":"DIRT"},{"x":13,"y":1,"type":"DIRT"},{"x":14,"y":1,"type":"DIRT"},{"x":15,"y":1,"type":"AIR"},{"x":16,"y":1,"type":"AIR"},{"x":17,"y":1,"type":"AIR"},{"x":18,"y":1,"type":"DIRT"},{"x":19,"y":1,"type":"DIRT"},{"x":20,"y":1,"type":"DIRT"},{"x":21,"y":1,"type":"DIRT"},{"x":22,"y":1,"type":"DIRT"},{"x":23,"y":1,"type":"AIR"},{"x":24,"y":1,"type":"AIR"},{"x":25,"y":1,"type":"DEEP_SPACE"},{"x":26,"y":1,"type":"DEEP_SPACE"},{"x":27,"y":1,"type":"DEEP_SPACE"},{"x":28,"y":1,"type":"DEEP_SPACE"},{"x":29,"y":1,"type":"DEEP_SPACE"},{"x":30,"y":1,"type":"DEEP_SPACE"},{"x":31,"y":1,"type":"DEEP_SPACE"},{"x":32,"y":1,"type":"DEEP_SPACE"}],[{"x":0,"y":2,"type":"DEEP_SPACE"},{"x":1,"y":2,"type":"DEEP_SPACE"},{"x":2,"y":2,"type":"DEEP_SPACE"},{"x":3,"y":2,"type":"DEEP_SPACE"},{"x":4,"y":2,"type":"DEEP_SPACE"},{"x":5,"y":2,"type":"DEEP_SPACE"},{"x":6,"y":2,"type":"DEEP_SPACE"},{"x":7,"y":2,"type":"DIRT"},{"x":8,"y":2,"type":"DIRT"},{"x":9,"y":2,"type":"DIRT"},{"x":10,"y":2,"type":"DIRT"},{"x":11,"y":2,"type":"AIR"},{"x":12,"y":2,"type":"AIR"},{"x":13,"y":2,"type":"DIRT"},{"x":14,"y":2,"type":"DIRT"},{"x":15,"y":2,"type":"DIRT"},{"x":16,"y":2,"type":"DIRT"},{"x":17,"y":2,"type":"DIRT"},{"x":18,"y":2,"type":"DIRT"},{"x":19,"y":2,"type":"DIRT"},{"x":20,"y":2,"type":"AIR"},{"x":21,"y":2,"type":"AIR"},{"x":22,"y":2,"type":"DIRT"},{"x":23,"y":2,"type":"DIRT"},{"x":24,"y":2,"type":"DIRT"},{"x":25,"y":2,"type":"DIRT"},{"x":26,"y":2,"type":"DEEP_SPACE"},{"x":27,"y":2,"type":"DEEP_SPACE"},{"x":28,"y":2,"type":"DEEP_SPACE"},{"x":29,"y":2,"type":"DEEP_SPACE"},{"x":30,"y":2,"type":"DEEP_SPACE"},{"x":31,"y":2,"type":"DEEP_SPACE"},{"x":32,"y":2,"type":"DEEP_SPACE"}],[{"x":0,"y":3,"type":"DEEP_SPACE"},{"x":1,"y":3,"type":"DEEP_SPACE"},{"x":2,"y":3,"type":"DEEP_SPACE"},{"x":3,"y":3,"type":"DEEP_SPACE"},{"x":4,"y":3,"type":"DEEP_SPACE"},{"x":5,"y":3,"type":"DEEP_SPACE"},{"x":6,"y":3,"type":"DIRT"},{"x":7,"y":3,"type":"AIR"},{"x":8,"y":3,"type":"AIR"},{"x":9,"y":3,"type":"AIR"},{"x":10,"y":3,"type":"DIRT"},{"x":11,"y":3,"type":"AIR"},{"x":12,"y":3,"type":"AIR"},{"x":13,"y":3,"type":"AIR"},{"x":14,"y":3,"type":"AIR"},{"x":15,"y":3,"type":"AIR"},{"x":16,"y":3,"type":"DIRT"},{"x":17,"y":3,"type":"AIR"},{"x":18,"y":3,"type":"AIR"},{"x":19,"y":3,"type":"AIR"},{"x":20,"y":3,"type":"AIR"},{"x":21,"y":3,"type":"AIR"},{"x":22,"y":3,"type":"DIRT"},{"x":23,"y":3,"type":"AIR"},{"x":24,"y":3,"type":"AIR"},{"x":25,"y":3,"type":"AIR"},{"x":26,"y":3,"type":"DIRT"},{"x":27,"y":3,"type":"DEEP_SPACE"},{"x":28,"y":3,"type":"DEEP_SPACE"},{"x":29,"y":3,"type":"DEEP_SPACE"},{"x":30,"y":3,"type":"DEEP_SPACE"},{"x":31,"y":3,"type":"DEEP_SPACE"},{"x":32,"y":3,"type":"DEEP_SPACE"}],[{"x":0,"y":4,"type":"DEEP_SPACE"},{"x":1,"y":4,"type":"DEEP_SPACE"},{"x":2,"y":4,"type":"DEEP_SPACE"},{"x":3,"y":4,"type":"DEEP_SPACE"},{"x":4,"y":4,"type":"AIR"},{"x":5,"y":4,"type":"AIR"},{"x":6,"y":4,"type":"DIRT"},{"x":7,"y":4,"type":"AIR"},{"x":8,"y":4,"type":"AIR","occupier":{"id":3,"playerId":2,"health":100,"position":{"x":8,"y":4},"diggingRange":1,"movementRange":1,"profession":"Agent"}},{"x":9,"y":4,"type":"AIR"},{"x":10,"y":4,"type":"DIRT"},{"x":11,"y":4,"type":"DIRT"},{"x":12,"y":4,"type":"DIRT"},{"x":13,"y":4,"type":"AIR"},{"x":14,"y":4,"type":"AIR"},{"x":15,"y":4,"type":"AIR"},{"x":16,"y":4,"type":"AIR"},{"x":17,"y":4,"type":"AIR"},{"x":18,"y":4,"type":"AIR"},{"x":19,"y":4,"type":"AIR"},{"x":20,"y":4,"type":"DIRT"},{"x":21,"y":4,"type":"DIRT"},{"x":22,"y":4,"type":"DIRT"},{"x":23,"y":4,"type":"AIR"},{"x":24,"y":4,"type":"AIR","occupier":{"id":3,"playerId":1,"health":100,"position":{"x":24,"y":4},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"profession":"Agent"}},{"x":25,"y":4,"type":"AIR"},{"x":26,"y":4,"type":"DIRT"},{"x":27,"y":4,"type":"AIR"},{"x":28,"y":4,"type":"AIR"},{"x":29,"y":4,"type":"DEEP_SPACE"},{"x":30,"y":4,"type":"DEEP_SPACE"},{"x":31,"y":4,"type":"DEEP_SPACE"},{"x":32,"y":4,"type":"DEEP_SPACE"}],[{"x":0,"y":5,"type":"DEEP_SPACE"},{"x":1,"y":5,"type":"DEEP_SPACE"},{"x":2,"y":5,"type":"DEEP_SPACE"},{"x":3,"y":5,"type":"DEEP_SPACE"},{"x":4,"y":5,"type":"DIRT"},{"x":5,"y":5,"type":"DIRT"},{"x":6,"y":5,"type":"DIRT"},{"x":7,"y":5,"type":"AIR"},{"x":8,"y":5,"type":"AIR"},{"x":9,"y":5,"type":"AIR"},{"x":10,"y":5,"type":"DIRT"},{"x":11,"y":5,"type":"DIRT"},{"x":12,"y":5,"type":"DIRT"},{"x":13,"y":5,"type":"DIRT"},{"x":14,"y":5,"type":"DIRT"},{"x":15,"y":5,"type":"DIRT"},{"x":16,"y":5,"type":"DIRT"},{"x":17,"y":5,"type":"DIRT"},{"x":18,"y":5,"type":"DIRT"},{"x":19,"y":5,"type":"DIRT"},{"x":20,"y":5,"type":"DIRT"},{"x":21,"y":5,"type":"DIRT"},{"x":22,"y":5,"type":"DIRT"},{"x":23,"y":5,"type":"AIR"},{"x":24,"y":5,"type":"AIR"},{"x":25,"y":5,"type":"AIR"},{"x":26,"y":5,"type":"DIRT"},{"x":27,"y":5,"type":"DIRT"},{"x":28,"y":5,"type":"DIRT"},{"x":29,"y":5,"type":"DEEP_SPACE"},{"x":30,"y":5,"type":"DEEP_SPACE"},{"x":31,"y":5,"type":"DEEP_SPACE"},{"x":32,"y":5,"type":"DEEP_SPACE"}],[{"x":0,"y":6,"type":"DEEP_SPACE"},{"x":1,"y":6,"type":"DEEP_SPACE"},{"x":2,"y":6,"type":"DEEP_SPACE"},{"x":3,"y":6,"type":"DIRT"},{"x":4,"y":6,"type":"DIRT"},{"x":5,"y":6,"type":"DIRT"},{"x":6,"y":6,"type":"DIRT"},{"x":7,"y":6,"type":"DIRT"},{"x":8,"y":6,"type":"DIRT"},{"x":9,"y":6,"type":"DIRT"},{"x":10,"y":6,"type":"DIRT"},{"x":11,"y":6,"type":"AIR"},{"x":12,"y":6,"type":"AIR"},{"x":13,"y":6,"type":"DIRT"},{"x":14,"y":6,"type":"DIRT"},{"x":15,"y":6,"type":"DIRT"},{"x":16,"y":6,"type":"DIRT"},{"x":17,"y":6,"type":"DIRT"},{"x":18,"y":6,"type":"DIRT"},{"x":19,"y":6,"type":"DIRT"},{"x":20,"y":6,"type":"AIR"},{"x":21,"y":6,"type":"AIR"},{"x":22,"y":6,"type":"DIRT"},{"x":23,"y":6,"type":"DIRT"},{"x":24,"y":6,"type":"DIRT"},{"x":25,"y":6,"type":"DIRT"},{"x":26,"y":6,"type":"DIRT"},{"x":27,"y":6,"type":"DIRT"},{"x":28,"y":6,"type":"DIRT"},{"x":29,"y":6,"type":"DIRT"},{"x":30,"y":6,"type":"DEEP_SPACE"},{"x":31,"y":6,"type":"DEEP_SPACE"},{"x":32,"y":6,"type":"DEEP_SPACE"}],[{"x":0,"y":7,"type":"DEEP_SPACE"},{"x":1,"y":7,"type":"DEEP_SPACE"},{"x":2,"y":7,"type":"AIR"},{"x":3,"y":7,"type":"AIR"},{"x":4,"y":7,"type":"DIRT"},{"x":5,"y":7,"type":"AIR"},{"x":6,"y":7,"type":"AIR"},{"x":7,"y":7,"type":"AIR"},{"x":8,"y":7,"type":"DIRT"},{"x":9,"y":7,"type":"DIRT"},{"x":10,"y":7,"type":"AIR"},{"x":11,"y":7,"type":"DIRT"},{"x":12,"y":7,"type":"AIR"},{"x":13,"y":7,"type":"AIR"},{"x":14,"y":7,"type":"DIRT"},{"x":15,"y":7,"type":"DIRT"},{"x":16,"y":7,"type":"AIR"},{"x":17,"y":7,"type":"DIRT"},{"x":18,"y":7,"type":"DIRT"},{"x":19,"y":7,"type":"AIR"},{"x":20,"y":7,"type":"AIR"},{"x":21,"y":7,"type":"DIRT"},{"x":22,"y":7,"type":"AIR"},{"x":23,"y":7,"type":"DIRT"},{"x":24,"y":7,"type":"DIRT"},{"x":25,"y":7,"type":"AIR"},{"x":26,"y":7,"type":"AIR"},{"x":27,"y":7,"type":"AIR"},{"x":28,"y":7,"type":"DIRT"},{"x":29,"y":7,"type":"AIR"},{"x":30,"y":7,"type":"AIR"},{"x":31,"y":7,"type":"DEEP_SPACE"},{"x":32,"y":7,"type":"DEEP_SPACE"}],[{"x":0,"y":8,"type":"DEEP_SPACE"},{"x":1,"y":8,"type":"AIR"},{"x":2,"y":8,"type":"AIR"},{"x":3,"y":8,"type":"AIR"},{"x":4,"y":8,"type":"AIR"},{"x":5,"y":8,"type":"DIRT"},{"x":6,"y":8,"type":"AIR"},{"x":7,"y":8,"type":"DIRT"},{"x":8,"y":8,"type":"DIRT"},{"x":9,"y":8,"type":"AIR"},{"x":10,"y":8,"type":"DIRT"},{"x":11,"y":8,"type":"DIRT"},{"x":12,"y":8,"type":"DIRT"},{"x":13,"y":8,"type":"AIR"},{"x":14,"y":8,"type":"AIR"},{"x":15,"y":8,"type":"AIR"},{"x":16,"y":8,"type":"AIR"},{"x":17,"y":8,"type":"AIR"},{"x":18,"y":8,"type":"AIR"},{"x":19,"y":8,"type":"AIR"},{"x":20,"y":8,"type":"DIRT"},{"x":21,"y":8,"type":"DIRT"},{"x":22,"y":8,"type":"DIRT"},{"x":23,"y":8,"type":"AIR"},{"x":24,"y":8,"type":"DIRT"},{"x":25,"y":8,"type":"DIRT"},{"x":26,"y":8,"type":"AIR"},{"x":27,"y":8,"type":"DIRT"},{"x":28,"y":8,"type":"AIR"},{"x":29,"y":8,"type":"AIR"},{"x":30,"y":8,"type":"AIR"},{"x":31,"y":8,"type":"AIR"},{"x":32,"y":8,"type":"DEEP_SPACE"}],[{"x":0,"y":9,"type":"DEEP_SPACE"},{"x":1,"y":9,"type":"DIRT"},{"x":2,"y":9,"type":"DIRT"},{"x":3,"y":9,"type":"AIR"},{"x":4,"y":9,"type":"AIR"},{"x":5,"y":9,"type":"AIR"},{"x":6,"y":9,"type":"AIR"},{"x":7,"y":9,"type":"AIR"},{"x":8,"y":9,"type":"AIR"},{"x":9,"y":9,"type":"AIR"},{"x":10,"y":9,"type":"AIR"},{"x":11,"y":9,"type":"AIR"},{"x":12,"y":9,"type":"AIR"},{"x":13,"y":9,"type":"DIRT"},{"x":14,"y":9,"type":"DIRT"},{"x":15,"y":9,"type":"AIR"},{"x":16,"y":9,"type":"AIR"},{"x":17,"y":9,"type":"AIR"},{"x":18,"y":9,"type":"DIRT"},{"x":19,"y":9,"type":"DIRT"},{"x":20,"y":9,"type":"AIR"},{"x":21,"y":9,"type":"AIR"},{"x":22,"y":9,"type":"AIR"},{"x":23,"y":9,"type":"AIR"},{"x":24,"y":9,"type":"AIR"},{"x":25,"y":9,"type":"AIR"},{"x":26,"y":9,"type":"AIR"},{"x":27,"y":9,"type":"AIR"},{"x":28,"y":9,"type":"AIR"},{"x":29,"y":9,"type":"AIR"},{"x":30,"y":9,"type":"DIRT"},{"x":31,"y":9,"type":"DIRT"},{"x":32,"y":9,"type":"DEEP_SPACE"}],[{"x":0,"y":10,"type":"DEEP_SPACE"},{"x":1,"y":10,"type":"DIRT"},{"x":2,"y":10,"type":"DIRT"},{"x":3,"y":10,"type":"DIRT"},{"x":4,"y":10,"type":"AIR"},{"x":5,"y":10,"type":"DIRT"},{"x":6,"y":10,"type":"AIR"},{"x":7,"y":10,"type":"AIR"},{"x":8,"y":10,"type":"AIR"},{"x":9,"y":10,"type":"AIR"},{"x":10,"y":10,"type":"DIRT"},{"x":11,"y":10,"type":"AIR"},{"x":12,"y":10,"type":"AIR"},{"x":13,"y":10,"type":"DIRT"},{"x":14,"y":10,"type":"DIRT"},{"x":15,"y":10,"type":"AIR"},{"x":16,"y":10,"type":"AIR"},{"x":17,"y":10,"type":"AIR"},{"x":18,"y":10,"type":"DIRT"},{"x":19,"y":10,"type":"DIRT"},{"x":20,"y":10,"type":"AIR"},{"x":21,"y":10,"type":"AIR"},{"x":22,"y":10,"type":"DIRT"},{"x":23,"y":10,"type":"AIR"},{"x":24,"y":10,"type":"AIR"},{"x":25,"y":10,"type":"AIR"},{"x":26,"y":10,"type":"AIR"},{"x":27,"y":10,"type":"DIRT"},{"x":28,"y":10,"type":"AIR"},{"x":29,"y":10,"type":"DIRT"},{"x":30,"y":10,"type":"DIRT"},{"x":31,"y":10,"type":"DIRT"},{"x":32,"y":10,"type":"DEEP_SPACE"}],[{"x":0,"y":11,"type":"AIR"},{"x":1,"y":11,"type":"DIRT"},{"x":2,"y":11,"type":"DIRT"},{"x":3,"y":11,"type":"DIRT"},{"x":4,"y":11,"type":"DIRT"},{"x":5,"y":11,"type":"DIRT"},{"x":6,"y":11,"type":"DIRT"},{"x":7,"y":11,"type":"AIR"},{"x":8,"y":11,"type":"AIR"},{"x":9,"y":11,"type":"DIRT"},{"x":10,"y":11,"type":"DIRT"},{"x":11,"y":11,"type":"DIRT"},{"x":12,"y":11,"type":"AIR"},{"x":13,"y":11,"type":"DIRT"},{"x":14,"y":11,"type":"DIRT"},{"x":15,"y":11,"type":"AIR"},{"x":16,"y":11,"type":"DIRT"},{"x":17,"y":11,"type":"AIR"},{"x":18,"y":11,"type":"DIRT"},{"x":19,"y":11,"type":"DIRT"},{"x":20,"y":11,"type":"AIR"},{"x":21,"y":11,"type":"DIRT"},{"x":22,"y":11,"type":"DIRT"},{"x":23,"y":11,"type":"DIRT"},{"x":24,"y":11,"type":"AIR"},{"x":25,"y":11,"type":"AIR"},{"x":26,"y":11,"type":"DIRT"},{"x":27,"y":11,"type":"DIRT"},{"x":28,"y":11,"type":"DIRT"},{"x":29,"y":11,"type":"DIRT"},{"x":30,"y":11,"type":"DIRT"},{"x":31,"y":11,"type":"DIRT"},{"x":32,"y":11,"type":"AIR"}],[{"x":0,"y":12,"type":"AIR"},{"x":1,"y":12,"type":"AIR"},{"x":2,"y":12,"type":"DIRT"},{"x":3,"y":12,"type":"DIRT"},{"x":4,"y":12,"type":"DIRT"},{"x":5,"y":12,"type":"DIRT"},{"x":6,"y":12,"type":"DIRT"},{"x":7,"y":12,"type":"DIRT"},{"x":8,"y":12,"type":"AIR"},{"x":9,"y":12,"type":"AIR"},{"x":10,"y":12,"type":"DIRT"},{"x":11,"y":12,"type":"AIR"},{"x":12,"y":12,"type":"AIR"},{"x":13,"y":12,"type":"AIR"},{"x":14,"y":12,"type":"DIRT"},{"x":15,"y":12,"type":"AIR"},{"x":16,"y":12,"type":"AIR"},{"x":17,"y":12,"type":"AIR"},{"x":18,"y":12,"type":"DIRT"},{"x":19,"y":12,"type":"AIR"},{"x":20,"y":12,"type":"AIR"},{"x":21,"y":12,"type":"AIR"},{"x":22,"y":12,"type":"DIRT"},{"x":23,"y":12,"type":"AIR"},{"x":24,"y":12,"type":"AIR"},{"x":25,"y":12,"type":"DIRT"},{"x":26,"y":12,"type":"DIRT"},{"x":27,"y":12,"type":"DIRT"},{"x":28,"y":12,"type":"DIRT"},{"x":29,"y":12,"type":"DIRT"},{"x":30,"y":12,"type":"DIRT"},{"x":31,"y":12,"type":"AIR"},{"x":32,"y":12,"type":"AIR"}],[{"x":0,"y":13,"type":"AIR"},{"x":1,"y":13,"type":"AIR"},{"x":2,"y":13,"type":"DIRT"},{"x":3,"y":13,"type":"DIRT"},{"x":4,"y":13,"type":"DIRT"},{"x":5,"y":13,"type":"AIR"},{"x":6,"y":13,"type":"DIRT"},{"x":7,"y":13,"type":"DIRT"},{"x":8,"y":13,"type":"AIR"},{"x":9,"y":13,"type":"AIR"},{"x":10,"y":13,"type":"AIR"},{"x":11,"y":13,"type":"DIRT"},{"x":12,"y":13,"type":"AIR"},{"x":13,"y":13,"type":"AIR"},{"x":14,"y":13,"type":"DIRT"},{"x":15,"y":13,"type":"DIRT"},{"x":16,"y":13,"type":"AIR"},{"x":17,"y":13,"type":"DIRT"},{"x":18,"y":13,"type":"DIRT"},{"x":19,"y":13,"type":"AIR"},{"x":20,"y":13,"type":"AIR"},{"x":21,"y":13,"type":"DIRT"},{"x":22,"y":13,"type":"AIR"},{"x":23,"y":13,"type":"AIR"},{"x":24,"y":13,"type":"AIR"},{"x":25,"y":13,"type":"DIRT"},{"x":26,"y":13,"type":"DIRT"},{"x":27,"y":13,"type":"AIR"},{"x":28,"y":13,"type":"DIRT"},{"x":29,"y":13,"type":"DIRT"},{"x":30,"y":13,"type":"DIRT"},{"x":31,"y":13,"type":"AIR"},{"x":32,"y":13,"type":"AIR"}],[{"x":0,"y":14,"type":"DIRT"},{"x":1,"y":14,"type":"DIRT"},{"x":2,"y":14,"type":"DIRT"},{"x":3,"y":14,"type":"DIRT"},{"x":4,"y":14,"type":"DIRT"},{"x":5,"y":14,"type":"AIR"},{"x":6,"y":14,"type":"AIR"},{"x":7,"y":14,"type":"AIR"},{"x":8,"y":14,"type":"AIR"},{"x":9,"y":14,"type":"AIR"},{"x":10,"y":14,"type":"AIR"},{"x":11,"y":14,"type":"AIR"},{"x":12,"y":14,"type":"AIR"},{"x":13,"y":14,"type":"AIR"},{"x":14,"y":14,"type":"AIR"},{"x":15,"y":14,"type":"DIRT"},{"x":16,"y":14,"type":"AIR"},{"x":17,"y":14,"type":"DIRT"},{"x":18,"y":14,"type":"AIR"},{"x":19,"y":14,"type":"AIR"},{"x":20,"y":14,"type":"AIR"},{"x":21,"y":14,"type":"AIR"},{"x":22,"y":14,"type":"AIR"},{"x":23,"y":14,"type":"AIR"},{"x":24,"y":14,"type":"AIR"},{"x":25,"y":14,"type":"AIR"},{"x":26,"y":14,"type":"AIR"},{"x":27,"y":14,"type":"AIR"},{"x":28,"y":14,"type":"DIRT"},{"x":29,"y":14,"type":"DIRT"},{"x":30,"y":14,"type":"DIRT"},{"x":31,"y":14,"type":"DIRT"},{"x":32,"y":14,"type":"DIRT"}],[{"x":0,"y":15,"type":"AIR"},{"x":1,"y":15,"type":"AIR"},{"x":2,"y":15,"type":"AIR"},{"x":3,"y":15,"type":"DIRT"},{"x":4,"y":15,"type":"AIR"},{"x":5,"y":15,"type":"AIR"},{"x":6,"y":15,"type":"AIR"},{"x":7,"y":15,"type":"AIR"},{"x":8,"y":15,"type":"AIR"},{"x":9,"y":15,"type":"DIRT"},{"x":10,"y":15,"type":"AIR"},{"x":11,"y":15,"type":"AIR"},{"x":12,"y":15,"type":"DIRT"},{"x":13,"y":15,"type":"AIR"},{"x":14,"y":15,"type":"AIR"},{"x":15,"y":15,"type":"AIR"},{"x":16,"y":15,"type":"AIR"},{"x":17,"y":15,"type":"AIR"},{"x":18,"y":15,"type":"AIR"},{"x":19,"y":15,"type":"AIR"},{"x":20,"y":15,"type":"DIRT"},{"x":21,"y":15,"type":"AIR"},{"x":22,"y":15,"type":"AIR"},{"x":23,"y":15,"type":"DIRT"},{"x":24,"y":15,"type":"AIR"},{"x":25,"y":15,"type":"AIR"},{"x":26,"y":15,"type":"AIR"},{"x":27,"y":15,"type":"AIR"},{"x":28,"y":15,"type":"AIR"},{"x":29,"y":15,"type":"DIRT"},{"x":30,"y":15,"type":"AIR"},{"x":31,"y":15,"type":"AIR"},{"x":32,"y":15,"type":"AIR"}],[{"x":0,"y":16,"type":"AIR"},{"x":1,"y":16,"type":"AIR","occupier":{"id":2,"playerId":1,"health":150,"position":{"x":1,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":2,"y":16,"type":"AIR"},{"x":3,"y":16,"type":"DIRT"},{"x":4,"y":16,"type":"AIR"},{"x":5,"y":16,"type":"AIR"},{"x":6,"y":16,"type":"DIRT"},{"x":7,"y":16,"type":"DIRT"},{"x":8,"y":16,"type":"DIRT"},{"x":9,"y":16,"type":"DIRT"},{"x":10,"y":16,"type":"AIR"},{"x":11,"y":16,"type":"AIR"},{"x":12,"y":16,"type":"DIRT"},{"x":13,"y":16,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":14,"y":16,"type":"DIRT"},{"x":15,"y":16,"type":"AIR"},{"x":16,"y":16,"type":"AIR"},{"x":17,"y":16,"type":"AIR"},{"x":18,"y":16,"type":"DIRT"},{"x":19,"y":16,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":20,"y":16,"type":"DIRT"},{"x":21,"y":16,"type":"AIR"},{"x":22,"y":16,"type":"AIR"},{"x":23,"y":16,"type":"DIRT"},{"x":24,"y":16,"type":"DIRT"},{"x":25,"y":16,"type":"DIRT"},{"x":26,"y":16,"type":"DIRT"},{"x":27,"y":16,"type":"AIR"},{"x":28,"y":16,"type":"AIR"},{"x":29,"y":16,"type":"DIRT"},{"x":30,"y":16,"type":"AIR"},{"x":31,"y":16,"type":"AIR","occupier":{"id":1,"playerId":2,"health":150,"position":{"x":31,"y":16},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":32,"y":16,"type":"AIR"}],[{"x":0,"y":17,"type":"AIR"},{"x":1,"y":17,"type":"AIR"},{"x":2,"y":17,"type":"AIR"},{"x":3,"y":17,"type":"DIRT"},{"x":4,"y":17,"type":"AIR"},{"x":5,"y":17,"type":"DIRT"},{"x":6,"y":17,"type":"DIRT"},{"x":7,"y":17,"type":"DIRT"},{"x":8,"y":17,"type":"DIRT"},{"x":9,"y":17,"type":"AIR"},{"x":10,"y":17,"type":"AIR"},{"x":11,"y":17,"type":"DIRT"},{"x":12,"y":17,"type":"DIRT"},{"x":13,"y":17,"type":"AIR"},{"x":14,"y":17,"type":"AIR"},{"x":15,"y":17,"type":"AIR"},{"x":16,"y":17,"type":"AIR"},{"x":17,"y":17,"type":"AIR"},{"x":18,"y":17,"type":"AIR"},{"x":19,"y":17,"type":"AIR"},{"x":20,"y":17,"type":"DIRT"},{"x":21,"y":17,"type":"DIRT"},{"x":22,"y":17,"type":"AIR"},{"x":23,"y":17,"type":"AIR"},{"x":24,"y":17,"type":"DIRT"},{"x":25,"y":17,"type":"DIRT"},{"x":26,"y":17,"type":"DIRT"},{"x":27,"y":17,"type":"DIRT"},{"x":28,"y":17,"type":"AIR"},{"x":29,"y":17,"type":"DIRT"},{"x":30,"y":17,"type":"AIR"},{"x":31,"y":17,"type":"AIR"},{"x":32,"y":17,"type":"AIR"}],[{"x":0,"y":18,"type":"DIRT"},{"x":1,"y":18,"type":"DIRT"},{"x":2,"y":18,"type":"DIRT"},{"x":3,"y":18,"type":"DIRT"},{"x":4,"y":18,"type":"DIRT"},{"x":5,"y":18,"type":"AIR"},{"x":6,"y":18,"type":"AIR"},{"x":7,"y":18,"type":"DIRT"},{"x":8,"y":18,"type":"AIR"},{"x":9,"y":18,"type":"AIR"},{"x":10,"y":18,"type":"DIRT"},{"x":11,"y":18,"type":"DIRT"},{"x":12,"y":18,"type":"DIRT"},{"x":13,"y":18,"type":"AIR"},{"x":14,"y":18,"type":"AIR"},{"x":15,"y":18,"type":"AIR"},{"x":16,"y":18,"type":"AIR"},{"x":17,"y":18,"type":"AIR"},{"x":18,"y":18,"type":"AIR"},{"x":19,"y":18,"type":"AIR"},{"x":20,"y":18,"type":"DIRT"},{"x":21,"y":18,"type":"DIRT"},{"x":22,"y":18,"type":"DIRT"},{"x":23,"y":18,"type":"AIR"},{"x":24,"y":18,"type":"AIR"},{"x":25,"y":18,"type":"DIRT"},{"x":26,"y":18,"type":"AIR"},{"x":27,"y":18,"type":"AIR"},{"x":28,"y":18,"type":"DIRT"},{"x":29,"y":18,"type":"DIRT"},{"x":30,"y":18,"type":"DIRT"},{"x":31,"y":18,"type":"DIRT"},{"x":32,"y":18,"type":"DIRT"}],[{"x":0,"y":19,"type":"DIRT"},{"x":1,"y":19,"type":"DIRT"},{"x":2,"y":19,"type":"DIRT"},{"x":3,"y":19,"type":"DIRT"},{"x":4,"y":19,"type":"DIRT"},{"x":5,"y":19,"type":"AIR"},{"x":6,"y":19,"type":"AIR"},{"x":7,"y":19,"type":"DIRT"},{"x":8,"y":19,"type":"AIR"},{"x":9,"y":19,"type":"DIRT"},{"x":10,"y":19,"type":"DIRT"},{"x":11,"y":19,"type":"DIRT"},{"x":12,"y":19,"type":"DIRT"},{"x":13,"y":19,"type":"DIRT"},{"x":14,"y":19,"type":"AIR"},{"x":15,"y":19,"type":"AIR"},{"x":16,"y":19,"type":"AIR"},{"x":17,"y":19,"type":"AIR"},{"x":18,"y":19,"type":"AIR"},{"x":19,"y":19,"type":"DIRT"},{"x":20,"y":19,"type":"DIRT"},{"x":21,"y":19,"type":"DIRT"},{"x":22,"y":19,"type":"DIRT"},{"x":23,"y":19,"type":"DIRT"},{"x":24,"y":19,"type":"AIR"},{"x":25,"y":19,"type":"DIRT"},{"x":26,"y":19,"type":"AIR"},{"x":27,"y":19,"type":"AIR"},{"x":28,"y":19,"type":"DIRT"},{"x":29,"y":19,"type":"DIRT"},{"x":30,"y":19,"type":"DIRT"},{"x":31,"y":19,"type":"DIRT"},{"x":32,"y":19,"type":"DIRT"}],[{"x":0,"y":20,"type":"DIRT"},{"x":1,"y":20,"type":"DIRT"},{"x":2,"y":20,"type":"DIRT"},{"x":3,"y":20,"type":"AIR"},{"x":4,"y":20,"type":"DIRT"},{"x":5,"y":20,"type":"AIR"},{"x":6,"y":20,"type":"DIRT"},{"x":7,"y":20,"type":"DIRT"},{"x":8,"y":20,"type":"AIR"},{"x":9,"y":20,"type":"DIRT"},{"x":10,"y":20,"type":"DIRT"},{"x":11,"y":20,"type":"AIR"},{"x":12,"y":20,"type":"DIRT"},{"x":13,"y":20,"type":"AIR"},{"x":14,"y":20,"type":"AIR"},{"x":15,"y":20,"type":"AIR"},{"x":16,"y":20,"type":"DIRT"},{"x":17,"y":20,"type":"AIR"},{"x":18,"y":20,"type":"AIR"},{"x":19,"y":20,"type":"AIR"},{"x":20,"y":20,"type":"DIRT"},{"x":21,"y":20,"type":"AIR"},{"x":22,"y":20,"type":"DIRT"},{"x":23,"y":20,"type":"DIRT"},{"x":24,"y":20,"type":"AIR"},{"x":25,"y":20,"type":"DIRT"},{"x":26,"y":20,"type":"DIRT"},{"x":27,"y":20,"type":"AIR"},{"x":28,"y":20,"type":"DIRT"},{"x":29,"y":20,"type":"AIR"},{"x":30,"y":20,"type":"DIRT"},{"x":31,"y":20,"type":"DIRT"},{"x":32,"y":20,"type":"DIRT"}],[{"x":0,"y":21,"type":"DIRT"},{"x":1,"y":21,"type":"DIRT"},{"x":2,"y":21,"type":"AIR"},{"x":3,"y":21,"type":"AIR"},{"x":4,"y":21,"type":"AIR"},{"x":5,"y":21,"type":"DIRT"},{"x":6,"y":21,"type":"DIRT"},{"x":7,"y":21,"type":"DIRT"},{"x":8,"y":21,"type":"AIR"},{"x":9,"y":21,"type":"AIR"},{"x":10,"y":21,"type":"AIR"},{"x":11,"y":21,"type":"AIR"},{"x":12,"y":21,"type":"DIRT"},{"x":13,"y":21,"type":"AIR"},{"x":14,"y":21,"type":"AIR"},{"x":15,"y":21,"type":"DIRT"},{"x":16,"y":21,"type":"DIRT"},{"x":17,"y":21,"type":"DIRT"},{"x":18,"y":21,"type":"AIR"},{"x":19,"y":21,"type":"AIR"},{"x":20,"y":21,"type":"DIRT"},{"x":21,"y":21,"type":"AIR"},{"x":22,"y":21,"type":"AIR"},{"x":23,"y":21,"type":"AIR"},{"x":24,"y":21,"type":"AIR"},{"x":25,"y":21,"type":"DIRT"},{"x":26,"y":21,"type":"DIRT"},{"x":27,"y":21,"type":"DIRT"},{"x":28,"y":21,"type":"AIR"},{"x":29,"y":21,"type":"AIR"},{"x":30,"y":21,"type":"AIR"},{"x":31,"y":21,"type":"DIRT"},{"x":32,"y":21,"type":"DIRT"}],[{"x":0,"y":22,"type":"DEEP_SPACE"},{"x":1,"y":22,"type":"AIR"},{"x":2,"y":22,"type":"AIR"},{"x":3,"y":22,"type":"DIRT"},{"x":4,"y":22,"type":"AIR"},{"x":5,"y":22,"type":"AIR"},{"x":6,"y":22,"type":"DIRT"},{"x":7,"y":22,"type":"DIRT"},{"x":8,"y":22,"type":"AIR"},{"x":9,"y":22,"type":"AIR"},{"x":10,"y":22,"type":"AIR"},{"x":11,"y":22,"type":"DIRT"},{"x":12,"y":22,"type":"DIRT"},{"x":13,"y":22,"type":"AIR"},{"x":14,"y":22,"type":"AIR"},{"x":15,"y":22,"type":"AIR"},{"x":16,"y":22,"type":"AIR"},{"x":17,"y":22,"type":"AIR"},{"x":18,"y":22,"type":"AIR"},{"x":19,"y":22,"type":"AIR"},{"x":20,"y":22,"type":"DIRT"},{"x":21,"y":22,"type":"DIRT"},{"x":22,"y":22,"type":"AIR"},{"x":23,"y":22,"type":"AIR"},{"x":24,"y":22,"type":"AIR"},{"x":25,"y":22,"type":"DIRT"},{"x":26,"y":22,"type":"DIRT"},{"x":27,"y":22,"type":"AIR"},{"x":28,"y":22,"type":"AIR"},{"x":29,"y":22,"type":"DIRT"},{"x":30,"y":22,"type":"AIR"},{"x":31,"y":22,"type":"AIR"},{"x":32,"y":22,"type":"DEEP_SPACE"}],[{"x":0,"y":23,"type":"DEEP_SPACE"},{"x":1,"y":23,"type":"AIR"},{"x":2,"y":23,"type":"DIRT"},{"x":3,"y":23,"type":"DIRT"},{"x":4,"y":23,"type":"DIRT"},{"x":5,"y":23,"type":"DIRT"},{"x":6,"y":23,"type":"DIRT"},{"x":7,"y":23,"type":"AIR"},{"x":8,"y":23,"type":"AIR"},{"x":9,"y":23,"type":"AIR"},{"x":10,"y":23,"type":"DIRT"},{"x":11,"y":23,"type":"DIRT"},{"x":12,"y":23,"type":"AIR"},{"x":13,"y":23,"type":"AIR"},{"x":14,"y":23,"type":"AIR"},{"x":15,"y":23,"type":"DIRT"},{"x":16,"y":23,"type":"DIRT"},{"x":17,"y":23,"type":"DIRT"},{"x":18,"y":23,"type":"AIR"},{"x":19,"y":23,"type":"AIR"},{"x":20,"y":23,"type":"AIR"},{"x":21,"y":23,"type":"DIRT"},{"x":22,"y":23,"type":"DIRT"},{"x":23,"y":23,"type":"AIR"},{"x":24,"y":23,"type":"AIR"},{"x":25,"y":23,"type":"AIR"},{"x":26,"y":23,"type":"DIRT"},{"x":27,"y":23,"type":"DIRT"},{"x":28,"y":23,"type":"DIRT"},{"x":29,"y":23,"type":"DIRT"},{"x":30,"y":23,"type":"DIRT"},{"x":31,"y":23,"type":"AIR"},{"x":32,"y":23,"type":"DEEP_SPACE"}],[{"x":0,"y":24,"type":"DEEP_SPACE"},{"x":1,"y":24,"type":"DIRT"},{"x":2,"y":24,"type":"DIRT"},{"x":3,"y":24,"type":"AIR"},{"x":4,"y":24,"type":"DIRT"},{"x":5,"y":24,"type":"DIRT"},{"x":6,"y":24,"type":"DIRT"},{"x":7,"y":24,"type":"AIR"},{"x":8,"y":24,"type":"AIR"},{"x":9,"y":24,"type":"DIRT"},{"x":10,"y":24,"type":"DIRT"},{"x":11,"y":24,"type":"AIR"},{"x":12,"y":24,"type":"AIR"},{"x":13,"y":24,"type":"AIR"},{"x":14,"y":24,"type":"DIRT"},{"x":15,"y":24,"type":"DIRT"},{"x":16,"y":24,"type":"DIRT"},{"x":17,"y":24,"type":"DIRT"},{"x":18,"y":24,"type":"DIRT"},{"x":19,"y":24,"type":"AIR"},{"x":20,"y":24,"type":"AIR"},{"x":21,"y":24,"type":"AIR"},{"x":22,"y":24,"type":"DIRT"},{"x":23,"y":24,"type":"DIRT"},{"x":24,"y":24,"type":"AIR"},{"x":25,"y":24,"type":"AIR"},{"x":26,"y":24,"type":"DIRT"},{"x":27,"y":24,"type":"DIRT"},{"x":28,"y":24,"type":"DIRT"},{"x":29,"y":24,"type":"AIR"},{"x":30,"y":24,"type":"DIRT"},{"x":31,"y":24,"type":"DIRT"},{"x":32,"y":24,"type":"DEEP_SPACE"}],[{"x":0,"y":25,"type":"DEEP_SPACE"},{"x":1,"y":25,"type":"DEEP_SPACE"},{"x":2,"y":25,"type":"DIRT"},{"x":3,"y":25,"type":"DIRT"},{"x":4,"y":25,"type":"DIRT"},{"x":5,"y":25,"type":"DIRT"},{"x":6,"y":25,"type":"DIRT"},{"x":7,"y":25,"type":"DIRT"},{"x":8,"y":25,"type":"DIRT"},{"x":9,"y":25,"type":"DIRT"},{"x":10,"y":25,"type":"AIR"},{"x":11,"y":25,"type":"AIR"},{"x":12,"y":25,"type":"DIRT"},{"x":13,"y":25,"type":"DIRT"},{"x":14,"y":25,"type":"DIRT"},{"x":15,"y":25,"type":"DIRT"},{"x":16,"y":25,"type":"AIR"},{"x":17,"y":25,"type":"DIRT"},{"x":18,"y":25,"type":"DIRT"},{"x":19,"y":25,"type":"DIRT"},{"x":20,"y":25,"type":"DIRT"},{"x":21,"y":25,"type":"AIR"},{"x":22,"y":25,"type":"AIR"},{"x":23,"y":25,"type":"DIRT"},{"x":24,"y":25,"type":"DIRT"},{"x":25,"y":25,"type":"DIRT"},{"x":26,"y":25,"type":"DIRT"},{"x":27,"y":25,"type":"DIRT"},{"x":28,"y":25,"type":"DIRT"},{"x":29,"y":25,"type":"DIRT"},{"x":30,"y":25,"type":"DIRT"},{"x":31,"y":25,"type":"DEEP_SPACE"},{"x":32,"y":25,"type":"DEEP_SPACE"}],[{"x":0,"y":26,"type":"DEEP_SPACE"},{"x":1,"y":26,"type":"DEEP_SPACE"},{"x":2,"y":26,"type":"DEEP_SPACE"},{"x":3,"y":26,"type":"DIRT"},{"x":4,"y":26,"type":"DIRT"},{"x":5,"y":26,"type":"AIR"},{"x":6,"y":26,"type":"DIRT"},{"x":7,"y":26,"type":"DIRT"},{"x":8,"y":26,"type":"DIRT"},{"x":9,"y":26,"type":"DIRT"},{"x":10,"y":26,"type":"DIRT"},{"x":11,"y":26,"type":"AIR"},{"x":12,"y":26,"type":"DIRT"},{"x":13,"y":26,"type":"DIRT"},{"x":14,"y":26,"type":"DIRT"},{"x":15,"y":26,"type":"AIR"},{"x":16,"y":26,"type":"AIR"},{"x":17,"y":26,"type":"AIR"},{"x":18,"y":26,"type":"DIRT"},{"x":19,"y":26,"type":"DIRT"},{"x":20,"y":26,"type":"DIRT"},{"x":21,"y":26,"type":"AIR"},{"x":22,"y":26,"type":"DIRT"},{"x":23,"y":26,"type":"DIRT"},{"x":24,"y":26,"type":"DIRT"},{"x":25,"y":26,"type":"DIRT"},{"x":26,"y":26,"type":"DIRT"},{"x":27,"y":26,"type":"AIR"},{"x":28,"y":26,"type":"DIRT"},{"x":29,"y":26,"type":"DIRT"},{"x":30,"y":26,"type":"DEEP_SPACE"},{"x":31,"y":26,"type":"DEEP_SPACE"},{"x":32,"y":26,"type":"DEEP_SPACE"}],[{"x":0,"y":27,"type":"DEEP_SPACE"},{"x":1,"y":27,"type":"DEEP_SPACE"},{"x":2,"y":27,"type":"DEEP_SPACE"},{"x":3,"y":27,"type":"DEEP_SPACE"},{"x":4,"y":27,"type":"DIRT"},{"x":5,"y":27,"type":"DIRT"},{"x":6,"y":27,"type":"DIRT"},{"x":7,"y":27,"type":"AIR"},{"x":8,"y":27,"type":"AIR"},{"x":9,"y":27,"type":"AIR"},{"x":10,"y":27,"type":"DIRT"},{"x":11,"y":27,"type":"AIR"},{"x":12,"y":27,"type":"AIR"},{"x":13,"y":27,"type":"AIR"},{"x":14,"y":27,"type":"AIR"},{"x":15,"y":27,"type":"DIRT"},{"x":16,"y":27,"type":"DIRT"},{"x":17,"y":27,"type":"DIRT"},{"x":18,"y":27,"type":"AIR"},{"x":19,"y":27,"type":"AIR"},{"x":20,"y":27,"type":"AIR"},{"x":21,"y":27,"type":"AIR"},{"x":22,"y":27,"type":"DIRT"},{"x":23,"y":27,"type":"AIR"},{"x":24,"y":27,"type":"AIR"},{"x":25,"y":27,"type":"AIR"},{"x":26,"y":27,"type":"DIRT"},{"x":27,"y":27,"type":"DIRT"},{"x":28,"y":27,"type":"DIRT"},{"x":29,"y":27,"type":"DEEP_SPACE"},{"x":30,"y":27,"type":"DEEP_SPACE"},{"x":31,"y":27,"type":"DEEP_SPACE"},{"x":32,"y":27,"type":"DEEP_SPACE"}],[{"x":0,"y":28,"type":"DEEP_SPACE"},{"x":1,"y":28,"type":"DEEP_SPACE"},{"x":2,"y":28,"type":"DEEP_SPACE"},{"x":3,"y":28,"type":"DEEP_SPACE"},{"x":4,"y":28,"type":"AIR"},{"x":5,"y":28,"type":"DIRT"},{"x":6,"y":28,"type":"DIRT"},{"x":7,"y":28,"type":"AIR"},{"x":8,"y":28,"type":"AIR","occupier":{"id":2,"playerId":2,"health":150,"position":{"x":8,"y":28},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":9,"y":28,"type":"AIR"},{"x":10,"y":28,"type":"DIRT"},{"x":11,"y":28,"type":"DIRT"},{"x":12,"y":28,"type":"AIR"},{"x":13,"y":28,"type":"AIR"},{"x":14,"y":28,"type":"AIR"},{"x":15,"y":28,"type":"AIR"},{"x":16,"y":28,"type":"AIR"},{"x":17,"y":28,"type":"AIR"},{"x":18,"y":28,"type":"AIR"},{"x":19,"y":28,"type":"AIR"},{"x":20,"y":28,"type":"AIR"},{"x":21,"y":28,"type":"DIRT"},{"x":22,"y":28,"type":"DIRT"},{"x":23,"y":28,"type":"AIR"},{"x":24,"y":28,"type":"AIR","occupier":{"id":1,"playerId":1,"health":150,"position":{"x":24,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":25,"y":28,"type":"AIR"},{"x":26,"y":28,"type":"DIRT"},{"x":27,"y":28,"type":"DIRT"},{"x":28,"y":28,"type":"AIR"},{"x":29,"y":28,"type":"DEEP_SPACE"},{"x":30,"y":28,"type":"DEEP_SPACE"},{"x":31,"y":28,"type":"DEEP_SPACE"},{"x":32,"y":28,"type":"DEEP_SPACE"}],[{"x":0,"y":29,"type":"DEEP_SPACE"},{"x":1,"y":29,"type":"DEEP_SPACE"},{"x":2,"y":29,"type":"DEEP_SPACE"},{"x":3,"y":29,"type":"DEEP_SPACE"},{"x":4,"y":29,"type":"DEEP_SPACE"},{"x":5,"y":29,"type":"DEEP_SPACE"},{"x":6,"y":29,"type":"DIRT"},{"x":7,"y":29,"type":"AIR"},{"x":8,"y":29,"type":"AIR"},{"x":9,"y":29,"type":"AIR"},{"x":10,"y":29,"type":"DIRT"},{"x":11,"y":29,"type":"DIRT"},{"x":12,"y":29,"type":"AIR"},{"x":13,"y":29,"type":"AIR"},{"x":14,"y":29,"type":"DIRT"},{"x":15,"y":29,"type":"DIRT"},{"x":16,"y":29,"type":"AIR"},{"x":17,"y":29,"type":"DIRT"},{"x":18,"y":29,"type":"DIRT"},{"x":19,"y":29,"type":"AIR"},{"x":20,"y":29,"type":"AIR"},{"x":21,"y":29,"type":"DIRT"},{"x":22,"y":29,"type":"DIRT"},{"x":23,"y":29,"type":"AIR"},{"x":24,"y":29,"type":"AIR"},{"x":25,"y":29,"type":"AIR"},{"x":26,"y":29,"type":"DIRT"},{"x":27,"y":29,"type":"DEEP_SPACE"},{"x":28,"y":29,"type":"DEEP_SPACE"},{"x":29,"y":29,"type":"DEEP_SPACE"},{"x":30,"y":29,"type":"DEEP_SPACE"},{"x":31,"y":29,"type":"DEEP_SPACE"},{"x":32,"y":29,"type":"DEEP_SPACE"}],[{"x":0,"y":30,"type":"DEEP_SPACE"},{"x":1,"y":30,"type":"DEEP_SPACE"},{"x":2,"y":30,"type":"DEEP_SPACE"},{"x":3,"y":30,"type":"DEEP_SPACE"},{"x":4,"y":30,"type":"DEEP_SPACE"},{"x":5,"y":30,"type":"DEEP_SPACE"},{"x":6,"y":30,"type":"DEEP_SPACE"},{"x":7,"y":30,"type":"DIRT"},{"x":8,"y":30,"type":"DIRT"},{"x":9,"y":30,"type":"DIRT"},{"x":10,"y":30,"type":"DIRT"},{"x":11,"y":30,"type":"AIR"},{"x":12,"y":30,"type":"AIR"},{"x":13,"y":30,"type":"AIR"},{"x":14,"y":30,"type":"AIR"},{"x":15,"y":30,"type":"DIRT"},{"x":16,"y":30,"type":"AIR"},{"x":17,"y":30,"type":"DIRT"},{"x":18,"y":30,"type":"AIR"},{"x":19,"y":30,"type":"AIR"},{"x":20,"y":30,"type":"AIR"},{"x":21,"y":30,"type":"AIR"},{"x":22,"y":30,"type":"DIRT"},{"x":23,"y":30,"type":"DIRT"},{"x":24,"y":30,"type":"DIRT"},{"x":25,"y":30,"type":"DIRT"},{"x":26,"y":30,"type":"DEEP_SPACE"},{"x":27,"y":30,"type":"DEEP_SPACE"},{"x":28,"y":30,"type":"DEEP_SPACE"},{"x":29,"y":30,"type":"DEEP_SPACE"},{"x":30,"y":30,"type":"DEEP_SPACE"},{"x":31,"y":30,"type":"DEEP_SPACE"},{"x":32,"y":30,"type":"DEEP_SPACE"}],[{"x":0,"y":31,"type":"DEEP_SPACE"},{"x":1,"y":31,"type":"DEEP_SPACE"},{"x":2,"y":31,"type":"DEEP_SPACE"},{"x":3,"y":31,"type":"DEEP_SPACE"},{"x":4,"y":31,"type":"DEEP_SPACE"},{"x":5,"y":31,"type":"DEEP_SPACE"},{"x":6,"y":31,"type":"DEEP_SPACE"},{"x":7,"y":31,"type":"DEEP_SPACE"},{"x":8,"y":31,"type":"AIR"},{"x":9,"y":31,"type":"AIR"},{"x":10,"y":31,"type":"AIR"},{"x":11,"y":31,"type":"AIR"},{"x":12,"y":31,"type":"AIR"},{"x":13,"y":31,"type":"AIR"},{"x":14,"y":31,"type":"AIR"},{"x":15,"y":31,"type":"DIRT"},{"x":16,"y":31,"type":"DIRT"},{"x":17,"y":31,"type":"DIRT"},{"x":18,"y":31,"type":"AIR"},{"x":19,"y":31,"type":"AIR"},{"x":20,"y":31,"type":"AIR"},{"x":21,"y":31,"type":"AIR"},{"x":22,"y":31,"type":"AIR"},{"x":23,"y":31,"type":"AIR"},{"x":24,"y":31,"type":"AIR"},{"x":25,"y":31,"type":"DEEP_SPACE"},{"x":26,"y":31,"type":"DEEP_SPACE"},{"x":27,"y":31,"type":"DEEP_SPACE"},{"x":28,"y":31,"type":"DEEP_SPACE"},{"x":29,"y":31,"type":"DEEP_SPACE"},{"x":30,"y":31,"type":"DEEP_SPACE"},{"x":31,"y":31,"type":"DEEP_SPACE"},{"x":32,"y":31,"type":"DEEP_SPACE"}],[{"x":0,"y":32,"type":"DEEP_SPACE"},{"x":1,"y":32,"type":"DEEP_SPACE"},{"x":2,"y":32,"type":"DEEP_SPACE"},{"x":3,"y":32,"type":"DEEP_SPACE"},{"x":4,"y":32,"type":"DEEP_SPACE"},{"x":5,"y":32,"type":"DEEP_SPACE"},{"x":6,"y":32,"type":"DEEP_SPACE"},{"x":7,"y":32,"type":"DEEP_SPACE"},{"x":8,"y":32,"type":"DEEP_SPACE"},{"x":9,"y":32,"type":"DEEP_SPACE"},{"x":10,"y":32,"type":"DEEP_SPACE"},{"x":11,"y":32,"type":"AIR"},{"x":12,"y":32,"type":"AIR"},{"x":13,"y":32,"type":"DIRT"},{"x":14,"y":32,"type":"DIRT"},{"x":15,"y":32,"type":"DIRT"},{"x":16,"y":32,"type":"DIRT"},{"x":17,"y":32,"type":"DIRT"},{"x":18,"y":32,"type":"DIRT"},{"x":19,"y":32,"type":"DIRT"},{"x":20,"y":32,"type":"AIR"},{"x":21,"y":32,"type":"AIR"},{"x":22,"y":32,"type":"DEEP_SPACE"},{"x":23,"y":32,"type":"DEEP_SPACE"},{"x":24,"y":32,"type":"DEEP_SPACE"},{"x":25,"y":32,"type":"DEEP_SPACE"},{"x":26,"y":32,"type":"DEEP_SPACE"},{"x":27,"y":32,"type":"DEEP_SPACE"},{"x":28,"y":32,"type":"DEEP_SPACE"},{"x":29,"y":32,"type":"DEEP_SPACE"},{"x":30,"y":32,"type":"DEEP_SPACE"},{"x":31,"y":32,"type":"DEEP_SPACE"},{"x":32,"y":32,"type":"DEEP_SPACE"}]]} \ No newline at end of file
diff --git a/tests/replays/2019.07.08.21.54.09/A-log.csv b/tests/replays/2019.07.08.21.54.09/A-log.csv
deleted file mode 100644
index 70b1243..0000000
--- a/tests/replays/2019.07.08.21.54.09/A-log.csv
+++ /dev/null
@@ -1,334 +0,0 @@
-Round,LastCommandType,LastCommand,ActiveWorm,Score,Health,Worm1 Health,Worm1 x,Worm1 y,Worm2 Health,Worm2 x,Worm2 y,Worm3 Health,Worm3 x,Worm3 y
-1,null,"null",1,133,400,150,24,28,150,1,16,100,24,4
-2,move,"move (25, 28)",1,138,400,150,25,28,150,1,16,100,24,4
-3,move,"move (2, 15)",2,143,400,150,25,28,150,2,15,100,24,4
-4,banana,"banana (27, 6)",3,213,400,150,25,28,150,2,15,100,24,4
-5,dig,"dig (26, 28)",1,220,400,150,25,28,150,2,15,100,24,4
-6,dig,"dig (2, 14)",2,227,400,150,25,28,150,2,15,100,24,4
-7,banana,"banana (21, 2)",3,290,400,150,25,28,150,2,15,100,24,4
-8,dig,"dig (26, 27)",1,297,400,150,25,28,150,2,15,100,24,4
-9,dig,"dig (3, 14)",2,304,400,150,25,28,150,2,15,100,24,4
-10,banana,"banana (22, 6)",3,367,400,150,25,28,150,2,15,100,24,4
-11,dig,"dig (26, 29)",1,374,400,150,25,28,150,2,15,100,24,4
-12,dig,"dig (3, 16)",2,381,400,150,25,28,150,2,15,100,24,4
-13,move,"move (25, 5)",3,386,400,150,25,28,150,2,15,100,25,5
-14,move,"move (25, 27)",1,391,400,150,25,27,150,2,15,100,25,5
-15,dig,"dig (3, 15)",2,398,400,150,25,27,150,2,15,100,25,5
-16,dig,"dig (26, 4)",3,405,400,150,25,27,150,2,15,100,25,5
-17,dig,"dig (24, 26)",1,412,400,150,25,27,150,2,15,100,25,5
-18,dig,"dig (1, 14)",2,419,400,150,25,27,150,2,15,100,25,5
-19,move,"move (26, 6)",3,424,400,150,25,27,150,2,15,100,26,6
-20,dig,"dig (26, 26)",1,431,400,150,25,27,150,2,15,100,26,6
-21,move,"move (1, 16)",2,436,400,150,25,27,150,1,16,100,26,6
-22,move,"move (25, 5)",3,441,400,150,25,27,150,1,16,100,25,5
-23,dig,"dig (25, 26)",1,448,400,150,25,27,150,1,16,100,25,5
-24,move,"move (2, 17)",2,453,400,150,25,27,150,2,17,100,25,5
-25,move,"move (26, 4)",3,458,400,150,25,27,150,2,17,100,26,4
-26,move,"move (25, 28)",1,463,400,150,25,28,150,2,17,100,26,4
-27,dig,"dig (3, 17)",2,470,400,150,25,28,150,2,17,100,26,4
-28,dig,"dig (26, 3)",3,477,400,150,25,28,150,2,17,100,26,4
-29,move,"move (26, 28)",1,482,400,150,26,28,150,2,17,100,26,4
-30,dig,"dig (3, 18)",2,489,400,150,26,28,150,2,17,100,26,4
-31,move,"move (27, 5)",3,494,400,150,26,28,150,2,17,100,27,5
-32,dig,"dig (27, 28)",1,501,400,150,26,28,150,2,17,100,27,5
-33,dig,"dig (2, 18)",2,508,400,150,26,28,150,2,17,100,27,5
-34,move,"move (27, 4)",3,513,400,150,26,28,150,2,17,100,27,4
-35,dig,"dig (27, 27)",1,520,400,150,26,28,150,2,17,100,27,4
-36,dig,"dig (1, 18)",2,527,400,150,26,28,150,2,17,100,27,4
-37,move,"move (28, 4)",3,532,400,150,26,28,150,2,17,100,28,4
-38,move,"move (27, 28)",1,537,400,150,27,28,150,2,17,100,28,4
-39,move,"move (1, 16)",2,542,400,150,27,28,150,1,16,100,28,4
-40,move,"move (28, 5)",3,547,400,150,27,28,150,1,16,100,28,5
-41,dig,"dig (28, 27)",1,554,400,150,27,28,150,1,16,100,28,5
-42,move,"move (0, 16)",2,559,400,150,27,28,150,0,16,100,28,5
-43,move,"move (27, 6)",3,564,400,150,27,28,150,0,16,100,27,6
-44,move,"move (27, 27)",1,569,400,150,27,27,150,0,16,100,27,6
-45,move,"move (1, 16)",2,574,400,150,27,27,150,1,16,100,27,6
-46,move,"move (26, 6)",3,579,400,150,27,27,150,1,16,100,26,6
-47,move,"move (26, 26)",1,584,400,150,26,26,150,1,16,100,26,6
-48,move,"move (1, 17)",2,589,400,150,26,26,150,1,17,100,26,6
-49,move,"move (27, 6)",3,594,400,150,26,26,150,1,17,100,27,6
-50,dig,"dig (25, 25)",1,601,400,150,26,26,150,1,17,100,27,6
-51,dig,"dig (0, 18)",2,608,400,150,26,26,150,1,17,100,27,6
-52,move,"move (27, 5)",3,613,400,150,26,26,150,1,17,100,27,5
-53,dig,"dig (26, 25)",1,620,400,150,26,26,150,1,17,100,27,5
-54,move,"move (2, 18)",2,625,400,150,26,26,150,2,18,100,27,5
-55,move,"move (28, 5)",3,630,400,150,26,26,150,2,18,100,28,5
-56,move,"move (26, 25)",1,635,400,150,26,25,150,2,18,100,28,5
-57,dig,"dig (2, 19)",2,642,400,150,26,25,150,2,18,100,28,5
-58,move,"move (28, 6)",3,647,400,150,26,25,150,2,18,100,28,6
-59,dig,"dig (27, 24)",1,654,400,150,26,25,150,2,18,100,28,6
-60,dig,"dig (3, 19)",2,661,400,150,26,25,150,2,18,100,28,6
-61,move,"move (27, 5)",3,666,400,150,26,25,150,2,18,100,27,5
-62,move,"move (27, 26)",1,671,400,150,27,26,150,2,18,100,27,5
-63,dig,"dig (1, 19)",2,678,400,150,27,26,150,2,18,100,27,5
-64,move,"move (28, 6)",3,683,400,150,27,26,150,2,18,100,28,6
-65,dig,"dig (27, 25)",1,690,400,150,27,26,150,2,18,100,28,6
-66,move,"move (2, 19)",2,695,400,150,27,26,150,2,19,100,28,6
-67,move,"move (27, 6)",3,700,400,150,27,26,150,2,19,100,27,6
-68,dig,"dig (28, 26)",1,707,400,150,27,26,150,2,19,100,27,6
-69,dig,"dig (2, 20)",2,714,400,150,27,26,150,2,19,100,27,6
-70,move,"move (26, 7)",3,719,400,150,27,26,150,2,19,100,26,7
-71,dig,"dig (28, 25)",1,726,400,150,27,26,150,2,19,100,26,7
-72,dig,"dig (1, 20)",2,733,400,150,27,26,150,2,19,100,26,7
-73,dig,"dig (25, 8)",3,740,400,150,27,26,150,2,19,100,26,7
-74,move,"move (27, 25)",1,745,400,150,27,25,150,2,19,100,26,7
-75,move,"move (1, 19)",2,750,400,150,27,25,150,1,19,100,26,7
-76,move,"move (26, 6)",3,755,400,150,27,25,150,1,19,100,26,6
-77,dig,"dig (26, 24)",1,762,400,150,27,25,150,1,19,100,26,6
-78,dig,"dig (0, 20)",2,769,400,150,27,25,150,1,19,100,26,6
-79,move,"move (26, 5)",3,774,400,150,27,25,150,1,19,100,26,5
-80,dig,"dig (28, 24)",1,781,400,150,27,25,150,1,19,100,26,5
-81,dig,"dig (0, 19)",2,788,400,150,27,25,150,1,19,100,26,5
-82,move,"move (27, 4)",3,793,400,150,27,25,150,1,19,100,27,4
-83,move,"move (27, 26)",1,798,400,150,27,26,150,1,19,100,27,4
-84,move,"move (0, 18)",2,803,400,150,27,26,150,0,18,100,27,4
-85,move,"move (26, 3)",3,808,400,150,27,26,150,0,18,100,26,3
-86,move,"move (28, 27)",1,813,400,150,28,27,150,0,18,100,26,3
-87,move,"move (0, 19)",2,818,400,150,28,27,150,0,19,100,26,3
-88,dig,"dig (25, 2)",3,825,400,150,28,27,150,0,19,100,26,3
-89,dig,"dig (29, 26)",1,832,400,150,28,27,150,0,19,100,26,3
-90,move,"move (1, 20)",2,837,400,150,28,27,150,1,20,100,26,3
-91,move,"move (26, 4)",3,842,400,150,28,27,150,1,20,100,26,4
-92,move,"move (28, 28)",1,847,400,150,28,28,150,1,20,100,26,4
-93,dig,"dig (1, 21)",2,854,400,150,28,28,150,1,20,100,26,4
-94,move,"move (27, 5)",3,859,400,150,28,28,150,1,20,100,27,5
-95,move,"move (27, 27)",1,864,400,150,27,27,150,1,20,100,27,5
-96,shoot,"shoot N",1,880,400,150,27,27,150,1,20,100,27,5
-97,shoot,"shoot N",1,896,400,150,27,27,150,1,20,100,27,5
-98,shoot,"shoot N",1,909,392,142,27,27,150,1,20,100,27,5
-99,shoot,"shoot N",1,925,392,142,27,27,150,1,20,100,27,5
-100,shoot,"shoot N",1,941,392,142,27,27,150,1,20,100,27,5
-101,dig,"dig (0, 21)",2,948,392,142,27,27,150,1,20,100,27,5
-102,move,"move (28, 6)",3,951,384,134,27,27,150,1,20,100,28,6
-103,shoot,"shoot W",1,964,376,126,27,27,150,1,20,100,28,6
-104,move,"move (0, 20)",2,969,376,126,27,27,150,0,20,100,28,6
-105,move,"move (28, 7)",3,971,368,118,27,27,150,0,20,100,28,7
-106,shoot,"shoot W",1,985,360,110,27,27,150,0,20,100,28,7
-107,move,"move (1, 21)",2,990,360,110,27,27,150,1,21,100,28,7
-108,move,"move (27, 6)",3,992,352,102,27,27,150,1,21,100,27,6
-109,shoot,"shoot W",1,1005,344,94,27,27,150,1,21,100,27,6
-110,move,"move (2, 22)",2,1010,344,94,27,27,150,2,22,100,27,6
-111,move,"move (26, 5)",3,1013,336,86,27,27,150,2,22,100,26,5
-112,shoot,"shoot W",1,1026,328,78,27,27,150,2,22,100,26,5
-113,dig,"dig (3, 23)",2,1033,328,78,27,27,150,2,22,100,26,5
-114,move,"move (26, 6)",3,1035,320,70,27,27,150,2,22,100,26,6
-115,shoot,"shoot N",1,1049,312,62,27,27,150,2,22,100,26,6
-116,dig,"dig (3, 22)",2,1056,312,62,27,27,150,2,22,100,26,6
-117,move,"move (25, 7)",3,1058,304,54,27,27,150,2,22,100,25,7
-118,shoot,"shoot N",1,1071,296,46,27,27,150,2,22,100,25,7
-119,dig,"dig (2, 23)",2,1078,296,46,27,27,150,2,22,100,25,7
-120,dig,"dig (24, 7)",3,1083,288,38,27,27,150,2,22,100,25,7
-121,shoot,"shoot N",1,1096,280,30,27,27,150,2,22,100,25,7
-122,move,"move (3, 22)",2,1101,280,30,27,27,150,3,22,100,25,7
-123,dig,"dig (24, 8)",3,1105,272,22,27,27,150,3,22,100,25,7
-124,shoot,"shoot N",1,1119,264,14,27,27,150,3,22,100,25,7
-125,dig,"dig (4, 23)",2,1126,264,14,27,27,150,3,22,100,25,7
-126,move,"move (24, 6)",3,1128,256,6,27,27,150,3,22,100,24,6
-127,shoot,"shoot N",1,1144,256,6,27,27,150,3,22,100,24,6
-128,move,"move (3, 23)",2,1147,250,-2,27,27,150,3,23,100,24,6
-129,move,"move (23, 7)",3,1152,250,-2,27,27,150,3,23,100,23,7
-130,dig,"dig (4, 24)",2,1159,250,-2,27,27,150,3,23,100,23,7
-131,move,"move (22, 8)",3,1164,250,-2,27,27,150,3,23,100,22,8
-132,dig,"dig (2, 24)",2,1171,250,-2,27,27,150,3,23,100,22,8
-133,dig,"dig (21, 8)",3,1178,250,-2,27,27,150,3,23,100,22,8
-134,move,"move (2, 22)",2,1183,250,-2,27,27,150,2,22,100,22,8
-135,move,"move (21, 7)",3,1188,250,-2,27,27,150,2,22,100,21,7
-136,move,"move (1, 23)",2,1193,250,-2,27,27,150,1,23,100,21,7
-137,dig,"dig (20, 8)",3,1200,250,-2,27,27,150,1,23,100,21,7
-138,move,"move (2, 23)",2,1205,250,-2,27,27,150,2,23,100,21,7
-139,move,"move (20, 6)",3,1210,250,-2,27,27,150,2,23,100,20,6
-140,dig,"dig (1, 24)",2,1217,250,-2,27,27,150,2,23,100,20,6
-141,dig,"dig (19, 6)",3,1224,250,-2,27,27,150,2,23,100,20,6
-142,move,"move (1, 24)",2,1229,250,-2,27,27,150,1,24,100,20,6
-143,dig,"dig (19, 5)",3,1236,250,-2,27,27,150,1,24,100,20,6
-144,move,"move (1, 23)",2,1241,250,-2,27,27,150,1,23,100,20,6
-145,dig,"dig (20, 5)",3,1248,250,-2,27,27,150,1,23,100,20,6
-146,move,"move (2, 24)",2,1253,250,-2,27,27,150,2,24,100,20,6
-147,move,"move (21, 7)",3,1258,250,-2,27,27,150,2,24,100,21,7
-148,dig,"dig (3, 25)",2,1265,250,-2,27,27,150,2,24,100,21,7
-149,move,"move (21, 6)",3,1270,250,-2,27,27,150,2,24,100,21,6
-150,move,"move (3, 24)",2,1275,250,-2,27,27,150,3,24,100,21,6
-151,move,"move (21, 5)",3,1280,250,-2,27,27,150,3,24,100,21,5
-152,dig,"dig (4, 25)",2,1287,250,-2,27,27,150,3,24,100,21,5
-153,dig,"dig (20, 4)",3,1294,250,-2,27,27,150,3,24,100,21,5
-154,dig,"dig (2, 25)",2,1301,250,-2,27,27,150,3,24,100,21,5
-155,move,"move (21, 6)",3,1306,250,-2,27,27,150,3,24,100,21,6
-156,move,"move (4, 23)",2,1311,250,-2,27,27,150,4,23,100,21,6
-157,move,"move (20, 6)",3,1316,250,-2,27,27,150,4,23,100,20,6
-158,dig,"dig (5, 24)",2,1323,250,-2,27,27,150,4,23,100,20,6
-159,move,"move (20, 7)",3,1328,250,-2,27,27,150,4,23,100,20,7
-160,dig,"dig (5, 23)",2,1335,250,-2,27,27,150,4,23,100,20,7
-161,move,"move (19, 6)",3,1340,250,-2,27,27,150,4,23,100,19,6
-162,move,"move (3, 23)",2,1345,250,-2,27,27,150,3,23,100,19,6
-163,dig,"dig (18, 5)",3,1352,250,-2,27,27,150,3,23,100,19,6
-164,move,"move (4, 22)",2,1357,250,-2,27,27,150,4,22,100,19,6
-165,move,"move (18, 5)",3,1362,250,-2,27,27,150,4,22,100,18,5
-166,dig,"dig (5, 21)",2,1369,250,-2,27,27,150,4,22,100,18,5
-167,move,"move (17, 4)",3,1374,250,-2,27,27,150,4,22,100,17,4
-168,move,"move (5, 21)",2,1379,250,-2,27,27,150,5,21,100,17,4
-169,dig,"dig (16, 5)",3,1386,250,-2,27,27,150,5,21,100,17,4
-170,dig,"dig (6, 20)",2,1393,250,-2,27,27,150,5,21,100,17,4
-171,dig,"dig (16, 3)",3,1400,250,-2,27,27,150,5,21,100,17,4
-172,dig,"dig (6, 22)",2,1407,250,-2,27,27,150,5,21,100,17,4
-173,move,"move (16, 3)",3,1412,250,-2,27,27,150,5,21,100,16,3
-174,dig,"dig (4, 20)",2,1419,250,-2,27,27,150,5,21,100,16,3
-175,dig,"dig (16, 2)",3,1426,250,-2,27,27,150,5,21,100,16,3
-176,dig,"dig (6, 21)",2,1433,250,-2,27,27,150,5,21,100,16,3
-177,move,"move (16, 2)",3,1438,250,-2,27,27,150,5,21,100,16,2
-178,move,"move (6, 20)",2,1443,250,-2,27,27,150,6,20,100,16,2
-179,move,"move (15, 1)",3,1448,250,-2,27,27,150,6,20,100,15,1
-180,dig,"dig (7, 20)",2,1455,250,-2,27,27,150,6,20,100,15,1
-181,dig,"dig (15, 2)",3,1462,250,-2,27,27,150,6,20,100,15,1
-182,dig,"dig (7, 19)",2,1469,250,-2,27,27,150,6,20,100,15,1
-183,move,"move (14, 0)",3,1474,250,-2,27,27,150,6,20,100,14,0
-184,dig,"dig (7, 21)",2,1481,250,-2,27,27,150,6,20,100,14,0
-185,move,"move (15, 1)",3,1486,250,-2,27,27,150,6,20,100,15,1
-186,move,"move (5, 19)",2,1491,250,-2,27,27,150,5,19,100,15,1
-187,move,"move (14, 0)",3,1496,250,-2,27,27,150,5,19,100,14,0
-188,dig,"dig (4, 19)",2,1503,250,-2,27,27,150,5,19,100,14,0
-189,dig,"dig (14, 1)",3,1510,250,-2,27,27,150,5,19,100,14,0
-190,dig,"dig (4, 18)",2,1517,250,-2,27,27,150,5,19,100,14,0
-191,move,"move (15, 0)",3,1522,250,-2,27,27,150,5,19,100,15,0
-192,move,"move (6, 18)",2,1527,250,-2,27,27,150,6,18,100,15,0
-193,move,"move (14, 0)",3,1532,250,-2,27,27,150,6,18,100,14,0
-194,dig,"dig (7, 17)",2,1539,250,-2,27,27,150,6,18,100,14,0
-195,move,"move (15, 0)",3,1544,250,-2,27,27,150,6,18,100,15,0
-196,dig,"dig (7, 18)",2,1551,250,-2,27,27,150,6,18,100,15,0
-197,move,"move (16, 0)",3,1556,250,-2,27,27,150,6,18,100,16,0
-198,dig,"dig (6, 17)",2,1563,250,-2,27,27,150,6,18,100,16,0
-199,move,"move (15, 0)",3,1568,250,-2,27,27,150,6,18,100,15,0
-200,dig,"dig (5, 17)",2,1575,250,-2,27,27,150,6,18,100,15,0
-201,move,"move (16, 0)",3,1580,250,-2,27,27,150,6,18,100,16,0
-202,move,"move (7, 17)",2,1585,250,-2,27,27,150,7,17,100,16,0
-203,move,"move (15, 0)",3,1590,250,-2,27,27,150,7,17,100,15,0
-204,dig,"dig (6, 16)",2,1597,250,-2,27,27,150,7,17,100,15,0
-205,move,"move (16, 0)",3,1602,250,-2,27,27,150,7,17,100,16,0
-206,dig,"dig (8, 16)",2,1609,250,-2,27,27,150,7,17,100,16,0
-207,shoot,"shoot S",3,1625,250,-2,27,27,150,7,17,100,16,0
-208,dig,"dig (8, 17)",2,1629,242,-2,27,27,150,7,17,92,16,0
-209,shoot,"shoot S",3,1645,242,-2,27,27,150,7,17,92,16,0
-210,dig,"dig (7, 16)",2,1652,242,-2,27,27,150,7,17,92,16,0
-211,shoot,"shoot S",3,1666,234,-2,27,27,150,7,17,84,16,0
-212,move,"move (8, 16)",2,1671,234,-2,27,27,150,8,16,84,16,0
-213,move,"move (15, 0)",3,1676,234,-2,27,27,150,8,16,84,15,0
-214,dig,"dig (9, 16)",2,1683,234,-2,27,27,150,8,16,84,15,0
-215,move,"move (16, 0)",3,1688,234,-2,27,27,150,8,16,84,16,0
-216,dig,"dig (9, 15)",2,1695,234,-2,27,27,150,8,16,84,16,0
-217,shoot,"shoot S",3,1711,234,-2,27,27,150,8,16,84,16,0
-218,move,"move (7, 17)",2,1716,234,-2,27,27,150,7,17,84,16,0
-219,shoot,"shoot S",3,1732,234,-2,27,27,150,7,17,84,16,0
-220,move,"move (8, 18)",2,1734,226,-2,27,27,150,8,18,76,16,0
-221,shoot,"shoot S",3,1750,226,-2,27,27,150,8,18,76,16,0
-222,dig,"dig (9, 19)",2,1757,226,-2,27,27,150,8,18,76,16,0
-223,shoot,"shoot S",3,1770,218,-2,27,27,150,8,18,68,16,0
-224,move,"move (9, 19)",2,1775,218,-2,27,27,150,9,19,68,16,0
-225,shoot,"shoot S",3,1831,218,-2,27,27,150,9,19,68,16,0
-226,dig,"dig (9, 20)",2,1838,218,-2,27,27,150,9,19,68,16,0
-227,move,"move (17, 1)",3,1843,218,-2,27,27,150,9,19,68,17,1
-228,dig,"dig (10, 20)",2,1850,218,-2,27,27,150,9,19,68,17,1
-229,move,"move (18, 0)",3,1855,218,-2,27,27,150,9,19,68,18,0
-230,dig,"dig (10, 18)",2,1862,218,-2,27,27,150,9,19,68,18,0
-231,move,"move (17, 0)",3,1867,218,-2,27,27,150,9,19,68,17,0
-232,dig,"dig (10, 19)",2,1872,210,-2,27,27,150,9,19,60,17,0
-233,move,"move (16, 1)",3,1877,210,-2,27,27,150,9,19,60,16,1
-234,move,"move (10, 20)",2,1879,202,-2,27,27,150,10,20,52,16,1
-235,move,"move (15, 2)",3,1884,202,-2,27,27,150,10,20,52,15,2
-236,dig,"dig (11, 19)",2,1888,194,-2,27,27,150,10,20,44,15,2
-237,move,"move (14, 3)",3,1893,194,-2,27,27,150,10,20,44,14,3
-238,move,"move (11, 21)",2,1898,194,-2,27,27,150,11,21,44,14,3
-239,move,"move (13, 4)",3,1903,194,-2,27,27,150,11,21,44,13,4
-240,dig,"dig (12, 21)",2,1910,194,-2,27,27,150,11,21,44,13,4
-241,move,"move (14, 3)",3,1915,194,-2,27,27,150,11,21,44,14,3
-242,dig,"dig (11, 22)",2,1920,186,-2,27,27,150,11,21,36,14,3
-243,move,"move (15, 3)",3,1925,186,-2,27,27,150,11,21,36,15,3
-244,dig,"dig (12, 20)",2,1929,178,-2,27,27,150,11,21,28,15,3
-245,move,"move (16, 2)",3,1931,170,-2,27,27,150,11,21,20,16,2
-246,dig,"dig (12, 22)",2,1938,170,-2,27,27,150,11,21,20,16,2
-247,move,"move (15, 1)",3,1943,170,-2,27,27,150,11,21,20,15,1
-248,move,"move (10, 22)",2,1948,170,-2,27,27,150,10,22,20,15,1
-249,move,"move (14, 0)",3,1953,170,-2,27,27,150,10,22,20,14,0
-250,dig,"dig (11, 23)",2,1960,170,-2,27,27,150,10,22,20,14,0
-251,move,"move (15, 1)",3,1965,170,-2,27,27,150,10,22,20,15,1
-252,dig,"dig (10, 23)",2,1970,162,-2,27,27,150,10,22,12,15,1
-253,move,"move (16, 0)",3,1975,162,-2,27,27,150,10,22,12,16,0
-254,move,"move (11, 23)",2,1980,162,-2,27,27,150,11,23,12,16,0
-255,move,"move (15, 1)",3,1985,162,-2,27,27,150,11,23,12,15,1
-256,move,"move (10, 23)",2,1987,154,-2,27,27,150,10,23,4,15,1
-257,shoot,"shoot SE",3,2002,150,-2,27,27,150,10,23,-4,15,1
-258,dig,"dig (9, 24)",2,2009,150,-2,27,27,150,10,23,-4,15,1
-259,dig,"dig (10, 24)",2,2016,150,-2,27,27,150,10,23,-4,15,1
-260,move,"move (11, 24)",2,2021,150,-2,27,27,150,11,24,-4,15,1
-261,dig,"dig (12, 25)",2,2028,150,-2,27,27,150,11,24,-4,15,1
-262,move,"move (12, 25)",2,2033,150,-2,27,27,150,12,25,-4,15,1
-263,dig,"dig (13, 25)",2,2040,150,-2,27,27,150,12,25,-4,15,1
-264,dig,"dig (12, 26)",2,2047,150,-2,27,27,150,12,25,-4,15,1
-265,move,"move (13, 24)",2,2052,150,-2,27,27,150,13,24,-4,15,1
-266,dig,"dig (14, 25)",2,2059,150,-2,27,27,150,13,24,-4,15,1
-267,dig,"dig (14, 24)",2,2066,150,-2,27,27,150,13,24,-4,15,1
-268,move,"move (14, 25)",2,2071,150,-2,27,27,150,14,25,-4,15,1
-269,dig,"dig (15, 24)",2,2078,150,-2,27,27,150,14,25,-4,15,1
-270,dig,"dig (15, 25)",2,2085,150,-2,27,27,150,14,25,-4,15,1
-271,dig,"dig (14, 26)",2,2092,150,-2,27,27,150,14,25,-4,15,1
-272,dig,"dig (13, 26)",2,2099,150,-2,27,27,150,14,25,-4,15,1
-273,move,"move (13, 24)",2,2104,150,-2,27,27,150,13,24,-4,15,1
-274,move,"move (14, 23)",2,2109,150,-2,27,27,150,14,23,-4,15,1
-275,dig,"dig (15, 23)",2,2116,150,-2,27,27,150,14,23,-4,15,1
-276,move,"move (15, 23)",2,2121,150,-2,27,27,150,15,23,-4,15,1
-277,dig,"dig (16, 24)",2,2128,150,-2,27,27,150,15,23,-4,15,1
-278,dig,"dig (16, 23)",2,2135,150,-2,27,27,150,15,23,-4,15,1
-279,move,"move (16, 24)",2,2140,150,-2,27,27,150,16,24,-4,15,1
-280,dig,"dig (17, 23)",2,2147,150,-2,27,27,150,16,24,-4,15,1
-281,dig,"dig (17, 25)",2,2154,150,-2,27,27,150,16,24,-4,15,1
-282,dig,"dig (17, 24)",2,2161,150,-2,27,27,150,16,24,-4,15,1
-283,move,"move (17, 25)",2,2166,150,-2,27,27,150,17,25,-4,15,1
-284,dig,"dig (18, 25)",2,2173,150,-2,27,27,150,17,25,-4,15,1
-285,dig,"dig (18, 26)",2,2180,150,-2,27,27,150,17,25,-4,15,1
-286,dig,"dig (18, 24)",2,2187,150,-2,27,27,150,17,25,-4,15,1
-287,move,"move (18, 26)",2,2192,150,-2,27,27,150,18,26,-4,15,1
-288,dig,"dig (19, 25)",2,2199,150,-2,27,27,150,18,26,-4,15,1
-289,dig,"dig (19, 26)",2,2206,150,-2,27,27,150,18,26,-4,15,1
-290,dig,"dig (17, 27)",2,2213,150,-2,27,27,150,18,26,-4,15,1
-291,move,"move (19, 27)",2,2218,150,-2,27,27,150,19,27,-4,15,1
-292,move,"move (20, 27)",2,2223,150,-2,27,27,150,20,27,-4,15,1
-293,dig,"dig (20, 26)",2,2230,150,-2,27,27,150,20,27,-4,15,1
-294,dig,"dig (21, 28)",2,2237,150,-2,27,27,150,20,27,-4,15,1
-295,move,"move (21, 26)",2,2242,150,-2,27,27,150,21,26,-4,15,1
-296,dig,"dig (22, 27)",2,2249,150,-2,27,27,150,21,26,-4,15,1
-297,dig,"dig (22, 26)",2,2256,150,-2,27,27,150,21,26,-4,15,1
-298,dig,"dig (20, 25)",2,2263,150,-2,27,27,150,21,26,-4,15,1
-299,move,"move (22, 25)",2,2268,150,-2,27,27,150,22,25,-4,15,1
-300,dig,"dig (23, 25)",2,2275,150,-2,27,27,150,22,25,-4,15,1
-301,dig,"dig (23, 26)",2,2282,150,-2,27,27,150,22,25,-4,15,1
-302,dig,"dig (22, 24)",2,2289,150,-2,27,27,150,22,25,-4,15,1
-303,move,"move (21, 26)",2,2294,150,-2,27,27,150,21,26,-4,15,1
-304,move,"move (22, 27)",2,2299,150,-2,27,27,150,22,27,-4,15,1
-305,dig,"dig (22, 28)",2,2306,150,-2,27,27,150,22,27,-4,15,1
-306,move,"move (22, 26)",2,2311,150,-2,27,27,150,22,26,-4,15,1
-307,move,"move (23, 27)",2,2316,150,-2,27,27,150,23,27,-4,15,1
-308,move,"move (22, 26)",2,2321,150,-2,27,27,150,22,26,-4,15,1
-309,move,"move (23, 25)",2,2326,150,-2,27,27,150,23,25,-4,15,1
-310,move,"move (22, 26)",2,2331,150,-2,27,27,150,22,26,-4,15,1
-311,move,"move (23, 25)",2,2336,150,-2,27,27,150,23,25,-4,15,1
-312,move,"move (22, 26)",2,2341,150,-2,27,27,150,22,26,-4,15,1
-313,move,"move (21, 25)",2,2346,150,-2,27,27,150,21,25,-4,15,1
-314,move,"move (20, 24)",2,2351,150,-2,27,27,150,20,24,-4,15,1
-315,shoot,"shoot NE",2,2367,150,-2,27,27,150,20,24,-4,15,1
-316,move,"move (20, 25)",2,2372,150,-2,27,27,150,20,25,-4,15,1
-317,move,"move (19, 25)",2,2377,150,-2,27,27,150,19,25,-4,15,1
-318,move,"move (19, 26)",2,2382,150,-2,27,27,150,19,26,-4,15,1
-319,move,"move (18, 26)",2,2387,150,-2,27,27,150,18,26,-4,15,1
-320,move,"move (18, 27)",2,2392,150,-2,27,27,150,18,27,-4,15,1
-321,move,"move (17, 27)",2,2397,150,-2,27,27,150,17,27,-4,15,1
-322,move,"move (16, 26)",2,2402,150,-2,27,27,150,16,26,-4,15,1
-323,move,"move (15, 25)",2,2407,150,-2,27,27,150,15,25,-4,15,1
-324,move,"move (14, 24)",2,2412,150,-2,27,27,150,14,24,-4,15,1
-325,move,"move (15, 24)",2,2417,150,-2,27,27,150,15,24,-4,15,1
-326,move,"move (14, 24)",2,2422,150,-2,27,27,150,14,24,-4,15,1
-327,move,"move (13, 25)",2,2427,150,-2,27,27,150,13,25,-4,15,1
-328,move,"move (13, 26)",2,2432,150,-2,27,27,150,13,26,-4,15,1
-329,move,"move (13, 27)",2,2437,150,-2,27,27,150,13,27,-4,15,1
-330,move,"move (14, 28)",2,2442,150,-2,27,27,150,14,28,-4,15,1
-331,dig,"dig (15, 27)",2,2449,150,-2,27,27,150,14,28,-4,15,1
-332,move,"move (13, 28)",2,2454,150,-2,27,27,150,13,28,-4,15,1
-333,move,"move (13, 27)",2,2452,130,-2,27,27,130,13,28,-4,15,1 \ No newline at end of file
diff --git a/tests/replays/2019.07.08.21.54.09/B-init.json b/tests/replays/2019.07.08.21.54.09/B-init.json
deleted file mode 100644
index a6ac174..0000000
--- a/tests/replays/2019.07.08.21.54.09/B-init.json
+++ /dev/null
@@ -1 +0,0 @@
-{"currentRound":1,"maxRounds":400,"pushbackDamage":20,"mapSize":33,"currentWormId":1,"consecutiveDoNothingCount":0,"myPlayer":{"id":2,"score":133,"health":400,"currentWormId":1,"remainingWormSelections":5,"worms":[{"id":1,"health":150,"position":{"x":31,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":2,"health":150,"position":{"x":8,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":3,"health":100,"position":{"x":8,"y":4},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"profession":"Agent"}]},"opponents":[{"id":1,"score":133,"currentWormId":1,"remainingWormSelections":5,"worms":[{"id":1,"health":150,"position":{"x":24,"y":28},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":2,"health":150,"position":{"x":1,"y":16},"diggingRange":1,"movementRange":1,"profession":"Commando"},{"id":3,"health":100,"position":{"x":24,"y":4},"diggingRange":1,"movementRange":1,"profession":"Agent"}]}],"map":[[{"x":0,"y":0,"type":"DEEP_SPACE"},{"x":1,"y":0,"type":"DEEP_SPACE"},{"x":2,"y":0,"type":"DEEP_SPACE"},{"x":3,"y":0,"type":"DEEP_SPACE"},{"x":4,"y":0,"type":"DEEP_SPACE"},{"x":5,"y":0,"type":"DEEP_SPACE"},{"x":6,"y":0,"type":"DEEP_SPACE"},{"x":7,"y":0,"type":"DEEP_SPACE"},{"x":8,"y":0,"type":"DEEP_SPACE"},{"x":9,"y":0,"type":"DEEP_SPACE"},{"x":10,"y":0,"type":"DEEP_SPACE"},{"x":11,"y":0,"type":"DIRT"},{"x":12,"y":0,"type":"DIRT"},{"x":13,"y":0,"type":"DIRT"},{"x":14,"y":0,"type":"AIR"},{"x":15,"y":0,"type":"AIR"},{"x":16,"y":0,"type":"AIR"},{"x":17,"y":0,"type":"AIR"},{"x":18,"y":0,"type":"AIR"},{"x":19,"y":0,"type":"DIRT"},{"x":20,"y":0,"type":"DIRT"},{"x":21,"y":0,"type":"DIRT"},{"x":22,"y":0,"type":"DEEP_SPACE"},{"x":23,"y":0,"type":"DEEP_SPACE"},{"x":24,"y":0,"type":"DEEP_SPACE"},{"x":25,"y":0,"type":"DEEP_SPACE"},{"x":26,"y":0,"type":"DEEP_SPACE"},{"x":27,"y":0,"type":"DEEP_SPACE"},{"x":28,"y":0,"type":"DEEP_SPACE"},{"x":29,"y":0,"type":"DEEP_SPACE"},{"x":30,"y":0,"type":"DEEP_SPACE"},{"x":31,"y":0,"type":"DEEP_SPACE"},{"x":32,"y":0,"type":"DEEP_SPACE"}],[{"x":0,"y":1,"type":"DEEP_SPACE"},{"x":1,"y":1,"type":"DEEP_SPACE"},{"x":2,"y":1,"type":"DEEP_SPACE"},{"x":3,"y":1,"type":"DEEP_SPACE"},{"x":4,"y":1,"type":"DEEP_SPACE"},{"x":5,"y":1,"type":"DEEP_SPACE"},{"x":6,"y":1,"type":"DEEP_SPACE"},{"x":7,"y":1,"type":"DEEP_SPACE"},{"x":8,"y":1,"type":"AIR"},{"x":9,"y":1,"type":"AIR"},{"x":10,"y":1,"type":"DIRT"},{"x":11,"y":1,"type":"DIRT"},{"x":12,"y":1,"type":"DIRT"},{"x":13,"y":1,"type":"DIRT"},{"x":14,"y":1,"type":"DIRT"},{"x":15,"y":1,"type":"AIR"},{"x":16,"y":1,"type":"AIR"},{"x":17,"y":1,"type":"AIR"},{"x":18,"y":1,"type":"DIRT"},{"x":19,"y":1,"type":"DIRT"},{"x":20,"y":1,"type":"DIRT"},{"x":21,"y":1,"type":"DIRT"},{"x":22,"y":1,"type":"DIRT"},{"x":23,"y":1,"type":"AIR"},{"x":24,"y":1,"type":"AIR"},{"x":25,"y":1,"type":"DEEP_SPACE"},{"x":26,"y":1,"type":"DEEP_SPACE"},{"x":27,"y":1,"type":"DEEP_SPACE"},{"x":28,"y":1,"type":"DEEP_SPACE"},{"x":29,"y":1,"type":"DEEP_SPACE"},{"x":30,"y":1,"type":"DEEP_SPACE"},{"x":31,"y":1,"type":"DEEP_SPACE"},{"x":32,"y":1,"type":"DEEP_SPACE"}],[{"x":0,"y":2,"type":"DEEP_SPACE"},{"x":1,"y":2,"type":"DEEP_SPACE"},{"x":2,"y":2,"type":"DEEP_SPACE"},{"x":3,"y":2,"type":"DEEP_SPACE"},{"x":4,"y":2,"type":"DEEP_SPACE"},{"x":5,"y":2,"type":"DEEP_SPACE"},{"x":6,"y":2,"type":"DEEP_SPACE"},{"x":7,"y":2,"type":"DIRT"},{"x":8,"y":2,"type":"DIRT"},{"x":9,"y":2,"type":"DIRT"},{"x":10,"y":2,"type":"DIRT"},{"x":11,"y":2,"type":"AIR"},{"x":12,"y":2,"type":"AIR"},{"x":13,"y":2,"type":"DIRT"},{"x":14,"y":2,"type":"DIRT"},{"x":15,"y":2,"type":"DIRT"},{"x":16,"y":2,"type":"DIRT"},{"x":17,"y":2,"type":"DIRT"},{"x":18,"y":2,"type":"DIRT"},{"x":19,"y":2,"type":"DIRT"},{"x":20,"y":2,"type":"AIR"},{"x":21,"y":2,"type":"AIR"},{"x":22,"y":2,"type":"DIRT"},{"x":23,"y":2,"type":"DIRT"},{"x":24,"y":2,"type":"DIRT"},{"x":25,"y":2,"type":"DIRT"},{"x":26,"y":2,"type":"DEEP_SPACE"},{"x":27,"y":2,"type":"DEEP_SPACE"},{"x":28,"y":2,"type":"DEEP_SPACE"},{"x":29,"y":2,"type":"DEEP_SPACE"},{"x":30,"y":2,"type":"DEEP_SPACE"},{"x":31,"y":2,"type":"DEEP_SPACE"},{"x":32,"y":2,"type":"DEEP_SPACE"}],[{"x":0,"y":3,"type":"DEEP_SPACE"},{"x":1,"y":3,"type":"DEEP_SPACE"},{"x":2,"y":3,"type":"DEEP_SPACE"},{"x":3,"y":3,"type":"DEEP_SPACE"},{"x":4,"y":3,"type":"DEEP_SPACE"},{"x":5,"y":3,"type":"DEEP_SPACE"},{"x":6,"y":3,"type":"DIRT"},{"x":7,"y":3,"type":"AIR"},{"x":8,"y":3,"type":"AIR"},{"x":9,"y":3,"type":"AIR"},{"x":10,"y":3,"type":"DIRT"},{"x":11,"y":3,"type":"AIR"},{"x":12,"y":3,"type":"AIR"},{"x":13,"y":3,"type":"AIR"},{"x":14,"y":3,"type":"AIR"},{"x":15,"y":3,"type":"AIR"},{"x":16,"y":3,"type":"DIRT"},{"x":17,"y":3,"type":"AIR"},{"x":18,"y":3,"type":"AIR"},{"x":19,"y":3,"type":"AIR"},{"x":20,"y":3,"type":"AIR"},{"x":21,"y":3,"type":"AIR"},{"x":22,"y":3,"type":"DIRT"},{"x":23,"y":3,"type":"AIR"},{"x":24,"y":3,"type":"AIR"},{"x":25,"y":3,"type":"AIR"},{"x":26,"y":3,"type":"DIRT"},{"x":27,"y":3,"type":"DEEP_SPACE"},{"x":28,"y":3,"type":"DEEP_SPACE"},{"x":29,"y":3,"type":"DEEP_SPACE"},{"x":30,"y":3,"type":"DEEP_SPACE"},{"x":31,"y":3,"type":"DEEP_SPACE"},{"x":32,"y":3,"type":"DEEP_SPACE"}],[{"x":0,"y":4,"type":"DEEP_SPACE"},{"x":1,"y":4,"type":"DEEP_SPACE"},{"x":2,"y":4,"type":"DEEP_SPACE"},{"x":3,"y":4,"type":"DEEP_SPACE"},{"x":4,"y":4,"type":"AIR"},{"x":5,"y":4,"type":"AIR"},{"x":6,"y":4,"type":"DIRT"},{"x":7,"y":4,"type":"AIR"},{"x":8,"y":4,"type":"AIR","occupier":{"id":3,"playerId":2,"health":100,"position":{"x":8,"y":4},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"profession":"Agent"}},{"x":9,"y":4,"type":"AIR"},{"x":10,"y":4,"type":"DIRT"},{"x":11,"y":4,"type":"DIRT"},{"x":12,"y":4,"type":"DIRT"},{"x":13,"y":4,"type":"AIR"},{"x":14,"y":4,"type":"AIR"},{"x":15,"y":4,"type":"AIR"},{"x":16,"y":4,"type":"AIR"},{"x":17,"y":4,"type":"AIR"},{"x":18,"y":4,"type":"AIR"},{"x":19,"y":4,"type":"AIR"},{"x":20,"y":4,"type":"DIRT"},{"x":21,"y":4,"type":"DIRT"},{"x":22,"y":4,"type":"DIRT"},{"x":23,"y":4,"type":"AIR"},{"x":24,"y":4,"type":"AIR","occupier":{"id":3,"playerId":1,"health":100,"position":{"x":24,"y":4},"diggingRange":1,"movementRange":1,"profession":"Agent"}},{"x":25,"y":4,"type":"AIR"},{"x":26,"y":4,"type":"DIRT"},{"x":27,"y":4,"type":"AIR"},{"x":28,"y":4,"type":"AIR"},{"x":29,"y":4,"type":"DEEP_SPACE"},{"x":30,"y":4,"type":"DEEP_SPACE"},{"x":31,"y":4,"type":"DEEP_SPACE"},{"x":32,"y":4,"type":"DEEP_SPACE"}],[{"x":0,"y":5,"type":"DEEP_SPACE"},{"x":1,"y":5,"type":"DEEP_SPACE"},{"x":2,"y":5,"type":"DEEP_SPACE"},{"x":3,"y":5,"type":"DEEP_SPACE"},{"x":4,"y":5,"type":"DIRT"},{"x":5,"y":5,"type":"DIRT"},{"x":6,"y":5,"type":"DIRT"},{"x":7,"y":5,"type":"AIR"},{"x":8,"y":5,"type":"AIR"},{"x":9,"y":5,"type":"AIR"},{"x":10,"y":5,"type":"DIRT"},{"x":11,"y":5,"type":"DIRT"},{"x":12,"y":5,"type":"DIRT"},{"x":13,"y":5,"type":"DIRT"},{"x":14,"y":5,"type":"DIRT"},{"x":15,"y":5,"type":"DIRT"},{"x":16,"y":5,"type":"DIRT"},{"x":17,"y":5,"type":"DIRT"},{"x":18,"y":5,"type":"DIRT"},{"x":19,"y":5,"type":"DIRT"},{"x":20,"y":5,"type":"DIRT"},{"x":21,"y":5,"type":"DIRT"},{"x":22,"y":5,"type":"DIRT"},{"x":23,"y":5,"type":"AIR"},{"x":24,"y":5,"type":"AIR"},{"x":25,"y":5,"type":"AIR"},{"x":26,"y":5,"type":"DIRT"},{"x":27,"y":5,"type":"DIRT"},{"x":28,"y":5,"type":"DIRT"},{"x":29,"y":5,"type":"DEEP_SPACE"},{"x":30,"y":5,"type":"DEEP_SPACE"},{"x":31,"y":5,"type":"DEEP_SPACE"},{"x":32,"y":5,"type":"DEEP_SPACE"}],[{"x":0,"y":6,"type":"DEEP_SPACE"},{"x":1,"y":6,"type":"DEEP_SPACE"},{"x":2,"y":6,"type":"DEEP_SPACE"},{"x":3,"y":6,"type":"DIRT"},{"x":4,"y":6,"type":"DIRT"},{"x":5,"y":6,"type":"DIRT"},{"x":6,"y":6,"type":"DIRT"},{"x":7,"y":6,"type":"DIRT"},{"x":8,"y":6,"type":"DIRT"},{"x":9,"y":6,"type":"DIRT"},{"x":10,"y":6,"type":"DIRT"},{"x":11,"y":6,"type":"AIR"},{"x":12,"y":6,"type":"AIR"},{"x":13,"y":6,"type":"DIRT"},{"x":14,"y":6,"type":"DIRT"},{"x":15,"y":6,"type":"DIRT"},{"x":16,"y":6,"type":"DIRT"},{"x":17,"y":6,"type":"DIRT"},{"x":18,"y":6,"type":"DIRT"},{"x":19,"y":6,"type":"DIRT"},{"x":20,"y":6,"type":"AIR"},{"x":21,"y":6,"type":"AIR"},{"x":22,"y":6,"type":"DIRT"},{"x":23,"y":6,"type":"DIRT"},{"x":24,"y":6,"type":"DIRT"},{"x":25,"y":6,"type":"DIRT"},{"x":26,"y":6,"type":"DIRT"},{"x":27,"y":6,"type":"DIRT"},{"x":28,"y":6,"type":"DIRT"},{"x":29,"y":6,"type":"DIRT"},{"x":30,"y":6,"type":"DEEP_SPACE"},{"x":31,"y":6,"type":"DEEP_SPACE"},{"x":32,"y":6,"type":"DEEP_SPACE"}],[{"x":0,"y":7,"type":"DEEP_SPACE"},{"x":1,"y":7,"type":"DEEP_SPACE"},{"x":2,"y":7,"type":"AIR"},{"x":3,"y":7,"type":"AIR"},{"x":4,"y":7,"type":"DIRT"},{"x":5,"y":7,"type":"AIR"},{"x":6,"y":7,"type":"AIR"},{"x":7,"y":7,"type":"AIR"},{"x":8,"y":7,"type":"DIRT"},{"x":9,"y":7,"type":"DIRT"},{"x":10,"y":7,"type":"AIR"},{"x":11,"y":7,"type":"DIRT"},{"x":12,"y":7,"type":"AIR"},{"x":13,"y":7,"type":"AIR"},{"x":14,"y":7,"type":"DIRT"},{"x":15,"y":7,"type":"DIRT"},{"x":16,"y":7,"type":"AIR"},{"x":17,"y":7,"type":"DIRT"},{"x":18,"y":7,"type":"DIRT"},{"x":19,"y":7,"type":"AIR"},{"x":20,"y":7,"type":"AIR"},{"x":21,"y":7,"type":"DIRT"},{"x":22,"y":7,"type":"AIR"},{"x":23,"y":7,"type":"DIRT"},{"x":24,"y":7,"type":"DIRT"},{"x":25,"y":7,"type":"AIR"},{"x":26,"y":7,"type":"AIR"},{"x":27,"y":7,"type":"AIR"},{"x":28,"y":7,"type":"DIRT"},{"x":29,"y":7,"type":"AIR"},{"x":30,"y":7,"type":"AIR"},{"x":31,"y":7,"type":"DEEP_SPACE"},{"x":32,"y":7,"type":"DEEP_SPACE"}],[{"x":0,"y":8,"type":"DEEP_SPACE"},{"x":1,"y":8,"type":"AIR"},{"x":2,"y":8,"type":"AIR"},{"x":3,"y":8,"type":"AIR"},{"x":4,"y":8,"type":"AIR"},{"x":5,"y":8,"type":"DIRT"},{"x":6,"y":8,"type":"AIR"},{"x":7,"y":8,"type":"DIRT"},{"x":8,"y":8,"type":"DIRT"},{"x":9,"y":8,"type":"AIR"},{"x":10,"y":8,"type":"DIRT"},{"x":11,"y":8,"type":"DIRT"},{"x":12,"y":8,"type":"DIRT"},{"x":13,"y":8,"type":"AIR"},{"x":14,"y":8,"type":"AIR"},{"x":15,"y":8,"type":"AIR"},{"x":16,"y":8,"type":"AIR"},{"x":17,"y":8,"type":"AIR"},{"x":18,"y":8,"type":"AIR"},{"x":19,"y":8,"type":"AIR"},{"x":20,"y":8,"type":"DIRT"},{"x":21,"y":8,"type":"DIRT"},{"x":22,"y":8,"type":"DIRT"},{"x":23,"y":8,"type":"AIR"},{"x":24,"y":8,"type":"DIRT"},{"x":25,"y":8,"type":"DIRT"},{"x":26,"y":8,"type":"AIR"},{"x":27,"y":8,"type":"DIRT"},{"x":28,"y":8,"type":"AIR"},{"x":29,"y":8,"type":"AIR"},{"x":30,"y":8,"type":"AIR"},{"x":31,"y":8,"type":"AIR"},{"x":32,"y":8,"type":"DEEP_SPACE"}],[{"x":0,"y":9,"type":"DEEP_SPACE"},{"x":1,"y":9,"type":"DIRT"},{"x":2,"y":9,"type":"DIRT"},{"x":3,"y":9,"type":"AIR"},{"x":4,"y":9,"type":"AIR"},{"x":5,"y":9,"type":"AIR"},{"x":6,"y":9,"type":"AIR"},{"x":7,"y":9,"type":"AIR"},{"x":8,"y":9,"type":"AIR"},{"x":9,"y":9,"type":"AIR"},{"x":10,"y":9,"type":"AIR"},{"x":11,"y":9,"type":"AIR"},{"x":12,"y":9,"type":"AIR"},{"x":13,"y":9,"type":"DIRT"},{"x":14,"y":9,"type":"DIRT"},{"x":15,"y":9,"type":"AIR"},{"x":16,"y":9,"type":"AIR"},{"x":17,"y":9,"type":"AIR"},{"x":18,"y":9,"type":"DIRT"},{"x":19,"y":9,"type":"DIRT"},{"x":20,"y":9,"type":"AIR"},{"x":21,"y":9,"type":"AIR"},{"x":22,"y":9,"type":"AIR"},{"x":23,"y":9,"type":"AIR"},{"x":24,"y":9,"type":"AIR"},{"x":25,"y":9,"type":"AIR"},{"x":26,"y":9,"type":"AIR"},{"x":27,"y":9,"type":"AIR"},{"x":28,"y":9,"type":"AIR"},{"x":29,"y":9,"type":"AIR"},{"x":30,"y":9,"type":"DIRT"},{"x":31,"y":9,"type":"DIRT"},{"x":32,"y":9,"type":"DEEP_SPACE"}],[{"x":0,"y":10,"type":"DEEP_SPACE"},{"x":1,"y":10,"type":"DIRT"},{"x":2,"y":10,"type":"DIRT"},{"x":3,"y":10,"type":"DIRT"},{"x":4,"y":10,"type":"AIR"},{"x":5,"y":10,"type":"DIRT"},{"x":6,"y":10,"type":"AIR"},{"x":7,"y":10,"type":"AIR"},{"x":8,"y":10,"type":"AIR"},{"x":9,"y":10,"type":"AIR"},{"x":10,"y":10,"type":"DIRT"},{"x":11,"y":10,"type":"AIR"},{"x":12,"y":10,"type":"AIR"},{"x":13,"y":10,"type":"DIRT"},{"x":14,"y":10,"type":"DIRT"},{"x":15,"y":10,"type":"AIR"},{"x":16,"y":10,"type":"AIR"},{"x":17,"y":10,"type":"AIR"},{"x":18,"y":10,"type":"DIRT"},{"x":19,"y":10,"type":"DIRT"},{"x":20,"y":10,"type":"AIR"},{"x":21,"y":10,"type":"AIR"},{"x":22,"y":10,"type":"DIRT"},{"x":23,"y":10,"type":"AIR"},{"x":24,"y":10,"type":"AIR"},{"x":25,"y":10,"type":"AIR"},{"x":26,"y":10,"type":"AIR"},{"x":27,"y":10,"type":"DIRT"},{"x":28,"y":10,"type":"AIR"},{"x":29,"y":10,"type":"DIRT"},{"x":30,"y":10,"type":"DIRT"},{"x":31,"y":10,"type":"DIRT"},{"x":32,"y":10,"type":"DEEP_SPACE"}],[{"x":0,"y":11,"type":"AIR"},{"x":1,"y":11,"type":"DIRT"},{"x":2,"y":11,"type":"DIRT"},{"x":3,"y":11,"type":"DIRT"},{"x":4,"y":11,"type":"DIRT"},{"x":5,"y":11,"type":"DIRT"},{"x":6,"y":11,"type":"DIRT"},{"x":7,"y":11,"type":"AIR"},{"x":8,"y":11,"type":"AIR"},{"x":9,"y":11,"type":"DIRT"},{"x":10,"y":11,"type":"DIRT"},{"x":11,"y":11,"type":"DIRT"},{"x":12,"y":11,"type":"AIR"},{"x":13,"y":11,"type":"DIRT"},{"x":14,"y":11,"type":"DIRT"},{"x":15,"y":11,"type":"AIR"},{"x":16,"y":11,"type":"DIRT"},{"x":17,"y":11,"type":"AIR"},{"x":18,"y":11,"type":"DIRT"},{"x":19,"y":11,"type":"DIRT"},{"x":20,"y":11,"type":"AIR"},{"x":21,"y":11,"type":"DIRT"},{"x":22,"y":11,"type":"DIRT"},{"x":23,"y":11,"type":"DIRT"},{"x":24,"y":11,"type":"AIR"},{"x":25,"y":11,"type":"AIR"},{"x":26,"y":11,"type":"DIRT"},{"x":27,"y":11,"type":"DIRT"},{"x":28,"y":11,"type":"DIRT"},{"x":29,"y":11,"type":"DIRT"},{"x":30,"y":11,"type":"DIRT"},{"x":31,"y":11,"type":"DIRT"},{"x":32,"y":11,"type":"AIR"}],[{"x":0,"y":12,"type":"AIR"},{"x":1,"y":12,"type":"AIR"},{"x":2,"y":12,"type":"DIRT"},{"x":3,"y":12,"type":"DIRT"},{"x":4,"y":12,"type":"DIRT"},{"x":5,"y":12,"type":"DIRT"},{"x":6,"y":12,"type":"DIRT"},{"x":7,"y":12,"type":"DIRT"},{"x":8,"y":12,"type":"AIR"},{"x":9,"y":12,"type":"AIR"},{"x":10,"y":12,"type":"DIRT"},{"x":11,"y":12,"type":"AIR"},{"x":12,"y":12,"type":"AIR"},{"x":13,"y":12,"type":"AIR"},{"x":14,"y":12,"type":"DIRT"},{"x":15,"y":12,"type":"AIR"},{"x":16,"y":12,"type":"AIR"},{"x":17,"y":12,"type":"AIR"},{"x":18,"y":12,"type":"DIRT"},{"x":19,"y":12,"type":"AIR"},{"x":20,"y":12,"type":"AIR"},{"x":21,"y":12,"type":"AIR"},{"x":22,"y":12,"type":"DIRT"},{"x":23,"y":12,"type":"AIR"},{"x":24,"y":12,"type":"AIR"},{"x":25,"y":12,"type":"DIRT"},{"x":26,"y":12,"type":"DIRT"},{"x":27,"y":12,"type":"DIRT"},{"x":28,"y":12,"type":"DIRT"},{"x":29,"y":12,"type":"DIRT"},{"x":30,"y":12,"type":"DIRT"},{"x":31,"y":12,"type":"AIR"},{"x":32,"y":12,"type":"AIR"}],[{"x":0,"y":13,"type":"AIR"},{"x":1,"y":13,"type":"AIR"},{"x":2,"y":13,"type":"DIRT"},{"x":3,"y":13,"type":"DIRT"},{"x":4,"y":13,"type":"DIRT"},{"x":5,"y":13,"type":"AIR"},{"x":6,"y":13,"type":"DIRT"},{"x":7,"y":13,"type":"DIRT"},{"x":8,"y":13,"type":"AIR"},{"x":9,"y":13,"type":"AIR"},{"x":10,"y":13,"type":"AIR"},{"x":11,"y":13,"type":"DIRT"},{"x":12,"y":13,"type":"AIR"},{"x":13,"y":13,"type":"AIR"},{"x":14,"y":13,"type":"DIRT"},{"x":15,"y":13,"type":"DIRT"},{"x":16,"y":13,"type":"AIR"},{"x":17,"y":13,"type":"DIRT"},{"x":18,"y":13,"type":"DIRT"},{"x":19,"y":13,"type":"AIR"},{"x":20,"y":13,"type":"AIR"},{"x":21,"y":13,"type":"DIRT"},{"x":22,"y":13,"type":"AIR"},{"x":23,"y":13,"type":"AIR"},{"x":24,"y":13,"type":"AIR"},{"x":25,"y":13,"type":"DIRT"},{"x":26,"y":13,"type":"DIRT"},{"x":27,"y":13,"type":"AIR"},{"x":28,"y":13,"type":"DIRT"},{"x":29,"y":13,"type":"DIRT"},{"x":30,"y":13,"type":"DIRT"},{"x":31,"y":13,"type":"AIR"},{"x":32,"y":13,"type":"AIR"}],[{"x":0,"y":14,"type":"DIRT"},{"x":1,"y":14,"type":"DIRT"},{"x":2,"y":14,"type":"DIRT"},{"x":3,"y":14,"type":"DIRT"},{"x":4,"y":14,"type":"DIRT"},{"x":5,"y":14,"type":"AIR"},{"x":6,"y":14,"type":"AIR"},{"x":7,"y":14,"type":"AIR"},{"x":8,"y":14,"type":"AIR"},{"x":9,"y":14,"type":"AIR"},{"x":10,"y":14,"type":"AIR"},{"x":11,"y":14,"type":"AIR"},{"x":12,"y":14,"type":"AIR"},{"x":13,"y":14,"type":"AIR"},{"x":14,"y":14,"type":"AIR"},{"x":15,"y":14,"type":"DIRT"},{"x":16,"y":14,"type":"AIR"},{"x":17,"y":14,"type":"DIRT"},{"x":18,"y":14,"type":"AIR"},{"x":19,"y":14,"type":"AIR"},{"x":20,"y":14,"type":"AIR"},{"x":21,"y":14,"type":"AIR"},{"x":22,"y":14,"type":"AIR"},{"x":23,"y":14,"type":"AIR"},{"x":24,"y":14,"type":"AIR"},{"x":25,"y":14,"type":"AIR"},{"x":26,"y":14,"type":"AIR"},{"x":27,"y":14,"type":"AIR"},{"x":28,"y":14,"type":"DIRT"},{"x":29,"y":14,"type":"DIRT"},{"x":30,"y":14,"type":"DIRT"},{"x":31,"y":14,"type":"DIRT"},{"x":32,"y":14,"type":"DIRT"}],[{"x":0,"y":15,"type":"AIR"},{"x":1,"y":15,"type":"AIR"},{"x":2,"y":15,"type":"AIR"},{"x":3,"y":15,"type":"DIRT"},{"x":4,"y":15,"type":"AIR"},{"x":5,"y":15,"type":"AIR"},{"x":6,"y":15,"type":"AIR"},{"x":7,"y":15,"type":"AIR"},{"x":8,"y":15,"type":"AIR"},{"x":9,"y":15,"type":"DIRT"},{"x":10,"y":15,"type":"AIR"},{"x":11,"y":15,"type":"AIR"},{"x":12,"y":15,"type":"DIRT"},{"x":13,"y":15,"type":"AIR"},{"x":14,"y":15,"type":"AIR"},{"x":15,"y":15,"type":"AIR"},{"x":16,"y":15,"type":"AIR"},{"x":17,"y":15,"type":"AIR"},{"x":18,"y":15,"type":"AIR"},{"x":19,"y":15,"type":"AIR"},{"x":20,"y":15,"type":"DIRT"},{"x":21,"y":15,"type":"AIR"},{"x":22,"y":15,"type":"AIR"},{"x":23,"y":15,"type":"DIRT"},{"x":24,"y":15,"type":"AIR"},{"x":25,"y":15,"type":"AIR"},{"x":26,"y":15,"type":"AIR"},{"x":27,"y":15,"type":"AIR"},{"x":28,"y":15,"type":"AIR"},{"x":29,"y":15,"type":"DIRT"},{"x":30,"y":15,"type":"AIR"},{"x":31,"y":15,"type":"AIR"},{"x":32,"y":15,"type":"AIR"}],[{"x":0,"y":16,"type":"AIR"},{"x":1,"y":16,"type":"AIR","occupier":{"id":2,"playerId":1,"health":150,"position":{"x":1,"y":16},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":2,"y":16,"type":"AIR"},{"x":3,"y":16,"type":"DIRT"},{"x":4,"y":16,"type":"AIR"},{"x":5,"y":16,"type":"AIR"},{"x":6,"y":16,"type":"DIRT"},{"x":7,"y":16,"type":"DIRT"},{"x":8,"y":16,"type":"DIRT"},{"x":9,"y":16,"type":"DIRT"},{"x":10,"y":16,"type":"AIR"},{"x":11,"y":16,"type":"AIR"},{"x":12,"y":16,"type":"DIRT"},{"x":13,"y":16,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":14,"y":16,"type":"DIRT"},{"x":15,"y":16,"type":"AIR"},{"x":16,"y":16,"type":"AIR"},{"x":17,"y":16,"type":"AIR"},{"x":18,"y":16,"type":"DIRT"},{"x":19,"y":16,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":20,"y":16,"type":"DIRT"},{"x":21,"y":16,"type":"AIR"},{"x":22,"y":16,"type":"AIR"},{"x":23,"y":16,"type":"DIRT"},{"x":24,"y":16,"type":"DIRT"},{"x":25,"y":16,"type":"DIRT"},{"x":26,"y":16,"type":"DIRT"},{"x":27,"y":16,"type":"AIR"},{"x":28,"y":16,"type":"AIR"},{"x":29,"y":16,"type":"DIRT"},{"x":30,"y":16,"type":"AIR"},{"x":31,"y":16,"type":"AIR","occupier":{"id":1,"playerId":2,"health":150,"position":{"x":31,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":32,"y":16,"type":"AIR"}],[{"x":0,"y":17,"type":"AIR"},{"x":1,"y":17,"type":"AIR"},{"x":2,"y":17,"type":"AIR"},{"x":3,"y":17,"type":"DIRT"},{"x":4,"y":17,"type":"AIR"},{"x":5,"y":17,"type":"DIRT"},{"x":6,"y":17,"type":"DIRT"},{"x":7,"y":17,"type":"DIRT"},{"x":8,"y":17,"type":"DIRT"},{"x":9,"y":17,"type":"AIR"},{"x":10,"y":17,"type":"AIR"},{"x":11,"y":17,"type":"DIRT"},{"x":12,"y":17,"type":"DIRT"},{"x":13,"y":17,"type":"AIR"},{"x":14,"y":17,"type":"AIR"},{"x":15,"y":17,"type":"AIR"},{"x":16,"y":17,"type":"AIR"},{"x":17,"y":17,"type":"AIR"},{"x":18,"y":17,"type":"AIR"},{"x":19,"y":17,"type":"AIR"},{"x":20,"y":17,"type":"DIRT"},{"x":21,"y":17,"type":"DIRT"},{"x":22,"y":17,"type":"AIR"},{"x":23,"y":17,"type":"AIR"},{"x":24,"y":17,"type":"DIRT"},{"x":25,"y":17,"type":"DIRT"},{"x":26,"y":17,"type":"DIRT"},{"x":27,"y":17,"type":"DIRT"},{"x":28,"y":17,"type":"AIR"},{"x":29,"y":17,"type":"DIRT"},{"x":30,"y":17,"type":"AIR"},{"x":31,"y":17,"type":"AIR"},{"x":32,"y":17,"type":"AIR"}],[{"x":0,"y":18,"type":"DIRT"},{"x":1,"y":18,"type":"DIRT"},{"x":2,"y":18,"type":"DIRT"},{"x":3,"y":18,"type":"DIRT"},{"x":4,"y":18,"type":"DIRT"},{"x":5,"y":18,"type":"AIR"},{"x":6,"y":18,"type":"AIR"},{"x":7,"y":18,"type":"DIRT"},{"x":8,"y":18,"type":"AIR"},{"x":9,"y":18,"type":"AIR"},{"x":10,"y":18,"type":"DIRT"},{"x":11,"y":18,"type":"DIRT"},{"x":12,"y":18,"type":"DIRT"},{"x":13,"y":18,"type":"AIR"},{"x":14,"y":18,"type":"AIR"},{"x":15,"y":18,"type":"AIR"},{"x":16,"y":18,"type":"AIR"},{"x":17,"y":18,"type":"AIR"},{"x":18,"y":18,"type":"AIR"},{"x":19,"y":18,"type":"AIR"},{"x":20,"y":18,"type":"DIRT"},{"x":21,"y":18,"type":"DIRT"},{"x":22,"y":18,"type":"DIRT"},{"x":23,"y":18,"type":"AIR"},{"x":24,"y":18,"type":"AIR"},{"x":25,"y":18,"type":"DIRT"},{"x":26,"y":18,"type":"AIR"},{"x":27,"y":18,"type":"AIR"},{"x":28,"y":18,"type":"DIRT"},{"x":29,"y":18,"type":"DIRT"},{"x":30,"y":18,"type":"DIRT"},{"x":31,"y":18,"type":"DIRT"},{"x":32,"y":18,"type":"DIRT"}],[{"x":0,"y":19,"type":"DIRT"},{"x":1,"y":19,"type":"DIRT"},{"x":2,"y":19,"type":"DIRT"},{"x":3,"y":19,"type":"DIRT"},{"x":4,"y":19,"type":"DIRT"},{"x":5,"y":19,"type":"AIR"},{"x":6,"y":19,"type":"AIR"},{"x":7,"y":19,"type":"DIRT"},{"x":8,"y":19,"type":"AIR"},{"x":9,"y":19,"type":"DIRT"},{"x":10,"y":19,"type":"DIRT"},{"x":11,"y":19,"type":"DIRT"},{"x":12,"y":19,"type":"DIRT"},{"x":13,"y":19,"type":"DIRT"},{"x":14,"y":19,"type":"AIR"},{"x":15,"y":19,"type":"AIR"},{"x":16,"y":19,"type":"AIR"},{"x":17,"y":19,"type":"AIR"},{"x":18,"y":19,"type":"AIR"},{"x":19,"y":19,"type":"DIRT"},{"x":20,"y":19,"type":"DIRT"},{"x":21,"y":19,"type":"DIRT"},{"x":22,"y":19,"type":"DIRT"},{"x":23,"y":19,"type":"DIRT"},{"x":24,"y":19,"type":"AIR"},{"x":25,"y":19,"type":"DIRT"},{"x":26,"y":19,"type":"AIR"},{"x":27,"y":19,"type":"AIR"},{"x":28,"y":19,"type":"DIRT"},{"x":29,"y":19,"type":"DIRT"},{"x":30,"y":19,"type":"DIRT"},{"x":31,"y":19,"type":"DIRT"},{"x":32,"y":19,"type":"DIRT"}],[{"x":0,"y":20,"type":"DIRT"},{"x":1,"y":20,"type":"DIRT"},{"x":2,"y":20,"type":"DIRT"},{"x":3,"y":20,"type":"AIR"},{"x":4,"y":20,"type":"DIRT"},{"x":5,"y":20,"type":"AIR"},{"x":6,"y":20,"type":"DIRT"},{"x":7,"y":20,"type":"DIRT"},{"x":8,"y":20,"type":"AIR"},{"x":9,"y":20,"type":"DIRT"},{"x":10,"y":20,"type":"DIRT"},{"x":11,"y":20,"type":"AIR"},{"x":12,"y":20,"type":"DIRT"},{"x":13,"y":20,"type":"AIR"},{"x":14,"y":20,"type":"AIR"},{"x":15,"y":20,"type":"AIR"},{"x":16,"y":20,"type":"DIRT"},{"x":17,"y":20,"type":"AIR"},{"x":18,"y":20,"type":"AIR"},{"x":19,"y":20,"type":"AIR"},{"x":20,"y":20,"type":"DIRT"},{"x":21,"y":20,"type":"AIR"},{"x":22,"y":20,"type":"DIRT"},{"x":23,"y":20,"type":"DIRT"},{"x":24,"y":20,"type":"AIR"},{"x":25,"y":20,"type":"DIRT"},{"x":26,"y":20,"type":"DIRT"},{"x":27,"y":20,"type":"AIR"},{"x":28,"y":20,"type":"DIRT"},{"x":29,"y":20,"type":"AIR"},{"x":30,"y":20,"type":"DIRT"},{"x":31,"y":20,"type":"DIRT"},{"x":32,"y":20,"type":"DIRT"}],[{"x":0,"y":21,"type":"DIRT"},{"x":1,"y":21,"type":"DIRT"},{"x":2,"y":21,"type":"AIR"},{"x":3,"y":21,"type":"AIR"},{"x":4,"y":21,"type":"AIR"},{"x":5,"y":21,"type":"DIRT"},{"x":6,"y":21,"type":"DIRT"},{"x":7,"y":21,"type":"DIRT"},{"x":8,"y":21,"type":"AIR"},{"x":9,"y":21,"type":"AIR"},{"x":10,"y":21,"type":"AIR"},{"x":11,"y":21,"type":"AIR"},{"x":12,"y":21,"type":"DIRT"},{"x":13,"y":21,"type":"AIR"},{"x":14,"y":21,"type":"AIR"},{"x":15,"y":21,"type":"DIRT"},{"x":16,"y":21,"type":"DIRT"},{"x":17,"y":21,"type":"DIRT"},{"x":18,"y":21,"type":"AIR"},{"x":19,"y":21,"type":"AIR"},{"x":20,"y":21,"type":"DIRT"},{"x":21,"y":21,"type":"AIR"},{"x":22,"y":21,"type":"AIR"},{"x":23,"y":21,"type":"AIR"},{"x":24,"y":21,"type":"AIR"},{"x":25,"y":21,"type":"DIRT"},{"x":26,"y":21,"type":"DIRT"},{"x":27,"y":21,"type":"DIRT"},{"x":28,"y":21,"type":"AIR"},{"x":29,"y":21,"type":"AIR"},{"x":30,"y":21,"type":"AIR"},{"x":31,"y":21,"type":"DIRT"},{"x":32,"y":21,"type":"DIRT"}],[{"x":0,"y":22,"type":"DEEP_SPACE"},{"x":1,"y":22,"type":"AIR"},{"x":2,"y":22,"type":"AIR"},{"x":3,"y":22,"type":"DIRT"},{"x":4,"y":22,"type":"AIR"},{"x":5,"y":22,"type":"AIR"},{"x":6,"y":22,"type":"DIRT"},{"x":7,"y":22,"type":"DIRT"},{"x":8,"y":22,"type":"AIR"},{"x":9,"y":22,"type":"AIR"},{"x":10,"y":22,"type":"AIR"},{"x":11,"y":22,"type":"DIRT"},{"x":12,"y":22,"type":"DIRT"},{"x":13,"y":22,"type":"AIR"},{"x":14,"y":22,"type":"AIR"},{"x":15,"y":22,"type":"AIR"},{"x":16,"y":22,"type":"AIR"},{"x":17,"y":22,"type":"AIR"},{"x":18,"y":22,"type":"AIR"},{"x":19,"y":22,"type":"AIR"},{"x":20,"y":22,"type":"DIRT"},{"x":21,"y":22,"type":"DIRT"},{"x":22,"y":22,"type":"AIR"},{"x":23,"y":22,"type":"AIR"},{"x":24,"y":22,"type":"AIR"},{"x":25,"y":22,"type":"DIRT"},{"x":26,"y":22,"type":"DIRT"},{"x":27,"y":22,"type":"AIR"},{"x":28,"y":22,"type":"AIR"},{"x":29,"y":22,"type":"DIRT"},{"x":30,"y":22,"type":"AIR"},{"x":31,"y":22,"type":"AIR"},{"x":32,"y":22,"type":"DEEP_SPACE"}],[{"x":0,"y":23,"type":"DEEP_SPACE"},{"x":1,"y":23,"type":"AIR"},{"x":2,"y":23,"type":"DIRT"},{"x":3,"y":23,"type":"DIRT"},{"x":4,"y":23,"type":"DIRT"},{"x":5,"y":23,"type":"DIRT"},{"x":6,"y":23,"type":"DIRT"},{"x":7,"y":23,"type":"AIR"},{"x":8,"y":23,"type":"AIR"},{"x":9,"y":23,"type":"AIR"},{"x":10,"y":23,"type":"DIRT"},{"x":11,"y":23,"type":"DIRT"},{"x":12,"y":23,"type":"AIR"},{"x":13,"y":23,"type":"AIR"},{"x":14,"y":23,"type":"AIR"},{"x":15,"y":23,"type":"DIRT"},{"x":16,"y":23,"type":"DIRT"},{"x":17,"y":23,"type":"DIRT"},{"x":18,"y":23,"type":"AIR"},{"x":19,"y":23,"type":"AIR"},{"x":20,"y":23,"type":"AIR"},{"x":21,"y":23,"type":"DIRT"},{"x":22,"y":23,"type":"DIRT"},{"x":23,"y":23,"type":"AIR"},{"x":24,"y":23,"type":"AIR"},{"x":25,"y":23,"type":"AIR"},{"x":26,"y":23,"type":"DIRT"},{"x":27,"y":23,"type":"DIRT"},{"x":28,"y":23,"type":"DIRT"},{"x":29,"y":23,"type":"DIRT"},{"x":30,"y":23,"type":"DIRT"},{"x":31,"y":23,"type":"AIR"},{"x":32,"y":23,"type":"DEEP_SPACE"}],[{"x":0,"y":24,"type":"DEEP_SPACE"},{"x":1,"y":24,"type":"DIRT"},{"x":2,"y":24,"type":"DIRT"},{"x":3,"y":24,"type":"AIR"},{"x":4,"y":24,"type":"DIRT"},{"x":5,"y":24,"type":"DIRT"},{"x":6,"y":24,"type":"DIRT"},{"x":7,"y":24,"type":"AIR"},{"x":8,"y":24,"type":"AIR"},{"x":9,"y":24,"type":"DIRT"},{"x":10,"y":24,"type":"DIRT"},{"x":11,"y":24,"type":"AIR"},{"x":12,"y":24,"type":"AIR"},{"x":13,"y":24,"type":"AIR"},{"x":14,"y":24,"type":"DIRT"},{"x":15,"y":24,"type":"DIRT"},{"x":16,"y":24,"type":"DIRT"},{"x":17,"y":24,"type":"DIRT"},{"x":18,"y":24,"type":"DIRT"},{"x":19,"y":24,"type":"AIR"},{"x":20,"y":24,"type":"AIR"},{"x":21,"y":24,"type":"AIR"},{"x":22,"y":24,"type":"DIRT"},{"x":23,"y":24,"type":"DIRT"},{"x":24,"y":24,"type":"AIR"},{"x":25,"y":24,"type":"AIR"},{"x":26,"y":24,"type":"DIRT"},{"x":27,"y":24,"type":"DIRT"},{"x":28,"y":24,"type":"DIRT"},{"x":29,"y":24,"type":"AIR"},{"x":30,"y":24,"type":"DIRT"},{"x":31,"y":24,"type":"DIRT"},{"x":32,"y":24,"type":"DEEP_SPACE"}],[{"x":0,"y":25,"type":"DEEP_SPACE"},{"x":1,"y":25,"type":"DEEP_SPACE"},{"x":2,"y":25,"type":"DIRT"},{"x":3,"y":25,"type":"DIRT"},{"x":4,"y":25,"type":"DIRT"},{"x":5,"y":25,"type":"DIRT"},{"x":6,"y":25,"type":"DIRT"},{"x":7,"y":25,"type":"DIRT"},{"x":8,"y":25,"type":"DIRT"},{"x":9,"y":25,"type":"DIRT"},{"x":10,"y":25,"type":"AIR"},{"x":11,"y":25,"type":"AIR"},{"x":12,"y":25,"type":"DIRT"},{"x":13,"y":25,"type":"DIRT"},{"x":14,"y":25,"type":"DIRT"},{"x":15,"y":25,"type":"DIRT"},{"x":16,"y":25,"type":"AIR"},{"x":17,"y":25,"type":"DIRT"},{"x":18,"y":25,"type":"DIRT"},{"x":19,"y":25,"type":"DIRT"},{"x":20,"y":25,"type":"DIRT"},{"x":21,"y":25,"type":"AIR"},{"x":22,"y":25,"type":"AIR"},{"x":23,"y":25,"type":"DIRT"},{"x":24,"y":25,"type":"DIRT"},{"x":25,"y":25,"type":"DIRT"},{"x":26,"y":25,"type":"DIRT"},{"x":27,"y":25,"type":"DIRT"},{"x":28,"y":25,"type":"DIRT"},{"x":29,"y":25,"type":"DIRT"},{"x":30,"y":25,"type":"DIRT"},{"x":31,"y":25,"type":"DEEP_SPACE"},{"x":32,"y":25,"type":"DEEP_SPACE"}],[{"x":0,"y":26,"type":"DEEP_SPACE"},{"x":1,"y":26,"type":"DEEP_SPACE"},{"x":2,"y":26,"type":"DEEP_SPACE"},{"x":3,"y":26,"type":"DIRT"},{"x":4,"y":26,"type":"DIRT"},{"x":5,"y":26,"type":"AIR"},{"x":6,"y":26,"type":"DIRT"},{"x":7,"y":26,"type":"DIRT"},{"x":8,"y":26,"type":"DIRT"},{"x":9,"y":26,"type":"DIRT"},{"x":10,"y":26,"type":"DIRT"},{"x":11,"y":26,"type":"AIR"},{"x":12,"y":26,"type":"DIRT"},{"x":13,"y":26,"type":"DIRT"},{"x":14,"y":26,"type":"DIRT"},{"x":15,"y":26,"type":"AIR"},{"x":16,"y":26,"type":"AIR"},{"x":17,"y":26,"type":"AIR"},{"x":18,"y":26,"type":"DIRT"},{"x":19,"y":26,"type":"DIRT"},{"x":20,"y":26,"type":"DIRT"},{"x":21,"y":26,"type":"AIR"},{"x":22,"y":26,"type":"DIRT"},{"x":23,"y":26,"type":"DIRT"},{"x":24,"y":26,"type":"DIRT"},{"x":25,"y":26,"type":"DIRT"},{"x":26,"y":26,"type":"DIRT"},{"x":27,"y":26,"type":"AIR"},{"x":28,"y":26,"type":"DIRT"},{"x":29,"y":26,"type":"DIRT"},{"x":30,"y":26,"type":"DEEP_SPACE"},{"x":31,"y":26,"type":"DEEP_SPACE"},{"x":32,"y":26,"type":"DEEP_SPACE"}],[{"x":0,"y":27,"type":"DEEP_SPACE"},{"x":1,"y":27,"type":"DEEP_SPACE"},{"x":2,"y":27,"type":"DEEP_SPACE"},{"x":3,"y":27,"type":"DEEP_SPACE"},{"x":4,"y":27,"type":"DIRT"},{"x":5,"y":27,"type":"DIRT"},{"x":6,"y":27,"type":"DIRT"},{"x":7,"y":27,"type":"AIR"},{"x":8,"y":27,"type":"AIR"},{"x":9,"y":27,"type":"AIR"},{"x":10,"y":27,"type":"DIRT"},{"x":11,"y":27,"type":"AIR"},{"x":12,"y":27,"type":"AIR"},{"x":13,"y":27,"type":"AIR"},{"x":14,"y":27,"type":"AIR"},{"x":15,"y":27,"type":"DIRT"},{"x":16,"y":27,"type":"DIRT"},{"x":17,"y":27,"type":"DIRT"},{"x":18,"y":27,"type":"AIR"},{"x":19,"y":27,"type":"AIR"},{"x":20,"y":27,"type":"AIR"},{"x":21,"y":27,"type":"AIR"},{"x":22,"y":27,"type":"DIRT"},{"x":23,"y":27,"type":"AIR"},{"x":24,"y":27,"type":"AIR"},{"x":25,"y":27,"type":"AIR"},{"x":26,"y":27,"type":"DIRT"},{"x":27,"y":27,"type":"DIRT"},{"x":28,"y":27,"type":"DIRT"},{"x":29,"y":27,"type":"DEEP_SPACE"},{"x":30,"y":27,"type":"DEEP_SPACE"},{"x":31,"y":27,"type":"DEEP_SPACE"},{"x":32,"y":27,"type":"DEEP_SPACE"}],[{"x":0,"y":28,"type":"DEEP_SPACE"},{"x":1,"y":28,"type":"DEEP_SPACE"},{"x":2,"y":28,"type":"DEEP_SPACE"},{"x":3,"y":28,"type":"DEEP_SPACE"},{"x":4,"y":28,"type":"AIR"},{"x":5,"y":28,"type":"DIRT"},{"x":6,"y":28,"type":"DIRT"},{"x":7,"y":28,"type":"AIR"},{"x":8,"y":28,"type":"AIR","occupier":{"id":2,"playerId":2,"health":150,"position":{"x":8,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":9,"y":28,"type":"AIR"},{"x":10,"y":28,"type":"DIRT"},{"x":11,"y":28,"type":"DIRT"},{"x":12,"y":28,"type":"AIR"},{"x":13,"y":28,"type":"AIR"},{"x":14,"y":28,"type":"AIR"},{"x":15,"y":28,"type":"AIR"},{"x":16,"y":28,"type":"AIR"},{"x":17,"y":28,"type":"AIR"},{"x":18,"y":28,"type":"AIR"},{"x":19,"y":28,"type":"AIR"},{"x":20,"y":28,"type":"AIR"},{"x":21,"y":28,"type":"DIRT"},{"x":22,"y":28,"type":"DIRT"},{"x":23,"y":28,"type":"AIR"},{"x":24,"y":28,"type":"AIR","occupier":{"id":1,"playerId":1,"health":150,"position":{"x":24,"y":28},"diggingRange":1,"movementRange":1,"profession":"Commando"}},{"x":25,"y":28,"type":"AIR"},{"x":26,"y":28,"type":"DIRT"},{"x":27,"y":28,"type":"DIRT"},{"x":28,"y":28,"type":"AIR"},{"x":29,"y":28,"type":"DEEP_SPACE"},{"x":30,"y":28,"type":"DEEP_SPACE"},{"x":31,"y":28,"type":"DEEP_SPACE"},{"x":32,"y":28,"type":"DEEP_SPACE"}],[{"x":0,"y":29,"type":"DEEP_SPACE"},{"x":1,"y":29,"type":"DEEP_SPACE"},{"x":2,"y":29,"type":"DEEP_SPACE"},{"x":3,"y":29,"type":"DEEP_SPACE"},{"x":4,"y":29,"type":"DEEP_SPACE"},{"x":5,"y":29,"type":"DEEP_SPACE"},{"x":6,"y":29,"type":"DIRT"},{"x":7,"y":29,"type":"AIR"},{"x":8,"y":29,"type":"AIR"},{"x":9,"y":29,"type":"AIR"},{"x":10,"y":29,"type":"DIRT"},{"x":11,"y":29,"type":"DIRT"},{"x":12,"y":29,"type":"AIR"},{"x":13,"y":29,"type":"AIR"},{"x":14,"y":29,"type":"DIRT"},{"x":15,"y":29,"type":"DIRT"},{"x":16,"y":29,"type":"AIR"},{"x":17,"y":29,"type":"DIRT"},{"x":18,"y":29,"type":"DIRT"},{"x":19,"y":29,"type":"AIR"},{"x":20,"y":29,"type":"AIR"},{"x":21,"y":29,"type":"DIRT"},{"x":22,"y":29,"type":"DIRT"},{"x":23,"y":29,"type":"AIR"},{"x":24,"y":29,"type":"AIR"},{"x":25,"y":29,"type":"AIR"},{"x":26,"y":29,"type":"DIRT"},{"x":27,"y":29,"type":"DEEP_SPACE"},{"x":28,"y":29,"type":"DEEP_SPACE"},{"x":29,"y":29,"type":"DEEP_SPACE"},{"x":30,"y":29,"type":"DEEP_SPACE"},{"x":31,"y":29,"type":"DEEP_SPACE"},{"x":32,"y":29,"type":"DEEP_SPACE"}],[{"x":0,"y":30,"type":"DEEP_SPACE"},{"x":1,"y":30,"type":"DEEP_SPACE"},{"x":2,"y":30,"type":"DEEP_SPACE"},{"x":3,"y":30,"type":"DEEP_SPACE"},{"x":4,"y":30,"type":"DEEP_SPACE"},{"x":5,"y":30,"type":"DEEP_SPACE"},{"x":6,"y":30,"type":"DEEP_SPACE"},{"x":7,"y":30,"type":"DIRT"},{"x":8,"y":30,"type":"DIRT"},{"x":9,"y":30,"type":"DIRT"},{"x":10,"y":30,"type":"DIRT"},{"x":11,"y":30,"type":"AIR"},{"x":12,"y":30,"type":"AIR"},{"x":13,"y":30,"type":"AIR"},{"x":14,"y":30,"type":"AIR"},{"x":15,"y":30,"type":"DIRT"},{"x":16,"y":30,"type":"AIR"},{"x":17,"y":30,"type":"DIRT"},{"x":18,"y":30,"type":"AIR"},{"x":19,"y":30,"type":"AIR"},{"x":20,"y":30,"type":"AIR"},{"x":21,"y":30,"type":"AIR"},{"x":22,"y":30,"type":"DIRT"},{"x":23,"y":30,"type":"DIRT"},{"x":24,"y":30,"type":"DIRT"},{"x":25,"y":30,"type":"DIRT"},{"x":26,"y":30,"type":"DEEP_SPACE"},{"x":27,"y":30,"type":"DEEP_SPACE"},{"x":28,"y":30,"type":"DEEP_SPACE"},{"x":29,"y":30,"type":"DEEP_SPACE"},{"x":30,"y":30,"type":"DEEP_SPACE"},{"x":31,"y":30,"type":"DEEP_SPACE"},{"x":32,"y":30,"type":"DEEP_SPACE"}],[{"x":0,"y":31,"type":"DEEP_SPACE"},{"x":1,"y":31,"type":"DEEP_SPACE"},{"x":2,"y":31,"type":"DEEP_SPACE"},{"x":3,"y":31,"type":"DEEP_SPACE"},{"x":4,"y":31,"type":"DEEP_SPACE"},{"x":5,"y":31,"type":"DEEP_SPACE"},{"x":6,"y":31,"type":"DEEP_SPACE"},{"x":7,"y":31,"type":"DEEP_SPACE"},{"x":8,"y":31,"type":"AIR"},{"x":9,"y":31,"type":"AIR"},{"x":10,"y":31,"type":"AIR"},{"x":11,"y":31,"type":"AIR"},{"x":12,"y":31,"type":"AIR"},{"x":13,"y":31,"type":"AIR"},{"x":14,"y":31,"type":"AIR"},{"x":15,"y":31,"type":"DIRT"},{"x":16,"y":31,"type":"DIRT"},{"x":17,"y":31,"type":"DIRT"},{"x":18,"y":31,"type":"AIR"},{"x":19,"y":31,"type":"AIR"},{"x":20,"y":31,"type":"AIR"},{"x":21,"y":31,"type":"AIR"},{"x":22,"y":31,"type":"AIR"},{"x":23,"y":31,"type":"AIR"},{"x":24,"y":31,"type":"AIR"},{"x":25,"y":31,"type":"DEEP_SPACE"},{"x":26,"y":31,"type":"DEEP_SPACE"},{"x":27,"y":31,"type":"DEEP_SPACE"},{"x":28,"y":31,"type":"DEEP_SPACE"},{"x":29,"y":31,"type":"DEEP_SPACE"},{"x":30,"y":31,"type":"DEEP_SPACE"},{"x":31,"y":31,"type":"DEEP_SPACE"},{"x":32,"y":31,"type":"DEEP_SPACE"}],[{"x":0,"y":32,"type":"DEEP_SPACE"},{"x":1,"y":32,"type":"DEEP_SPACE"},{"x":2,"y":32,"type":"DEEP_SPACE"},{"x":3,"y":32,"type":"DEEP_SPACE"},{"x":4,"y":32,"type":"DEEP_SPACE"},{"x":5,"y":32,"type":"DEEP_SPACE"},{"x":6,"y":32,"type":"DEEP_SPACE"},{"x":7,"y":32,"type":"DEEP_SPACE"},{"x":8,"y":32,"type":"DEEP_SPACE"},{"x":9,"y":32,"type":"DEEP_SPACE"},{"x":10,"y":32,"type":"DEEP_SPACE"},{"x":11,"y":32,"type":"AIR"},{"x":12,"y":32,"type":"AIR"},{"x":13,"y":32,"type":"DIRT"},{"x":14,"y":32,"type":"DIRT"},{"x":15,"y":32,"type":"DIRT"},{"x":16,"y":32,"type":"DIRT"},{"x":17,"y":32,"type":"DIRT"},{"x":18,"y":32,"type":"DIRT"},{"x":19,"y":32,"type":"DIRT"},{"x":20,"y":32,"type":"AIR"},{"x":21,"y":32,"type":"AIR"},{"x":22,"y":32,"type":"DEEP_SPACE"},{"x":23,"y":32,"type":"DEEP_SPACE"},{"x":24,"y":32,"type":"DEEP_SPACE"},{"x":25,"y":32,"type":"DEEP_SPACE"},{"x":26,"y":32,"type":"DEEP_SPACE"},{"x":27,"y":32,"type":"DEEP_SPACE"},{"x":28,"y":32,"type":"DEEP_SPACE"},{"x":29,"y":32,"type":"DEEP_SPACE"},{"x":30,"y":32,"type":"DEEP_SPACE"},{"x":31,"y":32,"type":"DEEP_SPACE"},{"x":32,"y":32,"type":"DEEP_SPACE"}]]} \ No newline at end of file
diff --git a/tests/replays/2019.07.08.21.54.09/B-log.csv b/tests/replays/2019.07.08.21.54.09/B-log.csv
deleted file mode 100644
index 1e64ed9..0000000
--- a/tests/replays/2019.07.08.21.54.09/B-log.csv
+++ /dev/null
@@ -1,334 +0,0 @@
-Round,LastCommandType,LastCommand,ActiveWorm,Score,Health,Worm1 Health,Worm1 x,Worm1 y,Worm2 Health,Worm2 x,Worm2 y,Worm3 Health,Worm3 x,Worm3 y
-1,null,"null",1,133,400,150,31,16,150,8,28,100,8,4
-2,move,"move (30, 16)",1,138,400,150,30,16,150,8,28,100,8,4
-3,move,"move (9, 27)",2,143,400,150,30,16,150,9,27,100,8,4
-4,move,"move (9, 5)",3,148,400,150,30,16,150,9,27,100,9,5
-5,dig,"dig (29, 16)",1,155,400,150,30,16,150,9,27,100,9,5
-6,dig,"dig (10, 26)",2,162,400,150,30,16,150,9,27,100,9,5
-7,dig,"dig (10, 6)",3,169,400,150,30,16,150,9,27,100,9,5
-8,move,"move (29, 16)",1,174,400,150,29,16,150,9,27,100,9,5
-9,move,"move (10, 26)",2,179,400,150,29,16,150,10,26,100,9,5
-10,move,"move (10, 6)",3,184,400,150,29,16,150,10,26,100,10,6
-11,move,"move (28, 16)",1,189,400,150,28,16,150,10,26,100,10,6
-12,move,"move (11, 25)",2,194,400,150,28,16,150,11,25,100,10,6
-13,dig,"dig (11, 7)",3,201,400,150,28,16,150,11,25,100,10,6
-14,move,"move (27, 16)",1,206,400,150,27,16,150,11,25,100,10,6
-15,move,"move (12, 24)",2,211,400,150,27,16,150,12,24,100,10,6
-16,move,"move (11, 7)",3,216,400,150,27,16,150,12,24,100,11,7
-17,dig,"dig (26, 16)",1,223,400,150,27,16,150,12,24,100,11,7
-18,move,"move (13, 23)",2,228,400,150,27,16,150,13,23,100,11,7
-19,dig,"dig (12, 8)",3,235,400,150,27,16,150,13,23,100,11,7
-20,move,"move (26, 16)",1,240,400,150,26,16,150,13,23,100,11,7
-21,move,"move (13, 22)",2,245,400,150,26,16,150,13,22,100,11,7
-22,move,"move (12, 8)",3,250,400,150,26,16,150,13,22,100,12,8
-23,dig,"dig (25, 16)",1,257,400,150,26,16,150,13,22,100,12,8
-24,move,"move (13, 21)",2,262,400,150,26,16,150,13,21,100,12,8
-25,dig,"dig (13, 9)",3,269,400,150,26,16,150,13,21,100,12,8
-26,move,"move (25, 16)",1,274,400,150,25,16,150,13,21,100,12,8
-27,move,"move (13, 20)",2,279,400,150,25,16,150,13,20,100,12,8
-28,move,"move (13, 9)",3,284,400,150,25,16,150,13,20,100,13,9
-29,dig,"dig (24, 16)",1,291,400,150,25,16,150,13,20,100,13,9
-30,dig,"dig (13, 19)",2,298,400,150,25,16,150,13,20,100,13,9
-31,dig,"dig (13, 10)",3,305,400,150,25,16,150,13,20,100,13,9
-32,move,"move (24, 16)",1,310,400,150,24,16,150,13,20,100,13,9
-33,move,"move (13, 19)",2,315,400,150,24,16,150,13,19,100,13,9
-34,move,"move (13, 10)",3,320,400,150,24,16,150,13,19,100,13,10
-35,dig,"dig (23, 16)",1,327,400,150,24,16,150,13,19,100,13,10
-36,move,"move (13, 18)",2,332,400,150,24,16,150,13,18,100,13,10
-37,dig,"dig (13, 11)",3,339,400,150,24,16,150,13,18,100,13,10
-38,move,"move (23, 16)",1,344,400,150,23,16,150,13,18,100,13,10
-39,move,"move (13, 17)",2,349,400,150,23,16,150,13,17,100,13,10
-40,move,"move (13, 11)",3,354,400,150,23,16,150,13,17,100,13,11
-41,move,"move (22, 16)",1,359,400,150,22,16,150,13,17,100,13,11
-42,move,"move (13, 16)",2,367,410,150,22,16,160,13,16,100,13,11
-43,dig,"dig (14, 12)",3,374,410,150,22,16,160,13,16,100,13,11
-44,move,"move (21, 16)",1,379,410,150,21,16,160,13,16,100,13,11
-45,dig,"dig (14, 16)",2,386,410,150,21,16,160,13,16,100,13,11
-46,move,"move (14, 12)",3,391,410,150,21,16,160,13,16,100,14,12
-47,dig,"dig (20, 16)",1,398,410,150,21,16,160,13,16,100,14,12
-48,move,"move (14, 16)",2,403,410,150,21,16,160,14,16,100,14,12
-49,dig,"dig (15, 13)",3,410,410,150,21,16,160,14,16,100,14,12
-50,move,"move (20, 16)",1,415,410,150,20,16,160,14,16,100,14,12
-51,move,"move (15, 16)",2,420,410,150,20,16,160,15,16,100,14,12
-52,move,"move (15, 13)",3,425,410,150,20,16,160,15,16,100,15,13
-53,move,"move (19, 16)",1,434,420,160,19,16,160,15,16,100,15,13
-54,move,"move (16, 17)",2,439,420,160,19,16,160,16,17,100,15,13
-55,move,"move (16, 14)",3,444,420,160,19,16,160,16,17,100,16,14
-56,dig,"dig (20, 17)",1,451,420,160,19,16,160,16,17,100,16,14
-57,move,"move (17, 18)",2,456,420,160,19,16,160,17,18,100,16,14
-58,move,"move (17, 15)",3,461,420,160,19,16,160,17,18,100,17,15
-59,move,"move (20, 17)",1,466,420,160,20,17,160,17,18,100,17,15
-60,move,"move (18, 19)",2,471,420,160,20,17,160,18,19,100,17,15
-61,dig,"dig (18, 16)",3,478,420,160,20,17,160,18,19,100,17,15
-62,dig,"dig (21, 18)",1,485,420,160,20,17,160,18,19,100,17,15
-63,move,"move (19, 20)",2,490,420,160,20,17,160,19,20,100,17,15
-64,move,"move (18, 16)",3,495,420,160,20,17,160,19,20,100,18,16
-65,move,"move (21, 18)",1,500,420,160,21,18,160,19,20,100,18,16
-66,dig,"dig (20, 21)",2,507,420,160,21,18,160,19,20,100,18,16
-67,move,"move (19, 17)",3,512,420,160,21,18,160,19,20,100,19,17
-68,dig,"dig (22, 19)",1,519,420,160,21,18,160,19,20,100,19,17
-69,move,"move (20, 21)",2,524,420,160,21,18,160,20,21,100,19,17
-70,dig,"dig (20, 18)",3,531,420,160,21,18,160,20,21,100,19,17
-71,move,"move (22, 19)",1,536,420,160,22,19,160,20,21,100,19,17
-72,dig,"dig (21, 22)",2,543,420,160,22,19,160,20,21,100,19,17
-73,move,"move (20, 18)",3,548,420,160,22,19,160,20,21,100,20,18
-74,dig,"dig (23, 20)",1,555,420,160,22,19,160,20,21,100,20,18
-75,move,"move (21, 22)",2,560,420,160,22,19,160,21,22,100,20,18
-76,dig,"dig (21, 19)",3,567,420,160,22,19,160,21,22,100,20,18
-77,move,"move (23, 20)",1,572,420,160,23,20,160,21,22,100,20,18
-78,dig,"dig (22, 23)",2,579,420,160,23,20,160,21,22,100,20,18
-79,move,"move (21, 19)",3,584,420,160,23,20,160,21,22,100,21,19
-80,move,"move (24, 21)",1,589,420,160,24,21,160,21,22,100,21,19
-81,move,"move (22, 23)",2,594,420,160,24,21,160,22,23,100,21,19
-82,dig,"dig (22, 20)",3,601,420,160,24,21,160,22,23,100,21,19
-83,dig,"dig (25, 22)",1,608,420,160,24,21,160,22,23,100,21,19
-84,dig,"dig (23, 24)",2,615,420,160,24,21,160,22,23,100,21,19
-85,move,"move (22, 20)",3,620,420,160,24,21,160,22,23,100,22,20
-86,move,"move (25, 22)",1,625,420,160,25,22,160,22,23,100,22,20
-87,move,"move (23, 24)",2,630,420,160,25,22,160,23,24,100,22,20
-88,move,"move (23, 21)",3,635,420,160,25,22,160,23,24,100,23,21
-89,dig,"dig (26, 23)",1,642,420,160,25,22,160,23,24,100,23,21
-90,dig,"dig (24, 25)",2,649,420,160,25,22,160,23,24,100,23,21
-91,move,"move (24, 22)",3,654,420,160,25,22,160,23,24,100,24,22
-92,move,"move (26, 23)",1,659,420,160,26,23,160,23,24,100,24,22
-93,move,"move (24, 25)",2,664,420,160,26,23,160,24,25,100,24,22
-94,move,"move (25, 23)",3,669,420,160,26,23,160,24,25,100,25,23
-95,move,"move (27, 24)",1,674,420,160,27,24,160,24,25,100,25,23
-96,move,"move (25, 26)",2,676,412,152,27,24,160,25,26,100,25,23
-97,move,"move (26, 24)",3,678,404,144,27,24,160,25,26,100,26,24
-98,shoot,"shoot S",1,692,396,136,27,24,160,25,26,100,26,24
-99,move,"move (26, 27)",2,694,388,128,27,24,160,26,27,100,26,24
-100,move,"move (27, 25)",3,696,380,128,27,24,160,26,27,92,27,25
-101,move,"move (26, 23)",1,701,380,128,26,23,160,26,27,92,27,25
-102,shoot,"shoot E",2,717,380,128,26,23,160,26,27,92,27,25
-103,shoot,"shoot S",3,731,372,128,26,23,152,26,27,92,27,25
-104,move,"move (27, 24)",1,736,372,128,27,24,152,26,27,92,27,25
-105,shoot,"shoot E",2,752,372,128,27,24,152,26,27,92,27,25
-106,shoot,"shoot S",3,765,364,128,27,24,144,26,27,92,27,25
-107,move,"move (26, 23)",1,770,364,128,26,23,144,26,27,92,27,25
-108,shoot,"shoot E",2,786,364,128,26,23,144,26,27,92,27,25
-109,shoot,"shoot S",3,799,356,128,26,23,136,26,27,92,27,25
-110,move,"move (27, 24)",1,804,356,128,27,24,136,26,27,92,27,25
-111,shoot,"shoot E",2,820,356,128,27,24,136,26,27,92,27,25
-112,shoot,"shoot S",3,834,348,128,27,24,128,26,27,92,27,25
-113,dig,"dig (28, 23)",1,841,348,128,27,24,128,26,27,92,27,25
-114,shoot,"shoot E",2,857,348,128,27,24,128,26,27,92,27,25
-115,shoot,"shoot S",3,870,340,128,27,24,128,26,27,84,27,25
-116,invalid,"invalid",1,866,340,128,27,24,128,26,27,84,27,25
-117,shoot,"shoot E",2,882,340,128,27,24,128,26,27,84,27,25
-118,shoot,"shoot S",3,895,332,128,27,24,128,26,27,76,27,25
-119,dig,"dig (27, 23)",1,902,332,128,27,24,128,26,27,76,27,25
-120,shoot,"shoot E",2,918,332,128,27,24,128,26,27,76,27,25
-121,shoot,"shoot S",3,932,324,128,27,24,128,26,27,68,27,25
-122,move,"move (28, 25)",1,937,324,128,28,25,128,26,27,68,27,25
-123,shoot,"shoot E",2,953,324,128,28,25,128,26,27,68,27,25
-124,shoot,"shoot S",3,966,316,128,28,25,128,26,27,60,27,25
-125,move,"move (27, 26)",1,971,316,128,27,26,128,26,27,60,27,25
-126,shoot,"shoot E",2,987,316,128,27,26,128,26,27,60,27,25
-127,move,"move (26, 24)",3,989,308,120,27,26,128,26,27,60,26,24
-128,shoot,"shoot S",1,1045,308,120,27,26,128,26,27,60,26,24
-129,move,"move (25, 26)",2,1050,308,120,27,26,128,25,26,60,26,24
-130,move,"move (25, 23)",3,1055,308,120,27,26,128,25,26,60,25,23
-131,move,"move (26, 25)",1,1060,308,120,26,25,128,25,26,60,25,23
-132,move,"move (24, 25)",2,1065,308,120,26,25,128,24,25,60,25,23
-133,move,"move (24, 22)",3,1070,308,120,26,25,128,24,25,60,24,22
-134,move,"move (25, 24)",1,1075,308,120,25,24,128,24,25,60,24,22
-135,move,"move (23, 24)",2,1080,308,120,25,24,128,23,24,60,24,22
-136,move,"move (23, 21)",3,1085,308,120,25,24,128,23,24,60,23,21
-137,move,"move (24, 23)",1,1090,308,120,24,23,128,23,24,60,23,21
-138,move,"move (22, 23)",2,1095,308,120,24,23,128,22,23,60,23,21
-139,move,"move (22, 20)",3,1100,308,120,24,23,128,22,23,60,22,20
-140,move,"move (23, 22)",1,1105,308,120,23,22,128,22,23,60,22,20
-141,move,"move (21, 22)",2,1110,308,120,23,22,128,21,22,60,22,20
-142,move,"move (21, 19)",3,1115,308,120,23,22,128,21,22,60,21,19
-143,move,"move (22, 21)",1,1120,308,120,22,21,128,21,22,60,21,19
-144,move,"move (20, 21)",2,1125,308,120,22,21,128,20,21,60,21,19
-145,move,"move (20, 18)",3,1130,308,120,22,21,128,20,21,60,20,18
-146,move,"move (21, 20)",1,1135,308,120,21,20,128,20,21,60,20,18
-147,dig,"dig (20, 20)",2,1142,308,120,21,20,128,20,21,60,20,18
-148,dig,"dig (21, 17)",3,1149,308,120,21,20,128,20,21,60,20,18
-149,move,"move (21, 19)",1,1154,308,120,21,19,128,20,21,60,20,18
-150,move,"move (21, 20)",2,1159,308,120,21,19,128,21,20,60,20,18
-151,move,"move (21, 17)",3,1164,308,120,21,19,128,21,20,60,21,17
-152,move,"move (21, 18)",1,1169,308,120,21,18,128,21,20,60,21,17
-153,move,"move (21, 19)",2,1174,308,120,21,18,128,21,19,60,21,17
-154,move,"move (21, 16)",3,1179,308,120,21,18,128,21,19,60,21,16
-155,move,"move (21, 17)",1,1184,308,120,21,17,128,21,19,60,21,16
-156,move,"move (21, 18)",2,1189,308,120,21,17,128,21,18,60,21,16
-157,move,"move (21, 15)",3,1194,308,120,21,17,128,21,18,60,21,15
-158,move,"move (20, 16)",1,1199,308,120,20,16,128,21,18,60,21,15
-159,move,"move (20, 17)",2,1204,308,120,20,16,128,20,17,60,21,15
-160,move,"move (20, 14)",3,1209,308,120,20,16,128,20,17,60,20,14
-161,dig,"dig (20, 15)",1,1216,308,120,20,16,128,20,17,60,20,14
-162,move,"move (19, 16)",2,1221,308,120,20,16,128,19,16,60,20,14
-163,move,"move (19, 13)",3,1226,308,120,20,16,128,19,16,60,19,13
-164,move,"move (19, 15)",1,1231,308,120,19,15,128,19,16,60,19,13
-165,move,"move (19, 17)",2,1236,308,120,19,15,128,19,17,60,19,13
-166,dig,"dig (18, 12)",3,1243,308,120,19,15,128,19,17,60,19,13
-167,move,"move (18, 14)",1,1248,308,120,18,14,128,19,17,60,19,13
-168,move,"move (18, 16)",2,1253,308,120,18,14,128,18,16,60,19,13
-169,move,"move (18, 12)",3,1258,308,120,18,14,128,18,16,60,18,12
-170,dig,"dig (17, 13)",1,1265,308,120,18,14,128,18,16,60,18,12
-171,move,"move (17, 15)",2,1270,308,120,18,14,128,17,15,60,18,12
-172,move,"move (17, 11)",3,1275,308,120,18,14,128,17,15,60,17,11
-173,move,"move (17, 13)",1,1280,308,120,17,13,128,17,15,60,17,11
-174,move,"move (16, 14)",2,1285,308,120,17,13,128,16,14,60,17,11
-175,move,"move (16, 10)",3,1290,308,120,17,13,128,16,14,60,16,10
-176,move,"move (16, 12)",1,1295,308,120,16,12,128,16,14,60,16,10
-177,move,"move (16, 13)",2,1300,308,120,16,12,128,16,13,60,16,10
-178,move,"move (16, 9)",3,1305,308,120,16,12,128,16,13,60,16,9
-179,dig,"dig (16, 11)",1,1312,308,120,16,12,128,16,13,60,16,9
-180,move,"move (15, 12)",2,1317,308,120,16,12,128,15,12,60,16,9
-181,move,"move (15, 8)",3,1322,308,120,16,12,128,15,12,60,15,8
-182,move,"move (15, 11)",1,1327,308,120,15,11,128,15,12,60,15,8
-183,move,"move (16, 12)",2,1332,308,120,15,11,128,16,12,60,15,8
-184,dig,"dig (14, 7)",3,1339,308,120,15,11,128,16,12,60,15,8
-185,dig,"dig (14, 10)",1,1346,308,120,15,11,128,16,12,60,15,8
-186,move,"move (16, 13)",2,1351,308,120,15,11,128,16,13,60,15,8
-187,dig,"dig (15, 7)",3,1358,308,120,15,11,128,16,13,60,15,8
-188,move,"move (14, 10)",1,1363,308,120,14,10,128,16,13,60,15,8
-189,move,"move (15, 12)",2,1368,308,120,14,10,128,15,12,60,15,8
-190,move,"move (14, 7)",3,1373,308,120,14,10,128,15,12,60,14,7
-191,dig,"dig (14, 9)",1,1380,308,120,14,10,128,15,12,60,14,7
-192,move,"move (15, 11)",2,1385,308,120,14,10,128,15,11,60,14,7
-193,dig,"dig (15, 6)",3,1392,308,120,14,10,128,15,11,60,14,7
-194,move,"move (14, 9)",1,1397,308,120,14,9,128,15,11,60,14,7
-195,move,"move (14, 10)",2,1402,308,120,14,9,128,14,10,60,14,7
-196,move,"move (15, 6)",3,1407,308,120,14,9,128,14,10,60,15,6
-197,move,"move (15, 8)",1,1412,308,120,15,8,128,14,10,60,15,6
-198,move,"move (15, 9)",2,1417,308,120,15,8,128,15,9,60,15,6
-199,move,"move (16, 5)",3,1422,308,120,15,8,128,15,9,60,16,5
-200,move,"move (15, 7)",1,1427,308,120,15,7,128,15,9,60,16,5
-201,move,"move (15, 8)",2,1432,308,120,15,7,128,15,8,60,16,5
-202,move,"move (16, 4)",3,1437,308,120,15,7,128,15,8,60,16,4
-203,dig,"dig (16, 6)",1,1444,308,120,15,7,128,15,8,60,16,4
-204,invalid,"invalid",2,1440,308,120,15,7,128,15,8,60,16,4
-205,dig,"dig (15, 5)",3,1447,308,120,15,7,128,15,8,60,16,4
-206,move,"move (16, 6)",1,1452,308,120,16,6,128,15,8,60,16,4
-207,move,"move (16, 7)",2,1455,300,120,16,6,128,16,7,52,16,4
-208,shoot,"shoot N",3,1471,300,120,16,6,128,16,7,52,16,4
-209,move,"move (16, 5)",1,1473,292,120,16,5,128,16,7,44,16,4
-210,move,"move (16, 6)",2,1478,292,120,16,5,128,16,6,44,16,4
-211,shoot,"shoot N",3,1491,284,120,16,5,128,16,6,36,16,4
-212,invalid,"invalid",1,1487,284,120,16,5,128,16,6,36,16,4
-213,move,"move (15, 5)",2,1492,284,120,16,5,128,15,5,36,16,4
-214,move,"move (15, 3)",3,1497,284,120,16,5,128,15,5,36,15,3
-215,move,"move (15, 4)",1,1502,284,120,15,4,128,15,5,36,15,3
-216,move,"move (16, 4)",2,1507,284,120,15,4,128,16,4,36,15,3
-217,move,"move (16, 2)",3,1510,276,120,15,4,128,16,4,28,16,2
-218,move,"move (16, 3)",1,1515,276,120,16,3,128,16,4,28,16,2
-219,invalid,"invalid",2,1508,268,120,16,3,128,16,4,20,16,2
-220,shoot,"shoot N",3,1524,268,120,16,3,128,16,4,20,16,2
-221,move,"move (17, 4)",1,1526,260,120,17,4,128,16,4,12,16,2
-222,move,"move (16, 3)",2,1531,260,120,17,4,128,16,3,12,16,2
-223,shoot,"shoot N",3,1545,252,120,17,4,128,16,3,4,16,2
-224,move,"move (18, 3)",1,1550,252,120,18,3,128,16,3,4,16,2
-225,move,"move (15, 2)",2,1553,248,120,18,3,128,15,2,-4,16,2
-226,dig,"dig (17, 2)",1,1560,248,120,18,3,128,15,2,-4,16,2
-227,move,"move (16, 3)",2,1565,248,120,18,3,128,16,3,-4,16,2
-228,move,"move (17, 2)",1,1570,248,120,17,2,128,16,3,-4,16,2
-229,move,"move (15, 3)",2,1575,248,120,17,2,128,15,3,-4,16,2
-230,dig,"dig (18, 1)",1,1582,248,120,17,2,128,15,3,-4,16,2
-231,move,"move (16, 2)",2,1587,248,120,17,2,128,16,2,-4,16,2
-232,shoot,"shoot N",1,1603,248,120,17,2,128,16,2,-4,16,2
-233,move,"move (17, 1)",2,1608,248,120,17,2,128,17,1,-4,16,2
-234,shoot,"shoot NW",1,1624,248,120,17,2,128,17,1,-4,16,2
-235,shoot,"shoot W",2,1626,248,120,17,2,128,17,1,-4,16,2
-236,shoot,"shoot W",1,1642,248,120,17,2,128,17,1,-4,16,2
-237,move,"move (16, 2)",2,1647,248,120,17,2,128,16,2,-4,16,2
-238,move,"move (16, 3)",1,1652,248,120,16,3,128,16,2,-4,16,2
-239,move,"move (15, 3)",2,1657,248,120,16,3,128,15,3,-4,16,2
-240,move,"move (15, 4)",1,1662,248,120,15,4,128,15,3,-4,16,2
-241,move,"move (14, 4)",2,1667,248,120,15,4,128,14,4,-4,16,2
-242,shoot,"shoot NW",1,1683,248,120,15,4,128,14,4,-4,16,2
-243,shoot,"shoot N",2,1685,248,120,15,4,128,14,4,-4,16,2
-244,shoot,"shoot N",1,1701,248,120,15,4,128,14,4,-4,16,2
-245,shoot,"shoot NE",2,1717,248,120,15,4,128,14,4,-4,16,2
-246,move,"move (16, 3)",1,1722,248,120,16,3,128,14,4,-4,16,2
-247,shoot,"shoot NE",2,1724,248,120,16,3,128,14,4,-4,16,2
-248,move,"move (15, 2)",1,1729,248,120,15,2,128,14,4,-4,16,2
-249,move,"move (15, 3)",2,1734,248,120,15,2,128,15,3,-4,16,2
-250,move,"move (14, 1)",1,1739,248,120,14,1,128,15,3,-4,16,2
-251,dig,"dig (14, 2)",2,1746,248,120,14,1,128,15,3,-4,16,2
-252,shoot,"shoot E",1,1762,248,120,14,1,128,15,3,-4,16,2
-253,shoot,"shoot N",2,1764,248,120,14,1,128,15,3,-4,16,2
-254,move,"move (15, 0)",1,1769,248,120,15,0,128,15,3,-4,16,2
-255,move,"move (16, 2)",2,1774,248,120,15,0,128,16,2,-4,16,2
-256,shoot,"shoot S",1,1790,248,120,15,0,128,16,2,-4,16,2
-257,shoot,"shoot NW",2,1844,240,120,15,0,120,16,2,-4,16,2
-258,move,"move (14, 1)",1,1849,240,120,14,1,120,16,2,-4,16,2
-259,move,"move (15, 3)",2,1854,240,120,14,1,120,15,3,-4,16,2
-260,dig,"dig (13, 2)",1,1861,240,120,14,1,120,15,3,-4,16,2
-261,move,"move (14, 4)",2,1866,240,120,14,1,120,14,4,-4,16,2
-262,move,"move (13, 2)",1,1871,240,120,13,2,120,14,4,-4,16,2
-263,dig,"dig (13, 5)",2,1878,240,120,13,2,120,14,4,-4,16,2
-264,move,"move (12, 3)",1,1883,240,120,12,3,120,14,4,-4,16,2
-265,move,"move (13, 5)",2,1888,240,120,12,3,120,13,5,-4,16,2
-266,move,"move (13, 4)",1,1893,240,120,13,4,120,13,5,-4,16,2
-267,dig,"dig (13, 6)",2,1900,240,120,13,4,120,13,5,-4,16,2
-268,dig,"dig (12, 4)",1,1907,240,120,13,4,120,13,5,-4,16,2
-269,dig,"dig (14, 6)",2,1914,240,120,13,4,120,13,5,-4,16,2
-270,dig,"dig (14, 5)",1,1921,240,120,13,4,120,13,5,-4,16,2
-271,move,"move (14, 6)",2,1926,240,120,13,4,120,14,6,-4,16,2
-272,move,"move (14, 5)",1,1931,240,120,14,5,120,14,6,-4,16,2
-273,move,"move (14, 7)",2,1936,240,120,14,5,120,14,7,-4,16,2
-274,move,"move (13, 6)",1,1941,240,120,13,6,120,14,7,-4,16,2
-275,move,"move (14, 8)",2,1946,240,120,13,6,120,14,8,-4,16,2
-276,move,"move (14, 7)",1,1951,240,120,14,7,120,14,8,-4,16,2
-277,move,"move (15, 9)",2,1956,240,120,14,7,120,15,9,-4,16,2
-278,move,"move (15, 8)",1,1961,240,120,15,8,120,15,9,-4,16,2
-279,move,"move (15, 10)",2,1966,240,120,15,8,120,15,10,-4,16,2
-280,move,"move (16, 9)",1,1971,240,120,16,9,120,15,10,-4,16,2
-281,move,"move (16, 11)",2,1976,240,120,16,9,120,16,11,-4,16,2
-282,move,"move (16, 10)",1,1981,240,120,16,10,120,16,11,-4,16,2
-283,move,"move (16, 12)",2,1986,240,120,16,10,120,16,12,-4,16,2
-284,move,"move (17, 11)",1,1991,240,120,17,11,120,16,12,-4,16,2
-285,move,"move (17, 13)",2,1996,240,120,17,11,120,17,13,-4,16,2
-286,move,"move (17, 12)",1,2001,240,120,17,12,120,17,13,-4,16,2
-287,dig,"dig (17, 14)",2,2008,240,120,17,12,120,17,13,-4,16,2
-288,dig,"dig (18, 13)",1,2015,240,120,17,12,120,17,13,-4,16,2
-289,move,"move (18, 14)",2,2020,240,120,17,12,120,18,14,-4,16,2
-290,move,"move (18, 13)",1,2025,240,120,18,13,120,18,14,-4,16,2
-291,move,"move (18, 15)",2,2030,240,120,18,13,120,18,15,-4,16,2
-292,move,"move (19, 14)",1,2035,240,120,19,14,120,18,15,-4,16,2
-293,move,"move (19, 16)",2,2040,240,120,19,14,120,19,16,-4,16,2
-294,move,"move (20, 15)",1,2045,240,120,20,15,120,19,16,-4,16,2
-295,move,"move (20, 17)",2,2050,240,120,20,15,120,20,17,-4,16,2
-296,move,"move (21, 16)",1,2055,240,120,21,16,120,20,17,-4,16,2
-297,move,"move (21, 18)",2,2060,240,120,21,16,120,21,18,-4,16,2
-298,move,"move (21, 17)",1,2065,240,120,21,17,120,21,18,-4,16,2
-299,move,"move (21, 19)",2,2070,240,120,21,17,120,21,19,-4,16,2
-300,dig,"dig (22, 18)",1,2077,240,120,21,17,120,21,19,-4,16,2
-301,move,"move (22, 20)",2,2082,240,120,21,17,120,22,20,-4,16,2
-302,move,"move (22, 18)",1,2087,240,120,22,18,120,22,20,-4,16,2
-303,move,"move (22, 21)",2,2092,240,120,22,18,120,22,21,-4,16,2
-304,move,"move (21, 19)",1,2097,240,120,21,19,120,22,21,-4,16,2
-305,move,"move (22, 22)",2,2102,240,120,21,19,120,22,22,-4,16,2
-306,move,"move (22, 20)",1,2107,240,120,22,20,120,22,22,-4,16,2
-307,shoot,"shoot S",2,2109,240,120,22,20,120,22,22,-4,16,2
-308,move,"move (23, 21)",1,2114,240,120,23,21,120,22,22,-4,16,2
-309,shoot,"shoot S",2,2116,240,120,23,21,120,22,22,-4,16,2
-310,shoot,"shoot S",1,2118,240,120,23,21,120,22,22,-4,16,2
-311,shoot,"shoot S",2,2120,240,120,23,21,120,22,22,-4,16,2
-312,shoot,"shoot S",1,2122,240,120,23,21,120,22,22,-4,16,2
-313,shoot,"shoot S",2,2124,240,120,23,21,120,22,22,-4,16,2
-314,move,"move (23, 22)",1,2129,240,120,23,22,120,22,22,-4,16,2
-315,dig,"dig (21, 23)",2,2133,232,120,23,22,112,22,22,-4,16,2
-316,move,"move (22, 23)",1,2138,232,120,22,23,112,22,22,-4,16,2
-317,move,"move (21, 23)",2,2143,232,120,22,23,112,21,23,-4,16,2
-318,move,"move (21, 24)",1,2148,232,120,21,24,112,21,23,-4,16,2
-319,move,"move (20, 24)",2,2153,232,120,21,24,112,20,24,-4,16,2
-320,move,"move (20, 25)",1,2158,232,120,20,25,112,20,24,-4,16,2
-321,move,"move (19, 25)",2,2163,232,120,20,25,112,19,25,-4,16,2
-322,move,"move (19, 26)",1,2168,232,120,19,26,112,19,25,-4,16,2
-323,move,"move (18, 26)",2,2173,232,120,19,26,112,18,26,-4,16,2
-324,move,"move (18, 25)",1,2178,232,120,18,25,112,18,26,-4,16,2
-325,move,"move (17, 25)",2,2183,232,120,18,25,112,17,25,-4,16,2
-326,move,"move (17, 24)",1,2188,232,120,17,24,112,17,25,-4,16,2
-327,move,"move (16, 24)",2,2193,232,120,17,24,112,16,24,-4,16,2
-328,move,"move (16, 25)",1,2198,232,120,16,25,112,16,24,-4,16,2
-329,move,"move (15, 25)",2,2203,232,120,16,25,112,15,25,-4,16,2
-330,move,"move (15, 26)",1,2208,232,120,15,26,112,15,25,-4,16,2
-331,move,"move (14, 26)",2,2213,232,120,15,26,112,14,26,-4,16,2
-332,move,"move (14, 27)",1,2218,232,120,14,27,112,14,26,-4,16,2
-333,move,"move (13, 27)",2,2216,212,120,14,27,92,14,26,-4,16,2 \ No newline at end of file
diff --git a/tests/replays/2019.08.07.14.25.37/A-init.json b/tests/replays/2019.08.07.14.25.37/A-init.json
new file mode 100644
index 0000000..a08c3c2
--- /dev/null
+++ b/tests/replays/2019.08.07.14.25.37/A-init.json
@@ -0,0 +1 @@
+{"currentRound":1,"maxRounds":400,"pushbackDamage":20,"lavaDamage":3,"mapSize":33,"currentWormId":1,"consecutiveDoNothingCount":0,"myPlayer":{"id":1,"score":116,"health":350,"currentWormId":1,"remainingWormSelections":5,"previousCommand":"nothing","worms":[{"id":1,"health":150,"position":{"x":24,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Commando"},{"id":2,"health":100,"position":{"x":1,"y":16},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Agent"},{"id":3,"health":100,"position":{"x":24,"y":4},"weapon":{"damage":8,"range":4},"snowballs":{"freezeDuration":5,"range":5,"count":3,"freezeRadius":1},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Technologist"}]},"opponents":[{"id":2,"score":116,"currentWormId":1,"remainingWormSelections":5,"previousCommand":"nothing","worms":[{"id":1,"health":150,"position":{"x":31,"y":16},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Commando"},{"id":2,"health":100,"position":{"x":8,"y":28},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Agent"},{"id":3,"health":100,"position":{"x":8,"y":4},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Technologist"}]}],"map":[[{"x":0,"y":0,"type":"DEEP_SPACE"},{"x":1,"y":0,"type":"DEEP_SPACE"},{"x":2,"y":0,"type":"DEEP_SPACE"},{"x":3,"y":0,"type":"DEEP_SPACE"},{"x":4,"y":0,"type":"DEEP_SPACE"},{"x":5,"y":0,"type":"DEEP_SPACE"},{"x":6,"y":0,"type":"DEEP_SPACE"},{"x":7,"y":0,"type":"DEEP_SPACE"},{"x":8,"y":0,"type":"DEEP_SPACE"},{"x":9,"y":0,"type":"DEEP_SPACE"},{"x":10,"y":0,"type":"DEEP_SPACE"},{"x":11,"y":0,"type":"AIR"},{"x":12,"y":0,"type":"AIR"},{"x":13,"y":0,"type":"AIR"},{"x":14,"y":0,"type":"DIRT"},{"x":15,"y":0,"type":"DIRT"},{"x":16,"y":0,"type":"DIRT"},{"x":17,"y":0,"type":"DIRT"},{"x":18,"y":0,"type":"DIRT"},{"x":19,"y":0,"type":"AIR"},{"x":20,"y":0,"type":"AIR"},{"x":21,"y":0,"type":"AIR"},{"x":22,"y":0,"type":"DEEP_SPACE"},{"x":23,"y":0,"type":"DEEP_SPACE"},{"x":24,"y":0,"type":"DEEP_SPACE"},{"x":25,"y":0,"type":"DEEP_SPACE"},{"x":26,"y":0,"type":"DEEP_SPACE"},{"x":27,"y":0,"type":"DEEP_SPACE"},{"x":28,"y":0,"type":"DEEP_SPACE"},{"x":29,"y":0,"type":"DEEP_SPACE"},{"x":30,"y":0,"type":"DEEP_SPACE"},{"x":31,"y":0,"type":"DEEP_SPACE"},{"x":32,"y":0,"type":"DEEP_SPACE"}],[{"x":0,"y":1,"type":"DEEP_SPACE"},{"x":1,"y":1,"type":"DEEP_SPACE"},{"x":2,"y":1,"type":"DEEP_SPACE"},{"x":3,"y":1,"type":"DEEP_SPACE"},{"x":4,"y":1,"type":"DEEP_SPACE"},{"x":5,"y":1,"type":"DEEP_SPACE"},{"x":6,"y":1,"type":"DEEP_SPACE"},{"x":7,"y":1,"type":"DEEP_SPACE"},{"x":8,"y":1,"type":"DIRT"},{"x":9,"y":1,"type":"AIR"},{"x":10,"y":1,"type":"AIR"},{"x":11,"y":1,"type":"AIR"},{"x":12,"y":1,"type":"AIR"},{"x":13,"y":1,"type":"AIR"},{"x":14,"y":1,"type":"DIRT"},{"x":15,"y":1,"type":"DIRT"},{"x":16,"y":1,"type":"DIRT"},{"x":17,"y":1,"type":"DIRT"},{"x":18,"y":1,"type":"DIRT"},{"x":19,"y":1,"type":"AIR"},{"x":20,"y":1,"type":"AIR"},{"x":21,"y":1,"type":"AIR"},{"x":22,"y":1,"type":"AIR"},{"x":23,"y":1,"type":"AIR"},{"x":24,"y":1,"type":"DIRT"},{"x":25,"y":1,"type":"DEEP_SPACE"},{"x":26,"y":1,"type":"DEEP_SPACE"},{"x":27,"y":1,"type":"DEEP_SPACE"},{"x":28,"y":1,"type":"DEEP_SPACE"},{"x":29,"y":1,"type":"DEEP_SPACE"},{"x":30,"y":1,"type":"DEEP_SPACE"},{"x":31,"y":1,"type":"DEEP_SPACE"},{"x":32,"y":1,"type":"DEEP_SPACE"}],[{"x":0,"y":2,"type":"DEEP_SPACE"},{"x":1,"y":2,"type":"DEEP_SPACE"},{"x":2,"y":2,"type":"DEEP_SPACE"},{"x":3,"y":2,"type":"DEEP_SPACE"},{"x":4,"y":2,"type":"DEEP_SPACE"},{"x":5,"y":2,"type":"DEEP_SPACE"},{"x":6,"y":2,"type":"DEEP_SPACE"},{"x":7,"y":2,"type":"DIRT"},{"x":8,"y":2,"type":"DIRT"},{"x":9,"y":2,"type":"DIRT"},{"x":10,"y":2,"type":"DIRT"},{"x":11,"y":2,"type":"AIR"},{"x":12,"y":2,"type":"AIR"},{"x":13,"y":2,"type":"DIRT"},{"x":14,"y":2,"type":"DIRT"},{"x":15,"y":2,"type":"AIR"},{"x":16,"y":2,"type":"AIR"},{"x":17,"y":2,"type":"AIR"},{"x":18,"y":2,"type":"DIRT"},{"x":19,"y":2,"type":"DIRT"},{"x":20,"y":2,"type":"AIR"},{"x":21,"y":2,"type":"AIR"},{"x":22,"y":2,"type":"DIRT"},{"x":23,"y":2,"type":"DIRT"},{"x":24,"y":2,"type":"DIRT"},{"x":25,"y":2,"type":"DIRT"},{"x":26,"y":2,"type":"DEEP_SPACE"},{"x":27,"y":2,"type":"DEEP_SPACE"},{"x":28,"y":2,"type":"DEEP_SPACE"},{"x":29,"y":2,"type":"DEEP_SPACE"},{"x":30,"y":2,"type":"DEEP_SPACE"},{"x":31,"y":2,"type":"DEEP_SPACE"},{"x":32,"y":2,"type":"DEEP_SPACE"}],[{"x":0,"y":3,"type":"DEEP_SPACE"},{"x":1,"y":3,"type":"DEEP_SPACE"},{"x":2,"y":3,"type":"DEEP_SPACE"},{"x":3,"y":3,"type":"DEEP_SPACE"},{"x":4,"y":3,"type":"DEEP_SPACE"},{"x":5,"y":3,"type":"DEEP_SPACE"},{"x":6,"y":3,"type":"DIRT"},{"x":7,"y":3,"type":"AIR"},{"x":8,"y":3,"type":"AIR"},{"x":9,"y":3,"type":"AIR"},{"x":10,"y":3,"type":"DIRT"},{"x":11,"y":3,"type":"AIR"},{"x":12,"y":3,"type":"AIR"},{"x":13,"y":3,"type":"DIRT"},{"x":14,"y":3,"type":"DIRT"},{"x":15,"y":3,"type":"AIR"},{"x":16,"y":3,"type":"DIRT"},{"x":17,"y":3,"type":"AIR"},{"x":18,"y":3,"type":"DIRT"},{"x":19,"y":3,"type":"DIRT"},{"x":20,"y":3,"type":"AIR"},{"x":21,"y":3,"type":"AIR"},{"x":22,"y":3,"type":"DIRT"},{"x":23,"y":3,"type":"AIR"},{"x":24,"y":3,"type":"AIR"},{"x":25,"y":3,"type":"AIR"},{"x":26,"y":3,"type":"DIRT"},{"x":27,"y":3,"type":"DEEP_SPACE"},{"x":28,"y":3,"type":"DEEP_SPACE"},{"x":29,"y":3,"type":"DEEP_SPACE"},{"x":30,"y":3,"type":"DEEP_SPACE"},{"x":31,"y":3,"type":"DEEP_SPACE"},{"x":32,"y":3,"type":"DEEP_SPACE"}],[{"x":0,"y":4,"type":"DEEP_SPACE"},{"x":1,"y":4,"type":"DEEP_SPACE"},{"x":2,"y":4,"type":"DEEP_SPACE"},{"x":3,"y":4,"type":"DEEP_SPACE"},{"x":4,"y":4,"type":"DIRT"},{"x":5,"y":4,"type":"DIRT"},{"x":6,"y":4,"type":"DIRT"},{"x":7,"y":4,"type":"AIR"},{"x":8,"y":4,"type":"AIR","occupier":{"id":3,"playerId":2,"health":100,"position":{"x":8,"y":4},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Technologist"}},{"x":9,"y":4,"type":"AIR"},{"x":10,"y":4,"type":"DIRT"},{"x":11,"y":4,"type":"AIR"},{"x":12,"y":4,"type":"AIR"},{"x":13,"y":4,"type":"DIRT"},{"x":14,"y":4,"type":"DIRT"},{"x":15,"y":4,"type":"DIRT"},{"x":16,"y":4,"type":"DIRT"},{"x":17,"y":4,"type":"DIRT"},{"x":18,"y":4,"type":"DIRT"},{"x":19,"y":4,"type":"DIRT"},{"x":20,"y":4,"type":"AIR"},{"x":21,"y":4,"type":"AIR"},{"x":22,"y":4,"type":"DIRT"},{"x":23,"y":4,"type":"AIR"},{"x":24,"y":4,"type":"AIR","occupier":{"id":3,"playerId":1,"health":100,"position":{"x":24,"y":4},"weapon":{"damage":8,"range":4},"snowballs":{"freezeDuration":5,"range":5,"count":3,"freezeRadius":1},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Technologist"}},{"x":25,"y":4,"type":"AIR"},{"x":26,"y":4,"type":"DIRT"},{"x":27,"y":4,"type":"DIRT"},{"x":28,"y":4,"type":"DIRT"},{"x":29,"y":4,"type":"DEEP_SPACE"},{"x":30,"y":4,"type":"DEEP_SPACE"},{"x":31,"y":4,"type":"DEEP_SPACE"},{"x":32,"y":4,"type":"DEEP_SPACE"}],[{"x":0,"y":5,"type":"DEEP_SPACE"},{"x":1,"y":5,"type":"DEEP_SPACE"},{"x":2,"y":5,"type":"DEEP_SPACE"},{"x":3,"y":5,"type":"DEEP_SPACE"},{"x":4,"y":5,"type":"DIRT"},{"x":5,"y":5,"type":"DIRT"},{"x":6,"y":5,"type":"DIRT"},{"x":7,"y":5,"type":"AIR"},{"x":8,"y":5,"type":"AIR"},{"x":9,"y":5,"type":"AIR"},{"x":10,"y":5,"type":"DIRT"},{"x":11,"y":5,"type":"DIRT"},{"x":12,"y":5,"type":"DIRT"},{"x":13,"y":5,"type":"DIRT"},{"x":14,"y":5,"type":"DIRT"},{"x":15,"y":5,"type":"DIRT"},{"x":16,"y":5,"type":"DIRT"},{"x":17,"y":5,"type":"DIRT"},{"x":18,"y":5,"type":"DIRT"},{"x":19,"y":5,"type":"DIRT"},{"x":20,"y":5,"type":"DIRT"},{"x":21,"y":5,"type":"DIRT"},{"x":22,"y":5,"type":"DIRT"},{"x":23,"y":5,"type":"AIR"},{"x":24,"y":5,"type":"AIR"},{"x":25,"y":5,"type":"AIR"},{"x":26,"y":5,"type":"DIRT"},{"x":27,"y":5,"type":"DIRT"},{"x":28,"y":5,"type":"DIRT"},{"x":29,"y":5,"type":"DEEP_SPACE"},{"x":30,"y":5,"type":"DEEP_SPACE"},{"x":31,"y":5,"type":"DEEP_SPACE"},{"x":32,"y":5,"type":"DEEP_SPACE"}],[{"x":0,"y":6,"type":"DEEP_SPACE"},{"x":1,"y":6,"type":"DEEP_SPACE"},{"x":2,"y":6,"type":"DEEP_SPACE"},{"x":3,"y":6,"type":"DIRT"},{"x":4,"y":6,"type":"AIR"},{"x":5,"y":6,"type":"AIR"},{"x":6,"y":6,"type":"DIRT"},{"x":7,"y":6,"type":"DIRT"},{"x":8,"y":6,"type":"DIRT"},{"x":9,"y":6,"type":"DIRT"},{"x":10,"y":6,"type":"DIRT"},{"x":11,"y":6,"type":"DIRT"},{"x":12,"y":6,"type":"DIRT"},{"x":13,"y":6,"type":"DIRT"},{"x":14,"y":6,"type":"AIR"},{"x":15,"y":6,"type":"AIR"},{"x":16,"y":6,"type":"AIR"},{"x":17,"y":6,"type":"AIR"},{"x":18,"y":6,"type":"AIR"},{"x":19,"y":6,"type":"DIRT"},{"x":20,"y":6,"type":"DIRT"},{"x":21,"y":6,"type":"DIRT"},{"x":22,"y":6,"type":"DIRT"},{"x":23,"y":6,"type":"DIRT"},{"x":24,"y":6,"type":"DIRT"},{"x":25,"y":6,"type":"DIRT"},{"x":26,"y":6,"type":"DIRT"},{"x":27,"y":6,"type":"AIR"},{"x":28,"y":6,"type":"AIR"},{"x":29,"y":6,"type":"DIRT"},{"x":30,"y":6,"type":"DEEP_SPACE"},{"x":31,"y":6,"type":"DEEP_SPACE"},{"x":32,"y":6,"type":"DEEP_SPACE"}],[{"x":0,"y":7,"type":"DEEP_SPACE"},{"x":1,"y":7,"type":"DEEP_SPACE"},{"x":2,"y":7,"type":"AIR"},{"x":3,"y":7,"type":"DIRT"},{"x":4,"y":7,"type":"AIR"},{"x":5,"y":7,"type":"AIR"},{"x":6,"y":7,"type":"DIRT"},{"x":7,"y":7,"type":"DIRT"},{"x":8,"y":7,"type":"DIRT"},{"x":9,"y":7,"type":"DIRT"},{"x":10,"y":7,"type":"DIRT"},{"x":11,"y":7,"type":"DIRT"},{"x":12,"y":7,"type":"DIRT"},{"x":13,"y":7,"type":"DIRT"},{"x":14,"y":7,"type":"AIR"},{"x":15,"y":7,"type":"AIR"},{"x":16,"y":7,"type":"DIRT"},{"x":17,"y":7,"type":"AIR"},{"x":18,"y":7,"type":"AIR"},{"x":19,"y":7,"type":"DIRT"},{"x":20,"y":7,"type":"DIRT"},{"x":21,"y":7,"type":"DIRT"},{"x":22,"y":7,"type":"DIRT"},{"x":23,"y":7,"type":"DIRT"},{"x":24,"y":7,"type":"DIRT"},{"x":25,"y":7,"type":"DIRT"},{"x":26,"y":7,"type":"DIRT"},{"x":27,"y":7,"type":"AIR"},{"x":28,"y":7,"type":"AIR"},{"x":29,"y":7,"type":"DIRT"},{"x":30,"y":7,"type":"AIR"},{"x":31,"y":7,"type":"DEEP_SPACE"},{"x":32,"y":7,"type":"DEEP_SPACE"}],[{"x":0,"y":8,"type":"DEEP_SPACE"},{"x":1,"y":8,"type":"DIRT"},{"x":2,"y":8,"type":"DIRT"},{"x":3,"y":8,"type":"DIRT"},{"x":4,"y":8,"type":"DIRT"},{"x":5,"y":8,"type":"AIR"},{"x":6,"y":8,"type":"DIRT"},{"x":7,"y":8,"type":"DIRT"},{"x":8,"y":8,"type":"AIR"},{"x":9,"y":8,"type":"DIRT"},{"x":10,"y":8,"type":"DIRT"},{"x":11,"y":8,"type":"DIRT"},{"x":12,"y":8,"type":"DIRT"},{"x":13,"y":8,"type":"DIRT"},{"x":14,"y":8,"type":"DIRT"},{"x":15,"y":8,"type":"AIR"},{"x":16,"y":8,"type":"DIRT"},{"x":17,"y":8,"type":"AIR"},{"x":18,"y":8,"type":"DIRT"},{"x":19,"y":8,"type":"DIRT"},{"x":20,"y":8,"type":"DIRT"},{"x":21,"y":8,"type":"DIRT"},{"x":22,"y":8,"type":"DIRT"},{"x":23,"y":8,"type":"DIRT"},{"x":24,"y":8,"type":"AIR"},{"x":25,"y":8,"type":"DIRT"},{"x":26,"y":8,"type":"DIRT"},{"x":27,"y":8,"type":"AIR"},{"x":28,"y":8,"type":"DIRT"},{"x":29,"y":8,"type":"DIRT"},{"x":30,"y":8,"type":"DIRT"},{"x":31,"y":8,"type":"DIRT"},{"x":32,"y":8,"type":"DEEP_SPACE"}],[{"x":0,"y":9,"type":"DEEP_SPACE"},{"x":1,"y":9,"type":"DIRT"},{"x":2,"y":9,"type":"DIRT"},{"x":3,"y":9,"type":"AIR"},{"x":4,"y":9,"type":"AIR"},{"x":5,"y":9,"type":"AIR"},{"x":6,"y":9,"type":"AIR"},{"x":7,"y":9,"type":"DIRT"},{"x":8,"y":9,"type":"AIR"},{"x":9,"y":9,"type":"AIR"},{"x":10,"y":9,"type":"DIRT"},{"x":11,"y":9,"type":"DIRT"},{"x":12,"y":9,"type":"DIRT"},{"x":13,"y":9,"type":"DIRT"},{"x":14,"y":9,"type":"DIRT"},{"x":15,"y":9,"type":"DIRT"},{"x":16,"y":9,"type":"AIR"},{"x":17,"y":9,"type":"DIRT"},{"x":18,"y":9,"type":"DIRT"},{"x":19,"y":9,"type":"DIRT"},{"x":20,"y":9,"type":"DIRT"},{"x":21,"y":9,"type":"DIRT"},{"x":22,"y":9,"type":"DIRT"},{"x":23,"y":9,"type":"AIR"},{"x":24,"y":9,"type":"AIR"},{"x":25,"y":9,"type":"DIRT"},{"x":26,"y":9,"type":"AIR"},{"x":27,"y":9,"type":"AIR"},{"x":28,"y":9,"type":"AIR"},{"x":29,"y":9,"type":"AIR"},{"x":30,"y":9,"type":"DIRT"},{"x":31,"y":9,"type":"DIRT"},{"x":32,"y":9,"type":"DEEP_SPACE"}],[{"x":0,"y":10,"type":"DEEP_SPACE"},{"x":1,"y":10,"type":"DIRT"},{"x":2,"y":10,"type":"DIRT"},{"x":3,"y":10,"type":"DIRT"},{"x":4,"y":10,"type":"AIR"},{"x":5,"y":10,"type":"AIR"},{"x":6,"y":10,"type":"DIRT"},{"x":7,"y":10,"type":"DIRT"},{"x":8,"y":10,"type":"AIR"},{"x":9,"y":10,"type":"AIR"},{"x":10,"y":10,"type":"DIRT"},{"x":11,"y":10,"type":"DIRT"},{"x":12,"y":10,"type":"DIRT"},{"x":13,"y":10,"type":"DIRT"},{"x":14,"y":10,"type":"DIRT"},{"x":15,"y":10,"type":"DIRT"},{"x":16,"y":10,"type":"AIR"},{"x":17,"y":10,"type":"DIRT"},{"x":18,"y":10,"type":"DIRT"},{"x":19,"y":10,"type":"DIRT"},{"x":20,"y":10,"type":"DIRT"},{"x":21,"y":10,"type":"DIRT"},{"x":22,"y":10,"type":"DIRT"},{"x":23,"y":10,"type":"AIR"},{"x":24,"y":10,"type":"AIR"},{"x":25,"y":10,"type":"DIRT"},{"x":26,"y":10,"type":"DIRT"},{"x":27,"y":10,"type":"AIR"},{"x":28,"y":10,"type":"AIR"},{"x":29,"y":10,"type":"DIRT"},{"x":30,"y":10,"type":"DIRT"},{"x":31,"y":10,"type":"DIRT"},{"x":32,"y":10,"type":"DEEP_SPACE"}],[{"x":0,"y":11,"type":"AIR"},{"x":1,"y":11,"type":"AIR"},{"x":2,"y":11,"type":"DIRT"},{"x":3,"y":11,"type":"DIRT"},{"x":4,"y":11,"type":"DIRT"},{"x":5,"y":11,"type":"DIRT"},{"x":6,"y":11,"type":"DIRT"},{"x":7,"y":11,"type":"DIRT"},{"x":8,"y":11,"type":"AIR"},{"x":9,"y":11,"type":"AIR"},{"x":10,"y":11,"type":"AIR"},{"x":11,"y":11,"type":"AIR"},{"x":12,"y":11,"type":"DIRT"},{"x":13,"y":11,"type":"AIR"},{"x":14,"y":11,"type":"AIR"},{"x":15,"y":11,"type":"AIR"},{"x":16,"y":11,"type":"AIR"},{"x":17,"y":11,"type":"AIR"},{"x":18,"y":11,"type":"AIR"},{"x":19,"y":11,"type":"AIR"},{"x":20,"y":11,"type":"DIRT"},{"x":21,"y":11,"type":"AIR"},{"x":22,"y":11,"type":"AIR"},{"x":23,"y":11,"type":"AIR"},{"x":24,"y":11,"type":"AIR"},{"x":25,"y":11,"type":"DIRT"},{"x":26,"y":11,"type":"DIRT"},{"x":27,"y":11,"type":"DIRT"},{"x":28,"y":11,"type":"DIRT"},{"x":29,"y":11,"type":"DIRT"},{"x":30,"y":11,"type":"DIRT"},{"x":31,"y":11,"type":"AIR"},{"x":32,"y":11,"type":"AIR"}],[{"x":0,"y":12,"type":"AIR"},{"x":1,"y":12,"type":"AIR"},{"x":2,"y":12,"type":"DIRT"},{"x":3,"y":12,"type":"AIR"},{"x":4,"y":12,"type":"AIR"},{"x":5,"y":12,"type":"DIRT"},{"x":6,"y":12,"type":"DIRT"},{"x":7,"y":12,"type":"DIRT"},{"x":8,"y":12,"type":"AIR"},{"x":9,"y":12,"type":"AIR"},{"x":10,"y":12,"type":"AIR"},{"x":11,"y":12,"type":"AIR"},{"x":12,"y":12,"type":"AIR"},{"x":13,"y":12,"type":"AIR"},{"x":14,"y":12,"type":"AIR"},{"x":15,"y":12,"type":"AIR"},{"x":16,"y":12,"type":"AIR"},{"x":17,"y":12,"type":"AIR"},{"x":18,"y":12,"type":"AIR"},{"x":19,"y":12,"type":"AIR"},{"x":20,"y":12,"type":"AIR"},{"x":21,"y":12,"type":"AIR"},{"x":22,"y":12,"type":"AIR"},{"x":23,"y":12,"type":"AIR"},{"x":24,"y":12,"type":"AIR"},{"x":25,"y":12,"type":"DIRT"},{"x":26,"y":12,"type":"DIRT"},{"x":27,"y":12,"type":"DIRT"},{"x":28,"y":12,"type":"AIR"},{"x":29,"y":12,"type":"AIR"},{"x":30,"y":12,"type":"DIRT"},{"x":31,"y":12,"type":"AIR"},{"x":32,"y":12,"type":"AIR"}],[{"x":0,"y":13,"type":"AIR"},{"x":1,"y":13,"type":"AIR"},{"x":2,"y":13,"type":"DIRT"},{"x":3,"y":13,"type":"DIRT"},{"x":4,"y":13,"type":"AIR"},{"x":5,"y":13,"type":"DIRT"},{"x":6,"y":13,"type":"DIRT"},{"x":7,"y":13,"type":"DIRT"},{"x":8,"y":13,"type":"DIRT"},{"x":9,"y":13,"type":"AIR"},{"x":10,"y":13,"type":"AIR"},{"x":11,"y":13,"type":"DIRT"},{"x":12,"y":13,"type":"DIRT"},{"x":13,"y":13,"type":"AIR"},{"x":14,"y":13,"type":"AIR"},{"x":15,"y":13,"type":"AIR"},{"x":16,"y":13,"type":"AIR"},{"x":17,"y":13,"type":"AIR"},{"x":18,"y":13,"type":"AIR"},{"x":19,"y":13,"type":"AIR"},{"x":20,"y":13,"type":"DIRT"},{"x":21,"y":13,"type":"DIRT"},{"x":22,"y":13,"type":"AIR"},{"x":23,"y":13,"type":"AIR"},{"x":24,"y":13,"type":"DIRT"},{"x":25,"y":13,"type":"DIRT"},{"x":26,"y":13,"type":"DIRT"},{"x":27,"y":13,"type":"DIRT"},{"x":28,"y":13,"type":"AIR"},{"x":29,"y":13,"type":"DIRT"},{"x":30,"y":13,"type":"DIRT"},{"x":31,"y":13,"type":"AIR"},{"x":32,"y":13,"type":"AIR"}],[{"x":0,"y":14,"type":"DIRT"},{"x":1,"y":14,"type":"DIRT"},{"x":2,"y":14,"type":"DIRT"},{"x":3,"y":14,"type":"DIRT"},{"x":4,"y":14,"type":"DIRT"},{"x":5,"y":14,"type":"DIRT"},{"x":6,"y":14,"type":"DIRT"},{"x":7,"y":14,"type":"DIRT"},{"x":8,"y":14,"type":"DIRT"},{"x":9,"y":14,"type":"AIR"},{"x":10,"y":14,"type":"DIRT"},{"x":11,"y":14,"type":"DIRT"},{"x":12,"y":14,"type":"DIRT"},{"x":13,"y":14,"type":"DIRT"},{"x":14,"y":14,"type":"DIRT"},{"x":15,"y":14,"type":"DIRT"},{"x":16,"y":14,"type":"AIR"},{"x":17,"y":14,"type":"DIRT"},{"x":18,"y":14,"type":"DIRT"},{"x":19,"y":14,"type":"DIRT"},{"x":20,"y":14,"type":"DIRT"},{"x":21,"y":14,"type":"DIRT"},{"x":22,"y":14,"type":"DIRT"},{"x":23,"y":14,"type":"AIR"},{"x":24,"y":14,"type":"DIRT"},{"x":25,"y":14,"type":"DIRT"},{"x":26,"y":14,"type":"DIRT"},{"x":27,"y":14,"type":"DIRT"},{"x":28,"y":14,"type":"DIRT"},{"x":29,"y":14,"type":"DIRT"},{"x":30,"y":14,"type":"DIRT"},{"x":31,"y":14,"type":"DIRT"},{"x":32,"y":14,"type":"DIRT"}],[{"x":0,"y":15,"type":"AIR"},{"x":1,"y":15,"type":"AIR"},{"x":2,"y":15,"type":"AIR"},{"x":3,"y":15,"type":"DIRT"},{"x":4,"y":15,"type":"DIRT"},{"x":5,"y":15,"type":"AIR"},{"x":6,"y":15,"type":"AIR"},{"x":7,"y":15,"type":"AIR"},{"x":8,"y":15,"type":"AIR"},{"x":9,"y":15,"type":"AIR"},{"x":10,"y":15,"type":"DIRT"},{"x":11,"y":15,"type":"AIR"},{"x":12,"y":15,"type":"AIR"},{"x":13,"y":15,"type":"AIR"},{"x":14,"y":15,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":15,"y":15,"type":"DIRT"},{"x":16,"y":15,"type":"AIR"},{"x":17,"y":15,"type":"DIRT"},{"x":18,"y":15,"type":"DIRT"},{"x":19,"y":15,"type":"AIR"},{"x":20,"y":15,"type":"AIR"},{"x":21,"y":15,"type":"AIR"},{"x":22,"y":15,"type":"DIRT"},{"x":23,"y":15,"type":"AIR"},{"x":24,"y":15,"type":"AIR"},{"x":25,"y":15,"type":"AIR"},{"x":26,"y":15,"type":"AIR"},{"x":27,"y":15,"type":"AIR"},{"x":28,"y":15,"type":"DIRT"},{"x":29,"y":15,"type":"DIRT"},{"x":30,"y":15,"type":"AIR"},{"x":31,"y":15,"type":"AIR"},{"x":32,"y":15,"type":"AIR"}],[{"x":0,"y":16,"type":"AIR"},{"x":1,"y":16,"type":"AIR","occupier":{"id":2,"playerId":1,"health":100,"position":{"x":1,"y":16},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Agent"}},{"x":2,"y":16,"type":"AIR"},{"x":3,"y":16,"type":"DIRT"},{"x":4,"y":16,"type":"AIR"},{"x":5,"y":16,"type":"AIR"},{"x":6,"y":16,"type":"AIR"},{"x":7,"y":16,"type":"DIRT"},{"x":8,"y":16,"type":"DIRT"},{"x":9,"y":16,"type":"DIRT"},{"x":10,"y":16,"type":"DIRT"},{"x":11,"y":16,"type":"DIRT"},{"x":12,"y":16,"type":"AIR"},{"x":13,"y":16,"type":"AIR"},{"x":14,"y":16,"type":"AIR"},{"x":15,"y":16,"type":"AIR"},{"x":16,"y":16,"type":"AIR"},{"x":17,"y":16,"type":"AIR"},{"x":18,"y":16,"type":"AIR"},{"x":19,"y":16,"type":"AIR"},{"x":20,"y":16,"type":"AIR"},{"x":21,"y":16,"type":"DIRT"},{"x":22,"y":16,"type":"DIRT"},{"x":23,"y":16,"type":"DIRT"},{"x":24,"y":16,"type":"DIRT"},{"x":25,"y":16,"type":"DIRT"},{"x":26,"y":16,"type":"AIR"},{"x":27,"y":16,"type":"AIR"},{"x":28,"y":16,"type":"AIR"},{"x":29,"y":16,"type":"DIRT"},{"x":30,"y":16,"type":"AIR"},{"x":31,"y":16,"type":"AIR","occupier":{"id":1,"playerId":2,"health":150,"position":{"x":31,"y":16},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Commando"}},{"x":32,"y":16,"type":"AIR"}],[{"x":0,"y":17,"type":"AIR"},{"x":1,"y":17,"type":"AIR"},{"x":2,"y":17,"type":"AIR"},{"x":3,"y":17,"type":"DIRT"},{"x":4,"y":17,"type":"AIR"},{"x":5,"y":17,"type":"AIR"},{"x":6,"y":17,"type":"AIR"},{"x":7,"y":17,"type":"DIRT"},{"x":8,"y":17,"type":"DIRT"},{"x":9,"y":17,"type":"DIRT"},{"x":10,"y":17,"type":"DIRT"},{"x":11,"y":17,"type":"DIRT"},{"x":12,"y":17,"type":"AIR"},{"x":13,"y":17,"type":"AIR"},{"x":14,"y":17,"type":"AIR"},{"x":15,"y":17,"type":"AIR"},{"x":16,"y":17,"type":"DIRT"},{"x":17,"y":17,"type":"AIR"},{"x":18,"y":17,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":19,"y":17,"type":"AIR"},{"x":20,"y":17,"type":"AIR"},{"x":21,"y":17,"type":"DIRT"},{"x":22,"y":17,"type":"DIRT"},{"x":23,"y":17,"type":"DIRT"},{"x":24,"y":17,"type":"DIRT"},{"x":25,"y":17,"type":"DIRT"},{"x":26,"y":17,"type":"AIR"},{"x":27,"y":17,"type":"AIR"},{"x":28,"y":17,"type":"AIR"},{"x":29,"y":17,"type":"DIRT"},{"x":30,"y":17,"type":"AIR"},{"x":31,"y":17,"type":"AIR"},{"x":32,"y":17,"type":"AIR"}],[{"x":0,"y":18,"type":"DIRT"},{"x":1,"y":18,"type":"DIRT"},{"x":2,"y":18,"type":"DIRT"},{"x":3,"y":18,"type":"DIRT"},{"x":4,"y":18,"type":"DIRT"},{"x":5,"y":18,"type":"AIR"},{"x":6,"y":18,"type":"AIR"},{"x":7,"y":18,"type":"DIRT"},{"x":8,"y":18,"type":"DIRT"},{"x":9,"y":18,"type":"AIR"},{"x":10,"y":18,"type":"DIRT"},{"x":11,"y":18,"type":"AIR"},{"x":12,"y":18,"type":"AIR"},{"x":13,"y":18,"type":"DIRT"},{"x":14,"y":18,"type":"DIRT"},{"x":15,"y":18,"type":"DIRT"},{"x":16,"y":18,"type":"DIRT"},{"x":17,"y":18,"type":"DIRT"},{"x":18,"y":18,"type":"DIRT"},{"x":19,"y":18,"type":"DIRT"},{"x":20,"y":18,"type":"AIR"},{"x":21,"y":18,"type":"AIR"},{"x":22,"y":18,"type":"DIRT"},{"x":23,"y":18,"type":"AIR"},{"x":24,"y":18,"type":"DIRT"},{"x":25,"y":18,"type":"DIRT"},{"x":26,"y":18,"type":"AIR"},{"x":27,"y":18,"type":"AIR"},{"x":28,"y":18,"type":"DIRT"},{"x":29,"y":18,"type":"DIRT"},{"x":30,"y":18,"type":"DIRT"},{"x":31,"y":18,"type":"DIRT"},{"x":32,"y":18,"type":"DIRT"}],[{"x":0,"y":19,"type":"DIRT"},{"x":1,"y":19,"type":"DIRT"},{"x":2,"y":19,"type":"DIRT"},{"x":3,"y":19,"type":"DIRT"},{"x":4,"y":19,"type":"DIRT"},{"x":5,"y":19,"type":"AIR"},{"x":6,"y":19,"type":"AIR"},{"x":7,"y":19,"type":"DIRT"},{"x":8,"y":19,"type":"AIR"},{"x":9,"y":19,"type":"AIR"},{"x":10,"y":19,"type":"AIR"},{"x":11,"y":19,"type":"AIR"},{"x":12,"y":19,"type":"AIR"},{"x":13,"y":19,"type":"AIR"},{"x":14,"y":19,"type":"AIR"},{"x":15,"y":19,"type":"AIR"},{"x":16,"y":19,"type":"DIRT"},{"x":17,"y":19,"type":"AIR"},{"x":18,"y":19,"type":"AIR"},{"x":19,"y":19,"type":"AIR"},{"x":20,"y":19,"type":"AIR"},{"x":21,"y":19,"type":"AIR"},{"x":22,"y":19,"type":"AIR"},{"x":23,"y":19,"type":"AIR"},{"x":24,"y":19,"type":"AIR"},{"x":25,"y":19,"type":"DIRT"},{"x":26,"y":19,"type":"AIR"},{"x":27,"y":19,"type":"AIR"},{"x":28,"y":19,"type":"DIRT"},{"x":29,"y":19,"type":"DIRT"},{"x":30,"y":19,"type":"DIRT"},{"x":31,"y":19,"type":"DIRT"},{"x":32,"y":19,"type":"DIRT"}],[{"x":0,"y":20,"type":"DIRT"},{"x":1,"y":20,"type":"AIR"},{"x":2,"y":20,"type":"AIR"},{"x":3,"y":20,"type":"AIR"},{"x":4,"y":20,"type":"AIR"},{"x":5,"y":20,"type":"AIR"},{"x":6,"y":20,"type":"AIR"},{"x":7,"y":20,"type":"DIRT"},{"x":8,"y":20,"type":"AIR"},{"x":9,"y":20,"type":"AIR"},{"x":10,"y":20,"type":"AIR"},{"x":11,"y":20,"type":"AIR"},{"x":12,"y":20,"type":"AIR"},{"x":13,"y":20,"type":"AIR"},{"x":14,"y":20,"type":"AIR"},{"x":15,"y":20,"type":"AIR"},{"x":16,"y":20,"type":"AIR"},{"x":17,"y":20,"type":"AIR"},{"x":18,"y":20,"type":"AIR"},{"x":19,"y":20,"type":"AIR"},{"x":20,"y":20,"type":"AIR"},{"x":21,"y":20,"type":"AIR"},{"x":22,"y":20,"type":"AIR"},{"x":23,"y":20,"type":"AIR"},{"x":24,"y":20,"type":"AIR"},{"x":25,"y":20,"type":"DIRT"},{"x":26,"y":20,"type":"AIR"},{"x":27,"y":20,"type":"AIR"},{"x":28,"y":20,"type":"AIR"},{"x":29,"y":20,"type":"AIR"},{"x":30,"y":20,"type":"AIR"},{"x":31,"y":20,"type":"AIR"},{"x":32,"y":20,"type":"DIRT"}],[{"x":0,"y":21,"type":"AIR"},{"x":1,"y":21,"type":"AIR"},{"x":2,"y":21,"type":"AIR"},{"x":3,"y":21,"type":"AIR"},{"x":4,"y":21,"type":"AIR"},{"x":5,"y":21,"type":"DIRT"},{"x":6,"y":21,"type":"DIRT"},{"x":7,"y":21,"type":"DIRT"},{"x":8,"y":21,"type":"AIR"},{"x":9,"y":21,"type":"AIR"},{"x":10,"y":21,"type":"AIR"},{"x":11,"y":21,"type":"AIR"},{"x":12,"y":21,"type":"DIRT"},{"x":13,"y":21,"type":"DIRT"},{"x":14,"y":21,"type":"DIRT"},{"x":15,"y":21,"type":"DIRT"},{"x":16,"y":21,"type":"AIR"},{"x":17,"y":21,"type":"DIRT"},{"x":18,"y":21,"type":"DIRT"},{"x":19,"y":21,"type":"DIRT"},{"x":20,"y":21,"type":"DIRT"},{"x":21,"y":21,"type":"AIR"},{"x":22,"y":21,"type":"AIR"},{"x":23,"y":21,"type":"AIR"},{"x":24,"y":21,"type":"AIR"},{"x":25,"y":21,"type":"DIRT"},{"x":26,"y":21,"type":"DIRT"},{"x":27,"y":21,"type":"DIRT"},{"x":28,"y":21,"type":"AIR"},{"x":29,"y":21,"type":"AIR"},{"x":30,"y":21,"type":"AIR"},{"x":31,"y":21,"type":"AIR"},{"x":32,"y":21,"type":"AIR"}],[{"x":0,"y":22,"type":"DEEP_SPACE"},{"x":1,"y":22,"type":"AIR"},{"x":2,"y":22,"type":"DIRT"},{"x":3,"y":22,"type":"DIRT"},{"x":4,"y":22,"type":"DIRT"},{"x":5,"y":22,"type":"DIRT"},{"x":6,"y":22,"type":"DIRT"},{"x":7,"y":22,"type":"DIRT"},{"x":8,"y":22,"type":"DIRT"},{"x":9,"y":22,"type":"AIR"},{"x":10,"y":22,"type":"AIR"},{"x":11,"y":22,"type":"DIRT"},{"x":12,"y":22,"type":"DIRT"},{"x":13,"y":22,"type":"DIRT"},{"x":14,"y":22,"type":"AIR"},{"x":15,"y":22,"type":"DIRT"},{"x":16,"y":22,"type":"DIRT"},{"x":17,"y":22,"type":"DIRT"},{"x":18,"y":22,"type":"AIR"},{"x":19,"y":22,"type":"DIRT"},{"x":20,"y":22,"type":"DIRT"},{"x":21,"y":22,"type":"DIRT"},{"x":22,"y":22,"type":"AIR"},{"x":23,"y":22,"type":"AIR"},{"x":24,"y":22,"type":"DIRT"},{"x":25,"y":22,"type":"DIRT"},{"x":26,"y":22,"type":"DIRT"},{"x":27,"y":22,"type":"DIRT"},{"x":28,"y":22,"type":"DIRT"},{"x":29,"y":22,"type":"DIRT"},{"x":30,"y":22,"type":"DIRT"},{"x":31,"y":22,"type":"AIR"},{"x":32,"y":22,"type":"DEEP_SPACE"}],[{"x":0,"y":23,"type":"DEEP_SPACE"},{"x":1,"y":23,"type":"AIR"},{"x":2,"y":23,"type":"DIRT"},{"x":3,"y":23,"type":"DIRT"},{"x":4,"y":23,"type":"DIRT"},{"x":5,"y":23,"type":"DIRT"},{"x":6,"y":23,"type":"DIRT"},{"x":7,"y":23,"type":"DIRT"},{"x":8,"y":23,"type":"DIRT"},{"x":9,"y":23,"type":"AIR"},{"x":10,"y":23,"type":"AIR"},{"x":11,"y":23,"type":"DIRT"},{"x":12,"y":23,"type":"DIRT"},{"x":13,"y":23,"type":"DIRT"},{"x":14,"y":23,"type":"AIR"},{"x":15,"y":23,"type":"DIRT"},{"x":16,"y":23,"type":"DIRT"},{"x":17,"y":23,"type":"DIRT"},{"x":18,"y":23,"type":"AIR"},{"x":19,"y":23,"type":"DIRT"},{"x":20,"y":23,"type":"DIRT"},{"x":21,"y":23,"type":"DIRT"},{"x":22,"y":23,"type":"AIR"},{"x":23,"y":23,"type":"AIR"},{"x":24,"y":23,"type":"DIRT"},{"x":25,"y":23,"type":"DIRT"},{"x":26,"y":23,"type":"DIRT"},{"x":27,"y":23,"type":"DIRT"},{"x":28,"y":23,"type":"DIRT"},{"x":29,"y":23,"type":"DIRT"},{"x":30,"y":23,"type":"DIRT"},{"x":31,"y":23,"type":"AIR"},{"x":32,"y":23,"type":"DEEP_SPACE"}],[{"x":0,"y":24,"type":"DEEP_SPACE"},{"x":1,"y":24,"type":"DIRT"},{"x":2,"y":24,"type":"AIR"},{"x":3,"y":24,"type":"AIR"},{"x":4,"y":24,"type":"DIRT"},{"x":5,"y":24,"type":"DIRT"},{"x":6,"y":24,"type":"DIRT"},{"x":7,"y":24,"type":"DIRT"},{"x":8,"y":24,"type":"DIRT"},{"x":9,"y":24,"type":"AIR"},{"x":10,"y":24,"type":"DIRT"},{"x":11,"y":24,"type":"DIRT"},{"x":12,"y":24,"type":"DIRT"},{"x":13,"y":24,"type":"DIRT"},{"x":14,"y":24,"type":"AIR"},{"x":15,"y":24,"type":"AIR"},{"x":16,"y":24,"type":"DIRT"},{"x":17,"y":24,"type":"AIR"},{"x":18,"y":24,"type":"AIR"},{"x":19,"y":24,"type":"DIRT"},{"x":20,"y":24,"type":"DIRT"},{"x":21,"y":24,"type":"DIRT"},{"x":22,"y":24,"type":"DIRT"},{"x":23,"y":24,"type":"AIR"},{"x":24,"y":24,"type":"DIRT"},{"x":25,"y":24,"type":"DIRT"},{"x":26,"y":24,"type":"DIRT"},{"x":27,"y":24,"type":"DIRT"},{"x":28,"y":24,"type":"DIRT"},{"x":29,"y":24,"type":"AIR"},{"x":30,"y":24,"type":"AIR"},{"x":31,"y":24,"type":"DIRT"},{"x":32,"y":24,"type":"DEEP_SPACE"}],[{"x":0,"y":25,"type":"DEEP_SPACE"},{"x":1,"y":25,"type":"DEEP_SPACE"},{"x":2,"y":25,"type":"DIRT"},{"x":3,"y":25,"type":"DIRT"},{"x":4,"y":25,"type":"DIRT"},{"x":5,"y":25,"type":"DIRT"},{"x":6,"y":25,"type":"DIRT"},{"x":7,"y":25,"type":"AIR"},{"x":8,"y":25,"type":"AIR"},{"x":9,"y":25,"type":"AIR"},{"x":10,"y":25,"type":"DIRT"},{"x":11,"y":25,"type":"AIR"},{"x":12,"y":25,"type":"AIR"},{"x":13,"y":25,"type":"AIR"},{"x":14,"y":25,"type":"AIR"},{"x":15,"y":25,"type":"AIR"},{"x":16,"y":25,"type":"AIR"},{"x":17,"y":25,"type":"AIR"},{"x":18,"y":25,"type":"AIR"},{"x":19,"y":25,"type":"AIR"},{"x":20,"y":25,"type":"AIR"},{"x":21,"y":25,"type":"AIR"},{"x":22,"y":25,"type":"DIRT"},{"x":23,"y":25,"type":"AIR"},{"x":24,"y":25,"type":"AIR"},{"x":25,"y":25,"type":"AIR"},{"x":26,"y":25,"type":"DIRT"},{"x":27,"y":25,"type":"DIRT"},{"x":28,"y":25,"type":"DIRT"},{"x":29,"y":25,"type":"DIRT"},{"x":30,"y":25,"type":"DIRT"},{"x":31,"y":25,"type":"DEEP_SPACE"},{"x":32,"y":25,"type":"DEEP_SPACE"}],[{"x":0,"y":26,"type":"DEEP_SPACE"},{"x":1,"y":26,"type":"DEEP_SPACE"},{"x":2,"y":26,"type":"DEEP_SPACE"},{"x":3,"y":26,"type":"DIRT"},{"x":4,"y":26,"type":"DIRT"},{"x":5,"y":26,"type":"DIRT"},{"x":6,"y":26,"type":"DIRT"},{"x":7,"y":26,"type":"DIRT"},{"x":8,"y":26,"type":"DIRT"},{"x":9,"y":26,"type":"DIRT"},{"x":10,"y":26,"type":"DIRT"},{"x":11,"y":26,"type":"DIRT"},{"x":12,"y":26,"type":"AIR"},{"x":13,"y":26,"type":"AIR"},{"x":14,"y":26,"type":"AIR"},{"x":15,"y":26,"type":"AIR"},{"x":16,"y":26,"type":"AIR"},{"x":17,"y":26,"type":"AIR"},{"x":18,"y":26,"type":"AIR"},{"x":19,"y":26,"type":"AIR"},{"x":20,"y":26,"type":"AIR"},{"x":21,"y":26,"type":"DIRT"},{"x":22,"y":26,"type":"DIRT"},{"x":23,"y":26,"type":"DIRT"},{"x":24,"y":26,"type":"DIRT"},{"x":25,"y":26,"type":"DIRT"},{"x":26,"y":26,"type":"DIRT"},{"x":27,"y":26,"type":"DIRT"},{"x":28,"y":26,"type":"DIRT"},{"x":29,"y":26,"type":"DIRT"},{"x":30,"y":26,"type":"DEEP_SPACE"},{"x":31,"y":26,"type":"DEEP_SPACE"},{"x":32,"y":26,"type":"DEEP_SPACE"}],[{"x":0,"y":27,"type":"DEEP_SPACE"},{"x":1,"y":27,"type":"DEEP_SPACE"},{"x":2,"y":27,"type":"DEEP_SPACE"},{"x":3,"y":27,"type":"DEEP_SPACE"},{"x":4,"y":27,"type":"DIRT"},{"x":5,"y":27,"type":"AIR"},{"x":6,"y":27,"type":"DIRT"},{"x":7,"y":27,"type":"AIR"},{"x":8,"y":27,"type":"AIR"},{"x":9,"y":27,"type":"AIR"},{"x":10,"y":27,"type":"DIRT"},{"x":11,"y":27,"type":"DIRT"},{"x":12,"y":27,"type":"DIRT"},{"x":13,"y":27,"type":"DIRT"},{"x":14,"y":27,"type":"AIR"},{"x":15,"y":27,"type":"AIR"},{"x":16,"y":27,"type":"AIR"},{"x":17,"y":27,"type":"AIR"},{"x":18,"y":27,"type":"AIR"},{"x":19,"y":27,"type":"DIRT"},{"x":20,"y":27,"type":"DIRT"},{"x":21,"y":27,"type":"DIRT"},{"x":22,"y":27,"type":"DIRT"},{"x":23,"y":27,"type":"AIR"},{"x":24,"y":27,"type":"AIR"},{"x":25,"y":27,"type":"AIR"},{"x":26,"y":27,"type":"DIRT"},{"x":27,"y":27,"type":"AIR"},{"x":28,"y":27,"type":"DIRT"},{"x":29,"y":27,"type":"DEEP_SPACE"},{"x":30,"y":27,"type":"DEEP_SPACE"},{"x":31,"y":27,"type":"DEEP_SPACE"},{"x":32,"y":27,"type":"DEEP_SPACE"}],[{"x":0,"y":28,"type":"DEEP_SPACE"},{"x":1,"y":28,"type":"DEEP_SPACE"},{"x":2,"y":28,"type":"DEEP_SPACE"},{"x":3,"y":28,"type":"DEEP_SPACE"},{"x":4,"y":28,"type":"AIR"},{"x":5,"y":28,"type":"AIR"},{"x":6,"y":28,"type":"DIRT"},{"x":7,"y":28,"type":"AIR"},{"x":8,"y":28,"type":"AIR","occupier":{"id":2,"playerId":2,"health":100,"position":{"x":8,"y":28},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Agent"}},{"x":9,"y":28,"type":"AIR"},{"x":10,"y":28,"type":"DIRT"},{"x":11,"y":28,"type":"DIRT"},{"x":12,"y":28,"type":"AIR"},{"x":13,"y":28,"type":"DIRT"},{"x":14,"y":28,"type":"DIRT"},{"x":15,"y":28,"type":"DIRT"},{"x":16,"y":28,"type":"DIRT"},{"x":17,"y":28,"type":"DIRT"},{"x":18,"y":28,"type":"DIRT"},{"x":19,"y":28,"type":"DIRT"},{"x":20,"y":28,"type":"AIR"},{"x":21,"y":28,"type":"DIRT"},{"x":22,"y":28,"type":"DIRT"},{"x":23,"y":28,"type":"AIR"},{"x":24,"y":28,"type":"AIR","occupier":{"id":1,"playerId":1,"health":150,"position":{"x":24,"y":28},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Commando"}},{"x":25,"y":28,"type":"AIR"},{"x":26,"y":28,"type":"DIRT"},{"x":27,"y":28,"type":"AIR"},{"x":28,"y":28,"type":"AIR"},{"x":29,"y":28,"type":"DEEP_SPACE"},{"x":30,"y":28,"type":"DEEP_SPACE"},{"x":31,"y":28,"type":"DEEP_SPACE"},{"x":32,"y":28,"type":"DEEP_SPACE"}],[{"x":0,"y":29,"type":"DEEP_SPACE"},{"x":1,"y":29,"type":"DEEP_SPACE"},{"x":2,"y":29,"type":"DEEP_SPACE"},{"x":3,"y":29,"type":"DEEP_SPACE"},{"x":4,"y":29,"type":"DEEP_SPACE"},{"x":5,"y":29,"type":"DEEP_SPACE"},{"x":6,"y":29,"type":"DIRT"},{"x":7,"y":29,"type":"AIR"},{"x":8,"y":29,"type":"AIR"},{"x":9,"y":29,"type":"AIR"},{"x":10,"y":29,"type":"DIRT"},{"x":11,"y":29,"type":"AIR"},{"x":12,"y":29,"type":"AIR"},{"x":13,"y":29,"type":"DIRT"},{"x":14,"y":29,"type":"DIRT"},{"x":15,"y":29,"type":"DIRT"},{"x":16,"y":29,"type":"DIRT"},{"x":17,"y":29,"type":"DIRT"},{"x":18,"y":29,"type":"DIRT"},{"x":19,"y":29,"type":"DIRT"},{"x":20,"y":29,"type":"AIR"},{"x":21,"y":29,"type":"AIR"},{"x":22,"y":29,"type":"DIRT"},{"x":23,"y":29,"type":"AIR"},{"x":24,"y":29,"type":"AIR"},{"x":25,"y":29,"type":"AIR"},{"x":26,"y":29,"type":"DIRT"},{"x":27,"y":29,"type":"DEEP_SPACE"},{"x":28,"y":29,"type":"DEEP_SPACE"},{"x":29,"y":29,"type":"DEEP_SPACE"},{"x":30,"y":29,"type":"DEEP_SPACE"},{"x":31,"y":29,"type":"DEEP_SPACE"},{"x":32,"y":29,"type":"DEEP_SPACE"}],[{"x":0,"y":30,"type":"DEEP_SPACE"},{"x":1,"y":30,"type":"DEEP_SPACE"},{"x":2,"y":30,"type":"DEEP_SPACE"},{"x":3,"y":30,"type":"DEEP_SPACE"},{"x":4,"y":30,"type":"DEEP_SPACE"},{"x":5,"y":30,"type":"DEEP_SPACE"},{"x":6,"y":30,"type":"DEEP_SPACE"},{"x":7,"y":30,"type":"DIRT"},{"x":8,"y":30,"type":"DIRT"},{"x":9,"y":30,"type":"DIRT"},{"x":10,"y":30,"type":"DIRT"},{"x":11,"y":30,"type":"AIR"},{"x":12,"y":30,"type":"AIR"},{"x":13,"y":30,"type":"AIR"},{"x":14,"y":30,"type":"DIRT"},{"x":15,"y":30,"type":"DIRT"},{"x":16,"y":30,"type":"DIRT"},{"x":17,"y":30,"type":"DIRT"},{"x":18,"y":30,"type":"DIRT"},{"x":19,"y":30,"type":"AIR"},{"x":20,"y":30,"type":"AIR"},{"x":21,"y":30,"type":"AIR"},{"x":22,"y":30,"type":"DIRT"},{"x":23,"y":30,"type":"DIRT"},{"x":24,"y":30,"type":"DIRT"},{"x":25,"y":30,"type":"DIRT"},{"x":26,"y":30,"type":"DEEP_SPACE"},{"x":27,"y":30,"type":"DEEP_SPACE"},{"x":28,"y":30,"type":"DEEP_SPACE"},{"x":29,"y":30,"type":"DEEP_SPACE"},{"x":30,"y":30,"type":"DEEP_SPACE"},{"x":31,"y":30,"type":"DEEP_SPACE"},{"x":32,"y":30,"type":"DEEP_SPACE"}],[{"x":0,"y":31,"type":"DEEP_SPACE"},{"x":1,"y":31,"type":"DEEP_SPACE"},{"x":2,"y":31,"type":"DEEP_SPACE"},{"x":3,"y":31,"type":"DEEP_SPACE"},{"x":4,"y":31,"type":"DEEP_SPACE"},{"x":5,"y":31,"type":"DEEP_SPACE"},{"x":6,"y":31,"type":"DEEP_SPACE"},{"x":7,"y":31,"type":"DEEP_SPACE"},{"x":8,"y":31,"type":"AIR"},{"x":9,"y":31,"type":"DIRT"},{"x":10,"y":31,"type":"DIRT"},{"x":11,"y":31,"type":"DIRT"},{"x":12,"y":31,"type":"AIR"},{"x":13,"y":31,"type":"AIR"},{"x":14,"y":31,"type":"AIR"},{"x":15,"y":31,"type":"AIR"},{"x":16,"y":31,"type":"AIR"},{"x":17,"y":31,"type":"AIR"},{"x":18,"y":31,"type":"AIR"},{"x":19,"y":31,"type":"AIR"},{"x":20,"y":31,"type":"AIR"},{"x":21,"y":31,"type":"DIRT"},{"x":22,"y":31,"type":"DIRT"},{"x":23,"y":31,"type":"DIRT"},{"x":24,"y":31,"type":"AIR"},{"x":25,"y":31,"type":"DEEP_SPACE"},{"x":26,"y":31,"type":"DEEP_SPACE"},{"x":27,"y":31,"type":"DEEP_SPACE"},{"x":28,"y":31,"type":"DEEP_SPACE"},{"x":29,"y":31,"type":"DEEP_SPACE"},{"x":30,"y":31,"type":"DEEP_SPACE"},{"x":31,"y":31,"type":"DEEP_SPACE"},{"x":32,"y":31,"type":"DEEP_SPACE"}],[{"x":0,"y":32,"type":"DEEP_SPACE"},{"x":1,"y":32,"type":"DEEP_SPACE"},{"x":2,"y":32,"type":"DEEP_SPACE"},{"x":3,"y":32,"type":"DEEP_SPACE"},{"x":4,"y":32,"type":"DEEP_SPACE"},{"x":5,"y":32,"type":"DEEP_SPACE"},{"x":6,"y":32,"type":"DEEP_SPACE"},{"x":7,"y":32,"type":"DEEP_SPACE"},{"x":8,"y":32,"type":"DEEP_SPACE"},{"x":9,"y":32,"type":"DEEP_SPACE"},{"x":10,"y":32,"type":"DEEP_SPACE"},{"x":11,"y":32,"type":"DIRT"},{"x":12,"y":32,"type":"AIR"},{"x":13,"y":32,"type":"AIR"},{"x":14,"y":32,"type":"DIRT"},{"x":15,"y":32,"type":"AIR"},{"x":16,"y":32,"type":"AIR"},{"x":17,"y":32,"type":"AIR"},{"x":18,"y":32,"type":"DIRT"},{"x":19,"y":32,"type":"AIR"},{"x":20,"y":32,"type":"AIR"},{"x":21,"y":32,"type":"DIRT"},{"x":22,"y":32,"type":"DEEP_SPACE"},{"x":23,"y":32,"type":"DEEP_SPACE"},{"x":24,"y":32,"type":"DEEP_SPACE"},{"x":25,"y":32,"type":"DEEP_SPACE"},{"x":26,"y":32,"type":"DEEP_SPACE"},{"x":27,"y":32,"type":"DEEP_SPACE"},{"x":28,"y":32,"type":"DEEP_SPACE"},{"x":29,"y":32,"type":"DEEP_SPACE"},{"x":30,"y":32,"type":"DEEP_SPACE"},{"x":31,"y":32,"type":"DEEP_SPACE"},{"x":32,"y":32,"type":"DEEP_SPACE"}]],"visualizerEvents":[]} \ No newline at end of file
diff --git a/tests/replays/2019.08.07.14.25.37/A-log.csv b/tests/replays/2019.08.07.14.25.37/A-log.csv
new file mode 100644
index 0000000..0ac8311
--- /dev/null
+++ b/tests/replays/2019.08.07.14.25.37/A-log.csv
@@ -0,0 +1,274 @@
+Round,LastCommandType,LastCommand,ActiveWorm,Score,Health,Worm1 Health,Worm1 x,Worm1 y,Worm2 Health,Worm2 x,Worm2 y,Worm3 Health,Worm3 x,Worm3 y
+1,null,"null",1,116,350,150,24,28,100,1,16,100,24,4
+2,snowball,"snowball 23 9",3,116,350,150,24,28,100,1,16,100,24,4
+3,snowball,"snowball 28 8",3,116,350,150,24,28,100,1,16,100,24,4
+4,snowball,"snowball 25 8",3,116,350,150,24,28,100,1,16,100,24,4
+5,banana,"banana 4 21",2,165,350,150,24,28,100,1,16,100,24,4
+6,banana,"banana 2 11",2,228,350,150,24,28,100,1,16,100,24,4
+7,move,"move 25 5",3,233,350,150,24,28,100,1,16,100,25,5
+8,move,"move 23 29",1,238,350,150,23,29,100,1,16,100,25,5
+9,banana,"banana 6 13",2,315,350,150,23,29,100,1,16,100,25,5
+10,dig,"dig 26 4",3,322,350,150,23,29,100,1,16,100,25,5
+11,dig,"dig 22 30",1,329,350,150,23,29,100,1,16,100,25,5
+12,move,"move 2 17",2,334,350,150,23,29,100,2,17,100,25,5
+13,dig,"dig 25 6",3,341,350,150,23,29,100,2,17,100,25,5
+14,dig,"dig 22 28",1,348,350,150,23,29,100,2,17,100,25,5
+15,dig,"dig 1 18",2,355,350,150,23,29,100,2,17,100,25,5
+16,dig,"dig 24 6",3,362,350,150,23,29,100,2,17,100,25,5
+17,dig,"dig 22 29",1,369,350,150,23,29,100,2,17,100,25,5
+18,dig,"dig 3 16",2,376,350,150,23,29,100,2,17,100,25,5
+19,dig,"dig 26 6",3,383,350,150,23,29,100,2,17,100,25,5
+20,move,"move 24 29",1,388,350,150,24,29,100,2,17,100,25,5
+21,dig,"dig 2 18",2,395,350,150,24,29,100,2,17,100,25,5
+22,move,"move 25 4",3,400,350,150,24,29,100,2,17,100,25,4
+23,dig,"dig 24 30",1,407,350,150,24,29,100,2,17,100,25,4
+24,dig,"dig 3 18",2,414,350,150,24,29,100,2,17,100,25,4
+25,dig,"dig 26 3",3,421,350,150,24,29,100,2,17,100,25,4
+26,dig,"dig 25 30",1,428,350,150,24,29,100,2,17,100,25,4
+27,dig,"dig 3 17",2,435,350,150,24,29,100,2,17,100,25,4
+28,move,"move 26 4",3,440,350,150,24,29,100,2,17,100,26,4
+29,dig,"dig 23 30",1,447,350,150,24,29,100,2,17,100,26,4
+30,move,"move 1 16",2,452,350,150,24,29,100,1,16,100,26,4
+31,dig,"dig 27 5",3,459,350,150,24,29,100,1,16,100,26,4
+32,move,"move 25 30",1,464,350,150,25,30,100,1,16,100,26,4
+33,move,"move 1 17",2,469,350,150,25,30,100,1,17,100,26,4
+34,dig,"dig 27 4",3,476,350,150,25,30,100,1,17,100,26,4
+35,dig,"dig 26 29",1,483,350,150,25,30,100,1,17,100,26,4
+36,move,"move 1 18",2,488,350,150,25,30,100,1,18,100,26,4
+37,dig,"dig 26 5",3,495,350,150,25,30,100,1,18,100,26,4
+38,move,"move 25 29",1,500,350,150,25,29,100,1,18,100,26,4
+39,dig,"dig 1 19",2,507,350,150,25,29,100,1,18,100,26,4
+40,move,"move 27 4",3,512,350,150,25,29,100,1,18,100,27,4
+41,dig,"dig 26 28",1,519,350,150,25,29,100,1,18,100,27,4
+42,dig,"dig 2 19",2,526,350,150,25,29,100,1,18,100,27,4
+43,dig,"dig 28 4",3,533,350,150,25,29,100,1,18,100,27,4
+44,move,"move 26 29",1,538,350,150,26,29,100,1,18,100,27,4
+45,dig,"dig 0 18",2,545,350,150,26,29,100,1,18,100,27,4
+46,dig,"dig 28 5",3,552,350,150,26,29,100,1,18,100,27,4
+47,move,"move 26 28",1,557,350,150,26,28,100,1,18,100,27,4
+48,dig,"dig 0 19",2,564,350,150,26,28,100,1,18,100,27,4
+49,move,"move 26 4",3,569,350,150,26,28,100,1,18,100,26,4
+50,dig,"dig 26 27",1,576,350,150,26,28,100,1,18,100,26,4
+51,move,"move 0 19",2,581,350,150,26,28,100,0,19,100,26,4
+52,move,"move 26 5",3,586,350,150,26,28,100,0,19,100,26,5
+53,move,"move 27 28",1,591,350,150,27,28,100,0,19,100,26,5
+54,dig,"dig 0 20",2,598,350,150,27,28,100,0,19,100,26,5
+55,move,"move 25 5",3,603,350,150,27,28,100,0,19,100,25,5
+56,move,"move 26 28",1,608,350,150,26,28,100,0,19,100,25,5
+57,move,"move 1 19",2,613,350,150,26,28,100,1,19,100,25,5
+58,move,"move 26 4",3,618,350,150,26,28,100,1,19,100,26,4
+59,move,"move 27 28",1,623,350,150,27,28,100,1,19,100,26,4
+60,move,"move 2 20",2,628,350,150,27,28,100,2,20,100,26,4
+61,move,"move 27 4",3,633,350,150,27,28,100,2,20,100,27,4
+62,dig,"dig 28 27",1,640,350,150,27,28,100,2,20,100,27,4
+63,dig,"dig 3 19",2,647,350,150,27,28,100,2,20,100,27,4
+64,move,"move 26 3",3,652,350,150,27,28,100,2,20,100,26,3
+65,move,"move 27 27",1,657,350,150,27,27,100,2,20,100,26,3
+66,move,"move 3 19",2,662,350,150,27,27,100,3,19,100,26,3
+67,move,"move 26 4",3,667,350,150,27,27,100,3,19,100,26,4
+68,dig,"dig 26 26",1,674,350,150,27,27,100,3,19,100,26,4
+69,move,"move 4 19",2,679,350,150,27,27,100,4,19,100,26,4
+70,move,"move 26 3",3,684,350,150,27,27,100,4,19,100,26,3
+71,dig,"dig 28 26",1,691,350,150,27,27,100,4,19,100,26,3
+72,dig,"dig 4 18",2,698,350,150,27,27,100,4,19,100,26,3
+73,move,"move 26 4",3,703,350,150,27,27,100,4,19,100,26,4
+74,move,"move 28 28",1,708,350,150,28,28,100,4,19,100,26,4
+75,move,"move 4 20",2,713,350,150,28,28,100,4,20,100,26,4
+76,move,"move 25 5",3,718,350,150,28,28,100,4,20,100,25,5
+77,move,"move 28 27",1,723,350,150,28,27,100,4,20,100,25,5
+78,move,"move 5 19",2,728,350,150,28,27,100,5,19,100,25,5
+79,move,"move 26 5",3,733,350,150,28,27,100,5,19,100,26,5
+80,move,"move 28 28",1,738,350,150,28,28,100,5,19,100,26,5
+81,move,"move 4 20",2,743,350,150,28,28,100,4,20,100,26,5
+82,move,"move 25 5",3,748,350,150,28,28,100,4,20,100,25,5
+83,move,"move 27 28",1,753,350,150,27,28,100,4,20,100,25,5
+84,move,"move 3 20",2,758,350,150,27,28,100,3,20,100,25,5
+85,move,"move 25 4",3,763,350,150,27,28,100,3,20,100,25,4
+86,move,"move 28 28",1,768,350,150,28,28,100,3,20,100,25,4
+87,move,"move 4 21",2,767,330,130,28,28,100,4,21,100,25,4
+88,move,"move 26 3",3,772,330,130,28,28,100,4,21,100,26,3
+89,move,"move 28 27",1,777,330,130,28,27,100,4,21,100,26,3
+90,move,"move 3 21",2,775,310,110,28,27,100,3,21,100,26,3
+91,dig,"dig 25 2",3,782,310,110,28,27,100,3,21,100,26,3
+92,move,"move 29 26",1,787,310,110,29,26,100,3,21,100,26,3
+93,dig,"dig 2 22",2,787,290,90,29,26,100,3,21,100,26,3
+94,move,"move 27 4",3,792,290,90,29,26,100,3,21,100,27,4
+95,move,"move 30 25",1,797,290,90,30,25,100,3,21,100,27,4
+96,move,"move 4 22",2,800,282,82,30,25,100,4,22,100,27,4
+97,move,"move 28 4",3,802,274,74,30,25,100,4,22,100,28,4
+98,move,"move 30 24",1,807,274,74,30,24,100,4,22,100,28,4
+99,dig,"dig 5 23",2,811,266,66,30,24,100,4,22,100,28,4
+100,move,"move 27 5",3,814,258,58,30,24,100,4,22,100,27,5
+101,shoot,"shoot SW",1,830,258,58,30,24,100,4,22,100,27,5
+102,dig,"dig 3 23",2,837,258,58,30,24,100,4,22,100,27,5
+103,move,"move 28 6",3,839,250,50,30,24,100,4,22,100,28,6
+104,shoot,"shoot SW",1,855,250,50,30,24,100,4,22,100,28,6
+105,move,"move 3 22",2,860,250,50,30,24,100,3,22,100,28,6
+106,dig,"dig 29 6",3,864,242,42,30,24,100,3,22,100,28,6
+107,move,"move 30 25",1,869,242,42,30,25,100,3,22,100,28,6
+108,dig,"dig 2 23",2,875,239,39,30,25,100,3,22,100,28,6
+109,dig,"dig 29 7",3,879,228,28,30,25,100,3,22,100,28,6
+110,shoot,"shoot W",1,894,225,25,30,25,100,3,22,100,28,6
+111,move,"move 2 21",2,898,222,22,30,25,100,2,21,100,28,6
+112,move,"move 27 7",3,899,211,11,30,25,100,2,21,100,27,7
+113,shoot,"shoot W",1,914,208,8,30,25,100,2,21,100,27,7
+114,move,"move 2 22",2,918,205,5,30,25,100,2,22,100,27,7
+115,dig,"dig 26 8",3,924,202,2,30,25,100,2,22,100,27,7
+116,shoot,"shoot W",1,923,200,-1,30,25,100,2,22,100,27,7
+117,move,"move 2 21",2,928,200,-1,30,25,100,2,21,100,27,7
+118,dig,"dig 28 8",3,935,200,-1,30,25,100,2,21,100,27,7
+119,move,"move 2 20",2,940,200,-1,30,25,100,2,20,100,27,7
+120,dig,"dig 26 7",3,947,200,-1,30,25,100,2,20,100,27,7
+121,move,"move 3 19",2,952,200,-1,30,25,100,3,19,100,27,7
+122,move,"move 28 7",3,957,200,-1,30,25,100,3,19,100,28,7
+123,move,"move 2 20",2,962,200,-1,30,25,100,2,20,100,28,7
+124,dig,"dig 29 8",3,969,200,-1,30,25,100,2,20,100,28,7
+125,move,"move 3 21",2,974,200,-1,30,25,100,3,21,100,28,7
+126,move,"move 28 8",3,979,200,-1,30,25,100,3,21,100,28,8
+127,move,"move 4 20",2,984,200,-1,30,25,100,4,20,100,28,8
+128,move,"move 29 9",3,989,200,-1,30,25,100,4,20,100,29,9
+129,move,"move 5 21",2,994,200,-1,30,25,100,5,21,100,29,9
+130,dig,"dig 29 10",3,1001,200,-1,30,25,100,5,21,100,29,9
+131,dig,"dig 6 22",2,1008,200,-1,30,25,100,5,21,100,29,9
+132,dig,"dig 30 10",3,1015,200,-1,30,25,100,5,21,100,29,9
+133,move,"move 5 22",2,1020,200,-1,30,25,100,5,22,100,29,9
+134,dig,"dig 30 9",3,1027,200,-1,30,25,100,5,22,100,29,9
+135,dig,"dig 6 23",2,1034,200,-1,30,25,100,5,22,100,29,9
+136,move,"move 28 10",3,1038,197,-1,30,25,100,5,22,97,28,10
+137,move,"move 6 23",2,1043,197,-1,30,25,100,6,23,97,28,10
+138,dig,"dig 29 11",3,1050,197,-1,30,25,100,6,23,97,28,10
+139,dig,"dig 7 23",2,1057,197,-1,30,25,100,6,23,97,28,10
+140,dig,"dig 28 11",3,1064,197,-1,30,25,100,6,23,97,28,10
+141,dig,"dig 7 24",2,1071,197,-1,30,25,100,6,23,97,28,10
+142,dig,"dig 27 11",3,1078,197,-1,30,25,100,6,23,97,28,10
+143,dig,"dig 6 24",2,1085,197,-1,30,25,100,6,23,97,28,10
+144,move,"move 27 11",3,1090,197,-1,30,25,100,6,23,97,27,11
+145,dig,"dig 5 24",2,1097,197,-1,30,25,100,6,23,97,27,11
+146,dig,"dig 26 11",3,1104,197,-1,30,25,100,6,23,97,27,11
+147,move,"move 6 22",2,1109,197,-1,30,25,100,6,22,97,27,11
+148,dig,"dig 26 10",3,1116,197,-1,30,25,100,6,22,97,27,11
+149,dig,"dig 7 21",2,1123,197,-1,30,25,100,6,22,97,27,11
+150,dig,"dig 26 12",3,1130,197,-1,30,25,100,6,22,97,27,11
+151,dig,"dig 7 22",2,1137,197,-1,30,25,100,6,22,97,27,11
+152,move,"move 26 10",3,1142,197,-1,30,25,100,6,22,97,26,10
+153,move,"move 7 22",2,1147,197,-1,30,25,100,7,22,97,26,10
+154,dig,"dig 25 9",3,1154,197,-1,30,25,100,7,22,97,26,10
+155,dig,"dig 8 22",2,1161,197,-1,30,25,100,7,22,97,26,10
+156,move,"move 26 9",3,1166,197,-1,30,25,100,7,22,97,26,9
+157,dig,"dig 8 23",2,1173,197,-1,30,25,100,7,22,97,26,9
+158,move,"move 26 8",3,1178,197,-1,30,25,100,7,22,97,26,8
+159,move,"move 7 23",2,1183,197,-1,30,25,100,7,23,97,26,8
+160,dig,"dig 25 8",3,1190,197,-1,30,25,100,7,23,97,26,8
+161,dig,"dig 8 24",2,1197,197,-1,30,25,100,7,23,97,26,8
+162,dig,"dig 25 7",3,1204,197,-1,30,25,100,7,23,97,26,8
+163,move,"move 6 24",2,1209,197,-1,30,25,100,6,24,97,26,8
+164,move,"move 25 7",3,1214,197,-1,30,25,100,6,24,97,25,7
+165,dig,"dig 5 25",2,1221,197,-1,30,25,100,6,24,97,25,7
+166,move,"move 24 8",3,1226,197,-1,30,25,100,6,24,97,24,8
+167,move,"move 7 23",2,1230,194,-1,30,25,97,7,23,97,24,8
+168,move,"move 25 7",3,1235,194,-1,30,25,97,7,23,97,25,7
+169,move,"move 8 23",2,1239,191,-1,30,25,97,8,23,94,25,7
+170,move,"move 26 6",3,1243,188,-1,30,25,97,8,23,91,26,6
+171,move,"move 7 22",2,1247,185,-1,30,25,97,7,22,88,26,6
+172,move,"move 25 5",3,1251,182,-1,30,25,97,7,22,85,25,5
+173,move,"move 7 21",2,1255,179,-1,30,25,97,7,21,82,25,5
+174,move,"move 25 4",3,1259,176,-1,30,25,97,7,21,79,25,4
+175,dig,"dig 7 20",2,1265,173,-1,30,25,97,7,21,76,25,4
+176,move,"move 24 5",3,1269,170,-1,30,25,97,7,21,73,24,5
+177,move,"move 6 20",2,1273,167,-1,30,25,97,6,20,70,24,5
+178,dig,"dig 23 6",3,1279,164,-1,30,25,97,6,20,67,24,5
+179,dig,"dig 7 19",2,1285,161,-1,30,25,97,6,20,64,24,5
+180,move,"move 24 4",3,1289,158,-1,30,25,97,6,20,61,24,4
+181,move,"move 6 21",2,1293,155,-1,30,25,97,6,21,58,24,4
+182,move,"move 23 3",3,1297,152,-1,30,25,97,6,21,55,23,3
+183,move,"move 6 20",2,1301,149,-1,30,25,97,6,20,52,23,3
+184,dig,"dig 22 3",3,1307,146,-1,30,25,97,6,20,49,23,3
+185,move,"move 7 21",2,1311,143,-1,30,25,97,7,21,46,23,3
+186,dig,"dig 23 2",3,1317,140,-1,30,25,97,7,21,43,23,3
+187,move,"move 8 21",2,1321,137,-1,30,25,97,8,21,40,23,3
+188,move,"move 23 2",3,1325,134,-1,30,25,97,8,21,37,23,2
+189,move,"move 7 21",2,1329,131,-1,30,25,97,7,21,34,23,2
+190,dig,"dig 24 1",3,1335,128,-1,30,25,97,7,21,31,23,2
+191,move,"move 7 20",2,1339,125,-1,30,25,97,7,20,28,23,2
+192,move,"move 23 1",3,1343,122,-1,30,25,97,7,20,25,23,1
+193,move,"move 7 19",2,1347,119,-1,30,25,97,7,19,22,23,1
+194,dig,"dig 24 2",3,1353,116,-1,30,25,97,7,19,19,23,1
+195,dig,"dig 7 18",2,1359,113,-1,30,25,97,7,19,16,23,1
+196,dig,"dig 22 2",3,1365,110,-1,30,25,97,7,19,13,23,1
+197,dig,"dig 8 18",2,1371,107,-1,30,25,97,7,19,10,23,1
+198,move,"move 23 2",3,1375,104,-1,30,25,97,7,19,7,23,2
+199,move,"move 6 18",2,1379,101,-1,30,25,97,6,18,4,23,2
+200,move,"move 23 1",3,1383,98,-1,30,25,97,6,18,1,23,1
+201,dig,"dig 7 17",2,1390,97,-1,30,25,97,6,18,-2,23,1
+202,move,"move 7 17",2,1395,97,-1,30,25,97,7,17,-2,23,1
+203,dig,"dig 7 16",2,1402,97,-1,30,25,97,7,17,-2,23,1
+204,dig,"dig 8 17",2,1409,97,-1,30,25,97,7,17,-2,23,1
+205,move,"move 8 17",2,1414,97,-1,30,25,97,8,17,-2,23,1
+206,move,"move 8 18",2,1419,97,-1,30,25,97,8,18,-2,23,1
+207,dig,"dig 9 17",2,1426,97,-1,30,25,97,8,18,-2,23,1
+208,move,"move 9 18",2,1431,97,-1,30,25,97,9,18,-2,23,1
+209,dig,"dig 10 17",2,1438,97,-1,30,25,97,9,18,-2,23,1
+210,dig,"dig 10 18",2,1445,97,-1,30,25,97,9,18,-2,23,1
+211,move,"move 10 17",2,1450,97,-1,30,25,97,10,17,-2,23,1
+212,dig,"dig 11 16",2,1457,97,-1,30,25,97,10,17,-2,23,1
+213,dig,"dig 10 16",2,1464,97,-1,30,25,97,10,17,-2,23,1
+214,dig,"dig 11 17",2,1471,97,-1,30,25,97,10,17,-2,23,1
+215,dig,"dig 9 16",2,1478,97,-1,30,25,97,10,17,-2,23,1
+216,move,"move 9 16",2,1483,97,-1,30,25,97,9,16,-2,23,1
+217,dig,"dig 8 16",2,1490,97,-1,30,25,97,9,16,-2,23,1
+218,dig,"dig 10 15",2,1497,97,-1,30,25,97,9,16,-2,23,1
+219,move,"move 10 15",2,1502,97,-1,30,25,97,10,15,-2,23,1
+220,dig,"dig 11 14",2,1509,97,-1,30,25,97,10,15,-2,23,1
+221,dig,"dig 10 14",2,1516,97,-1,30,25,97,10,15,-2,23,1
+222,move,"move 11 14",2,1521,97,-1,30,25,97,11,14,-2,23,1
+223,dig,"dig 12 14",2,1528,97,-1,30,25,97,11,14,-2,23,1
+224,dig,"dig 11 13",2,1535,97,-1,30,25,97,11,14,-2,23,1
+225,dig,"dig 12 13",2,1542,97,-1,30,25,97,11,14,-2,23,1
+226,move,"move 10 14",2,1547,97,-1,30,25,97,10,14,-2,23,1
+227,move,"move 9 13",2,1552,97,-1,30,25,97,9,13,-2,23,1
+228,dig,"dig 8 14",2,1559,97,-1,30,25,97,9,13,-2,23,1
+229,move,"move 10 13",2,1564,97,-1,30,25,97,10,13,-2,23,1
+230,move,"move 11 14",2,1569,97,-1,30,25,97,11,14,-2,23,1
+231,move,"move 10 13",2,1574,97,-1,30,25,97,10,13,-2,23,1
+232,move,"move 10 14",2,1579,97,-1,30,25,97,10,14,-2,23,1
+233,move,"move 11 14",2,1584,97,-1,30,25,97,11,14,-2,23,1
+234,move,"move 12 13",2,1589,97,-1,30,25,97,12,13,-2,23,1
+235,move,"move 11 12",2,1594,97,-1,30,25,97,11,12,-2,23,1
+236,dig,"dig 12 11",2,1601,97,-1,30,25,97,11,12,-2,23,1
+237,move,"move 10 13",2,1606,97,-1,30,25,97,10,13,-2,23,1
+238,move,"move 9 13",2,1611,97,-1,30,25,97,9,13,-2,23,1
+239,move,"move 10 13",2,1616,97,-1,30,25,97,10,13,-2,23,1
+240,move,"move 9 13",2,1621,97,-1,30,25,97,9,13,-2,23,1
+241,move,"move 10 13",2,1626,97,-1,30,25,97,10,13,-2,23,1
+242,move,"move 9 13",2,1631,97,-1,30,25,97,9,13,-2,23,1
+243,move,"move 8 12",2,1636,97,-1,30,25,97,8,12,-2,23,1
+244,move,"move 9 13",2,1640,94,-1,30,25,94,9,13,-2,23,1
+245,move,"move 9 14",2,1645,94,-1,30,25,94,9,14,-2,23,1
+246,move,"move 8 15",2,1650,94,-1,30,25,94,8,15,-2,23,1
+247,move,"move 9 15",2,1654,91,-1,30,25,91,9,15,-2,23,1
+248,move,"move 8 14",2,1659,91,-1,30,25,91,8,14,-2,23,1
+249,move,"move 7 15",2,1663,88,-1,30,25,88,7,15,-2,23,1
+250,move,"move 8 16",2,1667,85,-1,30,25,85,8,16,-2,23,1
+251,move,"move 8 17",2,1671,82,-1,30,25,82,8,17,-2,23,1
+252,move,"move 7 17",2,1675,79,-1,30,25,79,7,17,-2,23,1
+253,move,"move 8 18",2,1679,76,-1,30,25,76,8,18,-2,23,1
+254,move,"move 7 19",2,1683,73,-1,30,25,73,7,19,-2,23,1
+255,move,"move 7 20",2,1687,70,-1,30,25,70,7,20,-2,23,1
+256,move,"move 6 20",2,1691,67,-1,30,25,67,6,20,-2,23,1
+257,move,"move 7 21",2,1695,64,-1,30,25,64,7,21,-2,23,1
+258,move,"move 6 20",2,1699,61,-1,30,25,61,6,20,-2,23,1
+259,shoot,"shoot NE",2,1714,58,-1,30,25,58,6,20,-2,23,1
+260,move,"move 5 21",2,1718,55,-1,30,25,55,5,21,-2,23,1
+261,move,"move 4 20",2,1722,52,-1,30,25,52,4,20,-2,23,1
+262,move,"move 3 21",2,1726,49,-1,30,25,49,3,21,-2,23,1
+263,move,"move 4 22",2,1730,46,-1,30,25,46,4,22,-2,23,1
+264,move,"move 3 23",2,1734,43,-1,30,25,43,3,23,-2,23,1
+265,dig,"dig 4 24",2,1740,40,-1,30,25,40,3,23,-2,23,1
+266,move,"move 4 22",2,1744,37,-1,30,25,37,4,22,-2,23,1
+267,move,"move 3 23",2,1748,34,-1,30,25,34,3,23,-2,23,1
+268,move,"move 2 23",2,1752,31,-1,30,25,31,2,23,-2,23,1
+269,dig,"dig 1 24",2,1758,28,-1,30,25,28,2,23,-2,23,1
+270,move,"move 3 24",2,1762,25,-1,30,25,25,3,24,-2,23,1
+271,dig,"dig 3 25",2,1768,22,-1,30,25,22,3,24,-2,23,1
+272,dig,"dig 4 25",2,1774,19,-1,30,25,19,3,24,-2,23,1
+273,dig,"dig 2 25",2,1780,16,-1,30,25,16,3,24,-2,23,1
diff --git a/tests/replays/2019.08.07.14.25.37/B-init.json b/tests/replays/2019.08.07.14.25.37/B-init.json
new file mode 100644
index 0000000..1f60b62
--- /dev/null
+++ b/tests/replays/2019.08.07.14.25.37/B-init.json
@@ -0,0 +1 @@
+{"currentRound":1,"maxRounds":400,"pushbackDamage":20,"lavaDamage":3,"mapSize":33,"currentWormId":1,"consecutiveDoNothingCount":0,"myPlayer":{"id":2,"score":116,"health":350,"currentWormId":1,"remainingWormSelections":5,"previousCommand":"nothing","worms":[{"id":1,"health":150,"position":{"x":31,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Commando"},{"id":2,"health":100,"position":{"x":8,"y":28},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Agent"},{"id":3,"health":100,"position":{"x":8,"y":4},"weapon":{"damage":8,"range":4},"snowballs":{"freezeDuration":5,"range":5,"count":3,"freezeRadius":1},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Technologist"}]},"opponents":[{"id":1,"score":116,"currentWormId":1,"remainingWormSelections":5,"previousCommand":"nothing","worms":[{"id":1,"health":150,"position":{"x":24,"y":28},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Commando"},{"id":2,"health":100,"position":{"x":1,"y":16},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Agent"},{"id":3,"health":100,"position":{"x":24,"y":4},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Technologist"}]}],"map":[[{"x":0,"y":0,"type":"DEEP_SPACE"},{"x":1,"y":0,"type":"DEEP_SPACE"},{"x":2,"y":0,"type":"DEEP_SPACE"},{"x":3,"y":0,"type":"DEEP_SPACE"},{"x":4,"y":0,"type":"DEEP_SPACE"},{"x":5,"y":0,"type":"DEEP_SPACE"},{"x":6,"y":0,"type":"DEEP_SPACE"},{"x":7,"y":0,"type":"DEEP_SPACE"},{"x":8,"y":0,"type":"DEEP_SPACE"},{"x":9,"y":0,"type":"DEEP_SPACE"},{"x":10,"y":0,"type":"DEEP_SPACE"},{"x":11,"y":0,"type":"AIR"},{"x":12,"y":0,"type":"AIR"},{"x":13,"y":0,"type":"AIR"},{"x":14,"y":0,"type":"DIRT"},{"x":15,"y":0,"type":"DIRT"},{"x":16,"y":0,"type":"DIRT"},{"x":17,"y":0,"type":"DIRT"},{"x":18,"y":0,"type":"DIRT"},{"x":19,"y":0,"type":"AIR"},{"x":20,"y":0,"type":"AIR"},{"x":21,"y":0,"type":"AIR"},{"x":22,"y":0,"type":"DEEP_SPACE"},{"x":23,"y":0,"type":"DEEP_SPACE"},{"x":24,"y":0,"type":"DEEP_SPACE"},{"x":25,"y":0,"type":"DEEP_SPACE"},{"x":26,"y":0,"type":"DEEP_SPACE"},{"x":27,"y":0,"type":"DEEP_SPACE"},{"x":28,"y":0,"type":"DEEP_SPACE"},{"x":29,"y":0,"type":"DEEP_SPACE"},{"x":30,"y":0,"type":"DEEP_SPACE"},{"x":31,"y":0,"type":"DEEP_SPACE"},{"x":32,"y":0,"type":"DEEP_SPACE"}],[{"x":0,"y":1,"type":"DEEP_SPACE"},{"x":1,"y":1,"type":"DEEP_SPACE"},{"x":2,"y":1,"type":"DEEP_SPACE"},{"x":3,"y":1,"type":"DEEP_SPACE"},{"x":4,"y":1,"type":"DEEP_SPACE"},{"x":5,"y":1,"type":"DEEP_SPACE"},{"x":6,"y":1,"type":"DEEP_SPACE"},{"x":7,"y":1,"type":"DEEP_SPACE"},{"x":8,"y":1,"type":"DIRT"},{"x":9,"y":1,"type":"AIR"},{"x":10,"y":1,"type":"AIR"},{"x":11,"y":1,"type":"AIR"},{"x":12,"y":1,"type":"AIR"},{"x":13,"y":1,"type":"AIR"},{"x":14,"y":1,"type":"DIRT"},{"x":15,"y":1,"type":"DIRT"},{"x":16,"y":1,"type":"DIRT"},{"x":17,"y":1,"type":"DIRT"},{"x":18,"y":1,"type":"DIRT"},{"x":19,"y":1,"type":"AIR"},{"x":20,"y":1,"type":"AIR"},{"x":21,"y":1,"type":"AIR"},{"x":22,"y":1,"type":"AIR"},{"x":23,"y":1,"type":"AIR"},{"x":24,"y":1,"type":"DIRT"},{"x":25,"y":1,"type":"DEEP_SPACE"},{"x":26,"y":1,"type":"DEEP_SPACE"},{"x":27,"y":1,"type":"DEEP_SPACE"},{"x":28,"y":1,"type":"DEEP_SPACE"},{"x":29,"y":1,"type":"DEEP_SPACE"},{"x":30,"y":1,"type":"DEEP_SPACE"},{"x":31,"y":1,"type":"DEEP_SPACE"},{"x":32,"y":1,"type":"DEEP_SPACE"}],[{"x":0,"y":2,"type":"DEEP_SPACE"},{"x":1,"y":2,"type":"DEEP_SPACE"},{"x":2,"y":2,"type":"DEEP_SPACE"},{"x":3,"y":2,"type":"DEEP_SPACE"},{"x":4,"y":2,"type":"DEEP_SPACE"},{"x":5,"y":2,"type":"DEEP_SPACE"},{"x":6,"y":2,"type":"DEEP_SPACE"},{"x":7,"y":2,"type":"DIRT"},{"x":8,"y":2,"type":"DIRT"},{"x":9,"y":2,"type":"DIRT"},{"x":10,"y":2,"type":"DIRT"},{"x":11,"y":2,"type":"AIR"},{"x":12,"y":2,"type":"AIR"},{"x":13,"y":2,"type":"DIRT"},{"x":14,"y":2,"type":"DIRT"},{"x":15,"y":2,"type":"AIR"},{"x":16,"y":2,"type":"AIR"},{"x":17,"y":2,"type":"AIR"},{"x":18,"y":2,"type":"DIRT"},{"x":19,"y":2,"type":"DIRT"},{"x":20,"y":2,"type":"AIR"},{"x":21,"y":2,"type":"AIR"},{"x":22,"y":2,"type":"DIRT"},{"x":23,"y":2,"type":"DIRT"},{"x":24,"y":2,"type":"DIRT"},{"x":25,"y":2,"type":"DIRT"},{"x":26,"y":2,"type":"DEEP_SPACE"},{"x":27,"y":2,"type":"DEEP_SPACE"},{"x":28,"y":2,"type":"DEEP_SPACE"},{"x":29,"y":2,"type":"DEEP_SPACE"},{"x":30,"y":2,"type":"DEEP_SPACE"},{"x":31,"y":2,"type":"DEEP_SPACE"},{"x":32,"y":2,"type":"DEEP_SPACE"}],[{"x":0,"y":3,"type":"DEEP_SPACE"},{"x":1,"y":3,"type":"DEEP_SPACE"},{"x":2,"y":3,"type":"DEEP_SPACE"},{"x":3,"y":3,"type":"DEEP_SPACE"},{"x":4,"y":3,"type":"DEEP_SPACE"},{"x":5,"y":3,"type":"DEEP_SPACE"},{"x":6,"y":3,"type":"DIRT"},{"x":7,"y":3,"type":"AIR"},{"x":8,"y":3,"type":"AIR"},{"x":9,"y":3,"type":"AIR"},{"x":10,"y":3,"type":"DIRT"},{"x":11,"y":3,"type":"AIR"},{"x":12,"y":3,"type":"AIR"},{"x":13,"y":3,"type":"DIRT"},{"x":14,"y":3,"type":"DIRT"},{"x":15,"y":3,"type":"AIR"},{"x":16,"y":3,"type":"DIRT"},{"x":17,"y":3,"type":"AIR"},{"x":18,"y":3,"type":"DIRT"},{"x":19,"y":3,"type":"DIRT"},{"x":20,"y":3,"type":"AIR"},{"x":21,"y":3,"type":"AIR"},{"x":22,"y":3,"type":"DIRT"},{"x":23,"y":3,"type":"AIR"},{"x":24,"y":3,"type":"AIR"},{"x":25,"y":3,"type":"AIR"},{"x":26,"y":3,"type":"DIRT"},{"x":27,"y":3,"type":"DEEP_SPACE"},{"x":28,"y":3,"type":"DEEP_SPACE"},{"x":29,"y":3,"type":"DEEP_SPACE"},{"x":30,"y":3,"type":"DEEP_SPACE"},{"x":31,"y":3,"type":"DEEP_SPACE"},{"x":32,"y":3,"type":"DEEP_SPACE"}],[{"x":0,"y":4,"type":"DEEP_SPACE"},{"x":1,"y":4,"type":"DEEP_SPACE"},{"x":2,"y":4,"type":"DEEP_SPACE"},{"x":3,"y":4,"type":"DEEP_SPACE"},{"x":4,"y":4,"type":"DIRT"},{"x":5,"y":4,"type":"DIRT"},{"x":6,"y":4,"type":"DIRT"},{"x":7,"y":4,"type":"AIR"},{"x":8,"y":4,"type":"AIR","occupier":{"id":3,"playerId":2,"health":100,"position":{"x":8,"y":4},"weapon":{"damage":8,"range":4},"snowballs":{"freezeDuration":5,"range":5,"count":3,"freezeRadius":1},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Technologist"}},{"x":9,"y":4,"type":"AIR"},{"x":10,"y":4,"type":"DIRT"},{"x":11,"y":4,"type":"AIR"},{"x":12,"y":4,"type":"AIR"},{"x":13,"y":4,"type":"DIRT"},{"x":14,"y":4,"type":"DIRT"},{"x":15,"y":4,"type":"DIRT"},{"x":16,"y":4,"type":"DIRT"},{"x":17,"y":4,"type":"DIRT"},{"x":18,"y":4,"type":"DIRT"},{"x":19,"y":4,"type":"DIRT"},{"x":20,"y":4,"type":"AIR"},{"x":21,"y":4,"type":"AIR"},{"x":22,"y":4,"type":"DIRT"},{"x":23,"y":4,"type":"AIR"},{"x":24,"y":4,"type":"AIR","occupier":{"id":3,"playerId":1,"health":100,"position":{"x":24,"y":4},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Technologist"}},{"x":25,"y":4,"type":"AIR"},{"x":26,"y":4,"type":"DIRT"},{"x":27,"y":4,"type":"DIRT"},{"x":28,"y":4,"type":"DIRT"},{"x":29,"y":4,"type":"DEEP_SPACE"},{"x":30,"y":4,"type":"DEEP_SPACE"},{"x":31,"y":4,"type":"DEEP_SPACE"},{"x":32,"y":4,"type":"DEEP_SPACE"}],[{"x":0,"y":5,"type":"DEEP_SPACE"},{"x":1,"y":5,"type":"DEEP_SPACE"},{"x":2,"y":5,"type":"DEEP_SPACE"},{"x":3,"y":5,"type":"DEEP_SPACE"},{"x":4,"y":5,"type":"DIRT"},{"x":5,"y":5,"type":"DIRT"},{"x":6,"y":5,"type":"DIRT"},{"x":7,"y":5,"type":"AIR"},{"x":8,"y":5,"type":"AIR"},{"x":9,"y":5,"type":"AIR"},{"x":10,"y":5,"type":"DIRT"},{"x":11,"y":5,"type":"DIRT"},{"x":12,"y":5,"type":"DIRT"},{"x":13,"y":5,"type":"DIRT"},{"x":14,"y":5,"type":"DIRT"},{"x":15,"y":5,"type":"DIRT"},{"x":16,"y":5,"type":"DIRT"},{"x":17,"y":5,"type":"DIRT"},{"x":18,"y":5,"type":"DIRT"},{"x":19,"y":5,"type":"DIRT"},{"x":20,"y":5,"type":"DIRT"},{"x":21,"y":5,"type":"DIRT"},{"x":22,"y":5,"type":"DIRT"},{"x":23,"y":5,"type":"AIR"},{"x":24,"y":5,"type":"AIR"},{"x":25,"y":5,"type":"AIR"},{"x":26,"y":5,"type":"DIRT"},{"x":27,"y":5,"type":"DIRT"},{"x":28,"y":5,"type":"DIRT"},{"x":29,"y":5,"type":"DEEP_SPACE"},{"x":30,"y":5,"type":"DEEP_SPACE"},{"x":31,"y":5,"type":"DEEP_SPACE"},{"x":32,"y":5,"type":"DEEP_SPACE"}],[{"x":0,"y":6,"type":"DEEP_SPACE"},{"x":1,"y":6,"type":"DEEP_SPACE"},{"x":2,"y":6,"type":"DEEP_SPACE"},{"x":3,"y":6,"type":"DIRT"},{"x":4,"y":6,"type":"AIR"},{"x":5,"y":6,"type":"AIR"},{"x":6,"y":6,"type":"DIRT"},{"x":7,"y":6,"type":"DIRT"},{"x":8,"y":6,"type":"DIRT"},{"x":9,"y":6,"type":"DIRT"},{"x":10,"y":6,"type":"DIRT"},{"x":11,"y":6,"type":"DIRT"},{"x":12,"y":6,"type":"DIRT"},{"x":13,"y":6,"type":"DIRT"},{"x":14,"y":6,"type":"AIR"},{"x":15,"y":6,"type":"AIR"},{"x":16,"y":6,"type":"AIR"},{"x":17,"y":6,"type":"AIR"},{"x":18,"y":6,"type":"AIR"},{"x":19,"y":6,"type":"DIRT"},{"x":20,"y":6,"type":"DIRT"},{"x":21,"y":6,"type":"DIRT"},{"x":22,"y":6,"type":"DIRT"},{"x":23,"y":6,"type":"DIRT"},{"x":24,"y":6,"type":"DIRT"},{"x":25,"y":6,"type":"DIRT"},{"x":26,"y":6,"type":"DIRT"},{"x":27,"y":6,"type":"AIR"},{"x":28,"y":6,"type":"AIR"},{"x":29,"y":6,"type":"DIRT"},{"x":30,"y":6,"type":"DEEP_SPACE"},{"x":31,"y":6,"type":"DEEP_SPACE"},{"x":32,"y":6,"type":"DEEP_SPACE"}],[{"x":0,"y":7,"type":"DEEP_SPACE"},{"x":1,"y":7,"type":"DEEP_SPACE"},{"x":2,"y":7,"type":"AIR"},{"x":3,"y":7,"type":"DIRT"},{"x":4,"y":7,"type":"AIR"},{"x":5,"y":7,"type":"AIR"},{"x":6,"y":7,"type":"DIRT"},{"x":7,"y":7,"type":"DIRT"},{"x":8,"y":7,"type":"DIRT"},{"x":9,"y":7,"type":"DIRT"},{"x":10,"y":7,"type":"DIRT"},{"x":11,"y":7,"type":"DIRT"},{"x":12,"y":7,"type":"DIRT"},{"x":13,"y":7,"type":"DIRT"},{"x":14,"y":7,"type":"AIR"},{"x":15,"y":7,"type":"AIR"},{"x":16,"y":7,"type":"DIRT"},{"x":17,"y":7,"type":"AIR"},{"x":18,"y":7,"type":"AIR"},{"x":19,"y":7,"type":"DIRT"},{"x":20,"y":7,"type":"DIRT"},{"x":21,"y":7,"type":"DIRT"},{"x":22,"y":7,"type":"DIRT"},{"x":23,"y":7,"type":"DIRT"},{"x":24,"y":7,"type":"DIRT"},{"x":25,"y":7,"type":"DIRT"},{"x":26,"y":7,"type":"DIRT"},{"x":27,"y":7,"type":"AIR"},{"x":28,"y":7,"type":"AIR"},{"x":29,"y":7,"type":"DIRT"},{"x":30,"y":7,"type":"AIR"},{"x":31,"y":7,"type":"DEEP_SPACE"},{"x":32,"y":7,"type":"DEEP_SPACE"}],[{"x":0,"y":8,"type":"DEEP_SPACE"},{"x":1,"y":8,"type":"DIRT"},{"x":2,"y":8,"type":"DIRT"},{"x":3,"y":8,"type":"DIRT"},{"x":4,"y":8,"type":"DIRT"},{"x":5,"y":8,"type":"AIR"},{"x":6,"y":8,"type":"DIRT"},{"x":7,"y":8,"type":"DIRT"},{"x":8,"y":8,"type":"AIR"},{"x":9,"y":8,"type":"DIRT"},{"x":10,"y":8,"type":"DIRT"},{"x":11,"y":8,"type":"DIRT"},{"x":12,"y":8,"type":"DIRT"},{"x":13,"y":8,"type":"DIRT"},{"x":14,"y":8,"type":"DIRT"},{"x":15,"y":8,"type":"AIR"},{"x":16,"y":8,"type":"DIRT"},{"x":17,"y":8,"type":"AIR"},{"x":18,"y":8,"type":"DIRT"},{"x":19,"y":8,"type":"DIRT"},{"x":20,"y":8,"type":"DIRT"},{"x":21,"y":8,"type":"DIRT"},{"x":22,"y":8,"type":"DIRT"},{"x":23,"y":8,"type":"DIRT"},{"x":24,"y":8,"type":"AIR"},{"x":25,"y":8,"type":"DIRT"},{"x":26,"y":8,"type":"DIRT"},{"x":27,"y":8,"type":"AIR"},{"x":28,"y":8,"type":"DIRT"},{"x":29,"y":8,"type":"DIRT"},{"x":30,"y":8,"type":"DIRT"},{"x":31,"y":8,"type":"DIRT"},{"x":32,"y":8,"type":"DEEP_SPACE"}],[{"x":0,"y":9,"type":"DEEP_SPACE"},{"x":1,"y":9,"type":"DIRT"},{"x":2,"y":9,"type":"DIRT"},{"x":3,"y":9,"type":"AIR"},{"x":4,"y":9,"type":"AIR"},{"x":5,"y":9,"type":"AIR"},{"x":6,"y":9,"type":"AIR"},{"x":7,"y":9,"type":"DIRT"},{"x":8,"y":9,"type":"AIR"},{"x":9,"y":9,"type":"AIR"},{"x":10,"y":9,"type":"DIRT"},{"x":11,"y":9,"type":"DIRT"},{"x":12,"y":9,"type":"DIRT"},{"x":13,"y":9,"type":"DIRT"},{"x":14,"y":9,"type":"DIRT"},{"x":15,"y":9,"type":"DIRT"},{"x":16,"y":9,"type":"AIR"},{"x":17,"y":9,"type":"DIRT"},{"x":18,"y":9,"type":"DIRT"},{"x":19,"y":9,"type":"DIRT"},{"x":20,"y":9,"type":"DIRT"},{"x":21,"y":9,"type":"DIRT"},{"x":22,"y":9,"type":"DIRT"},{"x":23,"y":9,"type":"AIR"},{"x":24,"y":9,"type":"AIR"},{"x":25,"y":9,"type":"DIRT"},{"x":26,"y":9,"type":"AIR"},{"x":27,"y":9,"type":"AIR"},{"x":28,"y":9,"type":"AIR"},{"x":29,"y":9,"type":"AIR"},{"x":30,"y":9,"type":"DIRT"},{"x":31,"y":9,"type":"DIRT"},{"x":32,"y":9,"type":"DEEP_SPACE"}],[{"x":0,"y":10,"type":"DEEP_SPACE"},{"x":1,"y":10,"type":"DIRT"},{"x":2,"y":10,"type":"DIRT"},{"x":3,"y":10,"type":"DIRT"},{"x":4,"y":10,"type":"AIR"},{"x":5,"y":10,"type":"AIR"},{"x":6,"y":10,"type":"DIRT"},{"x":7,"y":10,"type":"DIRT"},{"x":8,"y":10,"type":"AIR"},{"x":9,"y":10,"type":"AIR"},{"x":10,"y":10,"type":"DIRT"},{"x":11,"y":10,"type":"DIRT"},{"x":12,"y":10,"type":"DIRT"},{"x":13,"y":10,"type":"DIRT"},{"x":14,"y":10,"type":"DIRT"},{"x":15,"y":10,"type":"DIRT"},{"x":16,"y":10,"type":"AIR"},{"x":17,"y":10,"type":"DIRT"},{"x":18,"y":10,"type":"DIRT"},{"x":19,"y":10,"type":"DIRT"},{"x":20,"y":10,"type":"DIRT"},{"x":21,"y":10,"type":"DIRT"},{"x":22,"y":10,"type":"DIRT"},{"x":23,"y":10,"type":"AIR"},{"x":24,"y":10,"type":"AIR"},{"x":25,"y":10,"type":"DIRT"},{"x":26,"y":10,"type":"DIRT"},{"x":27,"y":10,"type":"AIR"},{"x":28,"y":10,"type":"AIR"},{"x":29,"y":10,"type":"DIRT"},{"x":30,"y":10,"type":"DIRT"},{"x":31,"y":10,"type":"DIRT"},{"x":32,"y":10,"type":"DEEP_SPACE"}],[{"x":0,"y":11,"type":"AIR"},{"x":1,"y":11,"type":"AIR"},{"x":2,"y":11,"type":"DIRT"},{"x":3,"y":11,"type":"DIRT"},{"x":4,"y":11,"type":"DIRT"},{"x":5,"y":11,"type":"DIRT"},{"x":6,"y":11,"type":"DIRT"},{"x":7,"y":11,"type":"DIRT"},{"x":8,"y":11,"type":"AIR"},{"x":9,"y":11,"type":"AIR"},{"x":10,"y":11,"type":"AIR"},{"x":11,"y":11,"type":"AIR"},{"x":12,"y":11,"type":"DIRT"},{"x":13,"y":11,"type":"AIR"},{"x":14,"y":11,"type":"AIR"},{"x":15,"y":11,"type":"AIR"},{"x":16,"y":11,"type":"AIR"},{"x":17,"y":11,"type":"AIR"},{"x":18,"y":11,"type":"AIR"},{"x":19,"y":11,"type":"AIR"},{"x":20,"y":11,"type":"DIRT"},{"x":21,"y":11,"type":"AIR"},{"x":22,"y":11,"type":"AIR"},{"x":23,"y":11,"type":"AIR"},{"x":24,"y":11,"type":"AIR"},{"x":25,"y":11,"type":"DIRT"},{"x":26,"y":11,"type":"DIRT"},{"x":27,"y":11,"type":"DIRT"},{"x":28,"y":11,"type":"DIRT"},{"x":29,"y":11,"type":"DIRT"},{"x":30,"y":11,"type":"DIRT"},{"x":31,"y":11,"type":"AIR"},{"x":32,"y":11,"type":"AIR"}],[{"x":0,"y":12,"type":"AIR"},{"x":1,"y":12,"type":"AIR"},{"x":2,"y":12,"type":"DIRT"},{"x":3,"y":12,"type":"AIR"},{"x":4,"y":12,"type":"AIR"},{"x":5,"y":12,"type":"DIRT"},{"x":6,"y":12,"type":"DIRT"},{"x":7,"y":12,"type":"DIRT"},{"x":8,"y":12,"type":"AIR"},{"x":9,"y":12,"type":"AIR"},{"x":10,"y":12,"type":"AIR"},{"x":11,"y":12,"type":"AIR"},{"x":12,"y":12,"type":"AIR"},{"x":13,"y":12,"type":"AIR"},{"x":14,"y":12,"type":"AIR"},{"x":15,"y":12,"type":"AIR"},{"x":16,"y":12,"type":"AIR"},{"x":17,"y":12,"type":"AIR"},{"x":18,"y":12,"type":"AIR"},{"x":19,"y":12,"type":"AIR"},{"x":20,"y":12,"type":"AIR"},{"x":21,"y":12,"type":"AIR"},{"x":22,"y":12,"type":"AIR"},{"x":23,"y":12,"type":"AIR"},{"x":24,"y":12,"type":"AIR"},{"x":25,"y":12,"type":"DIRT"},{"x":26,"y":12,"type":"DIRT"},{"x":27,"y":12,"type":"DIRT"},{"x":28,"y":12,"type":"AIR"},{"x":29,"y":12,"type":"AIR"},{"x":30,"y":12,"type":"DIRT"},{"x":31,"y":12,"type":"AIR"},{"x":32,"y":12,"type":"AIR"}],[{"x":0,"y":13,"type":"AIR"},{"x":1,"y":13,"type":"AIR"},{"x":2,"y":13,"type":"DIRT"},{"x":3,"y":13,"type":"DIRT"},{"x":4,"y":13,"type":"AIR"},{"x":5,"y":13,"type":"DIRT"},{"x":6,"y":13,"type":"DIRT"},{"x":7,"y":13,"type":"DIRT"},{"x":8,"y":13,"type":"DIRT"},{"x":9,"y":13,"type":"AIR"},{"x":10,"y":13,"type":"AIR"},{"x":11,"y":13,"type":"DIRT"},{"x":12,"y":13,"type":"DIRT"},{"x":13,"y":13,"type":"AIR"},{"x":14,"y":13,"type":"AIR"},{"x":15,"y":13,"type":"AIR"},{"x":16,"y":13,"type":"AIR"},{"x":17,"y":13,"type":"AIR"},{"x":18,"y":13,"type":"AIR"},{"x":19,"y":13,"type":"AIR"},{"x":20,"y":13,"type":"DIRT"},{"x":21,"y":13,"type":"DIRT"},{"x":22,"y":13,"type":"AIR"},{"x":23,"y":13,"type":"AIR"},{"x":24,"y":13,"type":"DIRT"},{"x":25,"y":13,"type":"DIRT"},{"x":26,"y":13,"type":"DIRT"},{"x":27,"y":13,"type":"DIRT"},{"x":28,"y":13,"type":"AIR"},{"x":29,"y":13,"type":"DIRT"},{"x":30,"y":13,"type":"DIRT"},{"x":31,"y":13,"type":"AIR"},{"x":32,"y":13,"type":"AIR"}],[{"x":0,"y":14,"type":"DIRT"},{"x":1,"y":14,"type":"DIRT"},{"x":2,"y":14,"type":"DIRT"},{"x":3,"y":14,"type":"DIRT"},{"x":4,"y":14,"type":"DIRT"},{"x":5,"y":14,"type":"DIRT"},{"x":6,"y":14,"type":"DIRT"},{"x":7,"y":14,"type":"DIRT"},{"x":8,"y":14,"type":"DIRT"},{"x":9,"y":14,"type":"AIR"},{"x":10,"y":14,"type":"DIRT"},{"x":11,"y":14,"type":"DIRT"},{"x":12,"y":14,"type":"DIRT"},{"x":13,"y":14,"type":"DIRT"},{"x":14,"y":14,"type":"DIRT"},{"x":15,"y":14,"type":"DIRT"},{"x":16,"y":14,"type":"AIR"},{"x":17,"y":14,"type":"DIRT"},{"x":18,"y":14,"type":"DIRT"},{"x":19,"y":14,"type":"DIRT"},{"x":20,"y":14,"type":"DIRT"},{"x":21,"y":14,"type":"DIRT"},{"x":22,"y":14,"type":"DIRT"},{"x":23,"y":14,"type":"AIR"},{"x":24,"y":14,"type":"DIRT"},{"x":25,"y":14,"type":"DIRT"},{"x":26,"y":14,"type":"DIRT"},{"x":27,"y":14,"type":"DIRT"},{"x":28,"y":14,"type":"DIRT"},{"x":29,"y":14,"type":"DIRT"},{"x":30,"y":14,"type":"DIRT"},{"x":31,"y":14,"type":"DIRT"},{"x":32,"y":14,"type":"DIRT"}],[{"x":0,"y":15,"type":"AIR"},{"x":1,"y":15,"type":"AIR"},{"x":2,"y":15,"type":"AIR"},{"x":3,"y":15,"type":"DIRT"},{"x":4,"y":15,"type":"DIRT"},{"x":5,"y":15,"type":"AIR"},{"x":6,"y":15,"type":"AIR"},{"x":7,"y":15,"type":"AIR"},{"x":8,"y":15,"type":"AIR"},{"x":9,"y":15,"type":"AIR"},{"x":10,"y":15,"type":"DIRT"},{"x":11,"y":15,"type":"AIR"},{"x":12,"y":15,"type":"AIR"},{"x":13,"y":15,"type":"AIR"},{"x":14,"y":15,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":15,"y":15,"type":"DIRT"},{"x":16,"y":15,"type":"AIR"},{"x":17,"y":15,"type":"DIRT"},{"x":18,"y":15,"type":"DIRT"},{"x":19,"y":15,"type":"AIR"},{"x":20,"y":15,"type":"AIR"},{"x":21,"y":15,"type":"AIR"},{"x":22,"y":15,"type":"DIRT"},{"x":23,"y":15,"type":"AIR"},{"x":24,"y":15,"type":"AIR"},{"x":25,"y":15,"type":"AIR"},{"x":26,"y":15,"type":"AIR"},{"x":27,"y":15,"type":"AIR"},{"x":28,"y":15,"type":"DIRT"},{"x":29,"y":15,"type":"DIRT"},{"x":30,"y":15,"type":"AIR"},{"x":31,"y":15,"type":"AIR"},{"x":32,"y":15,"type":"AIR"}],[{"x":0,"y":16,"type":"AIR"},{"x":1,"y":16,"type":"AIR","occupier":{"id":2,"playerId":1,"health":100,"position":{"x":1,"y":16},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Agent"}},{"x":2,"y":16,"type":"AIR"},{"x":3,"y":16,"type":"DIRT"},{"x":4,"y":16,"type":"AIR"},{"x":5,"y":16,"type":"AIR"},{"x":6,"y":16,"type":"AIR"},{"x":7,"y":16,"type":"DIRT"},{"x":8,"y":16,"type":"DIRT"},{"x":9,"y":16,"type":"DIRT"},{"x":10,"y":16,"type":"DIRT"},{"x":11,"y":16,"type":"DIRT"},{"x":12,"y":16,"type":"AIR"},{"x":13,"y":16,"type":"AIR"},{"x":14,"y":16,"type":"AIR"},{"x":15,"y":16,"type":"AIR"},{"x":16,"y":16,"type":"AIR"},{"x":17,"y":16,"type":"AIR"},{"x":18,"y":16,"type":"AIR"},{"x":19,"y":16,"type":"AIR"},{"x":20,"y":16,"type":"AIR"},{"x":21,"y":16,"type":"DIRT"},{"x":22,"y":16,"type":"DIRT"},{"x":23,"y":16,"type":"DIRT"},{"x":24,"y":16,"type":"DIRT"},{"x":25,"y":16,"type":"DIRT"},{"x":26,"y":16,"type":"AIR"},{"x":27,"y":16,"type":"AIR"},{"x":28,"y":16,"type":"AIR"},{"x":29,"y":16,"type":"DIRT"},{"x":30,"y":16,"type":"AIR"},{"x":31,"y":16,"type":"AIR","occupier":{"id":1,"playerId":2,"health":150,"position":{"x":31,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Commando"}},{"x":32,"y":16,"type":"AIR"}],[{"x":0,"y":17,"type":"AIR"},{"x":1,"y":17,"type":"AIR"},{"x":2,"y":17,"type":"AIR"},{"x":3,"y":17,"type":"DIRT"},{"x":4,"y":17,"type":"AIR"},{"x":5,"y":17,"type":"AIR"},{"x":6,"y":17,"type":"AIR"},{"x":7,"y":17,"type":"DIRT"},{"x":8,"y":17,"type":"DIRT"},{"x":9,"y":17,"type":"DIRT"},{"x":10,"y":17,"type":"DIRT"},{"x":11,"y":17,"type":"DIRT"},{"x":12,"y":17,"type":"AIR"},{"x":13,"y":17,"type":"AIR"},{"x":14,"y":17,"type":"AIR"},{"x":15,"y":17,"type":"AIR"},{"x":16,"y":17,"type":"DIRT"},{"x":17,"y":17,"type":"AIR"},{"x":18,"y":17,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":19,"y":17,"type":"AIR"},{"x":20,"y":17,"type":"AIR"},{"x":21,"y":17,"type":"DIRT"},{"x":22,"y":17,"type":"DIRT"},{"x":23,"y":17,"type":"DIRT"},{"x":24,"y":17,"type":"DIRT"},{"x":25,"y":17,"type":"DIRT"},{"x":26,"y":17,"type":"AIR"},{"x":27,"y":17,"type":"AIR"},{"x":28,"y":17,"type":"AIR"},{"x":29,"y":17,"type":"DIRT"},{"x":30,"y":17,"type":"AIR"},{"x":31,"y":17,"type":"AIR"},{"x":32,"y":17,"type":"AIR"}],[{"x":0,"y":18,"type":"DIRT"},{"x":1,"y":18,"type":"DIRT"},{"x":2,"y":18,"type":"DIRT"},{"x":3,"y":18,"type":"DIRT"},{"x":4,"y":18,"type":"DIRT"},{"x":5,"y":18,"type":"AIR"},{"x":6,"y":18,"type":"AIR"},{"x":7,"y":18,"type":"DIRT"},{"x":8,"y":18,"type":"DIRT"},{"x":9,"y":18,"type":"AIR"},{"x":10,"y":18,"type":"DIRT"},{"x":11,"y":18,"type":"AIR"},{"x":12,"y":18,"type":"AIR"},{"x":13,"y":18,"type":"DIRT"},{"x":14,"y":18,"type":"DIRT"},{"x":15,"y":18,"type":"DIRT"},{"x":16,"y":18,"type":"DIRT"},{"x":17,"y":18,"type":"DIRT"},{"x":18,"y":18,"type":"DIRT"},{"x":19,"y":18,"type":"DIRT"},{"x":20,"y":18,"type":"AIR"},{"x":21,"y":18,"type":"AIR"},{"x":22,"y":18,"type":"DIRT"},{"x":23,"y":18,"type":"AIR"},{"x":24,"y":18,"type":"DIRT"},{"x":25,"y":18,"type":"DIRT"},{"x":26,"y":18,"type":"AIR"},{"x":27,"y":18,"type":"AIR"},{"x":28,"y":18,"type":"DIRT"},{"x":29,"y":18,"type":"DIRT"},{"x":30,"y":18,"type":"DIRT"},{"x":31,"y":18,"type":"DIRT"},{"x":32,"y":18,"type":"DIRT"}],[{"x":0,"y":19,"type":"DIRT"},{"x":1,"y":19,"type":"DIRT"},{"x":2,"y":19,"type":"DIRT"},{"x":3,"y":19,"type":"DIRT"},{"x":4,"y":19,"type":"DIRT"},{"x":5,"y":19,"type":"AIR"},{"x":6,"y":19,"type":"AIR"},{"x":7,"y":19,"type":"DIRT"},{"x":8,"y":19,"type":"AIR"},{"x":9,"y":19,"type":"AIR"},{"x":10,"y":19,"type":"AIR"},{"x":11,"y":19,"type":"AIR"},{"x":12,"y":19,"type":"AIR"},{"x":13,"y":19,"type":"AIR"},{"x":14,"y":19,"type":"AIR"},{"x":15,"y":19,"type":"AIR"},{"x":16,"y":19,"type":"DIRT"},{"x":17,"y":19,"type":"AIR"},{"x":18,"y":19,"type":"AIR"},{"x":19,"y":19,"type":"AIR"},{"x":20,"y":19,"type":"AIR"},{"x":21,"y":19,"type":"AIR"},{"x":22,"y":19,"type":"AIR"},{"x":23,"y":19,"type":"AIR"},{"x":24,"y":19,"type":"AIR"},{"x":25,"y":19,"type":"DIRT"},{"x":26,"y":19,"type":"AIR"},{"x":27,"y":19,"type":"AIR"},{"x":28,"y":19,"type":"DIRT"},{"x":29,"y":19,"type":"DIRT"},{"x":30,"y":19,"type":"DIRT"},{"x":31,"y":19,"type":"DIRT"},{"x":32,"y":19,"type":"DIRT"}],[{"x":0,"y":20,"type":"DIRT"},{"x":1,"y":20,"type":"AIR"},{"x":2,"y":20,"type":"AIR"},{"x":3,"y":20,"type":"AIR"},{"x":4,"y":20,"type":"AIR"},{"x":5,"y":20,"type":"AIR"},{"x":6,"y":20,"type":"AIR"},{"x":7,"y":20,"type":"DIRT"},{"x":8,"y":20,"type":"AIR"},{"x":9,"y":20,"type":"AIR"},{"x":10,"y":20,"type":"AIR"},{"x":11,"y":20,"type":"AIR"},{"x":12,"y":20,"type":"AIR"},{"x":13,"y":20,"type":"AIR"},{"x":14,"y":20,"type":"AIR"},{"x":15,"y":20,"type":"AIR"},{"x":16,"y":20,"type":"AIR"},{"x":17,"y":20,"type":"AIR"},{"x":18,"y":20,"type":"AIR"},{"x":19,"y":20,"type":"AIR"},{"x":20,"y":20,"type":"AIR"},{"x":21,"y":20,"type":"AIR"},{"x":22,"y":20,"type":"AIR"},{"x":23,"y":20,"type":"AIR"},{"x":24,"y":20,"type":"AIR"},{"x":25,"y":20,"type":"DIRT"},{"x":26,"y":20,"type":"AIR"},{"x":27,"y":20,"type":"AIR"},{"x":28,"y":20,"type":"AIR"},{"x":29,"y":20,"type":"AIR"},{"x":30,"y":20,"type":"AIR"},{"x":31,"y":20,"type":"AIR"},{"x":32,"y":20,"type":"DIRT"}],[{"x":0,"y":21,"type":"AIR"},{"x":1,"y":21,"type":"AIR"},{"x":2,"y":21,"type":"AIR"},{"x":3,"y":21,"type":"AIR"},{"x":4,"y":21,"type":"AIR"},{"x":5,"y":21,"type":"DIRT"},{"x":6,"y":21,"type":"DIRT"},{"x":7,"y":21,"type":"DIRT"},{"x":8,"y":21,"type":"AIR"},{"x":9,"y":21,"type":"AIR"},{"x":10,"y":21,"type":"AIR"},{"x":11,"y":21,"type":"AIR"},{"x":12,"y":21,"type":"DIRT"},{"x":13,"y":21,"type":"DIRT"},{"x":14,"y":21,"type":"DIRT"},{"x":15,"y":21,"type":"DIRT"},{"x":16,"y":21,"type":"AIR"},{"x":17,"y":21,"type":"DIRT"},{"x":18,"y":21,"type":"DIRT"},{"x":19,"y":21,"type":"DIRT"},{"x":20,"y":21,"type":"DIRT"},{"x":21,"y":21,"type":"AIR"},{"x":22,"y":21,"type":"AIR"},{"x":23,"y":21,"type":"AIR"},{"x":24,"y":21,"type":"AIR"},{"x":25,"y":21,"type":"DIRT"},{"x":26,"y":21,"type":"DIRT"},{"x":27,"y":21,"type":"DIRT"},{"x":28,"y":21,"type":"AIR"},{"x":29,"y":21,"type":"AIR"},{"x":30,"y":21,"type":"AIR"},{"x":31,"y":21,"type":"AIR"},{"x":32,"y":21,"type":"AIR"}],[{"x":0,"y":22,"type":"DEEP_SPACE"},{"x":1,"y":22,"type":"AIR"},{"x":2,"y":22,"type":"DIRT"},{"x":3,"y":22,"type":"DIRT"},{"x":4,"y":22,"type":"DIRT"},{"x":5,"y":22,"type":"DIRT"},{"x":6,"y":22,"type":"DIRT"},{"x":7,"y":22,"type":"DIRT"},{"x":8,"y":22,"type":"DIRT"},{"x":9,"y":22,"type":"AIR"},{"x":10,"y":22,"type":"AIR"},{"x":11,"y":22,"type":"DIRT"},{"x":12,"y":22,"type":"DIRT"},{"x":13,"y":22,"type":"DIRT"},{"x":14,"y":22,"type":"AIR"},{"x":15,"y":22,"type":"DIRT"},{"x":16,"y":22,"type":"DIRT"},{"x":17,"y":22,"type":"DIRT"},{"x":18,"y":22,"type":"AIR"},{"x":19,"y":22,"type":"DIRT"},{"x":20,"y":22,"type":"DIRT"},{"x":21,"y":22,"type":"DIRT"},{"x":22,"y":22,"type":"AIR"},{"x":23,"y":22,"type":"AIR"},{"x":24,"y":22,"type":"DIRT"},{"x":25,"y":22,"type":"DIRT"},{"x":26,"y":22,"type":"DIRT"},{"x":27,"y":22,"type":"DIRT"},{"x":28,"y":22,"type":"DIRT"},{"x":29,"y":22,"type":"DIRT"},{"x":30,"y":22,"type":"DIRT"},{"x":31,"y":22,"type":"AIR"},{"x":32,"y":22,"type":"DEEP_SPACE"}],[{"x":0,"y":23,"type":"DEEP_SPACE"},{"x":1,"y":23,"type":"AIR"},{"x":2,"y":23,"type":"DIRT"},{"x":3,"y":23,"type":"DIRT"},{"x":4,"y":23,"type":"DIRT"},{"x":5,"y":23,"type":"DIRT"},{"x":6,"y":23,"type":"DIRT"},{"x":7,"y":23,"type":"DIRT"},{"x":8,"y":23,"type":"DIRT"},{"x":9,"y":23,"type":"AIR"},{"x":10,"y":23,"type":"AIR"},{"x":11,"y":23,"type":"DIRT"},{"x":12,"y":23,"type":"DIRT"},{"x":13,"y":23,"type":"DIRT"},{"x":14,"y":23,"type":"AIR"},{"x":15,"y":23,"type":"DIRT"},{"x":16,"y":23,"type":"DIRT"},{"x":17,"y":23,"type":"DIRT"},{"x":18,"y":23,"type":"AIR"},{"x":19,"y":23,"type":"DIRT"},{"x":20,"y":23,"type":"DIRT"},{"x":21,"y":23,"type":"DIRT"},{"x":22,"y":23,"type":"AIR"},{"x":23,"y":23,"type":"AIR"},{"x":24,"y":23,"type":"DIRT"},{"x":25,"y":23,"type":"DIRT"},{"x":26,"y":23,"type":"DIRT"},{"x":27,"y":23,"type":"DIRT"},{"x":28,"y":23,"type":"DIRT"},{"x":29,"y":23,"type":"DIRT"},{"x":30,"y":23,"type":"DIRT"},{"x":31,"y":23,"type":"AIR"},{"x":32,"y":23,"type":"DEEP_SPACE"}],[{"x":0,"y":24,"type":"DEEP_SPACE"},{"x":1,"y":24,"type":"DIRT"},{"x":2,"y":24,"type":"AIR"},{"x":3,"y":24,"type":"AIR"},{"x":4,"y":24,"type":"DIRT"},{"x":5,"y":24,"type":"DIRT"},{"x":6,"y":24,"type":"DIRT"},{"x":7,"y":24,"type":"DIRT"},{"x":8,"y":24,"type":"DIRT"},{"x":9,"y":24,"type":"AIR"},{"x":10,"y":24,"type":"DIRT"},{"x":11,"y":24,"type":"DIRT"},{"x":12,"y":24,"type":"DIRT"},{"x":13,"y":24,"type":"DIRT"},{"x":14,"y":24,"type":"AIR"},{"x":15,"y":24,"type":"AIR"},{"x":16,"y":24,"type":"DIRT"},{"x":17,"y":24,"type":"AIR"},{"x":18,"y":24,"type":"AIR"},{"x":19,"y":24,"type":"DIRT"},{"x":20,"y":24,"type":"DIRT"},{"x":21,"y":24,"type":"DIRT"},{"x":22,"y":24,"type":"DIRT"},{"x":23,"y":24,"type":"AIR"},{"x":24,"y":24,"type":"DIRT"},{"x":25,"y":24,"type":"DIRT"},{"x":26,"y":24,"type":"DIRT"},{"x":27,"y":24,"type":"DIRT"},{"x":28,"y":24,"type":"DIRT"},{"x":29,"y":24,"type":"AIR"},{"x":30,"y":24,"type":"AIR"},{"x":31,"y":24,"type":"DIRT"},{"x":32,"y":24,"type":"DEEP_SPACE"}],[{"x":0,"y":25,"type":"DEEP_SPACE"},{"x":1,"y":25,"type":"DEEP_SPACE"},{"x":2,"y":25,"type":"DIRT"},{"x":3,"y":25,"type":"DIRT"},{"x":4,"y":25,"type":"DIRT"},{"x":5,"y":25,"type":"DIRT"},{"x":6,"y":25,"type":"DIRT"},{"x":7,"y":25,"type":"AIR"},{"x":8,"y":25,"type":"AIR"},{"x":9,"y":25,"type":"AIR"},{"x":10,"y":25,"type":"DIRT"},{"x":11,"y":25,"type":"AIR"},{"x":12,"y":25,"type":"AIR"},{"x":13,"y":25,"type":"AIR"},{"x":14,"y":25,"type":"AIR"},{"x":15,"y":25,"type":"AIR"},{"x":16,"y":25,"type":"AIR"},{"x":17,"y":25,"type":"AIR"},{"x":18,"y":25,"type":"AIR"},{"x":19,"y":25,"type":"AIR"},{"x":20,"y":25,"type":"AIR"},{"x":21,"y":25,"type":"AIR"},{"x":22,"y":25,"type":"DIRT"},{"x":23,"y":25,"type":"AIR"},{"x":24,"y":25,"type":"AIR"},{"x":25,"y":25,"type":"AIR"},{"x":26,"y":25,"type":"DIRT"},{"x":27,"y":25,"type":"DIRT"},{"x":28,"y":25,"type":"DIRT"},{"x":29,"y":25,"type":"DIRT"},{"x":30,"y":25,"type":"DIRT"},{"x":31,"y":25,"type":"DEEP_SPACE"},{"x":32,"y":25,"type":"DEEP_SPACE"}],[{"x":0,"y":26,"type":"DEEP_SPACE"},{"x":1,"y":26,"type":"DEEP_SPACE"},{"x":2,"y":26,"type":"DEEP_SPACE"},{"x":3,"y":26,"type":"DIRT"},{"x":4,"y":26,"type":"DIRT"},{"x":5,"y":26,"type":"DIRT"},{"x":6,"y":26,"type":"DIRT"},{"x":7,"y":26,"type":"DIRT"},{"x":8,"y":26,"type":"DIRT"},{"x":9,"y":26,"type":"DIRT"},{"x":10,"y":26,"type":"DIRT"},{"x":11,"y":26,"type":"DIRT"},{"x":12,"y":26,"type":"AIR"},{"x":13,"y":26,"type":"AIR"},{"x":14,"y":26,"type":"AIR"},{"x":15,"y":26,"type":"AIR"},{"x":16,"y":26,"type":"AIR"},{"x":17,"y":26,"type":"AIR"},{"x":18,"y":26,"type":"AIR"},{"x":19,"y":26,"type":"AIR"},{"x":20,"y":26,"type":"AIR"},{"x":21,"y":26,"type":"DIRT"},{"x":22,"y":26,"type":"DIRT"},{"x":23,"y":26,"type":"DIRT"},{"x":24,"y":26,"type":"DIRT"},{"x":25,"y":26,"type":"DIRT"},{"x":26,"y":26,"type":"DIRT"},{"x":27,"y":26,"type":"DIRT"},{"x":28,"y":26,"type":"DIRT"},{"x":29,"y":26,"type":"DIRT"},{"x":30,"y":26,"type":"DEEP_SPACE"},{"x":31,"y":26,"type":"DEEP_SPACE"},{"x":32,"y":26,"type":"DEEP_SPACE"}],[{"x":0,"y":27,"type":"DEEP_SPACE"},{"x":1,"y":27,"type":"DEEP_SPACE"},{"x":2,"y":27,"type":"DEEP_SPACE"},{"x":3,"y":27,"type":"DEEP_SPACE"},{"x":4,"y":27,"type":"DIRT"},{"x":5,"y":27,"type":"AIR"},{"x":6,"y":27,"type":"DIRT"},{"x":7,"y":27,"type":"AIR"},{"x":8,"y":27,"type":"AIR"},{"x":9,"y":27,"type":"AIR"},{"x":10,"y":27,"type":"DIRT"},{"x":11,"y":27,"type":"DIRT"},{"x":12,"y":27,"type":"DIRT"},{"x":13,"y":27,"type":"DIRT"},{"x":14,"y":27,"type":"AIR"},{"x":15,"y":27,"type":"AIR"},{"x":16,"y":27,"type":"AIR"},{"x":17,"y":27,"type":"AIR"},{"x":18,"y":27,"type":"AIR"},{"x":19,"y":27,"type":"DIRT"},{"x":20,"y":27,"type":"DIRT"},{"x":21,"y":27,"type":"DIRT"},{"x":22,"y":27,"type":"DIRT"},{"x":23,"y":27,"type":"AIR"},{"x":24,"y":27,"type":"AIR"},{"x":25,"y":27,"type":"AIR"},{"x":26,"y":27,"type":"DIRT"},{"x":27,"y":27,"type":"AIR"},{"x":28,"y":27,"type":"DIRT"},{"x":29,"y":27,"type":"DEEP_SPACE"},{"x":30,"y":27,"type":"DEEP_SPACE"},{"x":31,"y":27,"type":"DEEP_SPACE"},{"x":32,"y":27,"type":"DEEP_SPACE"}],[{"x":0,"y":28,"type":"DEEP_SPACE"},{"x":1,"y":28,"type":"DEEP_SPACE"},{"x":2,"y":28,"type":"DEEP_SPACE"},{"x":3,"y":28,"type":"DEEP_SPACE"},{"x":4,"y":28,"type":"AIR"},{"x":5,"y":28,"type":"AIR"},{"x":6,"y":28,"type":"DIRT"},{"x":7,"y":28,"type":"AIR"},{"x":8,"y":28,"type":"AIR","occupier":{"id":2,"playerId":2,"health":100,"position":{"x":8,"y":28},"weapon":{"damage":8,"range":4},"bananaBombs":{"damage":20,"range":5,"count":3,"damageRadius":2},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Agent"}},{"x":9,"y":28,"type":"AIR"},{"x":10,"y":28,"type":"DIRT"},{"x":11,"y":28,"type":"DIRT"},{"x":12,"y":28,"type":"AIR"},{"x":13,"y":28,"type":"DIRT"},{"x":14,"y":28,"type":"DIRT"},{"x":15,"y":28,"type":"DIRT"},{"x":16,"y":28,"type":"DIRT"},{"x":17,"y":28,"type":"DIRT"},{"x":18,"y":28,"type":"DIRT"},{"x":19,"y":28,"type":"DIRT"},{"x":20,"y":28,"type":"AIR"},{"x":21,"y":28,"type":"DIRT"},{"x":22,"y":28,"type":"DIRT"},{"x":23,"y":28,"type":"AIR"},{"x":24,"y":28,"type":"AIR","occupier":{"id":1,"playerId":1,"health":150,"position":{"x":24,"y":28},"diggingRange":1,"movementRange":1,"roundsUntilUnfrozen":0,"profession":"Commando"}},{"x":25,"y":28,"type":"AIR"},{"x":26,"y":28,"type":"DIRT"},{"x":27,"y":28,"type":"AIR"},{"x":28,"y":28,"type":"AIR"},{"x":29,"y":28,"type":"DEEP_SPACE"},{"x":30,"y":28,"type":"DEEP_SPACE"},{"x":31,"y":28,"type":"DEEP_SPACE"},{"x":32,"y":28,"type":"DEEP_SPACE"}],[{"x":0,"y":29,"type":"DEEP_SPACE"},{"x":1,"y":29,"type":"DEEP_SPACE"},{"x":2,"y":29,"type":"DEEP_SPACE"},{"x":3,"y":29,"type":"DEEP_SPACE"},{"x":4,"y":29,"type":"DEEP_SPACE"},{"x":5,"y":29,"type":"DEEP_SPACE"},{"x":6,"y":29,"type":"DIRT"},{"x":7,"y":29,"type":"AIR"},{"x":8,"y":29,"type":"AIR"},{"x":9,"y":29,"type":"AIR"},{"x":10,"y":29,"type":"DIRT"},{"x":11,"y":29,"type":"AIR"},{"x":12,"y":29,"type":"AIR"},{"x":13,"y":29,"type":"DIRT"},{"x":14,"y":29,"type":"DIRT"},{"x":15,"y":29,"type":"DIRT"},{"x":16,"y":29,"type":"DIRT"},{"x":17,"y":29,"type":"DIRT"},{"x":18,"y":29,"type":"DIRT"},{"x":19,"y":29,"type":"DIRT"},{"x":20,"y":29,"type":"AIR"},{"x":21,"y":29,"type":"AIR"},{"x":22,"y":29,"type":"DIRT"},{"x":23,"y":29,"type":"AIR"},{"x":24,"y":29,"type":"AIR"},{"x":25,"y":29,"type":"AIR"},{"x":26,"y":29,"type":"DIRT"},{"x":27,"y":29,"type":"DEEP_SPACE"},{"x":28,"y":29,"type":"DEEP_SPACE"},{"x":29,"y":29,"type":"DEEP_SPACE"},{"x":30,"y":29,"type":"DEEP_SPACE"},{"x":31,"y":29,"type":"DEEP_SPACE"},{"x":32,"y":29,"type":"DEEP_SPACE"}],[{"x":0,"y":30,"type":"DEEP_SPACE"},{"x":1,"y":30,"type":"DEEP_SPACE"},{"x":2,"y":30,"type":"DEEP_SPACE"},{"x":3,"y":30,"type":"DEEP_SPACE"},{"x":4,"y":30,"type":"DEEP_SPACE"},{"x":5,"y":30,"type":"DEEP_SPACE"},{"x":6,"y":30,"type":"DEEP_SPACE"},{"x":7,"y":30,"type":"DIRT"},{"x":8,"y":30,"type":"DIRT"},{"x":9,"y":30,"type":"DIRT"},{"x":10,"y":30,"type":"DIRT"},{"x":11,"y":30,"type":"AIR"},{"x":12,"y":30,"type":"AIR"},{"x":13,"y":30,"type":"AIR"},{"x":14,"y":30,"type":"DIRT"},{"x":15,"y":30,"type":"DIRT"},{"x":16,"y":30,"type":"DIRT"},{"x":17,"y":30,"type":"DIRT"},{"x":18,"y":30,"type":"DIRT"},{"x":19,"y":30,"type":"AIR"},{"x":20,"y":30,"type":"AIR"},{"x":21,"y":30,"type":"AIR"},{"x":22,"y":30,"type":"DIRT"},{"x":23,"y":30,"type":"DIRT"},{"x":24,"y":30,"type":"DIRT"},{"x":25,"y":30,"type":"DIRT"},{"x":26,"y":30,"type":"DEEP_SPACE"},{"x":27,"y":30,"type":"DEEP_SPACE"},{"x":28,"y":30,"type":"DEEP_SPACE"},{"x":29,"y":30,"type":"DEEP_SPACE"},{"x":30,"y":30,"type":"DEEP_SPACE"},{"x":31,"y":30,"type":"DEEP_SPACE"},{"x":32,"y":30,"type":"DEEP_SPACE"}],[{"x":0,"y":31,"type":"DEEP_SPACE"},{"x":1,"y":31,"type":"DEEP_SPACE"},{"x":2,"y":31,"type":"DEEP_SPACE"},{"x":3,"y":31,"type":"DEEP_SPACE"},{"x":4,"y":31,"type":"DEEP_SPACE"},{"x":5,"y":31,"type":"DEEP_SPACE"},{"x":6,"y":31,"type":"DEEP_SPACE"},{"x":7,"y":31,"type":"DEEP_SPACE"},{"x":8,"y":31,"type":"AIR"},{"x":9,"y":31,"type":"DIRT"},{"x":10,"y":31,"type":"DIRT"},{"x":11,"y":31,"type":"DIRT"},{"x":12,"y":31,"type":"AIR"},{"x":13,"y":31,"type":"AIR"},{"x":14,"y":31,"type":"AIR"},{"x":15,"y":31,"type":"AIR"},{"x":16,"y":31,"type":"AIR"},{"x":17,"y":31,"type":"AIR"},{"x":18,"y":31,"type":"AIR"},{"x":19,"y":31,"type":"AIR"},{"x":20,"y":31,"type":"AIR"},{"x":21,"y":31,"type":"DIRT"},{"x":22,"y":31,"type":"DIRT"},{"x":23,"y":31,"type":"DIRT"},{"x":24,"y":31,"type":"AIR"},{"x":25,"y":31,"type":"DEEP_SPACE"},{"x":26,"y":31,"type":"DEEP_SPACE"},{"x":27,"y":31,"type":"DEEP_SPACE"},{"x":28,"y":31,"type":"DEEP_SPACE"},{"x":29,"y":31,"type":"DEEP_SPACE"},{"x":30,"y":31,"type":"DEEP_SPACE"},{"x":31,"y":31,"type":"DEEP_SPACE"},{"x":32,"y":31,"type":"DEEP_SPACE"}],[{"x":0,"y":32,"type":"DEEP_SPACE"},{"x":1,"y":32,"type":"DEEP_SPACE"},{"x":2,"y":32,"type":"DEEP_SPACE"},{"x":3,"y":32,"type":"DEEP_SPACE"},{"x":4,"y":32,"type":"DEEP_SPACE"},{"x":5,"y":32,"type":"DEEP_SPACE"},{"x":6,"y":32,"type":"DEEP_SPACE"},{"x":7,"y":32,"type":"DEEP_SPACE"},{"x":8,"y":32,"type":"DEEP_SPACE"},{"x":9,"y":32,"type":"DEEP_SPACE"},{"x":10,"y":32,"type":"DEEP_SPACE"},{"x":11,"y":32,"type":"DIRT"},{"x":12,"y":32,"type":"AIR"},{"x":13,"y":32,"type":"AIR"},{"x":14,"y":32,"type":"DIRT"},{"x":15,"y":32,"type":"AIR"},{"x":16,"y":32,"type":"AIR"},{"x":17,"y":32,"type":"AIR"},{"x":18,"y":32,"type":"DIRT"},{"x":19,"y":32,"type":"AIR"},{"x":20,"y":32,"type":"AIR"},{"x":21,"y":32,"type":"DIRT"},{"x":22,"y":32,"type":"DEEP_SPACE"},{"x":23,"y":32,"type":"DEEP_SPACE"},{"x":24,"y":32,"type":"DEEP_SPACE"},{"x":25,"y":32,"type":"DEEP_SPACE"},{"x":26,"y":32,"type":"DEEP_SPACE"},{"x":27,"y":32,"type":"DEEP_SPACE"},{"x":28,"y":32,"type":"DEEP_SPACE"},{"x":29,"y":32,"type":"DEEP_SPACE"},{"x":30,"y":32,"type":"DEEP_SPACE"},{"x":31,"y":32,"type":"DEEP_SPACE"},{"x":32,"y":32,"type":"DEEP_SPACE"}]],"visualizerEvents":[]} \ No newline at end of file
diff --git a/tests/replays/2019.08.07.14.25.37/B-log.csv b/tests/replays/2019.08.07.14.25.37/B-log.csv
new file mode 100644
index 0000000..02dffa1
--- /dev/null
+++ b/tests/replays/2019.08.07.14.25.37/B-log.csv
@@ -0,0 +1,274 @@
+Round,LastCommandType,LastCommand,ActiveWorm,Score,Health,Worm1 Health,Worm1 x,Worm1 y,Worm2 Health,Worm2 x,Worm2 y,Worm3 Health,Worm3 x,Worm3 y
+1,null,"null",1,116,350,150,31,16,100,8,28,100,8,4
+2,move,"move 30 17",1,121,350,150,30,17,100,8,28,100,8,4
+3,move,"move 9 27",2,126,350,150,30,17,100,9,27,100,8,4
+4,move,"move 9 5",3,131,350,150,30,17,100,9,27,100,9,5
+5,dig,"dig 29 17",1,138,350,150,30,17,100,9,27,100,9,5
+6,dig,"dig 10 26",2,145,350,150,30,17,100,9,27,100,9,5
+7,dig,"dig 10 6",3,152,350,150,30,17,100,9,27,100,9,5
+8,move,"move 29 17",1,157,350,150,29,17,100,9,27,100,9,5
+9,move,"move 10 26",2,162,350,150,29,17,100,10,26,100,9,5
+10,move,"move 10 6",3,167,350,150,29,17,100,10,26,100,10,6
+11,move,"move 28 17",1,172,350,150,28,17,100,10,26,100,10,6
+12,move,"move 11 25",2,177,350,150,28,17,100,11,25,100,10,6
+13,dig,"dig 11 7",3,184,350,150,28,17,100,11,25,100,10,6
+14,move,"move 27 17",1,189,350,150,27,17,100,11,25,100,10,6
+15,dig,"dig 12 24",2,196,350,150,27,17,100,11,25,100,10,6
+16,move,"move 11 7",3,201,350,150,27,17,100,11,25,100,11,7
+17,move,"move 26 17",1,206,350,150,26,17,100,11,25,100,11,7
+18,move,"move 12 24",2,211,350,150,26,17,100,12,24,100,11,7
+19,dig,"dig 12 8",3,218,350,150,26,17,100,12,24,100,11,7
+20,dig,"dig 25 17",1,225,350,150,26,17,100,12,24,100,11,7
+21,dig,"dig 13 23",2,232,350,150,26,17,100,12,24,100,11,7
+22,move,"move 12 8",3,237,350,150,26,17,100,12,24,100,12,8
+23,move,"move 25 17",1,242,350,150,25,17,100,12,24,100,12,8
+24,move,"move 13 23",2,247,350,150,25,17,100,13,23,100,12,8
+25,dig,"dig 13 9",3,254,350,150,25,17,100,13,23,100,12,8
+26,dig,"dig 24 17",1,261,350,150,25,17,100,13,23,100,12,8
+27,move,"move 14 22",2,266,350,150,25,17,100,14,22,100,12,8
+28,move,"move 13 9",3,271,350,150,25,17,100,14,22,100,13,9
+29,move,"move 24 17",1,276,350,150,24,17,100,14,22,100,13,9
+30,dig,"dig 15 21",2,283,350,150,24,17,100,14,22,100,13,9
+31,dig,"dig 14 10",3,290,350,150,24,17,100,14,22,100,13,9
+32,dig,"dig 23 17",1,297,350,150,24,17,100,14,22,100,13,9
+33,move,"move 15 21",2,302,350,150,24,17,100,15,21,100,13,9
+34,move,"move 14 10",3,307,350,150,24,17,100,15,21,100,14,10
+35,move,"move 23 17",1,312,350,150,23,17,100,15,21,100,14,10
+36,move,"move 16 20",2,317,350,150,23,17,100,16,20,100,14,10
+37,move,"move 14 11",3,322,350,150,23,17,100,16,20,100,14,11
+38,dig,"dig 22 17",1,329,350,150,23,17,100,16,20,100,14,11
+39,move,"move 17 19",2,334,350,150,23,17,100,17,19,100,14,11
+40,move,"move 14 12",3,339,350,150,23,17,100,17,19,100,14,12
+41,move,"move 22 17",1,344,350,150,22,17,100,17,19,100,14,12
+42,dig,"dig 18 18",2,351,350,150,22,17,100,17,19,100,14,12
+43,move,"move 14 13",3,356,350,150,22,17,100,17,19,100,14,13
+44,dig,"dig 21 17",1,363,350,150,22,17,100,17,19,100,14,13
+45,move,"move 18 18",2,368,350,150,22,17,100,18,18,100,14,13
+46,dig,"dig 14 14",3,375,350,150,22,17,100,18,18,100,14,13
+47,move,"move 21 17",1,380,350,150,21,17,100,18,18,100,14,13
+48,move,"move 18 17",2,389,360,150,21,17,110,18,17,100,14,13
+49,move,"move 14 14",3,394,360,150,21,17,110,18,17,100,14,14
+50,move,"move 20 16",1,399,360,150,20,16,110,18,17,100,14,14
+51,move,"move 17 16",2,404,360,150,20,16,110,17,16,100,14,14
+52,move,"move 14 15",3,412,370,150,20,16,110,17,16,110,14,15
+53,move,"move 21 17",1,417,370,150,21,17,110,17,16,110,14,15
+54,move,"move 18 17",2,422,370,150,21,17,110,18,17,110,14,15
+55,move,"move 15 16",3,427,370,150,21,17,110,18,17,110,15,16
+56,dig,"dig 22 18",1,434,370,150,21,17,110,18,17,110,15,16
+57,dig,"dig 19 18",2,441,370,150,21,17,110,18,17,110,15,16
+58,dig,"dig 16 17",3,448,370,150,21,17,110,18,17,110,15,16
+59,move,"move 22 18",1,453,370,150,22,18,110,18,17,110,15,16
+60,move,"move 19 18",2,458,370,150,22,18,110,19,18,110,15,16
+61,move,"move 16 17",3,463,370,150,22,18,110,19,18,110,16,17
+62,move,"move 23 19",1,468,370,150,23,19,110,19,18,110,16,17
+63,move,"move 20 19",2,473,370,150,23,19,110,20,19,110,16,17
+64,dig,"dig 17 18",3,480,370,150,23,19,110,20,19,110,16,17
+65,move,"move 24 20",1,485,370,150,24,20,110,20,19,110,16,17
+66,move,"move 21 20",2,490,370,150,24,20,110,21,20,110,16,17
+67,move,"move 17 18",3,495,370,150,24,20,110,21,20,110,17,18
+68,dig,"dig 25 21",1,502,370,150,24,20,110,21,20,110,17,18
+69,move,"move 22 21",2,507,370,150,24,20,110,22,21,110,17,18
+70,move,"move 18 19",3,512,370,150,24,20,110,22,21,110,18,19
+71,move,"move 25 21",1,517,370,150,25,21,110,22,21,110,18,19
+72,move,"move 23 22",2,522,370,150,25,21,110,23,22,110,18,19
+73,move,"move 19 20",3,527,370,150,25,21,110,23,22,110,19,20
+74,dig,"dig 26 22",1,534,370,150,25,21,110,23,22,110,19,20
+75,dig,"dig 24 23",2,541,370,150,25,21,110,23,22,110,19,20
+76,dig,"dig 20 21",3,548,370,150,25,21,110,23,22,110,19,20
+77,move,"move 26 22",1,553,370,150,26,22,110,23,22,110,19,20
+78,move,"move 24 23",2,558,370,150,26,22,110,24,23,110,19,20
+79,move,"move 20 21",3,563,370,150,26,22,110,24,23,110,20,21
+80,dig,"dig 27 23",1,570,370,150,26,22,110,24,23,110,20,21
+81,dig,"dig 25 24",2,577,370,150,26,22,110,24,23,110,20,21
+82,dig,"dig 21 22",3,584,370,150,26,22,110,24,23,110,20,21
+83,move,"move 27 23",1,589,370,150,27,23,110,24,23,110,20,21
+84,move,"move 25 24",2,594,370,150,27,23,110,25,24,110,20,21
+85,move,"move 21 22",3,599,370,150,27,23,110,25,24,110,21,22
+86,dig,"dig 27 24",1,606,370,150,27,23,110,25,24,110,21,22
+87,banana,"banana 28 28",2,646,370,150,27,23,110,25,24,110,21,22
+88,move,"move 22 23",3,651,370,150,27,23,110,25,24,110,22,23
+89,dig,"dig 28 24",1,658,370,150,27,23,110,25,24,110,22,23
+90,banana,"banana 28 27",2,719,370,150,27,23,110,25,24,110,22,23
+91,move,"move 23 24",3,724,370,150,27,23,110,25,24,110,23,24
+92,move,"move 28 24",1,729,370,150,28,24,110,25,24,110,23,24
+93,banana,"banana 29 26",2,783,370,150,28,24,110,25,24,110,23,24
+94,move,"move 24 25",3,788,370,150,28,24,110,25,24,110,24,25
+95,move,"move 29 25",1,793,370,150,29,25,110,25,24,110,24,25
+96,shoot,"shoot E",1,809,370,150,29,25,110,25,24,110,24,25
+97,shoot,"shoot E",1,825,370,150,29,25,110,25,24,110,24,25
+98,shoot,"shoot E",1,827,370,150,29,25,110,25,24,110,24,25
+99,shoot,"shoot NE",1,843,370,150,29,25,110,25,24,110,24,25
+100,shoot,"shoot NE",1,859,370,150,29,25,110,25,24,110,24,25
+101,dig,"dig 26 24",2,863,362,142,29,25,110,25,24,110,24,25
+102,invalid,"invalid",3,859,362,142,29,25,110,25,24,110,24,25
+103,shoot,"shoot NE",1,875,362,142,29,25,110,25,24,110,24,25
+104,move,"move 26 24",2,878,354,134,29,25,110,26,24,110,24,25
+105,move,"move 25 24",3,883,354,134,29,25,110,26,24,110,25,24
+106,shoot,"shoot NE",1,899,354,134,29,25,110,26,24,110,25,24
+107,shoot,"shoot E",2,901,354,134,29,25,110,26,24,110,25,24
+108,dig,"dig 26 25",3,908,354,134,29,25,110,26,24,110,25,24
+109,shoot,"shoot E",1,924,354,134,29,25,110,26,24,110,25,24
+110,dig,"dig 27 25",2,928,346,126,29,25,110,26,24,110,25,24
+111,move,"move 26 25",3,933,346,126,29,25,110,26,24,110,26,25
+112,shoot,"shoot E",1,949,346,126,29,25,110,26,24,110,26,25
+113,move,"move 27 25",2,951,338,118,29,25,110,27,25,110,26,25
+114,snowball,"snowball 30 25",3,951,338,118,29,25,110,27,25,110,26,25
+115,shoot,"shoot E",1,951,338,118,29,25,110,27,25,110,26,25
+116,move,"move 28 25",2,956,338,118,29,25,110,28,25,110,26,25
+117,move,"move 27 24",3,961,338,118,29,25,110,28,25,110,27,24
+118,move,"move 28 24",1,961,338,118,29,25,110,28,25,110,27,24
+119,move,"move 29 24",2,966,338,118,29,25,110,29,24,110,27,24
+120,move,"move 27 23",3,970,335,115,29,25,110,29,24,110,27,23
+121,move,"move 28 24",1,974,332,112,28,24,110,29,24,110,27,23
+122,dig,"dig 28 23",2,981,332,112,28,24,110,29,24,110,27,23
+123,dig,"dig 28 22",3,988,332,112,28,24,110,29,24,110,27,23
+124,move,"move 28 23",1,993,332,112,28,23,110,29,24,110,27,23
+125,move,"move 28 25",2,998,332,112,28,23,110,28,25,110,27,23
+126,move,"move 28 22",3,1003,332,112,28,23,110,28,25,110,28,22
+127,move,"move 27 24",1,1008,332,112,27,24,110,28,25,110,28,22
+128,move,"move 28 24",2,1013,332,112,27,24,110,28,24,110,28,22
+129,move,"move 29 21",3,1018,332,112,27,24,110,28,24,110,29,21
+130,move,"move 28 23",1,1023,332,112,28,23,110,28,24,110,29,21
+131,dig,"dig 29 23",2,1030,332,112,28,23,110,28,24,110,29,21
+132,move,"move 29 20",3,1035,332,112,28,23,110,28,24,110,29,20
+133,dig,"dig 29 22",1,1042,332,112,28,23,110,28,24,110,29,20
+134,move,"move 29 23",2,1047,332,112,28,23,110,29,23,110,29,20
+135,move,"move 28 21",3,1052,332,112,28,23,110,29,23,110,28,21
+136,move,"move 29 22",1,1056,329,112,29,22,107,29,23,110,28,21
+137,move,"move 28 22",2,1060,326,112,29,22,104,28,22,110,28,21
+138,move,"move 28 20",3,1065,326,112,29,22,104,28,22,110,28,20
+139,move,"move 28 21",1,1070,326,112,28,21,104,28,22,110,28,20
+140,dig,"dig 27 22",2,1077,326,112,28,21,104,28,22,110,28,20
+141,dig,"dig 28 19",3,1084,326,112,28,21,104,28,22,110,28,20
+142,move,"move 29 21",1,1089,326,112,29,21,104,28,22,110,28,20
+143,move,"move 28 21",2,1094,326,112,29,21,104,28,21,110,28,20
+144,move,"move 28 19",3,1099,326,112,29,21,104,28,21,110,28,19
+145,move,"move 28 20",1,1104,326,112,28,20,104,28,21,110,28,19
+146,move,"move 27 20",2,1109,326,112,28,20,104,27,20,110,28,19
+147,move,"move 27 18",3,1114,326,112,28,20,104,27,20,110,27,18
+148,move,"move 27 19",1,1119,326,112,27,19,104,27,20,110,27,18
+149,move,"move 26 19",2,1124,326,112,27,19,104,26,19,110,27,18
+150,move,"move 27 17",3,1129,326,112,27,19,104,26,19,110,27,17
+151,move,"move 27 18",1,1134,326,112,27,18,104,26,19,110,27,17
+152,dig,"dig 25 20",2,1141,326,112,27,18,104,26,19,110,27,17
+153,move,"move 26 16",3,1146,326,112,27,18,104,26,19,110,26,16
+154,move,"move 26 17",1,1151,326,112,26,17,104,26,19,110,26,16
+155,move,"move 26 18",2,1156,326,112,26,17,104,26,18,110,26,16
+156,move,"move 26 15",3,1161,326,112,26,17,104,26,18,110,26,15
+157,move,"move 26 16",1,1166,326,112,26,16,104,26,18,110,26,15
+158,move,"move 26 17",2,1171,326,112,26,16,104,26,17,110,26,15
+159,dig,"dig 26 14",3,1178,326,112,26,16,104,26,17,110,26,15
+160,move,"move 27 15",1,1183,326,112,27,15,104,26,17,110,26,15
+161,move,"move 26 16",2,1188,326,112,27,15,104,26,16,110,26,15
+162,move,"move 26 14",3,1193,326,112,27,15,104,26,16,110,26,14
+163,move,"move 26 15",1,1198,326,112,26,15,104,26,16,110,26,14
+164,dig,"dig 25 16",2,1205,326,112,26,15,104,26,16,110,26,14
+165,dig,"dig 25 13",3,1212,326,112,26,15,104,26,16,110,26,14
+166,dig,"dig 25 14",1,1219,326,112,26,15,104,26,16,110,26,14
+167,move,"move 25 15",2,1224,326,112,26,15,104,25,15,110,26,14
+168,move,"move 25 13",3,1229,326,112,26,15,104,25,15,110,25,13
+169,move,"move 25 14",1,1234,326,112,25,14,104,25,15,110,25,13
+170,invalid,"invalid",2,1230,326,112,25,14,104,25,15,110,25,13
+171,move,"move 26 12",3,1235,326,112,25,14,104,25,15,110,26,12
+172,dig,"dig 26 13",1,1242,326,112,25,14,104,25,15,110,26,12
+173,move,"move 26 15",2,1247,326,112,25,14,104,26,15,110,26,12
+174,dig,"dig 25 11",3,1254,326,112,25,14,104,26,15,110,26,12
+175,move,"move 25 13",1,1259,326,112,25,13,104,26,15,110,26,12
+176,move,"move 25 14",2,1264,326,112,25,13,104,25,14,110,26,12
+177,move,"move 25 11",3,1269,326,112,25,13,104,25,14,110,25,11
+178,move,"move 24 12",1,1274,326,112,24,12,104,25,14,110,25,11
+179,dig,"dig 24 13",2,1281,326,112,24,12,104,25,14,110,25,11
+180,move,"move 24 10",3,1286,326,112,24,12,104,25,14,110,24,10
+181,move,"move 24 11",1,1291,326,112,24,11,104,25,14,110,24,10
+182,move,"move 24 13",2,1296,326,112,24,11,104,24,13,110,24,10
+183,move,"move 23 9",3,1301,326,112,24,11,104,24,13,110,23,9
+184,move,"move 23 10",1,1306,326,112,23,10,104,24,13,110,23,9
+185,move,"move 23 12",2,1311,326,112,23,10,104,23,12,110,23,9
+186,dig,"dig 23 8",3,1318,326,112,23,10,104,23,12,110,23,9
+187,move,"move 22 11",1,1323,326,112,22,11,104,23,12,110,23,9
+188,move,"move 23 11",2,1328,326,112,22,11,104,23,11,110,23,9
+189,move,"move 23 8",3,1333,326,112,22,11,104,23,11,110,23,8
+190,move,"move 23 10",1,1338,326,112,23,10,104,23,11,110,23,8
+191,dig,"dig 22 10",2,1345,326,112,23,10,104,23,11,110,23,8
+192,dig,"dig 23 7",3,1352,326,112,23,10,104,23,11,110,23,8
+193,move,"move 23 9",1,1357,326,112,23,9,104,23,11,110,23,8
+194,move,"move 23 10",2,1362,326,112,23,9,104,23,10,110,23,8
+195,nothing,"nothing "Player chose to do nothing"",3,1362,326,112,23,9,104,23,10,110,23,8
+196,move,"move 24 9",1,1367,326,112,24,9,104,23,10,110,23,8
+197,move,"move 23 9",2,1372,326,112,24,9,104,23,9,110,23,8
+198,nothing,"nothing "Player chose to do nothing"",3,1372,326,112,24,9,104,23,9,110,23,8
+199,dig,"dig 25 10",1,1379,326,112,24,9,104,23,9,110,23,8
+200,move,"move 24 10",2,1384,326,112,24,9,104,24,10,110,23,8
+201,nothing,"nothing "Player chose to do nothing"",3,1382,320,109,24,9,104,24,10,107,23,8
+202,move,"move 23 10",1,1385,314,106,23,10,104,24,10,104,23,8
+203,move,"move 23 11",2,1389,311,106,23,10,104,23,11,101,23,8
+204,dig,"dig 22 9",3,1395,308,106,23,10,104,23,11,98,23,8
+205,move,"move 22 11",1,1399,305,106,22,11,104,23,11,95,23,8
+206,move,"move 22 12",2,1403,302,106,22,11,104,22,12,92,23,8
+207,move,"move 22 9",3,1407,299,106,22,11,104,22,12,89,22,9
+208,move,"move 21 12",1,1412,299,106,21,12,104,22,12,89,22,9
+209,dig,"dig 21 13",2,1419,299,106,21,12,104,22,12,89,22,9
+210,dig,"dig 21 10",3,1426,299,106,21,12,104,22,12,89,22,9
+211,dig,"dig 20 13",1,1433,299,106,21,12,104,22,12,89,22,9
+212,move,"move 21 13",2,1438,299,106,21,12,104,21,13,89,22,9
+213,move,"move 21 10",3,1443,299,106,21,12,104,21,13,89,21,10
+214,move,"move 20 13",1,1448,299,106,20,13,104,21,13,89,21,10
+215,dig,"dig 20 14",2,1455,299,106,20,13,104,21,13,89,21,10
+216,dig,"dig 20 11",3,1462,299,106,20,13,104,21,13,89,21,10
+217,dig,"dig 19 14",1,1469,299,106,20,13,104,21,13,89,21,10
+218,move,"move 20 14",2,1474,299,106,20,13,104,20,14,89,21,10
+219,move,"move 20 11",3,1479,299,106,20,13,104,20,14,89,20,11
+220,move,"move 19 14",1,1484,299,106,19,14,104,20,14,89,20,11
+221,move,"move 19 15",2,1489,299,106,19,14,104,19,15,89,20,11
+222,move,"move 19 12",3,1494,299,106,19,14,104,19,15,89,19,12
+223,dig,"dig 18 14",1,1501,299,106,19,14,104,19,15,89,19,12
+224,move,"move 18 14",2,1506,299,106,19,14,104,18,14,89,19,12
+225,move,"move 18 13",3,1511,299,106,19,14,104,18,14,89,18,13
+226,move,"move 19 15",1,1516,299,106,19,15,104,18,14,89,18,13
+227,dig,"dig 17 14",2,1523,299,106,19,15,104,18,14,89,18,13
+228,move,"move 17 13",3,1528,299,106,19,15,104,18,14,89,17,13
+229,move,"move 20 14",1,1533,299,106,20,14,104,18,14,89,17,13
+230,move,"move 17 14",2,1538,299,106,20,14,104,17,14,89,17,13
+231,move,"move 18 14",3,1543,299,106,20,14,104,17,14,89,18,14
+232,move,"move 19 13",1,1548,299,106,19,13,104,17,14,89,18,14
+233,move,"move 16 14",2,1553,299,106,19,13,104,16,14,89,18,14
+234,move,"move 17 14",3,1558,299,106,19,13,104,16,14,89,17,14
+235,move,"move 18 13",1,1563,299,106,18,13,104,16,14,89,17,14
+236,move,"move 15 13",2,1568,299,106,18,13,104,15,13,89,17,14
+237,move,"move 16 13",3,1573,299,106,18,13,104,15,13,89,16,13
+238,move,"move 17 13",1,1578,299,106,17,13,104,15,13,89,16,13
+239,move,"move 14 13",2,1583,299,106,17,13,104,14,13,89,16,13
+240,move,"move 15 13",3,1588,299,106,17,13,104,14,13,89,15,13
+241,move,"move 16 13",1,1593,299,106,16,13,104,14,13,89,15,13
+242,shoot,"shoot W",2,1595,299,106,16,13,104,14,13,89,15,13
+243,invalid,"invalid",3,1591,299,106,16,13,104,14,13,89,15,13
+244,move,"move 15 12",1,1596,299,106,15,12,104,14,13,89,15,13
+245,move,"move 13 13",2,1601,299,106,15,12,104,13,13,89,15,13
+246,move,"move 14 14",3,1606,299,106,15,12,104,13,13,89,14,14
+247,move,"move 14 13",1,1611,299,106,14,13,104,13,13,89,14,14
+248,move,"move 12 14",2,1616,299,106,14,13,104,12,14,89,14,14
+249,dig,"dig 13 14",3,1623,299,106,14,13,104,12,14,89,14,14
+250,move,"move 13 14",1,1628,299,106,13,14,104,12,14,89,14,14
+251,move,"move 11 15",2,1633,299,106,13,14,104,11,15,89,14,14
+252,move,"move 13 15",3,1638,299,106,13,14,104,11,15,89,13,15
+253,move,"move 12 15",1,1643,299,106,12,15,104,11,15,89,13,15
+254,move,"move 10 16",2,1648,299,106,12,15,104,10,16,89,13,15
+255,move,"move 12 16",3,1653,299,106,12,15,104,10,16,89,12,16
+256,move,"move 11 16",1,1658,299,106,11,16,104,10,16,89,12,16
+257,move,"move 9 17",2,1663,299,106,11,16,104,9,17,89,12,16
+258,move,"move 11 17",3,1667,296,106,11,16,101,9,17,89,11,17
+259,move,"move 10 17",1,1669,285,106,10,17,90,9,17,89,11,17
+260,nothing,"nothing "Player chose to do nothing"",2,1668,282,106,10,17,87,9,17,89,11,17
+261,move,"move 10 18",3,1672,279,106,10,17,84,9,17,89,10,18
+262,nothing,"nothing "Player chose to do nothing"",1,1671,276,106,10,17,81,9,17,89,10,18
+263,nothing,"nothing "Player chose to do nothing"",2,1670,273,106,10,17,78,9,17,89,10,18
+264,nothing,"nothing "Player chose to do nothing"",3,1669,270,106,10,17,75,9,17,89,10,18
+265,nothing,"nothing "Player chose to do nothing"",1,1668,267,106,10,17,72,9,17,89,10,18
+266,nothing,"nothing "Player chose to do nothing"",2,1667,264,106,10,17,69,9,17,89,10,18
+267,nothing,"nothing "Player chose to do nothing"",3,1666,261,106,10,17,66,9,17,89,10,18
+268,nothing,"nothing "Player chose to do nothing"",1,1664,255,106,10,17,63,9,17,86,10,18
+269,nothing,"nothing "Player chose to do nothing"",2,1662,249,106,10,17,60,9,17,83,10,18
+270,nothing,"nothing "Player chose to do nothing"",3,1660,243,106,10,17,57,9,17,80,10,18
+271,nothing,"nothing "Player chose to do nothing"",1,1658,237,106,10,17,54,9,17,77,10,18
+272,nothing,"nothing "Player chose to do nothing"",2,1655,228,103,10,17,51,9,17,74,10,18
+273,nothing,"nothing "Player chose to do nothing"",3,1652,219,100,10,17,48,9,17,71,10,18